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.
 
 
 

26792 lines
667 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. "nykur": {
  1284. name: "Nykur",
  1285. parents: ["horse", "monster"]
  1286. },
  1287. "giraffe": {
  1288. name: "Giraffe",
  1289. parents: ["mammal"]
  1290. },
  1291. "tauren": {
  1292. name: "Tauren",
  1293. parents: ["cowup"]
  1294. },
  1295. }
  1296. //species
  1297. function getSpeciesInfo(speciesList) {
  1298. let result = new Set();
  1299. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1300. result.add(entry)
  1301. });
  1302. return Array.from(result);
  1303. };
  1304. function getSpeciesInfoHelper(species) {
  1305. if (!speciesData[species]) {
  1306. console.warn(species + " doesn't exist");
  1307. return [];
  1308. }
  1309. if (speciesData[species].parents) {
  1310. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1311. } else {
  1312. return [species];
  1313. }
  1314. }
  1315. characterMakers.push(() => makeCharacter(
  1316. {
  1317. name: "Fen",
  1318. species: ["crux"],
  1319. description: {
  1320. title: "Bio",
  1321. text: "Very furry. Sheds on everything."
  1322. },
  1323. tags: [
  1324. "anthro",
  1325. "goo"
  1326. ]
  1327. },
  1328. {
  1329. back: {
  1330. height: math.unit(2.2428, "meter"),
  1331. weight: math.unit(124.738, "kg"),
  1332. name: "Back",
  1333. image: {
  1334. source: "./media/characters/fen/back.svg",
  1335. extra: 1025 / 935,
  1336. bottom: 0.01
  1337. },
  1338. info: {
  1339. description: {
  1340. mode: "append",
  1341. text: "\n\nHe is not currently looking at you."
  1342. }
  1343. }
  1344. },
  1345. full: {
  1346. height: math.unit(1.34, "meter"),
  1347. weight: math.unit(225, "kg"),
  1348. name: "Full",
  1349. image: {
  1350. source: "./media/characters/fen/full.svg"
  1351. },
  1352. info: {
  1353. description: {
  1354. mode: "append",
  1355. text: "\n\nMunch."
  1356. }
  1357. }
  1358. },
  1359. kneeling: {
  1360. height: math.unit(5.4, "feet"),
  1361. weight: math.unit(124.738, "kg"),
  1362. name: "Kneeling",
  1363. image: {
  1364. source: "./media/characters/fen/kneeling.svg",
  1365. extra: 563 / 507
  1366. }
  1367. },
  1368. goo: {
  1369. height: math.unit(2.8, "feet"),
  1370. weight: math.unit(125, "kg"),
  1371. capacity: math.unit(1, "people"),
  1372. name: "Goo",
  1373. image: {
  1374. source: "./media/characters/fen/goo.svg",
  1375. bottom: 116 / 613
  1376. }
  1377. },
  1378. lounging: {
  1379. height: math.unit(6.5, "feet"),
  1380. weight: math.unit(125, "kg"),
  1381. name: "Lounging",
  1382. image: {
  1383. source: "./media/characters/fen/lounging.svg"
  1384. }
  1385. },
  1386. },
  1387. [
  1388. {
  1389. name: "Normal",
  1390. height: math.unit(2.2428, "meter")
  1391. },
  1392. {
  1393. name: "Big",
  1394. height: math.unit(12, "feet")
  1395. },
  1396. {
  1397. name: "Minimacro",
  1398. height: math.unit(40, "feet"),
  1399. default: true,
  1400. info: {
  1401. description: {
  1402. mode: "append",
  1403. text: "\n\nTOO DAMN BIG"
  1404. }
  1405. }
  1406. },
  1407. {
  1408. name: "Macro",
  1409. height: math.unit(100, "feet"),
  1410. info: {
  1411. description: {
  1412. mode: "append",
  1413. text: "\n\nTOO DAMN BIG"
  1414. }
  1415. }
  1416. },
  1417. {
  1418. name: "Macro+",
  1419. height: math.unit(300, "feet")
  1420. },
  1421. {
  1422. name: "Megamacro",
  1423. height: math.unit(2, "miles")
  1424. }
  1425. ]
  1426. ))
  1427. characterMakers.push(() => makeCharacter(
  1428. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1429. {
  1430. front: {
  1431. height: math.unit(183, "cm"),
  1432. weight: math.unit(80, "kg"),
  1433. name: "Front",
  1434. image: {
  1435. source: "./media/characters/sofia-fluttertail/front.svg",
  1436. bottom: 0.01,
  1437. extra: 2154 / 2081
  1438. }
  1439. },
  1440. frontAlt: {
  1441. height: math.unit(183, "cm"),
  1442. weight: math.unit(80, "kg"),
  1443. name: "Front (alt)",
  1444. image: {
  1445. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1446. }
  1447. },
  1448. back: {
  1449. height: math.unit(183, "cm"),
  1450. weight: math.unit(80, "kg"),
  1451. name: "Back",
  1452. image: {
  1453. source: "./media/characters/sofia-fluttertail/back.svg"
  1454. }
  1455. },
  1456. kneeling: {
  1457. height: math.unit(125, "cm"),
  1458. weight: math.unit(80, "kg"),
  1459. name: "Kneeling",
  1460. image: {
  1461. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1462. extra: 1033 / 977,
  1463. bottom: 23.7 / 1057
  1464. }
  1465. },
  1466. maw: {
  1467. height: math.unit(183 / 5, "cm"),
  1468. name: "Maw",
  1469. image: {
  1470. source: "./media/characters/sofia-fluttertail/maw.svg"
  1471. }
  1472. },
  1473. mawcloseup: {
  1474. height: math.unit(183 / 5 * 0.41, "cm"),
  1475. name: "Maw (Closeup)",
  1476. image: {
  1477. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1478. }
  1479. },
  1480. },
  1481. [
  1482. {
  1483. name: "Normal",
  1484. height: math.unit(1.83, "meter")
  1485. },
  1486. {
  1487. name: "Size Thief",
  1488. height: math.unit(18, "feet")
  1489. },
  1490. {
  1491. name: "50 Foot Collie",
  1492. height: math.unit(50, "feet")
  1493. },
  1494. {
  1495. name: "Macro",
  1496. height: math.unit(96, "feet"),
  1497. default: true
  1498. },
  1499. {
  1500. name: "Megamerger",
  1501. height: math.unit(650, "feet")
  1502. },
  1503. ]
  1504. ))
  1505. characterMakers.push(() => makeCharacter(
  1506. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1507. {
  1508. front: {
  1509. height: math.unit(7, "feet"),
  1510. weight: math.unit(100, "kg"),
  1511. name: "Front",
  1512. image: {
  1513. source: "./media/characters/march/front.svg",
  1514. extra: 1,
  1515. bottom: 0.015
  1516. }
  1517. },
  1518. foot: {
  1519. height: math.unit(0.9, "feet"),
  1520. name: "Foot",
  1521. image: {
  1522. source: "./media/characters/march/foot.svg"
  1523. }
  1524. },
  1525. },
  1526. [
  1527. {
  1528. name: "Normal",
  1529. height: math.unit(7.9, "feet")
  1530. },
  1531. {
  1532. name: "Macro",
  1533. height: math.unit(220, "meters")
  1534. },
  1535. {
  1536. name: "Megamacro",
  1537. height: math.unit(2.98, "km"),
  1538. default: true
  1539. },
  1540. {
  1541. name: "Gigamacro",
  1542. height: math.unit(15963, "km")
  1543. },
  1544. {
  1545. name: "Teramacro",
  1546. height: math.unit(2980000000, "km")
  1547. },
  1548. {
  1549. name: "Examacro",
  1550. height: math.unit(250, "parsecs")
  1551. },
  1552. ]
  1553. ))
  1554. characterMakers.push(() => makeCharacter(
  1555. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1556. {
  1557. front: {
  1558. height: math.unit(6, "feet"),
  1559. weight: math.unit(60, "kg"),
  1560. name: "Front",
  1561. image: {
  1562. source: "./media/characters/noir/front.svg",
  1563. extra: 1,
  1564. bottom: 0.032
  1565. }
  1566. },
  1567. },
  1568. [
  1569. {
  1570. name: "Normal",
  1571. height: math.unit(6.6, "feet")
  1572. },
  1573. {
  1574. name: "Macro",
  1575. height: math.unit(500, "feet")
  1576. },
  1577. {
  1578. name: "Megamacro",
  1579. height: math.unit(2.5, "km"),
  1580. default: true
  1581. },
  1582. {
  1583. name: "Gigamacro",
  1584. height: math.unit(22500, "km")
  1585. },
  1586. {
  1587. name: "Teramacro",
  1588. height: math.unit(2500000000, "km")
  1589. },
  1590. {
  1591. name: "Examacro",
  1592. height: math.unit(200, "parsecs")
  1593. },
  1594. ]
  1595. ))
  1596. characterMakers.push(() => makeCharacter(
  1597. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1598. {
  1599. front: {
  1600. height: math.unit(7, "feet"),
  1601. weight: math.unit(100, "kg"),
  1602. name: "Front",
  1603. image: {
  1604. source: "./media/characters/okuri/front.svg",
  1605. extra: 1,
  1606. bottom: 0.037
  1607. }
  1608. },
  1609. back: {
  1610. height: math.unit(7, "feet"),
  1611. weight: math.unit(100, "kg"),
  1612. name: "Back",
  1613. image: {
  1614. source: "./media/characters/okuri/back.svg",
  1615. extra: 1,
  1616. bottom: 0.007
  1617. }
  1618. },
  1619. },
  1620. [
  1621. {
  1622. name: "Megamacro",
  1623. height: math.unit(100, "miles"),
  1624. default: true
  1625. },
  1626. ]
  1627. ))
  1628. characterMakers.push(() => makeCharacter(
  1629. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1630. {
  1631. front: {
  1632. height: math.unit(7, "feet"),
  1633. weight: math.unit(100, "kg"),
  1634. name: "Front",
  1635. image: {
  1636. source: "./media/characters/manny/front.svg",
  1637. extra: 1,
  1638. bottom: 0.06
  1639. }
  1640. },
  1641. back: {
  1642. height: math.unit(7, "feet"),
  1643. weight: math.unit(100, "kg"),
  1644. name: "Back",
  1645. image: {
  1646. source: "./media/characters/manny/back.svg",
  1647. extra: 1,
  1648. bottom: 0.014
  1649. }
  1650. },
  1651. },
  1652. [
  1653. {
  1654. name: "Normal",
  1655. height: math.unit(7, "feet"),
  1656. },
  1657. {
  1658. name: "Macro",
  1659. height: math.unit(78, "feet"),
  1660. default: true
  1661. },
  1662. {
  1663. name: "Macro+",
  1664. height: math.unit(300, "meters")
  1665. },
  1666. {
  1667. name: "Macro++",
  1668. height: math.unit(2400, "meters")
  1669. },
  1670. {
  1671. name: "Megamacro",
  1672. height: math.unit(5167, "meters")
  1673. },
  1674. {
  1675. name: "Gigamacro",
  1676. height: math.unit(41769, "miles")
  1677. },
  1678. ]
  1679. ))
  1680. characterMakers.push(() => makeCharacter(
  1681. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1682. {
  1683. front: {
  1684. height: math.unit(7, "feet"),
  1685. weight: math.unit(100, "kg"),
  1686. name: "Front",
  1687. image: {
  1688. source: "./media/characters/adake/front-1.svg"
  1689. }
  1690. },
  1691. frontAlt: {
  1692. height: math.unit(7, "feet"),
  1693. weight: math.unit(100, "kg"),
  1694. name: "Front (Alt)",
  1695. image: {
  1696. source: "./media/characters/adake/front-2.svg",
  1697. extra: 1,
  1698. bottom: 0.01
  1699. }
  1700. },
  1701. back: {
  1702. height: math.unit(7, "feet"),
  1703. weight: math.unit(100, "kg"),
  1704. name: "Back",
  1705. image: {
  1706. source: "./media/characters/adake/back.svg",
  1707. }
  1708. },
  1709. kneel: {
  1710. height: math.unit(5.385, "feet"),
  1711. weight: math.unit(100, "kg"),
  1712. name: "Kneeling",
  1713. image: {
  1714. source: "./media/characters/adake/kneel.svg",
  1715. bottom: 0.052
  1716. }
  1717. },
  1718. },
  1719. [
  1720. {
  1721. name: "Normal",
  1722. height: math.unit(7, "feet"),
  1723. },
  1724. {
  1725. name: "Macro",
  1726. height: math.unit(78, "feet"),
  1727. default: true
  1728. },
  1729. {
  1730. name: "Macro+",
  1731. height: math.unit(300, "meters")
  1732. },
  1733. {
  1734. name: "Macro++",
  1735. height: math.unit(2400, "meters")
  1736. },
  1737. {
  1738. name: "Megamacro",
  1739. height: math.unit(5167, "meters")
  1740. },
  1741. {
  1742. name: "Gigamacro",
  1743. height: math.unit(41769, "miles")
  1744. },
  1745. ]
  1746. ))
  1747. characterMakers.push(() => makeCharacter(
  1748. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1749. {
  1750. front: {
  1751. height: math.unit(1.65, "meters"),
  1752. weight: math.unit(50, "kg"),
  1753. name: "Front",
  1754. image: {
  1755. source: "./media/characters/elijah/front.svg",
  1756. extra: 858 / 830,
  1757. bottom: 95.5 / 953.8559
  1758. }
  1759. },
  1760. back: {
  1761. height: math.unit(1.65, "meters"),
  1762. weight: math.unit(50, "kg"),
  1763. name: "Back",
  1764. image: {
  1765. source: "./media/characters/elijah/back.svg",
  1766. extra: 895 / 850,
  1767. bottom: 5.3 / 897.956
  1768. }
  1769. },
  1770. frontNsfw: {
  1771. height: math.unit(1.65, "meters"),
  1772. weight: math.unit(50, "kg"),
  1773. name: "Front (NSFW)",
  1774. image: {
  1775. source: "./media/characters/elijah/front-nsfw.svg",
  1776. extra: 858 / 830,
  1777. bottom: 95.5 / 953.8559
  1778. }
  1779. },
  1780. backNsfw: {
  1781. height: math.unit(1.65, "meters"),
  1782. weight: math.unit(50, "kg"),
  1783. name: "Back (NSFW)",
  1784. image: {
  1785. source: "./media/characters/elijah/back-nsfw.svg",
  1786. extra: 895 / 850,
  1787. bottom: 5.3 / 897.956
  1788. }
  1789. },
  1790. dick: {
  1791. height: math.unit(1, "feet"),
  1792. name: "Dick",
  1793. image: {
  1794. source: "./media/characters/elijah/dick.svg"
  1795. }
  1796. },
  1797. beakOpen: {
  1798. height: math.unit(1.25, "feet"),
  1799. name: "Beak (Open)",
  1800. image: {
  1801. source: "./media/characters/elijah/beak-open.svg"
  1802. }
  1803. },
  1804. beakShut: {
  1805. height: math.unit(1.25, "feet"),
  1806. name: "Beak (Shut)",
  1807. image: {
  1808. source: "./media/characters/elijah/beak-shut.svg"
  1809. }
  1810. },
  1811. footFlexing: {
  1812. height: math.unit(1.61, "feet"),
  1813. name: "Foot (Flexing)",
  1814. image: {
  1815. source: "./media/characters/elijah/foot-flexing.svg"
  1816. }
  1817. },
  1818. footStepping: {
  1819. height: math.unit(1.44, "feet"),
  1820. name: "Foot (Stepping)",
  1821. image: {
  1822. source: "./media/characters/elijah/foot-stepping.svg"
  1823. }
  1824. },
  1825. plantigradeLeg: {
  1826. height: math.unit(2.34, "feet"),
  1827. name: "Plantigrade Leg",
  1828. image: {
  1829. source: "./media/characters/elijah/plantigrade-leg.svg"
  1830. }
  1831. },
  1832. plantigradeFootLeft: {
  1833. height: math.unit(0.9, "feet"),
  1834. name: "Plantigrade Foot (Left)",
  1835. image: {
  1836. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1837. }
  1838. },
  1839. plantigradeFootRight: {
  1840. height: math.unit(0.9, "feet"),
  1841. name: "Plantigrade Foot (Right)",
  1842. image: {
  1843. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1844. }
  1845. },
  1846. },
  1847. [
  1848. {
  1849. name: "Normal",
  1850. height: math.unit(1.65, "meters")
  1851. },
  1852. {
  1853. name: "Macro",
  1854. height: math.unit(55, "meters"),
  1855. default: true
  1856. },
  1857. {
  1858. name: "Macro+",
  1859. height: math.unit(105, "meters")
  1860. },
  1861. ]
  1862. ))
  1863. characterMakers.push(() => makeCharacter(
  1864. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1865. {
  1866. front: {
  1867. height: math.unit(11, "feet"),
  1868. weight: math.unit(80, "kg"),
  1869. name: "Front",
  1870. image: {
  1871. source: "./media/characters/rai/front.svg",
  1872. extra: 1,
  1873. bottom: 0.03
  1874. }
  1875. },
  1876. side: {
  1877. height: math.unit(11, "feet"),
  1878. weight: math.unit(80, "kg"),
  1879. name: "Side",
  1880. image: {
  1881. source: "./media/characters/rai/side.svg"
  1882. }
  1883. },
  1884. back: {
  1885. height: math.unit(11, "feet"),
  1886. weight: math.unit(80, "lb"),
  1887. name: "Back",
  1888. image: {
  1889. source: "./media/characters/rai/back.svg",
  1890. extra: 1,
  1891. bottom: 0.01
  1892. }
  1893. },
  1894. feral: {
  1895. height: math.unit(11, "feet"),
  1896. weight: math.unit(800, "lb"),
  1897. name: "Feral",
  1898. image: {
  1899. source: "./media/characters/rai/feral.svg",
  1900. extra: 1050 / 659,
  1901. bottom: 0.07
  1902. }
  1903. },
  1904. dragon: {
  1905. height: math.unit(23, "feet"),
  1906. weight: math.unit(50000, "lb"),
  1907. name: "Dragon",
  1908. image: {
  1909. source: "./media/characters/rai/dragon.svg",
  1910. extra: 2498 / 2030,
  1911. bottom: 85.2 / 2584
  1912. }
  1913. },
  1914. maw: {
  1915. height: math.unit(6 / 3.81416, "feet"),
  1916. name: "Maw",
  1917. image: {
  1918. source: "./media/characters/rai/maw.svg"
  1919. }
  1920. },
  1921. },
  1922. [
  1923. {
  1924. name: "Normal",
  1925. height: math.unit(11, "feet")
  1926. },
  1927. {
  1928. name: "Macro",
  1929. height: math.unit(302, "feet"),
  1930. default: true
  1931. },
  1932. ]
  1933. ))
  1934. characterMakers.push(() => makeCharacter(
  1935. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  1936. {
  1937. frontDressed: {
  1938. height: math.unit(216, "feet"),
  1939. weight: math.unit(7000000, "lb"),
  1940. name: "Front (Dressed)",
  1941. image: {
  1942. source: "./media/characters/jazzy/front-dressed.svg",
  1943. extra: 2738 / 2651,
  1944. bottom: 41.8 / 2786
  1945. }
  1946. },
  1947. backDressed: {
  1948. height: math.unit(216, "feet"),
  1949. weight: math.unit(7000000, "lb"),
  1950. name: "Back (Dressed)",
  1951. image: {
  1952. source: "./media/characters/jazzy/back-dressed.svg",
  1953. extra: 2775 / 2673,
  1954. bottom: 36.8 / 2817
  1955. }
  1956. },
  1957. front: {
  1958. height: math.unit(216, "feet"),
  1959. weight: math.unit(7000000, "lb"),
  1960. name: "Front",
  1961. image: {
  1962. source: "./media/characters/jazzy/front.svg",
  1963. extra: 2738 / 2651,
  1964. bottom: 41.8 / 2786
  1965. }
  1966. },
  1967. back: {
  1968. height: math.unit(216, "feet"),
  1969. weight: math.unit(7000000, "lb"),
  1970. name: "Back",
  1971. image: {
  1972. source: "./media/characters/jazzy/back.svg",
  1973. extra: 2775 / 2673,
  1974. bottom: 36.8 / 2817
  1975. }
  1976. },
  1977. maw: {
  1978. height: math.unit(20, "feet"),
  1979. name: "Maw",
  1980. image: {
  1981. source: "./media/characters/jazzy/maw.svg"
  1982. }
  1983. },
  1984. paws: {
  1985. height: math.unit(27.5, "feet"),
  1986. name: "Paws",
  1987. image: {
  1988. source: "./media/characters/jazzy/paws.svg"
  1989. }
  1990. },
  1991. eye: {
  1992. height: math.unit(4.4, "feet"),
  1993. name: "Eye",
  1994. image: {
  1995. source: "./media/characters/jazzy/eye.svg"
  1996. }
  1997. },
  1998. droneOffense: {
  1999. height: math.unit(9.5, "inches"),
  2000. name: "Drone (Offense)",
  2001. image: {
  2002. source: "./media/characters/jazzy/drone-offense.svg"
  2003. }
  2004. },
  2005. droneRecon: {
  2006. height: math.unit(9.5, "inches"),
  2007. name: "Drone (Recon)",
  2008. image: {
  2009. source: "./media/characters/jazzy/drone-recon.svg"
  2010. }
  2011. },
  2012. droneDefense: {
  2013. height: math.unit(9.5, "inches"),
  2014. name: "Drone (Defense)",
  2015. image: {
  2016. source: "./media/characters/jazzy/drone-defense.svg"
  2017. }
  2018. },
  2019. },
  2020. [
  2021. {
  2022. name: "Macro",
  2023. height: math.unit(216, "feet"),
  2024. default: true
  2025. },
  2026. ]
  2027. ))
  2028. characterMakers.push(() => makeCharacter(
  2029. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2030. {
  2031. front: {
  2032. height: math.unit(7, "feet"),
  2033. weight: math.unit(80, "kg"),
  2034. name: "Front",
  2035. image: {
  2036. source: "./media/characters/flamm/front.svg",
  2037. extra: 1794 / 1677,
  2038. bottom: 31.7 / 1828.5
  2039. }
  2040. },
  2041. },
  2042. [
  2043. {
  2044. name: "Normal",
  2045. height: math.unit(9.5, "feet")
  2046. },
  2047. {
  2048. name: "Macro",
  2049. height: math.unit(200, "feet"),
  2050. default: true
  2051. },
  2052. ]
  2053. ))
  2054. characterMakers.push(() => makeCharacter(
  2055. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2056. {
  2057. front: {
  2058. height: math.unit(7, "feet"),
  2059. weight: math.unit(80, "kg"),
  2060. name: "Front",
  2061. image: {
  2062. source: "./media/characters/zephiro/front.svg",
  2063. extra: 2309 / 2162,
  2064. bottom: 0.069
  2065. }
  2066. },
  2067. side: {
  2068. height: math.unit(7, "feet"),
  2069. weight: math.unit(80, "kg"),
  2070. name: "Side",
  2071. image: {
  2072. source: "./media/characters/zephiro/side.svg",
  2073. extra: 2403 / 2279,
  2074. bottom: 0.015
  2075. }
  2076. },
  2077. back: {
  2078. height: math.unit(7, "feet"),
  2079. weight: math.unit(80, "kg"),
  2080. name: "Back",
  2081. image: {
  2082. source: "./media/characters/zephiro/back.svg",
  2083. extra: 2373 / 2244,
  2084. bottom: 0.013
  2085. }
  2086. },
  2087. },
  2088. [
  2089. {
  2090. name: "Micro",
  2091. height: math.unit(3, "inches")
  2092. },
  2093. {
  2094. name: "Normal",
  2095. height: math.unit(5 + 3 / 12, "feet"),
  2096. default: true
  2097. },
  2098. {
  2099. name: "Macro",
  2100. height: math.unit(118, "feet")
  2101. },
  2102. ]
  2103. ))
  2104. characterMakers.push(() => makeCharacter(
  2105. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2106. {
  2107. front: {
  2108. height: math.unit(5, "feet"),
  2109. weight: math.unit(90, "kg"),
  2110. name: "Front",
  2111. image: {
  2112. source: "./media/characters/fory/front.svg",
  2113. extra: 2862 / 2674,
  2114. bottom: 180 / 3043.8
  2115. }
  2116. },
  2117. back: {
  2118. height: math.unit(5, "feet"),
  2119. weight: math.unit(90, "kg"),
  2120. name: "Back",
  2121. image: {
  2122. source: "./media/characters/fory/back.svg",
  2123. extra: 2962 / 2791,
  2124. bottom: 106 / 3071.8
  2125. }
  2126. },
  2127. foot: {
  2128. height: math.unit(2.14, "feet"),
  2129. name: "Foot",
  2130. image: {
  2131. source: "./media/characters/fory/foot.svg"
  2132. }
  2133. },
  2134. },
  2135. [
  2136. {
  2137. name: "Normal",
  2138. height: math.unit(5, "feet")
  2139. },
  2140. {
  2141. name: "Macro",
  2142. height: math.unit(50, "feet"),
  2143. default: true
  2144. },
  2145. {
  2146. name: "Megamacro",
  2147. height: math.unit(10, "miles")
  2148. },
  2149. {
  2150. name: "Gigamacro",
  2151. height: math.unit(5, "earths")
  2152. },
  2153. ]
  2154. ))
  2155. characterMakers.push(() => makeCharacter(
  2156. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2157. {
  2158. front: {
  2159. height: math.unit(7, "feet"),
  2160. weight: math.unit(90, "kg"),
  2161. name: "Front",
  2162. image: {
  2163. source: "./media/characters/kurrikage/front.svg",
  2164. extra: 1,
  2165. bottom: 0.035
  2166. }
  2167. },
  2168. back: {
  2169. height: math.unit(7, "feet"),
  2170. weight: math.unit(90, "lb"),
  2171. name: "Back",
  2172. image: {
  2173. source: "./media/characters/kurrikage/back.svg"
  2174. }
  2175. },
  2176. paw: {
  2177. height: math.unit(1.5, "feet"),
  2178. name: "Paw",
  2179. image: {
  2180. source: "./media/characters/kurrikage/paw.svg"
  2181. }
  2182. },
  2183. staff: {
  2184. height: math.unit(6.7, "feet"),
  2185. name: "Staff",
  2186. image: {
  2187. source: "./media/characters/kurrikage/staff.svg"
  2188. }
  2189. },
  2190. peek: {
  2191. height: math.unit(1.05, "feet"),
  2192. name: "Peeking",
  2193. image: {
  2194. source: "./media/characters/kurrikage/peek.svg",
  2195. bottom: 0.08
  2196. }
  2197. },
  2198. },
  2199. [
  2200. {
  2201. name: "Normal",
  2202. height: math.unit(12, "feet"),
  2203. default: true
  2204. },
  2205. {
  2206. name: "Big",
  2207. height: math.unit(20, "feet")
  2208. },
  2209. {
  2210. name: "Macro",
  2211. height: math.unit(500, "feet")
  2212. },
  2213. {
  2214. name: "Megamacro",
  2215. height: math.unit(20, "miles")
  2216. },
  2217. ]
  2218. ))
  2219. characterMakers.push(() => makeCharacter(
  2220. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2221. {
  2222. front: {
  2223. height: math.unit(6, "feet"),
  2224. weight: math.unit(75, "kg"),
  2225. name: "Front",
  2226. image: {
  2227. source: "./media/characters/shingo/front.svg",
  2228. extra: 3511 / 3338,
  2229. bottom: 0.005
  2230. }
  2231. },
  2232. paw: {
  2233. height: math.unit(1, "feet"),
  2234. name: "Paw",
  2235. image: {
  2236. source: "./media/characters/shingo/paw.svg"
  2237. }
  2238. },
  2239. },
  2240. [
  2241. {
  2242. name: "Micro",
  2243. height: math.unit(4, "inches")
  2244. },
  2245. {
  2246. name: "Normal",
  2247. height: math.unit(6, "feet"),
  2248. default: true
  2249. },
  2250. {
  2251. name: "Macro",
  2252. height: math.unit(108, "feet")
  2253. }
  2254. ]
  2255. ))
  2256. characterMakers.push(() => makeCharacter(
  2257. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2258. {
  2259. side: {
  2260. height: math.unit(6, "feet"),
  2261. weight: math.unit(75, "kg"),
  2262. name: "Side",
  2263. image: {
  2264. source: "./media/characters/aigey/side.svg"
  2265. }
  2266. },
  2267. },
  2268. [
  2269. {
  2270. name: "Macro",
  2271. height: math.unit(200, "feet"),
  2272. default: true
  2273. },
  2274. {
  2275. name: "Megamacro",
  2276. height: math.unit(100, "miles")
  2277. },
  2278. ]
  2279. )
  2280. )
  2281. characterMakers.push(() => makeCharacter(
  2282. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2283. {
  2284. front: {
  2285. height: math.unit(5 + 5 / 12, "feet"),
  2286. weight: math.unit(75, "kg"),
  2287. name: "Front",
  2288. image: {
  2289. source: "./media/characters/natasha/front.svg",
  2290. extra: 859 / 824,
  2291. bottom: 23 / 879.6
  2292. }
  2293. },
  2294. frontNsfw: {
  2295. height: math.unit(5 + 5 / 12, "feet"),
  2296. weight: math.unit(75, "kg"),
  2297. name: "Front (NSFW)",
  2298. image: {
  2299. source: "./media/characters/natasha/front-nsfw.svg",
  2300. extra: 859 / 824,
  2301. bottom: 23 / 879.6
  2302. }
  2303. },
  2304. frontErect: {
  2305. height: math.unit(5 + 5 / 12, "feet"),
  2306. weight: math.unit(75, "kg"),
  2307. name: "Front (Erect)",
  2308. image: {
  2309. source: "./media/characters/natasha/front-erect.svg",
  2310. extra: 859 / 824,
  2311. bottom: 23 / 879.6
  2312. }
  2313. },
  2314. back: {
  2315. height: math.unit(5 + 5 / 12, "feet"),
  2316. weight: math.unit(75, "kg"),
  2317. name: "Back",
  2318. image: {
  2319. source: "./media/characters/natasha/back.svg",
  2320. extra: 887.9 / 852.6,
  2321. bottom: 9.7 / 896.4
  2322. }
  2323. },
  2324. backAlt: {
  2325. height: math.unit(5 + 5 / 12, "feet"),
  2326. weight: math.unit(75, "kg"),
  2327. name: "Back (Alt)",
  2328. image: {
  2329. source: "./media/characters/natasha/back-alt.svg",
  2330. extra: 1236.7 / 1192,
  2331. bottom: 22.3 / 1258.2
  2332. }
  2333. },
  2334. dick: {
  2335. height: math.unit(1.772, "feet"),
  2336. name: "Dick",
  2337. image: {
  2338. source: "./media/characters/natasha/dick.svg"
  2339. }
  2340. },
  2341. },
  2342. [
  2343. {
  2344. name: "Normal",
  2345. height: math.unit(5 + 5 / 12, "feet")
  2346. },
  2347. {
  2348. name: "Large",
  2349. height: math.unit(12, "feet")
  2350. },
  2351. {
  2352. name: "Macro",
  2353. height: math.unit(100, "feet"),
  2354. default: true
  2355. },
  2356. {
  2357. name: "Macro+",
  2358. height: math.unit(260, "feet")
  2359. },
  2360. {
  2361. name: "Macro++",
  2362. height: math.unit(1, "mile")
  2363. },
  2364. ]
  2365. ))
  2366. characterMakers.push(() => makeCharacter(
  2367. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2368. {
  2369. front: {
  2370. height: math.unit(6, "feet"),
  2371. weight: math.unit(75, "kg"),
  2372. name: "Front",
  2373. image: {
  2374. source: "./media/characters/malik/front.svg"
  2375. }
  2376. },
  2377. side: {
  2378. height: math.unit(6, "feet"),
  2379. weight: math.unit(75, "kg"),
  2380. name: "Side",
  2381. image: {
  2382. source: "./media/characters/malik/side.svg",
  2383. extra: 1.1539
  2384. }
  2385. },
  2386. back: {
  2387. height: math.unit(6, "feet"),
  2388. weight: math.unit(75, "kg"),
  2389. name: "Back",
  2390. image: {
  2391. source: "./media/characters/malik/back.svg"
  2392. }
  2393. },
  2394. },
  2395. [
  2396. {
  2397. name: "Macro",
  2398. height: math.unit(156, "feet"),
  2399. default: true
  2400. },
  2401. {
  2402. name: "Macro+",
  2403. height: math.unit(1188, "feet")
  2404. },
  2405. ]
  2406. ))
  2407. characterMakers.push(() => makeCharacter(
  2408. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2409. {
  2410. front: {
  2411. height: math.unit(6, "feet"),
  2412. weight: math.unit(75, "kg"),
  2413. name: "Front",
  2414. image: {
  2415. source: "./media/characters/sefer/front.svg",
  2416. extra: 848 / 659,
  2417. bottom: 28.3 / 876.442
  2418. }
  2419. },
  2420. back: {
  2421. height: math.unit(6, "feet"),
  2422. weight: math.unit(75, "kg"),
  2423. name: "Back",
  2424. image: {
  2425. source: "./media/characters/sefer/back.svg",
  2426. extra: 864 / 695,
  2427. bottom: 10 / 871
  2428. }
  2429. },
  2430. frontDressed: {
  2431. height: math.unit(6, "feet"),
  2432. weight: math.unit(75, "kg"),
  2433. name: "Front (Dressed)",
  2434. image: {
  2435. source: "./media/characters/sefer/front-dressed.svg",
  2436. extra: 839 / 653,
  2437. bottom: 37.6 / 878
  2438. }
  2439. },
  2440. },
  2441. [
  2442. {
  2443. name: "Normal",
  2444. height: math.unit(6, "feet"),
  2445. default: true
  2446. },
  2447. ]
  2448. ))
  2449. characterMakers.push(() => makeCharacter(
  2450. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2451. {
  2452. body: {
  2453. height: math.unit(2.2428, "meter"),
  2454. weight: math.unit(124.738, "kg"),
  2455. name: "Body",
  2456. image: {
  2457. extra: 1225 / 1050,
  2458. source: "./media/characters/north/front.svg"
  2459. }
  2460. }
  2461. },
  2462. [
  2463. {
  2464. name: "Micro",
  2465. height: math.unit(4, "inches")
  2466. },
  2467. {
  2468. name: "Macro",
  2469. height: math.unit(63, "meters")
  2470. },
  2471. {
  2472. name: "Megamacro",
  2473. height: math.unit(101, "miles"),
  2474. default: true
  2475. }
  2476. ]
  2477. ))
  2478. characterMakers.push(() => makeCharacter(
  2479. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2480. {
  2481. angled: {
  2482. height: math.unit(4, "meter"),
  2483. weight: math.unit(150, "kg"),
  2484. name: "Angled",
  2485. image: {
  2486. source: "./media/characters/talan/angled-sfw.svg",
  2487. bottom: 29 / 3734
  2488. }
  2489. },
  2490. angledNsfw: {
  2491. height: math.unit(4, "meter"),
  2492. weight: math.unit(150, "kg"),
  2493. name: "Angled (NSFW)",
  2494. image: {
  2495. source: "./media/characters/talan/angled-nsfw.svg",
  2496. bottom: 29 / 3734
  2497. }
  2498. },
  2499. frontNsfw: {
  2500. height: math.unit(4, "meter"),
  2501. weight: math.unit(150, "kg"),
  2502. name: "Front (NSFW)",
  2503. image: {
  2504. source: "./media/characters/talan/front-nsfw.svg",
  2505. bottom: 29 / 3734
  2506. }
  2507. },
  2508. sideNsfw: {
  2509. height: math.unit(4, "meter"),
  2510. weight: math.unit(150, "kg"),
  2511. name: "Side (NSFW)",
  2512. image: {
  2513. source: "./media/characters/talan/side-nsfw.svg",
  2514. bottom: 29 / 3734
  2515. }
  2516. },
  2517. back: {
  2518. height: math.unit(4, "meter"),
  2519. weight: math.unit(150, "kg"),
  2520. name: "Back",
  2521. image: {
  2522. source: "./media/characters/talan/back.svg"
  2523. }
  2524. },
  2525. dickBottom: {
  2526. height: math.unit(0.621, "meter"),
  2527. name: "Dick (Bottom)",
  2528. image: {
  2529. source: "./media/characters/talan/dick-bottom.svg"
  2530. }
  2531. },
  2532. dickTop: {
  2533. height: math.unit(0.621, "meter"),
  2534. name: "Dick (Top)",
  2535. image: {
  2536. source: "./media/characters/talan/dick-top.svg"
  2537. }
  2538. },
  2539. dickSide: {
  2540. height: math.unit(0.305, "meter"),
  2541. name: "Dick (Side)",
  2542. image: {
  2543. source: "./media/characters/talan/dick-side.svg"
  2544. }
  2545. },
  2546. dickFront: {
  2547. height: math.unit(0.305, "meter"),
  2548. name: "Dick (Front)",
  2549. image: {
  2550. source: "./media/characters/talan/dick-front.svg"
  2551. }
  2552. },
  2553. },
  2554. [
  2555. {
  2556. name: "Normal",
  2557. height: math.unit(4, "meters")
  2558. },
  2559. {
  2560. name: "Macro",
  2561. height: math.unit(100, "meters")
  2562. },
  2563. {
  2564. name: "Megamacro",
  2565. height: math.unit(2, "miles"),
  2566. default: true
  2567. },
  2568. {
  2569. name: "Gigamacro",
  2570. height: math.unit(5000, "miles")
  2571. },
  2572. {
  2573. name: "Teramacro",
  2574. height: math.unit(100, "parsecs")
  2575. }
  2576. ]
  2577. ))
  2578. characterMakers.push(() => makeCharacter(
  2579. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2580. {
  2581. front: {
  2582. height: math.unit(2, "meter"),
  2583. weight: math.unit(90, "kg"),
  2584. name: "Front",
  2585. image: {
  2586. source: "./media/characters/gael'rathus/front.svg"
  2587. }
  2588. },
  2589. frontAlt: {
  2590. height: math.unit(2, "meter"),
  2591. weight: math.unit(90, "kg"),
  2592. name: "Front (alt)",
  2593. image: {
  2594. source: "./media/characters/gael'rathus/front-alt.svg"
  2595. }
  2596. },
  2597. frontAlt2: {
  2598. height: math.unit(2, "meter"),
  2599. weight: math.unit(90, "kg"),
  2600. name: "Front (alt 2)",
  2601. image: {
  2602. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2603. }
  2604. }
  2605. },
  2606. [
  2607. {
  2608. name: "Normal",
  2609. height: math.unit(9, "feet"),
  2610. default: true
  2611. },
  2612. {
  2613. name: "Large",
  2614. height: math.unit(25, "feet")
  2615. },
  2616. {
  2617. name: "Macro",
  2618. height: math.unit(0.25, "miles")
  2619. },
  2620. {
  2621. name: "Megamacro",
  2622. height: math.unit(10, "miles")
  2623. }
  2624. ]
  2625. ))
  2626. characterMakers.push(() => makeCharacter(
  2627. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2628. {
  2629. side: {
  2630. height: math.unit(2, "meter"),
  2631. weight: math.unit(140, "kg"),
  2632. name: "Side",
  2633. image: {
  2634. source: "./media/characters/sosha/side.svg",
  2635. bottom: 0.042
  2636. }
  2637. },
  2638. },
  2639. [
  2640. {
  2641. name: "Normal",
  2642. height: math.unit(12, "feet"),
  2643. default: true
  2644. }
  2645. ]
  2646. ))
  2647. characterMakers.push(() => makeCharacter(
  2648. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2649. {
  2650. side: {
  2651. height: math.unit(5 + 5 / 12, "feet"),
  2652. weight: math.unit(170, "kg"),
  2653. name: "Side",
  2654. image: {
  2655. source: "./media/characters/runnola/side.svg",
  2656. extra: 741 / 448,
  2657. bottom: 0.05
  2658. }
  2659. },
  2660. },
  2661. [
  2662. {
  2663. name: "Small",
  2664. height: math.unit(3, "feet")
  2665. },
  2666. {
  2667. name: "Normal",
  2668. height: math.unit(5 + 5 / 12, "feet"),
  2669. default: true
  2670. },
  2671. {
  2672. name: "Big",
  2673. height: math.unit(10, "feet")
  2674. },
  2675. ]
  2676. ))
  2677. characterMakers.push(() => makeCharacter(
  2678. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2679. {
  2680. front: {
  2681. height: math.unit(2, "meter"),
  2682. weight: math.unit(50, "kg"),
  2683. name: "Front",
  2684. image: {
  2685. source: "./media/characters/kurribird/front.svg",
  2686. bottom: 0.015
  2687. }
  2688. },
  2689. frontAlt: {
  2690. height: math.unit(1.5, "meter"),
  2691. weight: math.unit(50, "kg"),
  2692. name: "Front (Alt)",
  2693. image: {
  2694. source: "./media/characters/kurribird/front-alt.svg",
  2695. extra: 1.45
  2696. }
  2697. },
  2698. },
  2699. [
  2700. {
  2701. name: "Normal",
  2702. height: math.unit(7, "feet")
  2703. },
  2704. {
  2705. name: "Big",
  2706. height: math.unit(12, "feet"),
  2707. default: true
  2708. },
  2709. {
  2710. name: "Macro",
  2711. height: math.unit(1500, "feet")
  2712. },
  2713. {
  2714. name: "Megamacro",
  2715. height: math.unit(2, "miles")
  2716. }
  2717. ]
  2718. ))
  2719. characterMakers.push(() => makeCharacter(
  2720. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2721. {
  2722. front: {
  2723. height: math.unit(2, "meter"),
  2724. weight: math.unit(80, "kg"),
  2725. name: "Front",
  2726. image: {
  2727. source: "./media/characters/elbial/front.svg",
  2728. extra: 1643 / 1556,
  2729. bottom: 60.2 / 1696
  2730. }
  2731. },
  2732. side: {
  2733. height: math.unit(2, "meter"),
  2734. weight: math.unit(80, "kg"),
  2735. name: "Side",
  2736. image: {
  2737. source: "./media/characters/elbial/side.svg",
  2738. extra: 1630 / 1565,
  2739. bottom: 71.5 / 1697
  2740. }
  2741. },
  2742. back: {
  2743. height: math.unit(2, "meter"),
  2744. weight: math.unit(80, "kg"),
  2745. name: "Back",
  2746. image: {
  2747. source: "./media/characters/elbial/back.svg",
  2748. extra: 1668 / 1595,
  2749. bottom: 5.6 / 1672
  2750. }
  2751. },
  2752. frontDressed: {
  2753. height: math.unit(2, "meter"),
  2754. weight: math.unit(80, "kg"),
  2755. name: "Front (Dressed)",
  2756. image: {
  2757. source: "./media/characters/elbial/front-dressed.svg",
  2758. extra: 1653 / 1584,
  2759. bottom: 57 / 1708
  2760. }
  2761. },
  2762. genitals: {
  2763. height: math.unit(2 / 3.367, "meter"),
  2764. name: "Genitals",
  2765. image: {
  2766. source: "./media/characters/elbial/genitals.svg"
  2767. }
  2768. },
  2769. },
  2770. [
  2771. {
  2772. name: "Large",
  2773. height: math.unit(100, "feet")
  2774. },
  2775. {
  2776. name: "Macro",
  2777. height: math.unit(500, "feet"),
  2778. default: true
  2779. },
  2780. {
  2781. name: "Megamacro",
  2782. height: math.unit(10, "miles")
  2783. },
  2784. {
  2785. name: "Gigamacro",
  2786. height: math.unit(25000, "miles")
  2787. },
  2788. {
  2789. name: "Full-Size",
  2790. height: math.unit(8000000, "gigaparsecs")
  2791. }
  2792. ]
  2793. ))
  2794. characterMakers.push(() => makeCharacter(
  2795. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2796. {
  2797. front: {
  2798. height: math.unit(2, "meter"),
  2799. weight: math.unit(60, "kg"),
  2800. name: "Front",
  2801. image: {
  2802. source: "./media/characters/noah/front.svg"
  2803. }
  2804. },
  2805. talons: {
  2806. height: math.unit(0.315, "meter"),
  2807. name: "Talons",
  2808. image: {
  2809. source: "./media/characters/noah/talons.svg"
  2810. }
  2811. }
  2812. },
  2813. [
  2814. {
  2815. name: "Large",
  2816. height: math.unit(50, "feet")
  2817. },
  2818. {
  2819. name: "Macro",
  2820. height: math.unit(750, "feet"),
  2821. default: true
  2822. },
  2823. {
  2824. name: "Megamacro",
  2825. height: math.unit(50, "miles")
  2826. },
  2827. {
  2828. name: "Gigamacro",
  2829. height: math.unit(100000, "miles")
  2830. },
  2831. {
  2832. name: "Full-Size",
  2833. height: math.unit(3000000000, "miles")
  2834. }
  2835. ]
  2836. ))
  2837. characterMakers.push(() => makeCharacter(
  2838. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2839. {
  2840. front: {
  2841. height: math.unit(2, "meter"),
  2842. weight: math.unit(80, "kg"),
  2843. name: "Front",
  2844. image: {
  2845. source: "./media/characters/natalya/front.svg"
  2846. }
  2847. },
  2848. back: {
  2849. height: math.unit(2, "meter"),
  2850. weight: math.unit(80, "kg"),
  2851. name: "Back",
  2852. image: {
  2853. source: "./media/characters/natalya/back.svg"
  2854. }
  2855. }
  2856. },
  2857. [
  2858. {
  2859. name: "Normal",
  2860. height: math.unit(150, "feet"),
  2861. default: true
  2862. },
  2863. {
  2864. name: "Megamacro",
  2865. height: math.unit(5, "miles")
  2866. },
  2867. {
  2868. name: "Full-Size",
  2869. height: math.unit(600, "kiloparsecs")
  2870. }
  2871. ]
  2872. ))
  2873. characterMakers.push(() => makeCharacter(
  2874. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2875. {
  2876. front: {
  2877. height: math.unit(2, "meter"),
  2878. weight: math.unit(50, "kg"),
  2879. name: "Front",
  2880. image: {
  2881. source: "./media/characters/erestrebah/front.svg",
  2882. extra: 208 / 193,
  2883. bottom: 0.055
  2884. }
  2885. },
  2886. back: {
  2887. height: math.unit(2, "meter"),
  2888. weight: math.unit(50, "kg"),
  2889. name: "Back",
  2890. image: {
  2891. source: "./media/characters/erestrebah/back.svg",
  2892. extra: 1.3
  2893. }
  2894. }
  2895. },
  2896. [
  2897. {
  2898. name: "Normal",
  2899. height: math.unit(10, "feet")
  2900. },
  2901. {
  2902. name: "Large",
  2903. height: math.unit(50, "feet"),
  2904. default: true
  2905. },
  2906. {
  2907. name: "Macro",
  2908. height: math.unit(300, "feet")
  2909. },
  2910. {
  2911. name: "Macro+",
  2912. height: math.unit(750, "feet")
  2913. },
  2914. {
  2915. name: "Megamacro",
  2916. height: math.unit(3, "miles")
  2917. }
  2918. ]
  2919. ))
  2920. characterMakers.push(() => makeCharacter(
  2921. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  2922. {
  2923. front: {
  2924. height: math.unit(2, "meter"),
  2925. weight: math.unit(80, "kg"),
  2926. name: "Front",
  2927. image: {
  2928. source: "./media/characters/jennifer/front.svg",
  2929. bottom: 0.11,
  2930. extra: 1.16
  2931. }
  2932. },
  2933. frontAlt: {
  2934. height: math.unit(2, "meter"),
  2935. weight: math.unit(80, "kg"),
  2936. name: "Front (Alt)",
  2937. image: {
  2938. source: "./media/characters/jennifer/front-alt.svg"
  2939. }
  2940. }
  2941. },
  2942. [
  2943. {
  2944. name: "Canon Height",
  2945. height: math.unit(120, "feet"),
  2946. default: true
  2947. },
  2948. {
  2949. name: "Macro+",
  2950. height: math.unit(300, "feet")
  2951. },
  2952. {
  2953. name: "Megamacro",
  2954. height: math.unit(20000, "feet")
  2955. }
  2956. ]
  2957. ))
  2958. characterMakers.push(() => makeCharacter(
  2959. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  2960. {
  2961. front: {
  2962. height: math.unit(2, "meter"),
  2963. weight: math.unit(50, "kg"),
  2964. name: "Front",
  2965. image: {
  2966. source: "./media/characters/kalista/front.svg",
  2967. extra: 1947 / 1700,
  2968. bottom: 76.6 / 1412.98
  2969. }
  2970. },
  2971. back: {
  2972. height: math.unit(2, "meter"),
  2973. weight: math.unit(50, "kg"),
  2974. name: "Back",
  2975. image: {
  2976. source: "./media/characters/kalista/back.svg",
  2977. extra: 1366 / 1156,
  2978. bottom: 33.9 / 1362.78
  2979. }
  2980. }
  2981. },
  2982. [
  2983. {
  2984. name: "Uncomfortably Small",
  2985. height: math.unit(10, "feet")
  2986. },
  2987. {
  2988. name: "Small",
  2989. height: math.unit(30, "feet")
  2990. },
  2991. {
  2992. name: "Macro",
  2993. height: math.unit(100, "feet"),
  2994. default: true
  2995. },
  2996. {
  2997. name: "Macro+",
  2998. height: math.unit(2000, "feet")
  2999. },
  3000. {
  3001. name: "True Form",
  3002. height: math.unit(8924, "miles")
  3003. }
  3004. ]
  3005. ))
  3006. characterMakers.push(() => makeCharacter(
  3007. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3008. {
  3009. front: {
  3010. height: math.unit(2, "meter"),
  3011. weight: math.unit(120, "kg"),
  3012. name: "Front",
  3013. image: {
  3014. source: "./media/characters/ggv/front.svg"
  3015. }
  3016. },
  3017. side: {
  3018. height: math.unit(2, "meter"),
  3019. weight: math.unit(120, "kg"),
  3020. name: "Side",
  3021. image: {
  3022. source: "./media/characters/ggv/side.svg"
  3023. }
  3024. }
  3025. },
  3026. [
  3027. {
  3028. name: "Extremely Puny",
  3029. height: math.unit(9 + 5 / 12, "feet")
  3030. },
  3031. {
  3032. name: "Horribly Small",
  3033. height: math.unit(47.7, "miles"),
  3034. default: true
  3035. },
  3036. {
  3037. name: "Reasonably Sized",
  3038. height: math.unit(25000, "parsecs")
  3039. },
  3040. {
  3041. name: "Slightly Uncompressed",
  3042. height: math.unit(7.77e31, "parsecs")
  3043. },
  3044. {
  3045. name: "Omniversal",
  3046. height: math.unit(1e300, "meters")
  3047. },
  3048. ]
  3049. ))
  3050. characterMakers.push(() => makeCharacter(
  3051. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3052. {
  3053. front: {
  3054. height: math.unit(2, "meter"),
  3055. weight: math.unit(75, "lb"),
  3056. name: "Front",
  3057. image: {
  3058. source: "./media/characters/napalm/front.svg"
  3059. }
  3060. },
  3061. back: {
  3062. height: math.unit(2, "meter"),
  3063. weight: math.unit(75, "lb"),
  3064. name: "Back",
  3065. image: {
  3066. source: "./media/characters/napalm/back.svg"
  3067. }
  3068. }
  3069. },
  3070. [
  3071. {
  3072. name: "Standard",
  3073. height: math.unit(55, "feet"),
  3074. default: true
  3075. }
  3076. ]
  3077. ))
  3078. characterMakers.push(() => makeCharacter(
  3079. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3080. {
  3081. front: {
  3082. height: math.unit(7 + 5 / 6, "feet"),
  3083. weight: math.unit(325, "lb"),
  3084. name: "Front",
  3085. image: {
  3086. source: "./media/characters/asana/front.svg",
  3087. extra: 1133 / 1060,
  3088. bottom: 15.2/1148.6
  3089. }
  3090. },
  3091. back: {
  3092. height: math.unit(7 + 5 / 6, "feet"),
  3093. weight: math.unit(325, "lb"),
  3094. name: "Back",
  3095. image: {
  3096. source: "./media/characters/asana/back.svg",
  3097. extra: 1114 / 1043,
  3098. bottom: 5/1120
  3099. }
  3100. },
  3101. dressedDark: {
  3102. height: math.unit(7 + 5 / 6, "feet"),
  3103. weight: math.unit(325, "lb"),
  3104. name: "Dressed (Dark)",
  3105. image: {
  3106. source: "./media/characters/asana/dressed-dark.svg",
  3107. extra: 1133 / 1060,
  3108. bottom: 15.2/1148.6
  3109. }
  3110. },
  3111. dressedLight: {
  3112. height: math.unit(7 + 5 / 6, "feet"),
  3113. weight: math.unit(325, "lb"),
  3114. name: "Dressed (Light)",
  3115. image: {
  3116. source: "./media/characters/asana/dressed-light.svg",
  3117. extra: 1133 / 1060,
  3118. bottom: 15.2/1148.6
  3119. }
  3120. },
  3121. },
  3122. [
  3123. {
  3124. name: "Standard",
  3125. height: math.unit(7 + 5 / 6, "feet"),
  3126. default: true
  3127. },
  3128. {
  3129. name: "Large",
  3130. height: math.unit(10, "meters")
  3131. },
  3132. {
  3133. name: "Macro",
  3134. height: math.unit(2500, "meters")
  3135. },
  3136. {
  3137. name: "Megamacro",
  3138. height: math.unit(5e6, "meters")
  3139. },
  3140. {
  3141. name: "Examacro",
  3142. height: math.unit(5e12, "lightyears")
  3143. },
  3144. {
  3145. name: "Max Size",
  3146. height: math.unit(1e31, "lightyears")
  3147. }
  3148. ]
  3149. ))
  3150. characterMakers.push(() => makeCharacter(
  3151. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3152. {
  3153. front: {
  3154. height: math.unit(2, "meter"),
  3155. weight: math.unit(60, "kg"),
  3156. name: "Front",
  3157. image: {
  3158. source: "./media/characters/ebony/front.svg",
  3159. bottom: 0.03,
  3160. extra: 1045 / 810 + 0.03
  3161. }
  3162. },
  3163. side: {
  3164. height: math.unit(2, "meter"),
  3165. weight: math.unit(60, "kg"),
  3166. name: "Side",
  3167. image: {
  3168. source: "./media/characters/ebony/side.svg",
  3169. bottom: 0.03,
  3170. extra: 1045 / 810 + 0.03
  3171. }
  3172. },
  3173. back: {
  3174. height: math.unit(2, "meter"),
  3175. weight: math.unit(60, "kg"),
  3176. name: "Back",
  3177. image: {
  3178. source: "./media/characters/ebony/back.svg",
  3179. bottom: 0.01,
  3180. extra: 1045 / 810 + 0.01
  3181. }
  3182. },
  3183. },
  3184. [
  3185. // TODO check why I did this lol
  3186. {
  3187. name: "Standard",
  3188. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3189. default: true
  3190. },
  3191. {
  3192. name: "Macro",
  3193. height: math.unit(200, "feet")
  3194. },
  3195. {
  3196. name: "Gigamacro",
  3197. height: math.unit(13000, "km")
  3198. }
  3199. ]
  3200. ))
  3201. characterMakers.push(() => makeCharacter(
  3202. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3203. {
  3204. front: {
  3205. height: math.unit(6, "feet"),
  3206. weight: math.unit(175, "lb"),
  3207. name: "Front",
  3208. image: {
  3209. source: "./media/characters/mountain/front.svg",
  3210. extra: 972/955,
  3211. bottom: 64/1036.6
  3212. }
  3213. },
  3214. back: {
  3215. height: math.unit(6, "feet"),
  3216. weight: math.unit(175, "lb"),
  3217. name: "Back",
  3218. image: {
  3219. source: "./media/characters/mountain/back.svg",
  3220. extra: 970/950,
  3221. bottom: 28.25/999
  3222. }
  3223. },
  3224. },
  3225. [
  3226. {
  3227. name: "Large",
  3228. height: math.unit(20, "meters")
  3229. },
  3230. {
  3231. name: "Macro",
  3232. height: math.unit(300, "meters")
  3233. },
  3234. {
  3235. name: "Gigamacro",
  3236. height: math.unit(10000, "km"),
  3237. default: true
  3238. },
  3239. {
  3240. name: "Examacro",
  3241. height: math.unit(10e9, "lightyears")
  3242. }
  3243. ]
  3244. ))
  3245. characterMakers.push(() => makeCharacter(
  3246. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3247. {
  3248. front: {
  3249. height: math.unit(8, "feet"),
  3250. weight: math.unit(500, "lb"),
  3251. name: "Front",
  3252. image: {
  3253. source: "./media/characters/rick/front.svg"
  3254. }
  3255. }
  3256. },
  3257. [
  3258. {
  3259. name: "Normal",
  3260. height: math.unit(8, "feet"),
  3261. default: true
  3262. },
  3263. {
  3264. name: "Macro",
  3265. height: math.unit(5, "km")
  3266. }
  3267. ]
  3268. ))
  3269. characterMakers.push(() => makeCharacter(
  3270. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3271. {
  3272. front: {
  3273. height: math.unit(8, "feet"),
  3274. weight: math.unit(120, "lb"),
  3275. name: "Front",
  3276. image: {
  3277. source: "./media/characters/ona/front.svg"
  3278. }
  3279. },
  3280. frontAlt: {
  3281. height: math.unit(8, "feet"),
  3282. weight: math.unit(120, "lb"),
  3283. name: "Front (Alt)",
  3284. image: {
  3285. source: "./media/characters/ona/front-alt.svg"
  3286. }
  3287. },
  3288. back: {
  3289. height: math.unit(8, "feet"),
  3290. weight: math.unit(120, "lb"),
  3291. name: "Back",
  3292. image: {
  3293. source: "./media/characters/ona/back.svg"
  3294. }
  3295. },
  3296. foot: {
  3297. height: math.unit(1.1, "feet"),
  3298. name: "Foot",
  3299. image: {
  3300. source: "./media/characters/ona/foot.svg"
  3301. }
  3302. }
  3303. },
  3304. [
  3305. {
  3306. name: "Megamacro",
  3307. height: math.unit(70, "km"),
  3308. default: true
  3309. },
  3310. {
  3311. name: "Gigamacro",
  3312. height: math.unit(681818, "miles")
  3313. },
  3314. {
  3315. name: "Examacro",
  3316. height: math.unit(3800000, "lightyears")
  3317. },
  3318. ]
  3319. ))
  3320. characterMakers.push(() => makeCharacter(
  3321. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3322. {
  3323. front: {
  3324. height: math.unit(12, "feet"),
  3325. weight: math.unit(3000, "lb"),
  3326. name: "Front",
  3327. image: {
  3328. source: "./media/characters/mech/front.svg",
  3329. bottom: 0.025,
  3330. }
  3331. },
  3332. back: {
  3333. height: math.unit(12, "feet"),
  3334. weight: math.unit(3000, "lb"),
  3335. name: "Back",
  3336. image: {
  3337. source: "./media/characters/mech/back.svg",
  3338. bottom: 0.03,
  3339. }
  3340. }
  3341. },
  3342. [
  3343. {
  3344. name: "Normal",
  3345. height: math.unit(12, "feet")
  3346. },
  3347. {
  3348. name: "Macro",
  3349. height: math.unit(300, "feet"),
  3350. default: true
  3351. },
  3352. {
  3353. name: "Macro+",
  3354. height: math.unit(1500, "feet")
  3355. },
  3356. ]
  3357. ))
  3358. characterMakers.push(() => makeCharacter(
  3359. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3360. {
  3361. front: {
  3362. height: math.unit(1.3, "meter"),
  3363. weight: math.unit(30, "kg"),
  3364. name: "Front",
  3365. image: {
  3366. source: "./media/characters/gregory/front.svg",
  3367. }
  3368. }
  3369. },
  3370. [
  3371. {
  3372. name: "Normal",
  3373. height: math.unit(1.3, "meter"),
  3374. default: true
  3375. },
  3376. {
  3377. name: "Macro",
  3378. height: math.unit(20, "meter")
  3379. }
  3380. ]
  3381. ))
  3382. characterMakers.push(() => makeCharacter(
  3383. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3384. {
  3385. front: {
  3386. height: math.unit(2.8, "meter"),
  3387. weight: math.unit(200, "kg"),
  3388. name: "Front",
  3389. image: {
  3390. source: "./media/characters/elory/front.svg",
  3391. }
  3392. }
  3393. },
  3394. [
  3395. {
  3396. name: "Normal",
  3397. height: math.unit(2.8, "meter"),
  3398. default: true
  3399. },
  3400. {
  3401. name: "Macro",
  3402. height: math.unit(38, "meter")
  3403. }
  3404. ]
  3405. ))
  3406. characterMakers.push(() => makeCharacter(
  3407. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3408. {
  3409. front: {
  3410. height: math.unit(470, "feet"),
  3411. weight: math.unit(924, "tons"),
  3412. name: "Front",
  3413. image: {
  3414. source: "./media/characters/angelpatamon/front.svg",
  3415. }
  3416. }
  3417. },
  3418. [
  3419. {
  3420. name: "Normal",
  3421. height: math.unit(470, "feet"),
  3422. default: true
  3423. },
  3424. {
  3425. name: "Deity Size I",
  3426. height: math.unit(28651.2, "km")
  3427. },
  3428. {
  3429. name: "Deity Size II",
  3430. height: math.unit(171907.2, "km")
  3431. }
  3432. ]
  3433. ))
  3434. characterMakers.push(() => makeCharacter(
  3435. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3436. {
  3437. side: {
  3438. height: math.unit(7.2, "meter"),
  3439. weight: math.unit(8.2, "tons"),
  3440. name: "Side",
  3441. image: {
  3442. source: "./media/characters/cryae/side.svg",
  3443. extra: 3500 / 1500
  3444. }
  3445. }
  3446. },
  3447. [
  3448. {
  3449. name: "Normal",
  3450. height: math.unit(7.2, "meter"),
  3451. default: true
  3452. }
  3453. ]
  3454. ))
  3455. characterMakers.push(() => makeCharacter(
  3456. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3457. {
  3458. front: {
  3459. height: math.unit(6, "feet"),
  3460. weight: math.unit(175, "lb"),
  3461. name: "Front",
  3462. image: {
  3463. source: "./media/characters/xera/front.svg",
  3464. extra: 2377 / 1972,
  3465. bottom: 75.5/2452
  3466. }
  3467. },
  3468. side: {
  3469. height: math.unit(6, "feet"),
  3470. weight: math.unit(175, "lb"),
  3471. name: "Side",
  3472. image: {
  3473. source: "./media/characters/xera/side.svg",
  3474. extra: 2345/2019,
  3475. bottom: 39.7/2384
  3476. }
  3477. },
  3478. back: {
  3479. height: math.unit(6, "feet"),
  3480. weight: math.unit(175, "lb"),
  3481. name: "Back",
  3482. image: {
  3483. source: "./media/characters/xera/back.svg",
  3484. extra: 2095/1984,
  3485. bottom: 67/2166
  3486. }
  3487. },
  3488. },
  3489. [
  3490. {
  3491. name: "Small",
  3492. height: math.unit(10, "feet")
  3493. },
  3494. {
  3495. name: "Macro",
  3496. height: math.unit(500, "meters"),
  3497. default: true
  3498. },
  3499. {
  3500. name: "Macro+",
  3501. height: math.unit(10, "km")
  3502. },
  3503. {
  3504. name: "Gigamacro",
  3505. height: math.unit(25000, "km")
  3506. },
  3507. {
  3508. name: "Teramacro",
  3509. height: math.unit(3e6, "km")
  3510. }
  3511. ]
  3512. ))
  3513. characterMakers.push(() => makeCharacter(
  3514. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3515. {
  3516. front: {
  3517. height: math.unit(6, "feet"),
  3518. weight: math.unit(175, "lb"),
  3519. name: "Front",
  3520. image: {
  3521. source: "./media/characters/nebula/front.svg",
  3522. extra: 2566/2362,
  3523. bottom: 81/2644
  3524. }
  3525. }
  3526. },
  3527. [
  3528. {
  3529. name: "Small",
  3530. height: math.unit(4.5, "meters")
  3531. },
  3532. {
  3533. name: "Macro",
  3534. height: math.unit(1500, "meters"),
  3535. default: true
  3536. },
  3537. {
  3538. name: "Megamacro",
  3539. height: math.unit(150, "km")
  3540. },
  3541. {
  3542. name: "Gigamacro",
  3543. height: math.unit(27000, "km")
  3544. }
  3545. ]
  3546. ))
  3547. characterMakers.push(() => makeCharacter(
  3548. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3549. {
  3550. front: {
  3551. height: math.unit(6, "feet"),
  3552. weight: math.unit(225, "lb"),
  3553. name: "Front",
  3554. image: {
  3555. source: "./media/characters/abysgar/front.svg"
  3556. }
  3557. }
  3558. },
  3559. [
  3560. {
  3561. name: "Small",
  3562. height: math.unit(4.5, "meters")
  3563. },
  3564. {
  3565. name: "Macro",
  3566. height: math.unit(1250, "meters"),
  3567. default: true
  3568. },
  3569. {
  3570. name: "Megamacro",
  3571. height: math.unit(125, "km")
  3572. },
  3573. {
  3574. name: "Gigamacro",
  3575. height: math.unit(26000, "km")
  3576. }
  3577. ]
  3578. ))
  3579. characterMakers.push(() => makeCharacter(
  3580. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3581. {
  3582. front: {
  3583. height: math.unit(6, "feet"),
  3584. weight: math.unit(180, "lb"),
  3585. name: "Front",
  3586. image: {
  3587. source: "./media/characters/yakuz/front.svg"
  3588. }
  3589. }
  3590. },
  3591. [
  3592. {
  3593. name: "Small",
  3594. height: math.unit(5, "meters")
  3595. },
  3596. {
  3597. name: "Macro",
  3598. height: math.unit(1500, "meters"),
  3599. default: true
  3600. },
  3601. {
  3602. name: "Megamacro",
  3603. height: math.unit(200, "km")
  3604. },
  3605. {
  3606. name: "Gigamacro",
  3607. height: math.unit(100000, "km")
  3608. }
  3609. ]
  3610. ))
  3611. characterMakers.push(() => makeCharacter(
  3612. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3613. {
  3614. front: {
  3615. height: math.unit(6, "feet"),
  3616. weight: math.unit(175, "lb"),
  3617. name: "Front",
  3618. image: {
  3619. source: "./media/characters/mirova/front.svg",
  3620. extra: 3334/3071,
  3621. bottom: 42/3375.6
  3622. }
  3623. }
  3624. },
  3625. [
  3626. {
  3627. name: "Small",
  3628. height: math.unit(5, "meters")
  3629. },
  3630. {
  3631. name: "Macro",
  3632. height: math.unit(900, "meters"),
  3633. default: true
  3634. },
  3635. {
  3636. name: "Megamacro",
  3637. height: math.unit(135, "km")
  3638. },
  3639. {
  3640. name: "Gigamacro",
  3641. height: math.unit(20000, "km")
  3642. }
  3643. ]
  3644. ))
  3645. characterMakers.push(() => makeCharacter(
  3646. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3647. {
  3648. side: {
  3649. height: math.unit(28.35, "feet"),
  3650. weight: math.unit(99.75, "tons"),
  3651. name: "Side",
  3652. image: {
  3653. source: "./media/characters/asana-mech/side.svg",
  3654. extra: 923/699,
  3655. bottom: 50/975
  3656. }
  3657. },
  3658. chaingun: {
  3659. height: math.unit(7, "feet"),
  3660. weight: math.unit(2400, "lb"),
  3661. name: "Chaingun",
  3662. image: {
  3663. source: "./media/characters/asana-mech/chaingun.svg"
  3664. }
  3665. },
  3666. laser: {
  3667. height: math.unit(7.12, "feet"),
  3668. weight: math.unit(2000, "lb"),
  3669. name: "Laser",
  3670. image: {
  3671. source: "./media/characters/asana-mech/laser.svg"
  3672. }
  3673. },
  3674. },
  3675. [
  3676. {
  3677. name: "Normal",
  3678. height: math.unit(28.35, "feet"),
  3679. default: true
  3680. },
  3681. {
  3682. name: "Macro",
  3683. height: math.unit(2500, "feet")
  3684. },
  3685. {
  3686. name: "Megamacro",
  3687. height: math.unit(25, "miles")
  3688. },
  3689. {
  3690. name: "Examacro",
  3691. height: math.unit(6e8, "lightyears")
  3692. },
  3693. ]
  3694. ))
  3695. characterMakers.push(() => makeCharacter(
  3696. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3697. {
  3698. front: {
  3699. height: math.unit(5, "meters"),
  3700. weight: math.unit(1000, "kg"),
  3701. name: "Front",
  3702. image: {
  3703. source: "./media/characters/asche/front.svg",
  3704. extra: 1258/1190,
  3705. bottom: 47/1305
  3706. }
  3707. },
  3708. frontUnderwear: {
  3709. height: math.unit(5, "meters"),
  3710. weight: math.unit(1000, "kg"),
  3711. name: "Front (Underwear)",
  3712. image: {
  3713. source: "./media/characters/asche/front-underwear.svg",
  3714. extra: 1258/1190,
  3715. bottom: 47/1305
  3716. }
  3717. },
  3718. frontDressed: {
  3719. height: math.unit(5, "meters"),
  3720. weight: math.unit(1000, "kg"),
  3721. name: "Front (Dressed)",
  3722. image: {
  3723. source: "./media/characters/asche/front-dressed.svg",
  3724. extra: 1258/1190,
  3725. bottom: 47/1305
  3726. }
  3727. },
  3728. frontArmor: {
  3729. height: math.unit(5, "meters"),
  3730. weight: math.unit(1000, "kg"),
  3731. name: "Front (Armored)",
  3732. image: {
  3733. source: "./media/characters/asche/front-armored.svg",
  3734. extra: 1374 / 1308,
  3735. bottom: 23/1397
  3736. }
  3737. },
  3738. mp724: {
  3739. height: math.unit(0.96, "meters"),
  3740. weight: math.unit(38, "kg"),
  3741. name: "H&K MP724",
  3742. image: {
  3743. source: "./media/characters/asche/h&k-mp724.svg"
  3744. }
  3745. },
  3746. side: {
  3747. height: math.unit(5, "meters"),
  3748. weight: math.unit(1000, "kg"),
  3749. name: "Side",
  3750. image: {
  3751. source: "./media/characters/asche/side.svg",
  3752. extra: 1717 / 1609,
  3753. bottom: 0.005
  3754. }
  3755. },
  3756. back: {
  3757. height: math.unit(5, "meters"),
  3758. weight: math.unit(1000, "kg"),
  3759. name: "Back",
  3760. image: {
  3761. source: "./media/characters/asche/back.svg",
  3762. extra: 1570 / 1501
  3763. }
  3764. },
  3765. },
  3766. [
  3767. {
  3768. name: "DEFCON 5",
  3769. height: math.unit(5, "meters")
  3770. },
  3771. {
  3772. name: "DEFCON 4",
  3773. height: math.unit(500, "meters"),
  3774. default: true
  3775. },
  3776. {
  3777. name: "DEFCON 3",
  3778. height: math.unit(5, "km")
  3779. },
  3780. {
  3781. name: "DEFCON 2",
  3782. height: math.unit(500, "km")
  3783. },
  3784. {
  3785. name: "DEFCON 1",
  3786. height: math.unit(500000, "km")
  3787. },
  3788. {
  3789. name: "DEFCON 0",
  3790. height: math.unit(3, "gigaparsecs")
  3791. },
  3792. ]
  3793. ))
  3794. characterMakers.push(() => makeCharacter(
  3795. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3796. {
  3797. front: {
  3798. height: math.unit(2, "meters"),
  3799. weight: math.unit(76, "kg"),
  3800. name: "Front",
  3801. image: {
  3802. source: "./media/characters/gale/front.svg"
  3803. }
  3804. },
  3805. frontAlt1: {
  3806. height: math.unit(2, "meters"),
  3807. weight: math.unit(76, "kg"),
  3808. name: "Front (Alt 1)",
  3809. image: {
  3810. source: "./media/characters/gale/front-alt-1.svg"
  3811. }
  3812. },
  3813. frontAlt2: {
  3814. height: math.unit(2, "meters"),
  3815. weight: math.unit(76, "kg"),
  3816. name: "Front (Alt 2)",
  3817. image: {
  3818. source: "./media/characters/gale/front-alt-2.svg"
  3819. }
  3820. },
  3821. },
  3822. [
  3823. {
  3824. name: "Normal",
  3825. height: math.unit(7, "feet")
  3826. },
  3827. {
  3828. name: "Macro",
  3829. height: math.unit(150, "feet"),
  3830. default: true
  3831. },
  3832. {
  3833. name: "Macro+",
  3834. height: math.unit(300, "feet")
  3835. },
  3836. ]
  3837. ))
  3838. characterMakers.push(() => makeCharacter(
  3839. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3840. {
  3841. front: {
  3842. height: math.unit(2, "meters"),
  3843. weight: math.unit(76, "kg"),
  3844. name: "Front",
  3845. image: {
  3846. source: "./media/characters/draylen/front.svg"
  3847. }
  3848. }
  3849. },
  3850. [
  3851. {
  3852. name: "Macro",
  3853. height: math.unit(150, "feet"),
  3854. default: true
  3855. }
  3856. ]
  3857. ))
  3858. characterMakers.push(() => makeCharacter(
  3859. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3860. {
  3861. front: {
  3862. height: math.unit(7 + 9 / 12, "feet"),
  3863. weight: math.unit(379, "lbs"),
  3864. name: "Front",
  3865. image: {
  3866. source: "./media/characters/chez/front.svg"
  3867. }
  3868. },
  3869. side: {
  3870. height: math.unit(7 + 9 / 12, "feet"),
  3871. weight: math.unit(379, "lbs"),
  3872. name: "Side",
  3873. image: {
  3874. source: "./media/characters/chez/side.svg"
  3875. }
  3876. }
  3877. },
  3878. [
  3879. {
  3880. name: "Normal",
  3881. height: math.unit(7 + 9 / 12, "feet"),
  3882. default: true
  3883. },
  3884. {
  3885. name: "God King",
  3886. height: math.unit(9750000, "meters")
  3887. }
  3888. ]
  3889. ))
  3890. characterMakers.push(() => makeCharacter(
  3891. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  3892. {
  3893. front: {
  3894. height: math.unit(6, "feet"),
  3895. weight: math.unit(275, "lbs"),
  3896. name: "Front",
  3897. image: {
  3898. source: "./media/characters/kaylum/front.svg",
  3899. bottom: 0.01,
  3900. extra: 1166 / 1031
  3901. }
  3902. },
  3903. frontWingless: {
  3904. height: math.unit(6, "feet"),
  3905. weight: math.unit(275, "lbs"),
  3906. name: "Front (Wingless)",
  3907. image: {
  3908. source: "./media/characters/kaylum/front-wingless.svg",
  3909. bottom: 0.01,
  3910. extra: 1117 / 1031
  3911. }
  3912. }
  3913. },
  3914. [
  3915. {
  3916. name: "Normal",
  3917. height: math.unit(3.05, "meters")
  3918. },
  3919. {
  3920. name: "Master",
  3921. height: math.unit(5.5, "meters")
  3922. },
  3923. {
  3924. name: "Rampage",
  3925. height: math.unit(19, "meters")
  3926. },
  3927. {
  3928. name: "Macro Lite",
  3929. height: math.unit(37, "meters")
  3930. },
  3931. {
  3932. name: "Hyper Predator",
  3933. height: math.unit(61, "meters")
  3934. },
  3935. {
  3936. name: "Macro",
  3937. height: math.unit(138, "meters"),
  3938. default: true
  3939. }
  3940. ]
  3941. ))
  3942. characterMakers.push(() => makeCharacter(
  3943. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  3944. {
  3945. front: {
  3946. height: math.unit(6, "feet"),
  3947. weight: math.unit(150, "lbs"),
  3948. name: "Front",
  3949. image: {
  3950. source: "./media/characters/geta/front.svg"
  3951. }
  3952. }
  3953. },
  3954. [
  3955. {
  3956. name: "Micro",
  3957. height: math.unit(3, "inches"),
  3958. default: true
  3959. },
  3960. {
  3961. name: "Normal",
  3962. height: math.unit(5 + 5 / 12, "feet")
  3963. }
  3964. ]
  3965. ))
  3966. characterMakers.push(() => makeCharacter(
  3967. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  3968. {
  3969. front: {
  3970. height: math.unit(6, "feet"),
  3971. weight: math.unit(300, "lbs"),
  3972. name: "Front",
  3973. image: {
  3974. source: "./media/characters/tyrnn/front.svg"
  3975. }
  3976. }
  3977. },
  3978. [
  3979. {
  3980. name: "Main Height",
  3981. height: math.unit(355, "feet"),
  3982. default: true
  3983. },
  3984. {
  3985. name: "Fave. Height",
  3986. height: math.unit(2400, "feet")
  3987. }
  3988. ]
  3989. ))
  3990. characterMakers.push(() => makeCharacter(
  3991. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  3992. {
  3993. front: {
  3994. height: math.unit(6, "feet"),
  3995. weight: math.unit(300, "lbs"),
  3996. name: "Front",
  3997. image: {
  3998. source: "./media/characters/appledectomy/front.svg"
  3999. }
  4000. }
  4001. },
  4002. [
  4003. {
  4004. name: "Macro",
  4005. height: math.unit(2500, "feet")
  4006. },
  4007. {
  4008. name: "Megamacro",
  4009. height: math.unit(50, "miles"),
  4010. default: true
  4011. },
  4012. {
  4013. name: "Gigamacro",
  4014. height: math.unit(5000, "miles")
  4015. },
  4016. {
  4017. name: "Teramacro",
  4018. height: math.unit(250000, "miles")
  4019. },
  4020. ]
  4021. ))
  4022. characterMakers.push(() => makeCharacter(
  4023. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4024. {
  4025. front: {
  4026. height: math.unit(6, "feet"),
  4027. weight: math.unit(200, "lbs"),
  4028. name: "Front",
  4029. image: {
  4030. source: "./media/characters/vulpes/front.svg",
  4031. extra: 573 / 543,
  4032. bottom: 0.033
  4033. }
  4034. },
  4035. side: {
  4036. height: math.unit(6, "feet"),
  4037. weight: math.unit(200, "lbs"),
  4038. name: "Side",
  4039. image: {
  4040. source: "./media/characters/vulpes/side.svg",
  4041. extra: 573 / 543,
  4042. bottom: 0.01
  4043. }
  4044. },
  4045. back: {
  4046. height: math.unit(6, "feet"),
  4047. weight: math.unit(200, "lbs"),
  4048. name: "Back",
  4049. image: {
  4050. source: "./media/characters/vulpes/back.svg",
  4051. extra: 573 / 543,
  4052. }
  4053. },
  4054. feet: {
  4055. height: math.unit(1.276, "feet"),
  4056. name: "Feet",
  4057. image: {
  4058. source: "./media/characters/vulpes/feet.svg"
  4059. }
  4060. },
  4061. maw: {
  4062. height: math.unit(1.18, "feet"),
  4063. name: "Maw",
  4064. image: {
  4065. source: "./media/characters/vulpes/maw.svg"
  4066. }
  4067. },
  4068. },
  4069. [
  4070. {
  4071. name: "Micro",
  4072. height: math.unit(2, "inches")
  4073. },
  4074. {
  4075. name: "Normal",
  4076. height: math.unit(6.3, "feet")
  4077. },
  4078. {
  4079. name: "Macro",
  4080. height: math.unit(850, "feet")
  4081. },
  4082. {
  4083. name: "Megamacro",
  4084. height: math.unit(7500, "feet"),
  4085. default: true
  4086. },
  4087. {
  4088. name: "Gigamacro",
  4089. height: math.unit(570000, "miles")
  4090. }
  4091. ]
  4092. ))
  4093. characterMakers.push(() => makeCharacter(
  4094. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4095. {
  4096. front: {
  4097. height: math.unit(6, "feet"),
  4098. weight: math.unit(210, "lbs"),
  4099. name: "Front",
  4100. image: {
  4101. source: "./media/characters/rain-fallen/front.svg"
  4102. }
  4103. },
  4104. side: {
  4105. height: math.unit(6, "feet"),
  4106. weight: math.unit(210, "lbs"),
  4107. name: "Side",
  4108. image: {
  4109. source: "./media/characters/rain-fallen/side.svg"
  4110. }
  4111. },
  4112. back: {
  4113. height: math.unit(6, "feet"),
  4114. weight: math.unit(210, "lbs"),
  4115. name: "Back",
  4116. image: {
  4117. source: "./media/characters/rain-fallen/back.svg"
  4118. }
  4119. },
  4120. feral: {
  4121. height: math.unit(9, "feet"),
  4122. weight: math.unit(700, "lbs"),
  4123. name: "Feral",
  4124. image: {
  4125. source: "./media/characters/rain-fallen/feral.svg"
  4126. }
  4127. },
  4128. },
  4129. [
  4130. {
  4131. name: "Normal",
  4132. height: math.unit(5, "meter")
  4133. },
  4134. {
  4135. name: "Macro",
  4136. height: math.unit(150, "meter"),
  4137. default: true
  4138. },
  4139. {
  4140. name: "Megamacro",
  4141. height: math.unit(278e6, "meter")
  4142. },
  4143. {
  4144. name: "Gigamacro",
  4145. height: math.unit(2e9, "meter")
  4146. },
  4147. {
  4148. name: "Teramacro",
  4149. height: math.unit(8e12, "meter")
  4150. },
  4151. {
  4152. name: "Devourer",
  4153. height: math.unit(14, "zettameters")
  4154. },
  4155. {
  4156. name: "Scarlet King",
  4157. height: math.unit(18, "yottameters")
  4158. },
  4159. {
  4160. name: "Void",
  4161. height: math.unit(6.66e66, "yottameters")
  4162. }
  4163. ]
  4164. ))
  4165. characterMakers.push(() => makeCharacter(
  4166. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4167. {
  4168. standing: {
  4169. height: math.unit(6, "feet"),
  4170. weight: math.unit(180, "lbs"),
  4171. name: "Standing",
  4172. image: {
  4173. source: "./media/characters/zaakira/standing.svg"
  4174. }
  4175. },
  4176. laying: {
  4177. height: math.unit(3, "feet"),
  4178. weight: math.unit(180, "lbs"),
  4179. name: "Laying",
  4180. image: {
  4181. source: "./media/characters/zaakira/laying.svg"
  4182. }
  4183. },
  4184. },
  4185. [
  4186. {
  4187. name: "Normal",
  4188. height: math.unit(12, "feet")
  4189. },
  4190. {
  4191. name: "Macro",
  4192. height: math.unit(279, "feet"),
  4193. default: true
  4194. }
  4195. ]
  4196. ))
  4197. characterMakers.push(() => makeCharacter(
  4198. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4199. {
  4200. front: {
  4201. height: math.unit(6, "feet"),
  4202. weight: math.unit(250, "lbs"),
  4203. name: "Front",
  4204. image: {
  4205. source: "./media/characters/sigvald/front.svg",
  4206. extra: 1000 / 850
  4207. }
  4208. },
  4209. back: {
  4210. height: math.unit(6, "feet"),
  4211. weight: math.unit(250, "lbs"),
  4212. name: "Back",
  4213. image: {
  4214. source: "./media/characters/sigvald/back.svg"
  4215. }
  4216. },
  4217. },
  4218. [
  4219. {
  4220. name: "Normal",
  4221. height: math.unit(8, "feet")
  4222. },
  4223. {
  4224. name: "Large",
  4225. height: math.unit(12, "feet")
  4226. },
  4227. {
  4228. name: "Larger",
  4229. height: math.unit(20, "feet")
  4230. },
  4231. {
  4232. name: "Macro",
  4233. height: math.unit(150, "feet")
  4234. },
  4235. {
  4236. name: "Macro+",
  4237. height: math.unit(200, "feet"),
  4238. default: true
  4239. },
  4240. ]
  4241. ))
  4242. characterMakers.push(() => makeCharacter(
  4243. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4244. {
  4245. side: {
  4246. height: math.unit(12, "feet"),
  4247. weight: math.unit(2000, "kg"),
  4248. name: "Side",
  4249. image: {
  4250. source: "./media/characters/scott/side.svg",
  4251. extra: 754 / 724,
  4252. bottom: 0.069
  4253. }
  4254. },
  4255. upright: {
  4256. height: math.unit(12, "feet"),
  4257. weight: math.unit(2000, "kg"),
  4258. name: "Upright",
  4259. image: {
  4260. source: "./media/characters/scott/upright.svg",
  4261. extra: 3881 / 3722,
  4262. bottom: 0.05
  4263. }
  4264. },
  4265. },
  4266. [
  4267. {
  4268. name: "Normal",
  4269. height: math.unit(12, "feet"),
  4270. default: true
  4271. },
  4272. ]
  4273. ))
  4274. characterMakers.push(() => makeCharacter(
  4275. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4276. {
  4277. side: {
  4278. height: math.unit(8, "meters"),
  4279. weight: math.unit(84755, "lbs"),
  4280. name: "Side",
  4281. image: {
  4282. source: "./media/characters/tobias/side.svg",
  4283. extra: 1474 / 1096,
  4284. bottom: 38.9 / 1513.1235
  4285. }
  4286. },
  4287. },
  4288. [
  4289. {
  4290. name: "Normal",
  4291. height: math.unit(8, "meters"),
  4292. default: true
  4293. },
  4294. ]
  4295. ))
  4296. characterMakers.push(() => makeCharacter(
  4297. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4298. {
  4299. front: {
  4300. height: math.unit(5.5, "feet"),
  4301. weight: math.unit(400, "lbs"),
  4302. name: "Front",
  4303. image: {
  4304. source: "./media/characters/kieran/front.svg",
  4305. extra: 2694 / 2364,
  4306. bottom: 217 / 2908
  4307. }
  4308. },
  4309. side: {
  4310. height: math.unit(5.5, "feet"),
  4311. weight: math.unit(400, "lbs"),
  4312. name: "Side",
  4313. image: {
  4314. source: "./media/characters/kieran/side.svg",
  4315. extra: 875 / 777,
  4316. bottom: 84.6 / 959
  4317. }
  4318. },
  4319. },
  4320. [
  4321. {
  4322. name: "Normal",
  4323. height: math.unit(5.5, "feet"),
  4324. default: true
  4325. },
  4326. ]
  4327. ))
  4328. characterMakers.push(() => makeCharacter(
  4329. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4330. {
  4331. side: {
  4332. height: math.unit(2, "meters"),
  4333. weight: math.unit(70, "kg"),
  4334. name: "Side",
  4335. image: {
  4336. source: "./media/characters/sanya/side.svg",
  4337. bottom: 0.02,
  4338. extra: 1.02
  4339. }
  4340. },
  4341. },
  4342. [
  4343. {
  4344. name: "Small",
  4345. height: math.unit(2, "meters")
  4346. },
  4347. {
  4348. name: "Normal",
  4349. height: math.unit(3, "meters")
  4350. },
  4351. {
  4352. name: "Macro",
  4353. height: math.unit(16, "meters"),
  4354. default: true
  4355. },
  4356. ]
  4357. ))
  4358. characterMakers.push(() => makeCharacter(
  4359. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4360. {
  4361. front: {
  4362. height: math.unit(2, "meters"),
  4363. weight: math.unit(120, "kg"),
  4364. name: "Front",
  4365. image: {
  4366. source: "./media/characters/miranda/front.svg",
  4367. extra: 195/185,
  4368. bottom: 10.9/206.5
  4369. }
  4370. },
  4371. back: {
  4372. height: math.unit(2, "meters"),
  4373. weight: math.unit(120, "kg"),
  4374. name: "Back",
  4375. image: {
  4376. source: "./media/characters/miranda/back.svg",
  4377. extra: 201/193,
  4378. bottom: 2.3/203.7
  4379. }
  4380. },
  4381. },
  4382. [
  4383. {
  4384. name: "Normal",
  4385. height: math.unit(10, "feet"),
  4386. default: true
  4387. }
  4388. ]
  4389. ))
  4390. characterMakers.push(() => makeCharacter(
  4391. { name: "James", species: ["deer"], tags: ["anthro"] },
  4392. {
  4393. side: {
  4394. height: math.unit(2, "meters"),
  4395. weight: math.unit(100, "kg"),
  4396. name: "Front",
  4397. image: {
  4398. source: "./media/characters/james/front.svg",
  4399. extra: 10 / 8.5
  4400. }
  4401. },
  4402. },
  4403. [
  4404. {
  4405. name: "Normal",
  4406. height: math.unit(8.5, "feet"),
  4407. default: true
  4408. }
  4409. ]
  4410. ))
  4411. characterMakers.push(() => makeCharacter(
  4412. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4413. {
  4414. side: {
  4415. height: math.unit(9.5, "feet"),
  4416. weight: math.unit(2500, "lbs"),
  4417. name: "Side",
  4418. image: {
  4419. source: "./media/characters/heather/side.svg"
  4420. }
  4421. },
  4422. },
  4423. [
  4424. {
  4425. name: "Normal",
  4426. height: math.unit(9.5, "feet"),
  4427. default: true
  4428. }
  4429. ]
  4430. ))
  4431. characterMakers.push(() => makeCharacter(
  4432. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4433. {
  4434. side: {
  4435. height: math.unit(6.5, "feet"),
  4436. weight: math.unit(400, "lbs"),
  4437. name: "Side",
  4438. image: {
  4439. source: "./media/characters/lukas/side.svg",
  4440. extra: 7.25 / 6.5
  4441. }
  4442. },
  4443. },
  4444. [
  4445. {
  4446. name: "Normal",
  4447. height: math.unit(6.5, "feet"),
  4448. default: true
  4449. }
  4450. ]
  4451. ))
  4452. characterMakers.push(() => makeCharacter(
  4453. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4454. {
  4455. side: {
  4456. height: math.unit(5, "feet"),
  4457. weight: math.unit(3000, "lbs"),
  4458. name: "Side",
  4459. image: {
  4460. source: "./media/characters/louise/side.svg"
  4461. }
  4462. },
  4463. },
  4464. [
  4465. {
  4466. name: "Normal",
  4467. height: math.unit(5, "feet"),
  4468. default: true
  4469. }
  4470. ]
  4471. ))
  4472. characterMakers.push(() => makeCharacter(
  4473. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4474. {
  4475. side: {
  4476. height: math.unit(6, "feet"),
  4477. weight: math.unit(150, "lbs"),
  4478. name: "Side",
  4479. image: {
  4480. source: "./media/characters/ramona/side.svg"
  4481. }
  4482. },
  4483. },
  4484. [
  4485. {
  4486. name: "Normal",
  4487. height: math.unit(5.3, "meters"),
  4488. default: true
  4489. },
  4490. {
  4491. name: "Macro",
  4492. height: math.unit(20, "stories")
  4493. },
  4494. {
  4495. name: "Macro+",
  4496. height: math.unit(50, "stories")
  4497. },
  4498. ]
  4499. ))
  4500. characterMakers.push(() => makeCharacter(
  4501. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4502. {
  4503. standing: {
  4504. height: math.unit(5.75, "feet"),
  4505. weight: math.unit(160, "lbs"),
  4506. name: "Standing",
  4507. image: {
  4508. source: "./media/characters/deerpuff/standing.svg",
  4509. extra: 682 / 624
  4510. }
  4511. },
  4512. sitting: {
  4513. height: math.unit(5.75 / 1.79, "feet"),
  4514. weight: math.unit(160, "lbs"),
  4515. name: "Sitting",
  4516. image: {
  4517. source: "./media/characters/deerpuff/sitting.svg",
  4518. bottom: 44 / 400,
  4519. extra: 1
  4520. }
  4521. },
  4522. taurLaying: {
  4523. height: math.unit(6, "feet"),
  4524. weight: math.unit(400, "lbs"),
  4525. name: "Taur (Laying)",
  4526. image: {
  4527. source: "./media/characters/deerpuff/taur-laying.svg"
  4528. }
  4529. },
  4530. },
  4531. [
  4532. {
  4533. name: "Puffball",
  4534. height: math.unit(6, "inches")
  4535. },
  4536. {
  4537. name: "Normalpuff",
  4538. height: math.unit(5.75, "feet")
  4539. },
  4540. {
  4541. name: "Macropuff",
  4542. height: math.unit(1500, "feet"),
  4543. default: true
  4544. },
  4545. {
  4546. name: "Megapuff",
  4547. height: math.unit(500, "miles")
  4548. },
  4549. {
  4550. name: "Gigapuff",
  4551. height: math.unit(250000, "miles")
  4552. },
  4553. {
  4554. name: "Omegapuff",
  4555. height: math.unit(1000, "lightyears")
  4556. },
  4557. ]
  4558. ))
  4559. characterMakers.push(() => makeCharacter(
  4560. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4561. {
  4562. stomping: {
  4563. height: math.unit(6, "feet"),
  4564. weight: math.unit(170, "lbs"),
  4565. name: "Stomping",
  4566. image: {
  4567. source: "./media/characters/vivian/stomping.svg"
  4568. }
  4569. },
  4570. sitting: {
  4571. height: math.unit(6 / 1.75, "feet"),
  4572. weight: math.unit(170, "lbs"),
  4573. name: "Sitting",
  4574. image: {
  4575. source: "./media/characters/vivian/sitting.svg",
  4576. bottom: 1 / 6.4,
  4577. extra: 1,
  4578. }
  4579. },
  4580. },
  4581. [
  4582. {
  4583. name: "Normal",
  4584. height: math.unit(7, "feet"),
  4585. default: true
  4586. },
  4587. {
  4588. name: "Macro",
  4589. height: math.unit(10, "stories")
  4590. },
  4591. {
  4592. name: "Macro+",
  4593. height: math.unit(30, "stories")
  4594. },
  4595. {
  4596. name: "Megamacro",
  4597. height: math.unit(10, "miles")
  4598. },
  4599. {
  4600. name: "Megamacro+",
  4601. height: math.unit(2750000, "meters")
  4602. },
  4603. ]
  4604. ))
  4605. characterMakers.push(() => makeCharacter(
  4606. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4607. {
  4608. front: {
  4609. height: math.unit(6, "feet"),
  4610. weight: math.unit(160, "lbs"),
  4611. name: "Front",
  4612. image: {
  4613. source: "./media/characters/prince/front.svg",
  4614. extra: 3400 / 3000
  4615. }
  4616. },
  4617. jumping: {
  4618. height: math.unit(6, "feet"),
  4619. weight: math.unit(160, "lbs"),
  4620. name: "Jumping",
  4621. image: {
  4622. source: "./media/characters/prince/jump.svg",
  4623. extra: 2555 / 2134
  4624. }
  4625. },
  4626. },
  4627. [
  4628. {
  4629. name: "Normal",
  4630. height: math.unit(7.75, "feet"),
  4631. default: true
  4632. },
  4633. {
  4634. name: "Not cute",
  4635. height: math.unit(17, "feet")
  4636. },
  4637. {
  4638. name: "I said NOT",
  4639. height: math.unit(91, "feet")
  4640. },
  4641. {
  4642. name: "Please stop",
  4643. height: math.unit(560, "feet")
  4644. },
  4645. {
  4646. name: "What have you done",
  4647. height: math.unit(2200, "feet")
  4648. },
  4649. {
  4650. name: "Deer God",
  4651. height: math.unit(3.6, "miles")
  4652. },
  4653. ]
  4654. ))
  4655. characterMakers.push(() => makeCharacter(
  4656. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4657. {
  4658. standing: {
  4659. height: math.unit(6, "feet"),
  4660. weight: math.unit(300, "lbs"),
  4661. name: "Standing",
  4662. image: {
  4663. source: "./media/characters/psymon/standing.svg",
  4664. extra: 1888 / 1810,
  4665. bottom: 0.05
  4666. }
  4667. },
  4668. slithering: {
  4669. height: math.unit(6, "feet"),
  4670. weight: math.unit(300, "lbs"),
  4671. name: "Slithering",
  4672. image: {
  4673. source: "./media/characters/psymon/slithering.svg",
  4674. extra: 1330 / 1224
  4675. }
  4676. },
  4677. slitheringAlt: {
  4678. height: math.unit(6, "feet"),
  4679. weight: math.unit(300, "lbs"),
  4680. name: "Slithering (Alt)",
  4681. image: {
  4682. source: "./media/characters/psymon/slithering-alt.svg",
  4683. extra: 1330 / 1224
  4684. }
  4685. },
  4686. },
  4687. [
  4688. {
  4689. name: "Normal",
  4690. height: math.unit(11.25, "feet"),
  4691. default: true
  4692. },
  4693. {
  4694. name: "Large",
  4695. height: math.unit(27, "feet")
  4696. },
  4697. {
  4698. name: "Giant",
  4699. height: math.unit(87, "feet")
  4700. },
  4701. {
  4702. name: "Macro",
  4703. height: math.unit(365, "feet")
  4704. },
  4705. {
  4706. name: "Megamacro",
  4707. height: math.unit(3, "miles")
  4708. },
  4709. {
  4710. name: "World Serpent",
  4711. height: math.unit(8000, "miles")
  4712. },
  4713. ]
  4714. ))
  4715. characterMakers.push(() => makeCharacter(
  4716. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4717. {
  4718. front: {
  4719. height: math.unit(6, "feet"),
  4720. weight: math.unit(180, "lbs"),
  4721. name: "Front",
  4722. image: {
  4723. source: "./media/characters/daimos/front.svg",
  4724. extra: 4160 / 3897,
  4725. bottom: 0.021
  4726. }
  4727. }
  4728. },
  4729. [
  4730. {
  4731. name: "Normal",
  4732. height: math.unit(8, "feet"),
  4733. default: true
  4734. },
  4735. {
  4736. name: "Big Dog",
  4737. height: math.unit(22, "feet")
  4738. },
  4739. {
  4740. name: "Macro",
  4741. height: math.unit(127, "feet")
  4742. },
  4743. {
  4744. name: "Megamacro",
  4745. height: math.unit(3600, "feet")
  4746. },
  4747. ]
  4748. ))
  4749. characterMakers.push(() => makeCharacter(
  4750. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4751. {
  4752. side: {
  4753. height: math.unit(6, "feet"),
  4754. weight: math.unit(180, "lbs"),
  4755. name: "Side",
  4756. image: {
  4757. source: "./media/characters/blake/side.svg",
  4758. extra: 1212 / 1120,
  4759. bottom: 0.05
  4760. }
  4761. },
  4762. crouched: {
  4763. height: math.unit(6 * 0.57, "feet"),
  4764. weight: math.unit(180, "lbs"),
  4765. name: "Crouched",
  4766. image: {
  4767. source: "./media/characters/blake/crouched.svg",
  4768. extra: 840 / 587,
  4769. bottom: 0.04
  4770. }
  4771. },
  4772. bent: {
  4773. height: math.unit(6 * 0.75, "feet"),
  4774. weight: math.unit(180, "lbs"),
  4775. name: "Bent",
  4776. image: {
  4777. source: "./media/characters/blake/bent.svg",
  4778. extra: 592 / 544,
  4779. bottom: 0.035
  4780. }
  4781. },
  4782. },
  4783. [
  4784. {
  4785. name: "Normal",
  4786. height: math.unit(8 + 1 / 6, "feet"),
  4787. default: true
  4788. },
  4789. {
  4790. name: "Big Backside",
  4791. height: math.unit(37, "feet")
  4792. },
  4793. {
  4794. name: "Subway Shredder",
  4795. height: math.unit(72, "feet")
  4796. },
  4797. {
  4798. name: "City Carver",
  4799. height: math.unit(1675, "feet")
  4800. },
  4801. {
  4802. name: "Tectonic Tweaker",
  4803. height: math.unit(2300, "miles")
  4804. },
  4805. ]
  4806. ))
  4807. characterMakers.push(() => makeCharacter(
  4808. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4809. {
  4810. front: {
  4811. height: math.unit(6, "feet"),
  4812. weight: math.unit(180, "lbs"),
  4813. name: "Front",
  4814. image: {
  4815. source: "./media/characters/guisetto/front.svg",
  4816. extra: 856 / 817,
  4817. bottom: 0.06
  4818. }
  4819. },
  4820. airborne: {
  4821. height: math.unit(6, "feet"),
  4822. weight: math.unit(180, "lbs"),
  4823. name: "Airborne",
  4824. image: {
  4825. source: "./media/characters/guisetto/airborne.svg",
  4826. extra: 584 / 525
  4827. }
  4828. },
  4829. },
  4830. [
  4831. {
  4832. name: "Normal",
  4833. height: math.unit(10 + 11 / 12, "feet"),
  4834. default: true
  4835. },
  4836. {
  4837. name: "Large",
  4838. height: math.unit(35, "feet")
  4839. },
  4840. {
  4841. name: "Macro",
  4842. height: math.unit(475, "feet")
  4843. },
  4844. ]
  4845. ))
  4846. characterMakers.push(() => makeCharacter(
  4847. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  4848. {
  4849. front: {
  4850. height: math.unit(6, "feet"),
  4851. weight: math.unit(180, "lbs"),
  4852. name: "Front",
  4853. image: {
  4854. source: "./media/characters/luxor/front.svg",
  4855. extra: 2940 / 2152
  4856. }
  4857. },
  4858. back: {
  4859. height: math.unit(6, "feet"),
  4860. weight: math.unit(180, "lbs"),
  4861. name: "Back",
  4862. image: {
  4863. source: "./media/characters/luxor/back.svg",
  4864. extra: 1083 / 960
  4865. }
  4866. },
  4867. },
  4868. [
  4869. {
  4870. name: "Normal",
  4871. height: math.unit(5 + 5 / 6, "feet"),
  4872. default: true
  4873. },
  4874. {
  4875. name: "Lamp",
  4876. height: math.unit(50, "feet")
  4877. },
  4878. {
  4879. name: "Lämp",
  4880. height: math.unit(300, "feet")
  4881. },
  4882. {
  4883. name: "The sun is a lamp",
  4884. height: math.unit(250000, "miles")
  4885. },
  4886. ]
  4887. ))
  4888. characterMakers.push(() => makeCharacter(
  4889. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  4890. {
  4891. front: {
  4892. height: math.unit(6, "feet"),
  4893. weight: math.unit(50, "lbs"),
  4894. name: "Front",
  4895. image: {
  4896. source: "./media/characters/huoyan/front.svg"
  4897. }
  4898. },
  4899. side: {
  4900. height: math.unit(6, "feet"),
  4901. weight: math.unit(180, "lbs"),
  4902. name: "Side",
  4903. image: {
  4904. source: "./media/characters/huoyan/side.svg"
  4905. }
  4906. },
  4907. },
  4908. [
  4909. {
  4910. name: "Chef",
  4911. height: math.unit(9, "feet")
  4912. },
  4913. {
  4914. name: "Normal",
  4915. height: math.unit(65, "feet"),
  4916. default: true
  4917. },
  4918. {
  4919. name: "Macro",
  4920. height: math.unit(780, "feet")
  4921. },
  4922. {
  4923. name: "Flaming Mountain",
  4924. height: math.unit(4.8, "miles")
  4925. },
  4926. {
  4927. name: "Celestial",
  4928. height: math.unit(765000, "miles")
  4929. },
  4930. ]
  4931. ))
  4932. characterMakers.push(() => makeCharacter(
  4933. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  4934. {
  4935. front: {
  4936. height: math.unit(5 + 3 / 4, "feet"),
  4937. weight: math.unit(120, "lbs"),
  4938. name: "Front",
  4939. image: {
  4940. source: "./media/characters/tails/front.svg"
  4941. }
  4942. }
  4943. },
  4944. [
  4945. {
  4946. name: "Normal",
  4947. height: math.unit(5 + 3 / 4, "feet"),
  4948. default: true
  4949. }
  4950. ]
  4951. ))
  4952. characterMakers.push(() => makeCharacter(
  4953. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  4954. {
  4955. front: {
  4956. height: math.unit(4, "feet"),
  4957. weight: math.unit(50, "lbs"),
  4958. name: "Front",
  4959. image: {
  4960. source: "./media/characters/rainy/front.svg"
  4961. }
  4962. }
  4963. },
  4964. [
  4965. {
  4966. name: "Macro",
  4967. height: math.unit(800, "feet"),
  4968. default: true
  4969. }
  4970. ]
  4971. ))
  4972. characterMakers.push(() => makeCharacter(
  4973. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  4974. {
  4975. front: {
  4976. height: math.unit(6, "feet"),
  4977. weight: math.unit(150, "lbs"),
  4978. name: "Front",
  4979. image: {
  4980. source: "./media/characters/rainier/front.svg"
  4981. }
  4982. }
  4983. },
  4984. [
  4985. {
  4986. name: "Micro",
  4987. height: math.unit(2, "mm"),
  4988. default: true
  4989. }
  4990. ]
  4991. ))
  4992. characterMakers.push(() => makeCharacter(
  4993. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  4994. {
  4995. front: {
  4996. height: math.unit(6, "feet"),
  4997. weight: math.unit(180, "lbs"),
  4998. name: "Front",
  4999. image: {
  5000. source: "./media/characters/andy/front.svg"
  5001. }
  5002. }
  5003. },
  5004. [
  5005. {
  5006. name: "Normal",
  5007. height: math.unit(8, "feet"),
  5008. default: true
  5009. },
  5010. {
  5011. name: "Macro",
  5012. height: math.unit(1000, "feet")
  5013. },
  5014. {
  5015. name: "Megamacro",
  5016. height: math.unit(5, "miles")
  5017. },
  5018. {
  5019. name: "Gigamacro",
  5020. height: math.unit(5000, "miles")
  5021. },
  5022. ]
  5023. ))
  5024. characterMakers.push(() => makeCharacter(
  5025. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5026. {
  5027. front: {
  5028. height: math.unit(6, "feet"),
  5029. weight: math.unit(210, "lbs"),
  5030. name: "Front",
  5031. image: {
  5032. source: "./media/characters/cimmaron/front-sfw.svg",
  5033. extra: 701 / 676,
  5034. bottom: 0.046
  5035. }
  5036. },
  5037. back: {
  5038. height: math.unit(6, "feet"),
  5039. weight: math.unit(210, "lbs"),
  5040. name: "Back",
  5041. image: {
  5042. source: "./media/characters/cimmaron/back-sfw.svg",
  5043. extra: 701 / 676,
  5044. bottom: 0.046
  5045. }
  5046. },
  5047. frontNsfw: {
  5048. height: math.unit(6, "feet"),
  5049. weight: math.unit(210, "lbs"),
  5050. name: "Front (NSFW)",
  5051. image: {
  5052. source: "./media/characters/cimmaron/front-nsfw.svg",
  5053. extra: 701 / 676,
  5054. bottom: 0.046
  5055. }
  5056. },
  5057. backNsfw: {
  5058. height: math.unit(6, "feet"),
  5059. weight: math.unit(210, "lbs"),
  5060. name: "Back (NSFW)",
  5061. image: {
  5062. source: "./media/characters/cimmaron/back-nsfw.svg",
  5063. extra: 701 / 676,
  5064. bottom: 0.046
  5065. }
  5066. },
  5067. dick: {
  5068. height: math.unit(1.714, "feet"),
  5069. name: "Dick",
  5070. image: {
  5071. source: "./media/characters/cimmaron/dick.svg"
  5072. }
  5073. },
  5074. },
  5075. [
  5076. {
  5077. name: "Normal",
  5078. height: math.unit(6, "feet"),
  5079. default: true
  5080. },
  5081. {
  5082. name: "Macro Mayor",
  5083. height: math.unit(350, "meters")
  5084. },
  5085. ]
  5086. ))
  5087. characterMakers.push(() => makeCharacter(
  5088. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5089. {
  5090. front: {
  5091. height: math.unit(6, "feet"),
  5092. weight: math.unit(200, "lbs"),
  5093. name: "Front",
  5094. image: {
  5095. source: "./media/characters/akari/front.svg",
  5096. extra: 962 / 901,
  5097. bottom: 0.04
  5098. }
  5099. }
  5100. },
  5101. [
  5102. {
  5103. name: "Micro",
  5104. height: math.unit(5, "inches"),
  5105. default: true
  5106. },
  5107. {
  5108. name: "Normal",
  5109. height: math.unit(7, "feet")
  5110. },
  5111. ]
  5112. ))
  5113. characterMakers.push(() => makeCharacter(
  5114. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5115. {
  5116. front: {
  5117. height: math.unit(6, "feet"),
  5118. weight: math.unit(140, "lbs"),
  5119. name: "Front",
  5120. image: {
  5121. source: "./media/characters/cynosura/front.svg",
  5122. extra: 896 / 847
  5123. }
  5124. },
  5125. back: {
  5126. height: math.unit(6, "feet"),
  5127. weight: math.unit(140, "lbs"),
  5128. name: "Back",
  5129. image: {
  5130. source: "./media/characters/cynosura/back.svg",
  5131. extra: 1365 / 1250
  5132. }
  5133. },
  5134. },
  5135. [
  5136. {
  5137. name: "Micro",
  5138. height: math.unit(4, "inches")
  5139. },
  5140. {
  5141. name: "Normal",
  5142. height: math.unit(5.75, "feet"),
  5143. default: true
  5144. },
  5145. {
  5146. name: "Tall",
  5147. height: math.unit(10, "feet")
  5148. },
  5149. {
  5150. name: "Big",
  5151. height: math.unit(20, "feet")
  5152. },
  5153. {
  5154. name: "Macro",
  5155. height: math.unit(50, "feet")
  5156. },
  5157. ]
  5158. ))
  5159. characterMakers.push(() => makeCharacter(
  5160. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5161. {
  5162. front: {
  5163. height: math.unit(6, "feet"),
  5164. weight: math.unit(170, "lbs"),
  5165. name: "Front",
  5166. image: {
  5167. source: "./media/characters/gin/front.svg",
  5168. extra: 1.053,
  5169. bottom: 0.025
  5170. }
  5171. },
  5172. foot: {
  5173. height: math.unit(6 / 4.25, "feet"),
  5174. name: "Foot",
  5175. image: {
  5176. source: "./media/characters/gin/foot.svg"
  5177. }
  5178. },
  5179. sole: {
  5180. height: math.unit(6 / 4.40, "feet"),
  5181. name: "Sole",
  5182. image: {
  5183. source: "./media/characters/gin/sole.svg"
  5184. }
  5185. },
  5186. },
  5187. [
  5188. {
  5189. name: "Normal",
  5190. height: math.unit(13 + 2 / 12, "feet")
  5191. },
  5192. {
  5193. name: "Macro",
  5194. height: math.unit(1500, "feet")
  5195. },
  5196. {
  5197. name: "Megamacro",
  5198. height: math.unit(200, "miles"),
  5199. default: true
  5200. },
  5201. {
  5202. name: "Gigamacro",
  5203. height: math.unit(500, "megameters")
  5204. },
  5205. {
  5206. name: "Teramacro",
  5207. height: math.unit(15, "lightyears")
  5208. }
  5209. ]
  5210. ))
  5211. characterMakers.push(() => makeCharacter(
  5212. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5213. {
  5214. front: {
  5215. height: math.unit(6 + 1 / 6, "feet"),
  5216. weight: math.unit(178, "lbs"),
  5217. name: "Front",
  5218. image: {
  5219. source: "./media/characters/guy/front.svg"
  5220. }
  5221. }
  5222. },
  5223. [
  5224. {
  5225. name: "Normal",
  5226. height: math.unit(6 + 1 / 6, "feet"),
  5227. default: true
  5228. },
  5229. {
  5230. name: "Large",
  5231. height: math.unit(25 + 7 / 12, "feet")
  5232. },
  5233. {
  5234. name: "Macro",
  5235. height: math.unit(60 + 9 / 12, "feet")
  5236. },
  5237. {
  5238. name: "Macro+",
  5239. height: math.unit(246, "feet")
  5240. },
  5241. {
  5242. name: "Macro++",
  5243. height: math.unit(878, "feet")
  5244. }
  5245. ]
  5246. ))
  5247. characterMakers.push(() => makeCharacter(
  5248. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5249. {
  5250. front: {
  5251. height: math.unit(9, "feet"),
  5252. weight: math.unit(800, "lbs"),
  5253. name: "Front",
  5254. image: {
  5255. source: "./media/characters/tiberius/front.svg",
  5256. extra: 2295 / 2071
  5257. }
  5258. },
  5259. back: {
  5260. height: math.unit(9, "feet"),
  5261. weight: math.unit(800, "lbs"),
  5262. name: "Back",
  5263. image: {
  5264. source: "./media/characters/tiberius/back.svg",
  5265. extra: 2373 / 2160
  5266. }
  5267. },
  5268. },
  5269. [
  5270. {
  5271. name: "Normal",
  5272. height: math.unit(9, "feet"),
  5273. default: true
  5274. }
  5275. ]
  5276. ))
  5277. characterMakers.push(() => makeCharacter(
  5278. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5279. {
  5280. front: {
  5281. height: math.unit(6, "feet"),
  5282. weight: math.unit(600, "lbs"),
  5283. name: "Front",
  5284. image: {
  5285. source: "./media/characters/surgo/front.svg",
  5286. extra: 3591 / 2227
  5287. }
  5288. },
  5289. back: {
  5290. height: math.unit(6, "feet"),
  5291. weight: math.unit(600, "lbs"),
  5292. name: "Back",
  5293. image: {
  5294. source: "./media/characters/surgo/back.svg",
  5295. extra: 3557 / 2228
  5296. }
  5297. },
  5298. laying: {
  5299. height: math.unit(6 * 0.85, "feet"),
  5300. weight: math.unit(600, "lbs"),
  5301. name: "Laying",
  5302. image: {
  5303. source: "./media/characters/surgo/laying.svg"
  5304. }
  5305. },
  5306. },
  5307. [
  5308. {
  5309. name: "Normal",
  5310. height: math.unit(6, "feet"),
  5311. default: true
  5312. }
  5313. ]
  5314. ))
  5315. characterMakers.push(() => makeCharacter(
  5316. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5317. {
  5318. side: {
  5319. height: math.unit(6, "feet"),
  5320. weight: math.unit(150, "lbs"),
  5321. name: "Side",
  5322. image: {
  5323. source: "./media/characters/cibus/side.svg",
  5324. extra: 800 / 400
  5325. }
  5326. },
  5327. },
  5328. [
  5329. {
  5330. name: "Normal",
  5331. height: math.unit(6, "feet"),
  5332. default: true
  5333. }
  5334. ]
  5335. ))
  5336. characterMakers.push(() => makeCharacter(
  5337. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5338. {
  5339. front: {
  5340. height: math.unit(6, "feet"),
  5341. weight: math.unit(240, "lbs"),
  5342. name: "Front",
  5343. image: {
  5344. source: "./media/characters/nibbles/front.svg"
  5345. }
  5346. },
  5347. side: {
  5348. height: math.unit(6, "feet"),
  5349. weight: math.unit(240, "lbs"),
  5350. name: "Side",
  5351. image: {
  5352. source: "./media/characters/nibbles/side.svg"
  5353. }
  5354. },
  5355. },
  5356. [
  5357. {
  5358. name: "Normal",
  5359. height: math.unit(9, "feet"),
  5360. default: true
  5361. }
  5362. ]
  5363. ))
  5364. characterMakers.push(() => makeCharacter(
  5365. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5366. {
  5367. side: {
  5368. height: math.unit(5 + 1 / 6, "feet"),
  5369. weight: math.unit(130, "lbs"),
  5370. name: "Side",
  5371. image: {
  5372. source: "./media/characters/rikky/side.svg"
  5373. }
  5374. },
  5375. },
  5376. [
  5377. {
  5378. name: "Normal",
  5379. height: math.unit(5 + 1 / 6, "feet")
  5380. },
  5381. {
  5382. name: "Macro",
  5383. height: math.unit(152, "feet"),
  5384. default: true
  5385. },
  5386. {
  5387. name: "Megamacro",
  5388. height: math.unit(7, "miles")
  5389. }
  5390. ]
  5391. ))
  5392. characterMakers.push(() => makeCharacter(
  5393. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5394. {
  5395. side: {
  5396. height: math.unit(370, "cm"),
  5397. weight: math.unit(350, "lbs"),
  5398. name: "Side",
  5399. image: {
  5400. source: "./media/characters/malfressa/side.svg"
  5401. }
  5402. },
  5403. walking: {
  5404. height: math.unit(370, "cm"),
  5405. weight: math.unit(350, "lbs"),
  5406. name: "Walking",
  5407. image: {
  5408. source: "./media/characters/malfressa/walking.svg"
  5409. }
  5410. },
  5411. feral: {
  5412. height: math.unit(2500, "cm"),
  5413. weight: math.unit(100000, "lbs"),
  5414. name: "Feral",
  5415. image: {
  5416. source: "./media/characters/malfressa/feral.svg",
  5417. extra: 2108 / 837,
  5418. bottom: 0.02
  5419. }
  5420. },
  5421. },
  5422. [
  5423. {
  5424. name: "Normal",
  5425. height: math.unit(370, "cm")
  5426. },
  5427. {
  5428. name: "Macro",
  5429. height: math.unit(300, "meters"),
  5430. default: true
  5431. }
  5432. ]
  5433. ))
  5434. characterMakers.push(() => makeCharacter(
  5435. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5436. {
  5437. front: {
  5438. height: math.unit(6, "feet"),
  5439. weight: math.unit(60, "kg"),
  5440. name: "Front",
  5441. image: {
  5442. source: "./media/characters/jaro/front.svg"
  5443. }
  5444. },
  5445. back: {
  5446. height: math.unit(6, "feet"),
  5447. weight: math.unit(60, "kg"),
  5448. name: "Back",
  5449. image: {
  5450. source: "./media/characters/jaro/back.svg"
  5451. }
  5452. },
  5453. },
  5454. [
  5455. {
  5456. name: "Micro",
  5457. height: math.unit(7, "inches")
  5458. },
  5459. {
  5460. name: "Normal",
  5461. height: math.unit(5.5, "feet"),
  5462. default: true
  5463. },
  5464. {
  5465. name: "Minimacro",
  5466. height: math.unit(20, "feet")
  5467. },
  5468. {
  5469. name: "Macro",
  5470. height: math.unit(200, "meters")
  5471. }
  5472. ]
  5473. ))
  5474. characterMakers.push(() => makeCharacter(
  5475. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5476. {
  5477. front: {
  5478. height: math.unit(6, "feet"),
  5479. weight: math.unit(195, "lb"),
  5480. name: "Front",
  5481. image: {
  5482. source: "./media/characters/rogue/front.svg"
  5483. }
  5484. },
  5485. },
  5486. [
  5487. {
  5488. name: "Macro",
  5489. height: math.unit(90, "feet"),
  5490. default: true
  5491. },
  5492. ]
  5493. ))
  5494. characterMakers.push(() => makeCharacter(
  5495. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5496. {
  5497. front: {
  5498. height: math.unit(5 + 8 / 12, "feet"),
  5499. weight: math.unit(140, "lb"),
  5500. name: "Front",
  5501. image: {
  5502. source: "./media/characters/piper/front.svg",
  5503. extra: 3928 / 3681
  5504. }
  5505. },
  5506. },
  5507. [
  5508. {
  5509. name: "Micro",
  5510. height: math.unit(2, "inches")
  5511. },
  5512. {
  5513. name: "Normal",
  5514. height: math.unit(5 + 8 / 12, "feet")
  5515. },
  5516. {
  5517. name: "Macro",
  5518. height: math.unit(250, "feet"),
  5519. default: true
  5520. },
  5521. {
  5522. name: "Megamacro",
  5523. height: math.unit(7, "miles")
  5524. },
  5525. ]
  5526. ))
  5527. characterMakers.push(() => makeCharacter(
  5528. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5529. {
  5530. front: {
  5531. height: math.unit(6, "feet"),
  5532. weight: math.unit(220, "lb"),
  5533. name: "Front",
  5534. image: {
  5535. source: "./media/characters/gemini/front.svg"
  5536. }
  5537. },
  5538. back: {
  5539. height: math.unit(6, "feet"),
  5540. weight: math.unit(220, "lb"),
  5541. name: "Back",
  5542. image: {
  5543. source: "./media/characters/gemini/back.svg"
  5544. }
  5545. },
  5546. kneeling: {
  5547. height: math.unit(6 / 1.5, "feet"),
  5548. weight: math.unit(220, "lb"),
  5549. name: "Kneeling",
  5550. image: {
  5551. source: "./media/characters/gemini/kneeling.svg",
  5552. bottom: 0.02
  5553. }
  5554. },
  5555. },
  5556. [
  5557. {
  5558. name: "Macro",
  5559. height: math.unit(300, "meters"),
  5560. default: true
  5561. },
  5562. {
  5563. name: "Megamacro",
  5564. height: math.unit(6900, "meters")
  5565. },
  5566. ]
  5567. ))
  5568. characterMakers.push(() => makeCharacter(
  5569. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5570. {
  5571. anthro: {
  5572. height: math.unit(2.35, "meters"),
  5573. weight: math.unit(73, "kg"),
  5574. name: "Anthro",
  5575. image: {
  5576. source: "./media/characters/alicia/anthro.svg",
  5577. extra: 2571 / 2385,
  5578. bottom: 75 / 2648
  5579. }
  5580. },
  5581. paw: {
  5582. height: math.unit(1.32, "feet"),
  5583. name: "Paw",
  5584. image: {
  5585. source: "./media/characters/alicia/paw.svg"
  5586. }
  5587. },
  5588. feral: {
  5589. height: math.unit(1.69, "meters"),
  5590. weight: math.unit(73, "kg"),
  5591. name: "Feral",
  5592. image: {
  5593. source: "./media/characters/alicia/feral.svg",
  5594. extra: 2123 / 1715,
  5595. bottom: 222 / 2349
  5596. }
  5597. },
  5598. },
  5599. [
  5600. {
  5601. name: "Normal",
  5602. height: math.unit(2.35, "meters")
  5603. },
  5604. {
  5605. name: "Macro",
  5606. height: math.unit(60, "meters"),
  5607. default: true
  5608. },
  5609. {
  5610. name: "Megamacro",
  5611. height: math.unit(10000, "kilometers")
  5612. },
  5613. ]
  5614. ))
  5615. characterMakers.push(() => makeCharacter(
  5616. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5617. {
  5618. front: {
  5619. height: math.unit(7, "feet"),
  5620. weight: math.unit(250, "lbs"),
  5621. name: "Front",
  5622. image: {
  5623. source: "./media/characters/archy/front.svg"
  5624. }
  5625. }
  5626. },
  5627. [
  5628. {
  5629. name: "Micro",
  5630. height: math.unit(1, "inch")
  5631. },
  5632. {
  5633. name: "Shorty",
  5634. height: math.unit(5, "feet")
  5635. },
  5636. {
  5637. name: "Normal",
  5638. height: math.unit(7, "feet")
  5639. },
  5640. {
  5641. name: "Macro",
  5642. height: math.unit(600, "meters"),
  5643. default: true
  5644. },
  5645. {
  5646. name: "Megamacro",
  5647. height: math.unit(1, "mile")
  5648. },
  5649. ]
  5650. ))
  5651. characterMakers.push(() => makeCharacter(
  5652. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5653. {
  5654. front: {
  5655. height: math.unit(1.65, "meters"),
  5656. weight: math.unit(74, "kg"),
  5657. name: "Front",
  5658. image: {
  5659. source: "./media/characters/berri/front.svg",
  5660. extra: 857 / 837,
  5661. bottom: 18 / 877
  5662. }
  5663. },
  5664. bum: {
  5665. height: math.unit(1.46, "feet"),
  5666. name: "Bum",
  5667. image: {
  5668. source: "./media/characters/berri/bum.svg"
  5669. }
  5670. },
  5671. mouth: {
  5672. height: math.unit(0.44, "feet"),
  5673. name: "Mouth",
  5674. image: {
  5675. source: "./media/characters/berri/mouth.svg"
  5676. }
  5677. },
  5678. paw: {
  5679. height: math.unit(0.826, "feet"),
  5680. name: "Paw",
  5681. image: {
  5682. source: "./media/characters/berri/paw.svg"
  5683. }
  5684. },
  5685. },
  5686. [
  5687. {
  5688. name: "Normal",
  5689. height: math.unit(1.65, "meters")
  5690. },
  5691. {
  5692. name: "Macro",
  5693. height: math.unit(60, "m"),
  5694. default: true
  5695. },
  5696. {
  5697. name: "Megamacro",
  5698. height: math.unit(9.213, "km")
  5699. },
  5700. {
  5701. name: "Planet Eater",
  5702. height: math.unit(489, "megameters")
  5703. },
  5704. {
  5705. name: "Teramacro",
  5706. height: math.unit(2471635000000, "meters")
  5707. },
  5708. {
  5709. name: "Examacro",
  5710. height: math.unit(8.0624e+26, "meters")
  5711. }
  5712. ]
  5713. ))
  5714. characterMakers.push(() => makeCharacter(
  5715. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5716. {
  5717. front: {
  5718. height: math.unit(1.72, "meters"),
  5719. weight: math.unit(68, "kg"),
  5720. name: "Front",
  5721. image: {
  5722. source: "./media/characters/lexi/front.svg"
  5723. }
  5724. }
  5725. },
  5726. [
  5727. {
  5728. name: "Very Smol",
  5729. height: math.unit(10, "mm")
  5730. },
  5731. {
  5732. name: "Micro",
  5733. height: math.unit(6.8, "cm"),
  5734. default: true
  5735. },
  5736. {
  5737. name: "Normal",
  5738. height: math.unit(1.72, "m")
  5739. }
  5740. ]
  5741. ))
  5742. characterMakers.push(() => makeCharacter(
  5743. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5744. {
  5745. front: {
  5746. height: math.unit(1.69, "meters"),
  5747. weight: math.unit(68, "kg"),
  5748. name: "Front",
  5749. image: {
  5750. source: "./media/characters/martin/front.svg",
  5751. extra: 596 / 581
  5752. }
  5753. }
  5754. },
  5755. [
  5756. {
  5757. name: "Micro",
  5758. height: math.unit(6.85, "cm"),
  5759. default: true
  5760. },
  5761. {
  5762. name: "Normal",
  5763. height: math.unit(1.69, "m")
  5764. }
  5765. ]
  5766. ))
  5767. characterMakers.push(() => makeCharacter(
  5768. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5769. {
  5770. front: {
  5771. height: math.unit(1.69, "meters"),
  5772. weight: math.unit(68, "kg"),
  5773. name: "Front",
  5774. image: {
  5775. source: "./media/characters/juno/front.svg"
  5776. }
  5777. }
  5778. },
  5779. [
  5780. {
  5781. name: "Micro",
  5782. height: math.unit(7, "cm")
  5783. },
  5784. {
  5785. name: "Normal",
  5786. height: math.unit(1.89, "m")
  5787. },
  5788. {
  5789. name: "Macro",
  5790. height: math.unit(353, "meters"),
  5791. default: true
  5792. }
  5793. ]
  5794. ))
  5795. characterMakers.push(() => makeCharacter(
  5796. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5797. {
  5798. front: {
  5799. height: math.unit(1.93, "meters"),
  5800. weight: math.unit(83, "kg"),
  5801. name: "Front",
  5802. image: {
  5803. source: "./media/characters/samantha/front.svg"
  5804. }
  5805. },
  5806. frontClothed: {
  5807. height: math.unit(1.93, "meters"),
  5808. weight: math.unit(83, "kg"),
  5809. name: "Front (Clothed)",
  5810. image: {
  5811. source: "./media/characters/samantha/front-clothed.svg"
  5812. }
  5813. },
  5814. back: {
  5815. height: math.unit(1.93, "meters"),
  5816. weight: math.unit(83, "kg"),
  5817. name: "Back",
  5818. image: {
  5819. source: "./media/characters/samantha/back.svg"
  5820. }
  5821. },
  5822. },
  5823. [
  5824. {
  5825. name: "Normal",
  5826. height: math.unit(1.93, "m")
  5827. },
  5828. {
  5829. name: "Macro",
  5830. height: math.unit(74, "meters"),
  5831. default: true
  5832. },
  5833. {
  5834. name: "Macro+",
  5835. height: math.unit(223, "meters"),
  5836. },
  5837. {
  5838. name: "Megamacro",
  5839. height: math.unit(8381, "meters"),
  5840. },
  5841. {
  5842. name: "Megamacro+",
  5843. height: math.unit(12000, "kilometers")
  5844. },
  5845. ]
  5846. ))
  5847. characterMakers.push(() => makeCharacter(
  5848. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  5849. {
  5850. front: {
  5851. height: math.unit(1.92, "meters"),
  5852. weight: math.unit(80, "kg"),
  5853. name: "Front",
  5854. image: {
  5855. source: "./media/characters/dr-clay/front.svg"
  5856. }
  5857. },
  5858. frontClothed: {
  5859. height: math.unit(1.92, "meters"),
  5860. weight: math.unit(80, "kg"),
  5861. name: "Front (Clothed)",
  5862. image: {
  5863. source: "./media/characters/dr-clay/front-clothed.svg"
  5864. }
  5865. }
  5866. },
  5867. [
  5868. {
  5869. name: "Normal",
  5870. height: math.unit(1.92, "m")
  5871. },
  5872. {
  5873. name: "Macro",
  5874. height: math.unit(214, "meters"),
  5875. default: true
  5876. },
  5877. {
  5878. name: "Macro+",
  5879. height: math.unit(12.237, "meters"),
  5880. },
  5881. {
  5882. name: "Megamacro",
  5883. height: math.unit(557, "megameters"),
  5884. },
  5885. {
  5886. name: "Unimaginable",
  5887. height: math.unit(120e9, "lightyears")
  5888. },
  5889. ]
  5890. ))
  5891. characterMakers.push(() => makeCharacter(
  5892. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  5893. {
  5894. front: {
  5895. height: math.unit(2, "meters"),
  5896. weight: math.unit(80, "kg"),
  5897. name: "Front",
  5898. image: {
  5899. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  5900. }
  5901. }
  5902. },
  5903. [
  5904. {
  5905. name: "Teramacro",
  5906. height: math.unit(500000, "lightyears"),
  5907. default: true
  5908. },
  5909. ]
  5910. ))
  5911. characterMakers.push(() => makeCharacter(
  5912. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  5913. {
  5914. front: {
  5915. height: math.unit(2, "meters"),
  5916. weight: math.unit(150, "kg"),
  5917. name: "Front",
  5918. image: {
  5919. source: "./media/characters/vemus/front.svg",
  5920. extra: 2384 / 2084,
  5921. bottom: 0.0123
  5922. }
  5923. }
  5924. },
  5925. [
  5926. {
  5927. name: "Normal",
  5928. height: math.unit(3.75, "meters"),
  5929. default: true
  5930. },
  5931. {
  5932. name: "Big",
  5933. height: math.unit(8, "meters")
  5934. },
  5935. {
  5936. name: "Macro",
  5937. height: math.unit(100, "meters")
  5938. },
  5939. {
  5940. name: "Macro+",
  5941. height: math.unit(1500, "meters")
  5942. },
  5943. {
  5944. name: "Stellar",
  5945. height: math.unit(14e8, "meters")
  5946. },
  5947. ]
  5948. ))
  5949. characterMakers.push(() => makeCharacter(
  5950. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  5951. {
  5952. front: {
  5953. height: math.unit(2, "meters"),
  5954. weight: math.unit(70, "kg"),
  5955. name: "Front",
  5956. image: {
  5957. source: "./media/characters/beherit/front.svg",
  5958. extra: 1408 / 1242
  5959. }
  5960. }
  5961. },
  5962. [
  5963. {
  5964. name: "Normal",
  5965. height: math.unit(6, "feet")
  5966. },
  5967. {
  5968. name: "Lorg",
  5969. height: math.unit(25, "feet"),
  5970. default: true
  5971. },
  5972. {
  5973. name: "Lorger",
  5974. height: math.unit(75, "feet")
  5975. },
  5976. {
  5977. name: "Macro",
  5978. height: math.unit(200, "meters")
  5979. },
  5980. ]
  5981. ))
  5982. characterMakers.push(() => makeCharacter(
  5983. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  5984. {
  5985. front: {
  5986. height: math.unit(2, "meters"),
  5987. weight: math.unit(150, "kg"),
  5988. name: "Front",
  5989. image: {
  5990. source: "./media/characters/everett/front.svg",
  5991. extra: 2038 / 1737,
  5992. bottom: 0.03
  5993. }
  5994. },
  5995. paw: {
  5996. height: math.unit(2 / 3.6, "meters"),
  5997. name: "Paw",
  5998. image: {
  5999. source: "./media/characters/everett/paw.svg"
  6000. }
  6001. },
  6002. },
  6003. [
  6004. {
  6005. name: "Normal",
  6006. height: math.unit(15, "feet"),
  6007. default: true
  6008. },
  6009. {
  6010. name: "Lorg",
  6011. height: math.unit(70, "feet"),
  6012. default: true
  6013. },
  6014. {
  6015. name: "Lorger",
  6016. height: math.unit(250, "feet")
  6017. },
  6018. {
  6019. name: "Macro",
  6020. height: math.unit(500, "meters")
  6021. },
  6022. ]
  6023. ))
  6024. characterMakers.push(() => makeCharacter(
  6025. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  6026. {
  6027. front: {
  6028. height: math.unit(2, "meters"),
  6029. weight: math.unit(86, "kg"),
  6030. name: "Front",
  6031. image: {
  6032. source: "./media/characters/rose-lion/front.svg"
  6033. }
  6034. },
  6035. bent: {
  6036. height: math.unit(2 / 1.4288, "meters"),
  6037. weight: math.unit(86, "kg"),
  6038. name: "Bent",
  6039. image: {
  6040. source: "./media/characters/rose-lion/bent.svg"
  6041. }
  6042. }
  6043. },
  6044. [
  6045. {
  6046. name: "Mini-Micro",
  6047. height: math.unit(1, "cm")
  6048. },
  6049. {
  6050. name: "Micro",
  6051. height: math.unit(3.5, "inches"),
  6052. default: true
  6053. },
  6054. {
  6055. name: "Normal",
  6056. height: math.unit(6 + 1 / 6, "feet")
  6057. },
  6058. {
  6059. name: "Mini-Macro",
  6060. height: math.unit(9 + 10 / 12, "feet")
  6061. },
  6062. ]
  6063. ))
  6064. characterMakers.push(() => makeCharacter(
  6065. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6066. {
  6067. front: {
  6068. height: math.unit(2, "meters"),
  6069. weight: math.unit(350, "lbs"),
  6070. name: "Front",
  6071. image: {
  6072. source: "./media/characters/regal/front.svg"
  6073. }
  6074. },
  6075. back: {
  6076. height: math.unit(2, "meters"),
  6077. weight: math.unit(350, "lbs"),
  6078. name: "Back",
  6079. image: {
  6080. source: "./media/characters/regal/back.svg"
  6081. }
  6082. },
  6083. },
  6084. [
  6085. {
  6086. name: "Macro",
  6087. height: math.unit(350, "feet"),
  6088. default: true
  6089. }
  6090. ]
  6091. ))
  6092. characterMakers.push(() => makeCharacter(
  6093. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6094. {
  6095. front: {
  6096. height: math.unit(4 + 11 / 12, "feet"),
  6097. weight: math.unit(100, "lbs"),
  6098. name: "Front",
  6099. image: {
  6100. source: "./media/characters/opal/front.svg"
  6101. }
  6102. },
  6103. frontAlt: {
  6104. height: math.unit(4 + 11 / 12, "feet"),
  6105. weight: math.unit(100, "lbs"),
  6106. name: "Front (Alt)",
  6107. image: {
  6108. source: "./media/characters/opal/front-alt.svg"
  6109. }
  6110. },
  6111. },
  6112. [
  6113. {
  6114. name: "Small",
  6115. height: math.unit(4 + 11 / 12, "feet")
  6116. },
  6117. {
  6118. name: "Normal",
  6119. height: math.unit(20, "feet"),
  6120. default: true
  6121. },
  6122. {
  6123. name: "Macro",
  6124. height: math.unit(120, "feet")
  6125. },
  6126. {
  6127. name: "Megamacro",
  6128. height: math.unit(80, "miles")
  6129. },
  6130. {
  6131. name: "True Size",
  6132. height: math.unit(100000, "lightyears")
  6133. },
  6134. ]
  6135. ))
  6136. characterMakers.push(() => makeCharacter(
  6137. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6138. {
  6139. front: {
  6140. height: math.unit(6, "feet"),
  6141. weight: math.unit(200, "lbs"),
  6142. name: "Front",
  6143. image: {
  6144. source: "./media/characters/vector-wuff/front.svg"
  6145. }
  6146. }
  6147. },
  6148. [
  6149. {
  6150. name: "Normal",
  6151. height: math.unit(2.8, "meters")
  6152. },
  6153. {
  6154. name: "Macro",
  6155. height: math.unit(450, "meters"),
  6156. default: true
  6157. },
  6158. {
  6159. name: "Megamacro",
  6160. height: math.unit(15, "kilometers")
  6161. }
  6162. ]
  6163. ))
  6164. characterMakers.push(() => makeCharacter(
  6165. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6166. {
  6167. front: {
  6168. height: math.unit(6, "feet"),
  6169. weight: math.unit(256, "lbs"),
  6170. name: "Front",
  6171. image: {
  6172. source: "./media/characters/dannik/front.svg"
  6173. }
  6174. }
  6175. },
  6176. [
  6177. {
  6178. name: "Macro",
  6179. height: math.unit(69.57, "meters"),
  6180. default: true
  6181. },
  6182. ]
  6183. ))
  6184. characterMakers.push(() => makeCharacter(
  6185. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6186. {
  6187. front: {
  6188. height: math.unit(6, "feet"),
  6189. weight: math.unit(120, "lbs"),
  6190. name: "Front",
  6191. image: {
  6192. source: "./media/characters/azura-saharah/front.svg"
  6193. }
  6194. },
  6195. back: {
  6196. height: math.unit(6, "feet"),
  6197. weight: math.unit(120, "lbs"),
  6198. name: "Back",
  6199. image: {
  6200. source: "./media/characters/azura-saharah/back.svg"
  6201. }
  6202. },
  6203. },
  6204. [
  6205. {
  6206. name: "Macro",
  6207. height: math.unit(100, "feet"),
  6208. default: true
  6209. },
  6210. ]
  6211. ))
  6212. characterMakers.push(() => makeCharacter(
  6213. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6214. {
  6215. side: {
  6216. height: math.unit(5 + 4 / 12, "feet"),
  6217. weight: math.unit(163, "lbs"),
  6218. name: "Side",
  6219. image: {
  6220. source: "./media/characters/kennedy/side.svg"
  6221. }
  6222. }
  6223. },
  6224. [
  6225. {
  6226. name: "Standard Doggo",
  6227. height: math.unit(5 + 4 / 12, "feet")
  6228. },
  6229. {
  6230. name: "Big Doggo",
  6231. height: math.unit(25 + 3 / 12, "feet"),
  6232. default: true
  6233. },
  6234. ]
  6235. ))
  6236. characterMakers.push(() => makeCharacter(
  6237. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6238. {
  6239. front: {
  6240. height: math.unit(6, "feet"),
  6241. weight: math.unit(90, "lbs"),
  6242. name: "Front",
  6243. image: {
  6244. source: "./media/characters/odi-lunar/front.svg"
  6245. }
  6246. }
  6247. },
  6248. [
  6249. {
  6250. name: "Micro",
  6251. height: math.unit(3, "inches"),
  6252. default: true
  6253. },
  6254. {
  6255. name: "Normal",
  6256. height: math.unit(5.5, "feet")
  6257. }
  6258. ]
  6259. ))
  6260. characterMakers.push(() => makeCharacter(
  6261. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6262. {
  6263. back: {
  6264. height: math.unit(6, "feet"),
  6265. weight: math.unit(220, "lbs"),
  6266. name: "Back",
  6267. image: {
  6268. source: "./media/characters/mandake/back.svg"
  6269. }
  6270. }
  6271. },
  6272. [
  6273. {
  6274. name: "Normal",
  6275. height: math.unit(7, "feet"),
  6276. default: true
  6277. },
  6278. {
  6279. name: "Macro",
  6280. height: math.unit(78, "feet")
  6281. },
  6282. {
  6283. name: "Macro+",
  6284. height: math.unit(300, "meters")
  6285. },
  6286. {
  6287. name: "Macro++",
  6288. height: math.unit(2400, "feet")
  6289. },
  6290. {
  6291. name: "Megamacro",
  6292. height: math.unit(5167, "meters")
  6293. },
  6294. {
  6295. name: "Gigamacro",
  6296. height: math.unit(41769, "miles")
  6297. },
  6298. ]
  6299. ))
  6300. characterMakers.push(() => makeCharacter(
  6301. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6302. {
  6303. front: {
  6304. height: math.unit(6, "feet"),
  6305. weight: math.unit(120, "lbs"),
  6306. name: "Front",
  6307. image: {
  6308. source: "./media/characters/yozey/front.svg"
  6309. }
  6310. },
  6311. frontAlt: {
  6312. height: math.unit(6, "feet"),
  6313. weight: math.unit(120, "lbs"),
  6314. name: "Front (Alt)",
  6315. image: {
  6316. source: "./media/characters/yozey/front-alt.svg"
  6317. }
  6318. },
  6319. side: {
  6320. height: math.unit(6, "feet"),
  6321. weight: math.unit(120, "lbs"),
  6322. name: "Side",
  6323. image: {
  6324. source: "./media/characters/yozey/side.svg"
  6325. }
  6326. },
  6327. },
  6328. [
  6329. {
  6330. name: "Micro",
  6331. height: math.unit(3, "inches"),
  6332. default: true
  6333. },
  6334. {
  6335. name: "Normal",
  6336. height: math.unit(6, "feet")
  6337. }
  6338. ]
  6339. ))
  6340. characterMakers.push(() => makeCharacter(
  6341. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6342. {
  6343. front: {
  6344. height: math.unit(6, "feet"),
  6345. weight: math.unit(103, "lbs"),
  6346. name: "Front",
  6347. image: {
  6348. source: "./media/characters/valeska-voss/front.svg"
  6349. }
  6350. }
  6351. },
  6352. [
  6353. {
  6354. name: "Mini-Sized Sub",
  6355. height: math.unit(3.1, "inches")
  6356. },
  6357. {
  6358. name: "Mid-Sized Sub",
  6359. height: math.unit(6.2, "inches")
  6360. },
  6361. {
  6362. name: "Full-Sized Sub",
  6363. height: math.unit(9.3, "inches")
  6364. },
  6365. {
  6366. name: "Normal",
  6367. height: math.unit(5 + 2 / 12, "foot"),
  6368. default: true
  6369. },
  6370. ]
  6371. ))
  6372. characterMakers.push(() => makeCharacter(
  6373. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6374. {
  6375. front: {
  6376. height: math.unit(6, "feet"),
  6377. weight: math.unit(160, "lbs"),
  6378. name: "Front",
  6379. image: {
  6380. source: "./media/characters/gene-zeta/front.svg",
  6381. bottom: 0.03,
  6382. extra: 1
  6383. }
  6384. }
  6385. },
  6386. [
  6387. {
  6388. name: "Normal",
  6389. height: math.unit(6.25, "foot"),
  6390. default: true
  6391. },
  6392. ]
  6393. ))
  6394. characterMakers.push(() => makeCharacter(
  6395. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6396. {
  6397. front: {
  6398. height: math.unit(6, "feet"),
  6399. weight: math.unit(350, "lbs"),
  6400. name: "Front",
  6401. image: {
  6402. source: "./media/characters/razinox/front.svg",
  6403. extra: 1686 / 1548,
  6404. bottom: 28.2 / 1868
  6405. }
  6406. },
  6407. back: {
  6408. height: math.unit(6, "feet"),
  6409. weight: math.unit(350, "lbs"),
  6410. name: "Back",
  6411. image: {
  6412. source: "./media/characters/razinox/back.svg",
  6413. extra: 1660 / 1590,
  6414. bottom: 15 / 1665
  6415. }
  6416. },
  6417. },
  6418. [
  6419. {
  6420. name: "Normal",
  6421. height: math.unit(10 + 8 / 12, "foot")
  6422. },
  6423. {
  6424. name: "Minimacro",
  6425. height: math.unit(15, "foot")
  6426. },
  6427. {
  6428. name: "Macro",
  6429. height: math.unit(60, "foot"),
  6430. default: true
  6431. },
  6432. {
  6433. name: "Megamacro",
  6434. height: math.unit(5, "miles")
  6435. },
  6436. {
  6437. name: "Gigamacro",
  6438. height: math.unit(6000, "miles")
  6439. },
  6440. ]
  6441. ))
  6442. characterMakers.push(() => makeCharacter(
  6443. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6444. {
  6445. front: {
  6446. height: math.unit(6, "feet"),
  6447. weight: math.unit(150, "lbs"),
  6448. name: "Front",
  6449. image: {
  6450. source: "./media/characters/cobalt/front.svg"
  6451. }
  6452. }
  6453. },
  6454. [
  6455. {
  6456. name: "Normal",
  6457. height: math.unit(8 + 1 / 12, "foot")
  6458. },
  6459. {
  6460. name: "Macro",
  6461. height: math.unit(111, "foot"),
  6462. default: true
  6463. },
  6464. {
  6465. name: "Supracosmic",
  6466. height: math.unit(1e42, "feet")
  6467. },
  6468. ]
  6469. ))
  6470. characterMakers.push(() => makeCharacter(
  6471. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6472. {
  6473. front: {
  6474. height: math.unit(6, "feet"),
  6475. weight: math.unit(140, "lbs"),
  6476. name: "Front",
  6477. image: {
  6478. source: "./media/characters/amanda/front.svg"
  6479. }
  6480. }
  6481. },
  6482. [
  6483. {
  6484. name: "Micro",
  6485. height: math.unit(5, "inches"),
  6486. default: true
  6487. },
  6488. ]
  6489. ))
  6490. characterMakers.push(() => makeCharacter(
  6491. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6492. {
  6493. front: {
  6494. height: math.unit(5.59, "feet"),
  6495. weight: math.unit(250, "lbs"),
  6496. name: "Front",
  6497. image: {
  6498. source: "./media/characters/teal/front.svg"
  6499. }
  6500. },
  6501. frontAlt: {
  6502. height: math.unit(6, "feet"),
  6503. weight: math.unit(250, "lbs"),
  6504. name: "Front (Alt)",
  6505. image: {
  6506. source: "./media/characters/teal/front-alt.svg",
  6507. bottom: 0.04,
  6508. extra: 1
  6509. }
  6510. },
  6511. },
  6512. [
  6513. {
  6514. name: "Normal",
  6515. height: math.unit(12, "feet"),
  6516. default: true
  6517. },
  6518. {
  6519. name: "Macro",
  6520. height: math.unit(300, "feet")
  6521. },
  6522. ]
  6523. ))
  6524. characterMakers.push(() => makeCharacter(
  6525. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6526. {
  6527. frontCat: {
  6528. height: math.unit(6, "feet"),
  6529. weight: math.unit(180, "lbs"),
  6530. name: "Front (Cat)",
  6531. image: {
  6532. source: "./media/characters/ravin-amulet/front-cat.svg"
  6533. }
  6534. },
  6535. frontCatAlt: {
  6536. height: math.unit(6, "feet"),
  6537. weight: math.unit(180, "lbs"),
  6538. name: "Front (Alt, Cat)",
  6539. image: {
  6540. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6541. }
  6542. },
  6543. frontWerewolf: {
  6544. height: math.unit(6 * 1.2, "feet"),
  6545. weight: math.unit(225, "lbs"),
  6546. name: "Front (Werewolf)",
  6547. image: {
  6548. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6549. }
  6550. },
  6551. backWerewolf: {
  6552. height: math.unit(6 * 1.2, "feet"),
  6553. weight: math.unit(225, "lbs"),
  6554. name: "Back (Werewolf)",
  6555. image: {
  6556. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6557. }
  6558. },
  6559. },
  6560. [
  6561. {
  6562. name: "Nano",
  6563. height: math.unit(1, "micrometer")
  6564. },
  6565. {
  6566. name: "Micro",
  6567. height: math.unit(1, "inch")
  6568. },
  6569. {
  6570. name: "Normal",
  6571. height: math.unit(6, "feet"),
  6572. default: true
  6573. },
  6574. {
  6575. name: "Macro",
  6576. height: math.unit(60, "feet")
  6577. }
  6578. ]
  6579. ))
  6580. characterMakers.push(() => makeCharacter(
  6581. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6582. {
  6583. front: {
  6584. height: math.unit(6, "feet"),
  6585. weight: math.unit(165, "lbs"),
  6586. name: "Front",
  6587. image: {
  6588. source: "./media/characters/fluoresce/front.svg"
  6589. }
  6590. }
  6591. },
  6592. [
  6593. {
  6594. name: "Micro",
  6595. height: math.unit(6, "cm")
  6596. },
  6597. {
  6598. name: "Normal",
  6599. height: math.unit(5 + 7 / 12, "feet"),
  6600. default: true
  6601. },
  6602. {
  6603. name: "Macro",
  6604. height: math.unit(56, "feet")
  6605. },
  6606. {
  6607. name: "Megamacro",
  6608. height: math.unit(1.9, "miles")
  6609. },
  6610. ]
  6611. ))
  6612. characterMakers.push(() => makeCharacter(
  6613. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6614. {
  6615. front: {
  6616. height: math.unit(9 + 6 / 12, "feet"),
  6617. weight: math.unit(523, "lbs"),
  6618. name: "Side",
  6619. image: {
  6620. source: "./media/characters/aurora/side.svg"
  6621. }
  6622. }
  6623. },
  6624. [
  6625. {
  6626. name: "Normal",
  6627. height: math.unit(9 + 6 / 12, "feet")
  6628. },
  6629. {
  6630. name: "Macro",
  6631. height: math.unit(96, "feet"),
  6632. default: true
  6633. },
  6634. {
  6635. name: "Macro+",
  6636. height: math.unit(243, "feet")
  6637. },
  6638. ]
  6639. ))
  6640. characterMakers.push(() => makeCharacter(
  6641. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6642. {
  6643. front: {
  6644. height: math.unit(194, "cm"),
  6645. weight: math.unit(90, "kg"),
  6646. name: "Front",
  6647. image: {
  6648. source: "./media/characters/ranek/front.svg"
  6649. }
  6650. },
  6651. side: {
  6652. height: math.unit(194, "cm"),
  6653. weight: math.unit(90, "kg"),
  6654. name: "Side",
  6655. image: {
  6656. source: "./media/characters/ranek/side.svg"
  6657. }
  6658. },
  6659. back: {
  6660. height: math.unit(194, "cm"),
  6661. weight: math.unit(90, "kg"),
  6662. name: "Back",
  6663. image: {
  6664. source: "./media/characters/ranek/back.svg"
  6665. }
  6666. },
  6667. feral: {
  6668. height: math.unit(30, "cm"),
  6669. weight: math.unit(1.6, "lbs"),
  6670. name: "Feral",
  6671. image: {
  6672. source: "./media/characters/ranek/feral.svg"
  6673. }
  6674. },
  6675. },
  6676. [
  6677. {
  6678. name: "Normal",
  6679. height: math.unit(194, "cm"),
  6680. default: true
  6681. },
  6682. {
  6683. name: "Macro",
  6684. height: math.unit(100, "meters")
  6685. },
  6686. ]
  6687. ))
  6688. characterMakers.push(() => makeCharacter(
  6689. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6690. {
  6691. front: {
  6692. height: math.unit(5 + 6 / 12, "feet"),
  6693. weight: math.unit(153, "lbs"),
  6694. name: "Front",
  6695. image: {
  6696. source: "./media/characters/andrew-cooper/front.svg"
  6697. }
  6698. },
  6699. },
  6700. [
  6701. {
  6702. name: "Nano",
  6703. height: math.unit(1, "mm")
  6704. },
  6705. {
  6706. name: "Micro",
  6707. height: math.unit(2, "inches")
  6708. },
  6709. {
  6710. name: "Normal",
  6711. height: math.unit(5 + 6 / 12, "feet"),
  6712. default: true
  6713. }
  6714. ]
  6715. ))
  6716. characterMakers.push(() => makeCharacter(
  6717. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6718. {
  6719. front: {
  6720. height: math.unit(6, "feet"),
  6721. weight: math.unit(180, "lbs"),
  6722. name: "Front",
  6723. image: {
  6724. source: "./media/characters/akane-sato/front.svg",
  6725. extra: 1219 / 1140
  6726. }
  6727. },
  6728. back: {
  6729. height: math.unit(6, "feet"),
  6730. weight: math.unit(180, "lbs"),
  6731. name: "Back",
  6732. image: {
  6733. source: "./media/characters/akane-sato/back.svg",
  6734. extra: 1219 / 1170
  6735. }
  6736. },
  6737. },
  6738. [
  6739. {
  6740. name: "Normal",
  6741. height: math.unit(2.5, "meters")
  6742. },
  6743. {
  6744. name: "Macro",
  6745. height: math.unit(250, "meters"),
  6746. default: true
  6747. },
  6748. {
  6749. name: "Megamacro",
  6750. height: math.unit(25, "km")
  6751. },
  6752. ]
  6753. ))
  6754. characterMakers.push(() => makeCharacter(
  6755. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6756. {
  6757. front: {
  6758. height: math.unit(6, "feet"),
  6759. weight: math.unit(65, "kg"),
  6760. name: "Front",
  6761. image: {
  6762. source: "./media/characters/rook/front.svg",
  6763. extra: 960 / 950
  6764. }
  6765. }
  6766. },
  6767. [
  6768. {
  6769. name: "Normal",
  6770. height: math.unit(8.8, "feet")
  6771. },
  6772. {
  6773. name: "Macro",
  6774. height: math.unit(88, "feet"),
  6775. default: true
  6776. },
  6777. {
  6778. name: "Megamacro",
  6779. height: math.unit(8, "miles")
  6780. },
  6781. ]
  6782. ))
  6783. characterMakers.push(() => makeCharacter(
  6784. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6785. {
  6786. front: {
  6787. height: math.unit(12 + 2 / 12, "feet"),
  6788. weight: math.unit(808, "lbs"),
  6789. name: "Front",
  6790. image: {
  6791. source: "./media/characters/prodigy/front.svg"
  6792. }
  6793. }
  6794. },
  6795. [
  6796. {
  6797. name: "Normal",
  6798. height: math.unit(12 + 2 / 12, "feet"),
  6799. default: true
  6800. },
  6801. {
  6802. name: "Macro",
  6803. height: math.unit(143, "feet")
  6804. },
  6805. {
  6806. name: "Macro+",
  6807. height: math.unit(400, "feet")
  6808. },
  6809. ]
  6810. ))
  6811. characterMakers.push(() => makeCharacter(
  6812. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  6813. {
  6814. front: {
  6815. height: math.unit(6, "feet"),
  6816. weight: math.unit(225, "lbs"),
  6817. name: "Front",
  6818. image: {
  6819. source: "./media/characters/daniel/front.svg"
  6820. }
  6821. },
  6822. leaning: {
  6823. height: math.unit(6, "feet"),
  6824. weight: math.unit(225, "lbs"),
  6825. name: "Leaning",
  6826. image: {
  6827. source: "./media/characters/daniel/leaning.svg"
  6828. }
  6829. },
  6830. },
  6831. [
  6832. {
  6833. name: "Macro",
  6834. height: math.unit(1000, "feet"),
  6835. default: true
  6836. },
  6837. ]
  6838. ))
  6839. characterMakers.push(() => makeCharacter(
  6840. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  6841. {
  6842. front: {
  6843. height: math.unit(6, "feet"),
  6844. weight: math.unit(88, "lbs"),
  6845. name: "Front",
  6846. image: {
  6847. source: "./media/characters/chiros/front.svg",
  6848. extra: 306 / 226
  6849. }
  6850. },
  6851. side: {
  6852. height: math.unit(6, "feet"),
  6853. weight: math.unit(88, "lbs"),
  6854. name: "Side",
  6855. image: {
  6856. source: "./media/characters/chiros/side.svg",
  6857. extra: 306 / 226
  6858. }
  6859. },
  6860. },
  6861. [
  6862. {
  6863. name: "Normal",
  6864. height: math.unit(6, "cm"),
  6865. default: true
  6866. },
  6867. ]
  6868. ))
  6869. characterMakers.push(() => makeCharacter(
  6870. { name: "Selka", species: ["snake"], tags: ["naga"] },
  6871. {
  6872. front: {
  6873. height: math.unit(6, "feet"),
  6874. weight: math.unit(100, "lbs"),
  6875. name: "Front",
  6876. image: {
  6877. source: "./media/characters/selka/front.svg",
  6878. extra: 947 / 887
  6879. }
  6880. }
  6881. },
  6882. [
  6883. {
  6884. name: "Normal",
  6885. height: math.unit(5, "cm"),
  6886. default: true
  6887. },
  6888. ]
  6889. ))
  6890. characterMakers.push(() => makeCharacter(
  6891. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  6892. {
  6893. front: {
  6894. height: math.unit(8 + 3 / 12, "feet"),
  6895. weight: math.unit(424, "lbs"),
  6896. name: "Front",
  6897. image: {
  6898. source: "./media/characters/verin/front.svg",
  6899. extra: 1845 / 1550
  6900. }
  6901. },
  6902. frontArmored: {
  6903. height: math.unit(8 + 3 / 12, "feet"),
  6904. weight: math.unit(424, "lbs"),
  6905. name: "Front (Armored)",
  6906. image: {
  6907. source: "./media/characters/verin/front-armor.svg",
  6908. extra: 1845 / 1550,
  6909. bottom: 0.01
  6910. }
  6911. },
  6912. back: {
  6913. height: math.unit(8 + 3 / 12, "feet"),
  6914. weight: math.unit(424, "lbs"),
  6915. name: "Back",
  6916. image: {
  6917. source: "./media/characters/verin/back.svg",
  6918. bottom: 0.1,
  6919. extra: 1
  6920. }
  6921. },
  6922. foot: {
  6923. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  6924. name: "Foot",
  6925. image: {
  6926. source: "./media/characters/verin/foot.svg"
  6927. }
  6928. },
  6929. },
  6930. [
  6931. {
  6932. name: "Normal",
  6933. height: math.unit(8 + 3 / 12, "feet")
  6934. },
  6935. {
  6936. name: "Minimacro",
  6937. height: math.unit(21, "feet"),
  6938. default: true
  6939. },
  6940. {
  6941. name: "Macro",
  6942. height: math.unit(626, "feet")
  6943. },
  6944. ]
  6945. ))
  6946. characterMakers.push(() => makeCharacter(
  6947. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  6948. {
  6949. front: {
  6950. height: math.unit(2.718, "meters"),
  6951. weight: math.unit(150, "lbs"),
  6952. name: "Front",
  6953. image: {
  6954. source: "./media/characters/sovrim-terraquian/front.svg"
  6955. }
  6956. },
  6957. back: {
  6958. height: math.unit(2.718, "meters"),
  6959. weight: math.unit(150, "lbs"),
  6960. name: "Back",
  6961. image: {
  6962. source: "./media/characters/sovrim-terraquian/back.svg"
  6963. }
  6964. }
  6965. },
  6966. [
  6967. {
  6968. name: "Micro",
  6969. height: math.unit(2, "inches")
  6970. },
  6971. {
  6972. name: "Small",
  6973. height: math.unit(1, "meter")
  6974. },
  6975. {
  6976. name: "Normal",
  6977. height: math.unit(Math.E, "meters"),
  6978. default: true
  6979. },
  6980. {
  6981. name: "Macro",
  6982. height: math.unit(20, "meters")
  6983. },
  6984. {
  6985. name: "Macro+",
  6986. height: math.unit(400, "meters")
  6987. },
  6988. ]
  6989. ))
  6990. characterMakers.push(() => makeCharacter(
  6991. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  6992. {
  6993. front: {
  6994. height: math.unit(7, "feet"),
  6995. weight: math.unit(489, "lbs"),
  6996. name: "Front",
  6997. image: {
  6998. source: "./media/characters/reece-silvermane/front.svg",
  6999. bottom: 0.02,
  7000. extra: 1
  7001. }
  7002. },
  7003. },
  7004. [
  7005. {
  7006. name: "Macro",
  7007. height: math.unit(1.5, "miles"),
  7008. default: true
  7009. },
  7010. ]
  7011. ))
  7012. characterMakers.push(() => makeCharacter(
  7013. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7014. {
  7015. front: {
  7016. height: math.unit(6, "feet"),
  7017. weight: math.unit(78, "kg"),
  7018. name: "Front",
  7019. image: {
  7020. source: "./media/characters/kane/front.svg",
  7021. extra: 978 / 899
  7022. }
  7023. },
  7024. },
  7025. [
  7026. {
  7027. name: "Normal",
  7028. height: math.unit(2.1, "m"),
  7029. },
  7030. {
  7031. name: "Macro",
  7032. height: math.unit(1, "km"),
  7033. default: true
  7034. },
  7035. ]
  7036. ))
  7037. characterMakers.push(() => makeCharacter(
  7038. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7039. {
  7040. front: {
  7041. height: math.unit(6, "feet"),
  7042. weight: math.unit(200, "kg"),
  7043. name: "Front",
  7044. image: {
  7045. source: "./media/characters/tegon/front.svg",
  7046. bottom: 0.01,
  7047. extra: 1
  7048. }
  7049. },
  7050. },
  7051. [
  7052. {
  7053. name: "Micro",
  7054. height: math.unit(1, "inch")
  7055. },
  7056. {
  7057. name: "Normal",
  7058. height: math.unit(6 + 3 / 12, "feet"),
  7059. default: true
  7060. },
  7061. {
  7062. name: "Macro",
  7063. height: math.unit(300, "feet")
  7064. },
  7065. {
  7066. name: "Megamacro",
  7067. height: math.unit(69, "miles")
  7068. },
  7069. ]
  7070. ))
  7071. characterMakers.push(() => makeCharacter(
  7072. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7073. {
  7074. side: {
  7075. height: math.unit(6, "feet"),
  7076. weight: math.unit(2304, "lbs"),
  7077. name: "Side",
  7078. image: {
  7079. source: "./media/characters/arcturax/side.svg",
  7080. extra: 790 / 376,
  7081. bottom: 0.01
  7082. }
  7083. },
  7084. },
  7085. [
  7086. {
  7087. name: "Micro",
  7088. height: math.unit(2, "inch")
  7089. },
  7090. {
  7091. name: "Normal",
  7092. height: math.unit(6, "feet")
  7093. },
  7094. {
  7095. name: "Macro",
  7096. height: math.unit(39, "feet"),
  7097. default: true
  7098. },
  7099. {
  7100. name: "Megamacro",
  7101. height: math.unit(7, "miles")
  7102. },
  7103. ]
  7104. ))
  7105. characterMakers.push(() => makeCharacter(
  7106. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7107. {
  7108. front: {
  7109. height: math.unit(6, "feet"),
  7110. weight: math.unit(50, "lbs"),
  7111. name: "Front",
  7112. image: {
  7113. source: "./media/characters/sentri/front.svg",
  7114. extra: 1750 / 1570,
  7115. bottom: 0.025
  7116. }
  7117. },
  7118. frontAlt: {
  7119. height: math.unit(6, "feet"),
  7120. weight: math.unit(50, "lbs"),
  7121. name: "Front (Alt)",
  7122. image: {
  7123. source: "./media/characters/sentri/front-alt.svg",
  7124. extra: 1750 / 1570,
  7125. bottom: 0.025
  7126. }
  7127. },
  7128. },
  7129. [
  7130. {
  7131. name: "Normal",
  7132. height: math.unit(15, "feet"),
  7133. default: true
  7134. },
  7135. {
  7136. name: "Macro",
  7137. height: math.unit(2500, "feet")
  7138. }
  7139. ]
  7140. ))
  7141. characterMakers.push(() => makeCharacter(
  7142. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7143. {
  7144. front: {
  7145. height: math.unit(5 + 8 / 12, "feet"),
  7146. weight: math.unit(130, "lbs"),
  7147. name: "Front",
  7148. image: {
  7149. source: "./media/characters/corvin/front.svg",
  7150. extra: 1803 / 1629
  7151. }
  7152. },
  7153. frontShirt: {
  7154. height: math.unit(5 + 8 / 12, "feet"),
  7155. weight: math.unit(130, "lbs"),
  7156. name: "Front (Shirt)",
  7157. image: {
  7158. source: "./media/characters/corvin/front-shirt.svg",
  7159. extra: 1803 / 1629
  7160. }
  7161. },
  7162. frontPoncho: {
  7163. height: math.unit(5 + 8 / 12, "feet"),
  7164. weight: math.unit(130, "lbs"),
  7165. name: "Front (Poncho)",
  7166. image: {
  7167. source: "./media/characters/corvin/front-poncho.svg",
  7168. extra: 1803 / 1629
  7169. }
  7170. },
  7171. side: {
  7172. height: math.unit(5 + 8 / 12, "feet"),
  7173. weight: math.unit(130, "lbs"),
  7174. name: "Side",
  7175. image: {
  7176. source: "./media/characters/corvin/side.svg",
  7177. extra: 1012 / 945
  7178. }
  7179. },
  7180. back: {
  7181. height: math.unit(5 + 8 / 12, "feet"),
  7182. weight: math.unit(130, "lbs"),
  7183. name: "Back",
  7184. image: {
  7185. source: "./media/characters/corvin/back.svg",
  7186. extra: 1803 / 1629
  7187. }
  7188. },
  7189. },
  7190. [
  7191. {
  7192. name: "Micro",
  7193. height: math.unit(3, "inches")
  7194. },
  7195. {
  7196. name: "Normal",
  7197. height: math.unit(5 + 8 / 12, "feet")
  7198. },
  7199. {
  7200. name: "Macro",
  7201. height: math.unit(300, "feet"),
  7202. default: true
  7203. },
  7204. {
  7205. name: "Megamacro",
  7206. height: math.unit(500, "miles")
  7207. }
  7208. ]
  7209. ))
  7210. characterMakers.push(() => makeCharacter(
  7211. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7212. {
  7213. front: {
  7214. height: math.unit(6, "feet"),
  7215. weight: math.unit(135, "lbs"),
  7216. name: "Front",
  7217. image: {
  7218. source: "./media/characters/q/front.svg",
  7219. extra: 854 / 752,
  7220. bottom: 0.005
  7221. }
  7222. },
  7223. back: {
  7224. height: math.unit(6, "feet"),
  7225. weight: math.unit(130, "lbs"),
  7226. name: "Back",
  7227. image: {
  7228. source: "./media/characters/q/back.svg",
  7229. extra: 854 / 752
  7230. }
  7231. },
  7232. },
  7233. [
  7234. {
  7235. name: "Macro",
  7236. height: math.unit(90, "feet"),
  7237. default: true
  7238. },
  7239. {
  7240. name: "Extra Macro",
  7241. height: math.unit(300, "feet"),
  7242. },
  7243. {
  7244. name: "BIG WALF",
  7245. height: math.unit(750, "feet"),
  7246. },
  7247. ]
  7248. ))
  7249. characterMakers.push(() => makeCharacter(
  7250. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7251. {
  7252. front: {
  7253. height: math.unit(6, "feet"),
  7254. weight: math.unit(150, "lbs"),
  7255. name: "Front",
  7256. image: {
  7257. source: "./media/characters/carley/front.svg",
  7258. extra: 3927 / 3540,
  7259. bottom: 0.03
  7260. }
  7261. }
  7262. },
  7263. [
  7264. {
  7265. name: "Normal",
  7266. height: math.unit(6 + 3 / 12, "feet")
  7267. },
  7268. {
  7269. name: "Macro",
  7270. height: math.unit(185, "feet"),
  7271. default: true
  7272. },
  7273. {
  7274. name: "Megamacro",
  7275. height: math.unit(8, "miles"),
  7276. },
  7277. ]
  7278. ))
  7279. characterMakers.push(() => makeCharacter(
  7280. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7281. {
  7282. front: {
  7283. height: math.unit(3, "feet"),
  7284. weight: math.unit(28, "lbs"),
  7285. name: "Front",
  7286. image: {
  7287. source: "./media/characters/citrine/front.svg"
  7288. }
  7289. }
  7290. },
  7291. [
  7292. {
  7293. name: "Normal",
  7294. height: math.unit(3, "feet"),
  7295. default: true
  7296. }
  7297. ]
  7298. ))
  7299. characterMakers.push(() => makeCharacter(
  7300. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7301. {
  7302. front: {
  7303. height: math.unit(14, "feet"),
  7304. weight: math.unit(1450, "kg"),
  7305. capacity: math.unit(15, "people"),
  7306. name: "Front",
  7307. image: {
  7308. source: "./media/characters/aura-starwind/front.svg",
  7309. extra: 1455 / 1335
  7310. }
  7311. },
  7312. side: {
  7313. height: math.unit(14, "feet"),
  7314. weight: math.unit(1450, "kg"),
  7315. capacity: math.unit(15, "people"),
  7316. name: "Side",
  7317. image: {
  7318. source: "./media/characters/aura-starwind/side.svg",
  7319. extra: 1654 / 1497
  7320. }
  7321. },
  7322. taur: {
  7323. height: math.unit(18, "feet"),
  7324. weight: math.unit(5500, "kg"),
  7325. capacity: math.unit(50, "people"),
  7326. name: "Taur",
  7327. image: {
  7328. source: "./media/characters/aura-starwind/taur.svg",
  7329. extra: 1760 / 1650
  7330. }
  7331. },
  7332. feral: {
  7333. height: math.unit(46, "feet"),
  7334. weight: math.unit(25000, "kg"),
  7335. capacity: math.unit(120, "people"),
  7336. name: "Feral",
  7337. image: {
  7338. source: "./media/characters/aura-starwind/feral.svg"
  7339. }
  7340. },
  7341. },
  7342. [
  7343. {
  7344. name: "Normal",
  7345. height: math.unit(14, "feet"),
  7346. default: true
  7347. },
  7348. {
  7349. name: "Macro",
  7350. height: math.unit(50, "meters")
  7351. },
  7352. {
  7353. name: "Megamacro",
  7354. height: math.unit(5000, "meters")
  7355. },
  7356. {
  7357. name: "Gigamacro",
  7358. height: math.unit(100000, "kilometers")
  7359. },
  7360. ]
  7361. ))
  7362. characterMakers.push(() => makeCharacter(
  7363. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7364. {
  7365. front: {
  7366. height: math.unit(2 + 7 / 12, "feet"),
  7367. weight: math.unit(32, "lbs"),
  7368. name: "Front",
  7369. image: {
  7370. source: "./media/characters/rivet/front.svg",
  7371. extra: 1716 / 1658,
  7372. bottom: 0.03
  7373. }
  7374. },
  7375. foot: {
  7376. height: math.unit(0.551, "feet"),
  7377. name: "Rivet's Foot",
  7378. image: {
  7379. source: "./media/characters/rivet/foot.svg"
  7380. },
  7381. rename: true
  7382. }
  7383. },
  7384. [
  7385. {
  7386. name: "Micro",
  7387. height: math.unit(1.5, "inches"),
  7388. },
  7389. {
  7390. name: "Normal",
  7391. height: math.unit(2 + 7 / 12, "feet"),
  7392. default: true
  7393. },
  7394. {
  7395. name: "Macro",
  7396. height: math.unit(85, "feet")
  7397. },
  7398. {
  7399. name: "Megamacro",
  7400. height: math.unit(2.2, "km")
  7401. }
  7402. ]
  7403. ))
  7404. characterMakers.push(() => makeCharacter(
  7405. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7406. {
  7407. front: {
  7408. height: math.unit(5 + 9 / 12, "feet"),
  7409. weight: math.unit(150, "lbs"),
  7410. name: "Front",
  7411. image: {
  7412. source: "./media/characters/coffee/front.svg",
  7413. extra: 3666 / 3032,
  7414. bottom: 0.04
  7415. }
  7416. },
  7417. foot: {
  7418. height: math.unit(1.29, "feet"),
  7419. name: "Foot",
  7420. image: {
  7421. source: "./media/characters/coffee/foot.svg"
  7422. }
  7423. },
  7424. },
  7425. [
  7426. {
  7427. name: "Micro",
  7428. height: math.unit(2, "inches"),
  7429. },
  7430. {
  7431. name: "Normal",
  7432. height: math.unit(5 + 9 / 12, "feet"),
  7433. default: true
  7434. },
  7435. {
  7436. name: "Macro",
  7437. height: math.unit(800, "feet")
  7438. },
  7439. {
  7440. name: "Megamacro",
  7441. height: math.unit(25, "miles")
  7442. }
  7443. ]
  7444. ))
  7445. characterMakers.push(() => makeCharacter(
  7446. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7447. {
  7448. front: {
  7449. height: math.unit(6, "feet"),
  7450. weight: math.unit(200, "lbs"),
  7451. name: "Front",
  7452. image: {
  7453. source: "./media/characters/chari-gal/front.svg",
  7454. extra: 1568 / 1385,
  7455. bottom: 0.047
  7456. }
  7457. },
  7458. gigantamax: {
  7459. height: math.unit(6 * 16, "feet"),
  7460. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7461. name: "Gigantamax",
  7462. image: {
  7463. source: "./media/characters/chari-gal/gigantamax.svg",
  7464. extra: 1124 / 888,
  7465. bottom: 0.03
  7466. }
  7467. },
  7468. },
  7469. [
  7470. {
  7471. name: "Normal",
  7472. height: math.unit(5 + 7 / 12, "feet")
  7473. },
  7474. {
  7475. name: "Macro",
  7476. height: math.unit(200, "feet"),
  7477. default: true
  7478. }
  7479. ]
  7480. ))
  7481. characterMakers.push(() => makeCharacter(
  7482. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7483. {
  7484. front: {
  7485. height: math.unit(6, "feet"),
  7486. weight: math.unit(150, "lbs"),
  7487. name: "Front",
  7488. image: {
  7489. source: "./media/characters/nova/front.svg",
  7490. extra: 5000 / 4722,
  7491. bottom: 0.02
  7492. }
  7493. }
  7494. },
  7495. [
  7496. {
  7497. name: "Micro-",
  7498. height: math.unit(0.8, "inches")
  7499. },
  7500. {
  7501. name: "Micro",
  7502. height: math.unit(2, "inches"),
  7503. default: true
  7504. },
  7505. ]
  7506. ))
  7507. characterMakers.push(() => makeCharacter(
  7508. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7509. {
  7510. front: {
  7511. height: math.unit(3 + 1 / 12, "feet"),
  7512. weight: math.unit(21.7, "lbs"),
  7513. name: "Front",
  7514. image: {
  7515. source: "./media/characters/argent/front.svg",
  7516. extra: 1471 / 1331,
  7517. bottom: 100.8 / 1575.5
  7518. }
  7519. }
  7520. },
  7521. [
  7522. {
  7523. name: "Micro",
  7524. height: math.unit(2, "inches")
  7525. },
  7526. {
  7527. name: "Normal",
  7528. height: math.unit(3 + 1 / 12, "feet"),
  7529. default: true
  7530. },
  7531. {
  7532. name: "Macro",
  7533. height: math.unit(120, "feet")
  7534. },
  7535. ]
  7536. ))
  7537. characterMakers.push(() => makeCharacter(
  7538. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7539. {
  7540. lamp: {
  7541. height: math.unit(7 * 1559 / 989, "feet"),
  7542. name: "Magic Lamp",
  7543. image: {
  7544. source: "./media/characters/mira-al-cul/lamp.svg",
  7545. extra: 1617 / 1559
  7546. }
  7547. },
  7548. front: {
  7549. height: math.unit(7, "feet"),
  7550. name: "Front",
  7551. image: {
  7552. source: "./media/characters/mira-al-cul/front.svg",
  7553. extra: 1044 / 990
  7554. }
  7555. },
  7556. },
  7557. [
  7558. {
  7559. name: "Heavily Restricted",
  7560. height: math.unit(7 * 1559 / 989, "feet")
  7561. },
  7562. {
  7563. name: "Freshly Freed",
  7564. height: math.unit(50 * 1559 / 989, "feet")
  7565. },
  7566. {
  7567. name: "World Encompassing",
  7568. height: math.unit(10000 * 1559 / 989, "miles")
  7569. },
  7570. {
  7571. name: "Galactic",
  7572. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7573. },
  7574. {
  7575. name: "Palmed Universe",
  7576. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7577. default: true
  7578. },
  7579. {
  7580. name: "Multiversal Matriarch",
  7581. height: math.unit(8.87e10, "yottameters")
  7582. },
  7583. {
  7584. name: "Void Mother",
  7585. height: math.unit(3.14e110, "yottaparsecs")
  7586. },
  7587. ]
  7588. ))
  7589. characterMakers.push(() => makeCharacter(
  7590. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7591. {
  7592. front: {
  7593. height: math.unit(17 + 1 / 12, "feet"),
  7594. weight: math.unit(476.2 * 5, "lbs"),
  7595. name: "Front",
  7596. image: {
  7597. source: "./media/characters/kuro-shi-uchū/front.svg",
  7598. extra: 2329 / 1835,
  7599. bottom: 0.02
  7600. }
  7601. },
  7602. },
  7603. [
  7604. {
  7605. name: "Micro",
  7606. height: math.unit(2, "inches")
  7607. },
  7608. {
  7609. name: "Normal",
  7610. height: math.unit(12, "meters")
  7611. },
  7612. {
  7613. name: "Planetary",
  7614. height: math.unit(0.00929, "AU"),
  7615. default: true
  7616. },
  7617. {
  7618. name: "Universal",
  7619. height: math.unit(20, "gigaparsecs")
  7620. },
  7621. ]
  7622. ))
  7623. characterMakers.push(() => makeCharacter(
  7624. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7625. {
  7626. front: {
  7627. height: math.unit(5 + 2 / 12, "feet"),
  7628. weight: math.unit(120, "lbs"),
  7629. name: "Front",
  7630. image: {
  7631. source: "./media/characters/katherine/front.svg",
  7632. extra: 2075 / 1969
  7633. }
  7634. },
  7635. dress: {
  7636. height: math.unit(5 + 2 / 12, "feet"),
  7637. weight: math.unit(120, "lbs"),
  7638. name: "Dress",
  7639. image: {
  7640. source: "./media/characters/katherine/dress.svg",
  7641. extra: 2258 / 2064
  7642. }
  7643. },
  7644. },
  7645. [
  7646. {
  7647. name: "Micro",
  7648. height: math.unit(1, "inches"),
  7649. default: true
  7650. },
  7651. {
  7652. name: "Normal",
  7653. height: math.unit(5 + 2 / 12, "feet")
  7654. },
  7655. {
  7656. name: "Macro",
  7657. height: math.unit(100, "meters")
  7658. },
  7659. {
  7660. name: "Megamacro",
  7661. height: math.unit(80, "miles")
  7662. },
  7663. ]
  7664. ))
  7665. characterMakers.push(() => makeCharacter(
  7666. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7667. {
  7668. front: {
  7669. height: math.unit(7 + 8 / 12, "feet"),
  7670. weight: math.unit(250, "lbs"),
  7671. name: "Front",
  7672. image: {
  7673. source: "./media/characters/yevis/front.svg",
  7674. extra: 1938 / 1755
  7675. }
  7676. }
  7677. },
  7678. [
  7679. {
  7680. name: "Mortal",
  7681. height: math.unit(7 + 8 / 12, "feet")
  7682. },
  7683. {
  7684. name: "Battle",
  7685. height: math.unit(25 + 11 / 12, "feet")
  7686. },
  7687. {
  7688. name: "Wrath",
  7689. height: math.unit(1654 + 11 / 12, "feet")
  7690. },
  7691. {
  7692. name: "Planet Destroyer",
  7693. height: math.unit(12000, "miles")
  7694. },
  7695. {
  7696. name: "Galaxy Conqueror",
  7697. height: math.unit(1.45, "zettameters"),
  7698. default: true
  7699. },
  7700. {
  7701. name: "Universal War",
  7702. height: math.unit(184, "gigaparsecs")
  7703. },
  7704. {
  7705. name: "Eternity War",
  7706. height: math.unit(1.98e55, "yottaparsecs")
  7707. },
  7708. ]
  7709. ))
  7710. characterMakers.push(() => makeCharacter(
  7711. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7712. {
  7713. front: {
  7714. height: math.unit(5 + 8 / 12, "feet"),
  7715. weight: math.unit(63, "kg"),
  7716. name: "Front",
  7717. image: {
  7718. source: "./media/characters/xavier/front.svg",
  7719. extra: 944 / 883
  7720. }
  7721. },
  7722. frontStretch: {
  7723. height: math.unit(5 + 8 / 12, "feet"),
  7724. weight: math.unit(63, "kg"),
  7725. name: "Stretching",
  7726. image: {
  7727. source: "./media/characters/xavier/front-stretch.svg",
  7728. extra: 962 / 820
  7729. }
  7730. },
  7731. },
  7732. [
  7733. {
  7734. name: "Normal",
  7735. height: math.unit(5 + 8 / 12, "feet")
  7736. },
  7737. {
  7738. name: "Macro",
  7739. height: math.unit(100, "meters"),
  7740. default: true
  7741. },
  7742. {
  7743. name: "McLargeHuge",
  7744. height: math.unit(10, "miles")
  7745. },
  7746. ]
  7747. ))
  7748. characterMakers.push(() => makeCharacter(
  7749. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7750. {
  7751. front: {
  7752. height: math.unit(5 + 5 / 12, "feet"),
  7753. weight: math.unit(150, "lb"),
  7754. name: "Front",
  7755. image: {
  7756. source: "./media/characters/joshii/front.svg"
  7757. }
  7758. },
  7759. foot: {
  7760. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7761. name: "Foot",
  7762. image: {
  7763. source: "./media/characters/joshii/foot.svg"
  7764. }
  7765. },
  7766. },
  7767. [
  7768. {
  7769. name: "Micro",
  7770. height: math.unit(2, "inches")
  7771. },
  7772. {
  7773. name: "Normal",
  7774. height: math.unit(5 + 5 / 12, "feet"),
  7775. default: true
  7776. },
  7777. {
  7778. name: "Macro",
  7779. height: math.unit(785, "feet")
  7780. },
  7781. {
  7782. name: "Megamacro",
  7783. height: math.unit(24.5, "miles")
  7784. },
  7785. ]
  7786. ))
  7787. characterMakers.push(() => makeCharacter(
  7788. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  7789. {
  7790. front: {
  7791. height: math.unit(6, "feet"),
  7792. weight: math.unit(150, "lb"),
  7793. name: "Front",
  7794. image: {
  7795. source: "./media/characters/goddess-elizabeth/front.svg",
  7796. extra: 1800 / 1525,
  7797. bottom: 0.005
  7798. }
  7799. },
  7800. foot: {
  7801. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  7802. name: "Foot",
  7803. image: {
  7804. source: "./media/characters/goddess-elizabeth/foot.svg"
  7805. }
  7806. },
  7807. mouth: {
  7808. height: math.unit(6, "feet"),
  7809. name: "Mouth",
  7810. image: {
  7811. source: "./media/characters/goddess-elizabeth/mouth.svg"
  7812. }
  7813. },
  7814. },
  7815. [
  7816. {
  7817. name: "Micro",
  7818. height: math.unit(12, "feet")
  7819. },
  7820. {
  7821. name: "Normal",
  7822. height: math.unit(80, "miles"),
  7823. default: true
  7824. },
  7825. {
  7826. name: "Macro",
  7827. height: math.unit(15000, "parsecs")
  7828. },
  7829. ]
  7830. ))
  7831. characterMakers.push(() => makeCharacter(
  7832. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  7833. {
  7834. front: {
  7835. height: math.unit(5 + 9 / 12, "feet"),
  7836. weight: math.unit(144, "lb"),
  7837. name: "Front",
  7838. image: {
  7839. source: "./media/characters/kara/front.svg"
  7840. }
  7841. },
  7842. feet: {
  7843. height: math.unit(6 / 6.765, "feet"),
  7844. name: "Kara's Feet",
  7845. rename: true,
  7846. image: {
  7847. source: "./media/characters/kara/feet.svg"
  7848. }
  7849. },
  7850. },
  7851. [
  7852. {
  7853. name: "Normal",
  7854. height: math.unit(5 + 9 / 12, "feet")
  7855. },
  7856. {
  7857. name: "Macro",
  7858. height: math.unit(174, "feet"),
  7859. default: true
  7860. },
  7861. ]
  7862. ))
  7863. characterMakers.push(() => makeCharacter(
  7864. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  7865. {
  7866. front: {
  7867. height: math.unit(18, "feet"),
  7868. weight: math.unit(4050, "lb"),
  7869. name: "Front",
  7870. image: {
  7871. source: "./media/characters/tyrone/front.svg",
  7872. extra: 2520 / 2402,
  7873. bottom: 0.025
  7874. }
  7875. },
  7876. },
  7877. [
  7878. {
  7879. name: "Normal",
  7880. height: math.unit(18, "feet"),
  7881. default: true
  7882. },
  7883. {
  7884. name: "Macro",
  7885. height: math.unit(300, "feet")
  7886. },
  7887. ]
  7888. ))
  7889. characterMakers.push(() => makeCharacter(
  7890. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  7891. {
  7892. front: {
  7893. height: math.unit(7 + 8 / 12, "feet"),
  7894. weight: math.unit(120, "lb"),
  7895. name: "Front",
  7896. image: {
  7897. source: "./media/characters/danny/front.svg",
  7898. extra: 1490 / 1350
  7899. }
  7900. },
  7901. back: {
  7902. height: math.unit(7 + 8 / 12, "feet"),
  7903. weight: math.unit(120, "lb"),
  7904. name: "Back",
  7905. image: {
  7906. source: "./media/characters/danny/back.svg",
  7907. extra: 1490 / 1350
  7908. }
  7909. },
  7910. },
  7911. [
  7912. {
  7913. name: "Normal",
  7914. height: math.unit(7 + 8 / 12, "feet"),
  7915. default: true
  7916. },
  7917. ]
  7918. ))
  7919. characterMakers.push(() => makeCharacter(
  7920. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  7921. {
  7922. front: {
  7923. height: math.unit(3.5, "inches"),
  7924. weight: math.unit(19, "grams"),
  7925. name: "Front",
  7926. image: {
  7927. source: "./media/characters/mallow/front.svg",
  7928. extra: 471 / 431
  7929. }
  7930. },
  7931. back: {
  7932. height: math.unit(3.5, "inches"),
  7933. weight: math.unit(19, "grams"),
  7934. name: "Back",
  7935. image: {
  7936. source: "./media/characters/mallow/back.svg",
  7937. extra: 471 / 431
  7938. }
  7939. },
  7940. },
  7941. [
  7942. {
  7943. name: "Normal",
  7944. height: math.unit(3.5, "inches"),
  7945. default: true
  7946. },
  7947. ]
  7948. ))
  7949. characterMakers.push(() => makeCharacter(
  7950. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  7951. {
  7952. front: {
  7953. height: math.unit(9, "feet"),
  7954. weight: math.unit(230, "kg"),
  7955. name: "Front",
  7956. image: {
  7957. source: "./media/characters/starry-aqua/front.svg"
  7958. }
  7959. },
  7960. back: {
  7961. height: math.unit(9, "feet"),
  7962. weight: math.unit(230, "kg"),
  7963. name: "Back",
  7964. image: {
  7965. source: "./media/characters/starry-aqua/back.svg"
  7966. }
  7967. },
  7968. hand: {
  7969. height: math.unit(9 * 0.1168, "feet"),
  7970. name: "Hand",
  7971. image: {
  7972. source: "./media/characters/starry-aqua/hand.svg"
  7973. }
  7974. },
  7975. foot: {
  7976. height: math.unit(9 * 0.18, "feet"),
  7977. name: "Foot",
  7978. image: {
  7979. source: "./media/characters/starry-aqua/foot.svg"
  7980. }
  7981. }
  7982. },
  7983. [
  7984. {
  7985. name: "Micro",
  7986. height: math.unit(3, "inches")
  7987. },
  7988. {
  7989. name: "Normal",
  7990. height: math.unit(9, "feet")
  7991. },
  7992. {
  7993. name: "Macro",
  7994. height: math.unit(300, "feet"),
  7995. default: true
  7996. },
  7997. {
  7998. name: "Megamacro",
  7999. height: math.unit(3200, "feet")
  8000. }
  8001. ]
  8002. ))
  8003. characterMakers.push(() => makeCharacter(
  8004. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8005. {
  8006. front: {
  8007. height: math.unit(6, "feet"),
  8008. weight: math.unit(230, "lb"),
  8009. name: "Front",
  8010. image: {
  8011. source: "./media/characters/luka/front.svg",
  8012. extra: 1,
  8013. bottom: 0.025
  8014. }
  8015. },
  8016. },
  8017. [
  8018. {
  8019. name: "Normal",
  8020. height: math.unit(12 + 8 / 12, "feet"),
  8021. default: true
  8022. },
  8023. {
  8024. name: "Minimacro",
  8025. height: math.unit(20, "feet")
  8026. },
  8027. {
  8028. name: "Macro",
  8029. height: math.unit(250, "feet")
  8030. },
  8031. {
  8032. name: "Megamacro",
  8033. height: math.unit(5, "miles")
  8034. },
  8035. {
  8036. name: "Gigamacro",
  8037. height: math.unit(8000, "miles")
  8038. },
  8039. ]
  8040. ))
  8041. characterMakers.push(() => makeCharacter(
  8042. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8043. {
  8044. front: {
  8045. height: math.unit(6, "feet"),
  8046. weight: math.unit(150, "lb"),
  8047. name: "Front",
  8048. image: {
  8049. source: "./media/characters/natalie-nightring/front.svg",
  8050. extra: 1,
  8051. bottom: 0.06
  8052. }
  8053. },
  8054. },
  8055. [
  8056. {
  8057. name: "Uh Oh",
  8058. height: math.unit(0.1, "mm")
  8059. },
  8060. {
  8061. name: "Small",
  8062. height: math.unit(3, "inches")
  8063. },
  8064. {
  8065. name: "Human Scale",
  8066. height: math.unit(6, "feet")
  8067. },
  8068. {
  8069. name: "Librarian",
  8070. height: math.unit(50, "feet"),
  8071. default: true
  8072. },
  8073. {
  8074. name: "Immense",
  8075. height: math.unit(200, "miles")
  8076. },
  8077. ]
  8078. ))
  8079. characterMakers.push(() => makeCharacter(
  8080. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8081. {
  8082. front: {
  8083. height: math.unit(6, "feet"),
  8084. weight: math.unit(180, "lbs"),
  8085. name: "Front",
  8086. image: {
  8087. source: "./media/characters/danni-rosie/front.svg",
  8088. extra: 1260 / 1128,
  8089. bottom: 0.022
  8090. }
  8091. },
  8092. },
  8093. [
  8094. {
  8095. name: "Micro",
  8096. height: math.unit(2, "inches"),
  8097. default: true
  8098. },
  8099. ]
  8100. ))
  8101. characterMakers.push(() => makeCharacter(
  8102. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8103. {
  8104. front: {
  8105. height: math.unit(5 + 9 / 12, "feet"),
  8106. weight: math.unit(220, "lb"),
  8107. name: "Front",
  8108. image: {
  8109. source: "./media/characters/samantha-kruse/front.svg",
  8110. extra: (985 / 935),
  8111. bottom: 0.03
  8112. }
  8113. },
  8114. frontUndressed: {
  8115. height: math.unit(5 + 9 / 12, "feet"),
  8116. weight: math.unit(220, "lb"),
  8117. name: "Front (Undressed)",
  8118. image: {
  8119. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8120. extra: (973 / 923),
  8121. bottom: 0.025
  8122. }
  8123. },
  8124. fat: {
  8125. height: math.unit(5 + 9 / 12, "feet"),
  8126. weight: math.unit(900, "lb"),
  8127. name: "Front (Fat)",
  8128. image: {
  8129. source: "./media/characters/samantha-kruse/fat.svg",
  8130. extra: 2688 / 2561
  8131. }
  8132. },
  8133. },
  8134. [
  8135. {
  8136. name: "Normal",
  8137. height: math.unit(5 + 9 / 12, "feet"),
  8138. default: true
  8139. }
  8140. ]
  8141. ))
  8142. characterMakers.push(() => makeCharacter(
  8143. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8144. {
  8145. back: {
  8146. height: math.unit(5 + 4 / 12, "feet"),
  8147. weight: math.unit(4963, "lb"),
  8148. name: "Back",
  8149. image: {
  8150. source: "./media/characters/amelia-rosie/back.svg",
  8151. extra: 1113 / 963,
  8152. bottom: 0.01
  8153. }
  8154. },
  8155. },
  8156. [
  8157. {
  8158. name: "Level 0",
  8159. height: math.unit(5 + 4 / 12, "feet")
  8160. },
  8161. {
  8162. name: "Level 1",
  8163. height: math.unit(164597, "feet"),
  8164. default: true
  8165. },
  8166. {
  8167. name: "Level 2",
  8168. height: math.unit(956243, "miles")
  8169. },
  8170. {
  8171. name: "Level 3",
  8172. height: math.unit(29421709423, "miles")
  8173. },
  8174. {
  8175. name: "Level 4",
  8176. height: math.unit(154, "lightyears")
  8177. },
  8178. {
  8179. name: "Level 5",
  8180. height: math.unit(4738272, "lightyears")
  8181. },
  8182. {
  8183. name: "Level 6",
  8184. height: math.unit(145787152896, "lightyears")
  8185. },
  8186. ]
  8187. ))
  8188. characterMakers.push(() => makeCharacter(
  8189. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8190. {
  8191. front: {
  8192. height: math.unit(5 + 11 / 12, "feet"),
  8193. weight: math.unit(65, "kg"),
  8194. name: "Front",
  8195. image: {
  8196. source: "./media/characters/rook-kitara/front.svg",
  8197. extra: 1347 / 1274,
  8198. bottom: 0.005
  8199. }
  8200. },
  8201. },
  8202. [
  8203. {
  8204. name: "Totally Unfair",
  8205. height: math.unit(1.8, "mm")
  8206. },
  8207. {
  8208. name: "Lap Rookie",
  8209. height: math.unit(1.4, "feet")
  8210. },
  8211. {
  8212. name: "Normal",
  8213. height: math.unit(5 + 11 / 12, "feet"),
  8214. default: true
  8215. },
  8216. {
  8217. name: "How Did This Happen",
  8218. height: math.unit(80, "miles")
  8219. }
  8220. ]
  8221. ))
  8222. characterMakers.push(() => makeCharacter(
  8223. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8224. {
  8225. front: {
  8226. height: math.unit(7, "feet"),
  8227. weight: math.unit(300, "lb"),
  8228. name: "Front",
  8229. image: {
  8230. source: "./media/characters/pisces/front.svg",
  8231. extra: 2255 / 2115,
  8232. bottom: 0.03
  8233. }
  8234. },
  8235. back: {
  8236. height: math.unit(7, "feet"),
  8237. weight: math.unit(300, "lb"),
  8238. name: "Back",
  8239. image: {
  8240. source: "./media/characters/pisces/back.svg",
  8241. extra: 2146 / 2055,
  8242. bottom: 0.04
  8243. }
  8244. },
  8245. },
  8246. [
  8247. {
  8248. name: "Normal",
  8249. height: math.unit(7, "feet"),
  8250. default: true
  8251. },
  8252. {
  8253. name: "Swimming Pool",
  8254. height: math.unit(12.2, "meters")
  8255. },
  8256. {
  8257. name: "Olympic Swimming Pool",
  8258. height: math.unit(56.3, "meters")
  8259. },
  8260. {
  8261. name: "Lake Superior",
  8262. height: math.unit(93900, "meters")
  8263. },
  8264. {
  8265. name: "Mediterranean Sea",
  8266. height: math.unit(644457, "meters")
  8267. },
  8268. {
  8269. name: "World's Oceans",
  8270. height: math.unit(4567491, "meters")
  8271. },
  8272. ]
  8273. ))
  8274. characterMakers.push(() => makeCharacter(
  8275. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8276. {
  8277. front: {
  8278. height: math.unit(2.3, "meters"),
  8279. weight: math.unit(120, "kg"),
  8280. name: "Front",
  8281. image: {
  8282. source: "./media/characters/zelas/front.svg"
  8283. }
  8284. },
  8285. side: {
  8286. height: math.unit(2.3, "meters"),
  8287. weight: math.unit(120, "kg"),
  8288. name: "Side",
  8289. image: {
  8290. source: "./media/characters/zelas/side.svg"
  8291. }
  8292. },
  8293. back: {
  8294. height: math.unit(2.3, "meters"),
  8295. weight: math.unit(120, "kg"),
  8296. name: "Back",
  8297. image: {
  8298. source: "./media/characters/zelas/back.svg"
  8299. }
  8300. },
  8301. foot: {
  8302. height: math.unit(1.116, "feet"),
  8303. name: "Foot",
  8304. image: {
  8305. source: "./media/characters/zelas/foot.svg"
  8306. }
  8307. },
  8308. },
  8309. [
  8310. {
  8311. name: "Normal",
  8312. height: math.unit(2.3, "meters")
  8313. },
  8314. {
  8315. name: "Macro",
  8316. height: math.unit(30, "meters"),
  8317. default: true
  8318. },
  8319. ]
  8320. ))
  8321. characterMakers.push(() => makeCharacter(
  8322. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8323. {
  8324. front: {
  8325. height: math.unit(1, "inch"),
  8326. weight: math.unit(0.21, "grams"),
  8327. name: "Front",
  8328. image: {
  8329. source: "./media/characters/talbot/front.svg",
  8330. extra: 594 / 544
  8331. }
  8332. },
  8333. },
  8334. [
  8335. {
  8336. name: "Micro",
  8337. height: math.unit(1, "inch"),
  8338. default: true
  8339. },
  8340. ]
  8341. ))
  8342. characterMakers.push(() => makeCharacter(
  8343. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8344. {
  8345. front: {
  8346. height: math.unit(3 + 3 / 12, "feet"),
  8347. weight: math.unit(51.8, "lb"),
  8348. name: "Front",
  8349. image: {
  8350. source: "./media/characters/fliss/front.svg",
  8351. extra: 840 / 640
  8352. }
  8353. },
  8354. },
  8355. [
  8356. {
  8357. name: "Teeny Tiny",
  8358. height: math.unit(1, "mm")
  8359. },
  8360. {
  8361. name: "Small",
  8362. height: math.unit(1, "inch"),
  8363. default: true
  8364. },
  8365. {
  8366. name: "Standard Sylveon",
  8367. height: math.unit(3 + 3 / 12, "feet")
  8368. },
  8369. {
  8370. name: "Large Nuisance",
  8371. height: math.unit(33, "feet")
  8372. },
  8373. {
  8374. name: "City Filler",
  8375. height: math.unit(3000, "feet")
  8376. },
  8377. {
  8378. name: "New Horizon",
  8379. height: math.unit(6000, "miles")
  8380. },
  8381. ]
  8382. ))
  8383. characterMakers.push(() => makeCharacter(
  8384. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8385. {
  8386. front: {
  8387. height: math.unit(5, "cm"),
  8388. weight: math.unit(1.94, "g"),
  8389. name: "Front",
  8390. image: {
  8391. source: "./media/characters/fleta/front.svg",
  8392. extra: 835 / 803
  8393. }
  8394. },
  8395. back: {
  8396. height: math.unit(5, "cm"),
  8397. weight: math.unit(1.94, "g"),
  8398. name: "Back",
  8399. image: {
  8400. source: "./media/characters/fleta/back.svg",
  8401. extra: 835 / 803
  8402. }
  8403. },
  8404. },
  8405. [
  8406. {
  8407. name: "Micro",
  8408. height: math.unit(5, "cm"),
  8409. default: true
  8410. },
  8411. ]
  8412. ))
  8413. characterMakers.push(() => makeCharacter(
  8414. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8415. {
  8416. front: {
  8417. height: math.unit(6, "feet"),
  8418. weight: math.unit(225, "lb"),
  8419. name: "Front",
  8420. image: {
  8421. source: "./media/characters/dominic/front.svg",
  8422. extra: 1770 / 1620,
  8423. bottom: 0.025
  8424. }
  8425. },
  8426. back: {
  8427. height: math.unit(6, "feet"),
  8428. weight: math.unit(225, "lb"),
  8429. name: "Back",
  8430. image: {
  8431. source: "./media/characters/dominic/back.svg",
  8432. extra: 1745 / 1620,
  8433. bottom: 0.065
  8434. }
  8435. },
  8436. },
  8437. [
  8438. {
  8439. name: "Nano",
  8440. height: math.unit(0.1, "mm")
  8441. },
  8442. {
  8443. name: "Micro-",
  8444. height: math.unit(1, "mm")
  8445. },
  8446. {
  8447. name: "Micro",
  8448. height: math.unit(4, "inches")
  8449. },
  8450. {
  8451. name: "Normal",
  8452. height: math.unit(6 + 4 / 12, "feet"),
  8453. default: true
  8454. },
  8455. {
  8456. name: "Macro",
  8457. height: math.unit(115, "feet")
  8458. },
  8459. {
  8460. name: "Macro+",
  8461. height: math.unit(955, "feet")
  8462. },
  8463. {
  8464. name: "Megamacro",
  8465. height: math.unit(8990, "feet")
  8466. },
  8467. {
  8468. name: "Gigmacro",
  8469. height: math.unit(9310, "miles")
  8470. },
  8471. {
  8472. name: "Teramacro",
  8473. height: math.unit(1567005010, "miles")
  8474. },
  8475. {
  8476. name: "Examacro",
  8477. height: math.unit(1425, "parsecs")
  8478. },
  8479. ]
  8480. ))
  8481. characterMakers.push(() => makeCharacter(
  8482. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8483. {
  8484. front: {
  8485. height: math.unit(400, "feet"),
  8486. weight: math.unit(44444444, "lb"),
  8487. name: "Front",
  8488. image: {
  8489. source: "./media/characters/major-colonel/front.svg"
  8490. }
  8491. },
  8492. back: {
  8493. height: math.unit(400, "feet"),
  8494. weight: math.unit(44444444, "lb"),
  8495. name: "Back",
  8496. image: {
  8497. source: "./media/characters/major-colonel/back.svg"
  8498. }
  8499. },
  8500. },
  8501. [
  8502. {
  8503. name: "Macro",
  8504. height: math.unit(400, "feet"),
  8505. default: true
  8506. },
  8507. ]
  8508. ))
  8509. characterMakers.push(() => makeCharacter(
  8510. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8511. {
  8512. catFront: {
  8513. height: math.unit(6, "feet"),
  8514. weight: math.unit(120, "lb"),
  8515. name: "Front (Cat Side)",
  8516. image: {
  8517. source: "./media/characters/axel-lycan/cat-front.svg",
  8518. extra: 430 / 402,
  8519. bottom: 43 / 472.35
  8520. }
  8521. },
  8522. catBack: {
  8523. height: math.unit(6, "feet"),
  8524. weight: math.unit(120, "lb"),
  8525. name: "Back (Cat Side)",
  8526. image: {
  8527. source: "./media/characters/axel-lycan/cat-back.svg",
  8528. extra: 447 / 419,
  8529. bottom: 23.3 / 469
  8530. }
  8531. },
  8532. wolfFront: {
  8533. height: math.unit(6, "feet"),
  8534. weight: math.unit(120, "lb"),
  8535. name: "Front (Wolf Side)",
  8536. image: {
  8537. source: "./media/characters/axel-lycan/wolf-front.svg",
  8538. extra: 485 / 456,
  8539. bottom: 19 / 504
  8540. }
  8541. },
  8542. wolfBack: {
  8543. height: math.unit(6, "feet"),
  8544. weight: math.unit(120, "lb"),
  8545. name: "Back (Wolf Side)",
  8546. image: {
  8547. source: "./media/characters/axel-lycan/wolf-back.svg",
  8548. extra: 475 / 438,
  8549. bottom: 39.2 / 514
  8550. }
  8551. },
  8552. },
  8553. [
  8554. {
  8555. name: "Macro",
  8556. height: math.unit(1, "km"),
  8557. default: true
  8558. },
  8559. ]
  8560. ))
  8561. characterMakers.push(() => makeCharacter(
  8562. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8563. {
  8564. front: {
  8565. height: math.unit(5 + 9 / 12, "feet"),
  8566. weight: math.unit(175, "lb"),
  8567. name: "Front",
  8568. image: {
  8569. source: "./media/characters/vanrel-hyena/front.svg",
  8570. extra: 1086 / 1010,
  8571. bottom: 0.04
  8572. }
  8573. },
  8574. },
  8575. [
  8576. {
  8577. name: "Normal",
  8578. height: math.unit(5 + 9 / 12, "feet"),
  8579. default: true
  8580. },
  8581. ]
  8582. ))
  8583. characterMakers.push(() => makeCharacter(
  8584. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8585. {
  8586. front: {
  8587. height: math.unit(6, "feet"),
  8588. weight: math.unit(103, "lb"),
  8589. name: "Front",
  8590. image: {
  8591. source: "./media/characters/abbott-absol/front.svg",
  8592. extra: 2010 / 1842
  8593. }
  8594. },
  8595. },
  8596. [
  8597. {
  8598. name: "Megamicro",
  8599. height: math.unit(0.1, "mm")
  8600. },
  8601. {
  8602. name: "Micro",
  8603. height: math.unit(1, "inch")
  8604. },
  8605. {
  8606. name: "Normal",
  8607. height: math.unit(6, "feet"),
  8608. default: true
  8609. },
  8610. ]
  8611. ))
  8612. characterMakers.push(() => makeCharacter(
  8613. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8614. {
  8615. front: {
  8616. height: math.unit(6, "feet"),
  8617. weight: math.unit(264, "lb"),
  8618. name: "Front",
  8619. image: {
  8620. source: "./media/characters/hector/front.svg",
  8621. extra: 2280 / 2130,
  8622. bottom: 0.07
  8623. }
  8624. },
  8625. },
  8626. [
  8627. {
  8628. name: "Normal",
  8629. height: math.unit(12.25, "foot"),
  8630. default: true
  8631. },
  8632. {
  8633. name: "Macro",
  8634. height: math.unit(160, "feet")
  8635. },
  8636. ]
  8637. ))
  8638. characterMakers.push(() => makeCharacter(
  8639. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8640. {
  8641. front: {
  8642. height: math.unit(6, "feet"),
  8643. weight: math.unit(150, "lb"),
  8644. name: "Front",
  8645. image: {
  8646. source: "./media/characters/sal/front.svg",
  8647. extra: 1846 / 1699,
  8648. bottom: 0.04
  8649. }
  8650. },
  8651. },
  8652. [
  8653. {
  8654. name: "Megamacro",
  8655. height: math.unit(10, "miles"),
  8656. default: true
  8657. },
  8658. ]
  8659. ))
  8660. characterMakers.push(() => makeCharacter(
  8661. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8662. {
  8663. front: {
  8664. height: math.unit(3, "meters"),
  8665. weight: math.unit(450, "kg"),
  8666. name: "front",
  8667. image: {
  8668. source: "./media/characters/ranger/front.svg",
  8669. extra: 2401 / 2243,
  8670. bottom: 0.05
  8671. }
  8672. },
  8673. },
  8674. [
  8675. {
  8676. name: "Normal",
  8677. height: math.unit(3, "meters"),
  8678. default: true
  8679. },
  8680. ]
  8681. ))
  8682. characterMakers.push(() => makeCharacter(
  8683. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8684. {
  8685. front: {
  8686. height: math.unit(14, "feet"),
  8687. weight: math.unit(800, "kg"),
  8688. name: "Front",
  8689. image: {
  8690. source: "./media/characters/theresa/front.svg",
  8691. extra: 3575 / 3346,
  8692. bottom: 0.03
  8693. }
  8694. },
  8695. },
  8696. [
  8697. {
  8698. name: "Normal",
  8699. height: math.unit(14, "feet"),
  8700. default: true
  8701. },
  8702. ]
  8703. ))
  8704. characterMakers.push(() => makeCharacter(
  8705. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8706. {
  8707. front: {
  8708. height: math.unit(6, "feet"),
  8709. weight: math.unit(3, "kg"),
  8710. name: "Front",
  8711. image: {
  8712. source: "./media/characters/ine/front.svg",
  8713. extra: 678 / 539,
  8714. bottom: 0.023
  8715. }
  8716. },
  8717. },
  8718. [
  8719. {
  8720. name: "Normal",
  8721. height: math.unit(2.265, "feet"),
  8722. default: true
  8723. },
  8724. ]
  8725. ))
  8726. characterMakers.push(() => makeCharacter(
  8727. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8728. {
  8729. front: {
  8730. height: math.unit(5, "feet"),
  8731. weight: math.unit(30, "kg"),
  8732. name: "Front",
  8733. image: {
  8734. source: "./media/characters/vial/front.svg",
  8735. extra: 1365 / 1277,
  8736. bottom: 0.04
  8737. }
  8738. },
  8739. },
  8740. [
  8741. {
  8742. name: "Normal",
  8743. height: math.unit(5, "feet"),
  8744. default: true
  8745. },
  8746. ]
  8747. ))
  8748. characterMakers.push(() => makeCharacter(
  8749. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8750. {
  8751. side: {
  8752. height: math.unit(3.4, "meters"),
  8753. weight: math.unit(1000, "lb"),
  8754. name: "Side",
  8755. image: {
  8756. source: "./media/characters/rovoska/side.svg",
  8757. extra: 4403 / 1515
  8758. }
  8759. },
  8760. },
  8761. [
  8762. {
  8763. name: "Normal",
  8764. height: math.unit(3.4, "meters"),
  8765. default: true
  8766. },
  8767. ]
  8768. ))
  8769. characterMakers.push(() => makeCharacter(
  8770. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8771. {
  8772. front: {
  8773. height: math.unit(8, "feet"),
  8774. weight: math.unit(315, "lb"),
  8775. name: "Front",
  8776. image: {
  8777. source: "./media/characters/gunner-rotthbauer/front.svg"
  8778. }
  8779. },
  8780. back: {
  8781. height: math.unit(8, "feet"),
  8782. weight: math.unit(315, "lb"),
  8783. name: "Back",
  8784. image: {
  8785. source: "./media/characters/gunner-rotthbauer/back.svg"
  8786. }
  8787. },
  8788. },
  8789. [
  8790. {
  8791. name: "Micro",
  8792. height: math.unit(3.5, "inches")
  8793. },
  8794. {
  8795. name: "Normal",
  8796. height: math.unit(8, "feet"),
  8797. default: true
  8798. },
  8799. {
  8800. name: "Macro",
  8801. height: math.unit(250, "feet")
  8802. },
  8803. {
  8804. name: "Megamacro",
  8805. height: math.unit(1, "AU")
  8806. },
  8807. ]
  8808. ))
  8809. characterMakers.push(() => makeCharacter(
  8810. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  8811. {
  8812. front: {
  8813. height: math.unit(5 + 5 / 12, "feet"),
  8814. weight: math.unit(140, "lb"),
  8815. name: "Front",
  8816. image: {
  8817. source: "./media/characters/allatia/front.svg",
  8818. extra: 1227 / 1180,
  8819. bottom: 0.027
  8820. }
  8821. },
  8822. },
  8823. [
  8824. {
  8825. name: "Normal",
  8826. height: math.unit(5 + 5 / 12, "feet")
  8827. },
  8828. {
  8829. name: "Macro",
  8830. height: math.unit(250, "feet"),
  8831. default: true
  8832. },
  8833. {
  8834. name: "Megamacro",
  8835. height: math.unit(8, "miles")
  8836. }
  8837. ]
  8838. ))
  8839. characterMakers.push(() => makeCharacter(
  8840. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  8841. {
  8842. front: {
  8843. height: math.unit(6, "feet"),
  8844. weight: math.unit(120, "lb"),
  8845. name: "Front",
  8846. image: {
  8847. source: "./media/characters/tene/front.svg",
  8848. extra: 1728 / 1578,
  8849. bottom: 0.022
  8850. }
  8851. },
  8852. stomping: {
  8853. height: math.unit(2.025, "meters"),
  8854. weight: math.unit(120, "lb"),
  8855. name: "Stomping",
  8856. image: {
  8857. source: "./media/characters/tene/stomping.svg",
  8858. extra: 938 / 873,
  8859. bottom: 0.01
  8860. }
  8861. },
  8862. sitting: {
  8863. height: math.unit(1, "meter"),
  8864. weight: math.unit(120, "lb"),
  8865. name: "Sitting",
  8866. image: {
  8867. source: "./media/characters/tene/sitting.svg",
  8868. extra: 437 / 415,
  8869. bottom: 0.1
  8870. }
  8871. },
  8872. feral: {
  8873. height: math.unit(3.9, "feet"),
  8874. weight: math.unit(250, "lb"),
  8875. name: "Feral",
  8876. image: {
  8877. source: "./media/characters/tene/feral.svg",
  8878. extra: 717 / 458,
  8879. bottom: 0.179
  8880. }
  8881. },
  8882. },
  8883. [
  8884. {
  8885. name: "Normal",
  8886. height: math.unit(6, "feet")
  8887. },
  8888. {
  8889. name: "Macro",
  8890. height: math.unit(300, "feet"),
  8891. default: true
  8892. },
  8893. {
  8894. name: "Megamacro",
  8895. height: math.unit(5, "miles")
  8896. },
  8897. ]
  8898. ))
  8899. characterMakers.push(() => makeCharacter(
  8900. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  8901. {
  8902. side: {
  8903. height: math.unit(6, "feet"),
  8904. name: "Side",
  8905. image: {
  8906. source: "./media/characters/evander/side.svg",
  8907. extra: 877 / 477
  8908. }
  8909. },
  8910. },
  8911. [
  8912. {
  8913. name: "Normal",
  8914. height: math.unit(0.83, "meters"),
  8915. default: true
  8916. },
  8917. ]
  8918. ))
  8919. characterMakers.push(() => makeCharacter(
  8920. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  8921. {
  8922. front: {
  8923. height: math.unit(12, "feet"),
  8924. weight: math.unit(1000, "lb"),
  8925. name: "Front",
  8926. image: {
  8927. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  8928. extra: 1762 / 1611
  8929. }
  8930. },
  8931. back: {
  8932. height: math.unit(12, "feet"),
  8933. weight: math.unit(1000, "lb"),
  8934. name: "Back",
  8935. image: {
  8936. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  8937. extra: 1762 / 1611
  8938. }
  8939. },
  8940. },
  8941. [
  8942. {
  8943. name: "Normal",
  8944. height: math.unit(12, "feet"),
  8945. default: true
  8946. },
  8947. {
  8948. name: "Kaiju",
  8949. height: math.unit(150, "feet")
  8950. },
  8951. ]
  8952. ))
  8953. characterMakers.push(() => makeCharacter(
  8954. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  8955. {
  8956. front: {
  8957. height: math.unit(6, "feet"),
  8958. weight: math.unit(150, "lb"),
  8959. name: "Front",
  8960. image: {
  8961. source: "./media/characters/zero-alurus/front.svg"
  8962. }
  8963. },
  8964. back: {
  8965. height: math.unit(6, "feet"),
  8966. weight: math.unit(150, "lb"),
  8967. name: "Back",
  8968. image: {
  8969. source: "./media/characters/zero-alurus/back.svg"
  8970. }
  8971. },
  8972. },
  8973. [
  8974. {
  8975. name: "Normal",
  8976. height: math.unit(5 + 10 / 12, "feet")
  8977. },
  8978. {
  8979. name: "Macro",
  8980. height: math.unit(60, "feet"),
  8981. default: true
  8982. },
  8983. {
  8984. name: "Macro+",
  8985. height: math.unit(450, "feet")
  8986. },
  8987. ]
  8988. ))
  8989. characterMakers.push(() => makeCharacter(
  8990. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  8991. {
  8992. front: {
  8993. height: math.unit(6, "feet"),
  8994. weight: math.unit(200, "lb"),
  8995. name: "Front",
  8996. image: {
  8997. source: "./media/characters/mega-shi/front.svg",
  8998. extra: 1279 / 1250,
  8999. bottom: 0.02
  9000. }
  9001. },
  9002. back: {
  9003. height: math.unit(6, "feet"),
  9004. weight: math.unit(200, "lb"),
  9005. name: "Back",
  9006. image: {
  9007. source: "./media/characters/mega-shi/back.svg",
  9008. extra: 1279 / 1250,
  9009. bottom: 0.02
  9010. }
  9011. },
  9012. },
  9013. [
  9014. {
  9015. name: "Micro",
  9016. height: math.unit(16 + 6 / 12, "feet")
  9017. },
  9018. {
  9019. name: "Third Dimension",
  9020. height: math.unit(40, "meters")
  9021. },
  9022. {
  9023. name: "Normal",
  9024. height: math.unit(660, "feet"),
  9025. default: true
  9026. },
  9027. {
  9028. name: "Megamacro",
  9029. height: math.unit(10, "miles")
  9030. },
  9031. {
  9032. name: "Planetary Launch",
  9033. height: math.unit(500, "miles")
  9034. },
  9035. {
  9036. name: "Interstellar",
  9037. height: math.unit(1e9, "miles")
  9038. },
  9039. {
  9040. name: "Leaving the Universe",
  9041. height: math.unit(1, "gigaparsec")
  9042. },
  9043. {
  9044. name: "Travelling Universes",
  9045. height: math.unit(30e15, "parsecs")
  9046. },
  9047. ]
  9048. ))
  9049. characterMakers.push(() => makeCharacter(
  9050. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9051. {
  9052. front: {
  9053. height: math.unit(6, "feet"),
  9054. weight: math.unit(150, "lb"),
  9055. name: "Front",
  9056. image: {
  9057. source: "./media/characters/odyssey/front.svg",
  9058. extra: 1782 / 1582,
  9059. bottom: 0.01
  9060. }
  9061. },
  9062. side: {
  9063. height: math.unit(5.7, "feet"),
  9064. weight: math.unit(140, "lb"),
  9065. name: "Side",
  9066. image: {
  9067. source: "./media/characters/odyssey/side.svg",
  9068. extra: 6462 / 5700
  9069. }
  9070. },
  9071. },
  9072. [
  9073. {
  9074. name: "Normal",
  9075. height: math.unit(5 + 4 / 12, "feet")
  9076. },
  9077. {
  9078. name: "Macro",
  9079. height: math.unit(1, "km")
  9080. },
  9081. {
  9082. name: "Megamacro",
  9083. height: math.unit(3000, "km")
  9084. },
  9085. {
  9086. name: "Gigamacro",
  9087. height: math.unit(1, "AU"),
  9088. default: true
  9089. },
  9090. {
  9091. name: "Omniversal",
  9092. height: math.unit(100e14, "lightyears")
  9093. },
  9094. ]
  9095. ))
  9096. characterMakers.push(() => makeCharacter(
  9097. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9098. {
  9099. front: {
  9100. height: math.unit(6, "feet"),
  9101. weight: math.unit(300, "lb"),
  9102. name: "Front",
  9103. image: {
  9104. source: "./media/characters/mekuto/front.svg",
  9105. extra: 921 / 832,
  9106. bottom: 0.03
  9107. }
  9108. },
  9109. hand: {
  9110. height: math.unit(6 / 10.24, "feet"),
  9111. name: "Hand",
  9112. image: {
  9113. source: "./media/characters/mekuto/hand.svg"
  9114. }
  9115. },
  9116. foot: {
  9117. height: math.unit(6 / 5.05, "feet"),
  9118. name: "Foot",
  9119. image: {
  9120. source: "./media/characters/mekuto/foot.svg"
  9121. }
  9122. },
  9123. },
  9124. [
  9125. {
  9126. name: "Minimicro",
  9127. height: math.unit(0.2, "inches")
  9128. },
  9129. {
  9130. name: "Micro",
  9131. height: math.unit(1.5, "inches")
  9132. },
  9133. {
  9134. name: "Normal",
  9135. height: math.unit(5 + 11 / 12, "feet"),
  9136. default: true
  9137. },
  9138. {
  9139. name: "Minimacro",
  9140. height: math.unit(17 + 9 / 12, "feet")
  9141. },
  9142. {
  9143. name: "Macro",
  9144. height: math.unit(177.5, "feet")
  9145. },
  9146. {
  9147. name: "Megamacro",
  9148. height: math.unit(152, "miles")
  9149. },
  9150. ]
  9151. ))
  9152. characterMakers.push(() => makeCharacter(
  9153. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9154. {
  9155. front: {
  9156. height: math.unit(6.5, "inches"),
  9157. weight: math.unit(13, "oz"),
  9158. name: "Front",
  9159. image: {
  9160. source: "./media/characters/dafydd-tomos/front.svg",
  9161. extra: 2990 / 2603,
  9162. bottom: 0.03
  9163. }
  9164. },
  9165. },
  9166. [
  9167. {
  9168. name: "Micro",
  9169. height: math.unit(6.5, "inches"),
  9170. default: true
  9171. },
  9172. ]
  9173. ))
  9174. characterMakers.push(() => makeCharacter(
  9175. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9176. {
  9177. front: {
  9178. height: math.unit(6, "feet"),
  9179. weight: math.unit(150, "lb"),
  9180. name: "Front",
  9181. image: {
  9182. source: "./media/characters/splinter/front.svg",
  9183. extra: 2990 / 2882,
  9184. bottom: 0.04
  9185. }
  9186. },
  9187. back: {
  9188. height: math.unit(6, "feet"),
  9189. weight: math.unit(150, "lb"),
  9190. name: "Back",
  9191. image: {
  9192. source: "./media/characters/splinter/back.svg",
  9193. extra: 2990 / 2882,
  9194. bottom: 0.04
  9195. }
  9196. },
  9197. },
  9198. [
  9199. {
  9200. name: "Normal",
  9201. height: math.unit(6, "feet")
  9202. },
  9203. {
  9204. name: "Macro",
  9205. height: math.unit(230, "meters"),
  9206. default: true
  9207. },
  9208. ]
  9209. ))
  9210. characterMakers.push(() => makeCharacter(
  9211. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9212. {
  9213. front: {
  9214. height: math.unit(4 + 10 / 12, "feet"),
  9215. weight: math.unit(480, "lb"),
  9216. name: "Front",
  9217. image: {
  9218. source: "./media/characters/snow-gabumon/front.svg",
  9219. extra: 1140 / 963,
  9220. bottom: 0.058
  9221. }
  9222. },
  9223. back: {
  9224. height: math.unit(4 + 10 / 12, "feet"),
  9225. weight: math.unit(480, "lb"),
  9226. name: "Back",
  9227. image: {
  9228. source: "./media/characters/snow-gabumon/back.svg",
  9229. extra: 1115 / 962,
  9230. bottom: 0.041
  9231. }
  9232. },
  9233. frontUndresed: {
  9234. height: math.unit(4 + 10 / 12, "feet"),
  9235. weight: math.unit(480, "lb"),
  9236. name: "Front (Undressed)",
  9237. image: {
  9238. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9239. extra: 1061 / 960,
  9240. bottom: 0.045
  9241. }
  9242. },
  9243. },
  9244. [
  9245. {
  9246. name: "Micro",
  9247. height: math.unit(1, "inch")
  9248. },
  9249. {
  9250. name: "Normal",
  9251. height: math.unit(4 + 10 / 12, "feet"),
  9252. default: true
  9253. },
  9254. {
  9255. name: "Macro",
  9256. height: math.unit(200, "feet")
  9257. },
  9258. {
  9259. name: "Megamacro",
  9260. height: math.unit(120, "miles")
  9261. },
  9262. {
  9263. name: "Gigamacro",
  9264. height: math.unit(9800, "miles")
  9265. },
  9266. ]
  9267. ))
  9268. characterMakers.push(() => makeCharacter(
  9269. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9270. {
  9271. front: {
  9272. height: math.unit(1.7, "meters"),
  9273. weight: math.unit(140, "lb"),
  9274. name: "Front",
  9275. image: {
  9276. source: "./media/characters/moody/front.svg",
  9277. extra: 3226 / 3007,
  9278. bottom: 0.087
  9279. }
  9280. },
  9281. },
  9282. [
  9283. {
  9284. name: "Micro",
  9285. height: math.unit(1, "mm")
  9286. },
  9287. {
  9288. name: "Normal",
  9289. height: math.unit(1.7, "meters"),
  9290. default: true
  9291. },
  9292. {
  9293. name: "Macro",
  9294. height: math.unit(80, "meters")
  9295. },
  9296. {
  9297. name: "Macro+",
  9298. height: math.unit(500, "meters")
  9299. },
  9300. ]
  9301. ))
  9302. characterMakers.push(() => makeCharacter(
  9303. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9304. {
  9305. front: {
  9306. height: math.unit(6, "feet"),
  9307. weight: math.unit(150, "lb"),
  9308. name: "Front",
  9309. image: {
  9310. source: "./media/characters/zyas/front.svg",
  9311. extra: 1180 / 1120,
  9312. bottom: 0.045
  9313. }
  9314. },
  9315. },
  9316. [
  9317. {
  9318. name: "Normal",
  9319. height: math.unit(10, "feet"),
  9320. default: true
  9321. },
  9322. {
  9323. name: "Macro",
  9324. height: math.unit(500, "feet")
  9325. },
  9326. {
  9327. name: "Megamacro",
  9328. height: math.unit(5, "miles")
  9329. },
  9330. {
  9331. name: "Teramacro",
  9332. height: math.unit(150000, "miles")
  9333. },
  9334. ]
  9335. ))
  9336. characterMakers.push(() => makeCharacter(
  9337. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9338. {
  9339. front: {
  9340. height: math.unit(6, "feet"),
  9341. weight: math.unit(150, "lb"),
  9342. name: "Front",
  9343. image: {
  9344. source: "./media/characters/cuon/front.svg",
  9345. extra: 1390 / 1320,
  9346. bottom: 0.008
  9347. }
  9348. },
  9349. },
  9350. [
  9351. {
  9352. name: "Micro",
  9353. height: math.unit(3, "inches")
  9354. },
  9355. {
  9356. name: "Normal",
  9357. height: math.unit(18 + 9 / 12, "feet"),
  9358. default: true
  9359. },
  9360. {
  9361. name: "Macro",
  9362. height: math.unit(360, "feet")
  9363. },
  9364. {
  9365. name: "Megamacro",
  9366. height: math.unit(360, "miles")
  9367. },
  9368. ]
  9369. ))
  9370. characterMakers.push(() => makeCharacter(
  9371. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9372. {
  9373. front: {
  9374. height: math.unit(2.4, "meters"),
  9375. weight: math.unit(70, "kg"),
  9376. name: "Front",
  9377. image: {
  9378. source: "./media/characters/nyanuxk/front.svg",
  9379. extra: 1172 / 1084,
  9380. bottom: 0.065
  9381. }
  9382. },
  9383. side: {
  9384. height: math.unit(2.4, "meters"),
  9385. weight: math.unit(70, "kg"),
  9386. name: "Side",
  9387. image: {
  9388. source: "./media/characters/nyanuxk/side.svg",
  9389. extra: 1190 / 1132,
  9390. bottom: 0.007
  9391. }
  9392. },
  9393. back: {
  9394. height: math.unit(2.4, "meters"),
  9395. weight: math.unit(70, "kg"),
  9396. name: "Back",
  9397. image: {
  9398. source: "./media/characters/nyanuxk/back.svg",
  9399. extra: 1200 / 1141,
  9400. bottom: 0.015
  9401. }
  9402. },
  9403. foot: {
  9404. height: math.unit(0.52, "meters"),
  9405. name: "Foot",
  9406. image: {
  9407. source: "./media/characters/nyanuxk/foot.svg"
  9408. }
  9409. },
  9410. },
  9411. [
  9412. {
  9413. name: "Micro",
  9414. height: math.unit(2, "cm")
  9415. },
  9416. {
  9417. name: "Normal",
  9418. height: math.unit(2.4, "meters"),
  9419. default: true
  9420. },
  9421. {
  9422. name: "Smaller Macro",
  9423. height: math.unit(120, "meters")
  9424. },
  9425. {
  9426. name: "Bigger Macro",
  9427. height: math.unit(1.2, "km")
  9428. },
  9429. {
  9430. name: "Megamacro",
  9431. height: math.unit(15, "kilometers")
  9432. },
  9433. {
  9434. name: "Gigamacro",
  9435. height: math.unit(2000, "km")
  9436. },
  9437. {
  9438. name: "Teramacro",
  9439. height: math.unit(500000, "km")
  9440. },
  9441. ]
  9442. ))
  9443. characterMakers.push(() => makeCharacter(
  9444. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9445. {
  9446. side: {
  9447. height: math.unit(6, "feet"),
  9448. name: "Side",
  9449. image: {
  9450. source: "./media/characters/ailbhe/side.svg",
  9451. extra: 757 / 464,
  9452. bottom: 0.041
  9453. }
  9454. },
  9455. },
  9456. [
  9457. {
  9458. name: "Normal",
  9459. height: math.unit(1.07, "meters"),
  9460. default: true
  9461. },
  9462. ]
  9463. ))
  9464. characterMakers.push(() => makeCharacter(
  9465. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9466. {
  9467. front: {
  9468. height: math.unit(6, "feet"),
  9469. weight: math.unit(120, "kg"),
  9470. name: "Front",
  9471. image: {
  9472. source: "./media/characters/zevulfius/front.svg",
  9473. extra: 965 / 903
  9474. }
  9475. },
  9476. side: {
  9477. height: math.unit(6, "feet"),
  9478. weight: math.unit(120, "kg"),
  9479. name: "Side",
  9480. image: {
  9481. source: "./media/characters/zevulfius/side.svg",
  9482. extra: 939 / 900
  9483. }
  9484. },
  9485. back: {
  9486. height: math.unit(6, "feet"),
  9487. weight: math.unit(120, "kg"),
  9488. name: "Back",
  9489. image: {
  9490. source: "./media/characters/zevulfius/back.svg",
  9491. extra: 918 / 854,
  9492. bottom: 0.005
  9493. }
  9494. },
  9495. foot: {
  9496. height: math.unit(6 / 3.72, "feet"),
  9497. name: "Foot",
  9498. image: {
  9499. source: "./media/characters/zevulfius/foot.svg"
  9500. }
  9501. },
  9502. },
  9503. [
  9504. {
  9505. name: "Macro",
  9506. height: math.unit(750, "meters")
  9507. },
  9508. {
  9509. name: "Megamacro",
  9510. height: math.unit(20, "km"),
  9511. default: true
  9512. },
  9513. {
  9514. name: "Gigamacro",
  9515. height: math.unit(2000, "km")
  9516. },
  9517. {
  9518. name: "Teramacro",
  9519. height: math.unit(250000, "km")
  9520. },
  9521. ]
  9522. ))
  9523. characterMakers.push(() => makeCharacter(
  9524. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9525. {
  9526. front: {
  9527. height: math.unit(100, "feet"),
  9528. weight: math.unit(350, "kg"),
  9529. name: "Front",
  9530. image: {
  9531. source: "./media/characters/rikes/front.svg",
  9532. extra: 1565 / 1483,
  9533. bottom: 0.017
  9534. }
  9535. },
  9536. },
  9537. [
  9538. {
  9539. name: "Macro",
  9540. height: math.unit(100, "feet"),
  9541. default: true
  9542. },
  9543. ]
  9544. ))
  9545. characterMakers.push(() => makeCharacter(
  9546. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9547. {
  9548. anthro: {
  9549. height: math.unit(8, "feet"),
  9550. weight: math.unit(120, "kg"),
  9551. name: "Anthro",
  9552. image: {
  9553. source: "./media/characters/adam-silver-mane/anthro.svg",
  9554. extra: 5743 / 5339,
  9555. bottom: 0.07
  9556. }
  9557. },
  9558. taur: {
  9559. height: math.unit(16, "feet"),
  9560. weight: math.unit(1500, "kg"),
  9561. name: "Taur",
  9562. image: {
  9563. source: "./media/characters/adam-silver-mane/taur.svg",
  9564. extra: 1713 / 1571,
  9565. bottom: 0.01
  9566. }
  9567. },
  9568. },
  9569. [
  9570. {
  9571. name: "Normal",
  9572. height: math.unit(8, "feet")
  9573. },
  9574. {
  9575. name: "Minimacro",
  9576. height: math.unit(80, "feet")
  9577. },
  9578. {
  9579. name: "Macro",
  9580. height: math.unit(800, "feet"),
  9581. default: true
  9582. },
  9583. {
  9584. name: "Megamacro",
  9585. height: math.unit(8000, "feet")
  9586. },
  9587. {
  9588. name: "Gigamacro",
  9589. height: math.unit(800, "miles")
  9590. },
  9591. {
  9592. name: "Teramacro",
  9593. height: math.unit(80000, "miles")
  9594. },
  9595. {
  9596. name: "Celestial",
  9597. height: math.unit(8e6, "miles")
  9598. },
  9599. {
  9600. name: "Star Dragon",
  9601. height: math.unit(800000, "parsecs")
  9602. },
  9603. {
  9604. name: "Godly",
  9605. height: math.unit(800, "teraparsecs")
  9606. },
  9607. ]
  9608. ))
  9609. characterMakers.push(() => makeCharacter(
  9610. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9611. {
  9612. front: {
  9613. height: math.unit(6, "feet"),
  9614. weight: math.unit(150, "lb"),
  9615. name: "Front",
  9616. image: {
  9617. source: "./media/characters/ky'owin/front.svg",
  9618. extra: 3888 / 3068,
  9619. bottom: 0.015
  9620. }
  9621. },
  9622. },
  9623. [
  9624. {
  9625. name: "Normal",
  9626. height: math.unit(6 + 8 / 12, "feet")
  9627. },
  9628. {
  9629. name: "Large",
  9630. height: math.unit(68, "feet")
  9631. },
  9632. {
  9633. name: "Macro",
  9634. height: math.unit(132, "feet")
  9635. },
  9636. {
  9637. name: "Macro+",
  9638. height: math.unit(340, "feet")
  9639. },
  9640. {
  9641. name: "Macro++",
  9642. height: math.unit(680, "feet"),
  9643. default: true
  9644. },
  9645. {
  9646. name: "Megamacro",
  9647. height: math.unit(1, "mile")
  9648. },
  9649. {
  9650. name: "Megamacro+",
  9651. height: math.unit(10, "miles")
  9652. },
  9653. ]
  9654. ))
  9655. characterMakers.push(() => makeCharacter(
  9656. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9657. {
  9658. front: {
  9659. height: math.unit(4, "feet"),
  9660. weight: math.unit(50, "lb"),
  9661. name: "Front",
  9662. image: {
  9663. source: "./media/characters/mal/front.svg",
  9664. extra: 785 / 724,
  9665. bottom: 0.07
  9666. }
  9667. },
  9668. },
  9669. [
  9670. {
  9671. name: "Micro",
  9672. height: math.unit(4, "inches")
  9673. },
  9674. {
  9675. name: "Normal",
  9676. height: math.unit(4, "feet"),
  9677. default: true
  9678. },
  9679. {
  9680. name: "Macro",
  9681. height: math.unit(200, "feet")
  9682. },
  9683. ]
  9684. ))
  9685. characterMakers.push(() => makeCharacter(
  9686. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9687. {
  9688. front: {
  9689. height: math.unit(6, "feet"),
  9690. weight: math.unit(150, "lb"),
  9691. name: "Front",
  9692. image: {
  9693. source: "./media/characters/jordan-deware/front.svg",
  9694. extra: 1191 / 1012
  9695. }
  9696. },
  9697. },
  9698. [
  9699. {
  9700. name: "Nano",
  9701. height: math.unit(0.01, "mm")
  9702. },
  9703. {
  9704. name: "Minimicro",
  9705. height: math.unit(1, "mm")
  9706. },
  9707. {
  9708. name: "Micro",
  9709. height: math.unit(0.5, "inches")
  9710. },
  9711. {
  9712. name: "Normal",
  9713. height: math.unit(4, "feet"),
  9714. default: true
  9715. },
  9716. {
  9717. name: "Minimacro",
  9718. height: math.unit(40, "meters")
  9719. },
  9720. {
  9721. name: "Small Macro",
  9722. height: math.unit(400, "meters")
  9723. },
  9724. {
  9725. name: "Macro",
  9726. height: math.unit(4, "miles")
  9727. },
  9728. {
  9729. name: "Megamacro",
  9730. height: math.unit(40, "miles")
  9731. },
  9732. {
  9733. name: "Megamacro+",
  9734. height: math.unit(400, "miles")
  9735. },
  9736. {
  9737. name: "Gigamacro",
  9738. height: math.unit(400000, "miles")
  9739. },
  9740. ]
  9741. ))
  9742. characterMakers.push(() => makeCharacter(
  9743. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9744. {
  9745. side: {
  9746. height: math.unit(6, "feet"),
  9747. weight: math.unit(150, "lb"),
  9748. name: "Side",
  9749. image: {
  9750. source: "./media/characters/kimiko/side.svg",
  9751. extra: 600 / 358
  9752. }
  9753. },
  9754. },
  9755. [
  9756. {
  9757. name: "Normal",
  9758. height: math.unit(15, "feet"),
  9759. default: true
  9760. },
  9761. {
  9762. name: "Macro",
  9763. height: math.unit(220, "feet")
  9764. },
  9765. {
  9766. name: "Macro+",
  9767. height: math.unit(1450, "feet")
  9768. },
  9769. {
  9770. name: "Megamacro",
  9771. height: math.unit(11500, "feet")
  9772. },
  9773. {
  9774. name: "Gigamacro",
  9775. height: math.unit(9500, "miles")
  9776. },
  9777. {
  9778. name: "Teramacro",
  9779. height: math.unit(2208005005, "miles")
  9780. },
  9781. {
  9782. name: "Examacro",
  9783. height: math.unit(2750, "parsecs")
  9784. },
  9785. {
  9786. name: "Zettamacro",
  9787. height: math.unit(101500, "parsecs")
  9788. },
  9789. ]
  9790. ))
  9791. characterMakers.push(() => makeCharacter(
  9792. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9793. {
  9794. front: {
  9795. height: math.unit(6, "feet"),
  9796. weight: math.unit(70, "kg"),
  9797. name: "Front",
  9798. image: {
  9799. source: "./media/characters/andrew-sleepy/front.svg"
  9800. }
  9801. },
  9802. side: {
  9803. height: math.unit(6, "feet"),
  9804. weight: math.unit(70, "kg"),
  9805. name: "Side",
  9806. image: {
  9807. source: "./media/characters/andrew-sleepy/side.svg"
  9808. }
  9809. },
  9810. },
  9811. [
  9812. {
  9813. name: "Micro",
  9814. height: math.unit(1, "mm"),
  9815. default: true
  9816. },
  9817. ]
  9818. ))
  9819. characterMakers.push(() => makeCharacter(
  9820. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  9821. {
  9822. front: {
  9823. height: math.unit(6, "feet"),
  9824. weight: math.unit(150, "lb"),
  9825. name: "Front",
  9826. image: {
  9827. source: "./media/characters/judio/front.svg",
  9828. extra: 1258 / 1110
  9829. }
  9830. },
  9831. },
  9832. [
  9833. {
  9834. name: "Normal",
  9835. height: math.unit(5 + 6 / 12, "feet")
  9836. },
  9837. {
  9838. name: "Macro",
  9839. height: math.unit(1000, "feet"),
  9840. default: true
  9841. },
  9842. {
  9843. name: "Megamacro",
  9844. height: math.unit(10, "miles")
  9845. },
  9846. ]
  9847. ))
  9848. characterMakers.push(() => makeCharacter(
  9849. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  9850. {
  9851. front: {
  9852. height: math.unit(6, "feet"),
  9853. weight: math.unit(68, "kg"),
  9854. name: "Front",
  9855. image: {
  9856. source: "./media/characters/nomaxice/front.svg",
  9857. extra: 1498 / 1073,
  9858. bottom: 0.075
  9859. }
  9860. },
  9861. foot: {
  9862. height: math.unit(1.1, "feet"),
  9863. name: "Foot",
  9864. image: {
  9865. source: "./media/characters/nomaxice/foot.svg"
  9866. }
  9867. },
  9868. },
  9869. [
  9870. {
  9871. name: "Micro",
  9872. height: math.unit(8, "cm")
  9873. },
  9874. {
  9875. name: "Norm",
  9876. height: math.unit(1.82, "m")
  9877. },
  9878. {
  9879. name: "Norm+",
  9880. height: math.unit(8.8, "feet")
  9881. },
  9882. {
  9883. name: "Big",
  9884. height: math.unit(8, "meters"),
  9885. default: true
  9886. },
  9887. {
  9888. name: "Macro",
  9889. height: math.unit(18, "meters")
  9890. },
  9891. {
  9892. name: "Macro+",
  9893. height: math.unit(88, "meters")
  9894. },
  9895. ]
  9896. ))
  9897. characterMakers.push(() => makeCharacter(
  9898. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  9899. {
  9900. front: {
  9901. height: math.unit(12, "feet"),
  9902. weight: math.unit(1.5, "tons"),
  9903. name: "Front",
  9904. image: {
  9905. source: "./media/characters/dydros/front.svg",
  9906. extra: 863 / 800,
  9907. bottom: 0.015
  9908. }
  9909. },
  9910. back: {
  9911. height: math.unit(12, "feet"),
  9912. weight: math.unit(1.5, "tons"),
  9913. name: "Back",
  9914. image: {
  9915. source: "./media/characters/dydros/back.svg",
  9916. extra: 900 / 843,
  9917. bottom: 0.005
  9918. }
  9919. },
  9920. },
  9921. [
  9922. {
  9923. name: "Normal",
  9924. height: math.unit(12, "feet"),
  9925. default: true
  9926. },
  9927. ]
  9928. ))
  9929. characterMakers.push(() => makeCharacter(
  9930. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  9931. {
  9932. front: {
  9933. height: math.unit(6, "feet"),
  9934. weight: math.unit(100, "kg"),
  9935. name: "Front",
  9936. image: {
  9937. source: "./media/characters/riggi/front.svg",
  9938. extra: 5787 / 5303
  9939. }
  9940. },
  9941. hyper: {
  9942. height: math.unit(6 * 5 / 3, "feet"),
  9943. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  9944. name: "Hyper",
  9945. image: {
  9946. source: "./media/characters/riggi/hyper.svg",
  9947. extra: 3595 / 3485
  9948. }
  9949. },
  9950. },
  9951. [
  9952. {
  9953. name: "Small Macro",
  9954. height: math.unit(50, "feet")
  9955. },
  9956. {
  9957. name: "Default",
  9958. height: math.unit(200, "feet"),
  9959. default: true
  9960. },
  9961. {
  9962. name: "Loom",
  9963. height: math.unit(10000, "feet")
  9964. },
  9965. {
  9966. name: "Cruising Altitude",
  9967. height: math.unit(30000, "feet")
  9968. },
  9969. {
  9970. name: "Megamacro",
  9971. height: math.unit(100, "miles")
  9972. },
  9973. {
  9974. name: "Continent Sized",
  9975. height: math.unit(2800, "miles")
  9976. },
  9977. {
  9978. name: "Earth Sized",
  9979. height: math.unit(8000, "miles")
  9980. },
  9981. ]
  9982. ))
  9983. characterMakers.push(() => makeCharacter(
  9984. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  9985. {
  9986. front: {
  9987. height: math.unit(6, "feet"),
  9988. weight: math.unit(250, "lb"),
  9989. name: "Front",
  9990. image: {
  9991. source: "./media/characters/alexi/front.svg",
  9992. extra: 3483 / 3291,
  9993. bottom: 0.04
  9994. }
  9995. },
  9996. back: {
  9997. height: math.unit(6, "feet"),
  9998. weight: math.unit(250, "lb"),
  9999. name: "Back",
  10000. image: {
  10001. source: "./media/characters/alexi/back.svg",
  10002. extra: 3533 / 3356,
  10003. bottom: 0.021
  10004. }
  10005. },
  10006. frontTransforming: {
  10007. height: math.unit(8.58, "feet"),
  10008. weight: math.unit(1300, "lb"),
  10009. name: "Transforming",
  10010. image: {
  10011. source: "./media/characters/alexi/front-transforming.svg",
  10012. extra: 437 / 409,
  10013. bottom: 19 / 458.66
  10014. }
  10015. },
  10016. frontTransformed: {
  10017. height: math.unit(12.5, "feet"),
  10018. weight: math.unit(4000, "lb"),
  10019. name: "Transformed",
  10020. image: {
  10021. source: "./media/characters/alexi/front-transformed.svg",
  10022. extra: 639 / 614,
  10023. bottom: 30.55 / 671
  10024. }
  10025. },
  10026. },
  10027. [
  10028. {
  10029. name: "Normal",
  10030. height: math.unit(3, "meters"),
  10031. default: true
  10032. },
  10033. {
  10034. name: "Minimacro",
  10035. height: math.unit(30, "meters")
  10036. },
  10037. {
  10038. name: "Macro",
  10039. height: math.unit(500, "meters")
  10040. },
  10041. {
  10042. name: "Megamacro",
  10043. height: math.unit(9000, "km")
  10044. },
  10045. {
  10046. name: "Teramacro",
  10047. height: math.unit(384000, "km")
  10048. },
  10049. ]
  10050. ))
  10051. characterMakers.push(() => makeCharacter(
  10052. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10053. {
  10054. front: {
  10055. height: math.unit(6, "feet"),
  10056. weight: math.unit(150, "lb"),
  10057. name: "Front",
  10058. image: {
  10059. source: "./media/characters/kayroo/front.svg",
  10060. extra: 1153 / 1038,
  10061. bottom: 0.06
  10062. }
  10063. },
  10064. foot: {
  10065. height: math.unit(6, "feet"),
  10066. weight: math.unit(150, "lb"),
  10067. name: "Foot",
  10068. image: {
  10069. source: "./media/characters/kayroo/foot.svg"
  10070. }
  10071. },
  10072. },
  10073. [
  10074. {
  10075. name: "Normal",
  10076. height: math.unit(8, "feet"),
  10077. default: true
  10078. },
  10079. {
  10080. name: "Minimacro",
  10081. height: math.unit(250, "feet")
  10082. },
  10083. {
  10084. name: "Macro",
  10085. height: math.unit(2800, "feet")
  10086. },
  10087. {
  10088. name: "Megamacro",
  10089. height: math.unit(5200, "feet")
  10090. },
  10091. {
  10092. name: "Gigamacro",
  10093. height: math.unit(27000, "feet")
  10094. },
  10095. {
  10096. name: "Omega",
  10097. height: math.unit(45000, "feet")
  10098. },
  10099. ]
  10100. ))
  10101. characterMakers.push(() => makeCharacter(
  10102. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10103. {
  10104. front: {
  10105. height: math.unit(18, "feet"),
  10106. weight: math.unit(5800, "lb"),
  10107. name: "Front",
  10108. image: {
  10109. source: "./media/characters/rhys/front.svg",
  10110. extra: 3386 / 3090,
  10111. bottom: 0.07
  10112. }
  10113. },
  10114. },
  10115. [
  10116. {
  10117. name: "Normal",
  10118. height: math.unit(18, "feet"),
  10119. default: true
  10120. },
  10121. {
  10122. name: "Working Size",
  10123. height: math.unit(200, "feet")
  10124. },
  10125. {
  10126. name: "Demolition Size",
  10127. height: math.unit(2000, "feet")
  10128. },
  10129. {
  10130. name: "Maximum Licensed Size",
  10131. height: math.unit(5, "miles")
  10132. },
  10133. {
  10134. name: "Maximum Observed Size",
  10135. height: math.unit(10, "yottameters")
  10136. },
  10137. ]
  10138. ))
  10139. characterMakers.push(() => makeCharacter(
  10140. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10141. {
  10142. front: {
  10143. height: math.unit(6, "feet"),
  10144. weight: math.unit(250, "lb"),
  10145. name: "Front",
  10146. image: {
  10147. source: "./media/characters/toto/front.svg",
  10148. extra: 527 / 479,
  10149. bottom: 0.05
  10150. }
  10151. },
  10152. },
  10153. [
  10154. {
  10155. name: "Micro",
  10156. height: math.unit(3, "feet")
  10157. },
  10158. {
  10159. name: "Normal",
  10160. height: math.unit(10, "feet")
  10161. },
  10162. {
  10163. name: "Macro",
  10164. height: math.unit(150, "feet"),
  10165. default: true
  10166. },
  10167. {
  10168. name: "Megamacro",
  10169. height: math.unit(1200, "feet")
  10170. },
  10171. ]
  10172. ))
  10173. characterMakers.push(() => makeCharacter(
  10174. { name: "King", species: ["lion"], tags: ["anthro"] },
  10175. {
  10176. back: {
  10177. height: math.unit(6, "feet"),
  10178. weight: math.unit(150, "lb"),
  10179. name: "Back",
  10180. image: {
  10181. source: "./media/characters/king/back.svg"
  10182. }
  10183. },
  10184. },
  10185. [
  10186. {
  10187. name: "Micro",
  10188. height: math.unit(2, "inches")
  10189. },
  10190. {
  10191. name: "Normal",
  10192. height: math.unit(8, "feet")
  10193. },
  10194. {
  10195. name: "Macro",
  10196. height: math.unit(200, "feet"),
  10197. default: true
  10198. },
  10199. {
  10200. name: "Megamacro",
  10201. height: math.unit(50, "miles")
  10202. },
  10203. ]
  10204. ))
  10205. characterMakers.push(() => makeCharacter(
  10206. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10207. {
  10208. anthro: {
  10209. height: math.unit(6 + 5 / 12, "feet"),
  10210. weight: math.unit(280, "lb"),
  10211. name: "Anthro",
  10212. image: {
  10213. source: "./media/characters/cordite/anthro.svg",
  10214. extra: 1986 / 1905,
  10215. bottom: 0.025
  10216. }
  10217. },
  10218. feral: {
  10219. height: math.unit(2, "feet"),
  10220. weight: math.unit(90, "lb"),
  10221. name: "Feral",
  10222. image: {
  10223. source: "./media/characters/cordite/feral.svg",
  10224. extra: 1260 / 755,
  10225. bottom: 0.05
  10226. }
  10227. },
  10228. },
  10229. [
  10230. {
  10231. name: "Normal",
  10232. height: math.unit(6 + 5 / 12, "feet"),
  10233. default: true
  10234. },
  10235. ]
  10236. ))
  10237. characterMakers.push(() => makeCharacter(
  10238. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10239. {
  10240. front: {
  10241. height: math.unit(6, "feet"),
  10242. weight: math.unit(150, "lb"),
  10243. name: "Front",
  10244. image: {
  10245. source: "./media/characters/pianostrong/front.svg",
  10246. extra: 6577 / 6254,
  10247. bottom: 0.02
  10248. }
  10249. },
  10250. side: {
  10251. height: math.unit(6, "feet"),
  10252. weight: math.unit(150, "lb"),
  10253. name: "Side",
  10254. image: {
  10255. source: "./media/characters/pianostrong/side.svg",
  10256. extra: 6106 / 5730
  10257. }
  10258. },
  10259. back: {
  10260. height: math.unit(6, "feet"),
  10261. weight: math.unit(150, "lb"),
  10262. name: "Back",
  10263. image: {
  10264. source: "./media/characters/pianostrong/back.svg",
  10265. extra: 6085 / 5733,
  10266. bottom: 0.01
  10267. }
  10268. },
  10269. },
  10270. [
  10271. {
  10272. name: "Macro",
  10273. height: math.unit(100, "feet")
  10274. },
  10275. {
  10276. name: "Macro+",
  10277. height: math.unit(300, "feet"),
  10278. default: true
  10279. },
  10280. {
  10281. name: "Macro++",
  10282. height: math.unit(1000, "feet")
  10283. },
  10284. ]
  10285. ))
  10286. characterMakers.push(() => makeCharacter(
  10287. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10288. {
  10289. front: {
  10290. height: math.unit(6, "feet"),
  10291. weight: math.unit(150, "lb"),
  10292. name: "Front",
  10293. image: {
  10294. source: "./media/characters/kona/front.svg",
  10295. extra: 2960 / 2629,
  10296. bottom: 0.005
  10297. }
  10298. },
  10299. },
  10300. [
  10301. {
  10302. name: "Normal",
  10303. height: math.unit(11 + 8 / 12, "feet")
  10304. },
  10305. {
  10306. name: "Macro",
  10307. height: math.unit(850, "feet"),
  10308. default: true
  10309. },
  10310. {
  10311. name: "Macro+",
  10312. height: math.unit(1.5, "km"),
  10313. default: true
  10314. },
  10315. {
  10316. name: "Megamacro",
  10317. height: math.unit(80, "miles")
  10318. },
  10319. {
  10320. name: "Gigamacro",
  10321. height: math.unit(3500, "miles")
  10322. },
  10323. ]
  10324. ))
  10325. characterMakers.push(() => makeCharacter(
  10326. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10327. {
  10328. side: {
  10329. height: math.unit(1.9, "meters"),
  10330. weight: math.unit(326, "kg"),
  10331. name: "Side",
  10332. image: {
  10333. source: "./media/characters/levi/side.svg",
  10334. extra: 1704 / 1334,
  10335. bottom: 0.02
  10336. }
  10337. },
  10338. },
  10339. [
  10340. {
  10341. name: "Normal",
  10342. height: math.unit(1.9, "meters"),
  10343. default: true
  10344. },
  10345. {
  10346. name: "Macro",
  10347. height: math.unit(20, "meters")
  10348. },
  10349. {
  10350. name: "Macro+",
  10351. height: math.unit(200, "meters")
  10352. },
  10353. {
  10354. name: "Megamacro",
  10355. height: math.unit(2, "km")
  10356. },
  10357. {
  10358. name: "Megamacro+",
  10359. height: math.unit(20, "km")
  10360. },
  10361. {
  10362. name: "Gigamacro",
  10363. height: math.unit(2500, "km")
  10364. },
  10365. {
  10366. name: "Gigamacro+",
  10367. height: math.unit(120000, "km")
  10368. },
  10369. {
  10370. name: "Teramacro",
  10371. height: math.unit(7.77e6, "km")
  10372. },
  10373. ]
  10374. ))
  10375. characterMakers.push(() => makeCharacter(
  10376. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10377. {
  10378. front: {
  10379. height: math.unit(6 + 4 / 12, "feet"),
  10380. weight: math.unit(188, "lb"),
  10381. name: "Front",
  10382. image: {
  10383. source: "./media/characters/bmc/front.svg",
  10384. extra: 1067 / 1022,
  10385. bottom: 0.047
  10386. }
  10387. },
  10388. },
  10389. [
  10390. {
  10391. name: "Human-sized",
  10392. height: math.unit(6 + 4 / 12, "feet")
  10393. },
  10394. {
  10395. name: "Small",
  10396. height: math.unit(250, "feet")
  10397. },
  10398. {
  10399. name: "Normal",
  10400. height: math.unit(1250, "feet"),
  10401. default: true
  10402. },
  10403. {
  10404. name: "Good Day",
  10405. height: math.unit(88, "miles")
  10406. },
  10407. {
  10408. name: "Largest Measured Size",
  10409. height: math.unit(11.2e6, "lightyears")
  10410. },
  10411. ]
  10412. ))
  10413. characterMakers.push(() => makeCharacter(
  10414. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10415. {
  10416. front: {
  10417. height: math.unit(20, "feet"),
  10418. weight: math.unit(2016, "kg"),
  10419. name: "Front",
  10420. image: {
  10421. source: "./media/characters/sven-the-kaiju/front.svg",
  10422. extra: 1479 / 1449,
  10423. bottom: 0.05
  10424. }
  10425. },
  10426. },
  10427. [
  10428. {
  10429. name: "Fairy",
  10430. height: math.unit(6, "inches")
  10431. },
  10432. {
  10433. name: "Normal",
  10434. height: math.unit(20, "feet"),
  10435. default: true
  10436. },
  10437. {
  10438. name: "Rampage",
  10439. height: math.unit(200, "feet")
  10440. },
  10441. {
  10442. name: "Archfey Forest Guardian",
  10443. height: math.unit(1, "mile")
  10444. },
  10445. ]
  10446. ))
  10447. characterMakers.push(() => makeCharacter(
  10448. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10449. {
  10450. front: {
  10451. height: math.unit(4, "meters"),
  10452. weight: math.unit(2, "tons"),
  10453. name: "Front",
  10454. image: {
  10455. source: "./media/characters/marik/front.svg",
  10456. extra: 1057 / 1003,
  10457. bottom: 0.08
  10458. }
  10459. },
  10460. },
  10461. [
  10462. {
  10463. name: "Normal",
  10464. height: math.unit(4, "meters"),
  10465. default: true
  10466. },
  10467. {
  10468. name: "Macro",
  10469. height: math.unit(20, "meters")
  10470. },
  10471. {
  10472. name: "Megamacro",
  10473. height: math.unit(50, "km")
  10474. },
  10475. {
  10476. name: "Gigamacro",
  10477. height: math.unit(100, "km")
  10478. },
  10479. {
  10480. name: "Alpha Macro",
  10481. height: math.unit(7.88e7, "yottameters")
  10482. },
  10483. ]
  10484. ))
  10485. characterMakers.push(() => makeCharacter(
  10486. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10487. {
  10488. front: {
  10489. height: math.unit(6, "feet"),
  10490. weight: math.unit(110, "lb"),
  10491. name: "Front",
  10492. image: {
  10493. source: "./media/characters/mel/front.svg",
  10494. extra: 736 / 617,
  10495. bottom: 0.017
  10496. }
  10497. },
  10498. },
  10499. [
  10500. {
  10501. name: "Pico",
  10502. height: math.unit(3, "pm")
  10503. },
  10504. {
  10505. name: "Nano",
  10506. height: math.unit(3, "nm")
  10507. },
  10508. {
  10509. name: "Micro",
  10510. height: math.unit(0.3, "mm"),
  10511. default: true
  10512. },
  10513. {
  10514. name: "Micro+",
  10515. height: math.unit(3, "mm")
  10516. },
  10517. {
  10518. name: "Normal",
  10519. height: math.unit(5 + 10.5 / 12, "feet")
  10520. },
  10521. ]
  10522. ))
  10523. characterMakers.push(() => makeCharacter(
  10524. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10525. {
  10526. kaiju: {
  10527. height: math.unit(1.75, "meters"),
  10528. weight: math.unit(55, "kg"),
  10529. name: "Kaiju",
  10530. image: {
  10531. source: "./media/characters/lykonous/kaiju.svg",
  10532. extra: 1055 / 946,
  10533. bottom: 0.135
  10534. }
  10535. },
  10536. },
  10537. [
  10538. {
  10539. name: "Normal",
  10540. height: math.unit(2.5, "meters"),
  10541. default: true
  10542. },
  10543. {
  10544. name: "Kaiju Dragon",
  10545. height: math.unit(60, "meters")
  10546. },
  10547. {
  10548. name: "Mega Kaiju",
  10549. height: math.unit(120, "km")
  10550. },
  10551. {
  10552. name: "Giga Kaiju",
  10553. height: math.unit(200, "megameters")
  10554. },
  10555. {
  10556. name: "Terra Kaiju",
  10557. height: math.unit(400, "gigameters")
  10558. },
  10559. {
  10560. name: "Kaiju Dragon God",
  10561. height: math.unit(13000, "exaparsecs")
  10562. },
  10563. ]
  10564. ))
  10565. characterMakers.push(() => makeCharacter(
  10566. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10567. {
  10568. front: {
  10569. height: math.unit(6, "feet"),
  10570. weight: math.unit(150, "lb"),
  10571. name: "Front",
  10572. image: {
  10573. source: "./media/characters/blü/front.svg",
  10574. extra: 1883 / 1564,
  10575. bottom: 0.031
  10576. }
  10577. },
  10578. },
  10579. [
  10580. {
  10581. name: "Normal",
  10582. height: math.unit(13, "feet"),
  10583. default: true
  10584. },
  10585. {
  10586. name: "Big Boi",
  10587. height: math.unit(150, "meters")
  10588. },
  10589. {
  10590. name: "Mini Stomper",
  10591. height: math.unit(300, "meters")
  10592. },
  10593. {
  10594. name: "Macro",
  10595. height: math.unit(1000, "meters")
  10596. },
  10597. {
  10598. name: "Megamacro",
  10599. height: math.unit(11000, "meters")
  10600. },
  10601. {
  10602. name: "Gigamacro",
  10603. height: math.unit(11000, "km")
  10604. },
  10605. {
  10606. name: "Teramacro",
  10607. height: math.unit(420000, "km")
  10608. },
  10609. {
  10610. name: "Examacro",
  10611. height: math.unit(120, "parsecs")
  10612. },
  10613. {
  10614. name: "God Tho",
  10615. height: math.unit(98000000000, "parsecs")
  10616. },
  10617. ]
  10618. ))
  10619. characterMakers.push(() => makeCharacter(
  10620. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10621. {
  10622. taurFront: {
  10623. height: math.unit(6, "feet"),
  10624. weight: math.unit(200, "lb"),
  10625. name: "Taur (Front)",
  10626. image: {
  10627. source: "./media/characters/scales/taur-front.svg",
  10628. extra: 1,
  10629. bottom: 0.05
  10630. }
  10631. },
  10632. taurBack: {
  10633. height: math.unit(6, "feet"),
  10634. weight: math.unit(200, "lb"),
  10635. name: "Taur (Back)",
  10636. image: {
  10637. source: "./media/characters/scales/taur-back.svg",
  10638. extra: 1,
  10639. bottom: 0.08
  10640. }
  10641. },
  10642. anthro: {
  10643. height: math.unit(6 * 7 / 12, "feet"),
  10644. weight: math.unit(100, "lb"),
  10645. name: "Anthro",
  10646. image: {
  10647. source: "./media/characters/scales/anthro.svg",
  10648. extra: 1,
  10649. bottom: 0.06
  10650. }
  10651. },
  10652. },
  10653. [
  10654. {
  10655. name: "Normal",
  10656. height: math.unit(12, "feet"),
  10657. default: true
  10658. },
  10659. ]
  10660. ))
  10661. characterMakers.push(() => makeCharacter(
  10662. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10663. {
  10664. front: {
  10665. height: math.unit(6, "feet"),
  10666. weight: math.unit(150, "lb"),
  10667. name: "Front",
  10668. image: {
  10669. source: "./media/characters/koragos/front.svg",
  10670. extra: 841 / 794,
  10671. bottom: 0.035
  10672. }
  10673. },
  10674. back: {
  10675. height: math.unit(6, "feet"),
  10676. weight: math.unit(150, "lb"),
  10677. name: "Back",
  10678. image: {
  10679. source: "./media/characters/koragos/back.svg",
  10680. extra: 841 / 810,
  10681. bottom: 0.022
  10682. }
  10683. },
  10684. },
  10685. [
  10686. {
  10687. name: "Normal",
  10688. height: math.unit(6 + 11 / 12, "feet"),
  10689. default: true
  10690. },
  10691. {
  10692. name: "Macro",
  10693. height: math.unit(490, "feet")
  10694. },
  10695. {
  10696. name: "Megamacro",
  10697. height: math.unit(10, "miles")
  10698. },
  10699. {
  10700. name: "Gigamacro",
  10701. height: math.unit(50, "miles")
  10702. },
  10703. ]
  10704. ))
  10705. characterMakers.push(() => makeCharacter(
  10706. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10707. {
  10708. front: {
  10709. height: math.unit(6, "feet"),
  10710. weight: math.unit(250, "lb"),
  10711. name: "Front",
  10712. image: {
  10713. source: "./media/characters/xylrem/front.svg",
  10714. extra: 3323 / 3050,
  10715. bottom: 0.065
  10716. }
  10717. },
  10718. },
  10719. [
  10720. {
  10721. name: "Micro",
  10722. height: math.unit(4, "feet")
  10723. },
  10724. {
  10725. name: "Normal",
  10726. height: math.unit(16, "feet"),
  10727. default: true
  10728. },
  10729. {
  10730. name: "Macro",
  10731. height: math.unit(2720, "feet")
  10732. },
  10733. {
  10734. name: "Megamacro",
  10735. height: math.unit(25000, "miles")
  10736. },
  10737. ]
  10738. ))
  10739. characterMakers.push(() => makeCharacter(
  10740. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10741. {
  10742. front: {
  10743. height: math.unit(8, "feet"),
  10744. weight: math.unit(250, "kg"),
  10745. name: "Front",
  10746. image: {
  10747. source: "./media/characters/ikideru/front.svg",
  10748. extra: 930 / 870,
  10749. bottom: 0.087
  10750. }
  10751. },
  10752. back: {
  10753. height: math.unit(8, "feet"),
  10754. weight: math.unit(250, "kg"),
  10755. name: "Back",
  10756. image: {
  10757. source: "./media/characters/ikideru/back.svg",
  10758. extra: 919 / 852,
  10759. bottom: 0.055
  10760. }
  10761. },
  10762. },
  10763. [
  10764. {
  10765. name: "Rare",
  10766. height: math.unit(8, "feet"),
  10767. default: true
  10768. },
  10769. {
  10770. name: "Playful Loom",
  10771. height: math.unit(80, "feet")
  10772. },
  10773. {
  10774. name: "City Leaner",
  10775. height: math.unit(230, "feet")
  10776. },
  10777. {
  10778. name: "Megamacro",
  10779. height: math.unit(2500, "feet")
  10780. },
  10781. {
  10782. name: "Gigamacro",
  10783. height: math.unit(26400, "feet")
  10784. },
  10785. {
  10786. name: "Tectonic Shifter",
  10787. height: math.unit(1.7, "megameters")
  10788. },
  10789. {
  10790. name: "Planet Carer",
  10791. height: math.unit(21, "megameters")
  10792. },
  10793. {
  10794. name: "God",
  10795. height: math.unit(11157.22, "parsecs")
  10796. },
  10797. ]
  10798. ))
  10799. characterMakers.push(() => makeCharacter(
  10800. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  10801. {
  10802. front: {
  10803. height: math.unit(6, "feet"),
  10804. weight: math.unit(120, "lb"),
  10805. name: "Front",
  10806. image: {
  10807. source: "./media/characters/neo/front.svg"
  10808. }
  10809. },
  10810. },
  10811. [
  10812. {
  10813. name: "Micro",
  10814. height: math.unit(2, "inches"),
  10815. default: true
  10816. },
  10817. {
  10818. name: "Human Size",
  10819. height: math.unit(5 + 8 / 12, "feet")
  10820. },
  10821. ]
  10822. ))
  10823. characterMakers.push(() => makeCharacter(
  10824. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  10825. {
  10826. front: {
  10827. height: math.unit(13 + 10 / 12, "feet"),
  10828. weight: math.unit(5320, "lb"),
  10829. name: "Front",
  10830. image: {
  10831. source: "./media/characters/chauncey-chantz/front.svg",
  10832. extra: 1587 / 1435,
  10833. bottom: 0.02
  10834. }
  10835. },
  10836. },
  10837. [
  10838. {
  10839. name: "Normal",
  10840. height: math.unit(13 + 10 / 12, "feet"),
  10841. default: true
  10842. },
  10843. {
  10844. name: "Macro",
  10845. height: math.unit(45, "feet")
  10846. },
  10847. {
  10848. name: "Megamacro",
  10849. height: math.unit(250, "miles")
  10850. },
  10851. {
  10852. name: "Planetary",
  10853. height: math.unit(10000, "miles")
  10854. },
  10855. {
  10856. name: "Galactic",
  10857. height: math.unit(40000, "parsecs")
  10858. },
  10859. {
  10860. name: "Universal",
  10861. height: math.unit(1, "yottameter")
  10862. },
  10863. ]
  10864. ))
  10865. characterMakers.push(() => makeCharacter(
  10866. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  10867. {
  10868. front: {
  10869. height: math.unit(6, "feet"),
  10870. weight: math.unit(150, "lb"),
  10871. name: "Front",
  10872. image: {
  10873. source: "./media/characters/epifox/front.svg",
  10874. extra: 1,
  10875. bottom: 0.075
  10876. }
  10877. },
  10878. },
  10879. [
  10880. {
  10881. name: "Micro",
  10882. height: math.unit(6, "inches")
  10883. },
  10884. {
  10885. name: "Normal",
  10886. height: math.unit(12, "feet"),
  10887. default: true
  10888. },
  10889. {
  10890. name: "Macro",
  10891. height: math.unit(3810, "feet")
  10892. },
  10893. {
  10894. name: "Megamacro",
  10895. height: math.unit(500, "miles")
  10896. },
  10897. ]
  10898. ))
  10899. characterMakers.push(() => makeCharacter(
  10900. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  10901. {
  10902. front: {
  10903. height: math.unit(1.8796, "m"),
  10904. weight: math.unit(230, "lb"),
  10905. name: "Front",
  10906. image: {
  10907. source: "./media/characters/colin-t/front.svg",
  10908. extra: 1272 / 1193,
  10909. bottom: 0.07
  10910. }
  10911. },
  10912. },
  10913. [
  10914. {
  10915. name: "Micro",
  10916. height: math.unit(0.571, "meters")
  10917. },
  10918. {
  10919. name: "Normal",
  10920. height: math.unit(1.8796, "meters"),
  10921. default: true
  10922. },
  10923. {
  10924. name: "Tall",
  10925. height: math.unit(4, "meters")
  10926. },
  10927. {
  10928. name: "Macro",
  10929. height: math.unit(67.241, "meters")
  10930. },
  10931. {
  10932. name: "Megamacro",
  10933. height: math.unit(371.856, "meters")
  10934. },
  10935. {
  10936. name: "Planetary",
  10937. height: math.unit(12631.5689, "km")
  10938. },
  10939. ]
  10940. ))
  10941. characterMakers.push(() => makeCharacter(
  10942. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  10943. {
  10944. front: {
  10945. height: math.unit(1.85, "meters"),
  10946. weight: math.unit(80, "kg"),
  10947. name: "Front",
  10948. image: {
  10949. source: "./media/characters/matvei/front.svg",
  10950. extra: 614 / 594,
  10951. bottom: 0.01
  10952. }
  10953. },
  10954. },
  10955. [
  10956. {
  10957. name: "Normal",
  10958. height: math.unit(1.85, "meters"),
  10959. default: true
  10960. },
  10961. ]
  10962. ))
  10963. characterMakers.push(() => makeCharacter(
  10964. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  10965. {
  10966. front: {
  10967. height: math.unit(5 + 9 / 12, "feet"),
  10968. weight: math.unit(70, "lb"),
  10969. name: "Front",
  10970. image: {
  10971. source: "./media/characters/quincy/front.svg",
  10972. extra: 3041 / 2751
  10973. }
  10974. },
  10975. back: {
  10976. height: math.unit(5 + 9 / 12, "feet"),
  10977. weight: math.unit(70, "lb"),
  10978. name: "Back",
  10979. image: {
  10980. source: "./media/characters/quincy/back.svg",
  10981. extra: 3041 / 2751
  10982. }
  10983. },
  10984. flying: {
  10985. height: math.unit(5 + 4 / 12, "feet"),
  10986. weight: math.unit(70, "lb"),
  10987. name: "Flying",
  10988. image: {
  10989. source: "./media/characters/quincy/flying.svg",
  10990. extra: 1044 / 930
  10991. }
  10992. },
  10993. },
  10994. [
  10995. {
  10996. name: "Micro",
  10997. height: math.unit(3, "cm")
  10998. },
  10999. {
  11000. name: "Normal",
  11001. height: math.unit(5 + 9 / 12, "feet")
  11002. },
  11003. {
  11004. name: "Macro",
  11005. height: math.unit(200, "meters"),
  11006. default: true
  11007. },
  11008. {
  11009. name: "Megamacro",
  11010. height: math.unit(1000, "meters")
  11011. },
  11012. ]
  11013. ))
  11014. characterMakers.push(() => makeCharacter(
  11015. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11016. {
  11017. front: {
  11018. height: math.unit(4 + 7 / 12, "feet"),
  11019. weight: math.unit(150, "lb"),
  11020. name: "Front",
  11021. image: {
  11022. source: "./media/characters/vanrel/front.svg",
  11023. extra: 1,
  11024. bottom: 0.02
  11025. }
  11026. },
  11027. elemental: {
  11028. height: math.unit(3, "feet"),
  11029. weight: math.unit(150, "lb"),
  11030. name: "Elemental",
  11031. image: {
  11032. source: "./media/characters/vanrel/elemental.svg",
  11033. extra: 192.3 / 162.8,
  11034. bottom: 1.79 / 194.17
  11035. }
  11036. },
  11037. side: {
  11038. height: math.unit(4 + 7 / 12, "feet"),
  11039. weight: math.unit(150, "lb"),
  11040. name: "Side",
  11041. image: {
  11042. source: "./media/characters/vanrel/side.svg",
  11043. extra: 1,
  11044. bottom: 0.025
  11045. }
  11046. },
  11047. tome: {
  11048. height: math.unit(1.35, "feet"),
  11049. weight: math.unit(10, "lb"),
  11050. name: "Vanrel's Tome",
  11051. rename: true,
  11052. image: {
  11053. source: "./media/characters/vanrel/tome.svg"
  11054. }
  11055. },
  11056. beans: {
  11057. height: math.unit(0.89, "feet"),
  11058. name: "Beans",
  11059. image: {
  11060. source: "./media/characters/vanrel/beans.svg"
  11061. }
  11062. },
  11063. },
  11064. [
  11065. {
  11066. name: "Normal",
  11067. height: math.unit(4 + 7 / 12, "feet"),
  11068. default: true
  11069. },
  11070. ]
  11071. ))
  11072. characterMakers.push(() => makeCharacter(
  11073. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11074. {
  11075. front: {
  11076. height: math.unit(7 + 5 / 12, "feet"),
  11077. weight: math.unit(150, "lb"),
  11078. name: "Front",
  11079. image: {
  11080. source: "./media/characters/kuiper-vanrel/front.svg",
  11081. extra: 1118 / 1068,
  11082. bottom: 0.09
  11083. }
  11084. },
  11085. foot: {
  11086. height: math.unit(0.55, "meters"),
  11087. name: "Foot",
  11088. image: {
  11089. source: "./media/characters/kuiper-vanrel/foot.svg",
  11090. }
  11091. },
  11092. battle: {
  11093. height: math.unit(6.824, "feet"),
  11094. weight: math.unit(150, "lb"),
  11095. name: "Battle",
  11096. image: {
  11097. source: "./media/characters/kuiper-vanrel/battle.svg",
  11098. extra: 1466 / 1327,
  11099. bottom: 29 / 1492.5
  11100. }
  11101. },
  11102. },
  11103. [
  11104. {
  11105. name: "Normal",
  11106. height: math.unit(7 + 5 / 12, "feet"),
  11107. default: true
  11108. },
  11109. ]
  11110. ))
  11111. characterMakers.push(() => makeCharacter(
  11112. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11113. {
  11114. front: {
  11115. height: math.unit(8 + 5 / 12, "feet"),
  11116. weight: math.unit(150, "lb"),
  11117. name: "Front",
  11118. image: {
  11119. source: "./media/characters/keset-vanrel/front.svg",
  11120. extra: 1150 / 1084,
  11121. bottom: 0.05
  11122. }
  11123. },
  11124. hand: {
  11125. height: math.unit(0.6, "meters"),
  11126. name: "Hand",
  11127. image: {
  11128. source: "./media/characters/keset-vanrel/hand.svg"
  11129. }
  11130. },
  11131. foot: {
  11132. height: math.unit(0.94978, "meters"),
  11133. name: "Foot",
  11134. image: {
  11135. source: "./media/characters/keset-vanrel/foot.svg"
  11136. }
  11137. },
  11138. battle: {
  11139. height: math.unit(7.408, "feet"),
  11140. weight: math.unit(150, "lb"),
  11141. name: "Battle",
  11142. image: {
  11143. source: "./media/characters/keset-vanrel/battle.svg",
  11144. extra: 1890 / 1386,
  11145. bottom: 73.28 / 1970
  11146. }
  11147. },
  11148. },
  11149. [
  11150. {
  11151. name: "Normal",
  11152. height: math.unit(8 + 5 / 12, "feet"),
  11153. default: true
  11154. },
  11155. ]
  11156. ))
  11157. characterMakers.push(() => makeCharacter(
  11158. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11159. {
  11160. front: {
  11161. height: math.unit(6, "feet"),
  11162. weight: math.unit(150, "lb"),
  11163. name: "Front",
  11164. image: {
  11165. source: "./media/characters/neos/front.svg",
  11166. extra: 1696 / 992,
  11167. bottom: 0.14
  11168. }
  11169. },
  11170. },
  11171. [
  11172. {
  11173. name: "Normal",
  11174. height: math.unit(54, "cm"),
  11175. default: true
  11176. },
  11177. {
  11178. name: "Macro",
  11179. height: math.unit(100, "m")
  11180. },
  11181. {
  11182. name: "Megamacro",
  11183. height: math.unit(10, "km")
  11184. },
  11185. {
  11186. name: "Megamacro+",
  11187. height: math.unit(100, "km")
  11188. },
  11189. {
  11190. name: "Gigamacro",
  11191. height: math.unit(100, "Mm")
  11192. },
  11193. {
  11194. name: "Teramacro",
  11195. height: math.unit(100, "Gm")
  11196. },
  11197. {
  11198. name: "Examacro",
  11199. height: math.unit(100, "Em")
  11200. },
  11201. {
  11202. name: "Godly",
  11203. height: math.unit(10000, "Ym")
  11204. },
  11205. {
  11206. name: "Beyond Godly",
  11207. height: math.unit(25, "multiverses")
  11208. },
  11209. ]
  11210. ))
  11211. characterMakers.push(() => makeCharacter(
  11212. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11213. {
  11214. feminine: {
  11215. height: math.unit(5, "feet"),
  11216. weight: math.unit(100, "lb"),
  11217. name: "Feminine",
  11218. image: {
  11219. source: "./media/characters/sammy-mouse/feminine.svg",
  11220. extra: 2526 / 2425,
  11221. bottom: 0.123
  11222. }
  11223. },
  11224. masculine: {
  11225. height: math.unit(5, "feet"),
  11226. weight: math.unit(100, "lb"),
  11227. name: "Masculine",
  11228. image: {
  11229. source: "./media/characters/sammy-mouse/masculine.svg",
  11230. extra: 2526 / 2425,
  11231. bottom: 0.123
  11232. }
  11233. },
  11234. },
  11235. [
  11236. {
  11237. name: "Micro",
  11238. height: math.unit(5, "inches")
  11239. },
  11240. {
  11241. name: "Normal",
  11242. height: math.unit(5, "feet"),
  11243. default: true
  11244. },
  11245. {
  11246. name: "Macro",
  11247. height: math.unit(60, "feet")
  11248. },
  11249. ]
  11250. ))
  11251. characterMakers.push(() => makeCharacter(
  11252. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11253. {
  11254. front: {
  11255. height: math.unit(4, "feet"),
  11256. weight: math.unit(50, "lb"),
  11257. name: "Front",
  11258. image: {
  11259. source: "./media/characters/kole/front.svg",
  11260. extra: 1423 / 1303,
  11261. bottom: 0.025
  11262. }
  11263. },
  11264. back: {
  11265. height: math.unit(4, "feet"),
  11266. weight: math.unit(50, "lb"),
  11267. name: "Back",
  11268. image: {
  11269. source: "./media/characters/kole/back.svg",
  11270. extra: 1426 / 1280,
  11271. bottom: 0.02
  11272. }
  11273. },
  11274. },
  11275. [
  11276. {
  11277. name: "Normal",
  11278. height: math.unit(4, "feet"),
  11279. default: true
  11280. },
  11281. ]
  11282. ))
  11283. characterMakers.push(() => makeCharacter(
  11284. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11285. {
  11286. front: {
  11287. height: math.unit(2 + 6 / 12, "feet"),
  11288. weight: math.unit(20, "lb"),
  11289. name: "Front",
  11290. image: {
  11291. source: "./media/characters/rufran/front.svg",
  11292. extra: 2041 / 1839,
  11293. bottom: 0.055
  11294. }
  11295. },
  11296. back: {
  11297. height: math.unit(2 + 6 / 12, "feet"),
  11298. weight: math.unit(20, "lb"),
  11299. name: "Back",
  11300. image: {
  11301. source: "./media/characters/rufran/back.svg",
  11302. extra: 2054 / 1839,
  11303. bottom: 0.01
  11304. }
  11305. },
  11306. hand: {
  11307. height: math.unit(0.2166, "meters"),
  11308. name: "Hand",
  11309. image: {
  11310. source: "./media/characters/rufran/hand.svg"
  11311. }
  11312. },
  11313. foot: {
  11314. height: math.unit(0.185, "meters"),
  11315. name: "Foot",
  11316. image: {
  11317. source: "./media/characters/rufran/foot.svg"
  11318. }
  11319. },
  11320. },
  11321. [
  11322. {
  11323. name: "Micro",
  11324. height: math.unit(1, "inch")
  11325. },
  11326. {
  11327. name: "Normal",
  11328. height: math.unit(2 + 6 / 12, "feet"),
  11329. default: true
  11330. },
  11331. {
  11332. name: "Big",
  11333. height: math.unit(60, "feet")
  11334. },
  11335. {
  11336. name: "Macro",
  11337. height: math.unit(325, "feet")
  11338. },
  11339. ]
  11340. ))
  11341. characterMakers.push(() => makeCharacter(
  11342. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11343. {
  11344. front: {
  11345. height: math.unit(0.3, "meters"),
  11346. weight: math.unit(3.5, "kg"),
  11347. name: "Front",
  11348. image: {
  11349. source: "./media/characters/chip/front.svg",
  11350. extra: 748 / 674
  11351. }
  11352. },
  11353. },
  11354. [
  11355. {
  11356. name: "Micro",
  11357. height: math.unit(1, "inch"),
  11358. default: true
  11359. },
  11360. ]
  11361. ))
  11362. characterMakers.push(() => makeCharacter(
  11363. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11364. {
  11365. side: {
  11366. height: math.unit(2.3, "meters"),
  11367. weight: math.unit(3500, "lb"),
  11368. name: "Side",
  11369. image: {
  11370. source: "./media/characters/torvid/side.svg",
  11371. extra: 1972 / 722,
  11372. bottom: 0.035
  11373. }
  11374. },
  11375. },
  11376. [
  11377. {
  11378. name: "Normal",
  11379. height: math.unit(2.3, "meters"),
  11380. default: true
  11381. },
  11382. ]
  11383. ))
  11384. characterMakers.push(() => makeCharacter(
  11385. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11386. {
  11387. front: {
  11388. height: math.unit(2, "meters"),
  11389. weight: math.unit(150.5, "kg"),
  11390. name: "Front",
  11391. image: {
  11392. source: "./media/characters/susan/front.svg",
  11393. extra: 693 / 635,
  11394. bottom: 0.05
  11395. }
  11396. },
  11397. },
  11398. [
  11399. {
  11400. name: "Megamacro",
  11401. height: math.unit(505, "miles"),
  11402. default: true
  11403. },
  11404. ]
  11405. ))
  11406. characterMakers.push(() => makeCharacter(
  11407. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11408. {
  11409. front: {
  11410. height: math.unit(6, "feet"),
  11411. weight: math.unit(150, "lb"),
  11412. name: "Front",
  11413. image: {
  11414. source: "./media/characters/raindrops/front.svg",
  11415. extra: 2655 / 2461,
  11416. bottom: 49/2705
  11417. }
  11418. },
  11419. back: {
  11420. height: math.unit(6, "feet"),
  11421. weight: math.unit(150, "lb"),
  11422. name: "Back",
  11423. image: {
  11424. source: "./media/characters/raindrops/back.svg",
  11425. extra: 2574 / 2400,
  11426. bottom: 65/2634
  11427. }
  11428. },
  11429. },
  11430. [
  11431. {
  11432. name: "Micro",
  11433. height: math.unit(6, "inches")
  11434. },
  11435. {
  11436. name: "Normal",
  11437. height: math.unit(6 + 2 / 12, "feet")
  11438. },
  11439. {
  11440. name: "Macro",
  11441. height: math.unit(131, "feet"),
  11442. default: true
  11443. },
  11444. {
  11445. name: "Megamacro",
  11446. height: math.unit(15, "miles")
  11447. },
  11448. {
  11449. name: "Gigamacro",
  11450. height: math.unit(4000, "miles")
  11451. },
  11452. {
  11453. name: "Teramacro",
  11454. height: math.unit(315000, "miles")
  11455. },
  11456. ]
  11457. ))
  11458. characterMakers.push(() => makeCharacter(
  11459. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11460. {
  11461. front: {
  11462. height: math.unit(2.794, "meters"),
  11463. weight: math.unit(325, "kg"),
  11464. name: "Front",
  11465. image: {
  11466. source: "./media/characters/tezwa/front.svg",
  11467. extra: 2083 / 1906,
  11468. bottom: 0.031
  11469. }
  11470. },
  11471. foot: {
  11472. height: math.unit(0.687, "meters"),
  11473. name: "Foot",
  11474. image: {
  11475. source: "./media/characters/tezwa/foot.svg"
  11476. }
  11477. },
  11478. },
  11479. [
  11480. {
  11481. name: "Normal",
  11482. height: math.unit(9 + 2 / 12, "feet"),
  11483. default: true
  11484. },
  11485. ]
  11486. ))
  11487. characterMakers.push(() => makeCharacter(
  11488. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11489. {
  11490. front: {
  11491. height: math.unit(58, "feet"),
  11492. weight: math.unit(89000, "lb"),
  11493. name: "Front",
  11494. image: {
  11495. source: "./media/characters/typhus/front.svg",
  11496. extra: 816 / 800,
  11497. bottom: 0.065
  11498. }
  11499. },
  11500. },
  11501. [
  11502. {
  11503. name: "Macro",
  11504. height: math.unit(58, "feet"),
  11505. default: true
  11506. },
  11507. ]
  11508. ))
  11509. characterMakers.push(() => makeCharacter(
  11510. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11511. {
  11512. front: {
  11513. height: math.unit(12, "feet"),
  11514. weight: math.unit(6, "tonnes"),
  11515. name: "Front",
  11516. image: {
  11517. source: "./media/characters/lyra-von-wulf/front.svg",
  11518. extra: 1,
  11519. bottom: 0.10
  11520. }
  11521. },
  11522. frontMecha: {
  11523. height: math.unit(12, "feet"),
  11524. weight: math.unit(12, "tonnes"),
  11525. name: "Front (Mecha)",
  11526. image: {
  11527. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11528. extra: 1,
  11529. bottom: 0.042
  11530. }
  11531. },
  11532. maw: {
  11533. height: math.unit(2.2, "feet"),
  11534. name: "Maw",
  11535. image: {
  11536. source: "./media/characters/lyra-von-wulf/maw.svg"
  11537. }
  11538. },
  11539. },
  11540. [
  11541. {
  11542. name: "Normal",
  11543. height: math.unit(12, "feet"),
  11544. default: true
  11545. },
  11546. {
  11547. name: "Classic",
  11548. height: math.unit(50, "feet")
  11549. },
  11550. {
  11551. name: "Macro",
  11552. height: math.unit(500, "feet")
  11553. },
  11554. {
  11555. name: "Megamacro",
  11556. height: math.unit(1, "mile")
  11557. },
  11558. {
  11559. name: "Gigamacro",
  11560. height: math.unit(400, "miles")
  11561. },
  11562. {
  11563. name: "Teramacro",
  11564. height: math.unit(22000, "miles")
  11565. },
  11566. {
  11567. name: "Solarmacro",
  11568. height: math.unit(8600000, "miles")
  11569. },
  11570. {
  11571. name: "Galactic",
  11572. height: math.unit(1057000, "lightyears")
  11573. },
  11574. ]
  11575. ))
  11576. characterMakers.push(() => makeCharacter(
  11577. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11578. {
  11579. front: {
  11580. height: math.unit(6 + 10 / 12, "feet"),
  11581. weight: math.unit(150, "lb"),
  11582. name: "Front",
  11583. image: {
  11584. source: "./media/characters/dixon/front.svg",
  11585. extra: 3361 / 3209,
  11586. bottom: 0.01
  11587. }
  11588. },
  11589. },
  11590. [
  11591. {
  11592. name: "Normal",
  11593. height: math.unit(6 + 10 / 12, "feet"),
  11594. default: true
  11595. },
  11596. {
  11597. name: "Big",
  11598. height: math.unit(12, "meters")
  11599. },
  11600. {
  11601. name: "Macro",
  11602. height: math.unit(500, "meters")
  11603. },
  11604. {
  11605. name: "Megamacro",
  11606. height: math.unit(2, "km")
  11607. },
  11608. ]
  11609. ))
  11610. characterMakers.push(() => makeCharacter(
  11611. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11612. {
  11613. front: {
  11614. height: math.unit(185, "cm"),
  11615. weight: math.unit(68, "kg"),
  11616. name: "Front",
  11617. image: {
  11618. source: "./media/characters/kauko/front.svg",
  11619. extra: 1455 / 1421,
  11620. bottom: 0.03
  11621. }
  11622. },
  11623. back: {
  11624. height: math.unit(185, "cm"),
  11625. weight: math.unit(68, "kg"),
  11626. name: "Back",
  11627. image: {
  11628. source: "./media/characters/kauko/back.svg",
  11629. extra: 1455 / 1421,
  11630. bottom: 0.004
  11631. }
  11632. },
  11633. },
  11634. [
  11635. {
  11636. name: "Normal",
  11637. height: math.unit(185, "cm"),
  11638. default: true
  11639. },
  11640. ]
  11641. ))
  11642. characterMakers.push(() => makeCharacter(
  11643. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11644. {
  11645. front: {
  11646. height: math.unit(6, "feet"),
  11647. weight: math.unit(150, "kg"),
  11648. name: "Front",
  11649. image: {
  11650. source: "./media/characters/varg/front.svg",
  11651. extra: 1108 / 1018,
  11652. bottom: 0.0375
  11653. }
  11654. },
  11655. },
  11656. [
  11657. {
  11658. name: "Normal",
  11659. height: math.unit(5, "meters")
  11660. },
  11661. {
  11662. name: "Macro",
  11663. height: math.unit(200, "meters")
  11664. },
  11665. {
  11666. name: "Megamacro",
  11667. height: math.unit(20, "kilometers")
  11668. },
  11669. {
  11670. name: "True Size",
  11671. height: math.unit(211, "km"),
  11672. default: true
  11673. },
  11674. {
  11675. name: "Gigamacro",
  11676. height: math.unit(1000, "km")
  11677. },
  11678. {
  11679. name: "Gigamacro+",
  11680. height: math.unit(8000, "km")
  11681. },
  11682. {
  11683. name: "Teramacro",
  11684. height: math.unit(1000000, "km")
  11685. },
  11686. ]
  11687. ))
  11688. characterMakers.push(() => makeCharacter(
  11689. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11690. {
  11691. front: {
  11692. height: math.unit(7 + 7 / 12, "feet"),
  11693. weight: math.unit(267, "lb"),
  11694. name: "Front",
  11695. image: {
  11696. source: "./media/characters/dayza/front.svg",
  11697. extra: 1262 / 1200,
  11698. bottom: 0.035
  11699. }
  11700. },
  11701. side: {
  11702. height: math.unit(7 + 7 / 12, "feet"),
  11703. weight: math.unit(267, "lb"),
  11704. name: "Side",
  11705. image: {
  11706. source: "./media/characters/dayza/side.svg",
  11707. extra: 1295 / 1245,
  11708. bottom: 0.05
  11709. }
  11710. },
  11711. back: {
  11712. height: math.unit(7 + 7 / 12, "feet"),
  11713. weight: math.unit(267, "lb"),
  11714. name: "Back",
  11715. image: {
  11716. source: "./media/characters/dayza/back.svg",
  11717. extra: 1241 / 1170
  11718. }
  11719. },
  11720. },
  11721. [
  11722. {
  11723. name: "Normal",
  11724. height: math.unit(7 + 7 / 12, "feet"),
  11725. default: true
  11726. },
  11727. {
  11728. name: "Macro",
  11729. height: math.unit(155, "feet")
  11730. },
  11731. ]
  11732. ))
  11733. characterMakers.push(() => makeCharacter(
  11734. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11735. {
  11736. front: {
  11737. height: math.unit(6 + 5 / 12, "feet"),
  11738. weight: math.unit(160, "lb"),
  11739. name: "Front",
  11740. image: {
  11741. source: "./media/characters/xanthos/front.svg",
  11742. extra: 1,
  11743. bottom: 0.04
  11744. }
  11745. },
  11746. back: {
  11747. height: math.unit(6 + 5 / 12, "feet"),
  11748. weight: math.unit(160, "lb"),
  11749. name: "Back",
  11750. image: {
  11751. source: "./media/characters/xanthos/back.svg",
  11752. extra: 1,
  11753. bottom: 0.03
  11754. }
  11755. },
  11756. hand: {
  11757. height: math.unit(0.928, "feet"),
  11758. name: "Hand",
  11759. image: {
  11760. source: "./media/characters/xanthos/hand.svg"
  11761. }
  11762. },
  11763. foot: {
  11764. height: math.unit(1.286, "feet"),
  11765. name: "Foot",
  11766. image: {
  11767. source: "./media/characters/xanthos/foot.svg"
  11768. }
  11769. },
  11770. },
  11771. [
  11772. {
  11773. name: "Normal",
  11774. height: math.unit(6 + 5 / 12, "feet"),
  11775. default: true
  11776. },
  11777. {
  11778. name: "Normal+",
  11779. height: math.unit(6, "meters")
  11780. },
  11781. {
  11782. name: "Macro",
  11783. height: math.unit(40, "feet")
  11784. },
  11785. {
  11786. name: "Macro+",
  11787. height: math.unit(200, "meters")
  11788. },
  11789. {
  11790. name: "Megamacro",
  11791. height: math.unit(20, "km")
  11792. },
  11793. {
  11794. name: "Megamacro+",
  11795. height: math.unit(100, "km")
  11796. },
  11797. ]
  11798. ))
  11799. characterMakers.push(() => makeCharacter(
  11800. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  11801. {
  11802. front: {
  11803. height: math.unit(6 + 3 / 12, "feet"),
  11804. weight: math.unit(215, "lb"),
  11805. name: "Front",
  11806. image: {
  11807. source: "./media/characters/grynn/front.svg",
  11808. extra: 4627 / 4209,
  11809. bottom: 0.047
  11810. }
  11811. },
  11812. },
  11813. [
  11814. {
  11815. name: "Micro",
  11816. height: math.unit(6, "inches")
  11817. },
  11818. {
  11819. name: "Normal",
  11820. height: math.unit(6 + 3 / 12, "feet"),
  11821. default: true
  11822. },
  11823. {
  11824. name: "Big",
  11825. height: math.unit(104, "feet")
  11826. },
  11827. {
  11828. name: "Macro",
  11829. height: math.unit(944, "feet")
  11830. },
  11831. {
  11832. name: "Macro+",
  11833. height: math.unit(9480, "feet")
  11834. },
  11835. {
  11836. name: "Megamacro",
  11837. height: math.unit(78752, "feet")
  11838. },
  11839. {
  11840. name: "Megamacro+",
  11841. height: math.unit(630128, "feet")
  11842. },
  11843. {
  11844. name: "Megamacro++",
  11845. height: math.unit(3150695, "feet")
  11846. },
  11847. ]
  11848. ))
  11849. characterMakers.push(() => makeCharacter(
  11850. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  11851. {
  11852. front: {
  11853. height: math.unit(7 + 5 / 12, "feet"),
  11854. weight: math.unit(450, "lb"),
  11855. name: "Front",
  11856. image: {
  11857. source: "./media/characters/mocha-aura/front.svg",
  11858. extra: 1907 / 1817,
  11859. bottom: 0.04
  11860. }
  11861. },
  11862. back: {
  11863. height: math.unit(7 + 5 / 12, "feet"),
  11864. weight: math.unit(450, "lb"),
  11865. name: "Back",
  11866. image: {
  11867. source: "./media/characters/mocha-aura/back.svg",
  11868. extra: 1900 / 1825,
  11869. bottom: 0.045
  11870. }
  11871. },
  11872. },
  11873. [
  11874. {
  11875. name: "Nano",
  11876. height: math.unit(1, "nm")
  11877. },
  11878. {
  11879. name: "Megamicro",
  11880. height: math.unit(1, "mm")
  11881. },
  11882. {
  11883. name: "Micro",
  11884. height: math.unit(3, "inches")
  11885. },
  11886. {
  11887. name: "Normal",
  11888. height: math.unit(7 + 5 / 12, "feet"),
  11889. default: true
  11890. },
  11891. {
  11892. name: "Macro",
  11893. height: math.unit(30, "feet")
  11894. },
  11895. {
  11896. name: "Megamacro",
  11897. height: math.unit(3500, "feet")
  11898. },
  11899. {
  11900. name: "Teramacro",
  11901. height: math.unit(500000, "miles")
  11902. },
  11903. {
  11904. name: "Petamacro",
  11905. height: math.unit(50000000000000000, "parsecs")
  11906. },
  11907. ]
  11908. ))
  11909. characterMakers.push(() => makeCharacter(
  11910. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  11911. {
  11912. front: {
  11913. height: math.unit(6, "feet"),
  11914. weight: math.unit(150, "lb"),
  11915. name: "Front",
  11916. image: {
  11917. source: "./media/characters/ilisha-devya/front.svg",
  11918. extra: 1,
  11919. bottom: 0.175
  11920. }
  11921. },
  11922. back: {
  11923. height: math.unit(6, "feet"),
  11924. weight: math.unit(150, "lb"),
  11925. name: "Back",
  11926. image: {
  11927. source: "./media/characters/ilisha-devya/back.svg",
  11928. extra: 1,
  11929. bottom: 0.015
  11930. }
  11931. },
  11932. },
  11933. [
  11934. {
  11935. name: "Macro",
  11936. height: math.unit(500, "feet"),
  11937. default: true
  11938. },
  11939. {
  11940. name: "Megamacro",
  11941. height: math.unit(10, "miles")
  11942. },
  11943. {
  11944. name: "Gigamacro",
  11945. height: math.unit(100000, "miles")
  11946. },
  11947. {
  11948. name: "Examacro",
  11949. height: math.unit(1e9, "lightyears")
  11950. },
  11951. {
  11952. name: "Omniversal",
  11953. height: math.unit(1e33, "lightyears")
  11954. },
  11955. {
  11956. name: "Beyond Infinite",
  11957. height: math.unit(1e100, "lightyears")
  11958. },
  11959. ]
  11960. ))
  11961. characterMakers.push(() => makeCharacter(
  11962. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  11963. {
  11964. Side: {
  11965. height: math.unit(6, "feet"),
  11966. weight: math.unit(150, "lb"),
  11967. name: "Side",
  11968. image: {
  11969. source: "./media/characters/mira/side.svg",
  11970. extra: 900 / 799,
  11971. bottom: 0.02
  11972. }
  11973. },
  11974. },
  11975. [
  11976. {
  11977. name: "Human Size",
  11978. height: math.unit(6, "feet")
  11979. },
  11980. {
  11981. name: "Macro",
  11982. height: math.unit(100, "feet"),
  11983. default: true
  11984. },
  11985. {
  11986. name: "Megamacro",
  11987. height: math.unit(10, "miles")
  11988. },
  11989. {
  11990. name: "Gigamacro",
  11991. height: math.unit(25000, "miles")
  11992. },
  11993. {
  11994. name: "Teramacro",
  11995. height: math.unit(300, "AU")
  11996. },
  11997. {
  11998. name: "Full Size",
  11999. height: math.unit(4.5e10, "lightyears")
  12000. },
  12001. ]
  12002. ))
  12003. characterMakers.push(() => makeCharacter(
  12004. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12005. {
  12006. front: {
  12007. height: math.unit(6, "feet"),
  12008. weight: math.unit(150, "lb"),
  12009. name: "Front",
  12010. image: {
  12011. source: "./media/characters/holly/front.svg",
  12012. extra: 639 / 606
  12013. }
  12014. },
  12015. back: {
  12016. height: math.unit(6, "feet"),
  12017. weight: math.unit(150, "lb"),
  12018. name: "Back",
  12019. image: {
  12020. source: "./media/characters/holly/back.svg",
  12021. extra: 623 / 598
  12022. }
  12023. },
  12024. frontWorking: {
  12025. height: math.unit(6, "feet"),
  12026. weight: math.unit(150, "lb"),
  12027. name: "Front (Working)",
  12028. image: {
  12029. source: "./media/characters/holly/front-working.svg",
  12030. extra: 607 / 577,
  12031. bottom: 0.048
  12032. }
  12033. },
  12034. },
  12035. [
  12036. {
  12037. name: "Normal",
  12038. height: math.unit(12 + 3 / 12, "feet"),
  12039. default: true
  12040. },
  12041. ]
  12042. ))
  12043. characterMakers.push(() => makeCharacter(
  12044. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12045. {
  12046. front: {
  12047. height: math.unit(6, "feet"),
  12048. weight: math.unit(150, "lb"),
  12049. name: "Front",
  12050. image: {
  12051. source: "./media/characters/porter/front.svg",
  12052. extra: 1,
  12053. bottom: 0.01
  12054. }
  12055. },
  12056. frontRobes: {
  12057. height: math.unit(6, "feet"),
  12058. weight: math.unit(150, "lb"),
  12059. name: "Front (Robes)",
  12060. image: {
  12061. source: "./media/characters/porter/front-robes.svg",
  12062. extra: 1.01,
  12063. bottom: 0.01
  12064. }
  12065. },
  12066. },
  12067. [
  12068. {
  12069. name: "Normal",
  12070. height: math.unit(11 + 9 / 12, "feet"),
  12071. default: true
  12072. },
  12073. ]
  12074. ))
  12075. characterMakers.push(() => makeCharacter(
  12076. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12077. {
  12078. legendary: {
  12079. height: math.unit(6, "feet"),
  12080. weight: math.unit(150, "lb"),
  12081. name: "Legendary",
  12082. image: {
  12083. source: "./media/characters/lucy/legendary.svg",
  12084. extra: 1355 / 1100,
  12085. bottom: 0.045
  12086. }
  12087. },
  12088. },
  12089. [
  12090. {
  12091. name: "Legendary",
  12092. height: math.unit(86882 * 2, "miles"),
  12093. default: true
  12094. },
  12095. ]
  12096. ))
  12097. characterMakers.push(() => makeCharacter(
  12098. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12099. {
  12100. front: {
  12101. height: math.unit(6, "feet"),
  12102. weight: math.unit(150, "lb"),
  12103. name: "Front",
  12104. image: {
  12105. source: "./media/characters/drusilla/front.svg",
  12106. extra: 678 / 635,
  12107. bottom: 0.03
  12108. }
  12109. },
  12110. back: {
  12111. height: math.unit(6, "feet"),
  12112. weight: math.unit(150, "lb"),
  12113. name: "Back",
  12114. image: {
  12115. source: "./media/characters/drusilla/back.svg",
  12116. extra: 678 / 635,
  12117. bottom: 0.005
  12118. }
  12119. },
  12120. },
  12121. [
  12122. {
  12123. name: "Macro",
  12124. height: math.unit(100, "feet")
  12125. },
  12126. {
  12127. name: "Canon Height",
  12128. height: math.unit(2000, "feet"),
  12129. default: true
  12130. },
  12131. ]
  12132. ))
  12133. characterMakers.push(() => makeCharacter(
  12134. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12135. {
  12136. front: {
  12137. height: math.unit(6, "feet"),
  12138. weight: math.unit(180, "lb"),
  12139. name: "Front",
  12140. image: {
  12141. source: "./media/characters/renard-thatch/front.svg",
  12142. extra: 2411 / 2275,
  12143. bottom: 0.01
  12144. }
  12145. },
  12146. frontPosing: {
  12147. height: math.unit(6, "feet"),
  12148. weight: math.unit(180, "lb"),
  12149. name: "Front (Posing)",
  12150. image: {
  12151. source: "./media/characters/renard-thatch/front-posing.svg",
  12152. extra: 2381 / 2261,
  12153. bottom: 0.01
  12154. }
  12155. },
  12156. back: {
  12157. height: math.unit(6, "feet"),
  12158. weight: math.unit(180, "lb"),
  12159. name: "Back",
  12160. image: {
  12161. source: "./media/characters/renard-thatch/back.svg",
  12162. extra: 2428 / 2288
  12163. }
  12164. },
  12165. },
  12166. [
  12167. {
  12168. name: "Micro",
  12169. height: math.unit(3, "inches")
  12170. },
  12171. {
  12172. name: "Default",
  12173. height: math.unit(6, "feet"),
  12174. default: true
  12175. },
  12176. {
  12177. name: "Macro",
  12178. height: math.unit(75, "feet")
  12179. },
  12180. ]
  12181. ))
  12182. characterMakers.push(() => makeCharacter(
  12183. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12184. {
  12185. front: {
  12186. height: math.unit(1450, "feet"),
  12187. weight: math.unit(1.21e6, "tons"),
  12188. name: "Front",
  12189. image: {
  12190. source: "./media/characters/sekvra/front.svg",
  12191. extra: 1,
  12192. bottom: 0.03
  12193. }
  12194. },
  12195. frontClothed: {
  12196. height: math.unit(1450, "feet"),
  12197. weight: math.unit(1.21e6, "tons"),
  12198. name: "Front (Clothed)",
  12199. image: {
  12200. source: "./media/characters/sekvra/front-clothed.svg",
  12201. extra: 1,
  12202. bottom: 0.03
  12203. }
  12204. },
  12205. side: {
  12206. height: math.unit(1450, "feet"),
  12207. weight: math.unit(1.21e6, "tons"),
  12208. name: "Side",
  12209. image: {
  12210. source: "./media/characters/sekvra/side.svg",
  12211. extra: 1,
  12212. bottom: 0.025
  12213. }
  12214. },
  12215. back: {
  12216. height: math.unit(1450, "feet"),
  12217. weight: math.unit(1.21e6, "tons"),
  12218. name: "Back",
  12219. image: {
  12220. source: "./media/characters/sekvra/back.svg",
  12221. extra: 1,
  12222. bottom: 0.005
  12223. }
  12224. },
  12225. },
  12226. [
  12227. {
  12228. name: "Macro",
  12229. height: math.unit(1450, "feet"),
  12230. default: true
  12231. },
  12232. {
  12233. name: "Megamacro",
  12234. height: math.unit(15000, "feet")
  12235. },
  12236. ]
  12237. ))
  12238. characterMakers.push(() => makeCharacter(
  12239. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12240. {
  12241. front: {
  12242. height: math.unit(6, "feet"),
  12243. weight: math.unit(150, "lb"),
  12244. name: "Front",
  12245. image: {
  12246. source: "./media/characters/carmine/front.svg",
  12247. extra: 1,
  12248. bottom: 0.035
  12249. }
  12250. },
  12251. frontArmor: {
  12252. height: math.unit(6, "feet"),
  12253. weight: math.unit(150, "lb"),
  12254. name: "Front (Armor)",
  12255. image: {
  12256. source: "./media/characters/carmine/front-armor.svg",
  12257. extra: 1,
  12258. bottom: 0.035
  12259. }
  12260. },
  12261. },
  12262. [
  12263. {
  12264. name: "Large",
  12265. height: math.unit(1, "mile")
  12266. },
  12267. {
  12268. name: "Huge",
  12269. height: math.unit(40, "miles"),
  12270. default: true
  12271. },
  12272. {
  12273. name: "Colossal",
  12274. height: math.unit(2500, "miles")
  12275. },
  12276. ]
  12277. ))
  12278. characterMakers.push(() => makeCharacter(
  12279. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12280. {
  12281. front: {
  12282. height: math.unit(6, "feet"),
  12283. weight: math.unit(150, "lb"),
  12284. name: "Front",
  12285. image: {
  12286. source: "./media/characters/elyssia/front.svg",
  12287. extra: 2201 / 2035,
  12288. bottom: 0.05
  12289. }
  12290. },
  12291. frontClothed: {
  12292. height: math.unit(6, "feet"),
  12293. weight: math.unit(150, "lb"),
  12294. name: "Front (Clothed)",
  12295. image: {
  12296. source: "./media/characters/elyssia/front-clothed.svg",
  12297. extra: 2201 / 2035,
  12298. bottom: 0.05
  12299. }
  12300. },
  12301. back: {
  12302. height: math.unit(6, "feet"),
  12303. weight: math.unit(150, "lb"),
  12304. name: "Back",
  12305. image: {
  12306. source: "./media/characters/elyssia/back.svg",
  12307. extra: 2201 / 2035,
  12308. bottom: 0.013
  12309. }
  12310. },
  12311. },
  12312. [
  12313. {
  12314. name: "Smaller",
  12315. height: math.unit(150, "feet")
  12316. },
  12317. {
  12318. name: "Standard",
  12319. height: math.unit(1400, "feet"),
  12320. default: true
  12321. },
  12322. {
  12323. name: "Distracted",
  12324. height: math.unit(15000, "feet")
  12325. },
  12326. ]
  12327. ))
  12328. characterMakers.push(() => makeCharacter(
  12329. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12330. {
  12331. front: {
  12332. height: math.unit(7 + 4 / 12, "feet"),
  12333. weight: math.unit(500, "lb"),
  12334. name: "Front",
  12335. image: {
  12336. source: "./media/characters/geno-maxwell/front.svg",
  12337. extra: 2207 / 2040,
  12338. bottom: 0.015
  12339. }
  12340. },
  12341. },
  12342. [
  12343. {
  12344. name: "Micro",
  12345. height: math.unit(3, "inches")
  12346. },
  12347. {
  12348. name: "Normal",
  12349. height: math.unit(7 + 4 / 12, "feet"),
  12350. default: true
  12351. },
  12352. {
  12353. name: "Macro",
  12354. height: math.unit(220, "feet")
  12355. },
  12356. {
  12357. name: "Megamacro",
  12358. height: math.unit(11, "miles")
  12359. },
  12360. ]
  12361. ))
  12362. characterMakers.push(() => makeCharacter(
  12363. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12364. {
  12365. front: {
  12366. height: math.unit(7 + 4 / 12, "feet"),
  12367. weight: math.unit(500, "lb"),
  12368. name: "Front",
  12369. image: {
  12370. source: "./media/characters/regena-maxwell/front.svg",
  12371. extra: 3115 / 2770,
  12372. bottom: 0.02
  12373. }
  12374. },
  12375. },
  12376. [
  12377. {
  12378. name: "Normal",
  12379. height: math.unit(7 + 4 / 12, "feet"),
  12380. default: true
  12381. },
  12382. {
  12383. name: "Macro",
  12384. height: math.unit(220, "feet")
  12385. },
  12386. {
  12387. name: "Megamacro",
  12388. height: math.unit(11, "miles")
  12389. },
  12390. ]
  12391. ))
  12392. characterMakers.push(() => makeCharacter(
  12393. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12394. {
  12395. front: {
  12396. height: math.unit(6, "feet"),
  12397. weight: math.unit(150, "lb"),
  12398. name: "Front",
  12399. image: {
  12400. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12401. extra: 860 / 690,
  12402. bottom: 0.03
  12403. }
  12404. },
  12405. },
  12406. [
  12407. {
  12408. name: "Normal",
  12409. height: math.unit(1.7, "meters"),
  12410. default: true
  12411. },
  12412. ]
  12413. ))
  12414. characterMakers.push(() => makeCharacter(
  12415. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12416. {
  12417. front: {
  12418. height: math.unit(6, "feet"),
  12419. weight: math.unit(150, "lb"),
  12420. name: "Front",
  12421. image: {
  12422. source: "./media/characters/quilly/front.svg",
  12423. extra: 890 / 776
  12424. }
  12425. },
  12426. },
  12427. [
  12428. {
  12429. name: "Gigamacro",
  12430. height: math.unit(404090, "miles"),
  12431. default: true
  12432. },
  12433. ]
  12434. ))
  12435. characterMakers.push(() => makeCharacter(
  12436. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12437. {
  12438. front: {
  12439. height: math.unit(7 + 8 / 12, "feet"),
  12440. weight: math.unit(350, "lb"),
  12441. name: "Front",
  12442. image: {
  12443. source: "./media/characters/tempest/front.svg",
  12444. extra: 1175 / 1086,
  12445. bottom: 0.02
  12446. }
  12447. },
  12448. },
  12449. [
  12450. {
  12451. name: "Normal",
  12452. height: math.unit(7 + 8 / 12, "feet"),
  12453. default: true
  12454. },
  12455. ]
  12456. ))
  12457. characterMakers.push(() => makeCharacter(
  12458. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12459. {
  12460. side: {
  12461. height: math.unit(4 + 5 / 12, "feet"),
  12462. weight: math.unit(80, "lb"),
  12463. name: "Side",
  12464. image: {
  12465. source: "./media/characters/rodger/side.svg",
  12466. extra: 1235 / 1118
  12467. }
  12468. },
  12469. },
  12470. [
  12471. {
  12472. name: "Micro",
  12473. height: math.unit(1, "inch")
  12474. },
  12475. {
  12476. name: "Normal",
  12477. height: math.unit(4 + 5 / 12, "feet"),
  12478. default: true
  12479. },
  12480. {
  12481. name: "Macro",
  12482. height: math.unit(120, "feet")
  12483. },
  12484. ]
  12485. ))
  12486. characterMakers.push(() => makeCharacter(
  12487. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12488. {
  12489. front: {
  12490. height: math.unit(6, "feet"),
  12491. weight: math.unit(150, "lb"),
  12492. name: "Front",
  12493. image: {
  12494. source: "./media/characters/danyel/front.svg",
  12495. extra: 1185 / 1123,
  12496. bottom: 0.05
  12497. }
  12498. },
  12499. },
  12500. [
  12501. {
  12502. name: "Shrunken",
  12503. height: math.unit(0.5, "mm")
  12504. },
  12505. {
  12506. name: "Micro",
  12507. height: math.unit(1, "mm"),
  12508. default: true
  12509. },
  12510. {
  12511. name: "Upsized",
  12512. height: math.unit(5 + 5 / 12, "feet")
  12513. },
  12514. ]
  12515. ))
  12516. characterMakers.push(() => makeCharacter(
  12517. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12518. {
  12519. front: {
  12520. height: math.unit(5 + 6 / 12, "feet"),
  12521. weight: math.unit(200, "lb"),
  12522. name: "Front",
  12523. image: {
  12524. source: "./media/characters/vivian-bijoux/front.svg",
  12525. extra: 1,
  12526. bottom: 0.072
  12527. }
  12528. },
  12529. },
  12530. [
  12531. {
  12532. name: "Normal",
  12533. height: math.unit(5 + 6 / 12, "feet"),
  12534. default: true
  12535. },
  12536. {
  12537. name: "Bad Dream",
  12538. height: math.unit(500, "feet")
  12539. },
  12540. {
  12541. name: "Nightmare",
  12542. height: math.unit(500, "miles")
  12543. },
  12544. ]
  12545. ))
  12546. characterMakers.push(() => makeCharacter(
  12547. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12548. {
  12549. front: {
  12550. height: math.unit(6 + 1 / 12, "feet"),
  12551. weight: math.unit(260, "lb"),
  12552. name: "Front",
  12553. image: {
  12554. source: "./media/characters/zeta/front.svg",
  12555. extra: 1968 / 1889,
  12556. bottom: 0.06
  12557. }
  12558. },
  12559. back: {
  12560. height: math.unit(6 + 1 / 12, "feet"),
  12561. weight: math.unit(260, "lb"),
  12562. name: "Back",
  12563. image: {
  12564. source: "./media/characters/zeta/back.svg",
  12565. extra: 1944 / 1858,
  12566. bottom: 0.03
  12567. }
  12568. },
  12569. hand: {
  12570. height: math.unit(1.112, "feet"),
  12571. name: "Hand",
  12572. image: {
  12573. source: "./media/characters/zeta/hand.svg"
  12574. }
  12575. },
  12576. foot: {
  12577. height: math.unit(1.48, "feet"),
  12578. name: "Foot",
  12579. image: {
  12580. source: "./media/characters/zeta/foot.svg"
  12581. }
  12582. },
  12583. },
  12584. [
  12585. {
  12586. name: "Micro",
  12587. height: math.unit(6, "inches")
  12588. },
  12589. {
  12590. name: "Normal",
  12591. height: math.unit(6 + 1 / 12, "feet"),
  12592. default: true
  12593. },
  12594. {
  12595. name: "Macro",
  12596. height: math.unit(20, "feet")
  12597. },
  12598. ]
  12599. ))
  12600. characterMakers.push(() => makeCharacter(
  12601. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12602. {
  12603. front: {
  12604. height: math.unit(6, "feet"),
  12605. weight: math.unit(150, "lb"),
  12606. name: "Front",
  12607. image: {
  12608. source: "./media/characters/jamie-larsen/front.svg",
  12609. extra: 962 / 933,
  12610. bottom: 0.02
  12611. }
  12612. },
  12613. back: {
  12614. height: math.unit(6, "feet"),
  12615. weight: math.unit(150, "lb"),
  12616. name: "Back",
  12617. image: {
  12618. source: "./media/characters/jamie-larsen/back.svg",
  12619. extra: 997 / 946
  12620. }
  12621. },
  12622. },
  12623. [
  12624. {
  12625. name: "Macro",
  12626. height: math.unit(28 + 7 / 12, "feet"),
  12627. default: true
  12628. },
  12629. {
  12630. name: "Macro+",
  12631. height: math.unit(180, "feet")
  12632. },
  12633. {
  12634. name: "Megamacro",
  12635. height: math.unit(10, "miles")
  12636. },
  12637. {
  12638. name: "Gigamacro",
  12639. height: math.unit(200000, "miles")
  12640. },
  12641. ]
  12642. ))
  12643. characterMakers.push(() => makeCharacter(
  12644. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12645. {
  12646. front: {
  12647. height: math.unit(6, "feet"),
  12648. weight: math.unit(120, "lb"),
  12649. name: "Front",
  12650. image: {
  12651. source: "./media/characters/vance/front.svg",
  12652. extra: 1980 / 1890,
  12653. bottom: 0.09
  12654. }
  12655. },
  12656. back: {
  12657. height: math.unit(6, "feet"),
  12658. weight: math.unit(120, "lb"),
  12659. name: "Back",
  12660. image: {
  12661. source: "./media/characters/vance/back.svg",
  12662. extra: 2081 / 1994,
  12663. bottom: 0.014
  12664. }
  12665. },
  12666. hand: {
  12667. height: math.unit(0.88, "feet"),
  12668. name: "Hand",
  12669. image: {
  12670. source: "./media/characters/vance/hand.svg"
  12671. }
  12672. },
  12673. foot: {
  12674. height: math.unit(0.64, "feet"),
  12675. name: "Foot",
  12676. image: {
  12677. source: "./media/characters/vance/foot.svg"
  12678. }
  12679. },
  12680. },
  12681. [
  12682. {
  12683. name: "Small",
  12684. height: math.unit(90, "feet"),
  12685. default: true
  12686. },
  12687. {
  12688. name: "Macro",
  12689. height: math.unit(100, "meters")
  12690. },
  12691. {
  12692. name: "Megamacro",
  12693. height: math.unit(15, "miles")
  12694. },
  12695. ]
  12696. ))
  12697. characterMakers.push(() => makeCharacter(
  12698. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12699. {
  12700. front: {
  12701. height: math.unit(6, "feet"),
  12702. weight: math.unit(180, "lb"),
  12703. name: "Front",
  12704. image: {
  12705. source: "./media/characters/xochitl/front.svg",
  12706. extra: 2297 / 2261,
  12707. bottom: 0.065
  12708. }
  12709. },
  12710. back: {
  12711. height: math.unit(6, "feet"),
  12712. weight: math.unit(180, "lb"),
  12713. name: "Back",
  12714. image: {
  12715. source: "./media/characters/xochitl/back.svg",
  12716. extra: 2386 / 2354,
  12717. bottom: 0.01
  12718. }
  12719. },
  12720. foot: {
  12721. height: math.unit(6 / 5 * 1.15, "feet"),
  12722. weight: math.unit(150, "lb"),
  12723. name: "Foot",
  12724. image: {
  12725. source: "./media/characters/xochitl/foot.svg"
  12726. }
  12727. },
  12728. },
  12729. [
  12730. {
  12731. name: "Macro",
  12732. height: math.unit(80, "feet")
  12733. },
  12734. {
  12735. name: "Macro+",
  12736. height: math.unit(400, "feet"),
  12737. default: true
  12738. },
  12739. {
  12740. name: "Gigamacro",
  12741. height: math.unit(80000, "miles")
  12742. },
  12743. {
  12744. name: "Gigamacro+",
  12745. height: math.unit(400000, "miles")
  12746. },
  12747. {
  12748. name: "Teramacro",
  12749. height: math.unit(300, "AU")
  12750. },
  12751. ]
  12752. ))
  12753. characterMakers.push(() => makeCharacter(
  12754. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12755. {
  12756. front: {
  12757. height: math.unit(6, "feet"),
  12758. weight: math.unit(150, "lb"),
  12759. name: "Front",
  12760. image: {
  12761. source: "./media/characters/vincent/front.svg",
  12762. extra: 1130 / 1080,
  12763. bottom: 0.055
  12764. }
  12765. },
  12766. beak: {
  12767. height: math.unit(6 * 0.1, "feet"),
  12768. name: "Beak",
  12769. image: {
  12770. source: "./media/characters/vincent/beak.svg"
  12771. }
  12772. },
  12773. hand: {
  12774. height: math.unit(6 * 0.85, "feet"),
  12775. weight: math.unit(150, "lb"),
  12776. name: "Hand",
  12777. image: {
  12778. source: "./media/characters/vincent/hand.svg"
  12779. }
  12780. },
  12781. foot: {
  12782. height: math.unit(6 * 0.19, "feet"),
  12783. weight: math.unit(150, "lb"),
  12784. name: "Foot",
  12785. image: {
  12786. source: "./media/characters/vincent/foot.svg"
  12787. }
  12788. },
  12789. },
  12790. [
  12791. {
  12792. name: "Base",
  12793. height: math.unit(6 + 5 / 12, "feet"),
  12794. default: true
  12795. },
  12796. {
  12797. name: "Macro",
  12798. height: math.unit(300, "feet")
  12799. },
  12800. {
  12801. name: "Megamacro",
  12802. height: math.unit(2, "miles")
  12803. },
  12804. {
  12805. name: "Gigamacro",
  12806. height: math.unit(1000, "miles")
  12807. },
  12808. ]
  12809. ))
  12810. characterMakers.push(() => makeCharacter(
  12811. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  12812. {
  12813. front: {
  12814. height: math.unit(6 + 2 / 12, "feet"),
  12815. weight: math.unit(265, "lb"),
  12816. name: "Front",
  12817. image: {
  12818. source: "./media/characters/jay/front.svg",
  12819. extra: 1510 / 1430,
  12820. bottom: 0.042
  12821. }
  12822. },
  12823. back: {
  12824. height: math.unit(6 + 2 / 12, "feet"),
  12825. weight: math.unit(265, "lb"),
  12826. name: "Back",
  12827. image: {
  12828. source: "./media/characters/jay/back.svg",
  12829. extra: 1510 / 1430,
  12830. bottom: 0.025
  12831. }
  12832. },
  12833. clothed: {
  12834. height: math.unit(6 + 2 / 12, "feet"),
  12835. weight: math.unit(265, "lb"),
  12836. name: "Front (Clothed)",
  12837. image: {
  12838. source: "./media/characters/jay/clothed.svg",
  12839. extra: 744 / 699,
  12840. bottom: 0.043
  12841. }
  12842. },
  12843. head: {
  12844. height: math.unit(1.772, "feet"),
  12845. name: "Head",
  12846. image: {
  12847. source: "./media/characters/jay/head.svg"
  12848. }
  12849. },
  12850. sizeRay: {
  12851. height: math.unit(1.331, "feet"),
  12852. name: "Size Ray",
  12853. image: {
  12854. source: "./media/characters/jay/size-ray.svg"
  12855. }
  12856. },
  12857. },
  12858. [
  12859. {
  12860. name: "Micro",
  12861. height: math.unit(1, "inch")
  12862. },
  12863. {
  12864. name: "Normal",
  12865. height: math.unit(6 + 2 / 12, "feet"),
  12866. default: true
  12867. },
  12868. {
  12869. name: "Macro",
  12870. height: math.unit(1, "mile")
  12871. },
  12872. {
  12873. name: "Megamacro",
  12874. height: math.unit(100, "miles")
  12875. },
  12876. ]
  12877. ))
  12878. characterMakers.push(() => makeCharacter(
  12879. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  12880. {
  12881. front: {
  12882. height: math.unit(2, "meters"),
  12883. weight: math.unit(500, "kg"),
  12884. name: "Front",
  12885. image: {
  12886. source: "./media/characters/coatl/front.svg",
  12887. extra: 3948 / 3500,
  12888. bottom: 0.082
  12889. }
  12890. },
  12891. },
  12892. [
  12893. {
  12894. name: "Normal",
  12895. height: math.unit(4, "meters")
  12896. },
  12897. {
  12898. name: "Macro",
  12899. height: math.unit(100, "meters"),
  12900. default: true
  12901. },
  12902. {
  12903. name: "Macro+",
  12904. height: math.unit(300, "meters")
  12905. },
  12906. {
  12907. name: "Megamacro",
  12908. height: math.unit(3, "gigameters")
  12909. },
  12910. {
  12911. name: "Megamacro+",
  12912. height: math.unit(300, "terameters")
  12913. },
  12914. {
  12915. name: "Megamacro++",
  12916. height: math.unit(3, "lightyears")
  12917. },
  12918. ]
  12919. ))
  12920. characterMakers.push(() => makeCharacter(
  12921. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  12922. {
  12923. front: {
  12924. height: math.unit(6, "feet"),
  12925. weight: math.unit(50, "kg"),
  12926. name: "front",
  12927. image: {
  12928. source: "./media/characters/shiroryu/front.svg",
  12929. extra: 1990 / 1935
  12930. }
  12931. },
  12932. },
  12933. [
  12934. {
  12935. name: "Mortal Mingling",
  12936. height: math.unit(3, "meters")
  12937. },
  12938. {
  12939. name: "Kaiju-ish",
  12940. height: math.unit(250, "meters")
  12941. },
  12942. {
  12943. name: "Somewhat Godly",
  12944. height: math.unit(400, "km"),
  12945. default: true
  12946. },
  12947. {
  12948. name: "Planetary",
  12949. height: math.unit(300, "megameters")
  12950. },
  12951. {
  12952. name: "Galaxy-dwarfing",
  12953. height: math.unit(450, "kiloparsecs")
  12954. },
  12955. {
  12956. name: "Universe Eater",
  12957. height: math.unit(150, "gigaparsecs")
  12958. },
  12959. {
  12960. name: "Almost Immeasurable",
  12961. height: math.unit(1.3e266, "yottaparsecs")
  12962. },
  12963. ]
  12964. ))
  12965. characterMakers.push(() => makeCharacter(
  12966. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  12967. {
  12968. front: {
  12969. height: math.unit(6, "feet"),
  12970. weight: math.unit(150, "lb"),
  12971. name: "Front",
  12972. image: {
  12973. source: "./media/characters/umeko/front.svg",
  12974. extra: 1,
  12975. bottom: 0.019
  12976. }
  12977. },
  12978. frontArmored: {
  12979. height: math.unit(6, "feet"),
  12980. weight: math.unit(150, "lb"),
  12981. name: "Front (Armored)",
  12982. image: {
  12983. source: "./media/characters/umeko/front-armored.svg",
  12984. extra: 1,
  12985. bottom: 0.021
  12986. }
  12987. },
  12988. },
  12989. [
  12990. {
  12991. name: "Macro",
  12992. height: math.unit(220, "feet"),
  12993. default: true
  12994. },
  12995. {
  12996. name: "Guardian Dragon",
  12997. height: math.unit(50, "miles")
  12998. },
  12999. {
  13000. name: "Cosmic",
  13001. height: math.unit(800000, "miles")
  13002. },
  13003. ]
  13004. ))
  13005. characterMakers.push(() => makeCharacter(
  13006. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13007. {
  13008. front: {
  13009. height: math.unit(6, "feet"),
  13010. weight: math.unit(150, "lb"),
  13011. name: "Front",
  13012. image: {
  13013. source: "./media/characters/cassidy/front.svg",
  13014. extra: 1,
  13015. bottom: 0.043
  13016. }
  13017. },
  13018. },
  13019. [
  13020. {
  13021. name: "Canon Height",
  13022. height: math.unit(120, "feet"),
  13023. default: true
  13024. },
  13025. {
  13026. name: "Macro+",
  13027. height: math.unit(400, "feet")
  13028. },
  13029. {
  13030. name: "Macro++",
  13031. height: math.unit(4000, "feet")
  13032. },
  13033. {
  13034. name: "Megamacro",
  13035. height: math.unit(3, "miles")
  13036. },
  13037. ]
  13038. ))
  13039. characterMakers.push(() => makeCharacter(
  13040. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13041. {
  13042. front: {
  13043. height: math.unit(6, "feet"),
  13044. weight: math.unit(150, "lb"),
  13045. name: "Front",
  13046. image: {
  13047. source: "./media/characters/isaac/front.svg",
  13048. extra: 896 / 815,
  13049. bottom: 0.11
  13050. }
  13051. },
  13052. },
  13053. [
  13054. {
  13055. name: "Human Size",
  13056. height: math.unit(8, "feet"),
  13057. default: true
  13058. },
  13059. {
  13060. name: "Macro",
  13061. height: math.unit(400, "feet")
  13062. },
  13063. {
  13064. name: "Megamacro",
  13065. height: math.unit(50, "miles")
  13066. },
  13067. {
  13068. name: "Canon Height",
  13069. height: math.unit(200, "AU")
  13070. },
  13071. ]
  13072. ))
  13073. characterMakers.push(() => makeCharacter(
  13074. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13075. {
  13076. front: {
  13077. height: math.unit(6, "feet"),
  13078. weight: math.unit(72, "kg"),
  13079. name: "Front",
  13080. image: {
  13081. source: "./media/characters/sleekit/front.svg",
  13082. extra: 4693 / 4487,
  13083. bottom: 0.012
  13084. }
  13085. },
  13086. },
  13087. [
  13088. {
  13089. name: "Minimum Height",
  13090. height: math.unit(10, "meters")
  13091. },
  13092. {
  13093. name: "Smaller",
  13094. height: math.unit(25, "meters")
  13095. },
  13096. {
  13097. name: "Larger",
  13098. height: math.unit(38, "meters"),
  13099. default: true
  13100. },
  13101. {
  13102. name: "Maximum height",
  13103. height: math.unit(100, "meters")
  13104. },
  13105. ]
  13106. ))
  13107. characterMakers.push(() => makeCharacter(
  13108. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13109. {
  13110. front: {
  13111. height: math.unit(6, "feet"),
  13112. weight: math.unit(150, "lb"),
  13113. name: "Front",
  13114. image: {
  13115. source: "./media/characters/nillia/front.svg",
  13116. extra: 2195 / 2037,
  13117. bottom: 0.005
  13118. }
  13119. },
  13120. back: {
  13121. height: math.unit(6, "feet"),
  13122. weight: math.unit(150, "lb"),
  13123. name: "Back",
  13124. image: {
  13125. source: "./media/characters/nillia/back.svg",
  13126. extra: 2195 / 2037,
  13127. bottom: 0.005
  13128. }
  13129. },
  13130. },
  13131. [
  13132. {
  13133. name: "Canon Height",
  13134. height: math.unit(489, "feet"),
  13135. default: true
  13136. }
  13137. ]
  13138. ))
  13139. characterMakers.push(() => makeCharacter(
  13140. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13141. {
  13142. front: {
  13143. height: math.unit(6, "feet"),
  13144. weight: math.unit(150, "lb"),
  13145. name: "Front",
  13146. image: {
  13147. source: "./media/characters/mesmyriza/front.svg",
  13148. extra: 2067 / 1784,
  13149. bottom: 0.035
  13150. }
  13151. },
  13152. foot: {
  13153. height: math.unit(6 / (250 / 35), "feet"),
  13154. name: "Foot",
  13155. image: {
  13156. source: "./media/characters/mesmyriza/foot.svg"
  13157. }
  13158. },
  13159. },
  13160. [
  13161. {
  13162. name: "Macro",
  13163. height: math.unit(457, "meters"),
  13164. default: true
  13165. },
  13166. {
  13167. name: "Megamacro",
  13168. height: math.unit(8, "megameters")
  13169. },
  13170. ]
  13171. ))
  13172. characterMakers.push(() => makeCharacter(
  13173. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13174. {
  13175. front: {
  13176. height: math.unit(6, "feet"),
  13177. weight: math.unit(250, "lb"),
  13178. name: "Front",
  13179. image: {
  13180. source: "./media/characters/saudade/front.svg",
  13181. extra: 1172 / 1139,
  13182. bottom: 0.035
  13183. }
  13184. },
  13185. },
  13186. [
  13187. {
  13188. name: "Micro",
  13189. height: math.unit(3, "inches")
  13190. },
  13191. {
  13192. name: "Normal",
  13193. height: math.unit(6, "feet"),
  13194. default: true
  13195. },
  13196. {
  13197. name: "Macro",
  13198. height: math.unit(50, "feet")
  13199. },
  13200. {
  13201. name: "Megamacro",
  13202. height: math.unit(2800, "feet")
  13203. },
  13204. ]
  13205. ))
  13206. characterMakers.push(() => makeCharacter(
  13207. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13208. {
  13209. front: {
  13210. height: math.unit(5 + 4 / 12, "feet"),
  13211. weight: math.unit(100, "lb"),
  13212. name: "Front",
  13213. image: {
  13214. source: "./media/characters/keireer/front.svg",
  13215. extra: 716 / 666,
  13216. bottom: 0.05
  13217. }
  13218. },
  13219. },
  13220. [
  13221. {
  13222. name: "Normal",
  13223. height: math.unit(5 + 4 / 12, "feet"),
  13224. default: true
  13225. },
  13226. ]
  13227. ))
  13228. characterMakers.push(() => makeCharacter(
  13229. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13230. {
  13231. front: {
  13232. height: math.unit(6, "feet"),
  13233. weight: math.unit(90, "kg"),
  13234. name: "Front",
  13235. image: {
  13236. source: "./media/characters/mirja/front.svg",
  13237. extra: 1789 / 1683,
  13238. bottom: 0.05
  13239. }
  13240. },
  13241. frontDressed: {
  13242. height: math.unit(6, "feet"),
  13243. weight: math.unit(90, "lb"),
  13244. name: "Front (Dressed)",
  13245. image: {
  13246. source: "./media/characters/mirja/front-dressed.svg",
  13247. extra: 1789 / 1683,
  13248. bottom: 0.05
  13249. }
  13250. },
  13251. back: {
  13252. height: math.unit(6, "feet"),
  13253. weight: math.unit(90, "lb"),
  13254. name: "Back",
  13255. image: {
  13256. source: "./media/characters/mirja/back.svg",
  13257. extra: 953 / 917,
  13258. bottom: 0.017
  13259. }
  13260. },
  13261. },
  13262. [
  13263. {
  13264. name: "\"Incognito\"",
  13265. height: math.unit(3, "meters")
  13266. },
  13267. {
  13268. name: "Strolling Size",
  13269. height: math.unit(15, "km")
  13270. },
  13271. {
  13272. name: "Larger Strolling Size",
  13273. height: math.unit(400, "km")
  13274. },
  13275. {
  13276. name: "Preferred Size",
  13277. height: math.unit(5000, "km")
  13278. },
  13279. {
  13280. name: "True Size",
  13281. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13282. default: true
  13283. },
  13284. ]
  13285. ))
  13286. characterMakers.push(() => makeCharacter(
  13287. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13288. {
  13289. front: {
  13290. height: math.unit(15, "feet"),
  13291. weight: math.unit(880, "kg"),
  13292. name: "Front",
  13293. image: {
  13294. source: "./media/characters/nightraver/front.svg",
  13295. extra: 2444 / 2160,
  13296. bottom: 0.027
  13297. }
  13298. },
  13299. back: {
  13300. height: math.unit(15, "feet"),
  13301. weight: math.unit(880, "kg"),
  13302. name: "Back",
  13303. image: {
  13304. source: "./media/characters/nightraver/back.svg",
  13305. extra: 2309 / 2180,
  13306. bottom: 0.005
  13307. }
  13308. },
  13309. sole: {
  13310. height: math.unit(2.878, "feet"),
  13311. name: "Sole",
  13312. image: {
  13313. source: "./media/characters/nightraver/sole.svg"
  13314. }
  13315. },
  13316. foot: {
  13317. height: math.unit(2.285, "feet"),
  13318. name: "Foot",
  13319. image: {
  13320. source: "./media/characters/nightraver/foot.svg"
  13321. }
  13322. },
  13323. maw: {
  13324. height: math.unit(2.67, "feet"),
  13325. name: "Maw",
  13326. image: {
  13327. source: "./media/characters/nightraver/maw.svg"
  13328. }
  13329. },
  13330. },
  13331. [
  13332. {
  13333. name: "Micro",
  13334. height: math.unit(1, "cm")
  13335. },
  13336. {
  13337. name: "Normal",
  13338. height: math.unit(15, "feet"),
  13339. default: true
  13340. },
  13341. {
  13342. name: "Macro",
  13343. height: math.unit(300, "feet")
  13344. },
  13345. {
  13346. name: "Megamacro",
  13347. height: math.unit(300, "miles")
  13348. },
  13349. {
  13350. name: "Gigamacro",
  13351. height: math.unit(10000, "miles")
  13352. },
  13353. ]
  13354. ))
  13355. characterMakers.push(() => makeCharacter(
  13356. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13357. {
  13358. side: {
  13359. height: math.unit(2, "inches"),
  13360. weight: math.unit(5, "grams"),
  13361. name: "Side",
  13362. image: {
  13363. source: "./media/characters/arc/side.svg"
  13364. }
  13365. },
  13366. },
  13367. [
  13368. {
  13369. name: "Micro",
  13370. height: math.unit(2, "inches"),
  13371. default: true
  13372. },
  13373. ]
  13374. ))
  13375. characterMakers.push(() => makeCharacter(
  13376. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13377. {
  13378. front: {
  13379. height: math.unit(1.1938, "meters"),
  13380. weight: math.unit(54, "kg"),
  13381. name: "Front",
  13382. image: {
  13383. source: "./media/characters/nebula-shahar/front.svg",
  13384. extra: 1642 / 1436,
  13385. bottom: 0.06
  13386. }
  13387. },
  13388. },
  13389. [
  13390. {
  13391. name: "Megamicro",
  13392. height: math.unit(0.3, "mm")
  13393. },
  13394. {
  13395. name: "Micro",
  13396. height: math.unit(3, "cm")
  13397. },
  13398. {
  13399. name: "Normal",
  13400. height: math.unit(138, "cm"),
  13401. default: true
  13402. },
  13403. {
  13404. name: "Macro",
  13405. height: math.unit(30, "m")
  13406. },
  13407. ]
  13408. ))
  13409. characterMakers.push(() => makeCharacter(
  13410. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13411. {
  13412. front: {
  13413. height: math.unit(5.24, "feet"),
  13414. weight: math.unit(150, "lb"),
  13415. name: "Front",
  13416. image: {
  13417. source: "./media/characters/shayla/front.svg",
  13418. extra: 1512 / 1414,
  13419. bottom: 0.01
  13420. }
  13421. },
  13422. back: {
  13423. height: math.unit(5.24, "feet"),
  13424. weight: math.unit(150, "lb"),
  13425. name: "Back",
  13426. image: {
  13427. source: "./media/characters/shayla/back.svg",
  13428. extra: 1512 / 1414
  13429. }
  13430. },
  13431. hand: {
  13432. height: math.unit(0.7781496062992126, "feet"),
  13433. name: "Hand",
  13434. image: {
  13435. source: "./media/characters/shayla/hand.svg"
  13436. }
  13437. },
  13438. foot: {
  13439. height: math.unit(1.4206036745406823, "feet"),
  13440. name: "Foot",
  13441. image: {
  13442. source: "./media/characters/shayla/foot.svg"
  13443. }
  13444. },
  13445. },
  13446. [
  13447. {
  13448. name: "Micro",
  13449. height: math.unit(0.32, "feet")
  13450. },
  13451. {
  13452. name: "Normal",
  13453. height: math.unit(5.24, "feet"),
  13454. default: true
  13455. },
  13456. {
  13457. name: "Macro",
  13458. height: math.unit(492.12, "feet")
  13459. },
  13460. {
  13461. name: "Megamacro",
  13462. height: math.unit(186.41, "miles")
  13463. },
  13464. ]
  13465. ))
  13466. characterMakers.push(() => makeCharacter(
  13467. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13468. {
  13469. front: {
  13470. height: math.unit(2.2, "m"),
  13471. weight: math.unit(120, "kg"),
  13472. name: "Front",
  13473. image: {
  13474. source: "./media/characters/pia-jr/front.svg",
  13475. extra: 1000 / 970,
  13476. bottom: 0.035
  13477. }
  13478. },
  13479. hand: {
  13480. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13481. name: "Hand",
  13482. image: {
  13483. source: "./media/characters/pia-jr/hand.svg"
  13484. }
  13485. },
  13486. paw: {
  13487. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13488. name: "Paw",
  13489. image: {
  13490. source: "./media/characters/pia-jr/paw.svg"
  13491. }
  13492. },
  13493. },
  13494. [
  13495. {
  13496. name: "Micro",
  13497. height: math.unit(1.2, "cm")
  13498. },
  13499. {
  13500. name: "Normal",
  13501. height: math.unit(2.2, "m"),
  13502. default: true
  13503. },
  13504. {
  13505. name: "Macro",
  13506. height: math.unit(180, "m")
  13507. },
  13508. {
  13509. name: "Megamacro",
  13510. height: math.unit(420, "km")
  13511. },
  13512. ]
  13513. ))
  13514. characterMakers.push(() => makeCharacter(
  13515. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13516. {
  13517. front: {
  13518. height: math.unit(2, "m"),
  13519. weight: math.unit(115, "kg"),
  13520. name: "Front",
  13521. image: {
  13522. source: "./media/characters/pia-sr/front.svg",
  13523. extra: 760 / 730,
  13524. bottom: 0.015
  13525. }
  13526. },
  13527. back: {
  13528. height: math.unit(2, "m"),
  13529. weight: math.unit(115, "kg"),
  13530. name: "Back",
  13531. image: {
  13532. source: "./media/characters/pia-sr/back.svg",
  13533. extra: 760 / 730,
  13534. bottom: 0.01
  13535. }
  13536. },
  13537. hand: {
  13538. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13539. name: "Hand",
  13540. image: {
  13541. source: "./media/characters/pia-sr/hand.svg"
  13542. }
  13543. },
  13544. foot: {
  13545. height: math.unit(1.83, "feet"),
  13546. name: "Foot",
  13547. image: {
  13548. source: "./media/characters/pia-sr/foot.svg"
  13549. }
  13550. },
  13551. },
  13552. [
  13553. {
  13554. name: "Micro",
  13555. height: math.unit(88, "mm")
  13556. },
  13557. {
  13558. name: "Normal",
  13559. height: math.unit(2, "m"),
  13560. default: true
  13561. },
  13562. {
  13563. name: "Macro",
  13564. height: math.unit(200, "m")
  13565. },
  13566. {
  13567. name: "Megamacro",
  13568. height: math.unit(420, "km")
  13569. },
  13570. ]
  13571. ))
  13572. characterMakers.push(() => makeCharacter(
  13573. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13574. {
  13575. front: {
  13576. height: math.unit(8 + 2 / 12, "feet"),
  13577. weight: math.unit(300, "lb"),
  13578. name: "Front",
  13579. image: {
  13580. source: "./media/characters/kibibyte/front.svg",
  13581. extra: 2221 / 2098,
  13582. bottom: 0.04
  13583. }
  13584. },
  13585. },
  13586. [
  13587. {
  13588. name: "Normal",
  13589. height: math.unit(8 + 2 / 12, "feet"),
  13590. default: true
  13591. },
  13592. {
  13593. name: "Socialable Macro",
  13594. height: math.unit(50, "feet")
  13595. },
  13596. {
  13597. name: "Macro",
  13598. height: math.unit(300, "feet")
  13599. },
  13600. {
  13601. name: "Megamacro",
  13602. height: math.unit(500, "miles")
  13603. },
  13604. ]
  13605. ))
  13606. characterMakers.push(() => makeCharacter(
  13607. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13608. {
  13609. front: {
  13610. height: math.unit(6, "feet"),
  13611. weight: math.unit(150, "lb"),
  13612. name: "Front",
  13613. image: {
  13614. source: "./media/characters/felix/front.svg",
  13615. extra: 762 / 722,
  13616. bottom: 0.02
  13617. }
  13618. },
  13619. frontClothed: {
  13620. height: math.unit(6, "feet"),
  13621. weight: math.unit(150, "lb"),
  13622. name: "Front (Clothed)",
  13623. image: {
  13624. source: "./media/characters/felix/front-clothed.svg",
  13625. extra: 762 / 722,
  13626. bottom: 0.02
  13627. }
  13628. },
  13629. },
  13630. [
  13631. {
  13632. name: "Normal",
  13633. height: math.unit(6 + 8 / 12, "feet"),
  13634. default: true
  13635. },
  13636. {
  13637. name: "Macro",
  13638. height: math.unit(2600, "feet")
  13639. },
  13640. {
  13641. name: "Megamacro",
  13642. height: math.unit(450, "miles")
  13643. },
  13644. ]
  13645. ))
  13646. characterMakers.push(() => makeCharacter(
  13647. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13648. {
  13649. front: {
  13650. height: math.unit(6 + 1 / 12, "feet"),
  13651. weight: math.unit(250, "lb"),
  13652. name: "Front",
  13653. image: {
  13654. source: "./media/characters/tobo/front.svg",
  13655. extra: 608 / 586,
  13656. bottom: 0.023
  13657. }
  13658. },
  13659. back: {
  13660. height: math.unit(6 + 1 / 12, "feet"),
  13661. weight: math.unit(250, "lb"),
  13662. name: "Back",
  13663. image: {
  13664. source: "./media/characters/tobo/back.svg",
  13665. extra: 608 / 586
  13666. }
  13667. },
  13668. },
  13669. [
  13670. {
  13671. name: "Nano",
  13672. height: math.unit(2, "nm")
  13673. },
  13674. {
  13675. name: "Megamicro",
  13676. height: math.unit(0.1, "mm")
  13677. },
  13678. {
  13679. name: "Micro",
  13680. height: math.unit(1, "inch"),
  13681. default: true
  13682. },
  13683. {
  13684. name: "Human-sized",
  13685. height: math.unit(6 + 1 / 12, "feet")
  13686. },
  13687. {
  13688. name: "Macro",
  13689. height: math.unit(250, "feet")
  13690. },
  13691. {
  13692. name: "Megamacro",
  13693. height: math.unit(75, "miles")
  13694. },
  13695. {
  13696. name: "Texas-sized",
  13697. height: math.unit(750, "miles")
  13698. },
  13699. {
  13700. name: "Teramacro",
  13701. height: math.unit(50000, "miles")
  13702. },
  13703. ]
  13704. ))
  13705. characterMakers.push(() => makeCharacter(
  13706. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13707. {
  13708. front: {
  13709. height: math.unit(6, "feet"),
  13710. weight: math.unit(269, "lb"),
  13711. name: "Front",
  13712. image: {
  13713. source: "./media/characters/danny-kapowsky/front.svg",
  13714. extra: 766 / 736,
  13715. bottom: 0.044
  13716. }
  13717. },
  13718. back: {
  13719. height: math.unit(6, "feet"),
  13720. weight: math.unit(269, "lb"),
  13721. name: "Back",
  13722. image: {
  13723. source: "./media/characters/danny-kapowsky/back.svg",
  13724. extra: 797 / 760,
  13725. bottom: 0.025
  13726. }
  13727. },
  13728. },
  13729. [
  13730. {
  13731. name: "Macro",
  13732. height: math.unit(150, "feet"),
  13733. default: true
  13734. },
  13735. {
  13736. name: "Macro+",
  13737. height: math.unit(200, "feet")
  13738. },
  13739. {
  13740. name: "Macro++",
  13741. height: math.unit(300, "feet")
  13742. },
  13743. {
  13744. name: "Macro+++",
  13745. height: math.unit(400, "feet")
  13746. },
  13747. ]
  13748. ))
  13749. characterMakers.push(() => makeCharacter(
  13750. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13751. {
  13752. side: {
  13753. height: math.unit(6, "feet"),
  13754. weight: math.unit(170, "lb"),
  13755. name: "Side",
  13756. image: {
  13757. source: "./media/characters/finn/side.svg",
  13758. extra: 1953 / 1807,
  13759. bottom: 0.057
  13760. }
  13761. },
  13762. },
  13763. [
  13764. {
  13765. name: "Megamacro",
  13766. height: math.unit(14445, "feet"),
  13767. default: true
  13768. },
  13769. ]
  13770. ))
  13771. characterMakers.push(() => makeCharacter(
  13772. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13773. {
  13774. front: {
  13775. height: math.unit(5 + 6 / 12, "feet"),
  13776. weight: math.unit(125, "lb"),
  13777. name: "Front",
  13778. image: {
  13779. source: "./media/characters/roy/front.svg",
  13780. extra: 1,
  13781. bottom: 0.11
  13782. }
  13783. },
  13784. },
  13785. [
  13786. {
  13787. name: "Micro",
  13788. height: math.unit(3, "inches"),
  13789. default: true
  13790. },
  13791. {
  13792. name: "Normal",
  13793. height: math.unit(5 + 6 / 12, "feet")
  13794. },
  13795. {
  13796. name: "Lesser Macro",
  13797. height: math.unit(60, "feet")
  13798. },
  13799. {
  13800. name: "Greater Macro",
  13801. height: math.unit(120, "feet")
  13802. },
  13803. ]
  13804. ))
  13805. characterMakers.push(() => makeCharacter(
  13806. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  13807. {
  13808. front: {
  13809. height: math.unit(6, "feet"),
  13810. weight: math.unit(100, "lb"),
  13811. name: "Front",
  13812. image: {
  13813. source: "./media/characters/aevsivs/front.svg",
  13814. extra: 1,
  13815. bottom: 0.03
  13816. }
  13817. },
  13818. back: {
  13819. height: math.unit(6, "feet"),
  13820. weight: math.unit(100, "lb"),
  13821. name: "Back",
  13822. image: {
  13823. source: "./media/characters/aevsivs/back.svg"
  13824. }
  13825. },
  13826. },
  13827. [
  13828. {
  13829. name: "Micro",
  13830. height: math.unit(2, "inches"),
  13831. default: true
  13832. },
  13833. {
  13834. name: "Normal",
  13835. height: math.unit(5, "feet")
  13836. },
  13837. ]
  13838. ))
  13839. characterMakers.push(() => makeCharacter(
  13840. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  13841. {
  13842. front: {
  13843. height: math.unit(5 + 7 / 12, "feet"),
  13844. weight: math.unit(159, "lb"),
  13845. name: "Front",
  13846. image: {
  13847. source: "./media/characters/hildegard/front.svg",
  13848. extra: 289 / 269,
  13849. bottom: 7.63/297.8
  13850. }
  13851. },
  13852. back: {
  13853. height: math.unit(5 + 7 / 12, "feet"),
  13854. weight: math.unit(159, "lb"),
  13855. name: "Back",
  13856. image: {
  13857. source: "./media/characters/hildegard/back.svg",
  13858. extra: 280/260,
  13859. bottom: 2.3/282
  13860. }
  13861. },
  13862. },
  13863. [
  13864. {
  13865. name: "Normal",
  13866. height: math.unit(5 + 7 / 12, "feet"),
  13867. default: true
  13868. },
  13869. ]
  13870. ))
  13871. characterMakers.push(() => makeCharacter(
  13872. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  13873. {
  13874. bernard: {
  13875. height: math.unit(2 + 7 / 12, "feet"),
  13876. weight: math.unit(66, "lb"),
  13877. name: "Bernard",
  13878. rename: true,
  13879. image: {
  13880. source: "./media/characters/bernard-wilder/bernard.svg",
  13881. extra: 192 / 128,
  13882. bottom: 0.05
  13883. }
  13884. },
  13885. wilder: {
  13886. height: math.unit(5 + 8 / 12, "feet"),
  13887. weight: math.unit(143, "lb"),
  13888. name: "Wilder",
  13889. rename: true,
  13890. image: {
  13891. source: "./media/characters/bernard-wilder/wilder.svg",
  13892. extra: 361 / 312,
  13893. bottom: 0.02
  13894. }
  13895. },
  13896. },
  13897. [
  13898. {
  13899. name: "Normal",
  13900. height: math.unit(2 + 7 / 12, "feet"),
  13901. default: true
  13902. },
  13903. ]
  13904. ))
  13905. characterMakers.push(() => makeCharacter(
  13906. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  13907. {
  13908. anthro: {
  13909. height: math.unit(6 + 1 / 12, "feet"),
  13910. weight: math.unit(155, "lb"),
  13911. name: "Anthro",
  13912. image: {
  13913. source: "./media/characters/hearth/anthro.svg",
  13914. extra: 260 / 250,
  13915. bottom: 0.02
  13916. }
  13917. },
  13918. feral: {
  13919. height: math.unit(3.78, "feet"),
  13920. weight: math.unit(35, "kg"),
  13921. name: "Feral",
  13922. image: {
  13923. source: "./media/characters/hearth/feral.svg",
  13924. extra: 153 / 135,
  13925. bottom: 0.03
  13926. }
  13927. },
  13928. },
  13929. [
  13930. {
  13931. name: "Normal",
  13932. height: math.unit(6 + 1 / 12, "feet"),
  13933. default: true
  13934. },
  13935. ]
  13936. ))
  13937. characterMakers.push(() => makeCharacter(
  13938. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  13939. {
  13940. front: {
  13941. height: math.unit(6, "feet"),
  13942. weight: math.unit(182, "lb"),
  13943. name: "Front",
  13944. image: {
  13945. source: "./media/characters/ingrid/front.svg",
  13946. extra: 294 / 268,
  13947. bottom: 0.027
  13948. }
  13949. },
  13950. },
  13951. [
  13952. {
  13953. name: "Normal",
  13954. height: math.unit(6, "feet"),
  13955. default: true
  13956. },
  13957. ]
  13958. ))
  13959. characterMakers.push(() => makeCharacter(
  13960. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  13961. {
  13962. eevee: {
  13963. height: math.unit(2 + 10 / 12, "feet"),
  13964. weight: math.unit(86, "lb"),
  13965. name: "Malgam",
  13966. image: {
  13967. source: "./media/characters/malgam/eevee.svg",
  13968. extra: 218 / 180,
  13969. bottom: 0.2
  13970. }
  13971. },
  13972. sylveon: {
  13973. height: math.unit(4, "feet"),
  13974. weight: math.unit(101, "lb"),
  13975. name: "Future Malgam",
  13976. rename: true,
  13977. image: {
  13978. source: "./media/characters/malgam/sylveon.svg",
  13979. extra: 371 / 325,
  13980. bottom: 0.015
  13981. }
  13982. },
  13983. gigantamax: {
  13984. height: math.unit(50, "feet"),
  13985. name: "Gigantamax Malgam",
  13986. rename: true,
  13987. image: {
  13988. source: "./media/characters/malgam/gigantamax.svg"
  13989. }
  13990. },
  13991. },
  13992. [
  13993. {
  13994. name: "Normal",
  13995. height: math.unit(2 + 10 / 12, "feet"),
  13996. default: true
  13997. },
  13998. ]
  13999. ))
  14000. characterMakers.push(() => makeCharacter(
  14001. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14002. {
  14003. front: {
  14004. height: math.unit(5 + 11 / 12, "feet"),
  14005. weight: math.unit(188, "lb"),
  14006. name: "Front",
  14007. image: {
  14008. source: "./media/characters/fleur/front.svg",
  14009. extra: 309 / 283,
  14010. bottom: 0.007
  14011. }
  14012. },
  14013. },
  14014. [
  14015. {
  14016. name: "Normal",
  14017. height: math.unit(5 + 11 / 12, "feet"),
  14018. default: true
  14019. },
  14020. ]
  14021. ))
  14022. characterMakers.push(() => makeCharacter(
  14023. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14024. {
  14025. front: {
  14026. height: math.unit(5 + 4 / 12, "feet"),
  14027. weight: math.unit(122, "lb"),
  14028. name: "Front",
  14029. image: {
  14030. source: "./media/characters/jude/front.svg",
  14031. extra: 288 / 273,
  14032. bottom: 0.03
  14033. }
  14034. },
  14035. },
  14036. [
  14037. {
  14038. name: "Normal",
  14039. height: math.unit(5 + 4 / 12, "feet"),
  14040. default: true
  14041. },
  14042. ]
  14043. ))
  14044. characterMakers.push(() => makeCharacter(
  14045. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14046. {
  14047. front: {
  14048. height: math.unit(5 + 11 / 12, "feet"),
  14049. weight: math.unit(190, "lb"),
  14050. name: "Front",
  14051. image: {
  14052. source: "./media/characters/seara/front.svg",
  14053. extra: 1,
  14054. bottom: 0.05
  14055. }
  14056. },
  14057. },
  14058. [
  14059. {
  14060. name: "Normal",
  14061. height: math.unit(5 + 11 / 12, "feet"),
  14062. default: true
  14063. },
  14064. ]
  14065. ))
  14066. characterMakers.push(() => makeCharacter(
  14067. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14068. {
  14069. front: {
  14070. height: math.unit(16 + 5 / 12, "feet"),
  14071. weight: math.unit(524, "lb"),
  14072. name: "Front",
  14073. image: {
  14074. source: "./media/characters/caspian/front.svg",
  14075. extra: 1,
  14076. bottom: 0.04
  14077. }
  14078. },
  14079. },
  14080. [
  14081. {
  14082. name: "Normal",
  14083. height: math.unit(16 + 5 / 12, "feet"),
  14084. default: true
  14085. },
  14086. ]
  14087. ))
  14088. characterMakers.push(() => makeCharacter(
  14089. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14090. {
  14091. front: {
  14092. height: math.unit(5 + 7 / 12, "feet"),
  14093. weight: math.unit(170, "lb"),
  14094. name: "Front",
  14095. image: {
  14096. source: "./media/characters/mika/front.svg",
  14097. extra: 1,
  14098. bottom: 0.016
  14099. }
  14100. },
  14101. },
  14102. [
  14103. {
  14104. name: "Normal",
  14105. height: math.unit(5 + 7 / 12, "feet"),
  14106. default: true
  14107. },
  14108. ]
  14109. ))
  14110. characterMakers.push(() => makeCharacter(
  14111. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14112. {
  14113. front: {
  14114. height: math.unit(6 + 2 / 12, "feet"),
  14115. weight: math.unit(268, "lb"),
  14116. name: "Front",
  14117. image: {
  14118. source: "./media/characters/sol/front.svg",
  14119. extra: 247 / 231,
  14120. bottom: 0.05
  14121. }
  14122. },
  14123. },
  14124. [
  14125. {
  14126. name: "Normal",
  14127. height: math.unit(6 + 2 / 12, "feet"),
  14128. default: true
  14129. },
  14130. ]
  14131. ))
  14132. characterMakers.push(() => makeCharacter(
  14133. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14134. {
  14135. buizel: {
  14136. height: math.unit(2 + 5 / 12, "feet"),
  14137. weight: math.unit(87, "lb"),
  14138. name: "Buizel",
  14139. image: {
  14140. source: "./media/characters/umiko/buizel.svg",
  14141. extra: 172 / 157,
  14142. bottom: 0.01
  14143. }
  14144. },
  14145. floatzel: {
  14146. height: math.unit(5 + 9 / 12, "feet"),
  14147. weight: math.unit(250, "lb"),
  14148. name: "Floatzel",
  14149. image: {
  14150. source: "./media/characters/umiko/floatzel.svg",
  14151. extra: 262 / 248
  14152. }
  14153. },
  14154. },
  14155. [
  14156. {
  14157. name: "Normal",
  14158. height: math.unit(2 + 5 / 12, "feet"),
  14159. default: true
  14160. },
  14161. ]
  14162. ))
  14163. characterMakers.push(() => makeCharacter(
  14164. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14165. {
  14166. front: {
  14167. height: math.unit(6 + 2 / 12, "feet"),
  14168. weight: math.unit(146, "lb"),
  14169. name: "Front",
  14170. image: {
  14171. source: "./media/characters/iliac/front.svg",
  14172. extra: 389 / 365,
  14173. bottom: 0.035
  14174. }
  14175. },
  14176. },
  14177. [
  14178. {
  14179. name: "Normal",
  14180. height: math.unit(6 + 2 / 12, "feet"),
  14181. default: true
  14182. },
  14183. ]
  14184. ))
  14185. characterMakers.push(() => makeCharacter(
  14186. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14187. {
  14188. front: {
  14189. height: math.unit(6, "feet"),
  14190. weight: math.unit(170, "lb"),
  14191. name: "Front",
  14192. image: {
  14193. source: "./media/characters/topaz/front.svg",
  14194. extra: 317 / 303,
  14195. bottom: 0.055
  14196. }
  14197. },
  14198. },
  14199. [
  14200. {
  14201. name: "Normal",
  14202. height: math.unit(6, "feet"),
  14203. default: true
  14204. },
  14205. ]
  14206. ))
  14207. characterMakers.push(() => makeCharacter(
  14208. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14209. {
  14210. front: {
  14211. height: math.unit(5 + 11 / 12, "feet"),
  14212. weight: math.unit(144, "lb"),
  14213. name: "Front",
  14214. image: {
  14215. source: "./media/characters/gabriel/front.svg",
  14216. extra: 285 / 262,
  14217. bottom: 0.004
  14218. }
  14219. },
  14220. },
  14221. [
  14222. {
  14223. name: "Normal",
  14224. height: math.unit(5 + 11 / 12, "feet"),
  14225. default: true
  14226. },
  14227. ]
  14228. ))
  14229. characterMakers.push(() => makeCharacter(
  14230. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14231. {
  14232. side: {
  14233. height: math.unit(6 + 5 / 12, "feet"),
  14234. weight: math.unit(300, "lb"),
  14235. name: "Side",
  14236. image: {
  14237. source: "./media/characters/tempest-suicune/side.svg",
  14238. extra: 195 / 154,
  14239. bottom: 0.04
  14240. }
  14241. },
  14242. },
  14243. [
  14244. {
  14245. name: "Normal",
  14246. height: math.unit(6 + 5 / 12, "feet"),
  14247. default: true
  14248. },
  14249. ]
  14250. ))
  14251. characterMakers.push(() => makeCharacter(
  14252. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14253. {
  14254. front: {
  14255. height: math.unit(7 + 2 / 12, "feet"),
  14256. weight: math.unit(322, "lb"),
  14257. name: "Front",
  14258. image: {
  14259. source: "./media/characters/vulcan/front.svg",
  14260. extra: 154 / 147,
  14261. bottom: 0.04
  14262. }
  14263. },
  14264. },
  14265. [
  14266. {
  14267. name: "Normal",
  14268. height: math.unit(7 + 2 / 12, "feet"),
  14269. default: true
  14270. },
  14271. ]
  14272. ))
  14273. characterMakers.push(() => makeCharacter(
  14274. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14275. {
  14276. front: {
  14277. height: math.unit(5 + 10 / 12, "feet"),
  14278. weight: math.unit(264, "lb"),
  14279. name: "Front",
  14280. image: {
  14281. source: "./media/characters/gault/front.svg",
  14282. extra: 161 / 140,
  14283. bottom: 0.028
  14284. }
  14285. },
  14286. },
  14287. [
  14288. {
  14289. name: "Normal",
  14290. height: math.unit(5 + 10 / 12, "feet"),
  14291. default: true
  14292. },
  14293. ]
  14294. ))
  14295. characterMakers.push(() => makeCharacter(
  14296. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14297. {
  14298. front: {
  14299. height: math.unit(6, "feet"),
  14300. weight: math.unit(150, "lb"),
  14301. name: "Front",
  14302. image: {
  14303. source: "./media/characters/shard/front.svg",
  14304. extra: 273 / 238,
  14305. bottom: 0.02
  14306. }
  14307. },
  14308. },
  14309. [
  14310. {
  14311. name: "Normal",
  14312. height: math.unit(3 + 6 / 12, "feet"),
  14313. default: true
  14314. },
  14315. ]
  14316. ))
  14317. characterMakers.push(() => makeCharacter(
  14318. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14319. {
  14320. front: {
  14321. height: math.unit(5 + 11 / 12, "feet"),
  14322. weight: math.unit(146, "lb"),
  14323. name: "Front",
  14324. image: {
  14325. source: "./media/characters/ashe/front.svg",
  14326. extra: 400 / 373,
  14327. bottom: 0.01
  14328. }
  14329. },
  14330. },
  14331. [
  14332. {
  14333. name: "Normal",
  14334. height: math.unit(5 + 11 / 12, "feet"),
  14335. default: true
  14336. },
  14337. ]
  14338. ))
  14339. characterMakers.push(() => makeCharacter(
  14340. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14341. {
  14342. front: {
  14343. height: math.unit(5 + 5 / 12, "feet"),
  14344. weight: math.unit(135, "lb"),
  14345. name: "Front",
  14346. image: {
  14347. source: "./media/characters/beatrix/front.svg",
  14348. extra: 392 / 379,
  14349. bottom: 0.01
  14350. }
  14351. },
  14352. },
  14353. [
  14354. {
  14355. name: "Normal",
  14356. height: math.unit(6, "feet"),
  14357. default: true
  14358. },
  14359. ]
  14360. ))
  14361. characterMakers.push(() => makeCharacter(
  14362. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14363. {
  14364. front: {
  14365. height: math.unit(6, "feet"),
  14366. weight: math.unit(150, "lb"),
  14367. name: "Front",
  14368. image: {
  14369. source: "./media/characters/ignatius/front.svg",
  14370. extra: 245 / 222,
  14371. bottom: 0.01
  14372. }
  14373. },
  14374. },
  14375. [
  14376. {
  14377. name: "Normal",
  14378. height: math.unit(5 + 5 / 12, "feet"),
  14379. default: true
  14380. },
  14381. ]
  14382. ))
  14383. characterMakers.push(() => makeCharacter(
  14384. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14385. {
  14386. front: {
  14387. height: math.unit(6 + 2 / 12, "feet"),
  14388. weight: math.unit(138, "lb"),
  14389. name: "Front",
  14390. image: {
  14391. source: "./media/characters/mei-li/front.svg",
  14392. extra: 237 / 229,
  14393. bottom: 0.03
  14394. }
  14395. },
  14396. },
  14397. [
  14398. {
  14399. name: "Normal",
  14400. height: math.unit(6 + 2 / 12, "feet"),
  14401. default: true
  14402. },
  14403. ]
  14404. ))
  14405. characterMakers.push(() => makeCharacter(
  14406. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14407. {
  14408. front: {
  14409. height: math.unit(2 + 4 / 12, "feet"),
  14410. weight: math.unit(62, "lb"),
  14411. name: "Front",
  14412. image: {
  14413. source: "./media/characters/puru/front.svg",
  14414. extra: 206 / 149,
  14415. bottom: 0.06
  14416. }
  14417. },
  14418. },
  14419. [
  14420. {
  14421. name: "Normal",
  14422. height: math.unit(2 + 4 / 12, "feet"),
  14423. default: true
  14424. },
  14425. ]
  14426. ))
  14427. characterMakers.push(() => makeCharacter(
  14428. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14429. {
  14430. taur: {
  14431. height: math.unit(11, "feet"),
  14432. weight: math.unit(500, "lb"),
  14433. name: "Taur",
  14434. image: {
  14435. source: "./media/characters/kee/taur.svg",
  14436. extra: 1,
  14437. bottom: 0.04
  14438. }
  14439. },
  14440. },
  14441. [
  14442. {
  14443. name: "Normal",
  14444. height: math.unit(11, "feet"),
  14445. default: true
  14446. },
  14447. ]
  14448. ))
  14449. characterMakers.push(() => makeCharacter(
  14450. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14451. {
  14452. anthro: {
  14453. height: math.unit(7, "feet"),
  14454. weight: math.unit(190, "lb"),
  14455. name: "Anthro",
  14456. image: {
  14457. source: "./media/characters/cobalt-dracha/anthro.svg",
  14458. extra: 231 / 225,
  14459. bottom: 0.04
  14460. }
  14461. },
  14462. feral: {
  14463. height: math.unit(9 + 7 / 12, "feet"),
  14464. weight: math.unit(294, "lb"),
  14465. name: "Feral",
  14466. image: {
  14467. source: "./media/characters/cobalt-dracha/feral.svg",
  14468. extra: 692 / 633,
  14469. bottom: 0.05
  14470. }
  14471. },
  14472. },
  14473. [
  14474. {
  14475. name: "Normal",
  14476. height: math.unit(7, "feet"),
  14477. default: true
  14478. },
  14479. ]
  14480. ))
  14481. characterMakers.push(() => makeCharacter(
  14482. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14483. {
  14484. fallen: {
  14485. height: math.unit(11 + 8 / 12, "feet"),
  14486. weight: math.unit(485, "lb"),
  14487. name: "Java (Fallen)",
  14488. rename: true,
  14489. image: {
  14490. source: "./media/characters/java/fallen.svg",
  14491. extra: 226 / 208,
  14492. bottom: 0.005
  14493. }
  14494. },
  14495. godkin: {
  14496. height: math.unit(10 + 6 / 12, "feet"),
  14497. weight: math.unit(328, "lb"),
  14498. name: "Java (Godkin)",
  14499. rename: true,
  14500. image: {
  14501. source: "./media/characters/java/godkin.svg",
  14502. extra: 270 / 262,
  14503. bottom: 0.02
  14504. }
  14505. },
  14506. },
  14507. [
  14508. {
  14509. name: "Normal",
  14510. height: math.unit(11 + 8 / 12, "feet"),
  14511. default: true
  14512. },
  14513. ]
  14514. ))
  14515. characterMakers.push(() => makeCharacter(
  14516. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14517. {
  14518. front: {
  14519. height: math.unit(7 + 8 / 12, "feet"),
  14520. weight: math.unit(320, "lb"),
  14521. name: "Front",
  14522. image: {
  14523. source: "./media/characters/skoll/front.svg",
  14524. extra: 232 / 220,
  14525. bottom: 0.02
  14526. }
  14527. },
  14528. },
  14529. [
  14530. {
  14531. name: "Normal",
  14532. height: math.unit(7 + 8 / 12, "feet"),
  14533. default: true
  14534. },
  14535. ]
  14536. ))
  14537. characterMakers.push(() => makeCharacter(
  14538. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14539. {
  14540. front: {
  14541. height: math.unit(5 + 9 / 12, "feet"),
  14542. weight: math.unit(170, "lb"),
  14543. name: "Front",
  14544. image: {
  14545. source: "./media/characters/purna/front.svg",
  14546. extra: 239 / 229,
  14547. bottom: 0.01
  14548. }
  14549. },
  14550. },
  14551. [
  14552. {
  14553. name: "Normal",
  14554. height: math.unit(5 + 9 / 12, "feet"),
  14555. default: true
  14556. },
  14557. ]
  14558. ))
  14559. characterMakers.push(() => makeCharacter(
  14560. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14561. {
  14562. front: {
  14563. height: math.unit(5 + 9 / 12, "feet"),
  14564. weight: math.unit(142, "lb"),
  14565. name: "Front",
  14566. image: {
  14567. source: "./media/characters/kuva/front.svg",
  14568. extra: 281 / 271,
  14569. bottom: 0.006
  14570. }
  14571. },
  14572. },
  14573. [
  14574. {
  14575. name: "Normal",
  14576. height: math.unit(5 + 9 / 12, "feet"),
  14577. default: true
  14578. },
  14579. ]
  14580. ))
  14581. characterMakers.push(() => makeCharacter(
  14582. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14583. {
  14584. anthro: {
  14585. height: math.unit(9 + 2 / 12, "feet"),
  14586. weight: math.unit(270, "lb"),
  14587. name: "Anthro",
  14588. image: {
  14589. source: "./media/characters/embra/anthro.svg",
  14590. extra: 200 / 187,
  14591. bottom: 0.02
  14592. }
  14593. },
  14594. feral: {
  14595. height: math.unit(18 + 8 / 12, "feet"),
  14596. weight: math.unit(576, "lb"),
  14597. name: "Feral",
  14598. image: {
  14599. source: "./media/characters/embra/feral.svg",
  14600. extra: 152 / 137,
  14601. bottom: 0.037
  14602. }
  14603. },
  14604. },
  14605. [
  14606. {
  14607. name: "Normal",
  14608. height: math.unit(9 + 2 / 12, "feet"),
  14609. default: true
  14610. },
  14611. ]
  14612. ))
  14613. characterMakers.push(() => makeCharacter(
  14614. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14615. {
  14616. anthro: {
  14617. height: math.unit(10 + 9 / 12, "feet"),
  14618. weight: math.unit(224, "lb"),
  14619. name: "Anthro",
  14620. image: {
  14621. source: "./media/characters/grottos/anthro.svg",
  14622. extra: 350 / 332,
  14623. bottom: 0.045
  14624. }
  14625. },
  14626. feral: {
  14627. height: math.unit(20 + 7 / 12, "feet"),
  14628. weight: math.unit(629, "lb"),
  14629. name: "Feral",
  14630. image: {
  14631. source: "./media/characters/grottos/feral.svg",
  14632. extra: 207 / 190,
  14633. bottom: 0.05
  14634. }
  14635. },
  14636. },
  14637. [
  14638. {
  14639. name: "Normal",
  14640. height: math.unit(10 + 9 / 12, "feet"),
  14641. default: true
  14642. },
  14643. ]
  14644. ))
  14645. characterMakers.push(() => makeCharacter(
  14646. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14647. {
  14648. anthro: {
  14649. height: math.unit(9 + 6 / 12, "feet"),
  14650. weight: math.unit(298, "lb"),
  14651. name: "Anthro",
  14652. image: {
  14653. source: "./media/characters/frifna/anthro.svg",
  14654. extra: 282 / 269,
  14655. bottom: 0.015
  14656. }
  14657. },
  14658. feral: {
  14659. height: math.unit(16 + 2 / 12, "feet"),
  14660. weight: math.unit(624, "lb"),
  14661. name: "Feral",
  14662. image: {
  14663. source: "./media/characters/frifna/feral.svg"
  14664. }
  14665. },
  14666. },
  14667. [
  14668. {
  14669. name: "Normal",
  14670. height: math.unit(9 + 6 / 12, "feet"),
  14671. default: true
  14672. },
  14673. ]
  14674. ))
  14675. characterMakers.push(() => makeCharacter(
  14676. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14677. {
  14678. front: {
  14679. height: math.unit(6 + 2 / 12, "feet"),
  14680. weight: math.unit(168, "lb"),
  14681. name: "Front",
  14682. image: {
  14683. source: "./media/characters/elise/front.svg",
  14684. extra: 276 / 271
  14685. }
  14686. },
  14687. },
  14688. [
  14689. {
  14690. name: "Normal",
  14691. height: math.unit(6 + 2 / 12, "feet"),
  14692. default: true
  14693. },
  14694. ]
  14695. ))
  14696. characterMakers.push(() => makeCharacter(
  14697. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14698. {
  14699. front: {
  14700. height: math.unit(5 + 10 / 12, "feet"),
  14701. weight: math.unit(210, "lb"),
  14702. name: "Front",
  14703. image: {
  14704. source: "./media/characters/glade/front.svg",
  14705. extra: 258 / 247,
  14706. bottom: 0.008
  14707. }
  14708. },
  14709. },
  14710. [
  14711. {
  14712. name: "Normal",
  14713. height: math.unit(5 + 10 / 12, "feet"),
  14714. default: true
  14715. },
  14716. ]
  14717. ))
  14718. characterMakers.push(() => makeCharacter(
  14719. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14720. {
  14721. front: {
  14722. height: math.unit(5 + 10 / 12, "feet"),
  14723. weight: math.unit(129, "lb"),
  14724. name: "Front",
  14725. image: {
  14726. source: "./media/characters/rina/front.svg",
  14727. extra: 266 / 255,
  14728. bottom: 0.005
  14729. }
  14730. },
  14731. },
  14732. [
  14733. {
  14734. name: "Normal",
  14735. height: math.unit(5 + 10 / 12, "feet"),
  14736. default: true
  14737. },
  14738. ]
  14739. ))
  14740. characterMakers.push(() => makeCharacter(
  14741. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14742. {
  14743. front: {
  14744. height: math.unit(6 + 1 / 12, "feet"),
  14745. weight: math.unit(192, "lb"),
  14746. name: "Front",
  14747. image: {
  14748. source: "./media/characters/veronica/front.svg",
  14749. extra: 319 / 309,
  14750. bottom: 0.005
  14751. }
  14752. },
  14753. },
  14754. [
  14755. {
  14756. name: "Normal",
  14757. height: math.unit(6 + 1 / 12, "feet"),
  14758. default: true
  14759. },
  14760. ]
  14761. ))
  14762. characterMakers.push(() => makeCharacter(
  14763. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14764. {
  14765. front: {
  14766. height: math.unit(9 + 3 / 12, "feet"),
  14767. weight: math.unit(1100, "lb"),
  14768. name: "Front",
  14769. image: {
  14770. source: "./media/characters/braxton/front.svg",
  14771. extra: 1057 / 984,
  14772. bottom: 0.05
  14773. }
  14774. },
  14775. },
  14776. [
  14777. {
  14778. name: "Normal",
  14779. height: math.unit(9 + 3 / 12, "feet")
  14780. },
  14781. {
  14782. name: "Giant",
  14783. height: math.unit(300, "feet"),
  14784. default: true
  14785. },
  14786. {
  14787. name: "Macro",
  14788. height: math.unit(700, "feet")
  14789. },
  14790. {
  14791. name: "Megamacro",
  14792. height: math.unit(6000, "feet")
  14793. },
  14794. ]
  14795. ))
  14796. characterMakers.push(() => makeCharacter(
  14797. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  14798. {
  14799. front: {
  14800. height: math.unit(6 + 7 / 12, "feet"),
  14801. weight: math.unit(150, "lb"),
  14802. name: "Front",
  14803. image: {
  14804. source: "./media/characters/blue-feyonics/front.svg",
  14805. extra: 1403 / 1306,
  14806. bottom: 0.047
  14807. }
  14808. },
  14809. },
  14810. [
  14811. {
  14812. name: "Normal",
  14813. height: math.unit(6 + 7 / 12, "feet"),
  14814. default: true
  14815. },
  14816. ]
  14817. ))
  14818. characterMakers.push(() => makeCharacter(
  14819. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  14820. {
  14821. front: {
  14822. height: math.unit(1.8, "meters"),
  14823. weight: math.unit(60, "kg"),
  14824. name: "Front",
  14825. image: {
  14826. source: "./media/characters/maxwell/front.svg",
  14827. extra: 2060 / 1873
  14828. }
  14829. },
  14830. },
  14831. [
  14832. {
  14833. name: "Micro",
  14834. height: math.unit(1, "mm")
  14835. },
  14836. {
  14837. name: "Normal",
  14838. height: math.unit(1.8, "meter"),
  14839. default: true
  14840. },
  14841. {
  14842. name: "Macro",
  14843. height: math.unit(30, "meters")
  14844. },
  14845. {
  14846. name: "Megamacro",
  14847. height: math.unit(10, "km")
  14848. },
  14849. ]
  14850. ))
  14851. characterMakers.push(() => makeCharacter(
  14852. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  14853. {
  14854. front: {
  14855. height: math.unit(6, "feet"),
  14856. weight: math.unit(150, "lb"),
  14857. name: "Front",
  14858. image: {
  14859. source: "./media/characters/jack/front.svg",
  14860. extra: 1754 / 1640,
  14861. bottom: 0.01
  14862. }
  14863. },
  14864. },
  14865. [
  14866. {
  14867. name: "Normal",
  14868. height: math.unit(80000, "feet"),
  14869. default: true
  14870. },
  14871. {
  14872. name: "Max size",
  14873. height: math.unit(10, "lightyears")
  14874. },
  14875. ]
  14876. ))
  14877. characterMakers.push(() => makeCharacter(
  14878. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  14879. {
  14880. upright: {
  14881. height: math.unit(7, "feet"),
  14882. weight: math.unit(170, "lb"),
  14883. name: "Upright",
  14884. image: {
  14885. source: "./media/characters/cafat/upright.svg",
  14886. bottom: 0.01
  14887. }
  14888. },
  14889. uprightFull: {
  14890. height: math.unit(7, "feet"),
  14891. weight: math.unit(170, "lb"),
  14892. name: "Upright (Full)",
  14893. image: {
  14894. source: "./media/characters/cafat/upright-full.svg",
  14895. bottom: 0.01
  14896. }
  14897. },
  14898. side: {
  14899. height: math.unit(5, "feet"),
  14900. weight: math.unit(150, "lb"),
  14901. name: "Side",
  14902. image: {
  14903. source: "./media/characters/cafat/side.svg"
  14904. }
  14905. },
  14906. },
  14907. [
  14908. {
  14909. name: "Small",
  14910. height: math.unit(7, "feet"),
  14911. default: true
  14912. },
  14913. {
  14914. name: "Large",
  14915. height: math.unit(15.5, "feet")
  14916. },
  14917. ]
  14918. ))
  14919. characterMakers.push(() => makeCharacter(
  14920. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  14921. {
  14922. front: {
  14923. height: math.unit(6, "feet"),
  14924. weight: math.unit(150, "lb"),
  14925. name: "Front",
  14926. image: {
  14927. source: "./media/characters/verin-raharra/front.svg",
  14928. extra: 5019 / 4835,
  14929. bottom: 0.023
  14930. }
  14931. },
  14932. },
  14933. [
  14934. {
  14935. name: "Normal",
  14936. height: math.unit(7 + 5 / 12, "feet"),
  14937. default: true
  14938. },
  14939. {
  14940. name: "Upsized",
  14941. height: math.unit(20, "feet")
  14942. },
  14943. ]
  14944. ))
  14945. characterMakers.push(() => makeCharacter(
  14946. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  14947. {
  14948. front: {
  14949. height: math.unit(7, "feet"),
  14950. weight: math.unit(230, "lb"),
  14951. name: "Front",
  14952. image: {
  14953. source: "./media/characters/nakata/front.svg",
  14954. extra: 1.005,
  14955. bottom: 0.01
  14956. }
  14957. },
  14958. },
  14959. [
  14960. {
  14961. name: "Normal",
  14962. height: math.unit(7, "feet"),
  14963. default: true
  14964. },
  14965. {
  14966. name: "Big",
  14967. height: math.unit(14, "feet")
  14968. },
  14969. {
  14970. name: "Macro",
  14971. height: math.unit(400, "feet")
  14972. },
  14973. ]
  14974. ))
  14975. characterMakers.push(() => makeCharacter(
  14976. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  14977. {
  14978. front: {
  14979. height: math.unit(4.91, "feet"),
  14980. weight: math.unit(100, "lb"),
  14981. name: "Front",
  14982. image: {
  14983. source: "./media/characters/lily/front.svg",
  14984. extra: 1585 / 1415,
  14985. bottom: 0.02
  14986. }
  14987. },
  14988. },
  14989. [
  14990. {
  14991. name: "Normal",
  14992. height: math.unit(4.91, "feet"),
  14993. default: true
  14994. },
  14995. ]
  14996. ))
  14997. characterMakers.push(() => makeCharacter(
  14998. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  14999. {
  15000. laying: {
  15001. height: math.unit(4 + 4 / 12, "feet"),
  15002. weight: math.unit(600, "lb"),
  15003. name: "Laying",
  15004. image: {
  15005. source: "./media/characters/sheila/laying.svg",
  15006. extra: 1333 / 1265,
  15007. bottom: 0.16
  15008. }
  15009. },
  15010. },
  15011. [
  15012. {
  15013. name: "Normal",
  15014. height: math.unit(4 + 4 / 12, "feet"),
  15015. default: true
  15016. },
  15017. ]
  15018. ))
  15019. characterMakers.push(() => makeCharacter(
  15020. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15021. {
  15022. front: {
  15023. height: math.unit(6, "feet"),
  15024. weight: math.unit(190, "lb"),
  15025. name: "Front",
  15026. image: {
  15027. source: "./media/characters/sax/front.svg",
  15028. extra: 1187 / 973,
  15029. bottom: 0.042
  15030. }
  15031. },
  15032. },
  15033. [
  15034. {
  15035. name: "Micro",
  15036. height: math.unit(4, "inches"),
  15037. default: true
  15038. },
  15039. ]
  15040. ))
  15041. characterMakers.push(() => makeCharacter(
  15042. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15043. {
  15044. front: {
  15045. height: math.unit(6, "feet"),
  15046. weight: math.unit(150, "lb"),
  15047. name: "Front",
  15048. image: {
  15049. source: "./media/characters/pandora/front.svg",
  15050. extra: 2720 / 2556,
  15051. bottom: 0.015
  15052. }
  15053. },
  15054. back: {
  15055. height: math.unit(6, "feet"),
  15056. weight: math.unit(150, "lb"),
  15057. name: "Back",
  15058. image: {
  15059. source: "./media/characters/pandora/back.svg",
  15060. extra: 2720 / 2556,
  15061. bottom: 0.01
  15062. }
  15063. },
  15064. beans: {
  15065. height: math.unit(6 / 8, "feet"),
  15066. name: "Beans",
  15067. image: {
  15068. source: "./media/characters/pandora/beans.svg"
  15069. }
  15070. },
  15071. skirt: {
  15072. height: math.unit(6, "feet"),
  15073. weight: math.unit(150, "lb"),
  15074. name: "Skirt",
  15075. image: {
  15076. source: "./media/characters/pandora/skirt.svg",
  15077. extra: 1622 / 1525,
  15078. bottom: 0.015
  15079. }
  15080. },
  15081. hoodie: {
  15082. height: math.unit(6, "feet"),
  15083. weight: math.unit(150, "lb"),
  15084. name: "Hoodie",
  15085. image: {
  15086. source: "./media/characters/pandora/hoodie.svg",
  15087. extra: 1622 / 1525,
  15088. bottom: 0.015
  15089. }
  15090. },
  15091. casual: {
  15092. height: math.unit(6, "feet"),
  15093. weight: math.unit(150, "lb"),
  15094. name: "Casual",
  15095. image: {
  15096. source: "./media/characters/pandora/casual.svg",
  15097. extra: 1622 / 1525,
  15098. bottom: 0.015
  15099. }
  15100. },
  15101. },
  15102. [
  15103. {
  15104. name: "Normal",
  15105. height: math.unit(6, "feet")
  15106. },
  15107. {
  15108. name: "Big Steppy",
  15109. height: math.unit(1, "km"),
  15110. default: true
  15111. },
  15112. ]
  15113. ))
  15114. characterMakers.push(() => makeCharacter(
  15115. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15116. {
  15117. side: {
  15118. height: math.unit(10, "feet"),
  15119. weight: math.unit(800, "kg"),
  15120. name: "Side",
  15121. image: {
  15122. source: "./media/characters/venio-darcony/side.svg",
  15123. extra: 1373 / 1003,
  15124. bottom: 0.037
  15125. }
  15126. },
  15127. front: {
  15128. height: math.unit(19, "feet"),
  15129. weight: math.unit(800, "kg"),
  15130. name: "Front",
  15131. image: {
  15132. source: "./media/characters/venio-darcony/front.svg"
  15133. }
  15134. },
  15135. back: {
  15136. height: math.unit(19, "feet"),
  15137. weight: math.unit(800, "kg"),
  15138. name: "Back",
  15139. image: {
  15140. source: "./media/characters/venio-darcony/back.svg"
  15141. }
  15142. },
  15143. sideNsfw: {
  15144. height: math.unit(10, "feet"),
  15145. weight: math.unit(800, "kg"),
  15146. name: "Side (NSFW)",
  15147. image: {
  15148. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15149. extra: 1373 / 1003,
  15150. bottom: 0.037
  15151. }
  15152. },
  15153. frontNsfw: {
  15154. height: math.unit(19, "feet"),
  15155. weight: math.unit(800, "kg"),
  15156. name: "Front (NSFW)",
  15157. image: {
  15158. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15159. }
  15160. },
  15161. backNsfw: {
  15162. height: math.unit(19, "feet"),
  15163. weight: math.unit(800, "kg"),
  15164. name: "Back (NSFW)",
  15165. image: {
  15166. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15167. }
  15168. },
  15169. sideArmored: {
  15170. height: math.unit(10, "feet"),
  15171. weight: math.unit(800, "kg"),
  15172. name: "Side (Armored)",
  15173. image: {
  15174. source: "./media/characters/venio-darcony/side-armored.svg",
  15175. extra: 1373 / 1003,
  15176. bottom: 0.037
  15177. }
  15178. },
  15179. frontArmored: {
  15180. height: math.unit(19, "feet"),
  15181. weight: math.unit(900, "kg"),
  15182. name: "Front (Armored)",
  15183. image: {
  15184. source: "./media/characters/venio-darcony/front-armored.svg"
  15185. }
  15186. },
  15187. backArmored: {
  15188. height: math.unit(19, "feet"),
  15189. weight: math.unit(900, "kg"),
  15190. name: "Back (Armored)",
  15191. image: {
  15192. source: "./media/characters/venio-darcony/back-armored.svg"
  15193. }
  15194. },
  15195. sword: {
  15196. height: math.unit(10, "feet"),
  15197. weight: math.unit(50, "lb"),
  15198. name: "Sword",
  15199. image: {
  15200. source: "./media/characters/venio-darcony/sword.svg"
  15201. }
  15202. },
  15203. },
  15204. [
  15205. {
  15206. name: "Normal",
  15207. height: math.unit(10, "feet")
  15208. },
  15209. {
  15210. name: "Macro",
  15211. height: math.unit(130, "feet"),
  15212. default: true
  15213. },
  15214. {
  15215. name: "Macro+",
  15216. height: math.unit(240, "feet")
  15217. },
  15218. ]
  15219. ))
  15220. characterMakers.push(() => makeCharacter(
  15221. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15222. {
  15223. front: {
  15224. height: math.unit(6, "feet"),
  15225. weight: math.unit(150, "lb"),
  15226. name: "Front",
  15227. image: {
  15228. source: "./media/characters/veski/front.svg",
  15229. extra: 1299 / 1225,
  15230. bottom: 0.04
  15231. }
  15232. },
  15233. back: {
  15234. height: math.unit(6, "feet"),
  15235. weight: math.unit(150, "lb"),
  15236. name: "Back",
  15237. image: {
  15238. source: "./media/characters/veski/back.svg",
  15239. extra: 1299 / 1225,
  15240. bottom: 0.008
  15241. }
  15242. },
  15243. maw: {
  15244. height: math.unit(1.5 * 1.21, "feet"),
  15245. name: "Maw",
  15246. image: {
  15247. source: "./media/characters/veski/maw.svg"
  15248. }
  15249. },
  15250. },
  15251. [
  15252. {
  15253. name: "Macro",
  15254. height: math.unit(2, "km"),
  15255. default: true
  15256. },
  15257. ]
  15258. ))
  15259. characterMakers.push(() => makeCharacter(
  15260. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15261. {
  15262. front: {
  15263. height: math.unit(5 + 7 / 12, "feet"),
  15264. name: "Front",
  15265. image: {
  15266. source: "./media/characters/isabelle/front.svg",
  15267. extra: 2130 / 1976,
  15268. bottom: 0.05
  15269. }
  15270. },
  15271. },
  15272. [
  15273. {
  15274. name: "Supermicro",
  15275. height: math.unit(10, "micrometers")
  15276. },
  15277. {
  15278. name: "Micro",
  15279. height: math.unit(1, "inch")
  15280. },
  15281. {
  15282. name: "Tiny",
  15283. height: math.unit(5, "inches")
  15284. },
  15285. {
  15286. name: "Standard",
  15287. height: math.unit(5 + 7 / 12, "inches")
  15288. },
  15289. {
  15290. name: "Macro",
  15291. height: math.unit(80, "meters"),
  15292. default: true
  15293. },
  15294. {
  15295. name: "Megamacro",
  15296. height: math.unit(250, "meters")
  15297. },
  15298. {
  15299. name: "Gigamacro",
  15300. height: math.unit(5, "km")
  15301. },
  15302. {
  15303. name: "Cosmic",
  15304. height: math.unit(2.5e6, "miles")
  15305. },
  15306. ]
  15307. ))
  15308. characterMakers.push(() => makeCharacter(
  15309. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15310. {
  15311. front: {
  15312. height: math.unit(6, "feet"),
  15313. weight: math.unit(150, "lb"),
  15314. name: "Front",
  15315. image: {
  15316. source: "./media/characters/hanzo/front.svg",
  15317. extra: 374 / 344,
  15318. bottom: 0.02
  15319. }
  15320. },
  15321. },
  15322. [
  15323. {
  15324. name: "Normal",
  15325. height: math.unit(8, "feet"),
  15326. default: true
  15327. },
  15328. ]
  15329. ))
  15330. characterMakers.push(() => makeCharacter(
  15331. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15332. {
  15333. front: {
  15334. height: math.unit(7, "feet"),
  15335. weight: math.unit(130, "lb"),
  15336. name: "Front",
  15337. image: {
  15338. source: "./media/characters/anna/front.svg",
  15339. extra: 169 / 145,
  15340. bottom: 0.06
  15341. }
  15342. },
  15343. full: {
  15344. height: math.unit(4.96, "feet"),
  15345. weight: math.unit(220, "lb"),
  15346. name: "Full",
  15347. image: {
  15348. source: "./media/characters/anna/full.svg",
  15349. extra: 138 / 114,
  15350. bottom: 0.15
  15351. }
  15352. },
  15353. tongue: {
  15354. height: math.unit(2.53, "feet"),
  15355. name: "Tongue",
  15356. image: {
  15357. source: "./media/characters/anna/tongue.svg"
  15358. }
  15359. },
  15360. },
  15361. [
  15362. {
  15363. name: "Normal",
  15364. height: math.unit(7, "feet"),
  15365. default: true
  15366. },
  15367. ]
  15368. ))
  15369. characterMakers.push(() => makeCharacter(
  15370. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15371. {
  15372. front: {
  15373. height: math.unit(7, "feet"),
  15374. weight: math.unit(150, "lb"),
  15375. name: "Front",
  15376. image: {
  15377. source: "./media/characters/ian-corvid/front.svg",
  15378. extra: 150 / 142,
  15379. bottom: 0.02
  15380. }
  15381. },
  15382. back: {
  15383. height: math.unit(7, "feet"),
  15384. weight: math.unit(150, "lb"),
  15385. name: "Back",
  15386. image: {
  15387. source: "./media/characters/ian-corvid/back.svg",
  15388. extra: 150 / 143,
  15389. bottom: 0.01
  15390. }
  15391. },
  15392. stomping: {
  15393. height: math.unit(7, "feet"),
  15394. weight: math.unit(150, "lb"),
  15395. name: "Stomping",
  15396. image: {
  15397. source: "./media/characters/ian-corvid/stomping.svg",
  15398. extra: 76 / 72
  15399. }
  15400. },
  15401. sitting: {
  15402. height: math.unit(7 / 1.8, "feet"),
  15403. weight: math.unit(150, "lb"),
  15404. name: "Sitting",
  15405. image: {
  15406. source: "./media/characters/ian-corvid/sitting.svg",
  15407. extra: 1400 / 1269,
  15408. bottom: 0.15
  15409. }
  15410. },
  15411. },
  15412. [
  15413. {
  15414. name: "Tiny Microw",
  15415. height: math.unit(1, "inch")
  15416. },
  15417. {
  15418. name: "Microw",
  15419. height: math.unit(6, "inches")
  15420. },
  15421. {
  15422. name: "Crow",
  15423. height: math.unit(7 + 1 / 12, "feet"),
  15424. default: true
  15425. },
  15426. {
  15427. name: "Macrow",
  15428. height: math.unit(176, "feet")
  15429. },
  15430. ]
  15431. ))
  15432. characterMakers.push(() => makeCharacter(
  15433. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15434. {
  15435. front: {
  15436. height: math.unit(5 + 7 / 12, "feet"),
  15437. weight: math.unit(147, "lb"),
  15438. name: "Front",
  15439. image: {
  15440. source: "./media/characters/natalie-kellon/front.svg",
  15441. extra: 1214 / 1141,
  15442. bottom: 0.02
  15443. }
  15444. },
  15445. },
  15446. [
  15447. {
  15448. name: "Micro",
  15449. height: math.unit(1 / 16, "inch")
  15450. },
  15451. {
  15452. name: "Tiny",
  15453. height: math.unit(4, "inches")
  15454. },
  15455. {
  15456. name: "Normal",
  15457. height: math.unit(5 + 7 / 12, "feet"),
  15458. default: true
  15459. },
  15460. {
  15461. name: "Amazon",
  15462. height: math.unit(12, "feet")
  15463. },
  15464. {
  15465. name: "Giantess",
  15466. height: math.unit(160, "meters")
  15467. },
  15468. {
  15469. name: "Titaness",
  15470. height: math.unit(800, "meters")
  15471. },
  15472. ]
  15473. ))
  15474. characterMakers.push(() => makeCharacter(
  15475. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15476. {
  15477. front: {
  15478. height: math.unit(6, "feet"),
  15479. weight: math.unit(150, "lb"),
  15480. name: "Front",
  15481. image: {
  15482. source: "./media/characters/alluria/front.svg",
  15483. extra: 806 / 738,
  15484. bottom: 0.01
  15485. }
  15486. },
  15487. side: {
  15488. height: math.unit(6, "feet"),
  15489. weight: math.unit(150, "lb"),
  15490. name: "Side",
  15491. image: {
  15492. source: "./media/characters/alluria/side.svg",
  15493. extra: 800 / 750,
  15494. }
  15495. },
  15496. back: {
  15497. height: math.unit(6, "feet"),
  15498. weight: math.unit(150, "lb"),
  15499. name: "Back",
  15500. image: {
  15501. source: "./media/characters/alluria/back.svg",
  15502. extra: 806 / 738,
  15503. }
  15504. },
  15505. frontMaid: {
  15506. height: math.unit(6, "feet"),
  15507. weight: math.unit(150, "lb"),
  15508. name: "Front (Maid)",
  15509. image: {
  15510. source: "./media/characters/alluria/front-maid.svg",
  15511. extra: 806 / 738,
  15512. bottom: 0.01
  15513. }
  15514. },
  15515. sideMaid: {
  15516. height: math.unit(6, "feet"),
  15517. weight: math.unit(150, "lb"),
  15518. name: "Side (Maid)",
  15519. image: {
  15520. source: "./media/characters/alluria/side-maid.svg",
  15521. extra: 800 / 750,
  15522. bottom: 0.005
  15523. }
  15524. },
  15525. backMaid: {
  15526. height: math.unit(6, "feet"),
  15527. weight: math.unit(150, "lb"),
  15528. name: "Back (Maid)",
  15529. image: {
  15530. source: "./media/characters/alluria/back-maid.svg",
  15531. extra: 806 / 738,
  15532. }
  15533. },
  15534. },
  15535. [
  15536. {
  15537. name: "Micro",
  15538. height: math.unit(6, "inches"),
  15539. default: true
  15540. },
  15541. ]
  15542. ))
  15543. characterMakers.push(() => makeCharacter(
  15544. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15545. {
  15546. front: {
  15547. height: math.unit(6, "feet"),
  15548. weight: math.unit(150, "lb"),
  15549. name: "Front",
  15550. image: {
  15551. source: "./media/characters/kyle/front.svg",
  15552. extra: 1069 / 962,
  15553. bottom: 77.228 / 1727.45
  15554. }
  15555. },
  15556. },
  15557. [
  15558. {
  15559. name: "Macro",
  15560. height: math.unit(150, "feet"),
  15561. default: true
  15562. },
  15563. ]
  15564. ))
  15565. characterMakers.push(() => makeCharacter(
  15566. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15567. {
  15568. front: {
  15569. height: math.unit(6, "feet"),
  15570. weight: math.unit(300, "lb"),
  15571. name: "Front",
  15572. image: {
  15573. source: "./media/characters/duncan/front.svg",
  15574. extra: 1650 / 1482,
  15575. bottom: 0.05
  15576. }
  15577. },
  15578. },
  15579. [
  15580. {
  15581. name: "Macro",
  15582. height: math.unit(100, "feet"),
  15583. default: true
  15584. },
  15585. ]
  15586. ))
  15587. characterMakers.push(() => makeCharacter(
  15588. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15589. {
  15590. front: {
  15591. height: math.unit(5 + 4 / 12, "feet"),
  15592. weight: math.unit(220, "lb"),
  15593. name: "Front",
  15594. image: {
  15595. source: "./media/characters/memory/front.svg",
  15596. extra: 3641 / 3545,
  15597. bottom: 0.03
  15598. }
  15599. },
  15600. back: {
  15601. height: math.unit(5 + 4 / 12, "feet"),
  15602. weight: math.unit(220, "lb"),
  15603. name: "Back",
  15604. image: {
  15605. source: "./media/characters/memory/back.svg",
  15606. extra: 3641 / 3545,
  15607. bottom: 0.025
  15608. }
  15609. },
  15610. frontSkirt: {
  15611. height: math.unit(5 + 4 / 12, "feet"),
  15612. weight: math.unit(220, "lb"),
  15613. name: "Front (Skirt)",
  15614. image: {
  15615. source: "./media/characters/memory/front-skirt.svg",
  15616. extra: 3641 / 3545,
  15617. bottom: 0.03
  15618. }
  15619. },
  15620. frontDress: {
  15621. height: math.unit(5 + 4 / 12, "feet"),
  15622. weight: math.unit(220, "lb"),
  15623. name: "Front (Dress)",
  15624. image: {
  15625. source: "./media/characters/memory/front-dress.svg",
  15626. extra: 3641 / 3545,
  15627. bottom: 0.03
  15628. }
  15629. },
  15630. },
  15631. [
  15632. {
  15633. name: "Micro",
  15634. height: math.unit(6, "inches"),
  15635. default: true
  15636. },
  15637. {
  15638. name: "Normal",
  15639. height: math.unit(5 + 4 / 12, "feet")
  15640. },
  15641. ]
  15642. ))
  15643. characterMakers.push(() => makeCharacter(
  15644. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15645. {
  15646. front: {
  15647. height: math.unit(4 + 11 / 12, "feet"),
  15648. weight: math.unit(100, "lb"),
  15649. name: "Front",
  15650. image: {
  15651. source: "./media/characters/luno/front.svg",
  15652. extra: 1535 / 1487,
  15653. bottom: 0.03
  15654. }
  15655. },
  15656. },
  15657. [
  15658. {
  15659. name: "Micro",
  15660. height: math.unit(3, "inches")
  15661. },
  15662. {
  15663. name: "Normal",
  15664. height: math.unit(4 + 11 / 12, "feet"),
  15665. default: true
  15666. },
  15667. {
  15668. name: "Macro",
  15669. height: math.unit(300, "feet")
  15670. },
  15671. {
  15672. name: "Megamacro",
  15673. height: math.unit(700, "miles")
  15674. },
  15675. ]
  15676. ))
  15677. characterMakers.push(() => makeCharacter(
  15678. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15679. {
  15680. front: {
  15681. height: math.unit(6 + 2 / 12, "feet"),
  15682. weight: math.unit(170, "lb"),
  15683. name: "Front",
  15684. image: {
  15685. source: "./media/characters/jamesy/front.svg",
  15686. extra: 440 / 382,
  15687. bottom: 0.005
  15688. }
  15689. },
  15690. },
  15691. [
  15692. {
  15693. name: "Micro",
  15694. height: math.unit(3, "inches")
  15695. },
  15696. {
  15697. name: "Normal",
  15698. height: math.unit(6 + 2 / 12, "feet"),
  15699. default: true
  15700. },
  15701. {
  15702. name: "Macro",
  15703. height: math.unit(300, "feet")
  15704. },
  15705. {
  15706. name: "Megamacro",
  15707. height: math.unit(700, "miles")
  15708. },
  15709. ]
  15710. ))
  15711. characterMakers.push(() => makeCharacter(
  15712. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15713. {
  15714. front: {
  15715. height: math.unit(6, "feet"),
  15716. weight: math.unit(160, "lb"),
  15717. name: "Front",
  15718. image: {
  15719. source: "./media/characters/mark/front.svg",
  15720. extra: 3300 / 3100,
  15721. bottom: 136.42 / 3440.47
  15722. }
  15723. },
  15724. },
  15725. [
  15726. {
  15727. name: "Macro",
  15728. height: math.unit(120, "meters")
  15729. },
  15730. {
  15731. name: "Bigger Macro",
  15732. height: math.unit(350, "meters")
  15733. },
  15734. {
  15735. name: "Megamacro",
  15736. height: math.unit(8, "km"),
  15737. default: true
  15738. },
  15739. {
  15740. name: "Continental",
  15741. height: math.unit(4550, "km")
  15742. },
  15743. {
  15744. name: "Planetary",
  15745. height: math.unit(65000, "km")
  15746. },
  15747. ]
  15748. ))
  15749. characterMakers.push(() => makeCharacter(
  15750. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15751. {
  15752. front: {
  15753. height: math.unit(6, "feet"),
  15754. weight: math.unit(400, "lb"),
  15755. name: "Front",
  15756. image: {
  15757. source: "./media/characters/mac/front.svg",
  15758. extra: 1048 / 987.7,
  15759. bottom: 60 / 1107.6,
  15760. }
  15761. },
  15762. },
  15763. [
  15764. {
  15765. name: "Macro",
  15766. height: math.unit(500, "feet"),
  15767. default: true
  15768. },
  15769. ]
  15770. ))
  15771. characterMakers.push(() => makeCharacter(
  15772. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15773. {
  15774. front: {
  15775. height: math.unit(5 + 2 / 12, "feet"),
  15776. weight: math.unit(190, "lb"),
  15777. name: "Front",
  15778. image: {
  15779. source: "./media/characters/bari/front.svg",
  15780. extra: 3156 / 2880,
  15781. bottom: 0.03
  15782. }
  15783. },
  15784. back: {
  15785. height: math.unit(5 + 2 / 12, "feet"),
  15786. weight: math.unit(190, "lb"),
  15787. name: "Back",
  15788. image: {
  15789. source: "./media/characters/bari/back.svg",
  15790. extra: 3260 / 2834,
  15791. bottom: 0.025
  15792. }
  15793. },
  15794. frontPlush: {
  15795. height: math.unit(5 + 2 / 12, "feet"),
  15796. weight: math.unit(190, "lb"),
  15797. name: "Front (Plush)",
  15798. image: {
  15799. source: "./media/characters/bari/front-plush.svg",
  15800. extra: 1112 / 1061,
  15801. bottom: 0.002
  15802. }
  15803. },
  15804. },
  15805. [
  15806. {
  15807. name: "Micro",
  15808. height: math.unit(3, "inches")
  15809. },
  15810. {
  15811. name: "Normal",
  15812. height: math.unit(5 + 2 / 12, "feet"),
  15813. default: true
  15814. },
  15815. {
  15816. name: "Macro",
  15817. height: math.unit(20, "feet")
  15818. },
  15819. ]
  15820. ))
  15821. characterMakers.push(() => makeCharacter(
  15822. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  15823. {
  15824. front: {
  15825. height: math.unit(6 + 1 / 12, "feet"),
  15826. weight: math.unit(275, "lb"),
  15827. name: "Front",
  15828. image: {
  15829. source: "./media/characters/hunter-misha-raven/front.svg"
  15830. }
  15831. },
  15832. },
  15833. [
  15834. {
  15835. name: "Mortal",
  15836. height: math.unit(6 + 1 / 12, "feet")
  15837. },
  15838. {
  15839. name: "Divine",
  15840. height: math.unit(1.12134e34, "parsecs"),
  15841. default: true
  15842. },
  15843. ]
  15844. ))
  15845. characterMakers.push(() => makeCharacter(
  15846. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  15847. {
  15848. front: {
  15849. height: math.unit(6 + 3 / 12, "feet"),
  15850. weight: math.unit(220, "lb"),
  15851. name: "Front",
  15852. image: {
  15853. source: "./media/characters/max-calore/front.svg",
  15854. extra: 1700 / 1648,
  15855. bottom: 0.01
  15856. }
  15857. },
  15858. back: {
  15859. height: math.unit(6 + 3 / 12, "feet"),
  15860. weight: math.unit(220, "lb"),
  15861. name: "Back",
  15862. image: {
  15863. source: "./media/characters/max-calore/back.svg",
  15864. extra: 1700 / 1648,
  15865. bottom: 0.01
  15866. }
  15867. },
  15868. },
  15869. [
  15870. {
  15871. name: "Normal",
  15872. height: math.unit(6 + 3 / 12, "feet"),
  15873. default: true
  15874. },
  15875. ]
  15876. ))
  15877. characterMakers.push(() => makeCharacter(
  15878. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  15879. {
  15880. side: {
  15881. height: math.unit(2 + 8 / 12, "feet"),
  15882. weight: math.unit(99, "lb"),
  15883. name: "Side",
  15884. image: {
  15885. source: "./media/characters/aspen/side.svg",
  15886. extra: 152 / 138,
  15887. bottom: 0.032
  15888. }
  15889. },
  15890. },
  15891. [
  15892. {
  15893. name: "Normal",
  15894. height: math.unit(2 + 8 / 12, "feet"),
  15895. default: true
  15896. },
  15897. ]
  15898. ))
  15899. characterMakers.push(() => makeCharacter(
  15900. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  15901. {
  15902. side: {
  15903. height: math.unit(3 + 2 / 12, "feet"),
  15904. weight: math.unit(224, "lb"),
  15905. name: "Side",
  15906. image: {
  15907. source: "./media/characters/sheila-feral-wolf/side.svg",
  15908. extra: 179 / 166,
  15909. bottom: 0.03
  15910. }
  15911. },
  15912. },
  15913. [
  15914. {
  15915. name: "Normal",
  15916. height: math.unit(3 + 2 / 12, "feet"),
  15917. default: true
  15918. },
  15919. ]
  15920. ))
  15921. characterMakers.push(() => makeCharacter(
  15922. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  15923. {
  15924. side: {
  15925. height: math.unit(1 + 9 / 12, "feet"),
  15926. weight: math.unit(38, "lb"),
  15927. name: "Side",
  15928. image: {
  15929. source: "./media/characters/michelle/side.svg",
  15930. extra: 147 / 136.7,
  15931. bottom: 0.03
  15932. }
  15933. },
  15934. },
  15935. [
  15936. {
  15937. name: "Normal",
  15938. height: math.unit(1 + 9 / 12, "feet"),
  15939. default: true
  15940. },
  15941. ]
  15942. ))
  15943. characterMakers.push(() => makeCharacter(
  15944. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  15945. {
  15946. front: {
  15947. height: math.unit(1 + 1 / 12, "feet"),
  15948. weight: math.unit(18, "lb"),
  15949. name: "Front",
  15950. image: {
  15951. source: "./media/characters/nino/front.svg"
  15952. }
  15953. },
  15954. },
  15955. [
  15956. {
  15957. name: "Normal",
  15958. height: math.unit(1 + 1 / 12, "feet"),
  15959. default: true
  15960. },
  15961. ]
  15962. ))
  15963. characterMakers.push(() => makeCharacter(
  15964. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  15965. {
  15966. front: {
  15967. height: math.unit(1, "feet"),
  15968. weight: math.unit(16, "lb"),
  15969. name: "Front",
  15970. image: {
  15971. source: "./media/characters/viola/front.svg"
  15972. }
  15973. },
  15974. },
  15975. [
  15976. {
  15977. name: "Normal",
  15978. height: math.unit(1, "feet"),
  15979. default: true
  15980. },
  15981. ]
  15982. ))
  15983. characterMakers.push(() => makeCharacter(
  15984. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  15985. {
  15986. front: {
  15987. height: math.unit(6 + 5 / 12, "feet"),
  15988. weight: math.unit(580, "lb"),
  15989. name: "Front",
  15990. image: {
  15991. source: "./media/characters/atlas/front.svg",
  15992. extra: 298.5 / 290,
  15993. bottom: 0.015
  15994. }
  15995. },
  15996. },
  15997. [
  15998. {
  15999. name: "Normal",
  16000. height: math.unit(6 + 5 / 12, "feet"),
  16001. default: true
  16002. },
  16003. ]
  16004. ))
  16005. characterMakers.push(() => makeCharacter(
  16006. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16007. {
  16008. side: {
  16009. height: math.unit(1 + 10 / 12, "feet"),
  16010. weight: math.unit(25, "lb"),
  16011. name: "Side",
  16012. image: {
  16013. source: "./media/characters/davy/side.svg",
  16014. extra: 200 / 170,
  16015. bottom: 0.01
  16016. }
  16017. },
  16018. },
  16019. [
  16020. {
  16021. name: "Normal",
  16022. height: math.unit(1 + 10 / 12, "feet"),
  16023. default: true
  16024. },
  16025. ]
  16026. ))
  16027. characterMakers.push(() => makeCharacter(
  16028. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16029. {
  16030. side: {
  16031. height: math.unit(4 + 8 / 12, "feet"),
  16032. weight: math.unit(166, "lb"),
  16033. name: "Side",
  16034. image: {
  16035. source: "./media/characters/fiona/side.svg",
  16036. extra: 232 / 220,
  16037. bottom: 0.03
  16038. }
  16039. },
  16040. },
  16041. [
  16042. {
  16043. name: "Normal",
  16044. height: math.unit(4 + 8 / 12, "feet"),
  16045. default: true
  16046. },
  16047. ]
  16048. ))
  16049. characterMakers.push(() => makeCharacter(
  16050. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16051. {
  16052. front: {
  16053. height: math.unit(2, "feet"),
  16054. weight: math.unit(62, "lb"),
  16055. name: "Front",
  16056. image: {
  16057. source: "./media/characters/lyla/front.svg",
  16058. bottom: 0.1
  16059. }
  16060. },
  16061. },
  16062. [
  16063. {
  16064. name: "Normal",
  16065. height: math.unit(2, "feet"),
  16066. default: true
  16067. },
  16068. ]
  16069. ))
  16070. characterMakers.push(() => makeCharacter(
  16071. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16072. {
  16073. side: {
  16074. height: math.unit(1.8, "feet"),
  16075. weight: math.unit(44, "lb"),
  16076. name: "Side",
  16077. image: {
  16078. source: "./media/characters/perseus/side.svg",
  16079. bottom: 0.21
  16080. }
  16081. },
  16082. },
  16083. [
  16084. {
  16085. name: "Normal",
  16086. height: math.unit(1.8, "feet"),
  16087. default: true
  16088. },
  16089. ]
  16090. ))
  16091. characterMakers.push(() => makeCharacter(
  16092. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16093. {
  16094. side: {
  16095. height: math.unit(4 + 2 / 12, "feet"),
  16096. weight: math.unit(20, "lb"),
  16097. name: "Side",
  16098. image: {
  16099. source: "./media/characters/remus/side.svg"
  16100. }
  16101. },
  16102. },
  16103. [
  16104. {
  16105. name: "Normal",
  16106. height: math.unit(4 + 2 / 12, "feet"),
  16107. default: true
  16108. },
  16109. ]
  16110. ))
  16111. characterMakers.push(() => makeCharacter(
  16112. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16113. {
  16114. front: {
  16115. height: math.unit(4 + 11 / 12, "feet"),
  16116. weight: math.unit(114, "lb"),
  16117. name: "Front",
  16118. image: {
  16119. source: "./media/characters/raf/front.svg",
  16120. bottom: 20.5/1863
  16121. }
  16122. },
  16123. side: {
  16124. height: math.unit(4 + 11 / 12, "feet"),
  16125. weight: math.unit(114, "lb"),
  16126. name: "Side",
  16127. image: {
  16128. source: "./media/characters/raf/side.svg",
  16129. bottom: 22/1822
  16130. }
  16131. },
  16132. },
  16133. [
  16134. {
  16135. name: "Micro",
  16136. height: math.unit(2, "inches")
  16137. },
  16138. {
  16139. name: "Normal",
  16140. height: math.unit(4 + 11 / 12, "feet"),
  16141. default: true
  16142. },
  16143. {
  16144. name: "Macro",
  16145. height: math.unit(70, "feet")
  16146. },
  16147. ]
  16148. ))
  16149. characterMakers.push(() => makeCharacter(
  16150. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16151. {
  16152. front: {
  16153. height: math.unit(1.5, "meters"),
  16154. weight: math.unit(68, "kg"),
  16155. name: "Front",
  16156. image: {
  16157. source: "./media/characters/liam-einarr/front.svg",
  16158. extra: 2822 / 2666
  16159. }
  16160. },
  16161. back: {
  16162. height: math.unit(1.5, "meters"),
  16163. weight: math.unit(68, "kg"),
  16164. name: "Back",
  16165. image: {
  16166. source: "./media/characters/liam-einarr/back.svg",
  16167. extra: 2822 / 2666,
  16168. bottom: 0.015
  16169. }
  16170. },
  16171. },
  16172. [
  16173. {
  16174. name: "Normal",
  16175. height: math.unit(1.5, "meters"),
  16176. default: true
  16177. },
  16178. {
  16179. name: "Macro",
  16180. height: math.unit(150, "meters")
  16181. },
  16182. {
  16183. name: "Megamacro",
  16184. height: math.unit(35, "km")
  16185. },
  16186. ]
  16187. ))
  16188. characterMakers.push(() => makeCharacter(
  16189. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16190. {
  16191. front: {
  16192. height: math.unit(6, "feet"),
  16193. weight: math.unit(75, "kg"),
  16194. name: "Front",
  16195. image: {
  16196. source: "./media/characters/linda/front.svg",
  16197. extra: 930 / 874,
  16198. bottom: 0.004
  16199. }
  16200. },
  16201. },
  16202. [
  16203. {
  16204. name: "Normal",
  16205. height: math.unit(6, "feet"),
  16206. default: true
  16207. },
  16208. ]
  16209. ))
  16210. characterMakers.push(() => makeCharacter(
  16211. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16212. {
  16213. front: {
  16214. height: math.unit(6 + 8 / 12, "feet"),
  16215. weight: math.unit(220, "lb"),
  16216. name: "Front",
  16217. image: {
  16218. source: "./media/characters/caylex/front.svg",
  16219. extra: 821 / 772,
  16220. bottom: 0.07
  16221. }
  16222. },
  16223. back: {
  16224. height: math.unit(6 + 8 / 12, "feet"),
  16225. weight: math.unit(220, "lb"),
  16226. name: "Back",
  16227. image: {
  16228. source: "./media/characters/caylex/back.svg",
  16229. extra: 821 / 772,
  16230. bottom: 0.022
  16231. }
  16232. },
  16233. hand: {
  16234. height: math.unit(1.25, "feet"),
  16235. name: "Hand",
  16236. image: {
  16237. source: "./media/characters/caylex/hand.svg"
  16238. }
  16239. },
  16240. foot: {
  16241. height: math.unit(1.6, "feet"),
  16242. name: "Foot",
  16243. image: {
  16244. source: "./media/characters/caylex/foot.svg"
  16245. }
  16246. },
  16247. armored: {
  16248. height: math.unit(6 + 8 / 12, "feet"),
  16249. weight: math.unit(250, "lb"),
  16250. name: "Armored",
  16251. image: {
  16252. source: "./media/characters/caylex/armored.svg",
  16253. extra: 1420 / 1310,
  16254. bottom: 0.045
  16255. }
  16256. },
  16257. },
  16258. [
  16259. {
  16260. name: "Normal",
  16261. height: math.unit(6 + 8 / 12, "feet"),
  16262. default: true
  16263. },
  16264. {
  16265. name: "Normal+",
  16266. height: math.unit(12, "feet")
  16267. },
  16268. ]
  16269. ))
  16270. characterMakers.push(() => makeCharacter(
  16271. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16272. {
  16273. front: {
  16274. height: math.unit(7 + 6 / 12, "feet"),
  16275. weight: math.unit(288, "lb"),
  16276. name: "Front",
  16277. image: {
  16278. source: "./media/characters/alana/front.svg",
  16279. extra: 679 / 653,
  16280. bottom: 22.5 / 701
  16281. }
  16282. },
  16283. },
  16284. [
  16285. {
  16286. name: "Normal",
  16287. height: math.unit(7 + 6 / 12, "feet")
  16288. },
  16289. {
  16290. name: "Large",
  16291. height: math.unit(50, "feet")
  16292. },
  16293. {
  16294. name: "Macro",
  16295. height: math.unit(100, "feet"),
  16296. default: true
  16297. },
  16298. {
  16299. name: "Macro+",
  16300. height: math.unit(200, "feet")
  16301. },
  16302. ]
  16303. ))
  16304. characterMakers.push(() => makeCharacter(
  16305. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16306. {
  16307. front: {
  16308. height: math.unit(6 + 1 / 12, "feet"),
  16309. weight: math.unit(210, "lb"),
  16310. name: "Front",
  16311. image: {
  16312. source: "./media/characters/hasani/front.svg",
  16313. extra: 244 / 232,
  16314. bottom: 0.01
  16315. }
  16316. },
  16317. back: {
  16318. height: math.unit(6 + 1 / 12, "feet"),
  16319. weight: math.unit(210, "lb"),
  16320. name: "Back",
  16321. image: {
  16322. source: "./media/characters/hasani/back.svg",
  16323. extra: 244 / 232,
  16324. bottom: 0.01
  16325. }
  16326. },
  16327. },
  16328. [
  16329. {
  16330. name: "Normal",
  16331. height: math.unit(6 + 1 / 12, "feet")
  16332. },
  16333. {
  16334. name: "Macro",
  16335. height: math.unit(175, "feet"),
  16336. default: true
  16337. },
  16338. ]
  16339. ))
  16340. characterMakers.push(() => makeCharacter(
  16341. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16342. {
  16343. front: {
  16344. height: math.unit(1.82, "meters"),
  16345. weight: math.unit(140, "lb"),
  16346. name: "Front",
  16347. image: {
  16348. source: "./media/characters/nita/front.svg",
  16349. extra: 2473 / 2363,
  16350. bottom: 0.01
  16351. }
  16352. },
  16353. },
  16354. [
  16355. {
  16356. name: "Normal",
  16357. height: math.unit(1.82, "m")
  16358. },
  16359. {
  16360. name: "Macro",
  16361. height: math.unit(300, "m")
  16362. },
  16363. {
  16364. name: "Mistake Canon",
  16365. height: math.unit(0.5, "miles"),
  16366. default: true
  16367. },
  16368. {
  16369. name: "Big Mistake",
  16370. height: math.unit(13, "miles")
  16371. },
  16372. {
  16373. name: "Playing God",
  16374. height: math.unit(2450, "miles")
  16375. },
  16376. ]
  16377. ))
  16378. characterMakers.push(() => makeCharacter(
  16379. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16380. {
  16381. front: {
  16382. height: math.unit(4, "feet"),
  16383. weight: math.unit(120, "lb"),
  16384. name: "Front",
  16385. image: {
  16386. source: "./media/characters/shiriko/front.svg",
  16387. extra: 195 / 188
  16388. }
  16389. },
  16390. },
  16391. [
  16392. {
  16393. name: "Normal",
  16394. height: math.unit(4, "feet"),
  16395. default: true
  16396. },
  16397. ]
  16398. ))
  16399. characterMakers.push(() => makeCharacter(
  16400. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16401. {
  16402. front: {
  16403. height: math.unit(6, "feet"),
  16404. name: "front",
  16405. image: {
  16406. source: "./media/characters/deja/front.svg",
  16407. extra: 926 / 840,
  16408. bottom: 0.07
  16409. }
  16410. },
  16411. },
  16412. [
  16413. {
  16414. name: "Planck Length",
  16415. height: math.unit(1.6e-35, "meters")
  16416. },
  16417. {
  16418. name: "Normal",
  16419. height: math.unit(30.48, "meters"),
  16420. default: true
  16421. },
  16422. {
  16423. name: "Universal",
  16424. height: math.unit(8.8e26, "meters")
  16425. },
  16426. ]
  16427. ))
  16428. characterMakers.push(() => makeCharacter(
  16429. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16430. {
  16431. side: {
  16432. height: math.unit(8, "feet"),
  16433. weight: math.unit(6300, "lb"),
  16434. name: "Side",
  16435. image: {
  16436. source: "./media/characters/anima/side.svg",
  16437. bottom: 0.035
  16438. }
  16439. },
  16440. },
  16441. [
  16442. {
  16443. name: "Normal",
  16444. height: math.unit(8, "feet"),
  16445. default: true
  16446. },
  16447. ]
  16448. ))
  16449. characterMakers.push(() => makeCharacter(
  16450. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16451. {
  16452. front: {
  16453. height: math.unit(8, "feet"),
  16454. weight: math.unit(350, "lb"),
  16455. name: "Front",
  16456. image: {
  16457. source: "./media/characters/bianca/front.svg",
  16458. extra: 234 / 225,
  16459. bottom: 0.03
  16460. }
  16461. },
  16462. },
  16463. [
  16464. {
  16465. name: "Normal",
  16466. height: math.unit(8, "feet"),
  16467. default: true
  16468. },
  16469. ]
  16470. ))
  16471. characterMakers.push(() => makeCharacter(
  16472. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16473. {
  16474. front: {
  16475. height: math.unit(6, "feet"),
  16476. weight: math.unit(150, "lb"),
  16477. name: "Front",
  16478. image: {
  16479. source: "./media/characters/adinia/front.svg",
  16480. extra: 1845 / 1672,
  16481. bottom: 0.02
  16482. }
  16483. },
  16484. back: {
  16485. height: math.unit(6, "feet"),
  16486. weight: math.unit(150, "lb"),
  16487. name: "Back",
  16488. image: {
  16489. source: "./media/characters/adinia/back.svg",
  16490. extra: 1845 / 1672,
  16491. bottom: 0.002
  16492. }
  16493. },
  16494. },
  16495. [
  16496. {
  16497. name: "Normal",
  16498. height: math.unit(11 + 5 / 12, "feet"),
  16499. default: true
  16500. },
  16501. ]
  16502. ))
  16503. characterMakers.push(() => makeCharacter(
  16504. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16505. {
  16506. front: {
  16507. height: math.unit(3, "meters"),
  16508. weight: math.unit(200, "kg"),
  16509. name: "Front",
  16510. image: {
  16511. source: "./media/characters/lykasa/front.svg",
  16512. extra: 1076 / 976,
  16513. bottom: 0.06
  16514. }
  16515. },
  16516. },
  16517. [
  16518. {
  16519. name: "Normal",
  16520. height: math.unit(3, "meters")
  16521. },
  16522. {
  16523. name: "Kaiju",
  16524. height: math.unit(120, "meters"),
  16525. default: true
  16526. },
  16527. {
  16528. name: "Mega Kaiju",
  16529. height: math.unit(240, "km")
  16530. },
  16531. {
  16532. name: "Giga Kaiju",
  16533. height: math.unit(400, "megameters")
  16534. },
  16535. {
  16536. name: "Tera Kaiju",
  16537. height: math.unit(800, "gigameters")
  16538. },
  16539. {
  16540. name: "Kaiju Dragon Goddess",
  16541. height: math.unit(26, "zettaparsecs")
  16542. },
  16543. ]
  16544. ))
  16545. characterMakers.push(() => makeCharacter(
  16546. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16547. {
  16548. side: {
  16549. height: math.unit(283 / 124 * 6, "feet"),
  16550. weight: math.unit(35000, "lb"),
  16551. name: "Side",
  16552. image: {
  16553. source: "./media/characters/malfaren/side.svg",
  16554. extra: 2500 / 1010,
  16555. bottom: 0.01
  16556. }
  16557. },
  16558. front: {
  16559. height: math.unit(22.36, "feet"),
  16560. weight: math.unit(35000, "lb"),
  16561. name: "Front",
  16562. image: {
  16563. source: "./media/characters/malfaren/front.svg",
  16564. extra: 1631 / 1476,
  16565. bottom: 0.01
  16566. }
  16567. },
  16568. maw: {
  16569. height: math.unit(6.9, "feet"),
  16570. name: "Maw",
  16571. image: {
  16572. source: "./media/characters/malfaren/maw.svg"
  16573. }
  16574. },
  16575. },
  16576. [
  16577. {
  16578. name: "Big",
  16579. height: math.unit(283 / 162 * 6, "feet"),
  16580. },
  16581. {
  16582. name: "Bigger",
  16583. height: math.unit(283 / 124 * 6, "feet")
  16584. },
  16585. {
  16586. name: "Massive",
  16587. height: math.unit(283 / 92 * 6, "feet"),
  16588. default: true
  16589. },
  16590. {
  16591. name: "👀💦",
  16592. height: math.unit(283 / 73 * 6, "feet"),
  16593. },
  16594. ]
  16595. ))
  16596. characterMakers.push(() => makeCharacter(
  16597. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16598. {
  16599. front: {
  16600. height: math.unit(1.7, "m"),
  16601. weight: math.unit(70, "kg"),
  16602. name: "Front",
  16603. image: {
  16604. source: "./media/characters/kernel/front.svg",
  16605. extra: 222 / 210,
  16606. bottom: 0.007
  16607. }
  16608. },
  16609. },
  16610. [
  16611. {
  16612. name: "Nano",
  16613. height: math.unit(17, "micrometers")
  16614. },
  16615. {
  16616. name: "Micro",
  16617. height: math.unit(1.7, "mm")
  16618. },
  16619. {
  16620. name: "Small",
  16621. height: math.unit(1.7, "cm")
  16622. },
  16623. {
  16624. name: "Normal",
  16625. height: math.unit(1.7, "m"),
  16626. default: true
  16627. },
  16628. ]
  16629. ))
  16630. characterMakers.push(() => makeCharacter(
  16631. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16632. {
  16633. front: {
  16634. height: math.unit(1.75, "meters"),
  16635. weight: math.unit(65, "kg"),
  16636. name: "Front",
  16637. image: {
  16638. source: "./media/characters/jayne-folest/front.svg",
  16639. extra: 2115 / 2007,
  16640. bottom: 0.02
  16641. }
  16642. },
  16643. back: {
  16644. height: math.unit(1.75, "meters"),
  16645. weight: math.unit(65, "kg"),
  16646. name: "Back",
  16647. image: {
  16648. source: "./media/characters/jayne-folest/back.svg",
  16649. extra: 2115 / 2007,
  16650. bottom: 0.005
  16651. }
  16652. },
  16653. frontClothed: {
  16654. height: math.unit(1.75, "meters"),
  16655. weight: math.unit(65, "kg"),
  16656. name: "Front (Clothed)",
  16657. image: {
  16658. source: "./media/characters/jayne-folest/front-clothed.svg",
  16659. extra: 2115 / 2007,
  16660. bottom: 0.035
  16661. }
  16662. },
  16663. hand: {
  16664. height: math.unit(1 / 1.260, "feet"),
  16665. name: "Hand",
  16666. image: {
  16667. source: "./media/characters/jayne-folest/hand.svg"
  16668. }
  16669. },
  16670. foot: {
  16671. height: math.unit(1 / 0.918, "feet"),
  16672. name: "Foot",
  16673. image: {
  16674. source: "./media/characters/jayne-folest/foot.svg"
  16675. }
  16676. },
  16677. },
  16678. [
  16679. {
  16680. name: "Micro",
  16681. height: math.unit(4, "cm")
  16682. },
  16683. {
  16684. name: "Normal",
  16685. height: math.unit(1.75, "meters")
  16686. },
  16687. {
  16688. name: "Macro",
  16689. height: math.unit(47.5, "meters"),
  16690. default: true
  16691. },
  16692. ]
  16693. ))
  16694. characterMakers.push(() => makeCharacter(
  16695. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16696. {
  16697. front: {
  16698. height: math.unit(180, "cm"),
  16699. weight: math.unit(70, "kg"),
  16700. name: "Front",
  16701. image: {
  16702. source: "./media/characters/algier/front.svg",
  16703. extra: 596 / 572,
  16704. bottom: 0.04
  16705. }
  16706. },
  16707. back: {
  16708. height: math.unit(180, "cm"),
  16709. weight: math.unit(70, "kg"),
  16710. name: "Back",
  16711. image: {
  16712. source: "./media/characters/algier/back.svg",
  16713. extra: 596 / 572,
  16714. bottom: 0.025
  16715. }
  16716. },
  16717. frontdressed: {
  16718. height: math.unit(180, "cm"),
  16719. weight: math.unit(150, "kg"),
  16720. name: "Front-dressed",
  16721. image: {
  16722. source: "./media/characters/algier/front-dressed.svg",
  16723. extra: 596 / 572,
  16724. bottom: 0.038
  16725. }
  16726. },
  16727. },
  16728. [
  16729. {
  16730. name: "Micro",
  16731. height: math.unit(5, "cm")
  16732. },
  16733. {
  16734. name: "Normal",
  16735. height: math.unit(180, "cm"),
  16736. default: true
  16737. },
  16738. {
  16739. name: "Macro",
  16740. height: math.unit(64, "m")
  16741. },
  16742. ]
  16743. ))
  16744. characterMakers.push(() => makeCharacter(
  16745. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16746. {
  16747. upright: {
  16748. height: math.unit(7, "feet"),
  16749. weight: math.unit(300, "lb"),
  16750. name: "Upright",
  16751. image: {
  16752. source: "./media/characters/pretzel/upright.svg",
  16753. extra: 534 / 522,
  16754. bottom: 0.065
  16755. }
  16756. },
  16757. sprawling: {
  16758. height: math.unit(3.75, "feet"),
  16759. weight: math.unit(300, "lb"),
  16760. name: "Sprawling",
  16761. image: {
  16762. source: "./media/characters/pretzel/sprawling.svg",
  16763. extra: 314 / 281,
  16764. bottom: 0.1
  16765. }
  16766. },
  16767. tongue: {
  16768. height: math.unit(2, "feet"),
  16769. name: "Tongue",
  16770. image: {
  16771. source: "./media/characters/pretzel/tongue.svg"
  16772. }
  16773. },
  16774. },
  16775. [
  16776. {
  16777. name: "Normal",
  16778. height: math.unit(7, "feet"),
  16779. default: true
  16780. },
  16781. {
  16782. name: "Oversized",
  16783. height: math.unit(15, "feet")
  16784. },
  16785. {
  16786. name: "Huge",
  16787. height: math.unit(30, "feet")
  16788. },
  16789. {
  16790. name: "Macro",
  16791. height: math.unit(250, "feet")
  16792. },
  16793. ]
  16794. ))
  16795. characterMakers.push(() => makeCharacter(
  16796. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  16797. {
  16798. sideFront: {
  16799. height: math.unit(5 + 2 / 12, "feet"),
  16800. weight: math.unit(120, "lb"),
  16801. name: "Front Side",
  16802. image: {
  16803. source: "./media/characters/roxi/side-front.svg",
  16804. extra: 2924 / 2717,
  16805. bottom: 0.08
  16806. }
  16807. },
  16808. sideBack: {
  16809. height: math.unit(5 + 2 / 12, "feet"),
  16810. weight: math.unit(120, "lb"),
  16811. name: "Back Side",
  16812. image: {
  16813. source: "./media/characters/roxi/side-back.svg",
  16814. extra: 2904 / 2693,
  16815. bottom: 0.06
  16816. }
  16817. },
  16818. front: {
  16819. height: math.unit(5 + 2 / 12, "feet"),
  16820. weight: math.unit(120, "lb"),
  16821. name: "Front",
  16822. image: {
  16823. source: "./media/characters/roxi/front.svg",
  16824. extra: 2028 / 1907,
  16825. bottom: 0.01
  16826. }
  16827. },
  16828. frontAlt: {
  16829. height: math.unit(5 + 2 / 12, "feet"),
  16830. weight: math.unit(120, "lb"),
  16831. name: "Front (Alt)",
  16832. image: {
  16833. source: "./media/characters/roxi/front-alt.svg",
  16834. extra: 1828 / 1798,
  16835. bottom: 0.01
  16836. }
  16837. },
  16838. sitting: {
  16839. height: math.unit(2.8, "feet"),
  16840. weight: math.unit(120, "lb"),
  16841. name: "Sitting",
  16842. image: {
  16843. source: "./media/characters/roxi/sitting.svg",
  16844. extra: 2660 / 2462,
  16845. bottom: 0.1
  16846. }
  16847. },
  16848. },
  16849. [
  16850. {
  16851. name: "Normal",
  16852. height: math.unit(5 + 2 / 12, "feet"),
  16853. default: true
  16854. },
  16855. ]
  16856. ))
  16857. characterMakers.push(() => makeCharacter(
  16858. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  16859. {
  16860. side: {
  16861. height: math.unit(55, "feet"),
  16862. weight: math.unit(153, "tons"),
  16863. name: "Side",
  16864. image: {
  16865. source: "./media/characters/shadow/side.svg",
  16866. extra: 701 / 628,
  16867. bottom: 0.02
  16868. }
  16869. },
  16870. flying: {
  16871. height: math.unit(145, "feet"),
  16872. weight: math.unit(153, "tons"),
  16873. name: "Flying",
  16874. image: {
  16875. source: "./media/characters/shadow/flying.svg"
  16876. }
  16877. },
  16878. },
  16879. [
  16880. {
  16881. name: "Normal",
  16882. height: math.unit(55, "feet"),
  16883. default: true
  16884. },
  16885. ]
  16886. ))
  16887. characterMakers.push(() => makeCharacter(
  16888. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  16889. {
  16890. front: {
  16891. height: math.unit(6, "feet"),
  16892. weight: math.unit(200, "lb"),
  16893. name: "Front",
  16894. image: {
  16895. source: "./media/characters/marcie/front.svg",
  16896. extra: 960 / 876,
  16897. bottom: 58 / 1017.87
  16898. }
  16899. },
  16900. },
  16901. [
  16902. {
  16903. name: "Macro",
  16904. height: math.unit(1, "mile"),
  16905. default: true
  16906. },
  16907. ]
  16908. ))
  16909. characterMakers.push(() => makeCharacter(
  16910. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  16911. {
  16912. front: {
  16913. height: math.unit(7, "feet"),
  16914. weight: math.unit(200, "lb"),
  16915. name: "Front",
  16916. image: {
  16917. source: "./media/characters/kachina/front.svg",
  16918. extra: 1290.68 / 1119,
  16919. bottom: 36.5 / 1327.18
  16920. }
  16921. },
  16922. },
  16923. [
  16924. {
  16925. name: "Normal",
  16926. height: math.unit(7, "feet"),
  16927. default: true
  16928. },
  16929. ]
  16930. ))
  16931. characterMakers.push(() => makeCharacter(
  16932. { name: "Kash", species: ["canine"], tags: ["feral"] },
  16933. {
  16934. looking: {
  16935. height: math.unit(2, "meters"),
  16936. weight: math.unit(300, "kg"),
  16937. name: "Looking",
  16938. image: {
  16939. source: "./media/characters/kash/looking.svg",
  16940. extra: 474 / 344,
  16941. bottom: 0.03
  16942. }
  16943. },
  16944. side: {
  16945. height: math.unit(2, "meters"),
  16946. weight: math.unit(300, "kg"),
  16947. name: "Side",
  16948. image: {
  16949. source: "./media/characters/kash/side.svg",
  16950. extra: 302 / 251,
  16951. bottom: 0.03
  16952. }
  16953. },
  16954. front: {
  16955. height: math.unit(2, "meters"),
  16956. weight: math.unit(300, "kg"),
  16957. name: "Front",
  16958. image: {
  16959. source: "./media/characters/kash/front.svg",
  16960. extra: 495 / 360,
  16961. bottom: 0.015
  16962. }
  16963. },
  16964. },
  16965. [
  16966. {
  16967. name: "Normal",
  16968. height: math.unit(2, "meters"),
  16969. default: true
  16970. },
  16971. {
  16972. name: "Big",
  16973. height: math.unit(3, "meters")
  16974. },
  16975. {
  16976. name: "Large",
  16977. height: math.unit(5, "meters")
  16978. },
  16979. ]
  16980. ))
  16981. characterMakers.push(() => makeCharacter(
  16982. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  16983. {
  16984. feeding: {
  16985. height: math.unit(6.7, "feet"),
  16986. weight: math.unit(350, "lb"),
  16987. name: "Feeding",
  16988. image: {
  16989. source: "./media/characters/lalim/feeding.svg",
  16990. }
  16991. },
  16992. },
  16993. [
  16994. {
  16995. name: "Normal",
  16996. height: math.unit(6.7, "feet"),
  16997. default: true
  16998. },
  16999. ]
  17000. ))
  17001. characterMakers.push(() => makeCharacter(
  17002. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17003. {
  17004. front: {
  17005. height: math.unit(9.5, "feet"),
  17006. weight: math.unit(600, "lb"),
  17007. name: "Front",
  17008. image: {
  17009. source: "./media/characters/de'vout/front.svg",
  17010. extra: 1443 / 1328,
  17011. bottom: 0.025
  17012. }
  17013. },
  17014. back: {
  17015. height: math.unit(9.5, "feet"),
  17016. weight: math.unit(600, "lb"),
  17017. name: "Back",
  17018. image: {
  17019. source: "./media/characters/de'vout/back.svg",
  17020. extra: 1443 / 1328
  17021. }
  17022. },
  17023. frontDressed: {
  17024. height: math.unit(9.5, "feet"),
  17025. weight: math.unit(600, "lb"),
  17026. name: "Front (Dressed",
  17027. image: {
  17028. source: "./media/characters/de'vout/front-dressed.svg",
  17029. extra: 1443 / 1328,
  17030. bottom: 0.025
  17031. }
  17032. },
  17033. backDressed: {
  17034. height: math.unit(9.5, "feet"),
  17035. weight: math.unit(600, "lb"),
  17036. name: "Back (Dressed",
  17037. image: {
  17038. source: "./media/characters/de'vout/back-dressed.svg",
  17039. extra: 1443 / 1328
  17040. }
  17041. },
  17042. },
  17043. [
  17044. {
  17045. name: "Normal",
  17046. height: math.unit(9.5, "feet"),
  17047. default: true
  17048. },
  17049. ]
  17050. ))
  17051. characterMakers.push(() => makeCharacter(
  17052. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17053. {
  17054. front: {
  17055. height: math.unit(8, "feet"),
  17056. weight: math.unit(225, "lb"),
  17057. name: "Front",
  17058. image: {
  17059. source: "./media/characters/talana/front.svg",
  17060. extra: 1410 / 1300,
  17061. bottom: 0.015
  17062. }
  17063. },
  17064. frontDressed: {
  17065. height: math.unit(8, "feet"),
  17066. weight: math.unit(225, "lb"),
  17067. name: "Front (Dressed",
  17068. image: {
  17069. source: "./media/characters/talana/front-dressed.svg",
  17070. extra: 1410 / 1300,
  17071. bottom: 0.015
  17072. }
  17073. },
  17074. },
  17075. [
  17076. {
  17077. name: "Normal",
  17078. height: math.unit(8, "feet"),
  17079. default: true
  17080. },
  17081. ]
  17082. ))
  17083. characterMakers.push(() => makeCharacter(
  17084. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17085. {
  17086. side: {
  17087. height: math.unit(7.2, "feet"),
  17088. weight: math.unit(150, "lb"),
  17089. name: "Side",
  17090. image: {
  17091. source: "./media/characters/xeauvok/side.svg",
  17092. extra: 1975 / 1523,
  17093. bottom: 0.07
  17094. }
  17095. },
  17096. },
  17097. [
  17098. {
  17099. name: "Normal",
  17100. height: math.unit(7.2, "feet"),
  17101. default: true
  17102. },
  17103. ]
  17104. ))
  17105. characterMakers.push(() => makeCharacter(
  17106. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17107. {
  17108. side: {
  17109. height: math.unit(10, "feet"),
  17110. weight: math.unit(900, "kg"),
  17111. name: "Side",
  17112. image: {
  17113. source: "./media/characters/zara/side.svg",
  17114. extra: 504 / 498
  17115. }
  17116. },
  17117. },
  17118. [
  17119. {
  17120. name: "Normal",
  17121. height: math.unit(10, "feet"),
  17122. default: true
  17123. },
  17124. ]
  17125. ))
  17126. characterMakers.push(() => makeCharacter(
  17127. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17128. {
  17129. side: {
  17130. height: math.unit(6, "feet"),
  17131. weight: math.unit(150, "lb"),
  17132. name: "Side",
  17133. image: {
  17134. source: "./media/characters/richard-dragon/side.svg",
  17135. extra: 845 / 340,
  17136. bottom: 0.017
  17137. }
  17138. },
  17139. maw: {
  17140. height: math.unit(2.97, "feet"),
  17141. name: "Maw",
  17142. image: {
  17143. source: "./media/characters/richard-dragon/maw.svg"
  17144. }
  17145. },
  17146. },
  17147. [
  17148. ]
  17149. ))
  17150. characterMakers.push(() => makeCharacter(
  17151. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17152. {
  17153. front: {
  17154. height: math.unit(4, "feet"),
  17155. weight: math.unit(100, "lb"),
  17156. name: "Front",
  17157. image: {
  17158. source: "./media/characters/richard-smeargle/front.svg",
  17159. extra: 2952 / 2820,
  17160. bottom: 0.028
  17161. }
  17162. },
  17163. },
  17164. [
  17165. {
  17166. name: "Normal",
  17167. height: math.unit(4, "feet"),
  17168. default: true
  17169. },
  17170. {
  17171. name: "Dynamax",
  17172. height: math.unit(20, "meters")
  17173. },
  17174. ]
  17175. ))
  17176. characterMakers.push(() => makeCharacter(
  17177. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17178. {
  17179. front: {
  17180. height: math.unit(6, "feet"),
  17181. weight: math.unit(110, "lb"),
  17182. name: "Front",
  17183. image: {
  17184. source: "./media/characters/klay/front.svg",
  17185. extra: 962 / 883,
  17186. bottom: 0.04
  17187. }
  17188. },
  17189. back: {
  17190. height: math.unit(6, "feet"),
  17191. weight: math.unit(110, "lb"),
  17192. name: "Back",
  17193. image: {
  17194. source: "./media/characters/klay/back.svg",
  17195. extra: 962 / 883
  17196. }
  17197. },
  17198. beans: {
  17199. height: math.unit(1.15, "feet"),
  17200. name: "Beans",
  17201. image: {
  17202. source: "./media/characters/klay/beans.svg"
  17203. }
  17204. },
  17205. },
  17206. [
  17207. {
  17208. name: "Micro",
  17209. height: math.unit(6, "inches")
  17210. },
  17211. {
  17212. name: "Mini",
  17213. height: math.unit(3, "feet")
  17214. },
  17215. {
  17216. name: "Normal",
  17217. height: math.unit(6, "feet"),
  17218. default: true
  17219. },
  17220. {
  17221. name: "Big",
  17222. height: math.unit(25, "feet")
  17223. },
  17224. {
  17225. name: "Macro",
  17226. height: math.unit(100, "feet")
  17227. },
  17228. {
  17229. name: "Megamacro",
  17230. height: math.unit(400, "feet")
  17231. },
  17232. ]
  17233. ))
  17234. characterMakers.push(() => makeCharacter(
  17235. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17236. {
  17237. front: {
  17238. height: math.unit(6, "feet"),
  17239. weight: math.unit(160, "lb"),
  17240. name: "Front",
  17241. image: {
  17242. source: "./media/characters/marcus/front.svg",
  17243. extra: 734 / 676,
  17244. bottom: 0.03
  17245. }
  17246. },
  17247. },
  17248. [
  17249. {
  17250. name: "Little",
  17251. height: math.unit(6, "feet")
  17252. },
  17253. {
  17254. name: "Normal",
  17255. height: math.unit(110, "feet"),
  17256. default: true
  17257. },
  17258. {
  17259. name: "Macro",
  17260. height: math.unit(250, "feet")
  17261. },
  17262. {
  17263. name: "Megamacro",
  17264. height: math.unit(1000, "feet")
  17265. },
  17266. ]
  17267. ))
  17268. characterMakers.push(() => makeCharacter(
  17269. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17270. {
  17271. front: {
  17272. height: math.unit(7, "feet"),
  17273. weight: math.unit(275, "lb"),
  17274. name: "Front",
  17275. image: {
  17276. source: "./media/characters/claude-delroute/front.svg",
  17277. extra: 230 / 214,
  17278. bottom: 0.007
  17279. }
  17280. },
  17281. side: {
  17282. height: math.unit(7, "feet"),
  17283. weight: math.unit(275, "lb"),
  17284. name: "Side",
  17285. image: {
  17286. source: "./media/characters/claude-delroute/side.svg",
  17287. extra: 222 / 214,
  17288. bottom: 0.01
  17289. }
  17290. },
  17291. back: {
  17292. height: math.unit(7, "feet"),
  17293. weight: math.unit(275, "lb"),
  17294. name: "Back",
  17295. image: {
  17296. source: "./media/characters/claude-delroute/back.svg",
  17297. extra: 230 / 214,
  17298. bottom: 0.015
  17299. }
  17300. },
  17301. maw: {
  17302. height: math.unit(0.6407, "meters"),
  17303. name: "Maw",
  17304. image: {
  17305. source: "./media/characters/claude-delroute/maw.svg"
  17306. }
  17307. },
  17308. },
  17309. [
  17310. {
  17311. name: "Normal",
  17312. height: math.unit(7, "feet"),
  17313. default: true
  17314. },
  17315. {
  17316. name: "Lorge",
  17317. height: math.unit(20, "feet")
  17318. },
  17319. ]
  17320. ))
  17321. characterMakers.push(() => makeCharacter(
  17322. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17323. {
  17324. front: {
  17325. height: math.unit(8 + 4 / 12, "feet"),
  17326. weight: math.unit(600, "lb"),
  17327. name: "Front",
  17328. image: {
  17329. source: "./media/characters/dragonien/front.svg",
  17330. extra: 100 / 94,
  17331. bottom: 3.3 / 103.3445
  17332. }
  17333. },
  17334. back: {
  17335. height: math.unit(8 + 4 / 12, "feet"),
  17336. weight: math.unit(600, "lb"),
  17337. name: "Back",
  17338. image: {
  17339. source: "./media/characters/dragonien/back.svg",
  17340. extra: 776 / 746,
  17341. bottom: 6.4 / 782.0616
  17342. }
  17343. },
  17344. foot: {
  17345. height: math.unit(1.54, "feet"),
  17346. name: "Foot",
  17347. image: {
  17348. source: "./media/characters/dragonien/foot.svg",
  17349. }
  17350. },
  17351. },
  17352. [
  17353. {
  17354. name: "Normal",
  17355. height: math.unit(8 + 4 / 12, "feet"),
  17356. default: true
  17357. },
  17358. {
  17359. name: "Macro",
  17360. height: math.unit(200, "feet")
  17361. },
  17362. {
  17363. name: "Megamacro",
  17364. height: math.unit(1, "mile")
  17365. },
  17366. {
  17367. name: "Gigamacro",
  17368. height: math.unit(1000, "miles")
  17369. },
  17370. ]
  17371. ))
  17372. characterMakers.push(() => makeCharacter(
  17373. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17374. {
  17375. front: {
  17376. height: math.unit(5 + 2 / 12, "feet"),
  17377. weight: math.unit(110, "lb"),
  17378. name: "Front",
  17379. image: {
  17380. source: "./media/characters/desta/front.svg",
  17381. extra: 767/726,
  17382. bottom: 11.7/779
  17383. }
  17384. },
  17385. back: {
  17386. height: math.unit(5 + 2 / 12, "feet"),
  17387. weight: math.unit(110, "lb"),
  17388. name: "Back",
  17389. image: {
  17390. source: "./media/characters/desta/back.svg",
  17391. extra: 777/728,
  17392. bottom: 6/784
  17393. }
  17394. },
  17395. frontAlt: {
  17396. height: math.unit(5 + 2 / 12, "feet"),
  17397. weight: math.unit(110, "lb"),
  17398. name: "Front",
  17399. image: {
  17400. source: "./media/characters/desta/front-alt.svg",
  17401. extra: 1482 / 1417
  17402. }
  17403. },
  17404. side: {
  17405. height: math.unit(5 + 2 / 12, "feet"),
  17406. weight: math.unit(110, "lb"),
  17407. name: "Side",
  17408. image: {
  17409. source: "./media/characters/desta/side.svg",
  17410. extra: 2579 / 2491,
  17411. bottom: 0.053
  17412. }
  17413. },
  17414. },
  17415. [
  17416. {
  17417. name: "Micro",
  17418. height: math.unit(6, "inches")
  17419. },
  17420. {
  17421. name: "Normal",
  17422. height: math.unit(5 + 2 / 12, "feet"),
  17423. default: true
  17424. },
  17425. {
  17426. name: "Macro",
  17427. height: math.unit(62, "feet")
  17428. },
  17429. {
  17430. name: "Megamacro",
  17431. height: math.unit(1800, "feet")
  17432. },
  17433. ]
  17434. ))
  17435. characterMakers.push(() => makeCharacter(
  17436. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17437. {
  17438. front: {
  17439. height: math.unit(10, "feet"),
  17440. weight: math.unit(700, "lb"),
  17441. name: "Front",
  17442. image: {
  17443. source: "./media/characters/storm-alystar/front.svg",
  17444. extra: 2112 / 1898,
  17445. bottom: 0.034
  17446. }
  17447. },
  17448. },
  17449. [
  17450. {
  17451. name: "Micro",
  17452. height: math.unit(3.5, "inches")
  17453. },
  17454. {
  17455. name: "Normal",
  17456. height: math.unit(10, "feet"),
  17457. default: true
  17458. },
  17459. {
  17460. name: "Macro",
  17461. height: math.unit(400, "feet")
  17462. },
  17463. {
  17464. name: "Deific",
  17465. height: math.unit(60, "miles")
  17466. },
  17467. ]
  17468. ))
  17469. characterMakers.push(() => makeCharacter(
  17470. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17471. {
  17472. front: {
  17473. height: math.unit(2.35, "meters"),
  17474. weight: math.unit(119, "kg"),
  17475. name: "Front",
  17476. image: {
  17477. source: "./media/characters/ilia/front.svg",
  17478. extra: 1285 / 1255,
  17479. bottom: 0.06
  17480. }
  17481. },
  17482. },
  17483. [
  17484. {
  17485. name: "Normal",
  17486. height: math.unit(2.35, "meters")
  17487. },
  17488. {
  17489. name: "Macro",
  17490. height: math.unit(140, "meters"),
  17491. default: true
  17492. },
  17493. {
  17494. name: "Megamacro",
  17495. height: math.unit(100, "miles")
  17496. },
  17497. ]
  17498. ))
  17499. characterMakers.push(() => makeCharacter(
  17500. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17501. {
  17502. front: {
  17503. height: math.unit(6 + 5 / 12, "feet"),
  17504. weight: math.unit(190, "lb"),
  17505. name: "Front",
  17506. image: {
  17507. source: "./media/characters/kingdead/front.svg",
  17508. extra: 1228 / 1177
  17509. }
  17510. },
  17511. },
  17512. [
  17513. {
  17514. name: "Micro",
  17515. height: math.unit(7, "inches")
  17516. },
  17517. {
  17518. name: "Normal",
  17519. height: math.unit(6 + 5 / 12, "feet")
  17520. },
  17521. {
  17522. name: "Macro",
  17523. height: math.unit(150, "feet"),
  17524. default: true
  17525. },
  17526. {
  17527. name: "Megamacro",
  17528. height: math.unit(200, "miles")
  17529. },
  17530. ]
  17531. ))
  17532. characterMakers.push(() => makeCharacter(
  17533. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17534. {
  17535. front: {
  17536. height: math.unit(8, "feet"),
  17537. weight: math.unit(600, "lb"),
  17538. name: "Front",
  17539. image: {
  17540. source: "./media/characters/kyrehx/front.svg",
  17541. extra: 1195 / 1095,
  17542. bottom: 0.034
  17543. }
  17544. },
  17545. },
  17546. [
  17547. {
  17548. name: "Micro",
  17549. height: math.unit(2, "inches")
  17550. },
  17551. {
  17552. name: "Normal",
  17553. height: math.unit(8, "feet"),
  17554. default: true
  17555. },
  17556. {
  17557. name: "Macro",
  17558. height: math.unit(255, "feet")
  17559. },
  17560. ]
  17561. ))
  17562. characterMakers.push(() => makeCharacter(
  17563. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17564. {
  17565. front: {
  17566. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17567. weight: math.unit(184, "lb"),
  17568. name: "Front",
  17569. image: {
  17570. source: "./media/characters/xang/front.svg",
  17571. extra: 845 / 755
  17572. }
  17573. },
  17574. },
  17575. [
  17576. {
  17577. name: "Normal",
  17578. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17579. default: true
  17580. },
  17581. {
  17582. name: "Macro",
  17583. height: math.unit(0.935 * 146, "feet")
  17584. },
  17585. {
  17586. name: "Megamacro",
  17587. height: math.unit(0.935 * 3, "miles")
  17588. },
  17589. ]
  17590. ))
  17591. characterMakers.push(() => makeCharacter(
  17592. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17593. {
  17594. frontDressed: {
  17595. height: math.unit(5 + 7 / 12, "feet"),
  17596. weight: math.unit(140, "lb"),
  17597. name: "Front (Dressed)",
  17598. image: {
  17599. source: "./media/characters/doc-weardno/front-dressed.svg",
  17600. extra: 263 / 234
  17601. }
  17602. },
  17603. backDressed: {
  17604. height: math.unit(5 + 7 / 12, "feet"),
  17605. weight: math.unit(140, "lb"),
  17606. name: "Back (Dressed)",
  17607. image: {
  17608. source: "./media/characters/doc-weardno/back-dressed.svg",
  17609. extra: 266 / 238
  17610. }
  17611. },
  17612. front: {
  17613. height: math.unit(5 + 7 / 12, "feet"),
  17614. weight: math.unit(140, "lb"),
  17615. name: "Front",
  17616. image: {
  17617. source: "./media/characters/doc-weardno/front.svg",
  17618. extra: 254 / 233
  17619. }
  17620. },
  17621. },
  17622. [
  17623. {
  17624. name: "Micro",
  17625. height: math.unit(3, "inches")
  17626. },
  17627. {
  17628. name: "Normal",
  17629. height: math.unit(5 + 7 / 12, "feet"),
  17630. default: true
  17631. },
  17632. {
  17633. name: "Macro",
  17634. height: math.unit(25, "feet")
  17635. },
  17636. {
  17637. name: "Megamacro",
  17638. height: math.unit(2, "miles")
  17639. },
  17640. ]
  17641. ))
  17642. characterMakers.push(() => makeCharacter(
  17643. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17644. {
  17645. front: {
  17646. height: math.unit(6 + 2 / 12, "feet"),
  17647. weight: math.unit(153, "lb"),
  17648. name: "Front",
  17649. image: {
  17650. source: "./media/characters/seth-whilst/front.svg",
  17651. bottom: 0.07
  17652. }
  17653. },
  17654. },
  17655. [
  17656. {
  17657. name: "Micro",
  17658. height: math.unit(5, "inches")
  17659. },
  17660. {
  17661. name: "Normal",
  17662. height: math.unit(6 + 2 / 12, "feet"),
  17663. default: true
  17664. },
  17665. ]
  17666. ))
  17667. characterMakers.push(() => makeCharacter(
  17668. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17669. {
  17670. front: {
  17671. height: math.unit(3, "inches"),
  17672. weight: math.unit(8, "grams"),
  17673. name: "Front",
  17674. image: {
  17675. source: "./media/characters/pocket-jabari/front.svg",
  17676. extra: 1024 / 974,
  17677. bottom: 0.039
  17678. }
  17679. },
  17680. },
  17681. [
  17682. {
  17683. name: "Minimicro",
  17684. height: math.unit(8, "mm")
  17685. },
  17686. {
  17687. name: "Micro",
  17688. height: math.unit(3, "inches"),
  17689. default: true
  17690. },
  17691. {
  17692. name: "Normal",
  17693. height: math.unit(3, "feet")
  17694. },
  17695. ]
  17696. ))
  17697. characterMakers.push(() => makeCharacter(
  17698. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17699. {
  17700. front: {
  17701. height: math.unit(15, "feet"),
  17702. weight: math.unit(3280, "lb"),
  17703. name: "Front",
  17704. image: {
  17705. source: "./media/characters/sapphy/front.svg",
  17706. extra: 671 / 577,
  17707. bottom: 0.085
  17708. }
  17709. },
  17710. back: {
  17711. height: math.unit(15, "feet"),
  17712. weight: math.unit(3280, "lb"),
  17713. name: "Back",
  17714. image: {
  17715. source: "./media/characters/sapphy/back.svg",
  17716. extra: 631 / 607,
  17717. bottom: 0.045
  17718. }
  17719. },
  17720. },
  17721. [
  17722. {
  17723. name: "Normal",
  17724. height: math.unit(15, "feet")
  17725. },
  17726. {
  17727. name: "Casual Macro",
  17728. height: math.unit(120, "feet")
  17729. },
  17730. {
  17731. name: "Macro",
  17732. height: math.unit(2150, "feet"),
  17733. default: true
  17734. },
  17735. {
  17736. name: "Megamacro",
  17737. height: math.unit(8, "miles")
  17738. },
  17739. {
  17740. name: "Galaxy Mom",
  17741. height: math.unit(6, "megalightyears")
  17742. },
  17743. ]
  17744. ))
  17745. characterMakers.push(() => makeCharacter(
  17746. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17747. {
  17748. front: {
  17749. height: math.unit(6, "feet"),
  17750. weight: math.unit(170, "lb"),
  17751. name: "Front",
  17752. image: {
  17753. source: "./media/characters/kiro/front.svg",
  17754. extra: 1064 / 1012,
  17755. bottom: 0.052
  17756. }
  17757. },
  17758. },
  17759. [
  17760. {
  17761. name: "Micro",
  17762. height: math.unit(6, "inches")
  17763. },
  17764. {
  17765. name: "Normal",
  17766. height: math.unit(6, "feet"),
  17767. default: true
  17768. },
  17769. {
  17770. name: "Macro",
  17771. height: math.unit(72, "feet")
  17772. },
  17773. ]
  17774. ))
  17775. characterMakers.push(() => makeCharacter(
  17776. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17777. {
  17778. front: {
  17779. height: math.unit(5 + 9 / 12, "feet"),
  17780. weight: math.unit(175, "lb"),
  17781. name: "Front",
  17782. image: {
  17783. source: "./media/characters/irishfox/front.svg",
  17784. extra: 1912 / 1680,
  17785. bottom: 0.02
  17786. }
  17787. },
  17788. },
  17789. [
  17790. {
  17791. name: "Nano",
  17792. height: math.unit(1, "mm")
  17793. },
  17794. {
  17795. name: "Micro",
  17796. height: math.unit(2, "inches")
  17797. },
  17798. {
  17799. name: "Normal",
  17800. height: math.unit(5 + 9 / 12, "feet"),
  17801. default: true
  17802. },
  17803. {
  17804. name: "Macro",
  17805. height: math.unit(45, "feet")
  17806. },
  17807. ]
  17808. ))
  17809. characterMakers.push(() => makeCharacter(
  17810. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  17811. {
  17812. front: {
  17813. height: math.unit(6 + 1 / 12, "feet"),
  17814. weight: math.unit(150, "lb"),
  17815. name: "Front",
  17816. image: {
  17817. source: "./media/characters/aronai-sieyes/front.svg",
  17818. extra: 1556 / 1480,
  17819. bottom: 0.015
  17820. }
  17821. },
  17822. side: {
  17823. height: math.unit(6 + 1 / 12, "feet"),
  17824. weight: math.unit(150, "lb"),
  17825. name: "Side",
  17826. image: {
  17827. source: "./media/characters/aronai-sieyes/side.svg",
  17828. extra: 1433 / 1390,
  17829. bottom: 0.0393
  17830. }
  17831. },
  17832. back: {
  17833. height: math.unit(6 + 1 / 12, "feet"),
  17834. weight: math.unit(150, "lb"),
  17835. name: "Back",
  17836. image: {
  17837. source: "./media/characters/aronai-sieyes/back.svg",
  17838. extra: 1544 / 1494,
  17839. bottom: 0.02
  17840. }
  17841. },
  17842. frontClothed: {
  17843. height: math.unit(6 + 1 / 12, "feet"),
  17844. weight: math.unit(150, "lb"),
  17845. name: "Front (Clothed)",
  17846. image: {
  17847. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  17848. extra: 1582 / 1527
  17849. }
  17850. },
  17851. feral: {
  17852. height: math.unit(18, "feet"),
  17853. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  17854. name: "Feral",
  17855. image: {
  17856. source: "./media/characters/aronai-sieyes/feral.svg",
  17857. extra: 1530 / 1240,
  17858. bottom: 0.035
  17859. }
  17860. },
  17861. },
  17862. [
  17863. {
  17864. name: "Micro",
  17865. height: math.unit(2, "inches")
  17866. },
  17867. {
  17868. name: "Normal",
  17869. height: math.unit(6 + 1 / 12, "feet"),
  17870. default: true
  17871. }
  17872. ]
  17873. ))
  17874. characterMakers.push(() => makeCharacter(
  17875. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  17876. {
  17877. front: {
  17878. height: math.unit(12, "feet"),
  17879. weight: math.unit(410, "kg"),
  17880. name: "Front",
  17881. image: {
  17882. source: "./media/characters/xuna/front.svg",
  17883. extra: 2184 / 1980
  17884. }
  17885. },
  17886. side: {
  17887. height: math.unit(12, "feet"),
  17888. weight: math.unit(410, "kg"),
  17889. name: "Side",
  17890. image: {
  17891. source: "./media/characters/xuna/side.svg",
  17892. extra: 2184 / 1980
  17893. }
  17894. },
  17895. back: {
  17896. height: math.unit(12, "feet"),
  17897. weight: math.unit(410, "kg"),
  17898. name: "Back",
  17899. image: {
  17900. source: "./media/characters/xuna/back.svg",
  17901. extra: 2184 / 1980
  17902. }
  17903. },
  17904. },
  17905. [
  17906. {
  17907. name: "Nano glow",
  17908. height: math.unit(10, "nm")
  17909. },
  17910. {
  17911. name: "Micro floof",
  17912. height: math.unit(0.3, "m")
  17913. },
  17914. {
  17915. name: "Huggable softy boi",
  17916. height: math.unit(3.6576, "m"),
  17917. default: true
  17918. },
  17919. {
  17920. name: "Admirable floof",
  17921. height: math.unit(80, "meters")
  17922. },
  17923. {
  17924. name: "Gentle macro",
  17925. height: math.unit(300, "meters")
  17926. },
  17927. {
  17928. name: "Very careful floof",
  17929. height: math.unit(3200, "meters")
  17930. },
  17931. {
  17932. name: "The mega floof",
  17933. height: math.unit(36000, "meters")
  17934. },
  17935. {
  17936. name: "Giga-fur-Wicker",
  17937. height: math.unit(4800000, "meters")
  17938. },
  17939. {
  17940. name: "Licky world",
  17941. height: math.unit(20000000, "meters")
  17942. },
  17943. {
  17944. name: "Floofy cyan sun",
  17945. height: math.unit(1500000000, "meters")
  17946. },
  17947. {
  17948. name: "Milky Wicker",
  17949. height: math.unit(1000000000000000000000, "meters")
  17950. },
  17951. {
  17952. name: "The observing Wicker",
  17953. height: math.unit(999999999999999999999999999, "meters")
  17954. },
  17955. ]
  17956. ))
  17957. characterMakers.push(() => makeCharacter(
  17958. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17959. {
  17960. front: {
  17961. height: math.unit(5 + 9 / 12, "feet"),
  17962. weight: math.unit(150, "lb"),
  17963. name: "Front",
  17964. image: {
  17965. source: "./media/characters/arokha-sieyes/front.svg",
  17966. extra: 1425 / 1284,
  17967. bottom: 0.05
  17968. }
  17969. },
  17970. },
  17971. [
  17972. {
  17973. name: "Normal",
  17974. height: math.unit(5 + 9 / 12, "feet")
  17975. },
  17976. {
  17977. name: "Macro",
  17978. height: math.unit(30, "meters"),
  17979. default: true
  17980. },
  17981. ]
  17982. ))
  17983. characterMakers.push(() => makeCharacter(
  17984. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  17985. {
  17986. front: {
  17987. height: math.unit(6, "feet"),
  17988. weight: math.unit(180, "lb"),
  17989. name: "Front",
  17990. image: {
  17991. source: "./media/characters/arokh-sieyes/front.svg",
  17992. extra: 1830 / 1769,
  17993. bottom: 0.01
  17994. }
  17995. },
  17996. },
  17997. [
  17998. {
  17999. name: "Normal",
  18000. height: math.unit(6, "feet")
  18001. },
  18002. {
  18003. name: "Macro",
  18004. height: math.unit(30, "meters"),
  18005. default: true
  18006. },
  18007. ]
  18008. ))
  18009. characterMakers.push(() => makeCharacter(
  18010. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18011. {
  18012. side: {
  18013. height: math.unit(13 + 1 / 12, "feet"),
  18014. weight: math.unit(8.5, "tonnes"),
  18015. name: "Side",
  18016. image: {
  18017. source: "./media/characters/goldeneye/side.svg",
  18018. extra: 1182 / 778,
  18019. bottom: 0.067
  18020. }
  18021. },
  18022. paw: {
  18023. height: math.unit(3.4, "feet"),
  18024. name: "Paw",
  18025. image: {
  18026. source: "./media/characters/goldeneye/paw.svg"
  18027. }
  18028. },
  18029. },
  18030. [
  18031. {
  18032. name: "Normal",
  18033. height: math.unit(13 + 1 / 12, "feet"),
  18034. default: true
  18035. },
  18036. ]
  18037. ))
  18038. characterMakers.push(() => makeCharacter(
  18039. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18040. {
  18041. front: {
  18042. height: math.unit(6 + 1 / 12, "feet"),
  18043. weight: math.unit(210, "lb"),
  18044. name: "Front",
  18045. image: {
  18046. source: "./media/characters/leonardo-lycheborne/front.svg",
  18047. extra: 390 / 365,
  18048. bottom: 0.032
  18049. }
  18050. },
  18051. side: {
  18052. height: math.unit(6 + 1 / 12, "feet"),
  18053. weight: math.unit(210, "lb"),
  18054. name: "Side",
  18055. image: {
  18056. source: "./media/characters/leonardo-lycheborne/side.svg",
  18057. extra: 390 / 365,
  18058. bottom: 0.005
  18059. }
  18060. },
  18061. back: {
  18062. height: math.unit(6 + 1 / 12, "feet"),
  18063. weight: math.unit(210, "lb"),
  18064. name: "Back",
  18065. image: {
  18066. source: "./media/characters/leonardo-lycheborne/back.svg",
  18067. extra: 392 / 366,
  18068. bottom: 0.01
  18069. }
  18070. },
  18071. hand: {
  18072. height: math.unit(1.08, "feet"),
  18073. name: "Hand",
  18074. image: {
  18075. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18076. }
  18077. },
  18078. foot: {
  18079. height: math.unit(1.32, "feet"),
  18080. name: "Foot",
  18081. image: {
  18082. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18083. }
  18084. },
  18085. were: {
  18086. height: math.unit(20, "feet"),
  18087. weight: math.unit(7800, "lb"),
  18088. name: "Were",
  18089. image: {
  18090. source: "./media/characters/leonardo-lycheborne/were.svg",
  18091. extra: 308 / 294,
  18092. bottom: 0.048
  18093. }
  18094. },
  18095. feral: {
  18096. height: math.unit(7.5, "feet"),
  18097. weight: math.unit(600, "lb"),
  18098. name: "Feral",
  18099. image: {
  18100. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18101. extra: 210 / 186,
  18102. bottom: 0.108
  18103. }
  18104. },
  18105. taur: {
  18106. height: math.unit(11, "feet"),
  18107. weight: math.unit(3300, "lb"),
  18108. name: "Taur",
  18109. image: {
  18110. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18111. extra: 320 / 303,
  18112. bottom: 0.025
  18113. }
  18114. },
  18115. barghest: {
  18116. height: math.unit(11, "feet"),
  18117. weight: math.unit(1300, "lb"),
  18118. name: "Barghest",
  18119. image: {
  18120. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18121. extra: 323 / 302,
  18122. bottom: 0.027
  18123. }
  18124. },
  18125. dick: {
  18126. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18127. name: "Dick",
  18128. image: {
  18129. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18130. }
  18131. },
  18132. dickWere: {
  18133. height: math.unit((20) / 3.8, "feet"),
  18134. name: "Dick (Were)",
  18135. image: {
  18136. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18137. }
  18138. },
  18139. },
  18140. [
  18141. {
  18142. name: "Normal",
  18143. height: math.unit(6 + 1 / 12, "feet"),
  18144. default: true
  18145. },
  18146. ]
  18147. ))
  18148. characterMakers.push(() => makeCharacter(
  18149. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18150. {
  18151. front: {
  18152. height: math.unit(10, "feet"),
  18153. weight: math.unit(350, "lb"),
  18154. name: "Front",
  18155. image: {
  18156. source: "./media/characters/jet/front.svg",
  18157. extra: 2050 / 1980,
  18158. bottom: 0.013
  18159. }
  18160. },
  18161. back: {
  18162. height: math.unit(10, "feet"),
  18163. weight: math.unit(350, "lb"),
  18164. name: "Back",
  18165. image: {
  18166. source: "./media/characters/jet/back.svg",
  18167. extra: 2050 / 1980,
  18168. bottom: 0.013
  18169. }
  18170. },
  18171. },
  18172. [
  18173. {
  18174. name: "Micro",
  18175. height: math.unit(6, "inches")
  18176. },
  18177. {
  18178. name: "Normal",
  18179. height: math.unit(10, "feet"),
  18180. default: true
  18181. },
  18182. {
  18183. name: "Macro",
  18184. height: math.unit(100, "feet")
  18185. },
  18186. ]
  18187. ))
  18188. characterMakers.push(() => makeCharacter(
  18189. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18190. {
  18191. front: {
  18192. height: math.unit(15, "feet"),
  18193. weight: math.unit(2800, "lb"),
  18194. name: "Front",
  18195. image: {
  18196. source: "./media/characters/tanarath/front.svg",
  18197. extra: 2392 / 2220,
  18198. bottom: 0.03
  18199. }
  18200. },
  18201. back: {
  18202. height: math.unit(15, "feet"),
  18203. weight: math.unit(2800, "lb"),
  18204. name: "Back",
  18205. image: {
  18206. source: "./media/characters/tanarath/back.svg",
  18207. extra: 2392 / 2220,
  18208. bottom: 0.03
  18209. }
  18210. },
  18211. },
  18212. [
  18213. {
  18214. name: "Normal",
  18215. height: math.unit(15, "feet"),
  18216. default: true
  18217. },
  18218. ]
  18219. ))
  18220. characterMakers.push(() => makeCharacter(
  18221. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18222. {
  18223. front: {
  18224. height: math.unit(7 + 1 / 12, "feet"),
  18225. weight: math.unit(175, "lb"),
  18226. name: "Front",
  18227. image: {
  18228. source: "./media/characters/patty-cattybatty/front.svg",
  18229. extra: 908 / 874,
  18230. bottom: 0.025
  18231. }
  18232. },
  18233. },
  18234. [
  18235. {
  18236. name: "Micro",
  18237. height: math.unit(1, "inch")
  18238. },
  18239. {
  18240. name: "Normal",
  18241. height: math.unit(7 + 1 / 12, "feet")
  18242. },
  18243. {
  18244. name: "Mini Macro",
  18245. height: math.unit(155, "feet")
  18246. },
  18247. {
  18248. name: "Macro",
  18249. height: math.unit(1077, "feet")
  18250. },
  18251. {
  18252. name: "Mega Macro",
  18253. height: math.unit(47650, "feet"),
  18254. default: true
  18255. },
  18256. {
  18257. name: "Giga Macro",
  18258. height: math.unit(440, "miles")
  18259. },
  18260. {
  18261. name: "Tera Macro",
  18262. height: math.unit(8700, "miles")
  18263. },
  18264. {
  18265. name: "Planetary Macro",
  18266. height: math.unit(32700, "miles")
  18267. },
  18268. {
  18269. name: "Solar Macro",
  18270. height: math.unit(550000, "miles")
  18271. },
  18272. {
  18273. name: "Celestial Macro",
  18274. height: math.unit(2.5, "AU")
  18275. },
  18276. ]
  18277. ))
  18278. characterMakers.push(() => makeCharacter(
  18279. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18280. {
  18281. front: {
  18282. height: math.unit(4 + 5 / 12, "feet"),
  18283. weight: math.unit(90, "lb"),
  18284. name: "Front",
  18285. image: {
  18286. source: "./media/characters/cappu/front.svg",
  18287. extra: 1247 / 1152,
  18288. bottom: 0.012
  18289. }
  18290. },
  18291. },
  18292. [
  18293. {
  18294. name: "Normal",
  18295. height: math.unit(4 + 5 / 12, "feet"),
  18296. default: true
  18297. },
  18298. ]
  18299. ))
  18300. characterMakers.push(() => makeCharacter(
  18301. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18302. {
  18303. frontDressed: {
  18304. height: math.unit(70, "cm"),
  18305. weight: math.unit(6, "kg"),
  18306. name: "Front (Dressed)",
  18307. image: {
  18308. source: "./media/characters/sebi/front-dressed.svg",
  18309. extra: 713.5 / 686.5,
  18310. bottom: 0.003
  18311. }
  18312. },
  18313. front: {
  18314. height: math.unit(70, "cm"),
  18315. weight: math.unit(5, "kg"),
  18316. name: "Front",
  18317. image: {
  18318. source: "./media/characters/sebi/front.svg",
  18319. extra: 713.5 / 686.5,
  18320. bottom: 0.003
  18321. }
  18322. }
  18323. },
  18324. [
  18325. {
  18326. name: "Normal",
  18327. height: math.unit(70, "cm"),
  18328. default: true
  18329. },
  18330. {
  18331. name: "Macro",
  18332. height: math.unit(8, "meters")
  18333. },
  18334. ]
  18335. ))
  18336. characterMakers.push(() => makeCharacter(
  18337. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18338. {
  18339. front: {
  18340. height: math.unit(6, "feet"),
  18341. weight: math.unit(150, "lb"),
  18342. name: "Front",
  18343. image: {
  18344. source: "./media/characters/typhek/front.svg",
  18345. extra: 1948 / 1929,
  18346. bottom: 0.025
  18347. }
  18348. },
  18349. side: {
  18350. height: math.unit(6, "feet"),
  18351. weight: math.unit(150, "lb"),
  18352. name: "Side",
  18353. image: {
  18354. source: "./media/characters/typhek/side.svg",
  18355. extra: 2034 / 2010,
  18356. bottom: 0.003
  18357. }
  18358. },
  18359. back: {
  18360. height: math.unit(6, "feet"),
  18361. weight: math.unit(150, "lb"),
  18362. name: "Back",
  18363. image: {
  18364. source: "./media/characters/typhek/back.svg",
  18365. extra: 2005 / 1978,
  18366. bottom: 0.004
  18367. }
  18368. },
  18369. palm: {
  18370. height: math.unit(1.2, "feet"),
  18371. name: "Palm",
  18372. image: {
  18373. source: "./media/characters/typhek/palm.svg"
  18374. }
  18375. },
  18376. fist: {
  18377. height: math.unit(1.1, "feet"),
  18378. name: "Fist",
  18379. image: {
  18380. source: "./media/characters/typhek/fist.svg"
  18381. }
  18382. },
  18383. foot: {
  18384. height: math.unit(1.57, "feet"),
  18385. name: "Foot",
  18386. image: {
  18387. source: "./media/characters/typhek/foot.svg"
  18388. }
  18389. },
  18390. sole: {
  18391. height: math.unit(2.05, "feet"),
  18392. name: "Sole",
  18393. image: {
  18394. source: "./media/characters/typhek/sole.svg"
  18395. }
  18396. },
  18397. },
  18398. [
  18399. {
  18400. name: "Macro",
  18401. height: math.unit(40, "stories"),
  18402. default: true
  18403. },
  18404. {
  18405. name: "Megamacro",
  18406. height: math.unit(1, "mile")
  18407. },
  18408. {
  18409. name: "Gigamacro",
  18410. height: math.unit(4000, "solarradii")
  18411. },
  18412. {
  18413. name: "Universal",
  18414. height: math.unit(1.1, "universes")
  18415. }
  18416. ]
  18417. ))
  18418. characterMakers.push(() => makeCharacter(
  18419. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18420. {
  18421. side: {
  18422. height: math.unit(5 + 7 / 12, "feet"),
  18423. weight: math.unit(150, "lb"),
  18424. name: "Side",
  18425. image: {
  18426. source: "./media/characters/kassy/side.svg",
  18427. extra: 1280 / 1225,
  18428. bottom: 0.002
  18429. }
  18430. },
  18431. front: {
  18432. height: math.unit(5 + 7 / 12, "feet"),
  18433. weight: math.unit(150, "lb"),
  18434. name: "Front",
  18435. image: {
  18436. source: "./media/characters/kassy/front.svg",
  18437. extra: 1280 / 1225,
  18438. bottom: 0.025
  18439. }
  18440. },
  18441. back: {
  18442. height: math.unit(5 + 7 / 12, "feet"),
  18443. weight: math.unit(150, "lb"),
  18444. name: "Back",
  18445. image: {
  18446. source: "./media/characters/kassy/back.svg",
  18447. extra: 1280 / 1225,
  18448. bottom: 0.002
  18449. }
  18450. },
  18451. foot: {
  18452. height: math.unit(1.266, "feet"),
  18453. name: "Foot",
  18454. image: {
  18455. source: "./media/characters/kassy/foot.svg"
  18456. }
  18457. },
  18458. },
  18459. [
  18460. {
  18461. name: "Normal",
  18462. height: math.unit(5 + 7 / 12, "feet")
  18463. },
  18464. {
  18465. name: "Macro",
  18466. height: math.unit(137, "feet"),
  18467. default: true
  18468. },
  18469. {
  18470. name: "Megamacro",
  18471. height: math.unit(1, "mile")
  18472. },
  18473. ]
  18474. ))
  18475. characterMakers.push(() => makeCharacter(
  18476. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18477. {
  18478. front: {
  18479. height: math.unit(6 + 1 / 12, "feet"),
  18480. weight: math.unit(200, "lb"),
  18481. name: "Front",
  18482. image: {
  18483. source: "./media/characters/neil/front.svg",
  18484. extra: 1326 / 1250,
  18485. bottom: 0.023
  18486. }
  18487. },
  18488. },
  18489. [
  18490. {
  18491. name: "Normal",
  18492. height: math.unit(6 + 1 / 12, "feet"),
  18493. default: true
  18494. },
  18495. {
  18496. name: "Macro",
  18497. height: math.unit(200, "feet")
  18498. },
  18499. ]
  18500. ))
  18501. characterMakers.push(() => makeCharacter(
  18502. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18503. {
  18504. front: {
  18505. height: math.unit(5 + 9 / 12, "feet"),
  18506. weight: math.unit(190, "lb"),
  18507. name: "Front",
  18508. image: {
  18509. source: "./media/characters/atticus/front.svg",
  18510. extra: 2934 / 2785,
  18511. bottom: 0.025
  18512. }
  18513. },
  18514. },
  18515. [
  18516. {
  18517. name: "Normal",
  18518. height: math.unit(5 + 9 / 12, "feet"),
  18519. default: true
  18520. },
  18521. {
  18522. name: "Macro",
  18523. height: math.unit(180, "feet")
  18524. },
  18525. ]
  18526. ))
  18527. characterMakers.push(() => makeCharacter(
  18528. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18529. {
  18530. side: {
  18531. height: math.unit(9, "feet"),
  18532. weight: math.unit(650, "lb"),
  18533. name: "Side",
  18534. image: {
  18535. source: "./media/characters/milo/side.svg",
  18536. extra: 2644 / 2310,
  18537. bottom: 0.032
  18538. }
  18539. },
  18540. },
  18541. [
  18542. {
  18543. name: "Normal",
  18544. height: math.unit(9, "feet"),
  18545. default: true
  18546. },
  18547. {
  18548. name: "Macro",
  18549. height: math.unit(300, "feet")
  18550. },
  18551. ]
  18552. ))
  18553. characterMakers.push(() => makeCharacter(
  18554. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18555. {
  18556. side: {
  18557. height: math.unit(8, "meters"),
  18558. weight: math.unit(90000, "kg"),
  18559. name: "Side",
  18560. image: {
  18561. source: "./media/characters/ijzer/side.svg",
  18562. extra: 2756 / 1600,
  18563. bottom: 0.01
  18564. }
  18565. },
  18566. },
  18567. [
  18568. {
  18569. name: "Small",
  18570. height: math.unit(3, "meters")
  18571. },
  18572. {
  18573. name: "Normal",
  18574. height: math.unit(8, "meters"),
  18575. default: true
  18576. },
  18577. {
  18578. name: "Normal+",
  18579. height: math.unit(10, "meters")
  18580. },
  18581. {
  18582. name: "Bigger",
  18583. height: math.unit(24, "meters")
  18584. },
  18585. {
  18586. name: "Huge",
  18587. height: math.unit(80, "meters")
  18588. },
  18589. ]
  18590. ))
  18591. characterMakers.push(() => makeCharacter(
  18592. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18593. {
  18594. front: {
  18595. height: math.unit(6 + 2 / 12, "feet"),
  18596. weight: math.unit(153, "lb"),
  18597. name: "Front",
  18598. image: {
  18599. source: "./media/characters/luca-cervicum/front.svg",
  18600. extra: 370 / 327,
  18601. bottom: 0.015
  18602. }
  18603. },
  18604. back: {
  18605. height: math.unit(6 + 2 / 12, "feet"),
  18606. weight: math.unit(153, "lb"),
  18607. name: "Back",
  18608. image: {
  18609. source: "./media/characters/luca-cervicum/back.svg",
  18610. extra: 367 / 333,
  18611. bottom: 0.005
  18612. }
  18613. },
  18614. frontGear: {
  18615. height: math.unit(6 + 2 / 12, "feet"),
  18616. weight: math.unit(173, "lb"),
  18617. name: "Front (Gear)",
  18618. image: {
  18619. source: "./media/characters/luca-cervicum/front-gear.svg",
  18620. extra: 377 / 333,
  18621. bottom: 0.006
  18622. }
  18623. },
  18624. },
  18625. [
  18626. {
  18627. name: "Normal",
  18628. height: math.unit(6 + 2 / 12, "feet"),
  18629. default: true
  18630. },
  18631. ]
  18632. ))
  18633. characterMakers.push(() => makeCharacter(
  18634. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18635. {
  18636. front: {
  18637. height: math.unit(6 + 1 / 12, "feet"),
  18638. weight: math.unit(304, "lb"),
  18639. name: "Front",
  18640. image: {
  18641. source: "./media/characters/oliver/front.svg",
  18642. extra: 157 / 143,
  18643. bottom: 0.08
  18644. }
  18645. },
  18646. },
  18647. [
  18648. {
  18649. name: "Normal",
  18650. height: math.unit(6 + 1 / 12, "feet"),
  18651. default: true
  18652. },
  18653. ]
  18654. ))
  18655. characterMakers.push(() => makeCharacter(
  18656. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18657. {
  18658. front: {
  18659. height: math.unit(5 + 7 / 12, "feet"),
  18660. weight: math.unit(140, "lb"),
  18661. name: "Front",
  18662. image: {
  18663. source: "./media/characters/shane/front.svg",
  18664. extra: 304 / 289,
  18665. bottom: 0.005
  18666. }
  18667. },
  18668. },
  18669. [
  18670. {
  18671. name: "Normal",
  18672. height: math.unit(5 + 7 / 12, "feet"),
  18673. default: true
  18674. },
  18675. ]
  18676. ))
  18677. characterMakers.push(() => makeCharacter(
  18678. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18679. {
  18680. front: {
  18681. height: math.unit(5 + 9 / 12, "feet"),
  18682. weight: math.unit(178, "lb"),
  18683. name: "Front",
  18684. image: {
  18685. source: "./media/characters/shin/front.svg",
  18686. extra: 159 / 151,
  18687. bottom: 0.015
  18688. }
  18689. },
  18690. },
  18691. [
  18692. {
  18693. name: "Normal",
  18694. height: math.unit(5 + 9 / 12, "feet"),
  18695. default: true
  18696. },
  18697. ]
  18698. ))
  18699. characterMakers.push(() => makeCharacter(
  18700. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18701. {
  18702. front: {
  18703. height: math.unit(5 + 10 / 12, "feet"),
  18704. weight: math.unit(168, "lb"),
  18705. name: "Front",
  18706. image: {
  18707. source: "./media/characters/xerxes/front.svg",
  18708. extra: 282 / 260,
  18709. bottom: 0.045
  18710. }
  18711. },
  18712. },
  18713. [
  18714. {
  18715. name: "Normal",
  18716. height: math.unit(5 + 10 / 12, "feet"),
  18717. default: true
  18718. },
  18719. ]
  18720. ))
  18721. characterMakers.push(() => makeCharacter(
  18722. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18723. {
  18724. front: {
  18725. height: math.unit(6 + 7 / 12, "feet"),
  18726. weight: math.unit(208, "lb"),
  18727. name: "Front",
  18728. image: {
  18729. source: "./media/characters/chaska/front.svg",
  18730. extra: 332 / 319,
  18731. bottom: 0.015
  18732. }
  18733. },
  18734. },
  18735. [
  18736. {
  18737. name: "Normal",
  18738. height: math.unit(6 + 7 / 12, "feet"),
  18739. default: true
  18740. },
  18741. ]
  18742. ))
  18743. characterMakers.push(() => makeCharacter(
  18744. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18745. {
  18746. front: {
  18747. height: math.unit(5 + 8 / 12, "feet"),
  18748. weight: math.unit(208, "lb"),
  18749. name: "Front",
  18750. image: {
  18751. source: "./media/characters/enuk/front.svg",
  18752. extra: 437 / 406,
  18753. bottom: 0.02
  18754. }
  18755. },
  18756. },
  18757. [
  18758. {
  18759. name: "Normal",
  18760. height: math.unit(5 + 8 / 12, "feet"),
  18761. default: true
  18762. },
  18763. ]
  18764. ))
  18765. characterMakers.push(() => makeCharacter(
  18766. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18767. {
  18768. front: {
  18769. height: math.unit(5 + 10 / 12, "feet"),
  18770. weight: math.unit(252, "lb"),
  18771. name: "Front",
  18772. image: {
  18773. source: "./media/characters/bruun/front.svg",
  18774. extra: 197 / 187,
  18775. bottom: 0.012
  18776. }
  18777. },
  18778. },
  18779. [
  18780. {
  18781. name: "Normal",
  18782. height: math.unit(5 + 10 / 12, "feet"),
  18783. default: true
  18784. },
  18785. ]
  18786. ))
  18787. characterMakers.push(() => makeCharacter(
  18788. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  18789. {
  18790. front: {
  18791. height: math.unit(6 + 10 / 12, "feet"),
  18792. weight: math.unit(255, "lb"),
  18793. name: "Front",
  18794. image: {
  18795. source: "./media/characters/alexeev/front.svg",
  18796. extra: 213 / 200,
  18797. bottom: 0.05
  18798. }
  18799. },
  18800. },
  18801. [
  18802. {
  18803. name: "Normal",
  18804. height: math.unit(6 + 10 / 12, "feet"),
  18805. default: true
  18806. },
  18807. ]
  18808. ))
  18809. characterMakers.push(() => makeCharacter(
  18810. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  18811. {
  18812. front: {
  18813. height: math.unit(2 + 8 / 12, "feet"),
  18814. weight: math.unit(22, "lb"),
  18815. name: "Front",
  18816. image: {
  18817. source: "./media/characters/evelyn/front.svg",
  18818. extra: 208 / 180
  18819. }
  18820. },
  18821. },
  18822. [
  18823. {
  18824. name: "Normal",
  18825. height: math.unit(2 + 8 / 12, "feet"),
  18826. default: true
  18827. },
  18828. ]
  18829. ))
  18830. characterMakers.push(() => makeCharacter(
  18831. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  18832. {
  18833. front: {
  18834. height: math.unit(5 + 9 / 12, "feet"),
  18835. weight: math.unit(139, "lb"),
  18836. name: "Front",
  18837. image: {
  18838. source: "./media/characters/inca/front.svg",
  18839. extra: 294 / 291,
  18840. bottom: 0.03
  18841. }
  18842. },
  18843. },
  18844. [
  18845. {
  18846. name: "Normal",
  18847. height: math.unit(5 + 9 / 12, "feet"),
  18848. default: true
  18849. },
  18850. ]
  18851. ))
  18852. characterMakers.push(() => makeCharacter(
  18853. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  18854. {
  18855. front: {
  18856. height: math.unit(5 + 1 / 12, "feet"),
  18857. weight: math.unit(84, "lb"),
  18858. name: "Front",
  18859. image: {
  18860. source: "./media/characters/magdalene/front.svg",
  18861. extra: 293 / 273
  18862. }
  18863. },
  18864. },
  18865. [
  18866. {
  18867. name: "Normal",
  18868. height: math.unit(5 + 1 / 12, "feet"),
  18869. default: true
  18870. },
  18871. ]
  18872. ))
  18873. characterMakers.push(() => makeCharacter(
  18874. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  18875. {
  18876. front: {
  18877. height: math.unit(6 + 3 / 12, "feet"),
  18878. weight: math.unit(185, "lb"),
  18879. name: "Front",
  18880. image: {
  18881. source: "./media/characters/mera/front.svg",
  18882. extra: 291 / 277,
  18883. bottom: 0.03
  18884. }
  18885. },
  18886. },
  18887. [
  18888. {
  18889. name: "Normal",
  18890. height: math.unit(6 + 3 / 12, "feet"),
  18891. default: true
  18892. },
  18893. ]
  18894. ))
  18895. characterMakers.push(() => makeCharacter(
  18896. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  18897. {
  18898. front: {
  18899. height: math.unit(6 + 7 / 12, "feet"),
  18900. weight: math.unit(160, "lb"),
  18901. name: "Front",
  18902. image: {
  18903. source: "./media/characters/ceres/front.svg",
  18904. extra: 1023 / 950,
  18905. bottom: 0.027
  18906. }
  18907. },
  18908. back: {
  18909. height: math.unit(6 + 7 / 12, "feet"),
  18910. weight: math.unit(160, "lb"),
  18911. name: "Back",
  18912. image: {
  18913. source: "./media/characters/ceres/back.svg",
  18914. extra: 1023 / 950
  18915. }
  18916. },
  18917. },
  18918. [
  18919. {
  18920. name: "Normal",
  18921. height: math.unit(6 + 7 / 12, "feet"),
  18922. default: true
  18923. },
  18924. ]
  18925. ))
  18926. characterMakers.push(() => makeCharacter(
  18927. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  18928. {
  18929. front: {
  18930. height: math.unit(5 + 10 / 12, "feet"),
  18931. weight: math.unit(150, "lb"),
  18932. name: "Front",
  18933. image: {
  18934. source: "./media/characters/kris/front.svg",
  18935. extra: 885 / 803,
  18936. bottom: 0.03
  18937. }
  18938. },
  18939. },
  18940. [
  18941. {
  18942. name: "Normal",
  18943. height: math.unit(5 + 10 / 12, "feet"),
  18944. default: true
  18945. },
  18946. ]
  18947. ))
  18948. characterMakers.push(() => makeCharacter(
  18949. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  18950. {
  18951. front: {
  18952. height: math.unit(7, "feet"),
  18953. weight: math.unit(120, "kg"),
  18954. name: "Front",
  18955. image: {
  18956. source: "./media/characters/taluthus/front.svg",
  18957. extra: 903 / 833,
  18958. bottom: 0.015
  18959. }
  18960. },
  18961. },
  18962. [
  18963. {
  18964. name: "Normal",
  18965. height: math.unit(7, "feet"),
  18966. default: true
  18967. },
  18968. {
  18969. name: "Macro",
  18970. height: math.unit(300, "feet")
  18971. },
  18972. ]
  18973. ))
  18974. characterMakers.push(() => makeCharacter(
  18975. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  18976. {
  18977. front: {
  18978. height: math.unit(5 + 9 / 12, "feet"),
  18979. weight: math.unit(145, "lb"),
  18980. name: "Front",
  18981. image: {
  18982. source: "./media/characters/dawn/front.svg",
  18983. extra: 2094 / 2016,
  18984. bottom: 0.025
  18985. }
  18986. },
  18987. back: {
  18988. height: math.unit(5 + 9 / 12, "feet"),
  18989. weight: math.unit(160, "lb"),
  18990. name: "Back",
  18991. image: {
  18992. source: "./media/characters/dawn/back.svg",
  18993. extra: 2112 / 2080,
  18994. bottom: 0.005
  18995. }
  18996. },
  18997. },
  18998. [
  18999. {
  19000. name: "Normal",
  19001. height: math.unit(6 + 7 / 12, "feet"),
  19002. default: true
  19003. },
  19004. ]
  19005. ))
  19006. characterMakers.push(() => makeCharacter(
  19007. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19008. {
  19009. anthro: {
  19010. height: math.unit(8 + 3 / 12, "feet"),
  19011. weight: math.unit(450, "lb"),
  19012. name: "Anthro",
  19013. image: {
  19014. source: "./media/characters/arador/anthro.svg",
  19015. extra: 1835 / 1718,
  19016. bottom: 0.025
  19017. }
  19018. },
  19019. feral: {
  19020. height: math.unit(4, "feet"),
  19021. weight: math.unit(200, "lb"),
  19022. name: "Feral",
  19023. image: {
  19024. source: "./media/characters/arador/feral.svg",
  19025. extra: 1683 / 1514,
  19026. bottom: 0.07
  19027. }
  19028. },
  19029. },
  19030. [
  19031. {
  19032. name: "Normal",
  19033. height: math.unit(8 + 3 / 12, "feet")
  19034. },
  19035. {
  19036. name: "Macro",
  19037. height: math.unit(82.5, "feet"),
  19038. default: true
  19039. },
  19040. ]
  19041. ))
  19042. characterMakers.push(() => makeCharacter(
  19043. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19044. {
  19045. front: {
  19046. height: math.unit(5 + 10 / 12, "feet"),
  19047. weight: math.unit(125, "lb"),
  19048. name: "Front",
  19049. image: {
  19050. source: "./media/characters/dharsi/front.svg",
  19051. extra: 716 / 630,
  19052. bottom: 0.035
  19053. }
  19054. },
  19055. },
  19056. [
  19057. {
  19058. name: "Nano",
  19059. height: math.unit(100, "nm")
  19060. },
  19061. {
  19062. name: "Micro",
  19063. height: math.unit(2, "inches")
  19064. },
  19065. {
  19066. name: "Normal",
  19067. height: math.unit(5 + 10 / 12, "feet"),
  19068. default: true
  19069. },
  19070. {
  19071. name: "Macro",
  19072. height: math.unit(1000, "feet")
  19073. },
  19074. {
  19075. name: "Megamacro",
  19076. height: math.unit(10, "miles")
  19077. },
  19078. {
  19079. name: "Gigamacro",
  19080. height: math.unit(3000, "miles")
  19081. },
  19082. {
  19083. name: "Teramacro",
  19084. height: math.unit(500000, "miles")
  19085. },
  19086. {
  19087. name: "Teramacro+",
  19088. height: math.unit(30, "galaxies")
  19089. },
  19090. ]
  19091. ))
  19092. characterMakers.push(() => makeCharacter(
  19093. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19094. {
  19095. front: {
  19096. height: math.unit(6, "feet"),
  19097. weight: math.unit(150, "lb"),
  19098. name: "Front",
  19099. image: {
  19100. source: "./media/characters/deathy/front.svg",
  19101. extra: 1552 / 1463,
  19102. bottom: 0.025
  19103. }
  19104. },
  19105. side: {
  19106. height: math.unit(6, "feet"),
  19107. weight: math.unit(150, "lb"),
  19108. name: "Side",
  19109. image: {
  19110. source: "./media/characters/deathy/side.svg",
  19111. extra: 1604 / 1455,
  19112. bottom: 0.025
  19113. }
  19114. },
  19115. back: {
  19116. height: math.unit(6, "feet"),
  19117. weight: math.unit(150, "lb"),
  19118. name: "Back",
  19119. image: {
  19120. source: "./media/characters/deathy/back.svg",
  19121. extra: 1580 / 1463,
  19122. bottom: 0.005
  19123. }
  19124. },
  19125. },
  19126. [
  19127. {
  19128. name: "Micro",
  19129. height: math.unit(5, "millimeters")
  19130. },
  19131. {
  19132. name: "Normal",
  19133. height: math.unit(6 + 5 / 12, "feet"),
  19134. default: true
  19135. },
  19136. ]
  19137. ))
  19138. characterMakers.push(() => makeCharacter(
  19139. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19140. {
  19141. front: {
  19142. height: math.unit(16, "feet"),
  19143. weight: math.unit(4000, "lb"),
  19144. name: "Front",
  19145. image: {
  19146. source: "./media/characters/juniper/front.svg",
  19147. bottom: 0.04
  19148. }
  19149. },
  19150. },
  19151. [
  19152. {
  19153. name: "Normal",
  19154. height: math.unit(16, "feet"),
  19155. default: true
  19156. },
  19157. ]
  19158. ))
  19159. characterMakers.push(() => makeCharacter(
  19160. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19161. {
  19162. front: {
  19163. height: math.unit(6, "feet"),
  19164. weight: math.unit(150, "lb"),
  19165. name: "Front",
  19166. image: {
  19167. source: "./media/characters/hipster/front.svg",
  19168. extra: 1312 / 1209,
  19169. bottom: 0.025
  19170. }
  19171. },
  19172. back: {
  19173. height: math.unit(6, "feet"),
  19174. weight: math.unit(150, "lb"),
  19175. name: "Back",
  19176. image: {
  19177. source: "./media/characters/hipster/back.svg",
  19178. extra: 1281 / 1196,
  19179. bottom: 0.01
  19180. }
  19181. },
  19182. },
  19183. [
  19184. {
  19185. name: "Micro",
  19186. height: math.unit(1, "mm")
  19187. },
  19188. {
  19189. name: "Normal",
  19190. height: math.unit(4, "inches"),
  19191. default: true
  19192. },
  19193. {
  19194. name: "Macro",
  19195. height: math.unit(500, "feet")
  19196. },
  19197. {
  19198. name: "Megamacro",
  19199. height: math.unit(1000, "miles")
  19200. },
  19201. ]
  19202. ))
  19203. characterMakers.push(() => makeCharacter(
  19204. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19205. {
  19206. front: {
  19207. height: math.unit(6, "feet"),
  19208. weight: math.unit(150, "lb"),
  19209. name: "Front",
  19210. image: {
  19211. source: "./media/characters/tendirmuldr/front.svg",
  19212. extra: 1878 / 1772,
  19213. bottom: 0.015
  19214. }
  19215. },
  19216. },
  19217. [
  19218. {
  19219. name: "Megamacro",
  19220. height: math.unit(1500, "miles"),
  19221. default: true
  19222. },
  19223. ]
  19224. ))
  19225. characterMakers.push(() => makeCharacter(
  19226. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19227. {
  19228. front: {
  19229. height: math.unit(14, "feet"),
  19230. weight: math.unit(12000, "lb"),
  19231. name: "Front",
  19232. image: {
  19233. source: "./media/characters/mort/front.svg",
  19234. extra: 365 / 318,
  19235. bottom: 0.01
  19236. }
  19237. },
  19238. side: {
  19239. height: math.unit(14, "feet"),
  19240. weight: math.unit(12000, "lb"),
  19241. name: "Side",
  19242. image: {
  19243. source: "./media/characters/mort/side.svg",
  19244. extra: 365 / 318,
  19245. bottom: 0.052
  19246. },
  19247. default: true
  19248. },
  19249. back: {
  19250. height: math.unit(14, "feet"),
  19251. weight: math.unit(12000, "lb"),
  19252. name: "Back",
  19253. image: {
  19254. source: "./media/characters/mort/back.svg",
  19255. extra: 371 / 332,
  19256. bottom: 0.18
  19257. }
  19258. },
  19259. },
  19260. [
  19261. {
  19262. name: "Normal",
  19263. height: math.unit(14, "feet"),
  19264. default: true
  19265. },
  19266. ]
  19267. ))
  19268. characterMakers.push(() => makeCharacter(
  19269. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19270. {
  19271. front: {
  19272. height: math.unit(8, "feet"),
  19273. weight: math.unit(1, "ton"),
  19274. name: "Front",
  19275. image: {
  19276. source: "./media/characters/lycoa/front.svg",
  19277. extra: 1875 / 1789,
  19278. bottom: 0.022
  19279. }
  19280. },
  19281. back: {
  19282. height: math.unit(8, "feet"),
  19283. weight: math.unit(1, "ton"),
  19284. name: "Back",
  19285. image: {
  19286. source: "./media/characters/lycoa/back.svg",
  19287. extra: 1835 / 1781,
  19288. bottom: 0.03
  19289. }
  19290. },
  19291. head: {
  19292. height: math.unit(2.1, "feet"),
  19293. name: "Head",
  19294. image: {
  19295. source: "./media/characters/lycoa/head.svg"
  19296. }
  19297. },
  19298. tailmaw: {
  19299. height: math.unit(1.9, "feet"),
  19300. name: "Tailmaw",
  19301. image: {
  19302. source: "./media/characters/lycoa/tailmaw.svg"
  19303. }
  19304. },
  19305. tentacles: {
  19306. height: math.unit(2.1, "feet"),
  19307. name: "Tentacles",
  19308. image: {
  19309. source: "./media/characters/lycoa/tentacles.svg"
  19310. }
  19311. },
  19312. dick: {
  19313. height: math.unit(1.73, "feet"),
  19314. name: "Dick",
  19315. image: {
  19316. source: "./media/characters/lycoa/dick.svg"
  19317. }
  19318. },
  19319. },
  19320. [
  19321. {
  19322. name: "Normal",
  19323. height: math.unit(8, "feet"),
  19324. default: true
  19325. },
  19326. {
  19327. name: "Macro",
  19328. height: math.unit(30, "feet")
  19329. },
  19330. ]
  19331. ))
  19332. characterMakers.push(() => makeCharacter(
  19333. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19334. {
  19335. front: {
  19336. height: math.unit(4 + 2 / 12, "feet"),
  19337. weight: math.unit(70, "lb"),
  19338. name: "Front",
  19339. image: {
  19340. source: "./media/characters/naldara/front.svg",
  19341. extra: 841 / 720,
  19342. bottom: 0.04
  19343. }
  19344. },
  19345. naga: {
  19346. height: math.unit(23, "feet"),
  19347. weight: math.unit(15000, "kg"),
  19348. name: "Naga",
  19349. image: {
  19350. source: "./media/characters/naldara/naga.svg",
  19351. extra: 3290/2959,
  19352. bottom: 124/3432
  19353. }
  19354. },
  19355. },
  19356. [
  19357. {
  19358. name: "Normal",
  19359. height: math.unit(4 + 2 / 12, "feet"),
  19360. default: true
  19361. },
  19362. ]
  19363. ))
  19364. characterMakers.push(() => makeCharacter(
  19365. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19366. {
  19367. front: {
  19368. height: math.unit(13 + 7 / 12, "feet"),
  19369. weight: math.unit(1500, "lb"),
  19370. name: "Front",
  19371. image: {
  19372. source: "./media/characters/briar/front.svg",
  19373. extra: 626 / 596,
  19374. bottom: 0.08
  19375. }
  19376. },
  19377. },
  19378. [
  19379. {
  19380. name: "Normal",
  19381. height: math.unit(13 + 7 / 12, "feet"),
  19382. default: true
  19383. },
  19384. ]
  19385. ))
  19386. characterMakers.push(() => makeCharacter(
  19387. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19388. {
  19389. side: {
  19390. height: math.unit(10, "feet"),
  19391. weight: math.unit(500, "lb"),
  19392. name: "Side",
  19393. image: {
  19394. source: "./media/characters/vanguard/side.svg",
  19395. extra: 502 / 425,
  19396. bottom: 0.087
  19397. }
  19398. },
  19399. },
  19400. [
  19401. {
  19402. name: "Normal",
  19403. height: math.unit(10, "feet"),
  19404. default: true
  19405. },
  19406. ]
  19407. ))
  19408. characterMakers.push(() => makeCharacter(
  19409. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19410. {
  19411. front: {
  19412. height: math.unit(7.5, "feet"),
  19413. weight: math.unit(2, "lb"),
  19414. name: "Front",
  19415. image: {
  19416. source: "./media/characters/artemis/front.svg",
  19417. extra: 1192 / 1075,
  19418. bottom: 0.07
  19419. }
  19420. },
  19421. frontNsfw: {
  19422. height: math.unit(7.5, "feet"),
  19423. weight: math.unit(2, "lb"),
  19424. name: "Front (NSFW)",
  19425. image: {
  19426. source: "./media/characters/artemis/front-nsfw.svg",
  19427. extra: 1192 / 1075,
  19428. bottom: 0.07
  19429. }
  19430. },
  19431. frontNsfwer: {
  19432. height: math.unit(7.5, "feet"),
  19433. weight: math.unit(2, "lb"),
  19434. name: "Front (NSFW-er)",
  19435. image: {
  19436. source: "./media/characters/artemis/front-nsfwer.svg",
  19437. extra: 1192 / 1075,
  19438. bottom: 0.07
  19439. }
  19440. },
  19441. side: {
  19442. height: math.unit(7.5, "feet"),
  19443. weight: math.unit(2, "lb"),
  19444. name: "Side",
  19445. image: {
  19446. source: "./media/characters/artemis/side.svg",
  19447. extra: 1192 / 1075,
  19448. bottom: 0.07
  19449. }
  19450. },
  19451. sideNsfw: {
  19452. height: math.unit(7.5, "feet"),
  19453. weight: math.unit(2, "lb"),
  19454. name: "Side (NSFW)",
  19455. image: {
  19456. source: "./media/characters/artemis/side-nsfw.svg",
  19457. extra: 1192 / 1075,
  19458. bottom: 0.07
  19459. }
  19460. },
  19461. sideNsfwer: {
  19462. height: math.unit(7.5, "feet"),
  19463. weight: math.unit(2, "lb"),
  19464. name: "Side (NSFW-er)",
  19465. image: {
  19466. source: "./media/characters/artemis/side-nsfwer.svg",
  19467. extra: 1192 / 1075,
  19468. bottom: 0.07
  19469. }
  19470. },
  19471. maw: {
  19472. height: math.unit(1.1, "feet"),
  19473. name: "Maw",
  19474. image: {
  19475. source: "./media/characters/artemis/maw.svg"
  19476. }
  19477. },
  19478. stomach: {
  19479. height: math.unit(0.95, "feet"),
  19480. name: "Stomach",
  19481. image: {
  19482. source: "./media/characters/artemis/stomach.svg"
  19483. }
  19484. },
  19485. dickCanine: {
  19486. height: math.unit(1, "feet"),
  19487. name: "Dick (Canine)",
  19488. image: {
  19489. source: "./media/characters/artemis/dick-canine.svg"
  19490. }
  19491. },
  19492. dickEquine: {
  19493. height: math.unit(0.85, "feet"),
  19494. name: "Dick (Equine)",
  19495. image: {
  19496. source: "./media/characters/artemis/dick-equine.svg"
  19497. }
  19498. },
  19499. dickExotic: {
  19500. height: math.unit(0.85, "feet"),
  19501. name: "Dick (Exotic)",
  19502. image: {
  19503. source: "./media/characters/artemis/dick-exotic.svg"
  19504. }
  19505. },
  19506. },
  19507. [
  19508. {
  19509. name: "Normal",
  19510. height: math.unit(7.5, "feet"),
  19511. default: true
  19512. },
  19513. {
  19514. name: "Enlarged",
  19515. height: math.unit(12, "feet")
  19516. },
  19517. ]
  19518. ))
  19519. characterMakers.push(() => makeCharacter(
  19520. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19521. {
  19522. front: {
  19523. height: math.unit(5 + 3 / 12, "feet"),
  19524. weight: math.unit(160, "lb"),
  19525. name: "Front",
  19526. image: {
  19527. source: "./media/characters/kira/front.svg",
  19528. extra: 906 / 786,
  19529. bottom: 0.01
  19530. }
  19531. },
  19532. back: {
  19533. height: math.unit(5 + 3 / 12, "feet"),
  19534. weight: math.unit(160, "lb"),
  19535. name: "Back",
  19536. image: {
  19537. source: "./media/characters/kira/back.svg",
  19538. extra: 882 / 757,
  19539. bottom: 0.005
  19540. }
  19541. },
  19542. frontDressed: {
  19543. height: math.unit(5 + 3 / 12, "feet"),
  19544. weight: math.unit(160, "lb"),
  19545. name: "Front (Dressed)",
  19546. image: {
  19547. source: "./media/characters/kira/front-dressed.svg",
  19548. extra: 906 / 786,
  19549. bottom: 0.01
  19550. }
  19551. },
  19552. beans: {
  19553. height: math.unit(0.92, "feet"),
  19554. name: "Beans",
  19555. image: {
  19556. source: "./media/characters/kira/beans.svg"
  19557. }
  19558. },
  19559. },
  19560. [
  19561. {
  19562. name: "Normal",
  19563. height: math.unit(5 + 3 / 12, "feet"),
  19564. default: true
  19565. },
  19566. ]
  19567. ))
  19568. characterMakers.push(() => makeCharacter(
  19569. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19570. {
  19571. front: {
  19572. height: math.unit(5 + 4 / 12, "feet"),
  19573. weight: math.unit(145, "lb"),
  19574. name: "Front",
  19575. image: {
  19576. source: "./media/characters/scramble/front.svg",
  19577. extra: 763 / 727,
  19578. bottom: 0.05
  19579. }
  19580. },
  19581. back: {
  19582. height: math.unit(5 + 4 / 12, "feet"),
  19583. weight: math.unit(145, "lb"),
  19584. name: "Back",
  19585. image: {
  19586. source: "./media/characters/scramble/back.svg",
  19587. extra: 826 / 737,
  19588. bottom: 0.002
  19589. }
  19590. },
  19591. },
  19592. [
  19593. {
  19594. name: "Normal",
  19595. height: math.unit(5 + 4 / 12, "feet"),
  19596. default: true
  19597. },
  19598. ]
  19599. ))
  19600. characterMakers.push(() => makeCharacter(
  19601. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19602. {
  19603. side: {
  19604. height: math.unit(6 + 2 / 12, "feet"),
  19605. weight: math.unit(190, "lb"),
  19606. name: "Side",
  19607. image: {
  19608. source: "./media/characters/biscuit/side.svg",
  19609. extra: 858 / 791,
  19610. bottom: 0.044
  19611. }
  19612. },
  19613. },
  19614. [
  19615. {
  19616. name: "Normal",
  19617. height: math.unit(6 + 2 / 12, "feet"),
  19618. default: true
  19619. },
  19620. ]
  19621. ))
  19622. characterMakers.push(() => makeCharacter(
  19623. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19624. {
  19625. front: {
  19626. height: math.unit(5 + 2 / 12, "feet"),
  19627. weight: math.unit(120, "lb"),
  19628. name: "Front",
  19629. image: {
  19630. source: "./media/characters/poffin/front.svg",
  19631. extra: 786 / 680,
  19632. bottom: 0.005
  19633. }
  19634. },
  19635. },
  19636. [
  19637. {
  19638. name: "Normal",
  19639. height: math.unit(5 + 2 / 12, "feet"),
  19640. default: true
  19641. },
  19642. ]
  19643. ))
  19644. characterMakers.push(() => makeCharacter(
  19645. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19646. {
  19647. front: {
  19648. height: math.unit(6 + 3 / 12, "feet"),
  19649. weight: math.unit(519, "lb"),
  19650. name: "Front",
  19651. image: {
  19652. source: "./media/characters/dhari/front.svg",
  19653. extra: 1048 / 946,
  19654. bottom: 0.015
  19655. }
  19656. },
  19657. back: {
  19658. height: math.unit(6 + 3 / 12, "feet"),
  19659. weight: math.unit(519, "lb"),
  19660. name: "Back",
  19661. image: {
  19662. source: "./media/characters/dhari/back.svg",
  19663. extra: 1048 / 931,
  19664. bottom: 0.005
  19665. }
  19666. },
  19667. frontDressed: {
  19668. height: math.unit(6 + 3 / 12, "feet"),
  19669. weight: math.unit(519, "lb"),
  19670. name: "Front (Dressed)",
  19671. image: {
  19672. source: "./media/characters/dhari/front-dressed.svg",
  19673. extra: 1713 / 1546,
  19674. bottom: 0.02
  19675. }
  19676. },
  19677. backDressed: {
  19678. height: math.unit(6 + 3 / 12, "feet"),
  19679. weight: math.unit(519, "lb"),
  19680. name: "Back (Dressed)",
  19681. image: {
  19682. source: "./media/characters/dhari/back-dressed.svg",
  19683. extra: 1699 / 1537,
  19684. bottom: 0.01
  19685. }
  19686. },
  19687. maw: {
  19688. height: math.unit(0.95, "feet"),
  19689. name: "Maw",
  19690. image: {
  19691. source: "./media/characters/dhari/maw.svg"
  19692. }
  19693. },
  19694. wereFront: {
  19695. height: math.unit(12 + 8 / 12, "feet"),
  19696. weight: math.unit(4000, "lb"),
  19697. name: "Front (Were)",
  19698. image: {
  19699. source: "./media/characters/dhari/were-front.svg",
  19700. extra: 1065 / 969,
  19701. bottom: 0.015
  19702. }
  19703. },
  19704. wereBack: {
  19705. height: math.unit(12 + 8 / 12, "feet"),
  19706. weight: math.unit(4000, "lb"),
  19707. name: "Back (Were)",
  19708. image: {
  19709. source: "./media/characters/dhari/were-back.svg",
  19710. extra: 1065 / 969,
  19711. bottom: 0.012
  19712. }
  19713. },
  19714. wereMaw: {
  19715. height: math.unit(0.625, "meters"),
  19716. name: "Maw (Were)",
  19717. image: {
  19718. source: "./media/characters/dhari/were-maw.svg"
  19719. }
  19720. },
  19721. },
  19722. [
  19723. {
  19724. name: "Normal",
  19725. height: math.unit(6 + 3 / 12, "feet"),
  19726. default: true
  19727. },
  19728. ]
  19729. ))
  19730. characterMakers.push(() => makeCharacter(
  19731. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19732. {
  19733. anthro: {
  19734. height: math.unit(5 + 7 / 12, "feet"),
  19735. weight: math.unit(175, "lb"),
  19736. name: "Anthro",
  19737. image: {
  19738. source: "./media/characters/rena-dyne/anthro.svg",
  19739. extra: 1849 / 1785,
  19740. bottom: 0.005
  19741. }
  19742. },
  19743. taur: {
  19744. height: math.unit(15 + 6 / 12, "feet"),
  19745. weight: math.unit(8000, "lb"),
  19746. name: "Taur",
  19747. image: {
  19748. source: "./media/characters/rena-dyne/taur.svg",
  19749. extra: 2315 / 2234,
  19750. bottom: 0.033
  19751. }
  19752. },
  19753. },
  19754. [
  19755. {
  19756. name: "Normal",
  19757. height: math.unit(5 + 7 / 12, "feet"),
  19758. default: true
  19759. },
  19760. ]
  19761. ))
  19762. characterMakers.push(() => makeCharacter(
  19763. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19764. {
  19765. front: {
  19766. height: math.unit(8, "feet"),
  19767. weight: math.unit(600, "lb"),
  19768. name: "Front",
  19769. image: {
  19770. source: "./media/characters/weremeep/front.svg",
  19771. extra: 967 / 862,
  19772. bottom: 0.01
  19773. }
  19774. },
  19775. },
  19776. [
  19777. {
  19778. name: "Normal",
  19779. height: math.unit(8, "feet"),
  19780. default: true
  19781. },
  19782. {
  19783. name: "Lorg",
  19784. height: math.unit(12, "feet")
  19785. },
  19786. {
  19787. name: "Oh Lawd She Comin'",
  19788. height: math.unit(20, "feet")
  19789. },
  19790. ]
  19791. ))
  19792. characterMakers.push(() => makeCharacter(
  19793. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  19794. {
  19795. front: {
  19796. height: math.unit(4, "feet"),
  19797. weight: math.unit(90, "lb"),
  19798. name: "Front",
  19799. image: {
  19800. source: "./media/characters/reza/front.svg",
  19801. extra: 1183 / 1111,
  19802. bottom: 0.017
  19803. }
  19804. },
  19805. back: {
  19806. height: math.unit(4, "feet"),
  19807. weight: math.unit(90, "lb"),
  19808. name: "Back",
  19809. image: {
  19810. source: "./media/characters/reza/back.svg",
  19811. extra: 1183 / 1111,
  19812. bottom: 0.01
  19813. }
  19814. },
  19815. drake: {
  19816. height: math.unit(30, "feet"),
  19817. weight: math.unit(246960, "lb"),
  19818. name: "Drake",
  19819. image: {
  19820. source: "./media/characters/reza/drake.svg",
  19821. extra: 2350 / 2024,
  19822. bottom: 60.7 / 2403
  19823. }
  19824. },
  19825. },
  19826. [
  19827. {
  19828. name: "Normal",
  19829. height: math.unit(4, "feet"),
  19830. default: true
  19831. },
  19832. ]
  19833. ))
  19834. characterMakers.push(() => makeCharacter(
  19835. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  19836. {
  19837. side: {
  19838. height: math.unit(15, "feet"),
  19839. weight: math.unit(14, "tons"),
  19840. name: "Side",
  19841. image: {
  19842. source: "./media/characters/athea/side.svg",
  19843. extra: 960 / 540,
  19844. bottom: 0.003
  19845. }
  19846. },
  19847. sitting: {
  19848. height: math.unit(6 * 2.85, "feet"),
  19849. weight: math.unit(14, "tons"),
  19850. name: "Sitting",
  19851. image: {
  19852. source: "./media/characters/athea/sitting.svg",
  19853. extra: 621 / 581,
  19854. bottom: 0.075
  19855. }
  19856. },
  19857. maw: {
  19858. height: math.unit(7.59498031496063, "feet"),
  19859. name: "Maw",
  19860. image: {
  19861. source: "./media/characters/athea/maw.svg"
  19862. }
  19863. },
  19864. },
  19865. [
  19866. {
  19867. name: "Lap Cat",
  19868. height: math.unit(2.5, "feet")
  19869. },
  19870. {
  19871. name: "Minimacro",
  19872. height: math.unit(15, "feet"),
  19873. default: true
  19874. },
  19875. {
  19876. name: "Macro",
  19877. height: math.unit(120, "feet")
  19878. },
  19879. {
  19880. name: "Macro+",
  19881. height: math.unit(640, "feet")
  19882. },
  19883. {
  19884. name: "Colossus",
  19885. height: math.unit(2.2, "miles")
  19886. },
  19887. ]
  19888. ))
  19889. characterMakers.push(() => makeCharacter(
  19890. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  19891. {
  19892. front: {
  19893. height: math.unit(8 + 8 / 12, "feet"),
  19894. weight: math.unit(130, "kg"),
  19895. name: "Front",
  19896. image: {
  19897. source: "./media/characters/seroko/front.svg",
  19898. extra: 1385 / 1280,
  19899. bottom: 0.025
  19900. }
  19901. },
  19902. back: {
  19903. height: math.unit(8 + 8 / 12, "feet"),
  19904. weight: math.unit(130, "kg"),
  19905. name: "Back",
  19906. image: {
  19907. source: "./media/characters/seroko/back.svg",
  19908. extra: 1369 / 1238,
  19909. bottom: 0.018
  19910. }
  19911. },
  19912. frontDressed: {
  19913. height: math.unit(8 + 8 / 12, "feet"),
  19914. weight: math.unit(130, "kg"),
  19915. name: "Front (Dressed)",
  19916. image: {
  19917. source: "./media/characters/seroko/front-dressed.svg",
  19918. extra: 1366 / 1275,
  19919. bottom: 0.03
  19920. }
  19921. },
  19922. },
  19923. [
  19924. {
  19925. name: "Normal",
  19926. height: math.unit(8 + 8 / 12, "feet"),
  19927. default: true
  19928. },
  19929. ]
  19930. ))
  19931. characterMakers.push(() => makeCharacter(
  19932. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  19933. {
  19934. front: {
  19935. height: math.unit(5.5, "feet"),
  19936. weight: math.unit(160, "lb"),
  19937. name: "Front",
  19938. image: {
  19939. source: "./media/characters/quatzi/front.svg",
  19940. extra: 2346 / 2242,
  19941. bottom: 0.015
  19942. }
  19943. },
  19944. },
  19945. [
  19946. {
  19947. name: "Normal",
  19948. height: math.unit(5.5, "feet"),
  19949. default: true
  19950. },
  19951. {
  19952. name: "Big",
  19953. height: math.unit(7.7, "feet")
  19954. },
  19955. ]
  19956. ))
  19957. characterMakers.push(() => makeCharacter(
  19958. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  19959. {
  19960. front: {
  19961. height: math.unit(5 + 11 / 12, "feet"),
  19962. weight: math.unit(180, "lb"),
  19963. name: "Front",
  19964. image: {
  19965. source: "./media/characters/sen/front.svg",
  19966. extra: 1321 / 1254,
  19967. bottom: 0.015
  19968. }
  19969. },
  19970. side: {
  19971. height: math.unit(5 + 11 / 12, "feet"),
  19972. weight: math.unit(180, "lb"),
  19973. name: "Side",
  19974. image: {
  19975. source: "./media/characters/sen/side.svg",
  19976. extra: 1321 / 1254,
  19977. bottom: 0.007
  19978. }
  19979. },
  19980. back: {
  19981. height: math.unit(5 + 11 / 12, "feet"),
  19982. weight: math.unit(180, "lb"),
  19983. name: "Back",
  19984. image: {
  19985. source: "./media/characters/sen/back.svg",
  19986. extra: 1321 / 1254
  19987. }
  19988. },
  19989. },
  19990. [
  19991. {
  19992. name: "Normal",
  19993. height: math.unit(5 + 11 / 12, "feet"),
  19994. default: true
  19995. },
  19996. ]
  19997. ))
  19998. characterMakers.push(() => makeCharacter(
  19999. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20000. {
  20001. front: {
  20002. height: math.unit(166.6, "cm"),
  20003. weight: math.unit(66.6, "kg"),
  20004. name: "Front",
  20005. image: {
  20006. source: "./media/characters/fruity/front.svg",
  20007. extra: 1510 / 1386,
  20008. bottom: 0.04
  20009. }
  20010. },
  20011. back: {
  20012. height: math.unit(166.6, "cm"),
  20013. weight: math.unit(66.6, "lb"),
  20014. name: "Back",
  20015. image: {
  20016. source: "./media/characters/fruity/back.svg",
  20017. extra: 1563 / 1435,
  20018. bottom: 0.005
  20019. }
  20020. },
  20021. },
  20022. [
  20023. {
  20024. name: "Normal",
  20025. height: math.unit(166.6, "cm"),
  20026. default: true
  20027. },
  20028. {
  20029. name: "Demonic",
  20030. height: math.unit(166.6, "feet")
  20031. },
  20032. ]
  20033. ))
  20034. characterMakers.push(() => makeCharacter(
  20035. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20036. {
  20037. side: {
  20038. height: math.unit(10, "feet"),
  20039. weight: math.unit(500, "lb"),
  20040. name: "Side",
  20041. image: {
  20042. source: "./media/characters/zost/side.svg",
  20043. extra: 966 / 880,
  20044. bottom: 0.075
  20045. }
  20046. },
  20047. mawFront: {
  20048. height: math.unit(1.08, "meters"),
  20049. name: "Maw (Front)",
  20050. image: {
  20051. source: "./media/characters/zost/maw-front.svg"
  20052. }
  20053. },
  20054. mawSide: {
  20055. height: math.unit(2.66, "feet"),
  20056. name: "Maw (Side)",
  20057. image: {
  20058. source: "./media/characters/zost/maw-side.svg"
  20059. }
  20060. },
  20061. },
  20062. [
  20063. {
  20064. name: "Normal",
  20065. height: math.unit(10, "feet"),
  20066. default: true
  20067. },
  20068. ]
  20069. ))
  20070. characterMakers.push(() => makeCharacter(
  20071. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20072. {
  20073. front: {
  20074. height: math.unit(5 + 4 / 12, "feet"),
  20075. weight: math.unit(120, "lb"),
  20076. name: "Front",
  20077. image: {
  20078. source: "./media/characters/luci/front.svg",
  20079. extra: 1985 / 1884,
  20080. bottom: 0.04
  20081. }
  20082. },
  20083. back: {
  20084. height: math.unit(5 + 4 / 12, "feet"),
  20085. weight: math.unit(120, "lb"),
  20086. name: "Back",
  20087. image: {
  20088. source: "./media/characters/luci/back.svg",
  20089. extra: 1892 / 1791,
  20090. bottom: 0.002
  20091. }
  20092. },
  20093. },
  20094. [
  20095. {
  20096. name: "Normal",
  20097. height: math.unit(5 + 4 / 12, "feet"),
  20098. default: true
  20099. },
  20100. ]
  20101. ))
  20102. characterMakers.push(() => makeCharacter(
  20103. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20104. {
  20105. front: {
  20106. height: math.unit(1500, "feet"),
  20107. weight: math.unit(3.8e6, "tons"),
  20108. name: "Front",
  20109. image: {
  20110. source: "./media/characters/2th/front.svg",
  20111. extra: 3489 / 3350,
  20112. bottom: 0.1
  20113. }
  20114. },
  20115. foot: {
  20116. height: math.unit(461, "feet"),
  20117. name: "Foot",
  20118. image: {
  20119. source: "./media/characters/2th/foot.svg"
  20120. }
  20121. },
  20122. },
  20123. [
  20124. {
  20125. name: "\"Micro\"",
  20126. height: math.unit(15 + 7 / 12, "feet")
  20127. },
  20128. {
  20129. name: "Normal",
  20130. height: math.unit(1500, "feet"),
  20131. default: true
  20132. },
  20133. {
  20134. name: "Macro",
  20135. height: math.unit(5000, "feet")
  20136. },
  20137. {
  20138. name: "Megamacro",
  20139. height: math.unit(15, "miles")
  20140. },
  20141. {
  20142. name: "Gigamacro",
  20143. height: math.unit(4000, "miles")
  20144. },
  20145. {
  20146. name: "Galactic",
  20147. height: math.unit(50, "AU")
  20148. },
  20149. ]
  20150. ))
  20151. characterMakers.push(() => makeCharacter(
  20152. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20153. {
  20154. front: {
  20155. height: math.unit(5 + 6 / 12, "feet"),
  20156. weight: math.unit(220, "lb"),
  20157. name: "Front",
  20158. image: {
  20159. source: "./media/characters/amethyst/front.svg",
  20160. extra: 2078 / 2040,
  20161. bottom: 0.045
  20162. }
  20163. },
  20164. back: {
  20165. height: math.unit(5 + 6 / 12, "feet"),
  20166. weight: math.unit(220, "lb"),
  20167. name: "Back",
  20168. image: {
  20169. source: "./media/characters/amethyst/back.svg",
  20170. extra: 2021 / 1989,
  20171. bottom: 0.02
  20172. }
  20173. },
  20174. },
  20175. [
  20176. {
  20177. name: "Normal",
  20178. height: math.unit(5 + 6 / 12, "feet"),
  20179. default: true
  20180. },
  20181. ]
  20182. ))
  20183. characterMakers.push(() => makeCharacter(
  20184. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20185. {
  20186. front: {
  20187. height: math.unit(4 + 11 / 12, "feet"),
  20188. weight: math.unit(120, "lb"),
  20189. name: "Front",
  20190. image: {
  20191. source: "./media/characters/yumi-akiyama/front.svg",
  20192. extra: 1327 / 1235,
  20193. bottom: 0.02
  20194. }
  20195. },
  20196. back: {
  20197. height: math.unit(4 + 11 / 12, "feet"),
  20198. weight: math.unit(120, "lb"),
  20199. name: "Back",
  20200. image: {
  20201. source: "./media/characters/yumi-akiyama/back.svg",
  20202. extra: 1287 / 1245,
  20203. bottom: 0.002
  20204. }
  20205. },
  20206. },
  20207. [
  20208. {
  20209. name: "Galactic",
  20210. height: math.unit(50, "galaxies"),
  20211. default: true
  20212. },
  20213. {
  20214. name: "Universal",
  20215. height: math.unit(100, "universes")
  20216. },
  20217. ]
  20218. ))
  20219. characterMakers.push(() => makeCharacter(
  20220. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20221. {
  20222. front: {
  20223. height: math.unit(8, "feet"),
  20224. weight: math.unit(500, "lb"),
  20225. name: "Front",
  20226. image: {
  20227. source: "./media/characters/rifter-yrmori/front.svg",
  20228. extra: 1180 / 1125,
  20229. bottom: 0.02
  20230. }
  20231. },
  20232. back: {
  20233. height: math.unit(8, "feet"),
  20234. weight: math.unit(500, "lb"),
  20235. name: "Back",
  20236. image: {
  20237. source: "./media/characters/rifter-yrmori/back.svg",
  20238. extra: 1190 / 1145,
  20239. bottom: 0.001
  20240. }
  20241. },
  20242. wings: {
  20243. height: math.unit(7.75, "feet"),
  20244. weight: math.unit(500, "lb"),
  20245. name: "Wings",
  20246. image: {
  20247. source: "./media/characters/rifter-yrmori/wings.svg",
  20248. extra: 1357 / 1285
  20249. }
  20250. },
  20251. maw: {
  20252. height: math.unit(0.8, "feet"),
  20253. name: "Maw",
  20254. image: {
  20255. source: "./media/characters/rifter-yrmori/maw.svg"
  20256. }
  20257. },
  20258. mawfront: {
  20259. height: math.unit(1.45, "feet"),
  20260. name: "Maw (Front)",
  20261. image: {
  20262. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20263. }
  20264. },
  20265. },
  20266. [
  20267. {
  20268. name: "Normal",
  20269. height: math.unit(8, "feet"),
  20270. default: true
  20271. },
  20272. {
  20273. name: "Macro",
  20274. height: math.unit(42, "meters")
  20275. },
  20276. ]
  20277. ))
  20278. characterMakers.push(() => makeCharacter(
  20279. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20280. {
  20281. were: {
  20282. height: math.unit(25 + 6 / 12, "feet"),
  20283. weight: math.unit(10000, "lb"),
  20284. name: "Were",
  20285. image: {
  20286. source: "./media/characters/tahajin/were.svg",
  20287. extra: 801 / 770,
  20288. bottom: 0.042
  20289. }
  20290. },
  20291. aquatic: {
  20292. height: math.unit(6 + 4 / 12, "feet"),
  20293. weight: math.unit(160, "lb"),
  20294. name: "Aquatic",
  20295. image: {
  20296. source: "./media/characters/tahajin/aquatic.svg",
  20297. extra: 572 / 542,
  20298. bottom: 0.04
  20299. }
  20300. },
  20301. chow: {
  20302. height: math.unit(8 + 11 / 12, "feet"),
  20303. weight: math.unit(450, "lb"),
  20304. name: "Chow",
  20305. image: {
  20306. source: "./media/characters/tahajin/chow.svg",
  20307. extra: 660 / 640,
  20308. bottom: 0.015
  20309. }
  20310. },
  20311. demiNaga: {
  20312. height: math.unit(6 + 8 / 12, "feet"),
  20313. weight: math.unit(300, "lb"),
  20314. name: "Demi Naga",
  20315. image: {
  20316. source: "./media/characters/tahajin/demi-naga.svg",
  20317. extra: 643 / 615,
  20318. bottom: 0.1
  20319. }
  20320. },
  20321. data: {
  20322. height: math.unit(5, "inches"),
  20323. weight: math.unit(0.1, "lb"),
  20324. name: "Data",
  20325. image: {
  20326. source: "./media/characters/tahajin/data.svg"
  20327. }
  20328. },
  20329. fluu: {
  20330. height: math.unit(5 + 7 / 12, "feet"),
  20331. weight: math.unit(140, "lb"),
  20332. name: "Fluu",
  20333. image: {
  20334. source: "./media/characters/tahajin/fluu.svg",
  20335. extra: 628 / 592,
  20336. bottom: 0.02
  20337. }
  20338. },
  20339. starWarrior: {
  20340. height: math.unit(4 + 5 / 12, "feet"),
  20341. weight: math.unit(50, "lb"),
  20342. name: "Star Warrior",
  20343. image: {
  20344. source: "./media/characters/tahajin/star-warrior.svg"
  20345. }
  20346. },
  20347. },
  20348. [
  20349. {
  20350. name: "Normal",
  20351. height: math.unit(25 + 6 / 12, "feet"),
  20352. default: true
  20353. },
  20354. ]
  20355. ))
  20356. characterMakers.push(() => makeCharacter(
  20357. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20358. {
  20359. front: {
  20360. height: math.unit(8, "feet"),
  20361. weight: math.unit(350, "lb"),
  20362. name: "Front",
  20363. image: {
  20364. source: "./media/characters/gabira/front.svg",
  20365. extra: 608 / 580,
  20366. bottom: 0.03
  20367. }
  20368. },
  20369. back: {
  20370. height: math.unit(8, "feet"),
  20371. weight: math.unit(350, "lb"),
  20372. name: "Back",
  20373. image: {
  20374. source: "./media/characters/gabira/back.svg",
  20375. extra: 608 / 580,
  20376. bottom: 0.03
  20377. }
  20378. },
  20379. },
  20380. [
  20381. {
  20382. name: "Normal",
  20383. height: math.unit(8, "feet"),
  20384. default: true
  20385. },
  20386. ]
  20387. ))
  20388. characterMakers.push(() => makeCharacter(
  20389. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20390. {
  20391. front: {
  20392. height: math.unit(5 + 3 / 12, "feet"),
  20393. weight: math.unit(137, "lb"),
  20394. name: "Front",
  20395. image: {
  20396. source: "./media/characters/sasha-katraine/front.svg",
  20397. bottom: 0.045
  20398. }
  20399. },
  20400. },
  20401. [
  20402. {
  20403. name: "Micro",
  20404. height: math.unit(5, "inches")
  20405. },
  20406. {
  20407. name: "Normal",
  20408. height: math.unit(5 + 3 / 12, "feet"),
  20409. default: true
  20410. },
  20411. ]
  20412. ))
  20413. characterMakers.push(() => makeCharacter(
  20414. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20415. {
  20416. side: {
  20417. height: math.unit(4, "inches"),
  20418. weight: math.unit(200, "grams"),
  20419. name: "Side",
  20420. image: {
  20421. source: "./media/characters/der/side.svg",
  20422. extra: 719 / 400,
  20423. bottom: 30.6 / 749.9187
  20424. }
  20425. },
  20426. },
  20427. [
  20428. {
  20429. name: "Micro",
  20430. height: math.unit(4, "inches"),
  20431. default: true
  20432. },
  20433. ]
  20434. ))
  20435. characterMakers.push(() => makeCharacter(
  20436. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20437. {
  20438. side: {
  20439. height: math.unit(30, "meters"),
  20440. weight: math.unit(700, "tonnes"),
  20441. name: "Side",
  20442. image: {
  20443. source: "./media/characters/fixerdragon/side.svg",
  20444. extra: (1293.0514 - 116.03) / 1106.86,
  20445. bottom: 116.03 / 1293.0514
  20446. }
  20447. },
  20448. },
  20449. [
  20450. {
  20451. name: "Planck",
  20452. height: math.unit(1.6e-35, "meters")
  20453. },
  20454. {
  20455. name: "Micro",
  20456. height: math.unit(0.4, "meters")
  20457. },
  20458. {
  20459. name: "Normal",
  20460. height: math.unit(30, "meters"),
  20461. default: true
  20462. },
  20463. {
  20464. name: "Megamacro",
  20465. height: math.unit(1.2, "megameters")
  20466. },
  20467. {
  20468. name: "Teramacro",
  20469. height: math.unit(130, "terameters")
  20470. },
  20471. {
  20472. name: "Yottamacro",
  20473. height: math.unit(6200, "yottameters")
  20474. },
  20475. ]
  20476. ));
  20477. characterMakers.push(() => makeCharacter(
  20478. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20479. {
  20480. front: {
  20481. height: math.unit(8, "feet"),
  20482. weight: math.unit(250, "lb"),
  20483. name: "Front",
  20484. image: {
  20485. source: "./media/characters/kite/front.svg",
  20486. extra: 2796 / 2659,
  20487. bottom: 0.002
  20488. }
  20489. },
  20490. },
  20491. [
  20492. {
  20493. name: "Normal",
  20494. height: math.unit(8, "feet"),
  20495. default: true
  20496. },
  20497. {
  20498. name: "Macro",
  20499. height: math.unit(360, "feet")
  20500. },
  20501. {
  20502. name: "Megamacro",
  20503. height: math.unit(1500, "feet")
  20504. },
  20505. ]
  20506. ))
  20507. characterMakers.push(() => makeCharacter(
  20508. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20509. {
  20510. front: {
  20511. height: math.unit(5 + 10 / 12, "feet"),
  20512. weight: math.unit(150, "lb"),
  20513. name: "Front",
  20514. image: {
  20515. source: "./media/characters/poojawa-vynar/front.svg",
  20516. extra: (1506.1547 - 55) / 1356.6,
  20517. bottom: 55 / 1506.1547
  20518. }
  20519. },
  20520. frontTailless: {
  20521. height: math.unit(5 + 10 / 12, "feet"),
  20522. weight: math.unit(150, "lb"),
  20523. name: "Front (Tailless)",
  20524. image: {
  20525. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20526. extra: (1506.1547 - 55) / 1356.6,
  20527. bottom: 55 / 1506.1547
  20528. }
  20529. },
  20530. },
  20531. [
  20532. {
  20533. name: "Normal",
  20534. height: math.unit(5 + 10 / 12, "feet"),
  20535. default: true
  20536. },
  20537. ]
  20538. ))
  20539. characterMakers.push(() => makeCharacter(
  20540. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20541. {
  20542. front: {
  20543. height: math.unit(293, "meters"),
  20544. weight: math.unit(70400, "tons"),
  20545. name: "Front",
  20546. image: {
  20547. source: "./media/characters/violette/front.svg",
  20548. extra: 1227 / 1180,
  20549. bottom: 0.005
  20550. }
  20551. },
  20552. back: {
  20553. height: math.unit(293, "meters"),
  20554. weight: math.unit(70400, "tons"),
  20555. name: "Back",
  20556. image: {
  20557. source: "./media/characters/violette/back.svg",
  20558. extra: 1227 / 1180,
  20559. bottom: 0.005
  20560. }
  20561. },
  20562. },
  20563. [
  20564. {
  20565. name: "Macro",
  20566. height: math.unit(293, "meters"),
  20567. default: true
  20568. },
  20569. ]
  20570. ))
  20571. characterMakers.push(() => makeCharacter(
  20572. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20573. {
  20574. front: {
  20575. height: math.unit(1050, "feet"),
  20576. weight: math.unit(200000, "tons"),
  20577. name: "Front",
  20578. image: {
  20579. source: "./media/characters/alessandra/front.svg",
  20580. extra: 960 / 912,
  20581. bottom: 0.06
  20582. }
  20583. },
  20584. },
  20585. [
  20586. {
  20587. name: "Macro",
  20588. height: math.unit(1050, "feet")
  20589. },
  20590. {
  20591. name: "Macro+",
  20592. height: math.unit(900, "meters"),
  20593. default: true
  20594. },
  20595. ]
  20596. ))
  20597. characterMakers.push(() => makeCharacter(
  20598. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20599. {
  20600. front: {
  20601. height: math.unit(5, "feet"),
  20602. weight: math.unit(187, "lb"),
  20603. name: "Front",
  20604. image: {
  20605. source: "./media/characters/person/front.svg",
  20606. extra: 3087 / 2945,
  20607. bottom: 91 / 3181
  20608. }
  20609. },
  20610. },
  20611. [
  20612. {
  20613. name: "Micro",
  20614. height: math.unit(3, "inches")
  20615. },
  20616. {
  20617. name: "Normal",
  20618. height: math.unit(5, "feet"),
  20619. default: true
  20620. },
  20621. {
  20622. name: "Macro",
  20623. height: math.unit(90, "feet")
  20624. },
  20625. {
  20626. name: "Max Size",
  20627. height: math.unit(280, "feet")
  20628. },
  20629. ]
  20630. ))
  20631. characterMakers.push(() => makeCharacter(
  20632. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20633. {
  20634. front: {
  20635. height: math.unit(4.5, "meters"),
  20636. weight: math.unit(3200, "lb"),
  20637. name: "Front",
  20638. image: {
  20639. source: "./media/characters/ty/front.svg",
  20640. extra: 1038 / 960,
  20641. bottom: 31.156 / 1068
  20642. }
  20643. },
  20644. back: {
  20645. height: math.unit(4.5, "meters"),
  20646. weight: math.unit(3200, "lb"),
  20647. name: "Back",
  20648. image: {
  20649. source: "./media/characters/ty/back.svg",
  20650. extra: 1044 / 966,
  20651. bottom: 7.48 / 1049
  20652. }
  20653. },
  20654. },
  20655. [
  20656. {
  20657. name: "Normal",
  20658. height: math.unit(4.5, "meters"),
  20659. default: true
  20660. },
  20661. ]
  20662. ))
  20663. characterMakers.push(() => makeCharacter(
  20664. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20665. {
  20666. front: {
  20667. height: math.unit(5 + 4 / 12, "feet"),
  20668. weight: math.unit(115, "lb"),
  20669. name: "Front",
  20670. image: {
  20671. source: "./media/characters/rocky/front.svg",
  20672. extra: 1012 / 975,
  20673. bottom: 54 / 1066
  20674. }
  20675. },
  20676. },
  20677. [
  20678. {
  20679. name: "Normal",
  20680. height: math.unit(5 + 4 / 12, "feet"),
  20681. default: true
  20682. },
  20683. ]
  20684. ))
  20685. characterMakers.push(() => makeCharacter(
  20686. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20687. {
  20688. upright: {
  20689. height: math.unit(6, "meters"),
  20690. weight: math.unit(4000, "kg"),
  20691. name: "Upright",
  20692. image: {
  20693. source: "./media/characters/ruin/upright.svg",
  20694. extra: 668 / 661,
  20695. bottom: 42 / 799.8396
  20696. }
  20697. },
  20698. },
  20699. [
  20700. {
  20701. name: "Normal",
  20702. height: math.unit(6, "meters"),
  20703. default: true
  20704. },
  20705. ]
  20706. ))
  20707. characterMakers.push(() => makeCharacter(
  20708. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20709. {
  20710. front: {
  20711. height: math.unit(5, "feet"),
  20712. weight: math.unit(106, "lb"),
  20713. name: "Front",
  20714. image: {
  20715. source: "./media/characters/robin/front.svg",
  20716. extra: 862 / 799,
  20717. bottom: 42.4 / 914.8856
  20718. }
  20719. },
  20720. },
  20721. [
  20722. {
  20723. name: "Normal",
  20724. height: math.unit(5, "feet"),
  20725. default: true
  20726. },
  20727. ]
  20728. ))
  20729. characterMakers.push(() => makeCharacter(
  20730. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20731. {
  20732. side: {
  20733. height: math.unit(3, "feet"),
  20734. weight: math.unit(225, "lb"),
  20735. name: "Side",
  20736. image: {
  20737. source: "./media/characters/saian/side.svg",
  20738. extra: 566 / 356,
  20739. bottom: 79.7 / 643
  20740. }
  20741. },
  20742. maw: {
  20743. height: math.unit(2.85, "feet"),
  20744. name: "Maw",
  20745. image: {
  20746. source: "./media/characters/saian/maw.svg"
  20747. }
  20748. },
  20749. },
  20750. [
  20751. {
  20752. name: "Normal",
  20753. height: math.unit(3, "feet"),
  20754. default: true
  20755. },
  20756. ]
  20757. ))
  20758. characterMakers.push(() => makeCharacter(
  20759. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20760. {
  20761. side: {
  20762. height: math.unit(8, "feet"),
  20763. weight: math.unit(300, "lb"),
  20764. name: "Side",
  20765. image: {
  20766. source: "./media/characters/equus-silvermane/side.svg",
  20767. extra: 2176 / 2050,
  20768. bottom: 65.7 / 2245
  20769. }
  20770. },
  20771. front: {
  20772. height: math.unit(8, "feet"),
  20773. weight: math.unit(300, "lb"),
  20774. name: "Front",
  20775. image: {
  20776. source: "./media/characters/equus-silvermane/front.svg",
  20777. extra: 4633 / 4400,
  20778. bottom: 71.3 / 4706.915
  20779. }
  20780. },
  20781. sideStepping: {
  20782. height: math.unit(8, "feet"),
  20783. weight: math.unit(300, "lb"),
  20784. name: "Side (Stepping)",
  20785. image: {
  20786. source: "./media/characters/equus-silvermane/side-stepping.svg",
  20787. extra: 1968 / 1860,
  20788. bottom: 16.4 / 1989
  20789. }
  20790. },
  20791. },
  20792. [
  20793. {
  20794. name: "Normal",
  20795. height: math.unit(8, "feet")
  20796. },
  20797. {
  20798. name: "Minimacro",
  20799. height: math.unit(75, "feet"),
  20800. default: true
  20801. },
  20802. {
  20803. name: "Macro",
  20804. height: math.unit(150, "feet")
  20805. },
  20806. {
  20807. name: "Macro+",
  20808. height: math.unit(1000, "feet")
  20809. },
  20810. {
  20811. name: "Megamacro",
  20812. height: math.unit(1, "mile")
  20813. },
  20814. ]
  20815. ))
  20816. characterMakers.push(() => makeCharacter(
  20817. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  20818. {
  20819. side: {
  20820. height: math.unit(20, "feet"),
  20821. weight: math.unit(30000, "kg"),
  20822. name: "Side",
  20823. image: {
  20824. source: "./media/characters/windar/side.svg",
  20825. extra: 1491 / 1248,
  20826. bottom: 82.56 / 1568
  20827. }
  20828. },
  20829. },
  20830. [
  20831. {
  20832. name: "Normal",
  20833. height: math.unit(20, "feet"),
  20834. default: true
  20835. },
  20836. ]
  20837. ))
  20838. characterMakers.push(() => makeCharacter(
  20839. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  20840. {
  20841. side: {
  20842. height: math.unit(15.66, "feet"),
  20843. weight: math.unit(150, "lb"),
  20844. name: "Side",
  20845. image: {
  20846. source: "./media/characters/melody/side.svg",
  20847. extra: 1097 / 944,
  20848. bottom: 11.8 / 1109
  20849. }
  20850. },
  20851. sideOutfit: {
  20852. height: math.unit(15.66, "feet"),
  20853. weight: math.unit(150, "lb"),
  20854. name: "Side (Outfit)",
  20855. image: {
  20856. source: "./media/characters/melody/side-outfit.svg",
  20857. extra: 1097 / 944,
  20858. bottom: 11.8 / 1109
  20859. }
  20860. },
  20861. },
  20862. [
  20863. {
  20864. name: "Normal",
  20865. height: math.unit(15.66, "feet"),
  20866. default: true
  20867. },
  20868. ]
  20869. ))
  20870. characterMakers.push(() => makeCharacter(
  20871. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  20872. {
  20873. front: {
  20874. height: math.unit(8, "feet"),
  20875. weight: math.unit(325, "lb"),
  20876. name: "Front",
  20877. image: {
  20878. source: "./media/characters/windera/front.svg",
  20879. extra: 3180 / 2845,
  20880. bottom: 178 / 3365
  20881. }
  20882. },
  20883. },
  20884. [
  20885. {
  20886. name: "Normal",
  20887. height: math.unit(8, "feet"),
  20888. default: true
  20889. },
  20890. ]
  20891. ))
  20892. characterMakers.push(() => makeCharacter(
  20893. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  20894. {
  20895. front: {
  20896. height: math.unit(28.75, "feet"),
  20897. weight: math.unit(2000, "kg"),
  20898. name: "Front",
  20899. image: {
  20900. source: "./media/characters/sonear/front.svg",
  20901. extra: 1041.1 / 964.9,
  20902. bottom: 53.7 / 1096.6
  20903. }
  20904. },
  20905. },
  20906. [
  20907. {
  20908. name: "Normal",
  20909. height: math.unit(28.75, "feet"),
  20910. default: true
  20911. },
  20912. ]
  20913. ))
  20914. characterMakers.push(() => makeCharacter(
  20915. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  20916. {
  20917. side: {
  20918. height: math.unit(25.5, "feet"),
  20919. weight: math.unit(23000, "kg"),
  20920. name: "Side",
  20921. image: {
  20922. source: "./media/characters/kanara/side.svg"
  20923. }
  20924. },
  20925. },
  20926. [
  20927. {
  20928. name: "Normal",
  20929. height: math.unit(25.5, "feet"),
  20930. default: true
  20931. },
  20932. ]
  20933. ))
  20934. characterMakers.push(() => makeCharacter(
  20935. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  20936. {
  20937. side: {
  20938. height: math.unit(10, "feet"),
  20939. weight: math.unit(1000, "kg"),
  20940. name: "Side",
  20941. image: {
  20942. source: "./media/characters/ereus/side.svg",
  20943. extra: 1157 / 959,
  20944. bottom: 153 / 1312.5
  20945. }
  20946. },
  20947. },
  20948. [
  20949. {
  20950. name: "Normal",
  20951. height: math.unit(10, "feet"),
  20952. default: true
  20953. },
  20954. ]
  20955. ))
  20956. characterMakers.push(() => makeCharacter(
  20957. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  20958. {
  20959. side: {
  20960. height: math.unit(4.5, "feet"),
  20961. weight: math.unit(500, "lb"),
  20962. name: "Side",
  20963. image: {
  20964. source: "./media/characters/e-ter/side.svg",
  20965. extra: 1550 / 1248,
  20966. bottom: 146 / 1694
  20967. }
  20968. },
  20969. },
  20970. [
  20971. {
  20972. name: "Normal",
  20973. height: math.unit(4.5, "feet"),
  20974. default: true
  20975. },
  20976. ]
  20977. ))
  20978. characterMakers.push(() => makeCharacter(
  20979. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  20980. {
  20981. side: {
  20982. height: math.unit(9.7, "feet"),
  20983. weight: math.unit(4000, "kg"),
  20984. name: "Side",
  20985. image: {
  20986. source: "./media/characters/yamie/side.svg"
  20987. }
  20988. },
  20989. },
  20990. [
  20991. {
  20992. name: "Normal",
  20993. height: math.unit(9.7, "feet"),
  20994. default: true
  20995. },
  20996. ]
  20997. ))
  20998. characterMakers.push(() => makeCharacter(
  20999. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21000. {
  21001. front: {
  21002. height: math.unit(50, "feet"),
  21003. weight: math.unit(50000, "kg"),
  21004. name: "Front",
  21005. image: {
  21006. source: "./media/characters/anders/front.svg",
  21007. extra: 570 / 539,
  21008. bottom: 14.7 / 586.7
  21009. }
  21010. },
  21011. },
  21012. [
  21013. {
  21014. name: "Large",
  21015. height: math.unit(50, "feet")
  21016. },
  21017. {
  21018. name: "Macro",
  21019. height: math.unit(2000, "feet"),
  21020. default: true
  21021. },
  21022. {
  21023. name: "Megamacro",
  21024. height: math.unit(12, "miles")
  21025. },
  21026. ]
  21027. ))
  21028. characterMakers.push(() => makeCharacter(
  21029. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21030. {
  21031. front: {
  21032. height: math.unit(7 + 2 / 12, "feet"),
  21033. weight: math.unit(300, "lb"),
  21034. name: "Front",
  21035. image: {
  21036. source: "./media/characters/reban/front.svg",
  21037. extra: 516 / 487,
  21038. bottom: 42.82 / 558.356
  21039. }
  21040. },
  21041. dick: {
  21042. height: math.unit(7 / 5, "feet"),
  21043. name: "Dick",
  21044. image: {
  21045. source: "./media/characters/reban/dick.svg"
  21046. }
  21047. },
  21048. },
  21049. [
  21050. {
  21051. name: "Natural Height",
  21052. height: math.unit(7 + 2 / 12, "feet")
  21053. },
  21054. {
  21055. name: "Macro",
  21056. height: math.unit(500, "feet"),
  21057. default: true
  21058. },
  21059. {
  21060. name: "Canon Height",
  21061. height: math.unit(50, "AU")
  21062. },
  21063. ]
  21064. ))
  21065. characterMakers.push(() => makeCharacter(
  21066. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21067. {
  21068. front: {
  21069. height: math.unit(6, "feet"),
  21070. weight: math.unit(150, "lb"),
  21071. name: "Front",
  21072. image: {
  21073. source: "./media/characters/terrance-keayes/front.svg",
  21074. extra: 1.005,
  21075. bottom: 151 / 1615
  21076. }
  21077. },
  21078. side: {
  21079. height: math.unit(6, "feet"),
  21080. weight: math.unit(150, "lb"),
  21081. name: "Side",
  21082. image: {
  21083. source: "./media/characters/terrance-keayes/side.svg",
  21084. extra: 1.005,
  21085. bottom: 129.4 / 1544
  21086. }
  21087. },
  21088. back: {
  21089. height: math.unit(6, "feet"),
  21090. weight: math.unit(150, "lb"),
  21091. name: "Back",
  21092. image: {
  21093. source: "./media/characters/terrance-keayes/back.svg",
  21094. extra: 1.005,
  21095. bottom: 58.4 / 1557.3
  21096. }
  21097. },
  21098. dick: {
  21099. height: math.unit(6 * 0.208, "feet"),
  21100. name: "Dick",
  21101. image: {
  21102. source: "./media/characters/terrance-keayes/dick.svg"
  21103. }
  21104. },
  21105. },
  21106. [
  21107. {
  21108. name: "Canon Height",
  21109. height: math.unit(35, "miles"),
  21110. default: true
  21111. },
  21112. ]
  21113. ))
  21114. characterMakers.push(() => makeCharacter(
  21115. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21116. {
  21117. front: {
  21118. height: math.unit(6, "feet"),
  21119. weight: math.unit(150, "lb"),
  21120. name: "Front",
  21121. image: {
  21122. source: "./media/characters/ofelia/front.svg",
  21123. extra: 546 / 541,
  21124. bottom: 39 / 583
  21125. }
  21126. },
  21127. back: {
  21128. height: math.unit(6, "feet"),
  21129. weight: math.unit(150, "lb"),
  21130. name: "Back",
  21131. image: {
  21132. source: "./media/characters/ofelia/back.svg",
  21133. extra: 564 / 559.5,
  21134. bottom: 8.69 / 573.02
  21135. }
  21136. },
  21137. maw: {
  21138. height: math.unit(1, "feet"),
  21139. name: "Maw",
  21140. image: {
  21141. source: "./media/characters/ofelia/maw.svg"
  21142. }
  21143. },
  21144. foot: {
  21145. height: math.unit(1.949, "feet"),
  21146. name: "Foot",
  21147. image: {
  21148. source: "./media/characters/ofelia/foot.svg"
  21149. }
  21150. },
  21151. },
  21152. [
  21153. {
  21154. name: "Canon Height",
  21155. height: math.unit(2000, "miles"),
  21156. default: true
  21157. },
  21158. ]
  21159. ))
  21160. characterMakers.push(() => makeCharacter(
  21161. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21162. {
  21163. front: {
  21164. height: math.unit(6, "feet"),
  21165. weight: math.unit(150, "lb"),
  21166. name: "Front",
  21167. image: {
  21168. source: "./media/characters/samuel/front.svg",
  21169. extra: 265 / 258,
  21170. bottom: 2 / 266.1566
  21171. }
  21172. },
  21173. },
  21174. [
  21175. {
  21176. name: "Macro",
  21177. height: math.unit(100, "feet"),
  21178. default: true
  21179. },
  21180. {
  21181. name: "Full Size",
  21182. height: math.unit(1000, "miles")
  21183. },
  21184. ]
  21185. ))
  21186. characterMakers.push(() => makeCharacter(
  21187. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21188. {
  21189. front: {
  21190. height: math.unit(6, "feet"),
  21191. weight: math.unit(300, "lb"),
  21192. name: "Front",
  21193. image: {
  21194. source: "./media/characters/beishir-kiel/front.svg",
  21195. extra: 569 / 547,
  21196. bottom: 41.9 / 609
  21197. }
  21198. },
  21199. maw: {
  21200. height: math.unit(6 * 0.202, "feet"),
  21201. name: "Maw",
  21202. image: {
  21203. source: "./media/characters/beishir-kiel/maw.svg"
  21204. }
  21205. },
  21206. },
  21207. [
  21208. {
  21209. name: "Macro",
  21210. height: math.unit(300, "feet"),
  21211. default: true
  21212. },
  21213. ]
  21214. ))
  21215. characterMakers.push(() => makeCharacter(
  21216. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21217. {
  21218. front: {
  21219. height: math.unit(5 + 8 / 12, "feet"),
  21220. weight: math.unit(120, "lb"),
  21221. name: "Front",
  21222. image: {
  21223. source: "./media/characters/logan-grey/front.svg",
  21224. extra: 2539 / 2393,
  21225. bottom: 97.6 / 2636.37
  21226. }
  21227. },
  21228. frontAlt: {
  21229. height: math.unit(5 + 8 / 12, "feet"),
  21230. weight: math.unit(120, "lb"),
  21231. name: "Front (Alt)",
  21232. image: {
  21233. source: "./media/characters/logan-grey/front-alt.svg",
  21234. extra: 958 / 893,
  21235. bottom: 15 / 970.768
  21236. }
  21237. },
  21238. back: {
  21239. height: math.unit(5 + 8 / 12, "feet"),
  21240. weight: math.unit(120, "lb"),
  21241. name: "Back",
  21242. image: {
  21243. source: "./media/characters/logan-grey/back.svg",
  21244. extra: 958 / 893,
  21245. bottom: 2.1881 / 970.9788
  21246. }
  21247. },
  21248. dick: {
  21249. height: math.unit(1.437, "feet"),
  21250. name: "Dick",
  21251. image: {
  21252. source: "./media/characters/logan-grey/dick.svg"
  21253. }
  21254. },
  21255. },
  21256. [
  21257. {
  21258. name: "Normal",
  21259. height: math.unit(5 + 8 / 12, "feet")
  21260. },
  21261. {
  21262. name: "The 500 Foot Femboy",
  21263. height: math.unit(500, "feet"),
  21264. default: true
  21265. },
  21266. {
  21267. name: "Megmacro",
  21268. height: math.unit(20, "miles")
  21269. },
  21270. ]
  21271. ))
  21272. characterMakers.push(() => makeCharacter(
  21273. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21274. {
  21275. front: {
  21276. height: math.unit(8 + 2 / 12, "feet"),
  21277. weight: math.unit(275, "lb"),
  21278. name: "Front",
  21279. image: {
  21280. source: "./media/characters/draganta/front.svg",
  21281. extra: 1177 / 1135,
  21282. bottom: 33.46 / 1212.1
  21283. }
  21284. },
  21285. },
  21286. [
  21287. {
  21288. name: "Normal",
  21289. height: math.unit(8 + 6 / 12, "feet"),
  21290. default: true
  21291. },
  21292. {
  21293. name: "Macro",
  21294. height: math.unit(150, "feet")
  21295. },
  21296. {
  21297. name: "Megamacro",
  21298. height: math.unit(1000, "miles")
  21299. },
  21300. ]
  21301. ))
  21302. characterMakers.push(() => makeCharacter(
  21303. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21304. {
  21305. front: {
  21306. height: math.unit(1.72, "m"),
  21307. weight: math.unit(80, "lb"),
  21308. name: "Front",
  21309. image: {
  21310. source: "./media/characters/voski/front.svg",
  21311. extra: 2076.22 / 2022.4,
  21312. bottom: 102.7 / 2177.3866
  21313. }
  21314. },
  21315. frontNsfw: {
  21316. height: math.unit(1.72, "m"),
  21317. weight: math.unit(80, "lb"),
  21318. name: "Front (NSFW)",
  21319. image: {
  21320. source: "./media/characters/voski/front-nsfw.svg",
  21321. extra: 2076.22 / 2022.4,
  21322. bottom: 102.7 / 2177.3866
  21323. }
  21324. },
  21325. back: {
  21326. height: math.unit(1.72, "m"),
  21327. weight: math.unit(80, "lb"),
  21328. name: "Back",
  21329. image: {
  21330. source: "./media/characters/voski/back.svg",
  21331. extra: 2104 / 2051,
  21332. bottom: 10.45 / 2113.63
  21333. }
  21334. },
  21335. },
  21336. [
  21337. {
  21338. name: "Normal",
  21339. height: math.unit(1.72, "m")
  21340. },
  21341. {
  21342. name: "Macro",
  21343. height: math.unit(55, "m"),
  21344. default: true
  21345. },
  21346. {
  21347. name: "Macro+",
  21348. height: math.unit(300, "m")
  21349. },
  21350. {
  21351. name: "Macro++",
  21352. height: math.unit(700, "m")
  21353. },
  21354. {
  21355. name: "Macro+++",
  21356. height: math.unit(4500, "m")
  21357. },
  21358. {
  21359. name: "Macro++++",
  21360. height: math.unit(45, "km")
  21361. },
  21362. {
  21363. name: "Macro+++++",
  21364. height: math.unit(1220, "km")
  21365. },
  21366. ]
  21367. ))
  21368. characterMakers.push(() => makeCharacter(
  21369. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21370. {
  21371. front: {
  21372. height: math.unit(2.3, "m"),
  21373. weight: math.unit(304, "kg"),
  21374. name: "Front",
  21375. image: {
  21376. source: "./media/characters/icowom-lee/front.svg",
  21377. extra: 985 / 955,
  21378. bottom: 25.4 / 1012
  21379. }
  21380. },
  21381. fronttentacles: {
  21382. height: math.unit(2.3, "m"),
  21383. weight: math.unit(304, "kg"),
  21384. name: "Front-tentacles",
  21385. image: {
  21386. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21387. extra: 985 / 955,
  21388. bottom: 25.4 / 1012
  21389. }
  21390. },
  21391. back: {
  21392. height: math.unit(2.3, "m"),
  21393. weight: math.unit(304, "kg"),
  21394. name: "Back",
  21395. image: {
  21396. source: "./media/characters/icowom-lee/back.svg",
  21397. extra: 975 / 954,
  21398. bottom: 9.5 / 985
  21399. }
  21400. },
  21401. backtentacles: {
  21402. height: math.unit(2.3, "m"),
  21403. weight: math.unit(304, "kg"),
  21404. name: "Back-tentacles",
  21405. image: {
  21406. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21407. extra: 975 / 954,
  21408. bottom: 9.5 / 985
  21409. }
  21410. },
  21411. frontDressed: {
  21412. height: math.unit(2.3, "m"),
  21413. weight: math.unit(304, "kg"),
  21414. name: "Front (Dressed)",
  21415. image: {
  21416. source: "./media/characters/icowom-lee/front-dressed.svg",
  21417. extra: 3076 / 2933,
  21418. bottom: 51.4 / 3125.1889
  21419. }
  21420. },
  21421. rump: {
  21422. height: math.unit(0.776, "meters"),
  21423. name: "Rump",
  21424. image: {
  21425. source: "./media/characters/icowom-lee/rump.svg"
  21426. }
  21427. },
  21428. genitals: {
  21429. height: math.unit(0.78, "meters"),
  21430. name: "Genitals",
  21431. image: {
  21432. source: "./media/characters/icowom-lee/genitals.svg"
  21433. }
  21434. },
  21435. },
  21436. [
  21437. {
  21438. name: "Normal",
  21439. height: math.unit(2.3, "meters"),
  21440. default: true
  21441. },
  21442. {
  21443. name: "Macro",
  21444. height: math.unit(94, "meters"),
  21445. default: true
  21446. },
  21447. ]
  21448. ))
  21449. characterMakers.push(() => makeCharacter(
  21450. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21451. {
  21452. front: {
  21453. height: math.unit(22, "meters"),
  21454. weight: math.unit(21000, "kg"),
  21455. name: "Front",
  21456. image: {
  21457. source: "./media/characters/shock-diamond/front.svg",
  21458. extra: 2204 / 2053,
  21459. bottom: 65 / 2239.47
  21460. }
  21461. },
  21462. frontNude: {
  21463. height: math.unit(22, "meters"),
  21464. weight: math.unit(21000, "kg"),
  21465. name: "Front (Nude)",
  21466. image: {
  21467. source: "./media/characters/shock-diamond/front-nude.svg",
  21468. extra: 2514 / 2285,
  21469. bottom: 13 / 2527.56
  21470. }
  21471. },
  21472. },
  21473. [
  21474. {
  21475. name: "Normal",
  21476. height: math.unit(3, "meters")
  21477. },
  21478. {
  21479. name: "Macro",
  21480. height: math.unit(22, "meters"),
  21481. default: true
  21482. },
  21483. ]
  21484. ))
  21485. characterMakers.push(() => makeCharacter(
  21486. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21487. {
  21488. front: {
  21489. height: math.unit(5 + 4 / 12, "feet"),
  21490. weight: math.unit(120, "lb"),
  21491. name: "Front",
  21492. image: {
  21493. source: "./media/characters/rory/front.svg",
  21494. extra: 589 / 556,
  21495. bottom: 45.7 / 635.76
  21496. }
  21497. },
  21498. frontNude: {
  21499. height: math.unit(5 + 4 / 12, "feet"),
  21500. weight: math.unit(120, "lb"),
  21501. name: "Front (Nude)",
  21502. image: {
  21503. source: "./media/characters/rory/front-nude.svg",
  21504. extra: 589 / 556,
  21505. bottom: 45.7 / 635.76
  21506. }
  21507. },
  21508. side: {
  21509. height: math.unit(5 + 4 / 12, "feet"),
  21510. weight: math.unit(120, "lb"),
  21511. name: "Side",
  21512. image: {
  21513. source: "./media/characters/rory/side.svg",
  21514. extra: 597 / 564,
  21515. bottom: 55 / 653
  21516. }
  21517. },
  21518. back: {
  21519. height: math.unit(5 + 4 / 12, "feet"),
  21520. weight: math.unit(120, "lb"),
  21521. name: "Back",
  21522. image: {
  21523. source: "./media/characters/rory/back.svg",
  21524. extra: 620 / 585,
  21525. bottom: 8.86 / 630.43
  21526. }
  21527. },
  21528. dick: {
  21529. height: math.unit(0.86, "feet"),
  21530. name: "Dick",
  21531. image: {
  21532. source: "./media/characters/rory/dick.svg"
  21533. }
  21534. },
  21535. },
  21536. [
  21537. {
  21538. name: "Normal",
  21539. height: math.unit(5 + 4 / 12, "feet"),
  21540. default: true
  21541. },
  21542. {
  21543. name: "Macro",
  21544. height: math.unit(100, "feet")
  21545. },
  21546. {
  21547. name: "Macro+",
  21548. height: math.unit(140, "feet")
  21549. },
  21550. {
  21551. name: "Macro++",
  21552. height: math.unit(300, "feet")
  21553. },
  21554. ]
  21555. ))
  21556. characterMakers.push(() => makeCharacter(
  21557. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21558. {
  21559. front: {
  21560. height: math.unit(5 + 9 / 12, "feet"),
  21561. weight: math.unit(190, "lb"),
  21562. name: "Front",
  21563. image: {
  21564. source: "./media/characters/sprisk/front.svg",
  21565. extra: 1225 / 1180,
  21566. bottom: 42.7 / 1266.4
  21567. }
  21568. },
  21569. frontNsfw: {
  21570. height: math.unit(5 + 9 / 12, "feet"),
  21571. weight: math.unit(190, "lb"),
  21572. name: "Front (NSFW)",
  21573. image: {
  21574. source: "./media/characters/sprisk/front-nsfw.svg",
  21575. extra: 1225 / 1180,
  21576. bottom: 42.7 / 1266.4
  21577. }
  21578. },
  21579. back: {
  21580. height: math.unit(5 + 9 / 12, "feet"),
  21581. weight: math.unit(190, "lb"),
  21582. name: "Back",
  21583. image: {
  21584. source: "./media/characters/sprisk/back.svg",
  21585. extra: 1247 / 1200,
  21586. bottom: 5.6 / 1253.04
  21587. }
  21588. },
  21589. },
  21590. [
  21591. {
  21592. name: "Tiny",
  21593. height: math.unit(2, "inches")
  21594. },
  21595. {
  21596. name: "Normal",
  21597. height: math.unit(5 + 9 / 12, "feet"),
  21598. default: true
  21599. },
  21600. {
  21601. name: "Mini Macro",
  21602. height: math.unit(18, "feet")
  21603. },
  21604. {
  21605. name: "Macro",
  21606. height: math.unit(100, "feet")
  21607. },
  21608. {
  21609. name: "MACRO",
  21610. height: math.unit(50, "miles")
  21611. },
  21612. {
  21613. name: "M A C R O",
  21614. height: math.unit(300, "miles")
  21615. },
  21616. ]
  21617. ))
  21618. characterMakers.push(() => makeCharacter(
  21619. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21620. {
  21621. side: {
  21622. height: math.unit(15.6, "meters"),
  21623. weight: math.unit(700000, "kg"),
  21624. name: "Side",
  21625. image: {
  21626. source: "./media/characters/bunsen/side.svg",
  21627. extra: 1644 / 358
  21628. }
  21629. },
  21630. foot: {
  21631. height: math.unit(1.611 * 1644 / 358, "meter"),
  21632. name: "Foot",
  21633. image: {
  21634. source: "./media/characters/bunsen/foot.svg"
  21635. }
  21636. },
  21637. },
  21638. [
  21639. {
  21640. name: "Small",
  21641. height: math.unit(10, "feet")
  21642. },
  21643. {
  21644. name: "Normal",
  21645. height: math.unit(15.6, "meters"),
  21646. default: true
  21647. },
  21648. ]
  21649. ))
  21650. characterMakers.push(() => makeCharacter(
  21651. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21652. {
  21653. front: {
  21654. height: math.unit(4 + 11 / 12, "feet"),
  21655. weight: math.unit(140, "lb"),
  21656. name: "Front",
  21657. image: {
  21658. source: "./media/characters/sesh/front.svg",
  21659. extra: 3420 / 3231,
  21660. bottom: 72 / 3949.5
  21661. }
  21662. },
  21663. },
  21664. [
  21665. {
  21666. name: "Normal",
  21667. height: math.unit(4 + 11 / 12, "feet")
  21668. },
  21669. {
  21670. name: "Grown",
  21671. height: math.unit(15, "feet"),
  21672. default: true
  21673. },
  21674. {
  21675. name: "Macro",
  21676. height: math.unit(1500, "feet")
  21677. },
  21678. {
  21679. name: "Megamacro",
  21680. height: math.unit(30, "miles")
  21681. },
  21682. {
  21683. name: "Continental",
  21684. height: math.unit(3000, "miles")
  21685. },
  21686. {
  21687. name: "Gravity Mass",
  21688. height: math.unit(300000, "miles")
  21689. },
  21690. {
  21691. name: "Planet Buster",
  21692. height: math.unit(30000000, "miles")
  21693. },
  21694. {
  21695. name: "Big",
  21696. height: math.unit(3000000000, "miles")
  21697. },
  21698. ]
  21699. ))
  21700. characterMakers.push(() => makeCharacter(
  21701. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21702. {
  21703. front: {
  21704. height: math.unit(9, "feet"),
  21705. weight: math.unit(350, "lb"),
  21706. name: "Front",
  21707. image: {
  21708. source: "./media/characters/pepper/front.svg",
  21709. extra: 1448 / 1312,
  21710. bottom: 9.4 / 1457.88
  21711. }
  21712. },
  21713. back: {
  21714. height: math.unit(9, "feet"),
  21715. weight: math.unit(350, "lb"),
  21716. name: "Back",
  21717. image: {
  21718. source: "./media/characters/pepper/back.svg",
  21719. extra: 1423 / 1300,
  21720. bottom: 4.6 / 1429
  21721. }
  21722. },
  21723. maw: {
  21724. height: math.unit(0.932, "feet"),
  21725. name: "Maw",
  21726. image: {
  21727. source: "./media/characters/pepper/maw.svg"
  21728. }
  21729. },
  21730. },
  21731. [
  21732. {
  21733. name: "Normal",
  21734. height: math.unit(9, "feet"),
  21735. default: true
  21736. },
  21737. ]
  21738. ))
  21739. characterMakers.push(() => makeCharacter(
  21740. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21741. {
  21742. front: {
  21743. height: math.unit(6, "feet"),
  21744. weight: math.unit(150, "lb"),
  21745. name: "Front",
  21746. image: {
  21747. source: "./media/characters/maelstrom/front.svg",
  21748. extra: 2100 / 1883,
  21749. bottom: 94 / 2196.7
  21750. }
  21751. },
  21752. },
  21753. [
  21754. {
  21755. name: "Less Kaiju",
  21756. height: math.unit(200, "feet")
  21757. },
  21758. {
  21759. name: "Kaiju",
  21760. height: math.unit(400, "feet"),
  21761. default: true
  21762. },
  21763. {
  21764. name: "Kaiju-er",
  21765. height: math.unit(600, "feet")
  21766. },
  21767. ]
  21768. ))
  21769. characterMakers.push(() => makeCharacter(
  21770. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21771. {
  21772. front: {
  21773. height: math.unit(6 + 5 / 12, "feet"),
  21774. weight: math.unit(180, "lb"),
  21775. name: "Front",
  21776. image: {
  21777. source: "./media/characters/lexir/front.svg",
  21778. extra: 180 / 172,
  21779. bottom: 12 / 192
  21780. }
  21781. },
  21782. back: {
  21783. height: math.unit(6 + 5 / 12, "feet"),
  21784. weight: math.unit(180, "lb"),
  21785. name: "Back",
  21786. image: {
  21787. source: "./media/characters/lexir/back.svg",
  21788. extra: 183.84 / 175.5,
  21789. bottom: 3.1 / 187
  21790. }
  21791. },
  21792. },
  21793. [
  21794. {
  21795. name: "Very Smal",
  21796. height: math.unit(1, "nm")
  21797. },
  21798. {
  21799. name: "Normal",
  21800. height: math.unit(6 + 5 / 12, "feet"),
  21801. default: true
  21802. },
  21803. {
  21804. name: "Macro",
  21805. height: math.unit(1, "mile")
  21806. },
  21807. {
  21808. name: "Megamacro",
  21809. height: math.unit(50, "miles")
  21810. },
  21811. ]
  21812. ))
  21813. characterMakers.push(() => makeCharacter(
  21814. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  21815. {
  21816. front: {
  21817. height: math.unit(1.5, "meters"),
  21818. weight: math.unit(100, "lb"),
  21819. name: "Front",
  21820. image: {
  21821. source: "./media/characters/maksio/front.svg",
  21822. extra: 1549 / 1531,
  21823. bottom: 123.7 / 1674.5429
  21824. }
  21825. },
  21826. back: {
  21827. height: math.unit(1.5, "meters"),
  21828. weight: math.unit(100, "lb"),
  21829. name: "Back",
  21830. image: {
  21831. source: "./media/characters/maksio/back.svg",
  21832. extra: 1541 / 1509,
  21833. bottom: 97 / 1639
  21834. }
  21835. },
  21836. hand: {
  21837. height: math.unit(0.621, "feet"),
  21838. name: "Hand",
  21839. image: {
  21840. source: "./media/characters/maksio/hand.svg"
  21841. }
  21842. },
  21843. foot: {
  21844. height: math.unit(1.611, "feet"),
  21845. name: "Foot",
  21846. image: {
  21847. source: "./media/characters/maksio/foot.svg"
  21848. }
  21849. },
  21850. },
  21851. [
  21852. {
  21853. name: "Shrunken",
  21854. height: math.unit(10, "cm")
  21855. },
  21856. {
  21857. name: "Normal",
  21858. height: math.unit(150, "cm"),
  21859. default: true
  21860. },
  21861. ]
  21862. ))
  21863. characterMakers.push(() => makeCharacter(
  21864. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  21865. {
  21866. front: {
  21867. height: math.unit(100, "feet"),
  21868. name: "Front",
  21869. image: {
  21870. source: "./media/characters/erza-bear/front.svg",
  21871. extra: 2449 / 2390,
  21872. bottom: 46 / 2494
  21873. }
  21874. },
  21875. back: {
  21876. height: math.unit(100, "feet"),
  21877. name: "Back",
  21878. image: {
  21879. source: "./media/characters/erza-bear/back.svg",
  21880. extra: 2489 / 2430,
  21881. bottom: 85.4 / 2480
  21882. }
  21883. },
  21884. tail: {
  21885. height: math.unit(42, "feet"),
  21886. name: "Tail",
  21887. image: {
  21888. source: "./media/characters/erza-bear/tail.svg"
  21889. }
  21890. },
  21891. tongue: {
  21892. height: math.unit(8, "feet"),
  21893. name: "Tongue",
  21894. image: {
  21895. source: "./media/characters/erza-bear/tongue.svg"
  21896. }
  21897. },
  21898. dick: {
  21899. height: math.unit(10.5, "feet"),
  21900. name: "Dick",
  21901. image: {
  21902. source: "./media/characters/erza-bear/dick.svg"
  21903. }
  21904. },
  21905. dickVertical: {
  21906. height: math.unit(16.9, "feet"),
  21907. name: "Dick (Vertical)",
  21908. image: {
  21909. source: "./media/characters/erza-bear/dick-vertical.svg"
  21910. }
  21911. },
  21912. },
  21913. [
  21914. {
  21915. name: "Macro",
  21916. height: math.unit(100, "feet"),
  21917. default: true
  21918. },
  21919. ]
  21920. ))
  21921. characterMakers.push(() => makeCharacter(
  21922. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  21923. {
  21924. front: {
  21925. height: math.unit(172, "cm"),
  21926. weight: math.unit(73, "kg"),
  21927. name: "Front",
  21928. image: {
  21929. source: "./media/characters/violet-flor/front.svg",
  21930. extra: 1530 / 1442,
  21931. bottom: 61.9 / 1588.8
  21932. }
  21933. },
  21934. back: {
  21935. height: math.unit(180, "cm"),
  21936. weight: math.unit(73, "kg"),
  21937. name: "Back",
  21938. image: {
  21939. source: "./media/characters/violet-flor/back.svg",
  21940. extra: 1692 / 1630,
  21941. bottom: 20 / 1712
  21942. }
  21943. },
  21944. },
  21945. [
  21946. {
  21947. name: "Normal",
  21948. height: math.unit(172, "cm"),
  21949. default: true
  21950. },
  21951. ]
  21952. ))
  21953. characterMakers.push(() => makeCharacter(
  21954. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  21955. {
  21956. front: {
  21957. height: math.unit(6, "feet"),
  21958. weight: math.unit(220, "lb"),
  21959. name: "Front",
  21960. image: {
  21961. source: "./media/characters/lynn-rhea/front.svg",
  21962. extra: 310 / 273
  21963. }
  21964. },
  21965. back: {
  21966. height: math.unit(6, "feet"),
  21967. weight: math.unit(220, "lb"),
  21968. name: "Back",
  21969. image: {
  21970. source: "./media/characters/lynn-rhea/back.svg",
  21971. extra: 310 / 273
  21972. }
  21973. },
  21974. dicks: {
  21975. height: math.unit(0.9, "feet"),
  21976. name: "Dicks",
  21977. image: {
  21978. source: "./media/characters/lynn-rhea/dicks.svg"
  21979. }
  21980. },
  21981. slit: {
  21982. height: math.unit(0.4, "feet"),
  21983. name: "Slit",
  21984. image: {
  21985. source: "./media/characters/lynn-rhea/slit.svg"
  21986. }
  21987. },
  21988. },
  21989. [
  21990. {
  21991. name: "Micro",
  21992. height: math.unit(1, "inch")
  21993. },
  21994. {
  21995. name: "Macro",
  21996. height: math.unit(60, "feet"),
  21997. default: true
  21998. },
  21999. {
  22000. name: "Megamacro",
  22001. height: math.unit(2, "miles")
  22002. },
  22003. {
  22004. name: "Gigamacro",
  22005. height: math.unit(3, "earths")
  22006. },
  22007. {
  22008. name: "Galactic",
  22009. height: math.unit(0.8, "galaxies")
  22010. },
  22011. ]
  22012. ))
  22013. characterMakers.push(() => makeCharacter(
  22014. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22015. {
  22016. front: {
  22017. height: math.unit(1600, "feet"),
  22018. weight: math.unit(85758785169, "kg"),
  22019. name: "Front",
  22020. image: {
  22021. source: "./media/characters/valathos/front.svg",
  22022. extra: 1451 / 1339
  22023. }
  22024. },
  22025. },
  22026. [
  22027. {
  22028. name: "Macro",
  22029. height: math.unit(1600, "feet"),
  22030. default: true
  22031. },
  22032. ]
  22033. ))
  22034. characterMakers.push(() => makeCharacter(
  22035. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22036. {
  22037. front: {
  22038. height: math.unit(7 + 5 / 12, "feet"),
  22039. weight: math.unit(300, "lb"),
  22040. name: "Front",
  22041. image: {
  22042. source: "./media/characters/azula/front.svg",
  22043. extra: 3208 / 2880,
  22044. bottom: 80.2 / 3277
  22045. }
  22046. },
  22047. back: {
  22048. height: math.unit(7 + 5 / 12, "feet"),
  22049. weight: math.unit(300, "lb"),
  22050. name: "Back",
  22051. image: {
  22052. source: "./media/characters/azula/back.svg",
  22053. extra: 3169 / 2822,
  22054. bottom: 150.6 / 3321
  22055. }
  22056. },
  22057. },
  22058. [
  22059. {
  22060. name: "Normal",
  22061. height: math.unit(7 + 5 / 12, "feet"),
  22062. default: true
  22063. },
  22064. {
  22065. name: "Big",
  22066. height: math.unit(20, "feet")
  22067. },
  22068. ]
  22069. ))
  22070. characterMakers.push(() => makeCharacter(
  22071. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22072. {
  22073. front: {
  22074. height: math.unit(5 + 1 / 12, "feet"),
  22075. weight: math.unit(110, "lb"),
  22076. name: "Front",
  22077. image: {
  22078. source: "./media/characters/rupert/front.svg",
  22079. extra: 1549 / 1495,
  22080. bottom: 54.2 / 1604.4
  22081. }
  22082. },
  22083. },
  22084. [
  22085. {
  22086. name: "Normal",
  22087. height: math.unit(5 + 1 / 12, "feet"),
  22088. default: true
  22089. },
  22090. ]
  22091. ))
  22092. characterMakers.push(() => makeCharacter(
  22093. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22094. {
  22095. front: {
  22096. height: math.unit(8 + 4 / 12, "feet"),
  22097. weight: math.unit(350, "lb"),
  22098. name: "Front",
  22099. image: {
  22100. source: "./media/characters/sheera-castellar/front.svg",
  22101. extra: 1957 / 1894,
  22102. bottom: 26.97 / 1975.017
  22103. }
  22104. },
  22105. side: {
  22106. height: math.unit(8 + 4 / 12, "feet"),
  22107. weight: math.unit(350, "lb"),
  22108. name: "Side",
  22109. image: {
  22110. source: "./media/characters/sheera-castellar/side.svg",
  22111. extra: 1957 / 1894
  22112. }
  22113. },
  22114. back: {
  22115. height: math.unit(8 + 4 / 12, "feet"),
  22116. weight: math.unit(350, "lb"),
  22117. name: "Back",
  22118. image: {
  22119. source: "./media/characters/sheera-castellar/back.svg",
  22120. extra: 1957 / 1894
  22121. }
  22122. },
  22123. angled: {
  22124. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22125. weight: math.unit(350, "lb"),
  22126. name: "Angled",
  22127. image: {
  22128. source: "./media/characters/sheera-castellar/angled.svg",
  22129. extra: 1807 / 1707,
  22130. bottom: 68 / 1875
  22131. }
  22132. },
  22133. genitals: {
  22134. height: math.unit(2.2, "feet"),
  22135. name: "Genitals",
  22136. image: {
  22137. source: "./media/characters/sheera-castellar/genitals.svg"
  22138. }
  22139. },
  22140. },
  22141. [
  22142. {
  22143. name: "Normal",
  22144. height: math.unit(8 + 4 / 12, "feet")
  22145. },
  22146. {
  22147. name: "Macro",
  22148. height: math.unit(150, "feet"),
  22149. default: true
  22150. },
  22151. {
  22152. name: "Macro+",
  22153. height: math.unit(800, "feet")
  22154. },
  22155. ]
  22156. ))
  22157. characterMakers.push(() => makeCharacter(
  22158. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22159. {
  22160. front: {
  22161. height: math.unit(6, "feet"),
  22162. weight: math.unit(150, "lb"),
  22163. name: "Front",
  22164. image: {
  22165. source: "./media/characters/jaipur/front.svg",
  22166. extra: 3860 / 3731,
  22167. bottom: 287 / 4140
  22168. }
  22169. },
  22170. back: {
  22171. height: math.unit(6, "feet"),
  22172. weight: math.unit(150, "lb"),
  22173. name: "Back",
  22174. image: {
  22175. source: "./media/characters/jaipur/back.svg",
  22176. extra: 4060 / 3930,
  22177. bottom: 151 / 4200
  22178. }
  22179. },
  22180. },
  22181. [
  22182. {
  22183. name: "Normal",
  22184. height: math.unit(1.85, "meters"),
  22185. default: true
  22186. },
  22187. {
  22188. name: "Macro",
  22189. height: math.unit(150, "meters")
  22190. },
  22191. {
  22192. name: "Macro+",
  22193. height: math.unit(0.5, "miles")
  22194. },
  22195. {
  22196. name: "Macro++",
  22197. height: math.unit(2.5, "miles")
  22198. },
  22199. {
  22200. name: "Macro+++",
  22201. height: math.unit(12, "miles")
  22202. },
  22203. {
  22204. name: "Macro++++",
  22205. height: math.unit(120, "miles")
  22206. },
  22207. {
  22208. name: "Macro+++++",
  22209. height: math.unit(1200, "miles")
  22210. },
  22211. ]
  22212. ))
  22213. characterMakers.push(() => makeCharacter(
  22214. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22215. {
  22216. front: {
  22217. height: math.unit(6, "feet"),
  22218. weight: math.unit(150, "lb"),
  22219. name: "Front",
  22220. image: {
  22221. source: "./media/characters/sheila-wolf/front.svg",
  22222. extra: 1931 / 1808,
  22223. bottom: 29.5 / 1960
  22224. }
  22225. },
  22226. dick: {
  22227. height: math.unit(1.464, "feet"),
  22228. name: "Dick",
  22229. image: {
  22230. source: "./media/characters/sheila-wolf/dick.svg"
  22231. }
  22232. },
  22233. muzzle: {
  22234. height: math.unit(0.513, "feet"),
  22235. name: "Muzzle",
  22236. image: {
  22237. source: "./media/characters/sheila-wolf/muzzle.svg"
  22238. }
  22239. },
  22240. },
  22241. [
  22242. {
  22243. name: "Macro",
  22244. height: math.unit(70, "feet"),
  22245. default: true
  22246. },
  22247. ]
  22248. ))
  22249. characterMakers.push(() => makeCharacter(
  22250. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22251. {
  22252. front: {
  22253. height: math.unit(32, "meters"),
  22254. weight: math.unit(300000, "kg"),
  22255. name: "Front",
  22256. image: {
  22257. source: "./media/characters/almor/front.svg",
  22258. extra: 1408 / 1322,
  22259. bottom: 94.6 / 1506.5
  22260. }
  22261. },
  22262. },
  22263. [
  22264. {
  22265. name: "Macro",
  22266. height: math.unit(32, "meters"),
  22267. default: true
  22268. },
  22269. ]
  22270. ))
  22271. characterMakers.push(() => makeCharacter(
  22272. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22273. {
  22274. front: {
  22275. height: math.unit(7, "feet"),
  22276. weight: math.unit(200, "lb"),
  22277. name: "Front",
  22278. image: {
  22279. source: "./media/characters/silver/front.svg",
  22280. extra: 472.1 / 450.5,
  22281. bottom: 26.5 / 499.424
  22282. }
  22283. },
  22284. },
  22285. [
  22286. {
  22287. name: "Normal",
  22288. height: math.unit(7, "feet"),
  22289. default: true
  22290. },
  22291. {
  22292. name: "Macro",
  22293. height: math.unit(800, "feet")
  22294. },
  22295. {
  22296. name: "Megamacro",
  22297. height: math.unit(250, "miles")
  22298. },
  22299. ]
  22300. ))
  22301. characterMakers.push(() => makeCharacter(
  22302. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22303. {
  22304. front: {
  22305. height: math.unit(6, "feet"),
  22306. weight: math.unit(150, "lb"),
  22307. name: "Front",
  22308. image: {
  22309. source: "./media/characters/pliskin/front.svg",
  22310. extra: 1469 / 1359,
  22311. bottom: 70 / 1540
  22312. }
  22313. },
  22314. },
  22315. [
  22316. {
  22317. name: "Micro",
  22318. height: math.unit(3, "inches")
  22319. },
  22320. {
  22321. name: "Normal",
  22322. height: math.unit(5 + 11 / 12, "feet"),
  22323. default: true
  22324. },
  22325. {
  22326. name: "Macro",
  22327. height: math.unit(120, "feet")
  22328. },
  22329. ]
  22330. ))
  22331. characterMakers.push(() => makeCharacter(
  22332. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22333. {
  22334. front: {
  22335. height: math.unit(6, "feet"),
  22336. weight: math.unit(150, "lb"),
  22337. name: "Front",
  22338. image: {
  22339. source: "./media/characters/sammy/front.svg",
  22340. extra: 1193 / 1089,
  22341. bottom: 30.5 / 1226
  22342. }
  22343. },
  22344. },
  22345. [
  22346. {
  22347. name: "Macro",
  22348. height: math.unit(1700, "feet"),
  22349. default: true
  22350. },
  22351. {
  22352. name: "Examacro",
  22353. height: math.unit(2.5e9, "lightyears")
  22354. },
  22355. ]
  22356. ))
  22357. characterMakers.push(() => makeCharacter(
  22358. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22359. {
  22360. front: {
  22361. height: math.unit(21, "meters"),
  22362. weight: math.unit(12, "tonnes"),
  22363. name: "Front",
  22364. image: {
  22365. source: "./media/characters/kuru/front.svg",
  22366. extra: 4301 / 3785,
  22367. bottom: 371.3 / 4691
  22368. }
  22369. },
  22370. },
  22371. [
  22372. {
  22373. name: "Macro",
  22374. height: math.unit(21, "meters"),
  22375. default: true
  22376. },
  22377. ]
  22378. ))
  22379. characterMakers.push(() => makeCharacter(
  22380. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22381. {
  22382. front: {
  22383. height: math.unit(23, "meters"),
  22384. weight: math.unit(12.2, "tonnes"),
  22385. name: "Front",
  22386. image: {
  22387. source: "./media/characters/rakka/front.svg",
  22388. extra: 4670 / 4169,
  22389. bottom: 301 / 4968.7
  22390. }
  22391. },
  22392. },
  22393. [
  22394. {
  22395. name: "Macro",
  22396. height: math.unit(23, "meters"),
  22397. default: true
  22398. },
  22399. ]
  22400. ))
  22401. characterMakers.push(() => makeCharacter(
  22402. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22403. {
  22404. front: {
  22405. height: math.unit(6, "feet"),
  22406. weight: math.unit(150, "lb"),
  22407. name: "Front",
  22408. image: {
  22409. source: "./media/characters/rhys-feline/front.svg",
  22410. extra: 2488 / 2308,
  22411. bottom: 35.67 / 2519.19
  22412. }
  22413. },
  22414. },
  22415. [
  22416. {
  22417. name: "Really Small",
  22418. height: math.unit(1, "nm")
  22419. },
  22420. {
  22421. name: "Micro",
  22422. height: math.unit(4, "inches")
  22423. },
  22424. {
  22425. name: "Normal",
  22426. height: math.unit(4 + 10 / 12, "feet"),
  22427. default: true
  22428. },
  22429. {
  22430. name: "Macro",
  22431. height: math.unit(100, "feet")
  22432. },
  22433. {
  22434. name: "Megamacto",
  22435. height: math.unit(50, "miles")
  22436. },
  22437. ]
  22438. ))
  22439. characterMakers.push(() => makeCharacter(
  22440. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22441. {
  22442. side: {
  22443. height: math.unit(30, "feet"),
  22444. weight: math.unit(35000, "kg"),
  22445. name: "Side",
  22446. image: {
  22447. source: "./media/characters/alydar/side.svg",
  22448. extra: 234 / 222,
  22449. bottom: 6.5 / 241
  22450. }
  22451. },
  22452. front: {
  22453. height: math.unit(30, "feet"),
  22454. weight: math.unit(35000, "kg"),
  22455. name: "Front",
  22456. image: {
  22457. source: "./media/characters/alydar/front.svg",
  22458. extra: 223.37 / 210.2,
  22459. bottom: 22.3 / 246.76
  22460. }
  22461. },
  22462. top: {
  22463. height: math.unit(64.54, "feet"),
  22464. weight: math.unit(35000, "kg"),
  22465. name: "Top",
  22466. image: {
  22467. source: "./media/characters/alydar/top.svg"
  22468. }
  22469. },
  22470. anthro: {
  22471. height: math.unit(30, "feet"),
  22472. weight: math.unit(9000, "kg"),
  22473. name: "Anthro",
  22474. image: {
  22475. source: "./media/characters/alydar/anthro.svg",
  22476. extra: 432 / 421,
  22477. bottom: 7.18 / 440
  22478. }
  22479. },
  22480. maw: {
  22481. height: math.unit(11.693, "feet"),
  22482. name: "Maw",
  22483. image: {
  22484. source: "./media/characters/alydar/maw.svg"
  22485. }
  22486. },
  22487. head: {
  22488. height: math.unit(11.693, "feet"),
  22489. name: "Head",
  22490. image: {
  22491. source: "./media/characters/alydar/head.svg"
  22492. }
  22493. },
  22494. headAlt: {
  22495. height: math.unit(12.861, "feet"),
  22496. name: "Head (Alt)",
  22497. image: {
  22498. source: "./media/characters/alydar/head-alt.svg"
  22499. }
  22500. },
  22501. wing: {
  22502. height: math.unit(20.712, "feet"),
  22503. name: "Wing",
  22504. image: {
  22505. source: "./media/characters/alydar/wing.svg"
  22506. }
  22507. },
  22508. wingFeather: {
  22509. height: math.unit(9.662, "feet"),
  22510. name: "Wing Feather",
  22511. image: {
  22512. source: "./media/characters/alydar/wing-feather.svg"
  22513. }
  22514. },
  22515. countourFeather: {
  22516. height: math.unit(4.154, "feet"),
  22517. name: "Contour Feather",
  22518. image: {
  22519. source: "./media/characters/alydar/contour-feather.svg"
  22520. }
  22521. },
  22522. },
  22523. [
  22524. {
  22525. name: "Diplomatic",
  22526. height: math.unit(13, "feet"),
  22527. default: true
  22528. },
  22529. {
  22530. name: "Small",
  22531. height: math.unit(30, "feet")
  22532. },
  22533. {
  22534. name: "Normal",
  22535. height: math.unit(95, "feet"),
  22536. default: true
  22537. },
  22538. {
  22539. name: "Large",
  22540. height: math.unit(285, "feet")
  22541. },
  22542. {
  22543. name: "Incomprehensible",
  22544. height: math.unit(450, "megameters")
  22545. },
  22546. ]
  22547. ))
  22548. characterMakers.push(() => makeCharacter(
  22549. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22550. {
  22551. side: {
  22552. height: math.unit(11, "feet"),
  22553. weight: math.unit(1750, "kg"),
  22554. name: "Side",
  22555. image: {
  22556. source: "./media/characters/selicia/side.svg",
  22557. extra: 440 / 396,
  22558. bottom: 24.8 / 465.979
  22559. }
  22560. },
  22561. maw: {
  22562. height: math.unit(4.665, "feet"),
  22563. name: "Maw",
  22564. image: {
  22565. source: "./media/characters/selicia/maw.svg"
  22566. }
  22567. },
  22568. },
  22569. [
  22570. {
  22571. name: "Normal",
  22572. height: math.unit(11, "feet"),
  22573. default: true
  22574. },
  22575. ]
  22576. ))
  22577. characterMakers.push(() => makeCharacter(
  22578. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22579. {
  22580. side: {
  22581. height: math.unit(2 + 6 / 12, "feet"),
  22582. weight: math.unit(30, "lb"),
  22583. name: "Side",
  22584. image: {
  22585. source: "./media/characters/layla/side.svg",
  22586. extra: 244 / 188,
  22587. bottom: 18.2 / 262.1
  22588. }
  22589. },
  22590. back: {
  22591. height: math.unit(2 + 6 / 12, "feet"),
  22592. weight: math.unit(30, "lb"),
  22593. name: "Back",
  22594. image: {
  22595. source: "./media/characters/layla/back.svg",
  22596. extra: 308 / 241.5,
  22597. bottom: 8.9 / 316.8
  22598. }
  22599. },
  22600. cumming: {
  22601. height: math.unit(2 + 6 / 12, "feet"),
  22602. weight: math.unit(30, "lb"),
  22603. name: "Cumming",
  22604. image: {
  22605. source: "./media/characters/layla/cumming.svg",
  22606. extra: 342 / 279,
  22607. bottom: 595 / 938
  22608. }
  22609. },
  22610. dickFlaccid: {
  22611. height: math.unit(2.595, "feet"),
  22612. name: "Flaccid Genitals",
  22613. image: {
  22614. source: "./media/characters/layla/dick-flaccid.svg"
  22615. }
  22616. },
  22617. dickErect: {
  22618. height: math.unit(2.359, "feet"),
  22619. name: "Erect Genitals",
  22620. image: {
  22621. source: "./media/characters/layla/dick-erect.svg"
  22622. }
  22623. },
  22624. },
  22625. [
  22626. {
  22627. name: "Micro",
  22628. height: math.unit(1, "inch")
  22629. },
  22630. {
  22631. name: "Small",
  22632. height: math.unit(1, "foot")
  22633. },
  22634. {
  22635. name: "Normal",
  22636. height: math.unit(2 + 6 / 12, "feet"),
  22637. default: true
  22638. },
  22639. {
  22640. name: "Macro",
  22641. height: math.unit(200, "feet")
  22642. },
  22643. {
  22644. name: "Megamacro",
  22645. height: math.unit(1000, "miles")
  22646. },
  22647. {
  22648. name: "Planetary",
  22649. height: math.unit(8000, "miles")
  22650. },
  22651. {
  22652. name: "True Layla",
  22653. height: math.unit(200000 * 7, "multiverses")
  22654. },
  22655. ]
  22656. ))
  22657. characterMakers.push(() => makeCharacter(
  22658. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22659. {
  22660. back: {
  22661. height: math.unit(10.5, "feet"),
  22662. weight: math.unit(800, "lb"),
  22663. name: "Back",
  22664. image: {
  22665. source: "./media/characters/knox/back.svg",
  22666. extra: 1486 / 1089,
  22667. bottom: 107 / 1601.4
  22668. }
  22669. },
  22670. side: {
  22671. height: math.unit(10.5, "feet"),
  22672. weight: math.unit(800, "lb"),
  22673. name: "Side",
  22674. image: {
  22675. source: "./media/characters/knox/side.svg",
  22676. extra: 244 / 218,
  22677. bottom: 14 / 260
  22678. }
  22679. },
  22680. },
  22681. [
  22682. {
  22683. name: "Compact",
  22684. height: math.unit(10.5, "feet"),
  22685. default: true
  22686. },
  22687. {
  22688. name: "Dynamax",
  22689. height: math.unit(210, "feet")
  22690. },
  22691. {
  22692. name: "Full Macro",
  22693. height: math.unit(850, "feet")
  22694. },
  22695. ]
  22696. ))
  22697. characterMakers.push(() => makeCharacter(
  22698. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22699. {
  22700. front: {
  22701. height: math.unit(6, "feet"),
  22702. weight: math.unit(152, "lb"),
  22703. name: "Front",
  22704. image: {
  22705. source: "./media/characters/shin-pikachu/front.svg",
  22706. extra: 1574 / 1480,
  22707. bottom: 53.3 / 1626
  22708. }
  22709. },
  22710. hand: {
  22711. height: math.unit(1.055, "feet"),
  22712. name: "Hand",
  22713. image: {
  22714. source: "./media/characters/shin-pikachu/hand.svg"
  22715. }
  22716. },
  22717. foot: {
  22718. height: math.unit(1.1, "feet"),
  22719. name: "Foot",
  22720. image: {
  22721. source: "./media/characters/shin-pikachu/foot.svg"
  22722. }
  22723. },
  22724. collar: {
  22725. height: math.unit(0.386, "feet"),
  22726. name: "Collar",
  22727. image: {
  22728. source: "./media/characters/shin-pikachu/collar.svg"
  22729. }
  22730. },
  22731. },
  22732. [
  22733. {
  22734. name: "Smallest",
  22735. height: math.unit(0.5, "inches")
  22736. },
  22737. {
  22738. name: "Micro",
  22739. height: math.unit(6, "inches")
  22740. },
  22741. {
  22742. name: "Normal",
  22743. height: math.unit(6, "feet"),
  22744. default: true
  22745. },
  22746. {
  22747. name: "Macro",
  22748. height: math.unit(150, "feet")
  22749. },
  22750. ]
  22751. ))
  22752. characterMakers.push(() => makeCharacter(
  22753. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22754. {
  22755. front: {
  22756. height: math.unit(28, "feet"),
  22757. weight: math.unit(10500, "lb"),
  22758. name: "Front",
  22759. image: {
  22760. source: "./media/characters/kayda/front.svg",
  22761. extra: 1536 / 1428,
  22762. bottom: 68.7 / 1603
  22763. }
  22764. },
  22765. back: {
  22766. height: math.unit(28, "feet"),
  22767. weight: math.unit(10500, "lb"),
  22768. name: "Back",
  22769. image: {
  22770. source: "./media/characters/kayda/back.svg",
  22771. extra: 1557 / 1464,
  22772. bottom: 39.5 / 1597.49
  22773. }
  22774. },
  22775. dick: {
  22776. height: math.unit(3.858, "feet"),
  22777. name: "Dick",
  22778. image: {
  22779. source: "./media/characters/kayda/dick.svg"
  22780. }
  22781. },
  22782. },
  22783. [
  22784. {
  22785. name: "Macro",
  22786. height: math.unit(28, "feet"),
  22787. default: true
  22788. },
  22789. ]
  22790. ))
  22791. characterMakers.push(() => makeCharacter(
  22792. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  22793. {
  22794. front: {
  22795. height: math.unit(10 + 11 / 12, "feet"),
  22796. weight: math.unit(1400, "lb"),
  22797. name: "Front",
  22798. image: {
  22799. source: "./media/characters/brian/front.svg",
  22800. extra: 737 / 692,
  22801. bottom: 55.4 / 785
  22802. }
  22803. },
  22804. },
  22805. [
  22806. {
  22807. name: "Normal",
  22808. height: math.unit(10 + 11 / 12, "feet"),
  22809. default: true
  22810. },
  22811. ]
  22812. ))
  22813. characterMakers.push(() => makeCharacter(
  22814. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  22815. {
  22816. front: {
  22817. height: math.unit(5 + 8 / 12, "feet"),
  22818. weight: math.unit(140, "lb"),
  22819. name: "Front",
  22820. image: {
  22821. source: "./media/characters/khemri/front.svg",
  22822. extra: 4780 / 4059,
  22823. bottom: 80.1 / 4859.25
  22824. }
  22825. },
  22826. },
  22827. [
  22828. {
  22829. name: "Micro",
  22830. height: math.unit(6, "inches")
  22831. },
  22832. {
  22833. name: "Normal",
  22834. height: math.unit(5 + 8 / 12, "feet"),
  22835. default: true
  22836. },
  22837. ]
  22838. ))
  22839. characterMakers.push(() => makeCharacter(
  22840. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  22841. {
  22842. front: {
  22843. height: math.unit(13, "feet"),
  22844. weight: math.unit(1700, "lb"),
  22845. name: "Front",
  22846. image: {
  22847. source: "./media/characters/felix-braveheart/front.svg",
  22848. extra: 1222 / 1157,
  22849. bottom: 53.2 / 1280
  22850. }
  22851. },
  22852. back: {
  22853. height: math.unit(13, "feet"),
  22854. weight: math.unit(1700, "lb"),
  22855. name: "Back",
  22856. image: {
  22857. source: "./media/characters/felix-braveheart/back.svg",
  22858. extra: 1277 / 1203,
  22859. bottom: 50.2 / 1327
  22860. }
  22861. },
  22862. feral: {
  22863. height: math.unit(6, "feet"),
  22864. weight: math.unit(400, "lb"),
  22865. name: "Feral",
  22866. image: {
  22867. source: "./media/characters/felix-braveheart/feral.svg",
  22868. extra: 682 / 625,
  22869. bottom: 6.9 / 688
  22870. }
  22871. },
  22872. },
  22873. [
  22874. {
  22875. name: "Normal",
  22876. height: math.unit(13, "feet"),
  22877. default: true
  22878. },
  22879. ]
  22880. ))
  22881. characterMakers.push(() => makeCharacter(
  22882. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  22883. {
  22884. side: {
  22885. height: math.unit(5 + 11 / 12, "feet"),
  22886. weight: math.unit(1400, "lb"),
  22887. name: "Side",
  22888. image: {
  22889. source: "./media/characters/shadow-blade/side.svg",
  22890. extra: 1726 / 1267,
  22891. bottom: 58.4 / 1785
  22892. }
  22893. },
  22894. },
  22895. [
  22896. {
  22897. name: "Normal",
  22898. height: math.unit(5 + 11 / 12, "feet"),
  22899. default: true
  22900. },
  22901. ]
  22902. ))
  22903. characterMakers.push(() => makeCharacter(
  22904. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  22905. {
  22906. front: {
  22907. height: math.unit(1 + 6 / 12, "feet"),
  22908. weight: math.unit(25, "lb"),
  22909. name: "Front",
  22910. image: {
  22911. source: "./media/characters/karla-halldor/front.svg",
  22912. extra: 1459 / 1383,
  22913. bottom: 12 / 1472
  22914. }
  22915. },
  22916. },
  22917. [
  22918. {
  22919. name: "Normal",
  22920. height: math.unit(1 + 6 / 12, "feet"),
  22921. default: true
  22922. },
  22923. ]
  22924. ))
  22925. characterMakers.push(() => makeCharacter(
  22926. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  22927. {
  22928. front: {
  22929. height: math.unit(6 + 2 / 12, "feet"),
  22930. weight: math.unit(160, "lb"),
  22931. name: "Front",
  22932. image: {
  22933. source: "./media/characters/ariam/front.svg",
  22934. extra: 714 / 617,
  22935. bottom: 23.4 / 737,
  22936. }
  22937. },
  22938. squatting: {
  22939. height: math.unit(4.1, "feet"),
  22940. weight: math.unit(160, "lb"),
  22941. name: "Squatting",
  22942. image: {
  22943. source: "./media/characters/ariam/squatting.svg",
  22944. extra: 2617 / 2112,
  22945. bottom: 61.2 / 2681,
  22946. }
  22947. },
  22948. },
  22949. [
  22950. {
  22951. name: "Normal",
  22952. height: math.unit(6 + 2 / 12, "feet"),
  22953. default: true
  22954. },
  22955. {
  22956. name: "Normal+",
  22957. height: math.unit(4, "meters")
  22958. },
  22959. {
  22960. name: "Macro",
  22961. height: math.unit(50, "meters")
  22962. },
  22963. {
  22964. name: "Macro+",
  22965. height: math.unit(100, "meters")
  22966. },
  22967. {
  22968. name: "Megamacro",
  22969. height: math.unit(20, "km")
  22970. },
  22971. ]
  22972. ))
  22973. characterMakers.push(() => makeCharacter(
  22974. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  22975. {
  22976. front: {
  22977. height: math.unit(1.67, "meters"),
  22978. weight: math.unit(140, "lb"),
  22979. name: "Front",
  22980. image: {
  22981. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  22982. extra: 438 / 410,
  22983. bottom: 0.75 / 439
  22984. }
  22985. },
  22986. },
  22987. [
  22988. {
  22989. name: "Shrunken",
  22990. height: math.unit(7.6, "cm")
  22991. },
  22992. {
  22993. name: "Human Scale",
  22994. height: math.unit(1.67, "meters")
  22995. },
  22996. {
  22997. name: "Wolxi Scale",
  22998. height: math.unit(36.7, "meters"),
  22999. default: true
  23000. },
  23001. ]
  23002. ))
  23003. characterMakers.push(() => makeCharacter(
  23004. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23005. {
  23006. front: {
  23007. height: math.unit(1.73, "meters"),
  23008. weight: math.unit(240, "lb"),
  23009. name: "Front",
  23010. image: {
  23011. source: "./media/characters/izue-two-mothers/front.svg",
  23012. extra: 469 / 437,
  23013. bottom: 1.24 / 470.6
  23014. }
  23015. },
  23016. },
  23017. [
  23018. {
  23019. name: "Shrunken",
  23020. height: math.unit(7.86, "cm")
  23021. },
  23022. {
  23023. name: "Human Scale",
  23024. height: math.unit(1.73, "meters")
  23025. },
  23026. {
  23027. name: "Wolxi Scale",
  23028. height: math.unit(38, "meters"),
  23029. default: true
  23030. },
  23031. ]
  23032. ))
  23033. characterMakers.push(() => makeCharacter(
  23034. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23035. {
  23036. front: {
  23037. height: math.unit(1.55, "meters"),
  23038. weight: math.unit(120, "lb"),
  23039. name: "Front",
  23040. image: {
  23041. source: "./media/characters/teeku-love-shack/front.svg",
  23042. extra: 387 / 362,
  23043. bottom: 1.51 / 388
  23044. }
  23045. },
  23046. },
  23047. [
  23048. {
  23049. name: "Shrunken",
  23050. height: math.unit(7, "cm")
  23051. },
  23052. {
  23053. name: "Human Scale",
  23054. height: math.unit(1.55, "meters")
  23055. },
  23056. {
  23057. name: "Wolxi Scale",
  23058. height: math.unit(34.1, "meters"),
  23059. default: true
  23060. },
  23061. ]
  23062. ))
  23063. characterMakers.push(() => makeCharacter(
  23064. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23065. {
  23066. front: {
  23067. height: math.unit(1.83, "meters"),
  23068. weight: math.unit(135, "lb"),
  23069. name: "Front",
  23070. image: {
  23071. source: "./media/characters/dejma-the-red/front.svg",
  23072. extra: 480 / 458,
  23073. bottom: 1.8 / 482
  23074. }
  23075. },
  23076. },
  23077. [
  23078. {
  23079. name: "Shrunken",
  23080. height: math.unit(8.3, "cm")
  23081. },
  23082. {
  23083. name: "Human Scale",
  23084. height: math.unit(1.83, "meters")
  23085. },
  23086. {
  23087. name: "Wolxi Scale",
  23088. height: math.unit(40, "meters"),
  23089. default: true
  23090. },
  23091. ]
  23092. ))
  23093. characterMakers.push(() => makeCharacter(
  23094. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23095. {
  23096. front: {
  23097. height: math.unit(1.78, "meters"),
  23098. weight: math.unit(65, "kg"),
  23099. name: "Front",
  23100. image: {
  23101. source: "./media/characters/aki/front.svg",
  23102. extra: 452 / 415
  23103. }
  23104. },
  23105. frontNsfw: {
  23106. height: math.unit(1.78, "meters"),
  23107. weight: math.unit(65, "kg"),
  23108. name: "Front (NSFW)",
  23109. image: {
  23110. source: "./media/characters/aki/front-nsfw.svg",
  23111. extra: 452 / 415
  23112. }
  23113. },
  23114. back: {
  23115. height: math.unit(1.78, "meters"),
  23116. weight: math.unit(65, "kg"),
  23117. name: "Back",
  23118. image: {
  23119. source: "./media/characters/aki/back.svg",
  23120. extra: 452 / 415
  23121. }
  23122. },
  23123. rump: {
  23124. height: math.unit(2.05, "feet"),
  23125. name: "Rump",
  23126. image: {
  23127. source: "./media/characters/aki/rump.svg"
  23128. }
  23129. },
  23130. dick: {
  23131. height: math.unit(0.95, "feet"),
  23132. name: "Dick",
  23133. image: {
  23134. source: "./media/characters/aki/dick.svg"
  23135. }
  23136. },
  23137. },
  23138. [
  23139. {
  23140. name: "Micro",
  23141. height: math.unit(15, "cm")
  23142. },
  23143. {
  23144. name: "Normal",
  23145. height: math.unit(178, "cm"),
  23146. default: true
  23147. },
  23148. {
  23149. name: "Macro",
  23150. height: math.unit(214, "m")
  23151. },
  23152. {
  23153. name: "Macro+",
  23154. height: math.unit(534, "m")
  23155. },
  23156. ]
  23157. ))
  23158. characterMakers.push(() => makeCharacter(
  23159. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23160. {
  23161. front: {
  23162. height: math.unit(5 + 5 / 12, "feet"),
  23163. weight: math.unit(120, "lb"),
  23164. name: "Front",
  23165. image: {
  23166. source: "./media/characters/ari/front.svg",
  23167. extra: 714.5 / 682,
  23168. bottom: 8 / 722.5
  23169. }
  23170. },
  23171. },
  23172. [
  23173. {
  23174. name: "Normal",
  23175. height: math.unit(5 + 5 / 12, "feet")
  23176. },
  23177. {
  23178. name: "Macro",
  23179. height: math.unit(100, "feet"),
  23180. default: true
  23181. },
  23182. {
  23183. name: "Megamacro",
  23184. height: math.unit(100, "miles")
  23185. },
  23186. {
  23187. name: "Gigamacro",
  23188. height: math.unit(80000, "miles")
  23189. },
  23190. ]
  23191. ))
  23192. characterMakers.push(() => makeCharacter(
  23193. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23194. {
  23195. side: {
  23196. height: math.unit(9, "feet"),
  23197. weight: math.unit(400, "kg"),
  23198. name: "Side",
  23199. image: {
  23200. source: "./media/characters/bolt/side.svg",
  23201. extra: 1126 / 896,
  23202. bottom: 60 / 1187.3,
  23203. }
  23204. },
  23205. },
  23206. [
  23207. {
  23208. name: "Micro",
  23209. height: math.unit(5, "inches")
  23210. },
  23211. {
  23212. name: "Normal",
  23213. height: math.unit(9, "feet"),
  23214. default: true
  23215. },
  23216. {
  23217. name: "Macro",
  23218. height: math.unit(700, "feet")
  23219. },
  23220. {
  23221. name: "Max Size",
  23222. height: math.unit(1.52e22, "yottameters")
  23223. },
  23224. ]
  23225. ))
  23226. characterMakers.push(() => makeCharacter(
  23227. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23228. {
  23229. front: {
  23230. height: math.unit(4.53, "meters"),
  23231. weight: math.unit(3, "tons"),
  23232. name: "Front",
  23233. image: {
  23234. source: "./media/characters/draekon-sylviar/front.svg",
  23235. extra: 1228 / 1068,
  23236. bottom: 41 / 1270
  23237. }
  23238. },
  23239. tail: {
  23240. height: math.unit(1.772, "meter"),
  23241. name: "Tail",
  23242. image: {
  23243. source: "./media/characters/draekon-sylviar/tail.svg"
  23244. }
  23245. },
  23246. head: {
  23247. height: math.unit(1.331, "meter"),
  23248. name: "Head",
  23249. image: {
  23250. source: "./media/characters/draekon-sylviar/head.svg"
  23251. }
  23252. },
  23253. hand: {
  23254. height: math.unit(0.564, "meter"),
  23255. name: "Hand",
  23256. image: {
  23257. source: "./media/characters/draekon-sylviar/hand.svg"
  23258. }
  23259. },
  23260. foot: {
  23261. height: math.unit(0.621, "meter"),
  23262. name: "Foot",
  23263. image: {
  23264. source: "./media/characters/draekon-sylviar/foot.svg",
  23265. bottom: 32 / 324
  23266. }
  23267. },
  23268. dick: {
  23269. height: math.unit(61, "cm"),
  23270. name: "Dick",
  23271. image: {
  23272. source: "./media/characters/draekon-sylviar/dick.svg"
  23273. }
  23274. },
  23275. dickseparated: {
  23276. height: math.unit(61, "cm"),
  23277. name: "Dick-separated",
  23278. image: {
  23279. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23280. }
  23281. },
  23282. },
  23283. [
  23284. {
  23285. name: "Small",
  23286. height: math.unit(4.53 / 2, "meters"),
  23287. default: true
  23288. },
  23289. {
  23290. name: "Normal",
  23291. height: math.unit(4.53, "meters"),
  23292. default: true
  23293. },
  23294. {
  23295. name: "Large",
  23296. height: math.unit(4.53 * 2, "meters"),
  23297. },
  23298. ]
  23299. ))
  23300. characterMakers.push(() => makeCharacter(
  23301. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23302. {
  23303. front: {
  23304. height: math.unit(6 + 2 / 12, "feet"),
  23305. weight: math.unit(180, "lb"),
  23306. name: "Front",
  23307. image: {
  23308. source: "./media/characters/brawler/front.svg",
  23309. extra: 3301 / 3027,
  23310. bottom: 138 / 3439
  23311. }
  23312. },
  23313. },
  23314. [
  23315. {
  23316. name: "Normal",
  23317. height: math.unit(6 + 2 / 12, "feet"),
  23318. default: true
  23319. },
  23320. ]
  23321. ))
  23322. characterMakers.push(() => makeCharacter(
  23323. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23324. {
  23325. front: {
  23326. height: math.unit(11, "feet"),
  23327. weight: math.unit(1000, "lb"),
  23328. name: "Front",
  23329. image: {
  23330. source: "./media/characters/alex/front.svg",
  23331. bottom: 44.5 / 620
  23332. }
  23333. },
  23334. },
  23335. [
  23336. {
  23337. name: "Micro",
  23338. height: math.unit(5, "inches")
  23339. },
  23340. {
  23341. name: "Normal",
  23342. height: math.unit(11, "feet"),
  23343. default: true
  23344. },
  23345. {
  23346. name: "Macro",
  23347. height: math.unit(9.5e9, "feet")
  23348. },
  23349. {
  23350. name: "Max Size",
  23351. height: math.unit(1.4e283, "yottameters")
  23352. },
  23353. ]
  23354. ))
  23355. characterMakers.push(() => makeCharacter(
  23356. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23357. {
  23358. female: {
  23359. height: math.unit(29.9, "m"),
  23360. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23361. name: "Female",
  23362. image: {
  23363. source: "./media/characters/zenari/female.svg",
  23364. extra: 3281.6 / 3217,
  23365. bottom: 72.2 / 3353
  23366. }
  23367. },
  23368. male: {
  23369. height: math.unit(27.7, "m"),
  23370. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23371. name: "Male",
  23372. image: {
  23373. source: "./media/characters/zenari/male.svg",
  23374. extra: 3008 / 2991,
  23375. bottom: 54.6 / 3069
  23376. }
  23377. },
  23378. },
  23379. [
  23380. {
  23381. name: "Macro",
  23382. height: math.unit(29.7, "meters"),
  23383. default: true
  23384. },
  23385. ]
  23386. ))
  23387. characterMakers.push(() => makeCharacter(
  23388. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23389. {
  23390. female: {
  23391. height: math.unit(23.8, "m"),
  23392. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23393. name: "Female",
  23394. image: {
  23395. source: "./media/characters/mactarian/female.svg",
  23396. extra: 2662 / 2569,
  23397. bottom: 73 / 2736
  23398. }
  23399. },
  23400. male: {
  23401. height: math.unit(23.8, "m"),
  23402. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23403. name: "Male",
  23404. image: {
  23405. source: "./media/characters/mactarian/male.svg",
  23406. extra: 2673 / 2600,
  23407. bottom: 76 / 2750
  23408. }
  23409. },
  23410. },
  23411. [
  23412. {
  23413. name: "Macro",
  23414. height: math.unit(23.8, "meters"),
  23415. default: true
  23416. },
  23417. ]
  23418. ))
  23419. characterMakers.push(() => makeCharacter(
  23420. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23421. {
  23422. female: {
  23423. height: math.unit(19.3, "m"),
  23424. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23425. name: "Female",
  23426. image: {
  23427. source: "./media/characters/umok/female.svg",
  23428. extra: 2186 / 2078,
  23429. bottom: 87 / 2277
  23430. }
  23431. },
  23432. male: {
  23433. height: math.unit(19.5, "m"),
  23434. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23435. name: "Male",
  23436. image: {
  23437. source: "./media/characters/umok/male.svg",
  23438. extra: 2233 / 2140,
  23439. bottom: 24.4 / 2258
  23440. }
  23441. },
  23442. },
  23443. [
  23444. {
  23445. name: "Macro",
  23446. height: math.unit(19.3, "meters"),
  23447. default: true
  23448. },
  23449. ]
  23450. ))
  23451. characterMakers.push(() => makeCharacter(
  23452. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23453. {
  23454. female: {
  23455. height: math.unit(26.15, "m"),
  23456. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23457. name: "Female",
  23458. image: {
  23459. source: "./media/characters/joraxian/female.svg",
  23460. extra: 2912 / 2824,
  23461. bottom: 36 / 2956
  23462. }
  23463. },
  23464. male: {
  23465. height: math.unit(25.4, "m"),
  23466. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23467. name: "Male",
  23468. image: {
  23469. source: "./media/characters/joraxian/male.svg",
  23470. extra: 2877 / 2721,
  23471. bottom: 82 / 2967
  23472. }
  23473. },
  23474. },
  23475. [
  23476. {
  23477. name: "Macro",
  23478. height: math.unit(26.15, "meters"),
  23479. default: true
  23480. },
  23481. ]
  23482. ))
  23483. characterMakers.push(() => makeCharacter(
  23484. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23485. {
  23486. female: {
  23487. height: math.unit(21.6, "m"),
  23488. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23489. name: "Female",
  23490. image: {
  23491. source: "./media/characters/sthara/female.svg",
  23492. extra: 2516 / 2347,
  23493. bottom: 21.5 / 2537
  23494. }
  23495. },
  23496. male: {
  23497. height: math.unit(24, "m"),
  23498. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23499. name: "Male",
  23500. image: {
  23501. source: "./media/characters/sthara/male.svg",
  23502. extra: 2732 / 2607,
  23503. bottom: 23 / 2732
  23504. }
  23505. },
  23506. },
  23507. [
  23508. {
  23509. name: "Macro",
  23510. height: math.unit(21.6, "meters"),
  23511. default: true
  23512. },
  23513. ]
  23514. ))
  23515. characterMakers.push(() => makeCharacter(
  23516. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23517. {
  23518. front: {
  23519. height: math.unit(6 + 4 / 12, "feet"),
  23520. weight: math.unit(175, "lb"),
  23521. name: "Front",
  23522. image: {
  23523. source: "./media/characters/luka-bryzant/front.svg",
  23524. extra: 311 / 289,
  23525. bottom: 4 / 315
  23526. }
  23527. },
  23528. back: {
  23529. height: math.unit(6 + 4 / 12, "feet"),
  23530. weight: math.unit(175, "lb"),
  23531. name: "Back",
  23532. image: {
  23533. source: "./media/characters/luka-bryzant/back.svg",
  23534. extra: 311 / 289,
  23535. bottom: 3.8 / 313.7
  23536. }
  23537. },
  23538. },
  23539. [
  23540. {
  23541. name: "Micro",
  23542. height: math.unit(10, "inches")
  23543. },
  23544. {
  23545. name: "Normal",
  23546. height: math.unit(6 + 4 / 12, "feet"),
  23547. default: true
  23548. },
  23549. {
  23550. name: "Large",
  23551. height: math.unit(12, "feet")
  23552. },
  23553. ]
  23554. ))
  23555. characterMakers.push(() => makeCharacter(
  23556. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23557. {
  23558. front: {
  23559. height: math.unit(5 + 7 / 12, "feet"),
  23560. weight: math.unit(185, "lb"),
  23561. name: "Front",
  23562. image: {
  23563. source: "./media/characters/aman-aquila/front.svg",
  23564. extra: 1013 / 976,
  23565. bottom: 45.6 / 1057
  23566. }
  23567. },
  23568. side: {
  23569. height: math.unit(5 + 7 / 12, "feet"),
  23570. weight: math.unit(185, "lb"),
  23571. name: "Side",
  23572. image: {
  23573. source: "./media/characters/aman-aquila/side.svg",
  23574. extra: 1054 / 1011,
  23575. bottom: 15 / 1070
  23576. }
  23577. },
  23578. back: {
  23579. height: math.unit(5 + 7 / 12, "feet"),
  23580. weight: math.unit(185, "lb"),
  23581. name: "Back",
  23582. image: {
  23583. source: "./media/characters/aman-aquila/back.svg",
  23584. extra: 1026 / 970,
  23585. bottom: 12 / 1039
  23586. }
  23587. },
  23588. head: {
  23589. height: math.unit(1.211, "feet"),
  23590. name: "Head",
  23591. image: {
  23592. source: "./media/characters/aman-aquila/head.svg",
  23593. }
  23594. },
  23595. },
  23596. [
  23597. {
  23598. name: "Minimicro",
  23599. height: math.unit(0.057, "inches")
  23600. },
  23601. {
  23602. name: "Micro",
  23603. height: math.unit(7, "inches")
  23604. },
  23605. {
  23606. name: "Mini",
  23607. height: math.unit(3 + 7 / 12, "feet")
  23608. },
  23609. {
  23610. name: "Normal",
  23611. height: math.unit(5 + 7 / 12, "feet"),
  23612. default: true
  23613. },
  23614. {
  23615. name: "Macro",
  23616. height: math.unit(157 + 7 / 12, "feet")
  23617. },
  23618. {
  23619. name: "Megamacro",
  23620. height: math.unit(1557 + 7 / 12, "feet")
  23621. },
  23622. {
  23623. name: "Gigamacro",
  23624. height: math.unit(15557 + 7 / 12, "feet")
  23625. },
  23626. ]
  23627. ))
  23628. characterMakers.push(() => makeCharacter(
  23629. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23630. {
  23631. front: {
  23632. height: math.unit(3 + 2 / 12, "inches"),
  23633. weight: math.unit(0.3, "ounces"),
  23634. name: "Front",
  23635. image: {
  23636. source: "./media/characters/hiphae/front.svg",
  23637. extra: 1931 / 1683,
  23638. bottom: 24 / 1955
  23639. }
  23640. },
  23641. },
  23642. [
  23643. {
  23644. name: "Normal",
  23645. height: math.unit(3 + 1 / 2, "inches"),
  23646. default: true
  23647. },
  23648. ]
  23649. ))
  23650. characterMakers.push(() => makeCharacter(
  23651. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23652. {
  23653. front: {
  23654. height: math.unit(5 + 10 / 12, "feet"),
  23655. weight: math.unit(165, "lb"),
  23656. name: "Front",
  23657. image: {
  23658. source: "./media/characters/nicky/front.svg",
  23659. extra: 3144 / 2886,
  23660. bottom: 45.6 / 3192
  23661. }
  23662. },
  23663. back: {
  23664. height: math.unit(5 + 10 / 12, "feet"),
  23665. weight: math.unit(165, "lb"),
  23666. name: "Back",
  23667. image: {
  23668. source: "./media/characters/nicky/back.svg",
  23669. extra: 3055 / 2804,
  23670. bottom: 28.4 / 3087
  23671. }
  23672. },
  23673. frontclothed: {
  23674. height: math.unit(5 + 10 / 12, "feet"),
  23675. weight: math.unit(165, "lb"),
  23676. name: "Front-clothed",
  23677. image: {
  23678. source: "./media/characters/nicky/front-clothed.svg",
  23679. extra: 3184.9 / 2926.9,
  23680. bottom: 86.5 / 3239.9
  23681. }
  23682. },
  23683. foot: {
  23684. height: math.unit(1.16, "feet"),
  23685. name: "Foot",
  23686. image: {
  23687. source: "./media/characters/nicky/foot.svg"
  23688. }
  23689. },
  23690. feet: {
  23691. height: math.unit(1.34, "feet"),
  23692. name: "Feet",
  23693. image: {
  23694. source: "./media/characters/nicky/feet.svg"
  23695. }
  23696. },
  23697. maw: {
  23698. height: math.unit(0.9, "feet"),
  23699. name: "Maw",
  23700. image: {
  23701. source: "./media/characters/nicky/maw.svg"
  23702. }
  23703. },
  23704. },
  23705. [
  23706. {
  23707. name: "Normal",
  23708. height: math.unit(5 + 10 / 12, "feet"),
  23709. default: true
  23710. },
  23711. {
  23712. name: "Macro",
  23713. height: math.unit(60, "feet")
  23714. },
  23715. {
  23716. name: "Megamacro",
  23717. height: math.unit(1, "mile")
  23718. },
  23719. ]
  23720. ))
  23721. characterMakers.push(() => makeCharacter(
  23722. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23723. {
  23724. side: {
  23725. height: math.unit(10, "feet"),
  23726. weight: math.unit(600, "lb"),
  23727. name: "Side",
  23728. image: {
  23729. source: "./media/characters/blair/side.svg",
  23730. bottom: 16.6 / 475,
  23731. extra: 458 / 431
  23732. }
  23733. },
  23734. },
  23735. [
  23736. {
  23737. name: "Micro",
  23738. height: math.unit(8, "inches")
  23739. },
  23740. {
  23741. name: "Normal",
  23742. height: math.unit(10, "feet"),
  23743. default: true
  23744. },
  23745. {
  23746. name: "Macro",
  23747. height: math.unit(180, "feet")
  23748. },
  23749. ]
  23750. ))
  23751. characterMakers.push(() => makeCharacter(
  23752. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23753. {
  23754. front: {
  23755. height: math.unit(5 + 4 / 12, "feet"),
  23756. weight: math.unit(125, "lb"),
  23757. name: "Front",
  23758. image: {
  23759. source: "./media/characters/fisher/front.svg",
  23760. extra: 444 / 390,
  23761. bottom: 2 / 444.8
  23762. }
  23763. },
  23764. },
  23765. [
  23766. {
  23767. name: "Micro",
  23768. height: math.unit(4, "inches")
  23769. },
  23770. {
  23771. name: "Normal",
  23772. height: math.unit(5 + 4 / 12, "feet"),
  23773. default: true
  23774. },
  23775. {
  23776. name: "Macro",
  23777. height: math.unit(100, "feet")
  23778. },
  23779. ]
  23780. ))
  23781. characterMakers.push(() => makeCharacter(
  23782. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  23783. {
  23784. front: {
  23785. height: math.unit(6.71, "feet"),
  23786. weight: math.unit(200, "lb"),
  23787. capacity: math.unit(1000000, "people"),
  23788. name: "Front",
  23789. image: {
  23790. source: "./media/characters/gliss/front.svg",
  23791. extra: 2347 / 2231,
  23792. bottom: 113 / 2462
  23793. }
  23794. },
  23795. hammerspaceSize: {
  23796. height: math.unit(6.71 * 717, "feet"),
  23797. weight: math.unit(200, "lb"),
  23798. capacity: math.unit(1000000, "people"),
  23799. name: "Hammerspace Size",
  23800. image: {
  23801. source: "./media/characters/gliss/front.svg",
  23802. extra: 2347 / 2231,
  23803. bottom: 113 / 2462
  23804. }
  23805. },
  23806. },
  23807. [
  23808. {
  23809. name: "Normal",
  23810. height: math.unit(6.71, "feet"),
  23811. default: true
  23812. },
  23813. ]
  23814. ))
  23815. characterMakers.push(() => makeCharacter(
  23816. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  23817. {
  23818. side: {
  23819. height: math.unit(1.44, "m"),
  23820. weight: math.unit(80, "kg"),
  23821. name: "Side",
  23822. image: {
  23823. source: "./media/characters/dune-anderson/side.svg",
  23824. bottom: 49 / 1426
  23825. }
  23826. },
  23827. },
  23828. [
  23829. {
  23830. name: "Wolf-sized",
  23831. height: math.unit(1.44, "meters")
  23832. },
  23833. {
  23834. name: "Normal",
  23835. height: math.unit(5.05, "meters"),
  23836. default: true
  23837. },
  23838. {
  23839. name: "Big",
  23840. height: math.unit(14.4, "meters")
  23841. },
  23842. {
  23843. name: "Huge",
  23844. height: math.unit(144, "meters")
  23845. },
  23846. ]
  23847. ))
  23848. characterMakers.push(() => makeCharacter(
  23849. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  23850. {
  23851. front: {
  23852. height: math.unit(7, "feet"),
  23853. weight: math.unit(425, "lb"),
  23854. name: "Front",
  23855. image: {
  23856. source: "./media/characters/hind/front.svg",
  23857. extra: 2091 / 1860,
  23858. bottom: 129 / 2220
  23859. }
  23860. },
  23861. back: {
  23862. height: math.unit(7, "feet"),
  23863. weight: math.unit(425, "lb"),
  23864. name: "Back",
  23865. image: {
  23866. source: "./media/characters/hind/back.svg",
  23867. extra: 2091 / 1860,
  23868. bottom: 24.6 / 2309
  23869. }
  23870. },
  23871. tail: {
  23872. height: math.unit(2.8, "feet"),
  23873. name: "Tail",
  23874. image: {
  23875. source: "./media/characters/hind/tail.svg"
  23876. }
  23877. },
  23878. head: {
  23879. height: math.unit(2.55, "feet"),
  23880. name: "Head",
  23881. image: {
  23882. source: "./media/characters/hind/head.svg"
  23883. }
  23884. },
  23885. },
  23886. [
  23887. {
  23888. name: "XS",
  23889. height: math.unit(0.7, "feet")
  23890. },
  23891. {
  23892. name: "Normal",
  23893. height: math.unit(7, "feet"),
  23894. default: true
  23895. },
  23896. {
  23897. name: "XL",
  23898. height: math.unit(70, "feet")
  23899. },
  23900. ]
  23901. ))
  23902. characterMakers.push(() => makeCharacter(
  23903. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  23904. {
  23905. front: {
  23906. height: math.unit(6, "feet"),
  23907. weight: math.unit(150, "lb"),
  23908. name: "Front",
  23909. image: {
  23910. source: "./media/characters/dylan-skaven/front.svg",
  23911. extra: 2318 / 2063,
  23912. bottom: 93.4 / 2410
  23913. }
  23914. },
  23915. },
  23916. [
  23917. {
  23918. name: "Nano",
  23919. height: math.unit(1, "mm")
  23920. },
  23921. {
  23922. name: "Micro",
  23923. height: math.unit(1, "cm")
  23924. },
  23925. {
  23926. name: "Normal",
  23927. height: math.unit(2.1, "meters"),
  23928. default: true
  23929. },
  23930. ]
  23931. ))
  23932. characterMakers.push(() => makeCharacter(
  23933. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  23934. {
  23935. front: {
  23936. height: math.unit(7 + 5 / 12, "feet"),
  23937. weight: math.unit(357, "lb"),
  23938. name: "Front",
  23939. image: {
  23940. source: "./media/characters/solex-draconov/front.svg",
  23941. extra: 1993 / 1865,
  23942. bottom: 117 / 2111
  23943. }
  23944. },
  23945. },
  23946. [
  23947. {
  23948. name: "Natural Height",
  23949. height: math.unit(7 + 5 / 12, "feet"),
  23950. default: true
  23951. },
  23952. {
  23953. name: "Macro",
  23954. height: math.unit(350, "feet")
  23955. },
  23956. {
  23957. name: "Macro+",
  23958. height: math.unit(1000, "feet")
  23959. },
  23960. {
  23961. name: "Megamacro",
  23962. height: math.unit(20, "km")
  23963. },
  23964. {
  23965. name: "Megamacro+",
  23966. height: math.unit(1000, "km")
  23967. },
  23968. {
  23969. name: "Gigamacro",
  23970. height: math.unit(2.5, "Gm")
  23971. },
  23972. {
  23973. name: "Teramacro",
  23974. height: math.unit(15, "Tm")
  23975. },
  23976. {
  23977. name: "Galactic",
  23978. height: math.unit(30, "Zm")
  23979. },
  23980. {
  23981. name: "Universal",
  23982. height: math.unit(21000, "Ym")
  23983. },
  23984. {
  23985. name: "Omniversal",
  23986. height: math.unit(9.861e50, "Ym")
  23987. },
  23988. {
  23989. name: "Existential",
  23990. height: math.unit(1e300, "meters")
  23991. },
  23992. ]
  23993. ))
  23994. characterMakers.push(() => makeCharacter(
  23995. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  23996. {
  23997. side: {
  23998. height: math.unit(25, "feet"),
  23999. weight: math.unit(90000, "lb"),
  24000. name: "Side",
  24001. image: {
  24002. source: "./media/characters/mandarax/side.svg",
  24003. extra: 614 / 332,
  24004. bottom: 55 / 630
  24005. }
  24006. },
  24007. head: {
  24008. height: math.unit(11.4, "feet"),
  24009. name: "Head",
  24010. image: {
  24011. source: "./media/characters/mandarax/head.svg"
  24012. }
  24013. },
  24014. belly: {
  24015. height: math.unit(33, "feet"),
  24016. name: "Belly",
  24017. capacity: math.unit(500, "people"),
  24018. image: {
  24019. source: "./media/characters/mandarax/belly.svg"
  24020. }
  24021. },
  24022. dick: {
  24023. height: math.unit(8.46, "feet"),
  24024. name: "Dick",
  24025. image: {
  24026. source: "./media/characters/mandarax/dick.svg"
  24027. }
  24028. },
  24029. top: {
  24030. height: math.unit(28, "meters"),
  24031. name: "Top",
  24032. image: {
  24033. source: "./media/characters/mandarax/top.svg"
  24034. }
  24035. },
  24036. },
  24037. [
  24038. {
  24039. name: "Normal",
  24040. height: math.unit(25, "feet"),
  24041. default: true
  24042. },
  24043. ]
  24044. ))
  24045. characterMakers.push(() => makeCharacter(
  24046. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24047. {
  24048. front: {
  24049. height: math.unit(5, "feet"),
  24050. weight: math.unit(90, "lb"),
  24051. name: "Front",
  24052. image: {
  24053. source: "./media/characters/pixil/front.svg",
  24054. extra: 2000 / 1618,
  24055. bottom: 12.3 / 2011
  24056. }
  24057. },
  24058. },
  24059. [
  24060. {
  24061. name: "Normal",
  24062. height: math.unit(5, "feet"),
  24063. default: true
  24064. },
  24065. {
  24066. name: "Megamacro",
  24067. height: math.unit(10, "miles"),
  24068. },
  24069. ]
  24070. ))
  24071. characterMakers.push(() => makeCharacter(
  24072. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24073. {
  24074. front: {
  24075. height: math.unit(7 + 2 / 12, "feet"),
  24076. weight: math.unit(200, "lb"),
  24077. name: "Front",
  24078. image: {
  24079. source: "./media/characters/angel/front.svg",
  24080. extra: 1830 / 1737,
  24081. bottom: 22.6 / 1854,
  24082. }
  24083. },
  24084. },
  24085. [
  24086. {
  24087. name: "Normal",
  24088. height: math.unit(7 + 2 / 12, "feet"),
  24089. default: true
  24090. },
  24091. {
  24092. name: "Macro",
  24093. height: math.unit(1000, "feet")
  24094. },
  24095. {
  24096. name: "Megamacro",
  24097. height: math.unit(2, "miles")
  24098. },
  24099. {
  24100. name: "Gigamacro",
  24101. height: math.unit(20, "earths")
  24102. },
  24103. ]
  24104. ))
  24105. characterMakers.push(() => makeCharacter(
  24106. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24107. {
  24108. front: {
  24109. height: math.unit(5, "feet"),
  24110. weight: math.unit(180, "lb"),
  24111. name: "Front",
  24112. image: {
  24113. source: "./media/characters/mekana/front.svg",
  24114. extra: 1671 / 1605,
  24115. bottom: 3.5 / 1691
  24116. }
  24117. },
  24118. side: {
  24119. height: math.unit(5, "feet"),
  24120. weight: math.unit(180, "lb"),
  24121. name: "Side",
  24122. image: {
  24123. source: "./media/characters/mekana/side.svg",
  24124. extra: 1671 / 1605,
  24125. bottom: 3.5 / 1691
  24126. }
  24127. },
  24128. back: {
  24129. height: math.unit(5, "feet"),
  24130. weight: math.unit(180, "lb"),
  24131. name: "Back",
  24132. image: {
  24133. source: "./media/characters/mekana/back.svg",
  24134. extra: 1671 / 1605,
  24135. bottom: 3.5 / 1691
  24136. }
  24137. },
  24138. },
  24139. [
  24140. {
  24141. name: "Normal",
  24142. height: math.unit(5, "feet"),
  24143. default: true
  24144. },
  24145. ]
  24146. ))
  24147. characterMakers.push(() => makeCharacter(
  24148. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24149. {
  24150. front: {
  24151. height: math.unit(4 + 6 / 12, "feet"),
  24152. weight: math.unit(80, "lb"),
  24153. name: "Front",
  24154. image: {
  24155. source: "./media/characters/pixie/front.svg",
  24156. extra: 1924 / 1825,
  24157. bottom: 22.4 / 1946
  24158. }
  24159. },
  24160. },
  24161. [
  24162. {
  24163. name: "Normal",
  24164. height: math.unit(4 + 6 / 12, "feet"),
  24165. default: true
  24166. },
  24167. {
  24168. name: "Macro",
  24169. height: math.unit(40, "feet")
  24170. },
  24171. ]
  24172. ))
  24173. characterMakers.push(() => makeCharacter(
  24174. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24175. {
  24176. front: {
  24177. height: math.unit(2.1, "meters"),
  24178. weight: math.unit(200, "lb"),
  24179. name: "Front",
  24180. image: {
  24181. source: "./media/characters/the-lascivious/front.svg",
  24182. extra: 1 / 0.893,
  24183. bottom: 3.5 / 573.7
  24184. }
  24185. },
  24186. },
  24187. [
  24188. {
  24189. name: "Human Scale",
  24190. height: math.unit(2.1, "meters")
  24191. },
  24192. {
  24193. name: "Wolxi Scale",
  24194. height: math.unit(46.2, "m"),
  24195. default: true
  24196. },
  24197. {
  24198. name: "Boinker of Buildings",
  24199. height: math.unit(10, "km")
  24200. },
  24201. {
  24202. name: "Shagger of Skyscrapers",
  24203. height: math.unit(40, "km")
  24204. },
  24205. {
  24206. name: "Banger of Boroughs",
  24207. height: math.unit(4000, "km")
  24208. },
  24209. {
  24210. name: "Screwer of States",
  24211. height: math.unit(100000, "km")
  24212. },
  24213. {
  24214. name: "Pounder of Planets",
  24215. height: math.unit(2000000, "km")
  24216. },
  24217. ]
  24218. ))
  24219. characterMakers.push(() => makeCharacter(
  24220. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24221. {
  24222. front: {
  24223. height: math.unit(6, "feet"),
  24224. weight: math.unit(150, "lb"),
  24225. name: "Front",
  24226. image: {
  24227. source: "./media/characters/aj/front.svg",
  24228. extra: 2039 / 1562,
  24229. bottom: 40 / 2079
  24230. }
  24231. },
  24232. },
  24233. [
  24234. {
  24235. name: "Normal",
  24236. height: math.unit(11 + 6 / 12, "feet"),
  24237. default: true
  24238. },
  24239. {
  24240. name: "Megamacro",
  24241. height: math.unit(60, "megameters")
  24242. },
  24243. ]
  24244. ))
  24245. characterMakers.push(() => makeCharacter(
  24246. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24247. {
  24248. side: {
  24249. height: math.unit(31 + 8/12, "feet"),
  24250. weight: math.unit(75000, "kg"),
  24251. name: "Side",
  24252. image: {
  24253. source: "./media/characters/koros/side.svg",
  24254. extra: 1442/1297,
  24255. bottom: 122.7/1562
  24256. }
  24257. },
  24258. dicksKingsCrown: {
  24259. height: math.unit(6, "feet"),
  24260. name: "Dicks (King's Crown)",
  24261. image: {
  24262. source: "./media/characters/koros/dicks-kings-crown.svg"
  24263. }
  24264. },
  24265. dicksTailSet: {
  24266. height: math.unit(3, "feet"),
  24267. name: "Dicks (Tail Set)",
  24268. image: {
  24269. source: "./media/characters/koros/dicks-tail-set.svg"
  24270. }
  24271. },
  24272. dickCumming: {
  24273. height: math.unit(7.98, "feet"),
  24274. name: "Dick (Cumming)",
  24275. image: {
  24276. source: "./media/characters/koros/dick-cumming.svg"
  24277. }
  24278. },
  24279. dicksBack: {
  24280. height: math.unit(5.9, "feet"),
  24281. name: "Dicks (Back)",
  24282. image: {
  24283. source: "./media/characters/koros/dicks-back.svg"
  24284. }
  24285. },
  24286. dicksFront: {
  24287. height: math.unit(3.72, "feet"),
  24288. name: "Dicks (Front)",
  24289. image: {
  24290. source: "./media/characters/koros/dicks-front.svg"
  24291. }
  24292. },
  24293. dicksPeeking: {
  24294. height: math.unit(3.0, "feet"),
  24295. name: "Dicks (Peeking)",
  24296. image: {
  24297. source: "./media/characters/koros/dicks-peeking.svg"
  24298. }
  24299. },
  24300. eye: {
  24301. height: math.unit(1.7, "feet"),
  24302. name: "Eye",
  24303. image: {
  24304. source: "./media/characters/koros/eye.svg"
  24305. }
  24306. },
  24307. headFront: {
  24308. height: math.unit(11.69, "feet"),
  24309. name: "Head (Front)",
  24310. image: {
  24311. source: "./media/characters/koros/head-front.svg"
  24312. }
  24313. },
  24314. headSide: {
  24315. height: math.unit(14, "feet"),
  24316. name: "Head (Side)",
  24317. image: {
  24318. source: "./media/characters/koros/head-side.svg"
  24319. }
  24320. },
  24321. leg: {
  24322. height: math.unit(17, "feet"),
  24323. name: "Leg",
  24324. image: {
  24325. source: "./media/characters/koros/leg.svg"
  24326. }
  24327. },
  24328. mawSide: {
  24329. height: math.unit(12.8, "feet"),
  24330. name: "Maw (Side)",
  24331. image: {
  24332. source: "./media/characters/koros/maw-side.svg"
  24333. }
  24334. },
  24335. mawSpitting: {
  24336. height: math.unit(17, "feet"),
  24337. name: "Maw (Spitting)",
  24338. image: {
  24339. source: "./media/characters/koros/maw-spitting.svg"
  24340. }
  24341. },
  24342. slit: {
  24343. height: math.unit(2.8, "feet"),
  24344. name: "Slit",
  24345. image: {
  24346. source: "./media/characters/koros/slit.svg"
  24347. }
  24348. },
  24349. stomach: {
  24350. height: math.unit(6.8, "feet"),
  24351. capacity: math.unit(20, "people"),
  24352. name: "Stomach",
  24353. image: {
  24354. source: "./media/characters/koros/stomach.svg"
  24355. }
  24356. },
  24357. wingspanBottom: {
  24358. height: math.unit(114, "feet"),
  24359. name: "Wingspan (Bottom)",
  24360. image: {
  24361. source: "./media/characters/koros/wingspan-bottom.svg"
  24362. }
  24363. },
  24364. wingspanTop: {
  24365. height: math.unit(104, "feet"),
  24366. name: "Wingspan (Top)",
  24367. image: {
  24368. source: "./media/characters/koros/wingspan-top.svg"
  24369. }
  24370. },
  24371. },
  24372. [
  24373. {
  24374. name: "Normal",
  24375. height: math.unit(31 + 8/12, "feet"),
  24376. default: true
  24377. },
  24378. ]
  24379. ))
  24380. characterMakers.push(() => makeCharacter(
  24381. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24382. {
  24383. front: {
  24384. height: math.unit(18 + 5/12, "feet"),
  24385. weight: math.unit(3750, "kg"),
  24386. name: "Front",
  24387. image: {
  24388. source: "./media/characters/vexx/front.svg",
  24389. extra: 426/396,
  24390. bottom: 31.5/458
  24391. }
  24392. },
  24393. maw: {
  24394. height: math.unit(6, "feet"),
  24395. name: "Maw",
  24396. image: {
  24397. source: "./media/characters/vexx/maw.svg"
  24398. }
  24399. },
  24400. },
  24401. [
  24402. {
  24403. name: "Normal",
  24404. height: math.unit(18 + 5/12, "feet"),
  24405. default: true
  24406. },
  24407. ]
  24408. ))
  24409. characterMakers.push(() => makeCharacter(
  24410. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24411. {
  24412. front: {
  24413. height: math.unit(17 + 6/12, "feet"),
  24414. weight: math.unit(150, "lb"),
  24415. name: "Front",
  24416. image: {
  24417. source: "./media/characters/baadra/front.svg",
  24418. extra: 3137/2890,
  24419. bottom: 168.4/3305
  24420. }
  24421. },
  24422. back: {
  24423. height: math.unit(17 + 6/12, "feet"),
  24424. weight: math.unit(150, "lb"),
  24425. name: "Back",
  24426. image: {
  24427. source: "./media/characters/baadra/back.svg",
  24428. extra: 3142/2890,
  24429. bottom: 220/3371
  24430. }
  24431. },
  24432. head: {
  24433. height: math.unit(5.45, "feet"),
  24434. name: "Head",
  24435. image: {
  24436. source: "./media/characters/baadra/head.svg"
  24437. }
  24438. },
  24439. headAngry: {
  24440. height: math.unit(4.95, "feet"),
  24441. name: "Head (Angry)",
  24442. image: {
  24443. source: "./media/characters/baadra/head-angry.svg"
  24444. }
  24445. },
  24446. headOpen: {
  24447. height: math.unit(6, "feet"),
  24448. name: "Head (Open)",
  24449. image: {
  24450. source: "./media/characters/baadra/head-open.svg"
  24451. }
  24452. },
  24453. },
  24454. [
  24455. {
  24456. name: "Normal",
  24457. height: math.unit(17 + 6/12, "feet"),
  24458. default: true
  24459. },
  24460. ]
  24461. ))
  24462. characterMakers.push(() => makeCharacter(
  24463. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24464. {
  24465. front: {
  24466. height: math.unit(7 + 3/12, "feet"),
  24467. weight: math.unit(180, "lb"),
  24468. name: "Front",
  24469. image: {
  24470. source: "./media/characters/juri/front.svg",
  24471. extra: 1401/1237,
  24472. bottom: 18.5/1418
  24473. }
  24474. },
  24475. side: {
  24476. height: math.unit(7 + 3/12, "feet"),
  24477. weight: math.unit(180, "lb"),
  24478. name: "Side",
  24479. image: {
  24480. source: "./media/characters/juri/side.svg",
  24481. extra: 1424/1242,
  24482. bottom: 18.5/1447
  24483. }
  24484. },
  24485. sitting: {
  24486. height: math.unit(6, "feet"),
  24487. weight: math.unit(180, "lb"),
  24488. name: "Sitting",
  24489. image: {
  24490. source: "./media/characters/juri/sitting.svg",
  24491. extra: 1270/1143,
  24492. bottom: 100/1343
  24493. }
  24494. },
  24495. back: {
  24496. height: math.unit(7 + 3/12, "feet"),
  24497. weight: math.unit(180, "lb"),
  24498. name: "Back",
  24499. image: {
  24500. source: "./media/characters/juri/back.svg",
  24501. extra: 1377/1240,
  24502. bottom: 23.7/1405
  24503. }
  24504. },
  24505. maw: {
  24506. height: math.unit(2.8, "feet"),
  24507. name: "Maw",
  24508. image: {
  24509. source: "./media/characters/juri/maw.svg"
  24510. }
  24511. },
  24512. stomach: {
  24513. height: math.unit(0.89, "feet"),
  24514. capacity: math.unit(4, "liters"),
  24515. name: "Stomach",
  24516. image: {
  24517. source: "./media/characters/juri/stomach.svg"
  24518. }
  24519. },
  24520. },
  24521. [
  24522. {
  24523. name: "Normal",
  24524. height: math.unit(7 + 3/12, "feet"),
  24525. default: true
  24526. },
  24527. ]
  24528. ))
  24529. characterMakers.push(() => makeCharacter(
  24530. { name: "Maxene Sita", species: ["fox"], tags: ["anthro"] },
  24531. {
  24532. fox: {
  24533. height: math.unit(5 + 6/12, "feet"),
  24534. weight: math.unit(140, "lb"),
  24535. name: "Fox",
  24536. image: {
  24537. source: "./media/characters/maxene-sita/fox.svg",
  24538. extra: 146/138,
  24539. bottom: 2.1/148.19
  24540. }
  24541. },
  24542. kitsune: {
  24543. height: math.unit(10, "feet"),
  24544. weight: math.unit(800, "lb"),
  24545. name: "Kitsune",
  24546. image: {
  24547. source: "./media/characters/maxene-sita/kitsune.svg",
  24548. extra: 185/176,
  24549. bottom: 4.7/189.9
  24550. }
  24551. },
  24552. },
  24553. [
  24554. {
  24555. name: "Normal",
  24556. height: math.unit(5 + 6/12, "feet"),
  24557. default: true
  24558. },
  24559. ]
  24560. ))
  24561. characterMakers.push(() => makeCharacter(
  24562. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24563. {
  24564. front: {
  24565. height: math.unit(3 + 4/12, "feet"),
  24566. weight: math.unit(70, "lb"),
  24567. name: "Front",
  24568. image: {
  24569. source: "./media/characters/maia/front.svg",
  24570. extra: 227/219.5,
  24571. bottom: 40 / 267
  24572. }
  24573. },
  24574. back: {
  24575. height: math.unit(3 + 4/12, "feet"),
  24576. weight: math.unit(70, "lb"),
  24577. name: "Back",
  24578. image: {
  24579. source: "./media/characters/maia/back.svg",
  24580. extra: 237/225
  24581. }
  24582. },
  24583. },
  24584. [
  24585. {
  24586. name: "Normal",
  24587. height: math.unit(3 + 4/12, "feet"),
  24588. default: true
  24589. },
  24590. ]
  24591. ))
  24592. characterMakers.push(() => makeCharacter(
  24593. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24594. {
  24595. front: {
  24596. height: math.unit(5 + 10/12, "feet"),
  24597. weight: math.unit(197, "lb"),
  24598. name: "Front",
  24599. image: {
  24600. source: "./media/characters/jabaro/front.svg",
  24601. extra: 225/216,
  24602. bottom: 5.06/230
  24603. }
  24604. },
  24605. back: {
  24606. height: math.unit(5 + 10/12, "feet"),
  24607. weight: math.unit(197, "lb"),
  24608. name: "Back",
  24609. image: {
  24610. source: "./media/characters/jabaro/back.svg",
  24611. extra: 225/219,
  24612. bottom: 1.9/227
  24613. }
  24614. },
  24615. },
  24616. [
  24617. {
  24618. name: "Normal",
  24619. height: math.unit(5 + 10/12, "feet"),
  24620. default: true
  24621. },
  24622. ]
  24623. ))
  24624. characterMakers.push(() => makeCharacter(
  24625. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24626. {
  24627. front: {
  24628. height: math.unit(5 + 8/12, "feet"),
  24629. weight: math.unit(139, "lb"),
  24630. name: "Front",
  24631. image: {
  24632. source: "./media/characters/risa/front.svg",
  24633. extra: 270/260,
  24634. bottom: 11.2/282
  24635. }
  24636. },
  24637. back: {
  24638. height: math.unit(5 + 8/12, "feet"),
  24639. weight: math.unit(139, "lb"),
  24640. name: "Back",
  24641. image: {
  24642. source: "./media/characters/risa/back.svg",
  24643. extra: 264/255,
  24644. bottom: 4/268
  24645. }
  24646. },
  24647. },
  24648. [
  24649. {
  24650. name: "Normal",
  24651. height: math.unit(5 + 8/12, "feet"),
  24652. default: true
  24653. },
  24654. ]
  24655. ))
  24656. characterMakers.push(() => makeCharacter(
  24657. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  24658. {
  24659. front: {
  24660. height: math.unit(2 + 11/12, "feet"),
  24661. weight: math.unit(30, "lb"),
  24662. name: "Front",
  24663. image: {
  24664. source: "./media/characters/weatley/front.svg",
  24665. bottom: 10.7/414,
  24666. extra: 403.5/362
  24667. }
  24668. },
  24669. back: {
  24670. height: math.unit(2 + 11/12, "feet"),
  24671. weight: math.unit(30, "lb"),
  24672. name: "Back",
  24673. image: {
  24674. source: "./media/characters/weatley/back.svg",
  24675. bottom: 10.7/414,
  24676. extra: 403.5/362
  24677. }
  24678. },
  24679. },
  24680. [
  24681. {
  24682. name: "Normal",
  24683. height: math.unit(2 + 11/12, "feet"),
  24684. default: true
  24685. },
  24686. ]
  24687. ))
  24688. characterMakers.push(() => makeCharacter(
  24689. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  24690. {
  24691. front: {
  24692. height: math.unit(5 + 2/12, "feet"),
  24693. weight: math.unit(50, "kg"),
  24694. name: "Front",
  24695. image: {
  24696. source: "./media/characters/mercury-crescent/front.svg",
  24697. extra: 1088/1033,
  24698. bottom: 18.9/1109
  24699. }
  24700. },
  24701. },
  24702. [
  24703. {
  24704. name: "Normal",
  24705. height: math.unit(5 + 2/12, "feet"),
  24706. default: true
  24707. },
  24708. ]
  24709. ))
  24710. characterMakers.push(() => makeCharacter(
  24711. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  24712. {
  24713. front: {
  24714. height: math.unit(2, "feet"),
  24715. weight: math.unit(15, "kg"),
  24716. name: "Front",
  24717. image: {
  24718. source: "./media/characters/diamond-jones/front.svg",
  24719. bottom: 16/568
  24720. }
  24721. },
  24722. },
  24723. [
  24724. {
  24725. name: "Normal",
  24726. height: math.unit(2, "feet"),
  24727. default: true
  24728. },
  24729. ]
  24730. ))
  24731. characterMakers.push(() => makeCharacter(
  24732. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  24733. {
  24734. front: {
  24735. height: math.unit(3, "feet"),
  24736. weight: math.unit(30, "kg"),
  24737. name: "Front",
  24738. image: {
  24739. source: "./media/characters/sweet-bit/front.svg",
  24740. extra: 675/567,
  24741. bottom: 27.7/703
  24742. }
  24743. },
  24744. },
  24745. [
  24746. {
  24747. name: "Normal",
  24748. height: math.unit(3, "feet"),
  24749. default: true
  24750. },
  24751. ]
  24752. ))
  24753. characterMakers.push(() => makeCharacter(
  24754. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  24755. {
  24756. side: {
  24757. height: math.unit(9.178, "feet"),
  24758. weight: math.unit(500, "lb"),
  24759. name: "Side",
  24760. image: {
  24761. source: "./media/characters/umbrazen/side.svg",
  24762. extra: 1730/1473,
  24763. bottom: 34.6/1765
  24764. }
  24765. },
  24766. },
  24767. [
  24768. {
  24769. name: "Normal",
  24770. height: math.unit(9.178, "feet"),
  24771. default: true
  24772. },
  24773. ]
  24774. ))
  24775. characterMakers.push(() => makeCharacter(
  24776. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  24777. {
  24778. front: {
  24779. height: math.unit(10, "feet"),
  24780. weight: math.unit(750, "lb"),
  24781. name: "Front",
  24782. image: {
  24783. source: "./media/characters/arlist/front.svg",
  24784. extra: 961/778,
  24785. bottom: 6.2/986
  24786. }
  24787. },
  24788. },
  24789. [
  24790. {
  24791. name: "Normal",
  24792. height: math.unit(10, "feet"),
  24793. default: true
  24794. },
  24795. ]
  24796. ))
  24797. characterMakers.push(() => makeCharacter(
  24798. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  24799. {
  24800. front: {
  24801. height: math.unit(5 + 1/12, "feet"),
  24802. weight: math.unit(110, "lb"),
  24803. name: "Front",
  24804. image: {
  24805. source: "./media/characters/aradel/front.svg",
  24806. extra: 324/303,
  24807. bottom: 3.6/329.4
  24808. }
  24809. },
  24810. },
  24811. [
  24812. {
  24813. name: "Normal",
  24814. height: math.unit(5 + 1/12, "feet"),
  24815. default: true
  24816. },
  24817. ]
  24818. ))
  24819. characterMakers.push(() => makeCharacter(
  24820. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  24821. {
  24822. front: {
  24823. height: math.unit(3 + 8/12, "feet"),
  24824. weight: math.unit(50, "lb"),
  24825. name: "Front",
  24826. image: {
  24827. source: "./media/characters/serryn/front.svg",
  24828. extra: 1792/1656,
  24829. bottom: 43.5/1840
  24830. }
  24831. },
  24832. },
  24833. [
  24834. {
  24835. name: "Normal",
  24836. height: math.unit(3 + 8/12, "feet"),
  24837. default: true
  24838. },
  24839. ]
  24840. ))
  24841. characterMakers.push(() => makeCharacter(
  24842. { name: "Xavier Thyme" },
  24843. {
  24844. front: {
  24845. height: math.unit(7 + 10/12, "feet"),
  24846. weight: math.unit(255, "lb"),
  24847. name: "Front",
  24848. image: {
  24849. source: "./media/characters/xavier-thyme/front.svg",
  24850. extra: 3733/3642,
  24851. bottom: 131/3869
  24852. }
  24853. },
  24854. frontRaven: {
  24855. height: math.unit(7 + 10/12, "feet"),
  24856. weight: math.unit(255, "lb"),
  24857. name: "Front (Raven)",
  24858. image: {
  24859. source: "./media/characters/xavier-thyme/front-raven.svg",
  24860. extra: 4385/3642,
  24861. bottom: 131/4517
  24862. }
  24863. },
  24864. },
  24865. [
  24866. {
  24867. name: "Normal",
  24868. height: math.unit(7 + 10/12, "feet"),
  24869. default: true
  24870. },
  24871. ]
  24872. ))
  24873. characterMakers.push(() => makeCharacter(
  24874. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  24875. {
  24876. front: {
  24877. height: math.unit(1.6, "m"),
  24878. weight: math.unit(50, "kg"),
  24879. name: "Front",
  24880. image: {
  24881. source: "./media/characters/kiki/front.svg",
  24882. extra: 4682/3610,
  24883. bottom: 115/4777
  24884. }
  24885. },
  24886. },
  24887. [
  24888. {
  24889. name: "Normal",
  24890. height: math.unit(1.6, "meters"),
  24891. default: true
  24892. },
  24893. ]
  24894. ))
  24895. characterMakers.push(() => makeCharacter(
  24896. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  24897. {
  24898. front: {
  24899. height: math.unit(50, "m"),
  24900. weight: math.unit(500, "tonnes"),
  24901. name: "Front",
  24902. image: {
  24903. source: "./media/characters/ryoko/front.svg",
  24904. extra: 4632/3926,
  24905. bottom: 193/4823
  24906. }
  24907. },
  24908. },
  24909. [
  24910. {
  24911. name: "Normal",
  24912. height: math.unit(50, "meters"),
  24913. default: true
  24914. },
  24915. ]
  24916. ))
  24917. characterMakers.push(() => makeCharacter(
  24918. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  24919. {
  24920. front: {
  24921. height: math.unit(30, "m"),
  24922. weight: math.unit(22, "tonnes"),
  24923. name: "Front",
  24924. image: {
  24925. source: "./media/characters/elio/front.svg",
  24926. extra: 4582/3720,
  24927. bottom: 236/4828
  24928. }
  24929. },
  24930. },
  24931. [
  24932. {
  24933. name: "Normal",
  24934. height: math.unit(30, "meters"),
  24935. default: true
  24936. },
  24937. ]
  24938. ))
  24939. characterMakers.push(() => makeCharacter(
  24940. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  24941. {
  24942. front: {
  24943. height: math.unit(6 + 3/12, "feet"),
  24944. weight: math.unit(120, "lb"),
  24945. name: "Front",
  24946. image: {
  24947. source: "./media/characters/azura/front.svg",
  24948. extra: 1149/1135,
  24949. bottom: 45/1194
  24950. }
  24951. },
  24952. frontClothed: {
  24953. height: math.unit(6 + 3/12, "feet"),
  24954. weight: math.unit(120, "lb"),
  24955. name: "Front (Clothed)",
  24956. image: {
  24957. source: "./media/characters/azura/front-clothed.svg",
  24958. extra: 1149/1135,
  24959. bottom: 45/1194
  24960. }
  24961. },
  24962. },
  24963. [
  24964. {
  24965. name: "Normal",
  24966. height: math.unit(6 + 3/12, "feet"),
  24967. default: true
  24968. },
  24969. {
  24970. name: "Macro",
  24971. height: math.unit(20 + 6/12, "feet")
  24972. },
  24973. {
  24974. name: "Megamacro",
  24975. height: math.unit(12, "miles")
  24976. },
  24977. {
  24978. name: "Gigamacro",
  24979. height: math.unit(10000, "miles")
  24980. },
  24981. {
  24982. name: "Teramacro",
  24983. height: math.unit(900000, "miles")
  24984. },
  24985. ]
  24986. ))
  24987. characterMakers.push(() => makeCharacter(
  24988. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  24989. {
  24990. front: {
  24991. height: math.unit(12, "feet"),
  24992. weight: math.unit(1, "ton"),
  24993. capacity: math.unit(660000, "gallons"),
  24994. name: "Front",
  24995. image: {
  24996. source: "./media/characters/zeus/front.svg",
  24997. extra: 5005/4717,
  24998. bottom: 363/5388
  24999. }
  25000. },
  25001. },
  25002. [
  25003. {
  25004. name: "Normal",
  25005. height: math.unit(12, "feet")
  25006. },
  25007. {
  25008. name: "Preferred Size",
  25009. height: math.unit(0.5, "miles"),
  25010. default: true
  25011. },
  25012. {
  25013. name: "Giga Horse",
  25014. height: math.unit(300, "miles")
  25015. },
  25016. {
  25017. name: "Riding Planets",
  25018. height: math.unit(30, "megameters")
  25019. },
  25020. {
  25021. name: "Cosmic Giant",
  25022. height: math.unit(3, "zettameters")
  25023. },
  25024. {
  25025. name: "Breeding God",
  25026. height: math.unit(9.92e22, "yottameters")
  25027. },
  25028. ]
  25029. ))
  25030. characterMakers.push(() => makeCharacter(
  25031. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25032. {
  25033. side: {
  25034. height: math.unit(9, "feet"),
  25035. weight: math.unit(1500, "kg"),
  25036. name: "Side",
  25037. image: {
  25038. source: "./media/characters/fang/side.svg",
  25039. extra: 924/866,
  25040. bottom: 47.5/972.3
  25041. }
  25042. },
  25043. },
  25044. [
  25045. {
  25046. name: "Normal",
  25047. height: math.unit(9, "feet"),
  25048. default: true
  25049. },
  25050. {
  25051. name: "Macro",
  25052. height: math.unit(75 + 6/12, "feet")
  25053. },
  25054. {
  25055. name: "Teramacro",
  25056. height: math.unit(50000, "miles")
  25057. },
  25058. ]
  25059. ))
  25060. characterMakers.push(() => makeCharacter(
  25061. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25062. {
  25063. front: {
  25064. height: math.unit(10, "feet"),
  25065. weight: math.unit(2, "tons"),
  25066. name: "Front",
  25067. image: {
  25068. source: "./media/characters/rekhit/front.svg",
  25069. extra: 2796/2590,
  25070. bottom: 225/3022
  25071. }
  25072. },
  25073. },
  25074. [
  25075. {
  25076. name: "Normal",
  25077. height: math.unit(10, "feet"),
  25078. default: true
  25079. },
  25080. {
  25081. name: "Macro",
  25082. height: math.unit(500, "feet")
  25083. },
  25084. ]
  25085. ))
  25086. characterMakers.push(() => makeCharacter(
  25087. { name: "Dahlia Verrick" },
  25088. {
  25089. front: {
  25090. height: math.unit(7 + 6.451/12, "feet"),
  25091. weight: math.unit(310, "lb"),
  25092. name: "Front",
  25093. image: {
  25094. source: "./media/characters/dahlia-verrick/front.svg",
  25095. extra: 1488/1365,
  25096. bottom: 6.2/1495
  25097. }
  25098. },
  25099. back: {
  25100. height: math.unit(7 + 6.451/12, "feet"),
  25101. weight: math.unit(310, "lb"),
  25102. name: "Back",
  25103. image: {
  25104. source: "./media/characters/dahlia-verrick/back.svg",
  25105. extra: 1472/1351,
  25106. bottom: 5.28/1477
  25107. }
  25108. },
  25109. frontBusiness: {
  25110. height: math.unit(7 + 6.451/12, "feet"),
  25111. weight: math.unit(200, "lb"),
  25112. name: "Front (Business)",
  25113. image: {
  25114. source: "./media/characters/dahlia-verrick/front-business.svg",
  25115. extra: 1478/1381,
  25116. bottom: 5.5/1484
  25117. }
  25118. },
  25119. frontCasual: {
  25120. height: math.unit(7 + 6.451/12, "feet"),
  25121. weight: math.unit(200, "lb"),
  25122. name: "Front (Casual)",
  25123. image: {
  25124. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25125. extra: 1478/1381,
  25126. bottom: 5.5/1484
  25127. }
  25128. },
  25129. },
  25130. [
  25131. {
  25132. name: "Travel-Sized",
  25133. height: math.unit(7.45, "inches")
  25134. },
  25135. {
  25136. name: "Normal",
  25137. height: math.unit(7 + 6.451/12, "feet"),
  25138. default: true
  25139. },
  25140. {
  25141. name: "Hitting the Town",
  25142. height: math.unit(37 + 8/12, "feet")
  25143. },
  25144. {
  25145. name: "Stomp in the Suburbs",
  25146. height: math.unit(964 + 9.728/12, "feet")
  25147. },
  25148. {
  25149. name: "Sit on the City",
  25150. height: math.unit(61747 + 10.592/12, "feet")
  25151. },
  25152. {
  25153. name: "Glomp the Globe",
  25154. height: math.unit(252919327 + 4.832/12, "feet")
  25155. },
  25156. ]
  25157. ))
  25158. characterMakers.push(() => makeCharacter(
  25159. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25160. {
  25161. front: {
  25162. height: math.unit(6 + 4/12, "feet"),
  25163. weight: math.unit(320, "lb"),
  25164. name: "Front",
  25165. image: {
  25166. source: "./media/characters/balina-mahigan/front.svg",
  25167. extra: 447/428,
  25168. bottom: 18/466
  25169. }
  25170. },
  25171. back: {
  25172. height: math.unit(6 + 4/12, "feet"),
  25173. weight: math.unit(320, "lb"),
  25174. name: "Back",
  25175. image: {
  25176. source: "./media/characters/balina-mahigan/back.svg",
  25177. extra: 445/428,
  25178. bottom: 4.07/448
  25179. }
  25180. },
  25181. arm: {
  25182. height: math.unit(1.88, "feet"),
  25183. name: "Arm",
  25184. image: {
  25185. source: "./media/characters/balina-mahigan/arm.svg"
  25186. }
  25187. },
  25188. backPort: {
  25189. height: math.unit(0.685, "feet"),
  25190. name: "Back Port",
  25191. image: {
  25192. source: "./media/characters/balina-mahigan/back-port.svg"
  25193. }
  25194. },
  25195. hoofpaw: {
  25196. height: math.unit(1.41, "feet"),
  25197. name: "Hoofpaw",
  25198. image: {
  25199. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25200. }
  25201. },
  25202. leftHandBack: {
  25203. height: math.unit(0.938, "feet"),
  25204. name: "Left Hand (Back)",
  25205. image: {
  25206. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25207. }
  25208. },
  25209. leftHandFront: {
  25210. height: math.unit(0.938, "feet"),
  25211. name: "Left Hand (Front)",
  25212. image: {
  25213. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25214. }
  25215. },
  25216. rightHandBack: {
  25217. height: math.unit(0.95, "feet"),
  25218. name: "Right Hand (Back)",
  25219. image: {
  25220. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25221. }
  25222. },
  25223. rightHandFront: {
  25224. height: math.unit(0.95, "feet"),
  25225. name: "Right Hand (Front)",
  25226. image: {
  25227. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25228. }
  25229. },
  25230. },
  25231. [
  25232. {
  25233. name: "Normal",
  25234. height: math.unit(6 + 4/12, "feet"),
  25235. default: true
  25236. },
  25237. ]
  25238. ))
  25239. characterMakers.push(() => makeCharacter(
  25240. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25241. {
  25242. front: {
  25243. height: math.unit(6, "feet"),
  25244. weight: math.unit(320, "lb"),
  25245. name: "Front",
  25246. image: {
  25247. source: "./media/characters/balina-mejeri/front.svg",
  25248. extra: 517/488,
  25249. bottom: 44.2/561
  25250. }
  25251. },
  25252. },
  25253. [
  25254. {
  25255. name: "Normal",
  25256. height: math.unit(6 + 4/12, "feet")
  25257. },
  25258. {
  25259. name: "Business",
  25260. height: math.unit(155, "feet"),
  25261. default: true
  25262. },
  25263. ]
  25264. ))
  25265. characterMakers.push(() => makeCharacter(
  25266. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25267. {
  25268. kneeling: {
  25269. height: math.unit(6 + 4/12, "feet"),
  25270. weight: math.unit(300*20, "lb"),
  25271. name: "Kneeling",
  25272. image: {
  25273. source: "./media/characters/balbarian/kneeling.svg",
  25274. extra: 922/862,
  25275. bottom: 42.4/965
  25276. }
  25277. },
  25278. },
  25279. [
  25280. {
  25281. name: "Normal",
  25282. height: math.unit(6 + 4/12, "feet")
  25283. },
  25284. {
  25285. name: "Treasured",
  25286. height: math.unit(18 + 9/12, "feet"),
  25287. default: true
  25288. },
  25289. {
  25290. name: "Macro",
  25291. height: math.unit(900, "feet")
  25292. },
  25293. ]
  25294. ))
  25295. characterMakers.push(() => makeCharacter(
  25296. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25297. {
  25298. front: {
  25299. height: math.unit(6 + 4/12, "feet"),
  25300. weight: math.unit(325, "lb"),
  25301. name: "Front",
  25302. image: {
  25303. source: "./media/characters/balina-amarini/front.svg",
  25304. extra: 415/403,
  25305. bottom: 19/433.4
  25306. }
  25307. },
  25308. back: {
  25309. height: math.unit(6 + 4/12, "feet"),
  25310. weight: math.unit(325, "lb"),
  25311. name: "Back",
  25312. image: {
  25313. source: "./media/characters/balina-amarini/back.svg",
  25314. extra: 415/403,
  25315. bottom: 13.5/432
  25316. }
  25317. },
  25318. overdrive: {
  25319. height: math.unit(6 + 4/12, "feet"),
  25320. weight: math.unit(400, "lb"),
  25321. name: "Overdrive",
  25322. image: {
  25323. source: "./media/characters/balina-amarini/overdrive.svg",
  25324. extra: 269/259,
  25325. bottom: 12/282
  25326. }
  25327. },
  25328. },
  25329. [
  25330. {
  25331. name: "Boom",
  25332. height: math.unit(9 + 10/12, "feet"),
  25333. default: true
  25334. },
  25335. {
  25336. name: "Macro",
  25337. height: math.unit(280, "feet")
  25338. },
  25339. ]
  25340. ))
  25341. characterMakers.push(() => makeCharacter(
  25342. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25343. {
  25344. goddess: {
  25345. height: math.unit(600, "feet"),
  25346. weight: math.unit(2000000, "tons"),
  25347. name: "Goddess",
  25348. image: {
  25349. source: "./media/characters/lady-kubwa/goddess.svg",
  25350. extra: 1240.5/1223,
  25351. bottom: 22/1263
  25352. }
  25353. },
  25354. goddesser: {
  25355. height: math.unit(900, "feet"),
  25356. weight: math.unit(20000000, "lb"),
  25357. name: "Goddess-er",
  25358. image: {
  25359. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25360. extra: 899/888,
  25361. bottom: 12.6/912
  25362. }
  25363. },
  25364. },
  25365. [
  25366. {
  25367. name: "Macro",
  25368. height: math.unit(600, "feet"),
  25369. default: true
  25370. },
  25371. {
  25372. name: "Megamacro",
  25373. height: math.unit(250, "miles")
  25374. },
  25375. ]
  25376. ))
  25377. characterMakers.push(() => makeCharacter(
  25378. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25379. {
  25380. front: {
  25381. height: math.unit(7 + 7/12, "feet"),
  25382. weight: math.unit(250, "lb"),
  25383. name: "Front",
  25384. image: {
  25385. source: "./media/characters/tala-grovehorn/front.svg",
  25386. extra: 2636/2525,
  25387. bottom: 147/2781
  25388. }
  25389. },
  25390. back: {
  25391. height: math.unit(7 + 7/12, "feet"),
  25392. weight: math.unit(250, "lb"),
  25393. name: "Back",
  25394. image: {
  25395. source: "./media/characters/tala-grovehorn/back.svg",
  25396. extra: 2635/2539,
  25397. bottom: 100/2732.8
  25398. }
  25399. },
  25400. mouth: {
  25401. height: math.unit(1.15, "feet"),
  25402. name: "Mouth",
  25403. image: {
  25404. source: "./media/characters/tala-grovehorn/mouth.svg"
  25405. }
  25406. },
  25407. dick: {
  25408. height: math.unit(2.36, "feet"),
  25409. name: "Dick",
  25410. image: {
  25411. source: "./media/characters/tala-grovehorn/dick.svg"
  25412. }
  25413. },
  25414. slit: {
  25415. height: math.unit(0.61, "feet"),
  25416. name: "Slit",
  25417. image: {
  25418. source: "./media/characters/tala-grovehorn/slit.svg"
  25419. }
  25420. },
  25421. },
  25422. [
  25423. ]
  25424. ))
  25425. characterMakers.push(() => makeCharacter(
  25426. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25427. {
  25428. front: {
  25429. height: math.unit(7 + 7/12, "feet"),
  25430. weight: math.unit(225, "lb"),
  25431. name: "Front",
  25432. image: {
  25433. source: "./media/characters/epona/front.svg",
  25434. extra: 2445/2290,
  25435. bottom: 251/2696
  25436. }
  25437. },
  25438. back: {
  25439. height: math.unit(7 + 7/12, "feet"),
  25440. weight: math.unit(225, "lb"),
  25441. name: "Back",
  25442. image: {
  25443. source: "./media/characters/epona/back.svg",
  25444. extra: 2546/2408,
  25445. bottom: 44/2589
  25446. }
  25447. },
  25448. genitals: {
  25449. height: math.unit(1.5, "feet"),
  25450. name: "Genitals",
  25451. image: {
  25452. source: "./media/characters/epona/genitals.svg"
  25453. }
  25454. },
  25455. },
  25456. [
  25457. {
  25458. name: "Normal",
  25459. height: math.unit(7 + 7/12, "feet")
  25460. },
  25461. ]
  25462. ))
  25463. characterMakers.push(() => makeCharacter(
  25464. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25465. {
  25466. front: {
  25467. height: math.unit(7, "feet"),
  25468. weight: math.unit(518, "lb"),
  25469. name: "Front",
  25470. image: {
  25471. source: "./media/characters/avia-bloodbourn/front.svg",
  25472. extra: 1466/1350,
  25473. bottom: 65/1527
  25474. }
  25475. },
  25476. },
  25477. [
  25478. ]
  25479. ))
  25480. characterMakers.push(() => makeCharacter(
  25481. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25482. {
  25483. front: {
  25484. height: math.unit(9.35, "feet"),
  25485. weight: math.unit(600, "lb"),
  25486. name: "Front",
  25487. image: {
  25488. source: "./media/characters/amera/front.svg",
  25489. extra: 891/818,
  25490. bottom: 30/922.7
  25491. }
  25492. },
  25493. back: {
  25494. height: math.unit(9.35, "feet"),
  25495. weight: math.unit(600, "lb"),
  25496. name: "Back",
  25497. image: {
  25498. source: "./media/characters/amera/back.svg",
  25499. extra: 876/824,
  25500. bottom: 6.8/884
  25501. }
  25502. },
  25503. dick: {
  25504. height: math.unit(2.14, "feet"),
  25505. name: "Dick",
  25506. image: {
  25507. source: "./media/characters/amera/dick.svg"
  25508. }
  25509. },
  25510. },
  25511. [
  25512. {
  25513. name: "Normal",
  25514. height: math.unit(9.35, "feet"),
  25515. default: true
  25516. },
  25517. ]
  25518. ))
  25519. characterMakers.push(() => makeCharacter(
  25520. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25521. {
  25522. kneeling: {
  25523. height: math.unit(3 + 4/12, "feet"),
  25524. weight: math.unit(90, "lb"),
  25525. name: "Kneeling",
  25526. image: {
  25527. source: "./media/characters/rosewen/kneeling.svg",
  25528. extra: 1835/1571,
  25529. bottom: 27.7/1862
  25530. }
  25531. },
  25532. },
  25533. [
  25534. {
  25535. name: "Normal",
  25536. height: math.unit(3 + 4/12, "feet"),
  25537. default: true
  25538. },
  25539. ]
  25540. ))
  25541. characterMakers.push(() => makeCharacter(
  25542. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25543. {
  25544. front: {
  25545. height: math.unit(5 + 10/12, "feet"),
  25546. weight: math.unit(200, "lb"),
  25547. name: "Front",
  25548. image: {
  25549. source: "./media/characters/sabah/front.svg",
  25550. extra: 849/763,
  25551. bottom: 33.9/881
  25552. }
  25553. },
  25554. },
  25555. [
  25556. {
  25557. name: "Normal",
  25558. height: math.unit(5 + 10/12, "feet"),
  25559. default: true
  25560. },
  25561. ]
  25562. ))
  25563. characterMakers.push(() => makeCharacter(
  25564. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25565. {
  25566. front: {
  25567. height: math.unit(3 + 5/12, "feet"),
  25568. weight: math.unit(40, "kg"),
  25569. name: "Front",
  25570. image: {
  25571. source: "./media/characters/purple-flame/front.svg",
  25572. extra: 1577/1412,
  25573. bottom: 97/1694
  25574. }
  25575. },
  25576. frontDressed: {
  25577. height: math.unit(3 + 5/12, "feet"),
  25578. weight: math.unit(40, "kg"),
  25579. name: "Front (Dressed)",
  25580. image: {
  25581. source: "./media/characters/purple-flame/front-dressed.svg",
  25582. extra: 1577/1412,
  25583. bottom: 97/1694
  25584. }
  25585. },
  25586. headphones: {
  25587. height: math.unit(0.85, "feet"),
  25588. name: "Headphones",
  25589. image: {
  25590. source: "./media/characters/purple-flame/headphones.svg"
  25591. }
  25592. },
  25593. },
  25594. [
  25595. {
  25596. name: "Really Small",
  25597. height: math.unit(5, "cm")
  25598. },
  25599. {
  25600. name: "Micro",
  25601. height: math.unit(1 + 5/12, "feet")
  25602. },
  25603. {
  25604. name: "Normal",
  25605. height: math.unit(3 + 5/12, "feet"),
  25606. default: true
  25607. },
  25608. {
  25609. name: "Minimacro",
  25610. height: math.unit(125, "feet")
  25611. },
  25612. {
  25613. name: "Macro",
  25614. height: math.unit(0.5, "miles")
  25615. },
  25616. {
  25617. name: "Megamacro",
  25618. height: math.unit(50, "miles")
  25619. },
  25620. {
  25621. name: "Gigantic",
  25622. height: math.unit(750, "miles")
  25623. },
  25624. {
  25625. name: "Planetary",
  25626. height: math.unit(15000, "miles")
  25627. },
  25628. ]
  25629. ))
  25630. characterMakers.push(() => makeCharacter(
  25631. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  25632. {
  25633. front: {
  25634. height: math.unit(14, "feet"),
  25635. weight: math.unit(959, "lb"),
  25636. name: "Front",
  25637. image: {
  25638. source: "./media/characters/arsenal/front.svg",
  25639. extra: 2357/2157,
  25640. bottom: 93/2458
  25641. }
  25642. },
  25643. },
  25644. [
  25645. {
  25646. name: "Normal",
  25647. height: math.unit(14, "feet"),
  25648. default: true
  25649. },
  25650. ]
  25651. ))
  25652. characterMakers.push(() => makeCharacter(
  25653. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  25654. {
  25655. front: {
  25656. height: math.unit(6, "feet"),
  25657. weight: math.unit(150, "lb"),
  25658. name: "Front",
  25659. image: {
  25660. source: "./media/characters/adira/front.svg",
  25661. extra: 1078/1029,
  25662. bottom: 87/1166
  25663. }
  25664. },
  25665. },
  25666. [
  25667. {
  25668. name: "Micro",
  25669. height: math.unit(4, "inches"),
  25670. default: true
  25671. },
  25672. {
  25673. name: "Macro",
  25674. height: math.unit(50, "feet")
  25675. },
  25676. ]
  25677. ))
  25678. characterMakers.push(() => makeCharacter(
  25679. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  25680. {
  25681. front: {
  25682. height: math.unit(16, "feet"),
  25683. weight: math.unit(1000, "lb"),
  25684. name: "Front",
  25685. image: {
  25686. source: "./media/characters/grim/front.svg",
  25687. extra: 622/614,
  25688. bottom: 18.1/642
  25689. }
  25690. },
  25691. back: {
  25692. height: math.unit(16, "feet"),
  25693. weight: math.unit(1000, "lb"),
  25694. name: "Back",
  25695. image: {
  25696. source: "./media/characters/grim/back.svg",
  25697. extra: 610.6/602,
  25698. bottom: 40.8/652
  25699. }
  25700. },
  25701. hunched: {
  25702. height: math.unit(9.75, "feet"),
  25703. weight: math.unit(1000, "lb"),
  25704. name: "Hunched",
  25705. image: {
  25706. source: "./media/characters/grim/hunched.svg",
  25707. extra: 304/297,
  25708. bottom: 35.4/394
  25709. }
  25710. },
  25711. },
  25712. [
  25713. {
  25714. name: "Normal",
  25715. height: math.unit(16, "feet"),
  25716. default: true
  25717. },
  25718. ]
  25719. ))
  25720. characterMakers.push(() => makeCharacter(
  25721. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  25722. {
  25723. front: {
  25724. height: math.unit(2.3, "meters"),
  25725. weight: math.unit(300, "lb"),
  25726. name: "Front",
  25727. image: {
  25728. source: "./media/characters/sinja/front-sfw.svg",
  25729. extra: 1393/1294,
  25730. bottom: 70/1463
  25731. }
  25732. },
  25733. frontNsfw: {
  25734. height: math.unit(2.3, "meters"),
  25735. weight: math.unit(300, "lb"),
  25736. name: "Front (NSFW)",
  25737. image: {
  25738. source: "./media/characters/sinja/front-nsfw.svg",
  25739. extra: 1393/1294,
  25740. bottom: 70/1463
  25741. }
  25742. },
  25743. back: {
  25744. height: math.unit(2.3, "meters"),
  25745. weight: math.unit(300, "lb"),
  25746. name: "Back",
  25747. image: {
  25748. source: "./media/characters/sinja/back.svg",
  25749. extra: 1393/1294,
  25750. bottom: 70/1463
  25751. }
  25752. },
  25753. head: {
  25754. height: math.unit(1.771, "feet"),
  25755. name: "Head",
  25756. image: {
  25757. source: "./media/characters/sinja/head.svg"
  25758. }
  25759. },
  25760. slit: {
  25761. height: math.unit(0.8, "feet"),
  25762. name: "Slit",
  25763. image: {
  25764. source: "./media/characters/sinja/slit.svg"
  25765. }
  25766. },
  25767. },
  25768. [
  25769. {
  25770. name: "Normal",
  25771. height: math.unit(2.3, "meters")
  25772. },
  25773. {
  25774. name: "Macro",
  25775. height: math.unit(91, "meters"),
  25776. default: true
  25777. },
  25778. {
  25779. name: "Megamacro",
  25780. height: math.unit(91440, "meters")
  25781. },
  25782. {
  25783. name: "Gigamacro",
  25784. height: math.unit(60960000, "meters")
  25785. },
  25786. {
  25787. name: "Teramacro",
  25788. height: math.unit(9144000000, "meters")
  25789. },
  25790. ]
  25791. ))
  25792. characterMakers.push(() => makeCharacter(
  25793. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  25794. {
  25795. front: {
  25796. height: math.unit(1.7, "meters"),
  25797. weight: math.unit(130, "lb"),
  25798. name: "Front",
  25799. image: {
  25800. source: "./media/characters/kyu/front.svg",
  25801. extra: 415/395,
  25802. bottom: 5/420
  25803. }
  25804. },
  25805. head: {
  25806. height: math.unit(1.75, "feet"),
  25807. name: "Head",
  25808. image: {
  25809. source: "./media/characters/kyu/head.svg"
  25810. }
  25811. },
  25812. foot: {
  25813. height: math.unit(0.81, "feet"),
  25814. name: "Foot",
  25815. image: {
  25816. source: "./media/characters/kyu/foot.svg"
  25817. }
  25818. },
  25819. },
  25820. [
  25821. {
  25822. name: "Normal",
  25823. height: math.unit(1.7, "meters")
  25824. },
  25825. {
  25826. name: "Macro",
  25827. height: math.unit(131, "feet"),
  25828. default: true
  25829. },
  25830. {
  25831. name: "Megamacro",
  25832. height: math.unit(91440, "meters")
  25833. },
  25834. {
  25835. name: "Gigamacro",
  25836. height: math.unit(60960000, "meters")
  25837. },
  25838. {
  25839. name: "Teramacro",
  25840. height: math.unit(9144000000, "meters")
  25841. },
  25842. ]
  25843. ))
  25844. characterMakers.push(() => makeCharacter(
  25845. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  25846. {
  25847. front: {
  25848. height: math.unit(7 + 1/12, "feet"),
  25849. weight: math.unit(250, "lb"),
  25850. name: "Front",
  25851. image: {
  25852. source: "./media/characters/joey/front.svg",
  25853. extra: 1791/1537,
  25854. bottom: 28/1816
  25855. }
  25856. },
  25857. },
  25858. [
  25859. {
  25860. name: "Micro",
  25861. height: math.unit(3, "inches")
  25862. },
  25863. {
  25864. name: "Normal",
  25865. height: math.unit(7 + 1/12, "feet"),
  25866. default: true
  25867. },
  25868. ]
  25869. ))
  25870. characterMakers.push(() => makeCharacter(
  25871. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  25872. {
  25873. front: {
  25874. height: math.unit(165, "cm"),
  25875. weight: math.unit(140, "lb"),
  25876. name: "Front",
  25877. image: {
  25878. source: "./media/characters/sam-evans/front.svg",
  25879. extra: 3417/3230,
  25880. bottom: 41.3/3417
  25881. }
  25882. },
  25883. frontSixTails: {
  25884. height: math.unit(165, "cm"),
  25885. weight: math.unit(140, "lb"),
  25886. name: "Front-six-tails",
  25887. image: {
  25888. source: "./media/characters/sam-evans/front-six-tails.svg",
  25889. extra: 3417/3230,
  25890. bottom: 41.3/3417
  25891. }
  25892. },
  25893. back: {
  25894. height: math.unit(165, "cm"),
  25895. weight: math.unit(140, "lb"),
  25896. name: "Back",
  25897. image: {
  25898. source: "./media/characters/sam-evans/back.svg",
  25899. extra: 3227/3032,
  25900. bottom: 6.8/3234
  25901. }
  25902. },
  25903. face: {
  25904. height: math.unit(0.68, "feet"),
  25905. name: "Face",
  25906. image: {
  25907. source: "./media/characters/sam-evans/face.svg"
  25908. }
  25909. },
  25910. },
  25911. [
  25912. {
  25913. name: "Normal",
  25914. height: math.unit(165, "cm"),
  25915. default: true
  25916. },
  25917. {
  25918. name: "Macro",
  25919. height: math.unit(100, "meters")
  25920. },
  25921. {
  25922. name: "Macro+",
  25923. height: math.unit(800, "meters")
  25924. },
  25925. {
  25926. name: "Macro++",
  25927. height: math.unit(3, "km")
  25928. },
  25929. {
  25930. name: "Macro+++",
  25931. height: math.unit(30, "km")
  25932. },
  25933. ]
  25934. ))
  25935. characterMakers.push(() => makeCharacter(
  25936. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  25937. {
  25938. front: {
  25939. height: math.unit(10, "feet"),
  25940. weight: math.unit(750, "lb"),
  25941. name: "Front",
  25942. image: {
  25943. source: "./media/characters/juliet-a/front.svg",
  25944. extra: 1766/1720,
  25945. bottom: 43/1809
  25946. }
  25947. },
  25948. back: {
  25949. height: math.unit(10, "feet"),
  25950. weight: math.unit(750, "lb"),
  25951. name: "Back",
  25952. image: {
  25953. source: "./media/characters/juliet-a/back.svg",
  25954. extra: 1781/1734,
  25955. bottom: 35/1810,
  25956. }
  25957. },
  25958. },
  25959. [
  25960. {
  25961. name: "Normal",
  25962. height: math.unit(10, "feet"),
  25963. default: true
  25964. },
  25965. {
  25966. name: "Dragon Form",
  25967. height: math.unit(250, "feet")
  25968. },
  25969. {
  25970. name: "Macro",
  25971. height: math.unit(1000, "feet")
  25972. },
  25973. {
  25974. name: "Megamacro",
  25975. height: math.unit(10000, "feet")
  25976. }
  25977. ]
  25978. ))
  25979. characterMakers.push(() => makeCharacter(
  25980. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  25981. {
  25982. regular: {
  25983. height: math.unit(7 + 3/12, "feet"),
  25984. weight: math.unit(260, "lb"),
  25985. name: "Regular",
  25986. image: {
  25987. source: "./media/characters/wild/regular.svg",
  25988. extra: 97.45/92,
  25989. bottom: 6.8/104.3
  25990. }
  25991. },
  25992. biggums: {
  25993. height: math.unit(8 + 6 /12, "feet"),
  25994. weight: math.unit(425, "lb"),
  25995. name: "Biggums",
  25996. image: {
  25997. source: "./media/characters/wild/biggums.svg",
  25998. extra: 97.45/92,
  25999. bottom: 7.5/132.34
  26000. }
  26001. },
  26002. mawRegular: {
  26003. height: math.unit(1.24, "feet"),
  26004. name: "Maw (Regular)",
  26005. image: {
  26006. source: "./media/characters/wild/maw.svg"
  26007. }
  26008. },
  26009. mawBiggums: {
  26010. height: math.unit(1.47, "feet"),
  26011. name: "Maw (Biggums)",
  26012. image: {
  26013. source: "./media/characters/wild/maw.svg"
  26014. }
  26015. },
  26016. },
  26017. [
  26018. {
  26019. name: "Normal",
  26020. height: math.unit(7 + 3/12, "feet"),
  26021. default: true
  26022. },
  26023. ]
  26024. ))
  26025. characterMakers.push(() => makeCharacter(
  26026. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26027. {
  26028. front: {
  26029. height: math.unit(2.5, "meters"),
  26030. weight: math.unit(200, "kg"),
  26031. name: "Front",
  26032. image: {
  26033. source: "./media/characters/vidar/front.svg",
  26034. extra: 2994/2795,
  26035. bottom: 56/3061
  26036. }
  26037. },
  26038. back: {
  26039. height: math.unit(2.5, "meters"),
  26040. weight: math.unit(200, "kg"),
  26041. name: "Back",
  26042. image: {
  26043. source: "./media/characters/vidar/back.svg",
  26044. extra: 3131/2928,
  26045. bottom: 13.5/3141.5
  26046. }
  26047. },
  26048. feral: {
  26049. height: math.unit(2.5, "meters"),
  26050. weight: math.unit(2000, "kg"),
  26051. name: "Feral",
  26052. image: {
  26053. source: "./media/characters/vidar/feral.svg",
  26054. extra: 2790/1765,
  26055. bottom: 6/2796
  26056. }
  26057. },
  26058. },
  26059. [
  26060. {
  26061. name: "Normal",
  26062. height: math.unit(2.5, "meters"),
  26063. default: true
  26064. },
  26065. {
  26066. name: "Macro",
  26067. height: math.unit(100, "meters")
  26068. },
  26069. ]
  26070. ))
  26071. characterMakers.push(() => makeCharacter(
  26072. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26073. {
  26074. front: {
  26075. height: math.unit(5 + 9/12, "feet"),
  26076. weight: math.unit(120, "lb"),
  26077. name: "Front",
  26078. image: {
  26079. source: "./media/characters/ash/front.svg",
  26080. extra: 2189/1961,
  26081. bottom: 5.2/2194
  26082. }
  26083. },
  26084. },
  26085. [
  26086. {
  26087. name: "Normal",
  26088. height: math.unit(5 + 9/12, "feet"),
  26089. default: true
  26090. },
  26091. ]
  26092. ))
  26093. //characters
  26094. function makeCharacters() {
  26095. const results = [];
  26096. characterMakers.forEach(character => {
  26097. results.push(character());
  26098. });
  26099. return results;
  26100. }