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.
 
 
 

29930 lines
748 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.capacity) {
  29. views[key].attributes.capacity = {
  30. name: "Capacity",
  31. power: 3,
  32. type: "volume",
  33. base: value.capacity
  34. }
  35. }
  36. });
  37. return createEntityMaker(info, views, defaultSizes);
  38. }
  39. const speciesData = {
  40. animal: {
  41. name: "Animal"
  42. },
  43. dog: {
  44. name: "Dog",
  45. parents: [
  46. "canine"
  47. ]
  48. },
  49. canine: {
  50. name: "Canine",
  51. parents: [
  52. "mammal"
  53. ]
  54. },
  55. crux: {
  56. name: "Crux",
  57. parents: [
  58. "mammal"
  59. ]
  60. },
  61. mammal: {
  62. name: "Mammal",
  63. parents: [
  64. "animal"
  65. ]
  66. },
  67. "rough-collie": {
  68. name: "Rough Collie",
  69. parents: [
  70. "dog"
  71. ]
  72. },
  73. dragon: {
  74. name: "Dragon",
  75. parents: [
  76. "reptile"
  77. ]
  78. },
  79. reptile: {
  80. name: "Reptile",
  81. parents: [
  82. "animal"
  83. ]
  84. },
  85. woodpecker: {
  86. name: "Woodpecker",
  87. parents: [
  88. "avian"
  89. ]
  90. },
  91. avian: {
  92. name: "Avian",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. kitsune: {
  98. name: "Kitsune",
  99. parents: [
  100. "fox"
  101. ]
  102. },
  103. fox: {
  104. name: "Fox",
  105. parents: [
  106. "mammal"
  107. ]
  108. },
  109. pokemon: {
  110. name: "Pokemon"
  111. },
  112. tiger: {
  113. name: "Tiger",
  114. parents: [
  115. "cat"
  116. ]
  117. },
  118. cat: {
  119. name: "Cat",
  120. parents: [
  121. "mammal"
  122. ]
  123. },
  124. "blue-jay": {
  125. name: "Blue Jay",
  126. parents: [
  127. "avian"
  128. ]
  129. },
  130. wolf: {
  131. name: "Wolf",
  132. parents: [
  133. "mammal"
  134. ]
  135. },
  136. coyote: {
  137. name: "Coyote",
  138. parents: [
  139. "mammal"
  140. ]
  141. },
  142. raccoon: {
  143. name: "Raccoon",
  144. parents: [
  145. "mammal"
  146. ]
  147. },
  148. weasel: {
  149. name: "Weasel",
  150. parents: [
  151. "mammal"
  152. ]
  153. },
  154. "red-panda": {
  155. name: "Red Panda",
  156. parents: [
  157. "mammal"
  158. ]
  159. },
  160. dolphin: {
  161. name: "Dolphin",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. "african-wild-dog": {
  167. name: "African Wild Dog",
  168. parents: [
  169. "canine"
  170. ]
  171. },
  172. "hyena": {
  173. name: "Hyena",
  174. parents: [
  175. "canine"
  176. ]
  177. },
  178. "carbuncle": {
  179. name: "Carbuncle",
  180. parents: [
  181. "animal"
  182. ]
  183. },
  184. bat: {
  185. name: "Bat",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. "leaf-nosed-bat": {
  191. name: "Leaf-Nosed Bat",
  192. parents: [
  193. "bat"
  194. ]
  195. },
  196. "fish": {
  197. name: "Fish",
  198. parents: [
  199. "animal"
  200. ]
  201. },
  202. "ram": {
  203. name: "Ram",
  204. parents: [
  205. "mammal"
  206. ]
  207. },
  208. "demon": {
  209. name: "Demon"
  210. },
  211. "cougar": {
  212. name: "Cougar",
  213. parents: [
  214. "cat"
  215. ]
  216. },
  217. "goat": {
  218. name: "Goat",
  219. parents: [
  220. "mammal"
  221. ]
  222. },
  223. "lion": {
  224. name: "Lion",
  225. parents: [
  226. "cat"
  227. ]
  228. },
  229. "harpy-eager": {
  230. name: "Harpy Eagle",
  231. parents: [
  232. "avian"
  233. ]
  234. },
  235. "deer": {
  236. name: "Deer",
  237. parents: [
  238. "mammal"
  239. ]
  240. },
  241. "phoenix": {
  242. name: "Phoenix",
  243. parents: [
  244. "avian"
  245. ]
  246. },
  247. "aeromorph": {
  248. name: "Aeromorph",
  249. parents: [
  250. "machine"
  251. ]
  252. },
  253. "machine": {
  254. name: "Machine",
  255. },
  256. "android": {
  257. name: "Android",
  258. parents: [
  259. "machine"
  260. ]
  261. },
  262. "jackal": {
  263. name: "Jackal",
  264. parents: [
  265. "canine"
  266. ]
  267. },
  268. "corvid": {
  269. name: "Corvid",
  270. parents: [
  271. "avian"
  272. ]
  273. },
  274. "pharaoh-hound": {
  275. name: "Pharaoh Hound",
  276. parents: [
  277. "dog"
  278. ]
  279. },
  280. "skunk": {
  281. name: "Skunk",
  282. parents: [
  283. "mammal"
  284. ]
  285. },
  286. "shark": {
  287. name: "Shark",
  288. parents: [
  289. "fish"
  290. ]
  291. },
  292. "black-panther": {
  293. name: "Black Panther",
  294. parents: [
  295. "cat"
  296. ]
  297. },
  298. "umbra": {
  299. name: "Umbra",
  300. parents: [
  301. "animal"
  302. ]
  303. },
  304. "raven": {
  305. name: "Raven",
  306. parents: [
  307. "corvid"
  308. ]
  309. },
  310. "snow-leopard": {
  311. name: "Snow Leopard",
  312. parents: [
  313. "cat"
  314. ]
  315. },
  316. "barbary-lion": {
  317. name: "Barbary Lion",
  318. parents: [
  319. "lion"
  320. ]
  321. },
  322. "dra'gal": {
  323. name: "Dra'Gal",
  324. parents: [
  325. "mammal"
  326. ]
  327. },
  328. "german-shepherd": {
  329. name: "German Shepherd",
  330. parents: [
  331. "dog"
  332. ]
  333. },
  334. "bayleef": {
  335. name: "Bayleef",
  336. parents: [
  337. "pokemon"
  338. ]
  339. },
  340. "mouse": {
  341. name: "Mouse",
  342. parents: [
  343. "rodent"
  344. ]
  345. },
  346. "rat": {
  347. name: "Rat",
  348. parents: [
  349. "mammal"
  350. ]
  351. },
  352. "hoshiko-beast": {
  353. name: "Hoshiko Beast",
  354. parents: ["animal"]
  355. },
  356. "snow-jugani": {
  357. name: "Snow Jugani",
  358. parents: ["cat"]
  359. },
  360. "patamon": {
  361. name: "Patamon",
  362. parents: ["digimon"]
  363. },
  364. "digimon": {
  365. name: "Digimon",
  366. },
  367. "jugani": {
  368. name: "Jugani",
  369. parents: ["cat"]
  370. },
  371. "luxray": {
  372. name: "Luxray",
  373. parents: ["pokemon"]
  374. },
  375. "mech": {
  376. name: "Mech",
  377. parents: ["machine"]
  378. },
  379. "zoid": {
  380. name: "Zoid",
  381. parents: ["mech"]
  382. },
  383. "monster": {
  384. name: "Monster",
  385. parents: ["animal"]
  386. },
  387. "foo-dog": {
  388. name: "Foo Dog",
  389. parents: ["mammal"]
  390. },
  391. "elephant": {
  392. name: "Elephant",
  393. parents: ["mammal"]
  394. },
  395. "eagle": {
  396. name: "Eagle",
  397. parents: ["avian"]
  398. },
  399. "cow": {
  400. name: "Cow",
  401. parents: ["mammal"]
  402. },
  403. "crocodile": {
  404. name: "Crocodile",
  405. parents: ["reptile"]
  406. },
  407. "borzoi": {
  408. name: "Borzoi",
  409. parents: ["dog"]
  410. },
  411. "snake": {
  412. name: "Snake",
  413. parents: ["reptile"]
  414. },
  415. "horned-bush-viper": {
  416. name: "Horned Bush Viper",
  417. parents: ["snake"]
  418. },
  419. "cobra": {
  420. name: "Cobra",
  421. parents: ["snake"]
  422. },
  423. "harpy-eagle": {
  424. name: "Harpy Eagle",
  425. parents: ["eagle"]
  426. },
  427. "raptor": {
  428. name: "Raptor",
  429. parents: ["dinosaur"]
  430. },
  431. "dinosaur": {
  432. name: "Dinosaur",
  433. parents: ["reptile"]
  434. },
  435. "veilhound": {
  436. name: "Veilhound",
  437. parents: ["hellhound", "demon"]
  438. },
  439. "hellhound": {
  440. name: "Hellhound",
  441. parents: ["canine"]
  442. },
  443. "insect": {
  444. name: "Insect",
  445. parents: ["animal"]
  446. },
  447. "beetle": {
  448. name: "Beetle",
  449. parents: ["insect"]
  450. },
  451. "moth": {
  452. name: "Moth",
  453. parents: ["insect"]
  454. },
  455. "eastern-dragon": {
  456. name: "Eastern Dragon",
  457. parents: ["dragon"]
  458. },
  459. "jaguar": {
  460. name: "Jaguar",
  461. parents: ["cat"]
  462. },
  463. "horse": {
  464. name: "Horse",
  465. parents: ["mammal"]
  466. },
  467. "sergal": {
  468. name: "Sergal",
  469. parents: ["mammal"]
  470. },
  471. "gryphon": {
  472. name: "Gryphon",
  473. parents: ["lion", "eagle"]
  474. },
  475. "robot": {
  476. name: "Robot",
  477. parents: ["machine"]
  478. },
  479. "medihound": {
  480. name: "Medihound",
  481. parents: ["robot", "dog"]
  482. },
  483. "sylveon": {
  484. name: "Sylveon",
  485. parents: ["pokemon"]
  486. },
  487. "catgirl": {
  488. name: "Catgirl",
  489. parents: ["mammal"]
  490. },
  491. "cowgirl": {
  492. name: "Cowgirl",
  493. parents: ["mammal"]
  494. },
  495. "pony": {
  496. name: "Pony",
  497. parents: ["horse"]
  498. },
  499. "rabbit": {
  500. name: "Rabbit",
  501. parents: ["mammal"]
  502. },
  503. "fennec-fox": {
  504. name: "Fennec Fox",
  505. parents: ["fox"]
  506. },
  507. "azodian": {
  508. name: "Azodian",
  509. parents: ["mouse"]
  510. },
  511. "shiba-inu": {
  512. name: "Shiba Inu",
  513. parents: ["dog"]
  514. },
  515. "changeling": {
  516. name: "Changeling",
  517. parents: ["insect"]
  518. },
  519. "cheetah": {
  520. name: "Cheetah",
  521. parents: ["cat"]
  522. },
  523. "golden-jackal": {
  524. name: "Golden Jackal",
  525. parents: ["jackal"]
  526. },
  527. "manectric": {
  528. name: "Manectric",
  529. parents: ["pokemon"]
  530. },
  531. "rat": {
  532. name: "Rat",
  533. parents: ["rodent"]
  534. },
  535. "rodent": {
  536. name: "Rodent",
  537. parents: ["mammal"]
  538. },
  539. "octocoon": {
  540. name: "Octocoon",
  541. parents: ["raccoon", "octopus"]
  542. },
  543. "octopus": {
  544. name: "Octopus",
  545. parents: ["fish"]
  546. },
  547. "werewolf": {
  548. name: "Werewolf",
  549. parents: ["wolf"]
  550. },
  551. "meerkat": {
  552. name: "Meerkat",
  553. parents: ["mammal"]
  554. },
  555. "human": {
  556. name: "Human",
  557. parents: ["mammal"]
  558. },
  559. "geth": {
  560. name: "Geth",
  561. parents: ["android"]
  562. },
  563. "husky": {
  564. name: "Husky",
  565. parents: ["dog"]
  566. },
  567. "long-eared-bat": {
  568. name: "Long Eared Bat",
  569. parents: ["bat"]
  570. },
  571. "lizard": {
  572. name: "Lizard",
  573. parents: ["reptile"]
  574. },
  575. "salamander": {
  576. name: "Salamander",
  577. parents: ["lizard"]
  578. },
  579. "chameleon": {
  580. name: "Chameleon",
  581. parents: ["lizard"]
  582. },
  583. "gecko": {
  584. name: "Gecko",
  585. parents: ["lizard"]
  586. },
  587. "kobold": {
  588. name: "Kobold",
  589. parents: ["reptile"]
  590. },
  591. "charizard": {
  592. name: "Charizard",
  593. parents: ["pokemon"]
  594. },
  595. "lugia": {
  596. name: "Lugia",
  597. parents: ["pokemon"]
  598. },
  599. "cerberus": {
  600. name: "Cerberus",
  601. parents: ["dog"]
  602. },
  603. "tyrantrum": {
  604. name: "Tyrantrum",
  605. parents: ["pokemon"]
  606. },
  607. "lemur": {
  608. name: "Lemur",
  609. parents: ["mammal"]
  610. },
  611. "kelpie": {
  612. name: "Kelpie",
  613. parents: ["horse", "monster"]
  614. },
  615. "labrador": {
  616. name: "Labrador",
  617. parents: ["dog"]
  618. },
  619. "sylveon": {
  620. name: "Sylveon",
  621. parents: ["eeveelution"]
  622. },
  623. "eeveelution": {
  624. name: "Eeveelution",
  625. parents: ["pokemon"]
  626. },
  627. "polar-bear": {
  628. name: "Polar Bear",
  629. parents: ["bear"]
  630. },
  631. "bear": {
  632. name: "Bear",
  633. parents: ["mammal"]
  634. },
  635. "absol": {
  636. name: "Absol",
  637. parents: ["pokemon"]
  638. },
  639. "wolver": {
  640. name: "Wolver",
  641. parents: ["mammal"]
  642. },
  643. "rottweiler": {
  644. name: "Rottweiler",
  645. parents: ["dog"]
  646. },
  647. "zebra": {
  648. name: "Zebra",
  649. parents: ["horse"]
  650. },
  651. "yoshi": {
  652. name: "Yoshi",
  653. parents: ["lizard"]
  654. },
  655. "lynx": {
  656. name: "Lynx",
  657. parents: ["cat"]
  658. },
  659. "unknown": {
  660. name: "Unknown",
  661. parents: []
  662. },
  663. "thylacine": {
  664. name: "Thylacine",
  665. parents: ["mammal"]
  666. },
  667. "gabumon": {
  668. name: "Gabumon",
  669. parents: ["digimon"]
  670. },
  671. "border-collie": {
  672. name: "Border Collie",
  673. parents: ["dog"]
  674. },
  675. "imp": {
  676. name: "Imp",
  677. parents: ["demon"]
  678. },
  679. "kangaroo": {
  680. name: "Kangaroo",
  681. parents: ["mammal"]
  682. },
  683. "renamon": {
  684. name: "Renamon",
  685. parents: ["digimon"]
  686. },
  687. "candy-orca-dragon": {
  688. name: "Candy Orca Dragon",
  689. parents: ["fish", "dragon", "candy"]
  690. },
  691. "sabertooth-tiger": {
  692. name: "Sabertooth Tiger",
  693. parents: ["cat"]
  694. },
  695. "espurr": {
  696. name: "Espurr",
  697. parents: ["pokemon"]
  698. },
  699. "otter": {
  700. name: "Otter",
  701. parents: ["mammal"]
  702. },
  703. "elemental": {
  704. name: "Elemental",
  705. parents: ["mammal"]
  706. },
  707. "mew": {
  708. name: "Mew",
  709. parents: ["pokemon"]
  710. },
  711. "goodra": {
  712. name: "Goodra",
  713. parents: ["pokemon"]
  714. },
  715. "fairy": {
  716. name: "Fairy",
  717. parents: ["magical"]
  718. },
  719. "typhlosion": {
  720. name: "Typhlosion",
  721. parents: ["pokemon"]
  722. },
  723. "magical": {
  724. name: "Magical",
  725. parents: []
  726. },
  727. "xenomorph": {
  728. name: "Xenomorph",
  729. parents: ["monster", "alien"]
  730. },
  731. "charr": {
  732. name: "Charr",
  733. parents: ["cat"]
  734. },
  735. "siberian-husky": {
  736. name: "Siberian Husky",
  737. parents: ["husky"]
  738. },
  739. "alligator": {
  740. name: "Alligator",
  741. parents: ["reptile"]
  742. },
  743. "bernese-mountain-dog": {
  744. name: "Bernese Mountain Dog",
  745. parents: ["dog"]
  746. },
  747. "reshiram": {
  748. name: "Reshiram",
  749. parents: ["pokemon"]
  750. },
  751. "grizzly-bear": {
  752. name: "Grizzly Bear",
  753. parents: ["bear"]
  754. },
  755. "water-monitor": {
  756. name: "Water Monitor",
  757. parents: ["lizard"]
  758. },
  759. "banchofossa": {
  760. name: "Banchofossa",
  761. parents: ["mammal"]
  762. },
  763. "kirin": {
  764. name: "Kirin",
  765. parents: ["monster"]
  766. },
  767. "quilava": {
  768. name: "Quilava",
  769. parents: ["pokemon"]
  770. },
  771. "seviper": {
  772. name: "Seviper",
  773. parents: ["pokemon"]
  774. },
  775. "flying-fox": {
  776. name: "Flying Fox",
  777. parents: ["bat"]
  778. },
  779. "keynain": {
  780. name: "Keynain",
  781. parents: ["avian"]
  782. },
  783. "lucario": {
  784. name: "Lucario",
  785. parents: ["pokemon"]
  786. },
  787. "siamese-cat": {
  788. name: "Siamese Cat",
  789. parents: ["cat"]
  790. },
  791. "spider": {
  792. name: "Spider",
  793. parents: ["insect"]
  794. },
  795. "samurott": {
  796. name: "Samurott",
  797. parents: ["pokemon"]
  798. },
  799. "megalodon": {
  800. name: "Megalodon",
  801. parents: ["shark"]
  802. },
  803. "unicorn": {
  804. name: "Unicorn",
  805. parents: ["horse"]
  806. },
  807. "greninja": {
  808. name: "Greninja",
  809. parents: ["pokemon"]
  810. },
  811. "water-dragon": {
  812. name: "Water Dragon",
  813. parents: ["dragon"]
  814. },
  815. "cross-fox": {
  816. name: "Cross Fox",
  817. parents: ["fox"]
  818. },
  819. "synth": {
  820. name: "Synth",
  821. parents: ["machine"]
  822. },
  823. "construct": {
  824. name: "Construct",
  825. parents: []
  826. },
  827. "mexican-wolf": {
  828. name: "Mexican Wolf",
  829. parents: ["wolf"]
  830. },
  831. "leopard": {
  832. name: "Leopard",
  833. parents: ["cat"]
  834. },
  835. "pig": {
  836. name: "Pig",
  837. parents: ["mammal"]
  838. },
  839. "ampharos": {
  840. name: "Ampharos",
  841. parents: ["pokemon"]
  842. },
  843. "orca": {
  844. name: "Orca",
  845. parents: ["fish"]
  846. },
  847. "lycanroc": {
  848. name: "Lycanroc",
  849. parents: ["pokemon"]
  850. },
  851. "surkanu": {
  852. name: "Surkanu",
  853. parents: ["monster"]
  854. },
  855. "seal": {
  856. name: "Seal",
  857. parents: ["mammal"]
  858. },
  859. "keldeo": {
  860. name: "Keldeo",
  861. parents: ["pokemon"]
  862. },
  863. "great-dane": {
  864. name: "Great Dane",
  865. parents: ["dog"]
  866. },
  867. "black-backed-jackal": {
  868. name: "Black Backed Jackal",
  869. parents: ["jackal"]
  870. },
  871. "sheep": {
  872. name: "Sheep",
  873. parents: ["mammal"]
  874. },
  875. "leopard-seal": {
  876. name: "Leopard Seal",
  877. parents: ["seal"]
  878. },
  879. "zoroark": {
  880. name: "Zoroark",
  881. parents: ["pokemon"]
  882. },
  883. "maned-wolf": {
  884. name: "Maned Wolf",
  885. parents: ["canine"]
  886. },
  887. "dracha": {
  888. name: "Dracha",
  889. parents: ["dragon"]
  890. },
  891. "wolxi": {
  892. name: "Wolxi",
  893. parents: ["mammal", "alien"]
  894. },
  895. "dratini": {
  896. name: "Dratini",
  897. parents: ["pokemon", "dragon"]
  898. },
  899. "skaven": {
  900. name: "Skaven",
  901. parents: ["rat"]
  902. },
  903. "mongoose": {
  904. name: "Mongoose",
  905. parents: ["mammal"]
  906. },
  907. "lopunny": {
  908. name: "Lopunny",
  909. parents: ["pokemon", "rabbit"]
  910. },
  911. "feraligatr": {
  912. name: "Feraligatr",
  913. parents: ["pokemon", "alligator"]
  914. },
  915. "houndoom": {
  916. name: "Houndoom",
  917. parents: ["pokemon", "dog"]
  918. },
  919. "protogen": {
  920. name: "Protogen",
  921. parents: ["machine"]
  922. },
  923. "saint-bernard": {
  924. name: "Saint Bernard",
  925. parents: ["dog"]
  926. },
  927. "crow": {
  928. name: "Crow",
  929. parents: ["corvid"]
  930. },
  931. "delphox": {
  932. name: "Delphox",
  933. parents: ["pokemon", "fox"]
  934. },
  935. "moose": {
  936. name: "Moose",
  937. parents: ["mammal"]
  938. },
  939. "joraxian": {
  940. name: "Joraxian",
  941. parents: ["monster", "canine", "demon"]
  942. },
  943. "nimbat": {
  944. name: "Nimbat",
  945. parents: ["mammal"]
  946. },
  947. "aardwolf": {
  948. name: "Aardwolf",
  949. parents: ["canine"]
  950. },
  951. "fluudrani": {
  952. name: "Fluudrani",
  953. parents: ["animal"]
  954. },
  955. "arcanine": {
  956. name: "Arcanine",
  957. parents: ["pokemon", "dog"]
  958. },
  959. "inteleon": {
  960. name: "Inteleon",
  961. parents: ["pokemon", "fish"]
  962. },
  963. "ninetales": {
  964. name: "Ninetales",
  965. parents: ["pokemon", "kitsune"]
  966. },
  967. "tigrex": {
  968. name: "Tigrex",
  969. parents: ["tiger"]
  970. },
  971. "zorua": {
  972. name: "Zorua",
  973. parents: ["pokemon", "fox"]
  974. },
  975. "vulpix": {
  976. name: "Vulpix",
  977. parents: ["pokemon", "fox"]
  978. },
  979. "barghest": {
  980. name: "Barghest",
  981. parents: ["monster"]
  982. },
  983. "gray-wolf": {
  984. name: "Gray Wolf",
  985. parents: ["wolf"]
  986. },
  987. "ruppells-fox": {
  988. name: "Rüppell's Fox",
  989. parents: ["fox"]
  990. },
  991. "bull-terrier": {
  992. name: "Bull Terrier",
  993. parents: ["dog"]
  994. },
  995. "european-honey-buzzard": {
  996. name: "European Honey Buzzard",
  997. parents: ["avian"]
  998. },
  999. "t-rex": {
  1000. name: "T Rex",
  1001. parents: ["dinosaur"]
  1002. },
  1003. "mactarian": {
  1004. name: "Mactarian",
  1005. parents: ["shark", "monster"]
  1006. },
  1007. "mewtwo-y": {
  1008. name: "Mewtwo Y",
  1009. parents: ["mewtwo"]
  1010. },
  1011. "mewtwo": {
  1012. name: "Mewtwo",
  1013. parents: ["pokemon"]
  1014. },
  1015. "mew": {
  1016. name: "Mew",
  1017. parents: ["pokemon"]
  1018. },
  1019. "eevee": {
  1020. name: "Eevee",
  1021. parents: ["eeveelution"]
  1022. },
  1023. "mienshao": {
  1024. name: "Mienshao",
  1025. parents: ["pokemon"]
  1026. },
  1027. "sugar-glider": {
  1028. name: "Sugar Glider",
  1029. parents: ["opossum"]
  1030. },
  1031. "spectral-bat": {
  1032. name: "Spectral Bat",
  1033. parents: ["bat"]
  1034. },
  1035. "scolipede": {
  1036. name: "Scolipede",
  1037. parents: ["pokemon", "insect"]
  1038. },
  1039. "jackalope": {
  1040. name: "Jackalope",
  1041. parents: ["rabbit", "antelope"]
  1042. },
  1043. "caracal": {
  1044. name: "Caracal",
  1045. parents: ["cat"]
  1046. },
  1047. "stoat": {
  1048. name: "Stoat",
  1049. parents: ["mammal"]
  1050. },
  1051. "african-golden-cat": {
  1052. name: "African Golden Cat",
  1053. parents: ["cat"]
  1054. },
  1055. "gigantosaurus": {
  1056. name: "Gigantosaurus",
  1057. parents: ["dinosaur"]
  1058. },
  1059. "zorgoia": {
  1060. name: "Zorgoia",
  1061. parents: ["mammal"]
  1062. },
  1063. "monitor-lizard": {
  1064. name: "Monitor Lizard",
  1065. parents: ["lizard"]
  1066. },
  1067. "ziralkia": {
  1068. name: "Ziralkia",
  1069. parents: ["mammal"]
  1070. },
  1071. "kiiasi": {
  1072. name: "Kiiasi",
  1073. parents: ["animal"]
  1074. },
  1075. "synx": {
  1076. name: "Synx",
  1077. parents: ["monster"]
  1078. },
  1079. "panther": {
  1080. name: "Panther",
  1081. parents: ["cat"]
  1082. },
  1083. "azumarill": {
  1084. name: "Azumarill",
  1085. parents: ["pokemon"]
  1086. },
  1087. "river-snaptail": {
  1088. name: "River Snaptail",
  1089. parents: ["otter", "crocodile"]
  1090. },
  1091. "great-blue-heron": {
  1092. name: "Great Blue Heron",
  1093. parents: ["avian"]
  1094. },
  1095. "smeargle": {
  1096. name: "Smeargle",
  1097. parents: ["pokemon"]
  1098. },
  1099. "vendeilen": {
  1100. name: "Vendeilen",
  1101. parents: ["monster"]
  1102. },
  1103. "ventura": {
  1104. name: "Ventura",
  1105. parents: ["canine"]
  1106. },
  1107. "clouded-leopard": {
  1108. name: "Clouded Leopard",
  1109. parents: ["leopard"]
  1110. },
  1111. "argonian": {
  1112. name: "Argonian",
  1113. parents: ["lizard"]
  1114. },
  1115. "salazzle": {
  1116. name: "Salazzle",
  1117. parents: ["pokemon", "lizard"]
  1118. },
  1119. "je-stoff-drachen": {
  1120. name: "Je-Stoff Drachen",
  1121. parents: ["dragon"]
  1122. },
  1123. "finnish-spitz-dog": {
  1124. name: "Finnish Spitz Dog",
  1125. parents: ["dog"]
  1126. },
  1127. "gray-fox": {
  1128. name: "Gray Fox",
  1129. parents: ["fox"]
  1130. },
  1131. "opossum": {
  1132. name: "opossum",
  1133. parents: ["mammal"]
  1134. },
  1135. "antelope": {
  1136. name: "Antelope",
  1137. parents: ["mammal"]
  1138. },
  1139. "weavile": {
  1140. name: "Weavile",
  1141. parents: ["pokemon"]
  1142. },
  1143. "pikachu": {
  1144. name: "Pikachu",
  1145. parents: ["pokemon", "mouse"]
  1146. },
  1147. "grovyle": {
  1148. name: "Grovyle",
  1149. parents: ["pokemon", "plant"]
  1150. },
  1151. "sthara": {
  1152. name: "Sthara",
  1153. parents: ["snow-leopard", "reptile"]
  1154. },
  1155. "star-warrior": {
  1156. name: "Star Warrior",
  1157. parents: ["magical"]
  1158. },
  1159. "dragonoid": {
  1160. name: "Dragonoid",
  1161. parents: ["dragon"]
  1162. },
  1163. "suicune": {
  1164. name: "Suicune",
  1165. parents: ["pokemon"]
  1166. },
  1167. "vole": {
  1168. name: "Vole",
  1169. parents: ["mammal"]
  1170. },
  1171. "blaziken": {
  1172. name: "Blaziken",
  1173. parents: ["pokemon", "avian"]
  1174. },
  1175. "buizel": {
  1176. name: "Buizel",
  1177. parents: ["pokemon", "fish"]
  1178. },
  1179. "floatzel": {
  1180. name: "Floatzel",
  1181. parents: ["pokemon", "fish"]
  1182. },
  1183. "umok": {
  1184. name: "Umok",
  1185. parents: ["avian"]
  1186. },
  1187. "sea-monster": {
  1188. name: "Sea Monster",
  1189. parents: ["monster", "fish"]
  1190. },
  1191. "egyptian-vulture": {
  1192. name: "Egyptian Vulture",
  1193. parents: ["avian"]
  1194. },
  1195. "doberman": {
  1196. name: "Doberman",
  1197. parents: ["dog"]
  1198. },
  1199. "zangoose": {
  1200. name: "Zangoose",
  1201. parents: ["pokemon", "mongoose"]
  1202. },
  1203. "mongoose": {
  1204. name: "Mongoose",
  1205. parents: ["mammal"]
  1206. },
  1207. "wickerbeast": {
  1208. name: "Wickerbeast",
  1209. parents: ["monster"]
  1210. },
  1211. "zenari": {
  1212. name: "Zenari",
  1213. parents: ["lizard"]
  1214. },
  1215. "plant": {
  1216. name: "Plant",
  1217. parents: []
  1218. },
  1219. "raskatox": {
  1220. name: "Raskatox",
  1221. parents: ["raccoon", "skunk", "cat", "fox"]
  1222. },
  1223. "mikromare": {
  1224. name: "mikromare",
  1225. parents: ["alien"]
  1226. },
  1227. "alien": {
  1228. name: "Alien",
  1229. parents: ["animal"]
  1230. },
  1231. "deity": {
  1232. name: "Deity",
  1233. parents: []
  1234. },
  1235. "skarlan": {
  1236. name: "Skarlan",
  1237. parents: ["slug", "dragon"]
  1238. },
  1239. "slug": {
  1240. name: "Slug",
  1241. parents: ["mollusk"]
  1242. },
  1243. "mollusk": {
  1244. name: "Mollusk",
  1245. parents: ["animal"]
  1246. },
  1247. "chimera": {
  1248. name: "Chimera",
  1249. parents: ["monster"]
  1250. },
  1251. "gestalt": {
  1252. name: "Gestalt",
  1253. parents: ["construct"]
  1254. },
  1255. "mimic": {
  1256. name: "Mimic",
  1257. parents: ["monster"]
  1258. },
  1259. "calico-rat": {
  1260. name: "Calico Rat",
  1261. parents: ["rat"]
  1262. },
  1263. "panda": {
  1264. name: "Panda",
  1265. parents: ["mammal"]
  1266. },
  1267. "oni": {
  1268. name: "Oni",
  1269. parents: ["monster"]
  1270. },
  1271. "pegasus": {
  1272. name: "Pegasus",
  1273. parents: ["horse"]
  1274. },
  1275. "vulpera": {
  1276. name: "Vulpera",
  1277. parents: ["fennec-fox"]
  1278. },
  1279. "ceratosaurus": {
  1280. name: "Ceratosaurus",
  1281. parents: ["dinosaur"]
  1282. },
  1283. "nykur": {
  1284. name: "Nykur",
  1285. parents: ["horse", "monster"]
  1286. },
  1287. "giraffe": {
  1288. name: "Giraffe",
  1289. parents: ["mammal"]
  1290. },
  1291. "tauren": {
  1292. name: "Tauren",
  1293. parents: ["cow"]
  1294. },
  1295. "draconi": {
  1296. name: "Draconi",
  1297. parents: ["alien", "cat", "cyborg"]
  1298. },
  1299. "dire-wolf": {
  1300. name: "Dire Wolf",
  1301. parents: ["wolf"]
  1302. },
  1303. "ferromorph": {
  1304. name: "Ferromorph",
  1305. parents: ["construct"]
  1306. },
  1307. "meowth": {
  1308. name: "Meowth",
  1309. parents: ["cat", "pokemon"]
  1310. },
  1311. "pavodragon": {
  1312. name: "Pavodragon",
  1313. parents: ["dragon"]
  1314. },
  1315. "aaltranae": {
  1316. name: "Aaltranae",
  1317. parents: ["dragon"]
  1318. },
  1319. "cyborg": {
  1320. name: "Cyborg",
  1321. parents: ["machine"]
  1322. },
  1323. "draptor": {
  1324. name: "Draptor",
  1325. parents: ["dragon"]
  1326. },
  1327. "candy": {
  1328. name: "Candy",
  1329. parents: []
  1330. },
  1331. "drenath": {
  1332. name: "Drenath",
  1333. parents: ["dragon", "snake", "rabbit"]
  1334. },
  1335. "coyju": {
  1336. name: "Coyju",
  1337. parents: ["coyote", "kaiju"]
  1338. },
  1339. "kaiju": {
  1340. name: "Kaiju",
  1341. parents: ["monster"]
  1342. },
  1343. "nickit": {
  1344. name: "Nickit",
  1345. parents: ["pokemon", "cat"]
  1346. },
  1347. "lopunny": {
  1348. name: "Lopunny",
  1349. parents: ["pokemon", "rabbit"]
  1350. },
  1351. "korean-jindo-dog": {
  1352. name: "Korean Jindo Dog",
  1353. parents: ["dog"]
  1354. },
  1355. "naga": {
  1356. name: "Naga",
  1357. parents: ["snake", "monster"]
  1358. },
  1359. "undead": {
  1360. name: "Undead",
  1361. parents: ["monster"]
  1362. },
  1363. "whale": {
  1364. name: "Whale",
  1365. parents: ["fish"]
  1366. },
  1367. "gelato-bee": {
  1368. name: "Gelato Bee",
  1369. parents: ["bee"]
  1370. },
  1371. "bee": {
  1372. name: "Bee",
  1373. parents: ["insect"]
  1374. },
  1375. "gardevoir": {
  1376. name: "Gardevoir",
  1377. parents: ["pokemon"]
  1378. },
  1379. "ant": {
  1380. name: "Ant",
  1381. parents: ["insect"]
  1382. },
  1383. "frog": {
  1384. name: "Frog",
  1385. parents: ["amphibian"]
  1386. },
  1387. "amphibian": {
  1388. name: "Amphibian",
  1389. parents: ["animal"]
  1390. },
  1391. "pangolin": {
  1392. name: "Pangolin",
  1393. parents: ["mammal"]
  1394. },
  1395. }
  1396. //species
  1397. function getSpeciesInfo(speciesList) {
  1398. let result = new Set();
  1399. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1400. result.add(entry)
  1401. });
  1402. return Array.from(result);
  1403. };
  1404. function getSpeciesInfoHelper(species) {
  1405. if (!speciesData[species]) {
  1406. console.warn(species + " doesn't exist");
  1407. return [];
  1408. }
  1409. if (speciesData[species].parents) {
  1410. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1411. } else {
  1412. return [species];
  1413. }
  1414. }
  1415. characterMakers.push(() => makeCharacter(
  1416. {
  1417. name: "Fen",
  1418. species: ["crux"],
  1419. description: {
  1420. title: "Bio",
  1421. text: "Very furry. Sheds on everything."
  1422. },
  1423. tags: [
  1424. "anthro",
  1425. "goo"
  1426. ]
  1427. },
  1428. {
  1429. back: {
  1430. height: math.unit(2.2428, "meter"),
  1431. weight: math.unit(124.738, "kg"),
  1432. name: "Back",
  1433. image: {
  1434. source: "./media/characters/fen/back.svg",
  1435. extra: 2024 / 1867,
  1436. bottom: 13 / 2037
  1437. },
  1438. info: {
  1439. description: {
  1440. mode: "append",
  1441. text: "\n\nHe is not currently looking at you."
  1442. }
  1443. }
  1444. },
  1445. full: {
  1446. height: math.unit(1.34, "meter"),
  1447. weight: math.unit(225, "kg"),
  1448. name: "Full",
  1449. image: {
  1450. source: "./media/characters/fen/full.svg"
  1451. },
  1452. info: {
  1453. description: {
  1454. mode: "append",
  1455. text: "\n\nMunch."
  1456. }
  1457. }
  1458. },
  1459. kneeling: {
  1460. height: math.unit(5.4, "feet"),
  1461. weight: math.unit(124.738, "kg"),
  1462. name: "Kneeling",
  1463. image: {
  1464. source: "./media/characters/fen/kneeling.svg",
  1465. extra: 563 / 507
  1466. }
  1467. },
  1468. goo: {
  1469. height: math.unit(2.8, "feet"),
  1470. weight: math.unit(125, "kg"),
  1471. capacity: math.unit(1, "people"),
  1472. name: "Goo",
  1473. image: {
  1474. source: "./media/characters/fen/goo.svg",
  1475. bottom: 116 / 613
  1476. }
  1477. },
  1478. lounging: {
  1479. height: math.unit(6.5, "feet"),
  1480. weight: math.unit(125, "kg"),
  1481. name: "Lounging",
  1482. image: {
  1483. source: "./media/characters/fen/lounging.svg"
  1484. }
  1485. },
  1486. },
  1487. [
  1488. {
  1489. name: "Normal",
  1490. height: math.unit(2.2428, "meter")
  1491. },
  1492. {
  1493. name: "Big",
  1494. height: math.unit(12, "feet")
  1495. },
  1496. {
  1497. name: "Minimacro",
  1498. height: math.unit(40, "feet"),
  1499. default: true,
  1500. info: {
  1501. description: {
  1502. mode: "append",
  1503. text: "\n\nTOO DAMN BIG"
  1504. }
  1505. }
  1506. },
  1507. {
  1508. name: "Macro",
  1509. height: math.unit(100, "feet"),
  1510. info: {
  1511. description: {
  1512. mode: "append",
  1513. text: "\n\nTOO DAMN BIG"
  1514. }
  1515. }
  1516. },
  1517. {
  1518. name: "Macro+",
  1519. height: math.unit(300, "feet")
  1520. },
  1521. {
  1522. name: "Megamacro",
  1523. height: math.unit(2, "miles")
  1524. }
  1525. ]
  1526. ))
  1527. characterMakers.push(() => makeCharacter(
  1528. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1529. {
  1530. front: {
  1531. height: math.unit(183, "cm"),
  1532. weight: math.unit(80, "kg"),
  1533. name: "Front",
  1534. image: {
  1535. source: "./media/characters/sofia-fluttertail/front.svg",
  1536. bottom: 0.01,
  1537. extra: 2154 / 2081
  1538. }
  1539. },
  1540. frontAlt: {
  1541. height: math.unit(183, "cm"),
  1542. weight: math.unit(80, "kg"),
  1543. name: "Front (alt)",
  1544. image: {
  1545. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1546. }
  1547. },
  1548. back: {
  1549. height: math.unit(183, "cm"),
  1550. weight: math.unit(80, "kg"),
  1551. name: "Back",
  1552. image: {
  1553. source: "./media/characters/sofia-fluttertail/back.svg"
  1554. }
  1555. },
  1556. kneeling: {
  1557. height: math.unit(125, "cm"),
  1558. weight: math.unit(80, "kg"),
  1559. name: "Kneeling",
  1560. image: {
  1561. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1562. extra: 1033 / 977,
  1563. bottom: 23.7 / 1057
  1564. }
  1565. },
  1566. maw: {
  1567. height: math.unit(183 / 5, "cm"),
  1568. name: "Maw",
  1569. image: {
  1570. source: "./media/characters/sofia-fluttertail/maw.svg"
  1571. }
  1572. },
  1573. mawcloseup: {
  1574. height: math.unit(183 / 5 * 0.41, "cm"),
  1575. name: "Maw (Closeup)",
  1576. image: {
  1577. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1578. }
  1579. },
  1580. },
  1581. [
  1582. {
  1583. name: "Normal",
  1584. height: math.unit(1.83, "meter")
  1585. },
  1586. {
  1587. name: "Size Thief",
  1588. height: math.unit(18, "feet")
  1589. },
  1590. {
  1591. name: "50 Foot Collie",
  1592. height: math.unit(50, "feet")
  1593. },
  1594. {
  1595. name: "Macro",
  1596. height: math.unit(96, "feet"),
  1597. default: true
  1598. },
  1599. {
  1600. name: "Megamerger",
  1601. height: math.unit(650, "feet")
  1602. },
  1603. ]
  1604. ))
  1605. characterMakers.push(() => makeCharacter(
  1606. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1607. {
  1608. front: {
  1609. height: math.unit(7, "feet"),
  1610. weight: math.unit(100, "kg"),
  1611. name: "Front",
  1612. image: {
  1613. source: "./media/characters/march/front.svg",
  1614. extra: 1,
  1615. bottom: 0.015
  1616. }
  1617. },
  1618. foot: {
  1619. height: math.unit(0.9, "feet"),
  1620. name: "Foot",
  1621. image: {
  1622. source: "./media/characters/march/foot.svg"
  1623. }
  1624. },
  1625. },
  1626. [
  1627. {
  1628. name: "Normal",
  1629. height: math.unit(7.9, "feet")
  1630. },
  1631. {
  1632. name: "Macro",
  1633. height: math.unit(220, "meters")
  1634. },
  1635. {
  1636. name: "Megamacro",
  1637. height: math.unit(2.98, "km"),
  1638. default: true
  1639. },
  1640. {
  1641. name: "Gigamacro",
  1642. height: math.unit(15963, "km")
  1643. },
  1644. {
  1645. name: "Teramacro",
  1646. height: math.unit(2980000000, "km")
  1647. },
  1648. {
  1649. name: "Examacro",
  1650. height: math.unit(250, "parsecs")
  1651. },
  1652. ]
  1653. ))
  1654. characterMakers.push(() => makeCharacter(
  1655. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1656. {
  1657. front: {
  1658. height: math.unit(6, "feet"),
  1659. weight: math.unit(60, "kg"),
  1660. name: "Front",
  1661. image: {
  1662. source: "./media/characters/noir/front.svg",
  1663. extra: 1,
  1664. bottom: 0.032
  1665. }
  1666. },
  1667. },
  1668. [
  1669. {
  1670. name: "Normal",
  1671. height: math.unit(6.6, "feet")
  1672. },
  1673. {
  1674. name: "Macro",
  1675. height: math.unit(500, "feet")
  1676. },
  1677. {
  1678. name: "Megamacro",
  1679. height: math.unit(2.5, "km"),
  1680. default: true
  1681. },
  1682. {
  1683. name: "Gigamacro",
  1684. height: math.unit(22500, "km")
  1685. },
  1686. {
  1687. name: "Teramacro",
  1688. height: math.unit(2500000000, "km")
  1689. },
  1690. {
  1691. name: "Examacro",
  1692. height: math.unit(200, "parsecs")
  1693. },
  1694. ]
  1695. ))
  1696. characterMakers.push(() => makeCharacter(
  1697. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1698. {
  1699. front: {
  1700. height: math.unit(7, "feet"),
  1701. weight: math.unit(100, "kg"),
  1702. name: "Front",
  1703. image: {
  1704. source: "./media/characters/okuri/front.svg",
  1705. extra: 1,
  1706. bottom: 0.037
  1707. }
  1708. },
  1709. back: {
  1710. height: math.unit(7, "feet"),
  1711. weight: math.unit(100, "kg"),
  1712. name: "Back",
  1713. image: {
  1714. source: "./media/characters/okuri/back.svg",
  1715. extra: 1,
  1716. bottom: 0.007
  1717. }
  1718. },
  1719. },
  1720. [
  1721. {
  1722. name: "Megamacro",
  1723. height: math.unit(100, "miles"),
  1724. default: true
  1725. },
  1726. ]
  1727. ))
  1728. characterMakers.push(() => makeCharacter(
  1729. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1730. {
  1731. front: {
  1732. height: math.unit(7, "feet"),
  1733. weight: math.unit(100, "kg"),
  1734. name: "Front",
  1735. image: {
  1736. source: "./media/characters/manny/front.svg",
  1737. extra: 1,
  1738. bottom: 0.06
  1739. }
  1740. },
  1741. back: {
  1742. height: math.unit(7, "feet"),
  1743. weight: math.unit(100, "kg"),
  1744. name: "Back",
  1745. image: {
  1746. source: "./media/characters/manny/back.svg",
  1747. extra: 1,
  1748. bottom: 0.014
  1749. }
  1750. },
  1751. },
  1752. [
  1753. {
  1754. name: "Normal",
  1755. height: math.unit(7, "feet"),
  1756. },
  1757. {
  1758. name: "Macro",
  1759. height: math.unit(78, "feet"),
  1760. default: true
  1761. },
  1762. {
  1763. name: "Macro+",
  1764. height: math.unit(300, "meters")
  1765. },
  1766. {
  1767. name: "Macro++",
  1768. height: math.unit(2400, "meters")
  1769. },
  1770. {
  1771. name: "Megamacro",
  1772. height: math.unit(5167, "meters")
  1773. },
  1774. {
  1775. name: "Gigamacro",
  1776. height: math.unit(41769, "miles")
  1777. },
  1778. ]
  1779. ))
  1780. characterMakers.push(() => makeCharacter(
  1781. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1782. {
  1783. front: {
  1784. height: math.unit(7, "feet"),
  1785. weight: math.unit(100, "kg"),
  1786. name: "Front",
  1787. image: {
  1788. source: "./media/characters/adake/front-1.svg"
  1789. }
  1790. },
  1791. frontAlt: {
  1792. height: math.unit(7, "feet"),
  1793. weight: math.unit(100, "kg"),
  1794. name: "Front (Alt)",
  1795. image: {
  1796. source: "./media/characters/adake/front-2.svg",
  1797. extra: 1,
  1798. bottom: 0.01
  1799. }
  1800. },
  1801. back: {
  1802. height: math.unit(7, "feet"),
  1803. weight: math.unit(100, "kg"),
  1804. name: "Back",
  1805. image: {
  1806. source: "./media/characters/adake/back.svg",
  1807. }
  1808. },
  1809. kneel: {
  1810. height: math.unit(5.385, "feet"),
  1811. weight: math.unit(100, "kg"),
  1812. name: "Kneeling",
  1813. image: {
  1814. source: "./media/characters/adake/kneel.svg",
  1815. bottom: 0.052
  1816. }
  1817. },
  1818. },
  1819. [
  1820. {
  1821. name: "Normal",
  1822. height: math.unit(7, "feet"),
  1823. },
  1824. {
  1825. name: "Macro",
  1826. height: math.unit(78, "feet"),
  1827. default: true
  1828. },
  1829. {
  1830. name: "Macro+",
  1831. height: math.unit(300, "meters")
  1832. },
  1833. {
  1834. name: "Macro++",
  1835. height: math.unit(2400, "meters")
  1836. },
  1837. {
  1838. name: "Megamacro",
  1839. height: math.unit(5167, "meters")
  1840. },
  1841. {
  1842. name: "Gigamacro",
  1843. height: math.unit(41769, "miles")
  1844. },
  1845. ]
  1846. ))
  1847. characterMakers.push(() => makeCharacter(
  1848. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1849. {
  1850. front: {
  1851. height: math.unit(1.65, "meters"),
  1852. weight: math.unit(50, "kg"),
  1853. name: "Front",
  1854. image: {
  1855. source: "./media/characters/elijah/front.svg",
  1856. extra: 858 / 830,
  1857. bottom: 95.5 / 953.8559
  1858. }
  1859. },
  1860. back: {
  1861. height: math.unit(1.65, "meters"),
  1862. weight: math.unit(50, "kg"),
  1863. name: "Back",
  1864. image: {
  1865. source: "./media/characters/elijah/back.svg",
  1866. extra: 895 / 850,
  1867. bottom: 5.3 / 897.956
  1868. }
  1869. },
  1870. frontNsfw: {
  1871. height: math.unit(1.65, "meters"),
  1872. weight: math.unit(50, "kg"),
  1873. name: "Front (NSFW)",
  1874. image: {
  1875. source: "./media/characters/elijah/front-nsfw.svg",
  1876. extra: 858 / 830,
  1877. bottom: 95.5 / 953.8559
  1878. }
  1879. },
  1880. backNsfw: {
  1881. height: math.unit(1.65, "meters"),
  1882. weight: math.unit(50, "kg"),
  1883. name: "Back (NSFW)",
  1884. image: {
  1885. source: "./media/characters/elijah/back-nsfw.svg",
  1886. extra: 895 / 850,
  1887. bottom: 5.3 / 897.956
  1888. }
  1889. },
  1890. dick: {
  1891. height: math.unit(1, "feet"),
  1892. name: "Dick",
  1893. image: {
  1894. source: "./media/characters/elijah/dick.svg"
  1895. }
  1896. },
  1897. beakOpen: {
  1898. height: math.unit(1.25, "feet"),
  1899. name: "Beak (Open)",
  1900. image: {
  1901. source: "./media/characters/elijah/beak-open.svg"
  1902. }
  1903. },
  1904. beakShut: {
  1905. height: math.unit(1.25, "feet"),
  1906. name: "Beak (Shut)",
  1907. image: {
  1908. source: "./media/characters/elijah/beak-shut.svg"
  1909. }
  1910. },
  1911. footFlexing: {
  1912. height: math.unit(1.61, "feet"),
  1913. name: "Foot (Flexing)",
  1914. image: {
  1915. source: "./media/characters/elijah/foot-flexing.svg"
  1916. }
  1917. },
  1918. footStepping: {
  1919. height: math.unit(1.44, "feet"),
  1920. name: "Foot (Stepping)",
  1921. image: {
  1922. source: "./media/characters/elijah/foot-stepping.svg"
  1923. }
  1924. },
  1925. plantigradeLeg: {
  1926. height: math.unit(2.34, "feet"),
  1927. name: "Plantigrade Leg",
  1928. image: {
  1929. source: "./media/characters/elijah/plantigrade-leg.svg"
  1930. }
  1931. },
  1932. plantigradeFootLeft: {
  1933. height: math.unit(0.9, "feet"),
  1934. name: "Plantigrade Foot (Left)",
  1935. image: {
  1936. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  1937. }
  1938. },
  1939. plantigradeFootRight: {
  1940. height: math.unit(0.9, "feet"),
  1941. name: "Plantigrade Foot (Right)",
  1942. image: {
  1943. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  1944. }
  1945. },
  1946. },
  1947. [
  1948. {
  1949. name: "Normal",
  1950. height: math.unit(1.65, "meters")
  1951. },
  1952. {
  1953. name: "Macro",
  1954. height: math.unit(55, "meters"),
  1955. default: true
  1956. },
  1957. {
  1958. name: "Macro+",
  1959. height: math.unit(105, "meters")
  1960. },
  1961. ]
  1962. ))
  1963. characterMakers.push(() => makeCharacter(
  1964. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  1965. {
  1966. front: {
  1967. height: math.unit(11, "feet"),
  1968. weight: math.unit(80, "kg"),
  1969. name: "Front",
  1970. image: {
  1971. source: "./media/characters/rai/front.svg",
  1972. extra: 1,
  1973. bottom: 0.03
  1974. }
  1975. },
  1976. side: {
  1977. height: math.unit(11, "feet"),
  1978. weight: math.unit(80, "kg"),
  1979. name: "Side",
  1980. image: {
  1981. source: "./media/characters/rai/side.svg"
  1982. }
  1983. },
  1984. back: {
  1985. height: math.unit(11, "feet"),
  1986. weight: math.unit(80, "lb"),
  1987. name: "Back",
  1988. image: {
  1989. source: "./media/characters/rai/back.svg",
  1990. extra: 1,
  1991. bottom: 0.01
  1992. }
  1993. },
  1994. feral: {
  1995. height: math.unit(11, "feet"),
  1996. weight: math.unit(800, "lb"),
  1997. name: "Feral",
  1998. image: {
  1999. source: "./media/characters/rai/feral.svg",
  2000. extra: 1050 / 659,
  2001. bottom: 0.07
  2002. }
  2003. },
  2004. dragon: {
  2005. height: math.unit(23, "feet"),
  2006. weight: math.unit(50000, "lb"),
  2007. name: "Dragon",
  2008. image: {
  2009. source: "./media/characters/rai/dragon.svg",
  2010. extra: 2498 / 2030,
  2011. bottom: 85.2 / 2584
  2012. }
  2013. },
  2014. maw: {
  2015. height: math.unit(6 / 3.81416, "feet"),
  2016. name: "Maw",
  2017. image: {
  2018. source: "./media/characters/rai/maw.svg"
  2019. }
  2020. },
  2021. },
  2022. [
  2023. {
  2024. name: "Normal",
  2025. height: math.unit(11, "feet")
  2026. },
  2027. {
  2028. name: "Macro",
  2029. height: math.unit(302, "feet"),
  2030. default: true
  2031. },
  2032. ]
  2033. ))
  2034. characterMakers.push(() => makeCharacter(
  2035. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2036. {
  2037. frontDressed: {
  2038. height: math.unit(216, "feet"),
  2039. weight: math.unit(7000000, "lb"),
  2040. name: "Front (Dressed)",
  2041. image: {
  2042. source: "./media/characters/jazzy/front-dressed.svg",
  2043. extra: 2738 / 2651,
  2044. bottom: 41.8 / 2786
  2045. }
  2046. },
  2047. backDressed: {
  2048. height: math.unit(216, "feet"),
  2049. weight: math.unit(7000000, "lb"),
  2050. name: "Back (Dressed)",
  2051. image: {
  2052. source: "./media/characters/jazzy/back-dressed.svg",
  2053. extra: 2775 / 2673,
  2054. bottom: 36.8 / 2817
  2055. }
  2056. },
  2057. front: {
  2058. height: math.unit(216, "feet"),
  2059. weight: math.unit(7000000, "lb"),
  2060. name: "Front",
  2061. image: {
  2062. source: "./media/characters/jazzy/front.svg",
  2063. extra: 2738 / 2651,
  2064. bottom: 41.8 / 2786
  2065. }
  2066. },
  2067. back: {
  2068. height: math.unit(216, "feet"),
  2069. weight: math.unit(7000000, "lb"),
  2070. name: "Back",
  2071. image: {
  2072. source: "./media/characters/jazzy/back.svg",
  2073. extra: 2775 / 2673,
  2074. bottom: 36.8 / 2817
  2075. }
  2076. },
  2077. maw: {
  2078. height: math.unit(20, "feet"),
  2079. name: "Maw",
  2080. image: {
  2081. source: "./media/characters/jazzy/maw.svg"
  2082. }
  2083. },
  2084. paws: {
  2085. height: math.unit(27.5, "feet"),
  2086. name: "Paws",
  2087. image: {
  2088. source: "./media/characters/jazzy/paws.svg"
  2089. }
  2090. },
  2091. eye: {
  2092. height: math.unit(4.4, "feet"),
  2093. name: "Eye",
  2094. image: {
  2095. source: "./media/characters/jazzy/eye.svg"
  2096. }
  2097. },
  2098. droneOffense: {
  2099. height: math.unit(9.5, "inches"),
  2100. name: "Drone (Offense)",
  2101. image: {
  2102. source: "./media/characters/jazzy/drone-offense.svg"
  2103. }
  2104. },
  2105. droneRecon: {
  2106. height: math.unit(9.5, "inches"),
  2107. name: "Drone (Recon)",
  2108. image: {
  2109. source: "./media/characters/jazzy/drone-recon.svg"
  2110. }
  2111. },
  2112. droneDefense: {
  2113. height: math.unit(9.5, "inches"),
  2114. name: "Drone (Defense)",
  2115. image: {
  2116. source: "./media/characters/jazzy/drone-defense.svg"
  2117. }
  2118. },
  2119. },
  2120. [
  2121. {
  2122. name: "Macro",
  2123. height: math.unit(216, "feet"),
  2124. default: true
  2125. },
  2126. ]
  2127. ))
  2128. characterMakers.push(() => makeCharacter(
  2129. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2130. {
  2131. front: {
  2132. height: math.unit(7, "feet"),
  2133. weight: math.unit(80, "kg"),
  2134. name: "Front",
  2135. image: {
  2136. source: "./media/characters/flamm/front.svg",
  2137. extra: 1794 / 1677,
  2138. bottom: 31.7 / 1828.5
  2139. }
  2140. },
  2141. },
  2142. [
  2143. {
  2144. name: "Normal",
  2145. height: math.unit(9.5, "feet")
  2146. },
  2147. {
  2148. name: "Macro",
  2149. height: math.unit(200, "feet"),
  2150. default: true
  2151. },
  2152. ]
  2153. ))
  2154. characterMakers.push(() => makeCharacter(
  2155. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2156. {
  2157. front: {
  2158. height: math.unit(7, "feet"),
  2159. weight: math.unit(80, "kg"),
  2160. name: "Front",
  2161. image: {
  2162. source: "./media/characters/zephiro/front.svg",
  2163. extra: 2309 / 2162,
  2164. bottom: 0.069
  2165. }
  2166. },
  2167. side: {
  2168. height: math.unit(7, "feet"),
  2169. weight: math.unit(80, "kg"),
  2170. name: "Side",
  2171. image: {
  2172. source: "./media/characters/zephiro/side.svg",
  2173. extra: 2403 / 2279,
  2174. bottom: 0.015
  2175. }
  2176. },
  2177. back: {
  2178. height: math.unit(7, "feet"),
  2179. weight: math.unit(80, "kg"),
  2180. name: "Back",
  2181. image: {
  2182. source: "./media/characters/zephiro/back.svg",
  2183. extra: 2373 / 2244,
  2184. bottom: 0.013
  2185. }
  2186. },
  2187. },
  2188. [
  2189. {
  2190. name: "Micro",
  2191. height: math.unit(3, "inches")
  2192. },
  2193. {
  2194. name: "Normal",
  2195. height: math.unit(5 + 3 / 12, "feet"),
  2196. default: true
  2197. },
  2198. {
  2199. name: "Macro",
  2200. height: math.unit(118, "feet")
  2201. },
  2202. ]
  2203. ))
  2204. characterMakers.push(() => makeCharacter(
  2205. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2206. {
  2207. front: {
  2208. height: math.unit(5, "feet"),
  2209. weight: math.unit(90, "kg"),
  2210. name: "Front",
  2211. image: {
  2212. source: "./media/characters/fory/front.svg",
  2213. extra: 2862 / 2674,
  2214. bottom: 180 / 3043.8
  2215. }
  2216. },
  2217. back: {
  2218. height: math.unit(5, "feet"),
  2219. weight: math.unit(90, "kg"),
  2220. name: "Back",
  2221. image: {
  2222. source: "./media/characters/fory/back.svg",
  2223. extra: 2962 / 2791,
  2224. bottom: 106 / 3071.8
  2225. }
  2226. },
  2227. foot: {
  2228. height: math.unit(2.14, "feet"),
  2229. name: "Foot",
  2230. image: {
  2231. source: "./media/characters/fory/foot.svg"
  2232. }
  2233. },
  2234. },
  2235. [
  2236. {
  2237. name: "Normal",
  2238. height: math.unit(5, "feet")
  2239. },
  2240. {
  2241. name: "Macro",
  2242. height: math.unit(50, "feet"),
  2243. default: true
  2244. },
  2245. {
  2246. name: "Megamacro",
  2247. height: math.unit(10, "miles")
  2248. },
  2249. {
  2250. name: "Gigamacro",
  2251. height: math.unit(5, "earths")
  2252. },
  2253. ]
  2254. ))
  2255. characterMakers.push(() => makeCharacter(
  2256. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2257. {
  2258. front: {
  2259. height: math.unit(7, "feet"),
  2260. weight: math.unit(90, "kg"),
  2261. name: "Front",
  2262. image: {
  2263. source: "./media/characters/kurrikage/front.svg",
  2264. extra: 1,
  2265. bottom: 0.035
  2266. }
  2267. },
  2268. back: {
  2269. height: math.unit(7, "feet"),
  2270. weight: math.unit(90, "lb"),
  2271. name: "Back",
  2272. image: {
  2273. source: "./media/characters/kurrikage/back.svg"
  2274. }
  2275. },
  2276. paw: {
  2277. height: math.unit(1.5, "feet"),
  2278. name: "Paw",
  2279. image: {
  2280. source: "./media/characters/kurrikage/paw.svg"
  2281. }
  2282. },
  2283. staff: {
  2284. height: math.unit(6.7, "feet"),
  2285. name: "Staff",
  2286. image: {
  2287. source: "./media/characters/kurrikage/staff.svg"
  2288. }
  2289. },
  2290. peek: {
  2291. height: math.unit(1.05, "feet"),
  2292. name: "Peeking",
  2293. image: {
  2294. source: "./media/characters/kurrikage/peek.svg",
  2295. bottom: 0.08
  2296. }
  2297. },
  2298. },
  2299. [
  2300. {
  2301. name: "Normal",
  2302. height: math.unit(12, "feet"),
  2303. default: true
  2304. },
  2305. {
  2306. name: "Big",
  2307. height: math.unit(20, "feet")
  2308. },
  2309. {
  2310. name: "Macro",
  2311. height: math.unit(500, "feet")
  2312. },
  2313. {
  2314. name: "Megamacro",
  2315. height: math.unit(20, "miles")
  2316. },
  2317. ]
  2318. ))
  2319. characterMakers.push(() => makeCharacter(
  2320. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2321. {
  2322. front: {
  2323. height: math.unit(6, "feet"),
  2324. weight: math.unit(75, "kg"),
  2325. name: "Front",
  2326. image: {
  2327. source: "./media/characters/shingo/front.svg",
  2328. extra: 3511 / 3338,
  2329. bottom: 0.005
  2330. }
  2331. },
  2332. paw: {
  2333. height: math.unit(1, "feet"),
  2334. name: "Paw",
  2335. image: {
  2336. source: "./media/characters/shingo/paw.svg"
  2337. }
  2338. },
  2339. },
  2340. [
  2341. {
  2342. name: "Micro",
  2343. height: math.unit(4, "inches")
  2344. },
  2345. {
  2346. name: "Normal",
  2347. height: math.unit(6, "feet"),
  2348. default: true
  2349. },
  2350. {
  2351. name: "Macro",
  2352. height: math.unit(108, "feet")
  2353. }
  2354. ]
  2355. ))
  2356. characterMakers.push(() => makeCharacter(
  2357. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2358. {
  2359. side: {
  2360. height: math.unit(6, "feet"),
  2361. weight: math.unit(75, "kg"),
  2362. name: "Side",
  2363. image: {
  2364. source: "./media/characters/aigey/side.svg"
  2365. }
  2366. },
  2367. },
  2368. [
  2369. {
  2370. name: "Macro",
  2371. height: math.unit(200, "feet"),
  2372. default: true
  2373. },
  2374. {
  2375. name: "Megamacro",
  2376. height: math.unit(100, "miles")
  2377. },
  2378. ]
  2379. )
  2380. )
  2381. characterMakers.push(() => makeCharacter(
  2382. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2383. {
  2384. front: {
  2385. height: math.unit(5 + 5 / 12, "feet"),
  2386. weight: math.unit(75, "kg"),
  2387. name: "Front",
  2388. image: {
  2389. source: "./media/characters/natasha/front.svg",
  2390. extra: 859 / 824,
  2391. bottom: 23 / 879.6
  2392. }
  2393. },
  2394. frontNsfw: {
  2395. height: math.unit(5 + 5 / 12, "feet"),
  2396. weight: math.unit(75, "kg"),
  2397. name: "Front (NSFW)",
  2398. image: {
  2399. source: "./media/characters/natasha/front-nsfw.svg",
  2400. extra: 859 / 824,
  2401. bottom: 23 / 879.6
  2402. }
  2403. },
  2404. frontErect: {
  2405. height: math.unit(5 + 5 / 12, "feet"),
  2406. weight: math.unit(75, "kg"),
  2407. name: "Front (Erect)",
  2408. image: {
  2409. source: "./media/characters/natasha/front-erect.svg",
  2410. extra: 859 / 824,
  2411. bottom: 23 / 879.6
  2412. }
  2413. },
  2414. back: {
  2415. height: math.unit(5 + 5 / 12, "feet"),
  2416. weight: math.unit(75, "kg"),
  2417. name: "Back",
  2418. image: {
  2419. source: "./media/characters/natasha/back.svg",
  2420. extra: 887.9 / 852.6,
  2421. bottom: 9.7 / 896.4
  2422. }
  2423. },
  2424. backAlt: {
  2425. height: math.unit(5 + 5 / 12, "feet"),
  2426. weight: math.unit(75, "kg"),
  2427. name: "Back (Alt)",
  2428. image: {
  2429. source: "./media/characters/natasha/back-alt.svg",
  2430. extra: 1236.7 / 1192,
  2431. bottom: 22.3 / 1258.2
  2432. }
  2433. },
  2434. dick: {
  2435. height: math.unit(1.772, "feet"),
  2436. name: "Dick",
  2437. image: {
  2438. source: "./media/characters/natasha/dick.svg"
  2439. }
  2440. },
  2441. paw: {
  2442. height: math.unit(0.250, "meters"),
  2443. name: "Paw",
  2444. image: {
  2445. source: "./media/characters/natasha/paw.svg"
  2446. }
  2447. },
  2448. },
  2449. [
  2450. {
  2451. name: "Normal",
  2452. height: math.unit(5 + 5 / 12, "feet")
  2453. },
  2454. {
  2455. name: "Large",
  2456. height: math.unit(12, "feet")
  2457. },
  2458. {
  2459. name: "Macro",
  2460. height: math.unit(100, "feet"),
  2461. default: true
  2462. },
  2463. {
  2464. name: "Macro+",
  2465. height: math.unit(260, "feet")
  2466. },
  2467. {
  2468. name: "Macro++",
  2469. height: math.unit(1, "mile")
  2470. },
  2471. ]
  2472. ))
  2473. characterMakers.push(() => makeCharacter(
  2474. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2475. {
  2476. front: {
  2477. height: math.unit(6, "feet"),
  2478. weight: math.unit(75, "kg"),
  2479. name: "Front",
  2480. image: {
  2481. source: "./media/characters/malik/front.svg"
  2482. }
  2483. },
  2484. side: {
  2485. height: math.unit(6, "feet"),
  2486. weight: math.unit(75, "kg"),
  2487. name: "Side",
  2488. image: {
  2489. source: "./media/characters/malik/side.svg",
  2490. extra: 1.1539
  2491. }
  2492. },
  2493. back: {
  2494. height: math.unit(6, "feet"),
  2495. weight: math.unit(75, "kg"),
  2496. name: "Back",
  2497. image: {
  2498. source: "./media/characters/malik/back.svg"
  2499. }
  2500. },
  2501. },
  2502. [
  2503. {
  2504. name: "Macro",
  2505. height: math.unit(156, "feet"),
  2506. default: true
  2507. },
  2508. {
  2509. name: "Macro+",
  2510. height: math.unit(1188, "feet")
  2511. },
  2512. ]
  2513. ))
  2514. characterMakers.push(() => makeCharacter(
  2515. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2516. {
  2517. front: {
  2518. height: math.unit(6, "feet"),
  2519. weight: math.unit(75, "kg"),
  2520. name: "Front",
  2521. image: {
  2522. source: "./media/characters/sefer/front.svg",
  2523. extra: 848 / 659,
  2524. bottom: 28.3 / 876.442
  2525. }
  2526. },
  2527. back: {
  2528. height: math.unit(6, "feet"),
  2529. weight: math.unit(75, "kg"),
  2530. name: "Back",
  2531. image: {
  2532. source: "./media/characters/sefer/back.svg",
  2533. extra: 864 / 695,
  2534. bottom: 10 / 871
  2535. }
  2536. },
  2537. frontDressed: {
  2538. height: math.unit(6, "feet"),
  2539. weight: math.unit(75, "kg"),
  2540. name: "Front (Dressed)",
  2541. image: {
  2542. source: "./media/characters/sefer/front-dressed.svg",
  2543. extra: 839 / 653,
  2544. bottom: 37.6 / 878
  2545. }
  2546. },
  2547. },
  2548. [
  2549. {
  2550. name: "Normal",
  2551. height: math.unit(6, "feet"),
  2552. default: true
  2553. },
  2554. ]
  2555. ))
  2556. characterMakers.push(() => makeCharacter(
  2557. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2558. {
  2559. body: {
  2560. height: math.unit(2.2428, "meter"),
  2561. weight: math.unit(124.738, "kg"),
  2562. name: "Body",
  2563. image: {
  2564. extra: 1225 / 1050,
  2565. source: "./media/characters/north/front.svg"
  2566. }
  2567. }
  2568. },
  2569. [
  2570. {
  2571. name: "Micro",
  2572. height: math.unit(4, "inches")
  2573. },
  2574. {
  2575. name: "Macro",
  2576. height: math.unit(63, "meters")
  2577. },
  2578. {
  2579. name: "Megamacro",
  2580. height: math.unit(101, "miles"),
  2581. default: true
  2582. }
  2583. ]
  2584. ))
  2585. characterMakers.push(() => makeCharacter(
  2586. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2587. {
  2588. angled: {
  2589. height: math.unit(4, "meter"),
  2590. weight: math.unit(150, "kg"),
  2591. name: "Angled",
  2592. image: {
  2593. source: "./media/characters/talan/angled-sfw.svg",
  2594. bottom: 29 / 3734
  2595. }
  2596. },
  2597. angledNsfw: {
  2598. height: math.unit(4, "meter"),
  2599. weight: math.unit(150, "kg"),
  2600. name: "Angled (NSFW)",
  2601. image: {
  2602. source: "./media/characters/talan/angled-nsfw.svg",
  2603. bottom: 29 / 3734
  2604. }
  2605. },
  2606. frontNsfw: {
  2607. height: math.unit(4, "meter"),
  2608. weight: math.unit(150, "kg"),
  2609. name: "Front (NSFW)",
  2610. image: {
  2611. source: "./media/characters/talan/front-nsfw.svg",
  2612. bottom: 29 / 3734
  2613. }
  2614. },
  2615. sideNsfw: {
  2616. height: math.unit(4, "meter"),
  2617. weight: math.unit(150, "kg"),
  2618. name: "Side (NSFW)",
  2619. image: {
  2620. source: "./media/characters/talan/side-nsfw.svg",
  2621. bottom: 29 / 3734
  2622. }
  2623. },
  2624. back: {
  2625. height: math.unit(4, "meter"),
  2626. weight: math.unit(150, "kg"),
  2627. name: "Back",
  2628. image: {
  2629. source: "./media/characters/talan/back.svg"
  2630. }
  2631. },
  2632. dickBottom: {
  2633. height: math.unit(0.621, "meter"),
  2634. name: "Dick (Bottom)",
  2635. image: {
  2636. source: "./media/characters/talan/dick-bottom.svg"
  2637. }
  2638. },
  2639. dickTop: {
  2640. height: math.unit(0.621, "meter"),
  2641. name: "Dick (Top)",
  2642. image: {
  2643. source: "./media/characters/talan/dick-top.svg"
  2644. }
  2645. },
  2646. dickSide: {
  2647. height: math.unit(0.305, "meter"),
  2648. name: "Dick (Side)",
  2649. image: {
  2650. source: "./media/characters/talan/dick-side.svg"
  2651. }
  2652. },
  2653. dickFront: {
  2654. height: math.unit(0.305, "meter"),
  2655. name: "Dick (Front)",
  2656. image: {
  2657. source: "./media/characters/talan/dick-front.svg"
  2658. }
  2659. },
  2660. },
  2661. [
  2662. {
  2663. name: "Normal",
  2664. height: math.unit(4, "meters")
  2665. },
  2666. {
  2667. name: "Macro",
  2668. height: math.unit(100, "meters")
  2669. },
  2670. {
  2671. name: "Megamacro",
  2672. height: math.unit(2, "miles"),
  2673. default: true
  2674. },
  2675. {
  2676. name: "Gigamacro",
  2677. height: math.unit(5000, "miles")
  2678. },
  2679. {
  2680. name: "Teramacro",
  2681. height: math.unit(100, "parsecs")
  2682. }
  2683. ]
  2684. ))
  2685. characterMakers.push(() => makeCharacter(
  2686. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2687. {
  2688. front: {
  2689. height: math.unit(2, "meter"),
  2690. weight: math.unit(90, "kg"),
  2691. name: "Front",
  2692. image: {
  2693. source: "./media/characters/gael'rathus/front.svg"
  2694. }
  2695. },
  2696. frontAlt: {
  2697. height: math.unit(2, "meter"),
  2698. weight: math.unit(90, "kg"),
  2699. name: "Front (alt)",
  2700. image: {
  2701. source: "./media/characters/gael'rathus/front-alt.svg"
  2702. }
  2703. },
  2704. frontAlt2: {
  2705. height: math.unit(2, "meter"),
  2706. weight: math.unit(90, "kg"),
  2707. name: "Front (alt 2)",
  2708. image: {
  2709. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2710. }
  2711. }
  2712. },
  2713. [
  2714. {
  2715. name: "Normal",
  2716. height: math.unit(9, "feet"),
  2717. default: true
  2718. },
  2719. {
  2720. name: "Large",
  2721. height: math.unit(25, "feet")
  2722. },
  2723. {
  2724. name: "Macro",
  2725. height: math.unit(0.25, "miles")
  2726. },
  2727. {
  2728. name: "Megamacro",
  2729. height: math.unit(10, "miles")
  2730. }
  2731. ]
  2732. ))
  2733. characterMakers.push(() => makeCharacter(
  2734. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2735. {
  2736. side: {
  2737. height: math.unit(2, "meter"),
  2738. weight: math.unit(140, "kg"),
  2739. name: "Side",
  2740. image: {
  2741. source: "./media/characters/sosha/side.svg",
  2742. bottom: 0.042
  2743. }
  2744. },
  2745. },
  2746. [
  2747. {
  2748. name: "Normal",
  2749. height: math.unit(12, "feet"),
  2750. default: true
  2751. }
  2752. ]
  2753. ))
  2754. characterMakers.push(() => makeCharacter(
  2755. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2756. {
  2757. side: {
  2758. height: math.unit(5 + 5 / 12, "feet"),
  2759. weight: math.unit(170, "kg"),
  2760. name: "Side",
  2761. image: {
  2762. source: "./media/characters/runnola/side.svg",
  2763. extra: 741 / 448,
  2764. bottom: 0.05
  2765. }
  2766. },
  2767. },
  2768. [
  2769. {
  2770. name: "Small",
  2771. height: math.unit(3, "feet")
  2772. },
  2773. {
  2774. name: "Normal",
  2775. height: math.unit(5 + 5 / 12, "feet"),
  2776. default: true
  2777. },
  2778. {
  2779. name: "Big",
  2780. height: math.unit(10, "feet")
  2781. },
  2782. ]
  2783. ))
  2784. characterMakers.push(() => makeCharacter(
  2785. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2786. {
  2787. front: {
  2788. height: math.unit(2, "meter"),
  2789. weight: math.unit(50, "kg"),
  2790. name: "Front",
  2791. image: {
  2792. source: "./media/characters/kurribird/front.svg",
  2793. bottom: 0.015
  2794. }
  2795. },
  2796. frontAlt: {
  2797. height: math.unit(1.5, "meter"),
  2798. weight: math.unit(50, "kg"),
  2799. name: "Front (Alt)",
  2800. image: {
  2801. source: "./media/characters/kurribird/front-alt.svg",
  2802. extra: 1.45
  2803. }
  2804. },
  2805. },
  2806. [
  2807. {
  2808. name: "Normal",
  2809. height: math.unit(7, "feet")
  2810. },
  2811. {
  2812. name: "Big",
  2813. height: math.unit(12, "feet"),
  2814. default: true
  2815. },
  2816. {
  2817. name: "Macro",
  2818. height: math.unit(1500, "feet")
  2819. },
  2820. {
  2821. name: "Megamacro",
  2822. height: math.unit(2, "miles")
  2823. }
  2824. ]
  2825. ))
  2826. characterMakers.push(() => makeCharacter(
  2827. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2828. {
  2829. front: {
  2830. height: math.unit(2, "meter"),
  2831. weight: math.unit(80, "kg"),
  2832. name: "Front",
  2833. image: {
  2834. source: "./media/characters/elbial/front.svg",
  2835. extra: 1643 / 1556,
  2836. bottom: 60.2 / 1696
  2837. }
  2838. },
  2839. side: {
  2840. height: math.unit(2, "meter"),
  2841. weight: math.unit(80, "kg"),
  2842. name: "Side",
  2843. image: {
  2844. source: "./media/characters/elbial/side.svg",
  2845. extra: 1630 / 1565,
  2846. bottom: 71.5 / 1697
  2847. }
  2848. },
  2849. back: {
  2850. height: math.unit(2, "meter"),
  2851. weight: math.unit(80, "kg"),
  2852. name: "Back",
  2853. image: {
  2854. source: "./media/characters/elbial/back.svg",
  2855. extra: 1668 / 1595,
  2856. bottom: 5.6 / 1672
  2857. }
  2858. },
  2859. frontDressed: {
  2860. height: math.unit(2, "meter"),
  2861. weight: math.unit(80, "kg"),
  2862. name: "Front (Dressed)",
  2863. image: {
  2864. source: "./media/characters/elbial/front-dressed.svg",
  2865. extra: 1653 / 1584,
  2866. bottom: 57 / 1708
  2867. }
  2868. },
  2869. genitals: {
  2870. height: math.unit(2 / 3.367, "meter"),
  2871. name: "Genitals",
  2872. image: {
  2873. source: "./media/characters/elbial/genitals.svg"
  2874. }
  2875. },
  2876. },
  2877. [
  2878. {
  2879. name: "Large",
  2880. height: math.unit(100, "feet")
  2881. },
  2882. {
  2883. name: "Macro",
  2884. height: math.unit(500, "feet"),
  2885. default: true
  2886. },
  2887. {
  2888. name: "Megamacro",
  2889. height: math.unit(10, "miles")
  2890. },
  2891. {
  2892. name: "Gigamacro",
  2893. height: math.unit(25000, "miles")
  2894. },
  2895. {
  2896. name: "Full-Size",
  2897. height: math.unit(8000000, "gigaparsecs")
  2898. }
  2899. ]
  2900. ))
  2901. characterMakers.push(() => makeCharacter(
  2902. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  2903. {
  2904. front: {
  2905. height: math.unit(2, "meter"),
  2906. weight: math.unit(60, "kg"),
  2907. name: "Front",
  2908. image: {
  2909. source: "./media/characters/noah/front.svg"
  2910. }
  2911. },
  2912. talons: {
  2913. height: math.unit(0.315, "meter"),
  2914. name: "Talons",
  2915. image: {
  2916. source: "./media/characters/noah/talons.svg"
  2917. }
  2918. }
  2919. },
  2920. [
  2921. {
  2922. name: "Large",
  2923. height: math.unit(50, "feet")
  2924. },
  2925. {
  2926. name: "Macro",
  2927. height: math.unit(750, "feet"),
  2928. default: true
  2929. },
  2930. {
  2931. name: "Megamacro",
  2932. height: math.unit(50, "miles")
  2933. },
  2934. {
  2935. name: "Gigamacro",
  2936. height: math.unit(100000, "miles")
  2937. },
  2938. {
  2939. name: "Full-Size",
  2940. height: math.unit(3000000000, "miles")
  2941. }
  2942. ]
  2943. ))
  2944. characterMakers.push(() => makeCharacter(
  2945. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  2946. {
  2947. front: {
  2948. height: math.unit(2, "meter"),
  2949. weight: math.unit(80, "kg"),
  2950. name: "Front",
  2951. image: {
  2952. source: "./media/characters/natalya/front.svg"
  2953. }
  2954. },
  2955. back: {
  2956. height: math.unit(2, "meter"),
  2957. weight: math.unit(80, "kg"),
  2958. name: "Back",
  2959. image: {
  2960. source: "./media/characters/natalya/back.svg"
  2961. }
  2962. }
  2963. },
  2964. [
  2965. {
  2966. name: "Normal",
  2967. height: math.unit(150, "feet"),
  2968. default: true
  2969. },
  2970. {
  2971. name: "Megamacro",
  2972. height: math.unit(5, "miles")
  2973. },
  2974. {
  2975. name: "Full-Size",
  2976. height: math.unit(600, "kiloparsecs")
  2977. }
  2978. ]
  2979. ))
  2980. characterMakers.push(() => makeCharacter(
  2981. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  2982. {
  2983. front: {
  2984. height: math.unit(2, "meter"),
  2985. weight: math.unit(50, "kg"),
  2986. name: "Front",
  2987. image: {
  2988. source: "./media/characters/erestrebah/front.svg",
  2989. extra: 208 / 193,
  2990. bottom: 0.055
  2991. }
  2992. },
  2993. back: {
  2994. height: math.unit(2, "meter"),
  2995. weight: math.unit(50, "kg"),
  2996. name: "Back",
  2997. image: {
  2998. source: "./media/characters/erestrebah/back.svg",
  2999. extra: 1.3
  3000. }
  3001. }
  3002. },
  3003. [
  3004. {
  3005. name: "Normal",
  3006. height: math.unit(10, "feet")
  3007. },
  3008. {
  3009. name: "Large",
  3010. height: math.unit(50, "feet"),
  3011. default: true
  3012. },
  3013. {
  3014. name: "Macro",
  3015. height: math.unit(300, "feet")
  3016. },
  3017. {
  3018. name: "Macro+",
  3019. height: math.unit(750, "feet")
  3020. },
  3021. {
  3022. name: "Megamacro",
  3023. height: math.unit(3, "miles")
  3024. }
  3025. ]
  3026. ))
  3027. characterMakers.push(() => makeCharacter(
  3028. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3029. {
  3030. front: {
  3031. height: math.unit(2, "meter"),
  3032. weight: math.unit(80, "kg"),
  3033. name: "Front",
  3034. image: {
  3035. source: "./media/characters/jennifer/front.svg",
  3036. bottom: 0.11,
  3037. extra: 1.16
  3038. }
  3039. },
  3040. frontAlt: {
  3041. height: math.unit(2, "meter"),
  3042. weight: math.unit(80, "kg"),
  3043. name: "Front (Alt)",
  3044. image: {
  3045. source: "./media/characters/jennifer/front-alt.svg"
  3046. }
  3047. }
  3048. },
  3049. [
  3050. {
  3051. name: "Canon Height",
  3052. height: math.unit(120, "feet"),
  3053. default: true
  3054. },
  3055. {
  3056. name: "Macro+",
  3057. height: math.unit(300, "feet")
  3058. },
  3059. {
  3060. name: "Megamacro",
  3061. height: math.unit(20000, "feet")
  3062. }
  3063. ]
  3064. ))
  3065. characterMakers.push(() => makeCharacter(
  3066. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3067. {
  3068. front: {
  3069. height: math.unit(2, "meter"),
  3070. weight: math.unit(50, "kg"),
  3071. name: "Front",
  3072. image: {
  3073. source: "./media/characters/kalista/front.svg",
  3074. extra: 1947 / 1700,
  3075. bottom: 76.6 / 1412.98
  3076. }
  3077. },
  3078. back: {
  3079. height: math.unit(2, "meter"),
  3080. weight: math.unit(50, "kg"),
  3081. name: "Back",
  3082. image: {
  3083. source: "./media/characters/kalista/back.svg",
  3084. extra: 1366 / 1156,
  3085. bottom: 33.9 / 1362.78
  3086. }
  3087. }
  3088. },
  3089. [
  3090. {
  3091. name: "Uncomfortably Small",
  3092. height: math.unit(10, "feet")
  3093. },
  3094. {
  3095. name: "Small",
  3096. height: math.unit(30, "feet")
  3097. },
  3098. {
  3099. name: "Macro",
  3100. height: math.unit(100, "feet"),
  3101. default: true
  3102. },
  3103. {
  3104. name: "Macro+",
  3105. height: math.unit(2000, "feet")
  3106. },
  3107. {
  3108. name: "True Form",
  3109. height: math.unit(8924, "miles")
  3110. }
  3111. ]
  3112. ))
  3113. characterMakers.push(() => makeCharacter(
  3114. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3115. {
  3116. front: {
  3117. height: math.unit(2, "meter"),
  3118. weight: math.unit(120, "kg"),
  3119. name: "Front",
  3120. image: {
  3121. source: "./media/characters/ggv/front.svg"
  3122. }
  3123. },
  3124. side: {
  3125. height: math.unit(2, "meter"),
  3126. weight: math.unit(120, "kg"),
  3127. name: "Side",
  3128. image: {
  3129. source: "./media/characters/ggv/side.svg"
  3130. }
  3131. }
  3132. },
  3133. [
  3134. {
  3135. name: "Extremely Puny",
  3136. height: math.unit(9 + 5 / 12, "feet")
  3137. },
  3138. {
  3139. name: "Horribly Small",
  3140. height: math.unit(47.7, "miles"),
  3141. default: true
  3142. },
  3143. {
  3144. name: "Reasonably Sized",
  3145. height: math.unit(25000, "parsecs")
  3146. },
  3147. {
  3148. name: "Slightly Uncompressed",
  3149. height: math.unit(7.77e31, "parsecs")
  3150. },
  3151. {
  3152. name: "Omniversal",
  3153. height: math.unit(1e300, "meters")
  3154. },
  3155. ]
  3156. ))
  3157. characterMakers.push(() => makeCharacter(
  3158. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3159. {
  3160. front: {
  3161. height: math.unit(2, "meter"),
  3162. weight: math.unit(75, "lb"),
  3163. name: "Front",
  3164. image: {
  3165. source: "./media/characters/napalm/front.svg"
  3166. }
  3167. },
  3168. back: {
  3169. height: math.unit(2, "meter"),
  3170. weight: math.unit(75, "lb"),
  3171. name: "Back",
  3172. image: {
  3173. source: "./media/characters/napalm/back.svg"
  3174. }
  3175. }
  3176. },
  3177. [
  3178. {
  3179. name: "Standard",
  3180. height: math.unit(55, "feet"),
  3181. default: true
  3182. }
  3183. ]
  3184. ))
  3185. characterMakers.push(() => makeCharacter(
  3186. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3187. {
  3188. front: {
  3189. height: math.unit(7 + 5 / 6, "feet"),
  3190. weight: math.unit(325, "lb"),
  3191. name: "Front",
  3192. image: {
  3193. source: "./media/characters/asana/front.svg",
  3194. extra: 1133 / 1060,
  3195. bottom: 15.2 / 1148.6
  3196. }
  3197. },
  3198. back: {
  3199. height: math.unit(7 + 5 / 6, "feet"),
  3200. weight: math.unit(325, "lb"),
  3201. name: "Back",
  3202. image: {
  3203. source: "./media/characters/asana/back.svg",
  3204. extra: 1114 / 1043,
  3205. bottom: 5 / 1120
  3206. }
  3207. },
  3208. dressedDark: {
  3209. height: math.unit(7 + 5 / 6, "feet"),
  3210. weight: math.unit(325, "lb"),
  3211. name: "Dressed (Dark)",
  3212. image: {
  3213. source: "./media/characters/asana/dressed-dark.svg",
  3214. extra: 1133 / 1060,
  3215. bottom: 15.2 / 1148.6
  3216. }
  3217. },
  3218. dressedLight: {
  3219. height: math.unit(7 + 5 / 6, "feet"),
  3220. weight: math.unit(325, "lb"),
  3221. name: "Dressed (Light)",
  3222. image: {
  3223. source: "./media/characters/asana/dressed-light.svg",
  3224. extra: 1133 / 1060,
  3225. bottom: 15.2 / 1148.6
  3226. }
  3227. },
  3228. },
  3229. [
  3230. {
  3231. name: "Standard",
  3232. height: math.unit(7 + 5 / 6, "feet"),
  3233. default: true
  3234. },
  3235. {
  3236. name: "Large",
  3237. height: math.unit(10, "meters")
  3238. },
  3239. {
  3240. name: "Macro",
  3241. height: math.unit(2500, "meters")
  3242. },
  3243. {
  3244. name: "Megamacro",
  3245. height: math.unit(5e6, "meters")
  3246. },
  3247. {
  3248. name: "Examacro",
  3249. height: math.unit(5e12, "lightyears")
  3250. },
  3251. {
  3252. name: "Max Size",
  3253. height: math.unit(1e31, "lightyears")
  3254. }
  3255. ]
  3256. ))
  3257. characterMakers.push(() => makeCharacter(
  3258. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3259. {
  3260. front: {
  3261. height: math.unit(2, "meter"),
  3262. weight: math.unit(60, "kg"),
  3263. name: "Front",
  3264. image: {
  3265. source: "./media/characters/ebony/front.svg",
  3266. bottom: 0.03,
  3267. extra: 1045 / 810 + 0.03
  3268. }
  3269. },
  3270. side: {
  3271. height: math.unit(2, "meter"),
  3272. weight: math.unit(60, "kg"),
  3273. name: "Side",
  3274. image: {
  3275. source: "./media/characters/ebony/side.svg",
  3276. bottom: 0.03,
  3277. extra: 1045 / 810 + 0.03
  3278. }
  3279. },
  3280. back: {
  3281. height: math.unit(2, "meter"),
  3282. weight: math.unit(60, "kg"),
  3283. name: "Back",
  3284. image: {
  3285. source: "./media/characters/ebony/back.svg",
  3286. bottom: 0.01,
  3287. extra: 1045 / 810 + 0.01
  3288. }
  3289. },
  3290. },
  3291. [
  3292. // TODO check why I did this lol
  3293. {
  3294. name: "Standard",
  3295. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3296. default: true
  3297. },
  3298. {
  3299. name: "Macro",
  3300. height: math.unit(200, "feet")
  3301. },
  3302. {
  3303. name: "Gigamacro",
  3304. height: math.unit(13000, "km")
  3305. }
  3306. ]
  3307. ))
  3308. characterMakers.push(() => makeCharacter(
  3309. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3310. {
  3311. front: {
  3312. height: math.unit(6, "feet"),
  3313. weight: math.unit(175, "lb"),
  3314. name: "Front",
  3315. image: {
  3316. source: "./media/characters/mountain/front.svg",
  3317. extra: 972 / 955,
  3318. bottom: 64 / 1036.6
  3319. }
  3320. },
  3321. back: {
  3322. height: math.unit(6, "feet"),
  3323. weight: math.unit(175, "lb"),
  3324. name: "Back",
  3325. image: {
  3326. source: "./media/characters/mountain/back.svg",
  3327. extra: 970 / 950,
  3328. bottom: 28.25 / 999
  3329. }
  3330. },
  3331. },
  3332. [
  3333. {
  3334. name: "Large",
  3335. height: math.unit(20, "meters")
  3336. },
  3337. {
  3338. name: "Macro",
  3339. height: math.unit(300, "meters")
  3340. },
  3341. {
  3342. name: "Gigamacro",
  3343. height: math.unit(10000, "km"),
  3344. default: true
  3345. },
  3346. {
  3347. name: "Examacro",
  3348. height: math.unit(10e9, "lightyears")
  3349. }
  3350. ]
  3351. ))
  3352. characterMakers.push(() => makeCharacter(
  3353. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3354. {
  3355. front: {
  3356. height: math.unit(8, "feet"),
  3357. weight: math.unit(500, "lb"),
  3358. name: "Front",
  3359. image: {
  3360. source: "./media/characters/rick/front.svg"
  3361. }
  3362. }
  3363. },
  3364. [
  3365. {
  3366. name: "Normal",
  3367. height: math.unit(8, "feet"),
  3368. default: true
  3369. },
  3370. {
  3371. name: "Macro",
  3372. height: math.unit(5, "km")
  3373. }
  3374. ]
  3375. ))
  3376. characterMakers.push(() => makeCharacter(
  3377. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3378. {
  3379. front: {
  3380. height: math.unit(8, "feet"),
  3381. weight: math.unit(120, "lb"),
  3382. name: "Front",
  3383. image: {
  3384. source: "./media/characters/ona/front.svg"
  3385. }
  3386. },
  3387. frontAlt: {
  3388. height: math.unit(8, "feet"),
  3389. weight: math.unit(120, "lb"),
  3390. name: "Front (Alt)",
  3391. image: {
  3392. source: "./media/characters/ona/front-alt.svg"
  3393. }
  3394. },
  3395. back: {
  3396. height: math.unit(8, "feet"),
  3397. weight: math.unit(120, "lb"),
  3398. name: "Back",
  3399. image: {
  3400. source: "./media/characters/ona/back.svg"
  3401. }
  3402. },
  3403. foot: {
  3404. height: math.unit(1.1, "feet"),
  3405. name: "Foot",
  3406. image: {
  3407. source: "./media/characters/ona/foot.svg"
  3408. }
  3409. }
  3410. },
  3411. [
  3412. {
  3413. name: "Megamacro",
  3414. height: math.unit(70, "km"),
  3415. default: true
  3416. },
  3417. {
  3418. name: "Gigamacro",
  3419. height: math.unit(681818, "miles")
  3420. },
  3421. {
  3422. name: "Examacro",
  3423. height: math.unit(3800000, "lightyears")
  3424. },
  3425. ]
  3426. ))
  3427. characterMakers.push(() => makeCharacter(
  3428. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3429. {
  3430. front: {
  3431. height: math.unit(12, "feet"),
  3432. weight: math.unit(3000, "lb"),
  3433. name: "Front",
  3434. image: {
  3435. source: "./media/characters/mech/front.svg",
  3436. extra: 2900/2770,
  3437. bottom: 110/3010
  3438. }
  3439. },
  3440. back: {
  3441. height: math.unit(12, "feet"),
  3442. weight: math.unit(3000, "lb"),
  3443. name: "Back",
  3444. image: {
  3445. source: "./media/characters/mech/back.svg",
  3446. extra: 3011/2890,
  3447. bottom: 94/3105
  3448. }
  3449. },
  3450. maw: {
  3451. height: math.unit(3.07, "feet"),
  3452. name: "Maw",
  3453. image: {
  3454. source: "./media/characters/mech/maw.svg"
  3455. }
  3456. },
  3457. head: {
  3458. height: math.unit(2.82, "feet"),
  3459. name: "Head",
  3460. image: {
  3461. source: "./media/characters/mech/head.svg"
  3462. }
  3463. },
  3464. dick: {
  3465. height: math.unit(1.43, "feet"),
  3466. name: "Dick",
  3467. image: {
  3468. source: "./media/characters/mech/dick.svg"
  3469. }
  3470. },
  3471. },
  3472. [
  3473. {
  3474. name: "Normal",
  3475. height: math.unit(12, "feet")
  3476. },
  3477. {
  3478. name: "Macro",
  3479. height: math.unit(300, "feet"),
  3480. default: true
  3481. },
  3482. {
  3483. name: "Macro+",
  3484. height: math.unit(1500, "feet")
  3485. },
  3486. ]
  3487. ))
  3488. characterMakers.push(() => makeCharacter(
  3489. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3490. {
  3491. front: {
  3492. height: math.unit(1.3, "meter"),
  3493. weight: math.unit(30, "kg"),
  3494. name: "Front",
  3495. image: {
  3496. source: "./media/characters/gregory/front.svg",
  3497. }
  3498. }
  3499. },
  3500. [
  3501. {
  3502. name: "Normal",
  3503. height: math.unit(1.3, "meter"),
  3504. default: true
  3505. },
  3506. {
  3507. name: "Macro",
  3508. height: math.unit(20, "meter")
  3509. }
  3510. ]
  3511. ))
  3512. characterMakers.push(() => makeCharacter(
  3513. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3514. {
  3515. front: {
  3516. height: math.unit(2.8, "meter"),
  3517. weight: math.unit(200, "kg"),
  3518. name: "Front",
  3519. image: {
  3520. source: "./media/characters/elory/front.svg",
  3521. }
  3522. }
  3523. },
  3524. [
  3525. {
  3526. name: "Normal",
  3527. height: math.unit(2.8, "meter"),
  3528. default: true
  3529. },
  3530. {
  3531. name: "Macro",
  3532. height: math.unit(38, "meter")
  3533. }
  3534. ]
  3535. ))
  3536. characterMakers.push(() => makeCharacter(
  3537. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3538. {
  3539. front: {
  3540. height: math.unit(470, "feet"),
  3541. weight: math.unit(924, "tons"),
  3542. name: "Front",
  3543. image: {
  3544. source: "./media/characters/angelpatamon/front.svg",
  3545. }
  3546. }
  3547. },
  3548. [
  3549. {
  3550. name: "Normal",
  3551. height: math.unit(470, "feet"),
  3552. default: true
  3553. },
  3554. {
  3555. name: "Deity Size I",
  3556. height: math.unit(28651.2, "km")
  3557. },
  3558. {
  3559. name: "Deity Size II",
  3560. height: math.unit(171907.2, "km")
  3561. }
  3562. ]
  3563. ))
  3564. characterMakers.push(() => makeCharacter(
  3565. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3566. {
  3567. side: {
  3568. height: math.unit(7.2, "meter"),
  3569. weight: math.unit(8.2, "tons"),
  3570. name: "Side",
  3571. image: {
  3572. source: "./media/characters/cryae/side.svg",
  3573. extra: 3500 / 1500
  3574. }
  3575. }
  3576. },
  3577. [
  3578. {
  3579. name: "Normal",
  3580. height: math.unit(7.2, "meter"),
  3581. default: true
  3582. }
  3583. ]
  3584. ))
  3585. characterMakers.push(() => makeCharacter(
  3586. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3587. {
  3588. front: {
  3589. height: math.unit(6, "feet"),
  3590. weight: math.unit(175, "lb"),
  3591. name: "Front",
  3592. image: {
  3593. source: "./media/characters/xera/front.svg",
  3594. extra: 2377 / 1972,
  3595. bottom: 75.5 / 2452
  3596. }
  3597. },
  3598. side: {
  3599. height: math.unit(6, "feet"),
  3600. weight: math.unit(175, "lb"),
  3601. name: "Side",
  3602. image: {
  3603. source: "./media/characters/xera/side.svg",
  3604. extra: 2345 / 2019,
  3605. bottom: 39.7 / 2384
  3606. }
  3607. },
  3608. back: {
  3609. height: math.unit(6, "feet"),
  3610. weight: math.unit(175, "lb"),
  3611. name: "Back",
  3612. image: {
  3613. source: "./media/characters/xera/back.svg",
  3614. extra: 2095 / 1984,
  3615. bottom: 67 / 2166
  3616. }
  3617. },
  3618. },
  3619. [
  3620. {
  3621. name: "Small",
  3622. height: math.unit(10, "feet")
  3623. },
  3624. {
  3625. name: "Macro",
  3626. height: math.unit(500, "meters"),
  3627. default: true
  3628. },
  3629. {
  3630. name: "Macro+",
  3631. height: math.unit(10, "km")
  3632. },
  3633. {
  3634. name: "Gigamacro",
  3635. height: math.unit(25000, "km")
  3636. },
  3637. {
  3638. name: "Teramacro",
  3639. height: math.unit(3e6, "km")
  3640. }
  3641. ]
  3642. ))
  3643. characterMakers.push(() => makeCharacter(
  3644. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3645. {
  3646. front: {
  3647. height: math.unit(6, "feet"),
  3648. weight: math.unit(175, "lb"),
  3649. name: "Front",
  3650. image: {
  3651. source: "./media/characters/nebula/front.svg",
  3652. extra: 2566 / 2362,
  3653. bottom: 81 / 2644
  3654. }
  3655. }
  3656. },
  3657. [
  3658. {
  3659. name: "Small",
  3660. height: math.unit(4.5, "meters")
  3661. },
  3662. {
  3663. name: "Macro",
  3664. height: math.unit(1500, "meters"),
  3665. default: true
  3666. },
  3667. {
  3668. name: "Megamacro",
  3669. height: math.unit(150, "km")
  3670. },
  3671. {
  3672. name: "Gigamacro",
  3673. height: math.unit(27000, "km")
  3674. }
  3675. ]
  3676. ))
  3677. characterMakers.push(() => makeCharacter(
  3678. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3679. {
  3680. front: {
  3681. height: math.unit(6, "feet"),
  3682. weight: math.unit(225, "lb"),
  3683. name: "Front",
  3684. image: {
  3685. source: "./media/characters/abysgar/front.svg"
  3686. }
  3687. }
  3688. },
  3689. [
  3690. {
  3691. name: "Small",
  3692. height: math.unit(4.5, "meters")
  3693. },
  3694. {
  3695. name: "Macro",
  3696. height: math.unit(1250, "meters"),
  3697. default: true
  3698. },
  3699. {
  3700. name: "Megamacro",
  3701. height: math.unit(125, "km")
  3702. },
  3703. {
  3704. name: "Gigamacro",
  3705. height: math.unit(26000, "km")
  3706. }
  3707. ]
  3708. ))
  3709. characterMakers.push(() => makeCharacter(
  3710. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3711. {
  3712. front: {
  3713. height: math.unit(6, "feet"),
  3714. weight: math.unit(180, "lb"),
  3715. name: "Front",
  3716. image: {
  3717. source: "./media/characters/yakuz/front.svg"
  3718. }
  3719. }
  3720. },
  3721. [
  3722. {
  3723. name: "Small",
  3724. height: math.unit(5, "meters")
  3725. },
  3726. {
  3727. name: "Macro",
  3728. height: math.unit(1500, "meters"),
  3729. default: true
  3730. },
  3731. {
  3732. name: "Megamacro",
  3733. height: math.unit(200, "km")
  3734. },
  3735. {
  3736. name: "Gigamacro",
  3737. height: math.unit(100000, "km")
  3738. }
  3739. ]
  3740. ))
  3741. characterMakers.push(() => makeCharacter(
  3742. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3743. {
  3744. front: {
  3745. height: math.unit(6, "feet"),
  3746. weight: math.unit(175, "lb"),
  3747. name: "Front",
  3748. image: {
  3749. source: "./media/characters/mirova/front.svg",
  3750. extra: 3334 / 3071,
  3751. bottom: 42 / 3375.6
  3752. }
  3753. }
  3754. },
  3755. [
  3756. {
  3757. name: "Small",
  3758. height: math.unit(5, "meters")
  3759. },
  3760. {
  3761. name: "Macro",
  3762. height: math.unit(900, "meters"),
  3763. default: true
  3764. },
  3765. {
  3766. name: "Megamacro",
  3767. height: math.unit(135, "km")
  3768. },
  3769. {
  3770. name: "Gigamacro",
  3771. height: math.unit(20000, "km")
  3772. }
  3773. ]
  3774. ))
  3775. characterMakers.push(() => makeCharacter(
  3776. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3777. {
  3778. side: {
  3779. height: math.unit(28.35, "feet"),
  3780. weight: math.unit(99.75, "tons"),
  3781. name: "Side",
  3782. image: {
  3783. source: "./media/characters/asana-mech/side.svg",
  3784. extra: 923 / 699,
  3785. bottom: 50 / 975
  3786. }
  3787. },
  3788. chaingun: {
  3789. height: math.unit(7, "feet"),
  3790. weight: math.unit(2400, "lb"),
  3791. name: "Chaingun",
  3792. image: {
  3793. source: "./media/characters/asana-mech/chaingun.svg"
  3794. }
  3795. },
  3796. laser: {
  3797. height: math.unit(7.12, "feet"),
  3798. weight: math.unit(2000, "lb"),
  3799. name: "Laser",
  3800. image: {
  3801. source: "./media/characters/asana-mech/laser.svg"
  3802. }
  3803. },
  3804. },
  3805. [
  3806. {
  3807. name: "Normal",
  3808. height: math.unit(28.35, "feet"),
  3809. default: true
  3810. },
  3811. {
  3812. name: "Macro",
  3813. height: math.unit(2500, "feet")
  3814. },
  3815. {
  3816. name: "Megamacro",
  3817. height: math.unit(25, "miles")
  3818. },
  3819. {
  3820. name: "Examacro",
  3821. height: math.unit(6e8, "lightyears")
  3822. },
  3823. ]
  3824. ))
  3825. characterMakers.push(() => makeCharacter(
  3826. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3827. {
  3828. front: {
  3829. height: math.unit(5, "meters"),
  3830. weight: math.unit(1000, "kg"),
  3831. name: "Front",
  3832. image: {
  3833. source: "./media/characters/asche/front.svg",
  3834. extra: 1258 / 1190,
  3835. bottom: 47 / 1305
  3836. }
  3837. },
  3838. frontUnderwear: {
  3839. height: math.unit(5, "meters"),
  3840. weight: math.unit(1000, "kg"),
  3841. name: "Front (Underwear)",
  3842. image: {
  3843. source: "./media/characters/asche/front-underwear.svg",
  3844. extra: 1258 / 1190,
  3845. bottom: 47 / 1305
  3846. }
  3847. },
  3848. frontDressed: {
  3849. height: math.unit(5, "meters"),
  3850. weight: math.unit(1000, "kg"),
  3851. name: "Front (Dressed)",
  3852. image: {
  3853. source: "./media/characters/asche/front-dressed.svg",
  3854. extra: 1258 / 1190,
  3855. bottom: 47 / 1305
  3856. }
  3857. },
  3858. frontArmor: {
  3859. height: math.unit(5, "meters"),
  3860. weight: math.unit(1000, "kg"),
  3861. name: "Front (Armored)",
  3862. image: {
  3863. source: "./media/characters/asche/front-armored.svg",
  3864. extra: 1374 / 1308,
  3865. bottom: 23 / 1397
  3866. }
  3867. },
  3868. mp724: {
  3869. height: math.unit(0.96, "meters"),
  3870. weight: math.unit(38, "kg"),
  3871. name: "H&K MP724",
  3872. image: {
  3873. source: "./media/characters/asche/h&k-mp724.svg"
  3874. }
  3875. },
  3876. side: {
  3877. height: math.unit(5, "meters"),
  3878. weight: math.unit(1000, "kg"),
  3879. name: "Side",
  3880. image: {
  3881. source: "./media/characters/asche/side.svg",
  3882. extra: 1717 / 1609,
  3883. bottom: 0.005
  3884. }
  3885. },
  3886. back: {
  3887. height: math.unit(5, "meters"),
  3888. weight: math.unit(1000, "kg"),
  3889. name: "Back",
  3890. image: {
  3891. source: "./media/characters/asche/back.svg",
  3892. extra: 1570 / 1501
  3893. }
  3894. },
  3895. },
  3896. [
  3897. {
  3898. name: "DEFCON 5",
  3899. height: math.unit(5, "meters")
  3900. },
  3901. {
  3902. name: "DEFCON 4",
  3903. height: math.unit(500, "meters"),
  3904. default: true
  3905. },
  3906. {
  3907. name: "DEFCON 3",
  3908. height: math.unit(5, "km")
  3909. },
  3910. {
  3911. name: "DEFCON 2",
  3912. height: math.unit(500, "km")
  3913. },
  3914. {
  3915. name: "DEFCON 1",
  3916. height: math.unit(500000, "km")
  3917. },
  3918. {
  3919. name: "DEFCON 0",
  3920. height: math.unit(3, "gigaparsecs")
  3921. },
  3922. ]
  3923. ))
  3924. characterMakers.push(() => makeCharacter(
  3925. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  3926. {
  3927. front: {
  3928. height: math.unit(2, "meters"),
  3929. weight: math.unit(76, "kg"),
  3930. name: "Front",
  3931. image: {
  3932. source: "./media/characters/gale/front.svg"
  3933. }
  3934. },
  3935. frontAlt1: {
  3936. height: math.unit(2, "meters"),
  3937. weight: math.unit(76, "kg"),
  3938. name: "Front (Alt 1)",
  3939. image: {
  3940. source: "./media/characters/gale/front-alt-1.svg"
  3941. }
  3942. },
  3943. frontAlt2: {
  3944. height: math.unit(2, "meters"),
  3945. weight: math.unit(76, "kg"),
  3946. name: "Front (Alt 2)",
  3947. image: {
  3948. source: "./media/characters/gale/front-alt-2.svg"
  3949. }
  3950. },
  3951. },
  3952. [
  3953. {
  3954. name: "Normal",
  3955. height: math.unit(7, "feet")
  3956. },
  3957. {
  3958. name: "Macro",
  3959. height: math.unit(150, "feet"),
  3960. default: true
  3961. },
  3962. {
  3963. name: "Macro+",
  3964. height: math.unit(300, "feet")
  3965. },
  3966. ]
  3967. ))
  3968. characterMakers.push(() => makeCharacter(
  3969. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  3970. {
  3971. front: {
  3972. height: math.unit(2, "meters"),
  3973. weight: math.unit(76, "kg"),
  3974. name: "Front",
  3975. image: {
  3976. source: "./media/characters/draylen/front.svg"
  3977. }
  3978. }
  3979. },
  3980. [
  3981. {
  3982. name: "Macro",
  3983. height: math.unit(150, "feet"),
  3984. default: true
  3985. }
  3986. ]
  3987. ))
  3988. characterMakers.push(() => makeCharacter(
  3989. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  3990. {
  3991. front: {
  3992. height: math.unit(7 + 9 / 12, "feet"),
  3993. weight: math.unit(379, "lbs"),
  3994. name: "Front",
  3995. image: {
  3996. source: "./media/characters/chez/front.svg"
  3997. }
  3998. },
  3999. side: {
  4000. height: math.unit(7 + 9 / 12, "feet"),
  4001. weight: math.unit(379, "lbs"),
  4002. name: "Side",
  4003. image: {
  4004. source: "./media/characters/chez/side.svg"
  4005. }
  4006. }
  4007. },
  4008. [
  4009. {
  4010. name: "Normal",
  4011. height: math.unit(7 + 9 / 12, "feet"),
  4012. default: true
  4013. },
  4014. {
  4015. name: "God King",
  4016. height: math.unit(9750000, "meters")
  4017. }
  4018. ]
  4019. ))
  4020. characterMakers.push(() => makeCharacter(
  4021. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4022. {
  4023. front: {
  4024. height: math.unit(6, "feet"),
  4025. weight: math.unit(275, "lbs"),
  4026. name: "Front",
  4027. image: {
  4028. source: "./media/characters/kaylum/front.svg",
  4029. bottom: 0.01,
  4030. extra: 1166 / 1031
  4031. }
  4032. },
  4033. frontWingless: {
  4034. height: math.unit(6, "feet"),
  4035. weight: math.unit(275, "lbs"),
  4036. name: "Front (Wingless)",
  4037. image: {
  4038. source: "./media/characters/kaylum/front-wingless.svg",
  4039. bottom: 0.01,
  4040. extra: 1117 / 1031
  4041. }
  4042. }
  4043. },
  4044. [
  4045. {
  4046. name: "Normal",
  4047. height: math.unit(3.05, "meters")
  4048. },
  4049. {
  4050. name: "Master",
  4051. height: math.unit(5.5, "meters")
  4052. },
  4053. {
  4054. name: "Rampage",
  4055. height: math.unit(19, "meters")
  4056. },
  4057. {
  4058. name: "Macro Lite",
  4059. height: math.unit(37, "meters")
  4060. },
  4061. {
  4062. name: "Hyper Predator",
  4063. height: math.unit(61, "meters")
  4064. },
  4065. {
  4066. name: "Macro",
  4067. height: math.unit(138, "meters"),
  4068. default: true
  4069. }
  4070. ]
  4071. ))
  4072. characterMakers.push(() => makeCharacter(
  4073. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4074. {
  4075. front: {
  4076. height: math.unit(6, "feet"),
  4077. weight: math.unit(150, "lbs"),
  4078. name: "Front",
  4079. image: {
  4080. source: "./media/characters/geta/front.svg"
  4081. }
  4082. }
  4083. },
  4084. [
  4085. {
  4086. name: "Micro",
  4087. height: math.unit(3, "inches"),
  4088. default: true
  4089. },
  4090. {
  4091. name: "Normal",
  4092. height: math.unit(5 + 5 / 12, "feet")
  4093. }
  4094. ]
  4095. ))
  4096. characterMakers.push(() => makeCharacter(
  4097. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4098. {
  4099. front: {
  4100. height: math.unit(6, "feet"),
  4101. weight: math.unit(300, "lbs"),
  4102. name: "Front",
  4103. image: {
  4104. source: "./media/characters/tyrnn/front.svg"
  4105. }
  4106. }
  4107. },
  4108. [
  4109. {
  4110. name: "Main Height",
  4111. height: math.unit(355, "feet"),
  4112. default: true
  4113. },
  4114. {
  4115. name: "Fave. Height",
  4116. height: math.unit(2400, "feet")
  4117. }
  4118. ]
  4119. ))
  4120. characterMakers.push(() => makeCharacter(
  4121. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4122. {
  4123. front: {
  4124. height: math.unit(6, "feet"),
  4125. weight: math.unit(300, "lbs"),
  4126. name: "Front",
  4127. image: {
  4128. source: "./media/characters/appledectomy/front.svg"
  4129. }
  4130. }
  4131. },
  4132. [
  4133. {
  4134. name: "Macro",
  4135. height: math.unit(2500, "feet")
  4136. },
  4137. {
  4138. name: "Megamacro",
  4139. height: math.unit(50, "miles"),
  4140. default: true
  4141. },
  4142. {
  4143. name: "Gigamacro",
  4144. height: math.unit(5000, "miles")
  4145. },
  4146. {
  4147. name: "Teramacro",
  4148. height: math.unit(250000, "miles")
  4149. },
  4150. ]
  4151. ))
  4152. characterMakers.push(() => makeCharacter(
  4153. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4154. {
  4155. front: {
  4156. height: math.unit(6, "feet"),
  4157. weight: math.unit(200, "lbs"),
  4158. name: "Front",
  4159. image: {
  4160. source: "./media/characters/vulpes/front.svg",
  4161. extra: 573 / 543,
  4162. bottom: 0.033
  4163. }
  4164. },
  4165. side: {
  4166. height: math.unit(6, "feet"),
  4167. weight: math.unit(200, "lbs"),
  4168. name: "Side",
  4169. image: {
  4170. source: "./media/characters/vulpes/side.svg",
  4171. extra: 577 / 549,
  4172. bottom: 11 / 588
  4173. }
  4174. },
  4175. back: {
  4176. height: math.unit(6, "feet"),
  4177. weight: math.unit(200, "lbs"),
  4178. name: "Back",
  4179. image: {
  4180. source: "./media/characters/vulpes/back.svg",
  4181. extra: 573 / 549,
  4182. bottom: 20 / 593
  4183. }
  4184. },
  4185. feet: {
  4186. height: math.unit(1.276, "feet"),
  4187. name: "Feet",
  4188. image: {
  4189. source: "./media/characters/vulpes/feet.svg"
  4190. }
  4191. },
  4192. maw: {
  4193. height: math.unit(1.18, "feet"),
  4194. name: "Maw",
  4195. image: {
  4196. source: "./media/characters/vulpes/maw.svg"
  4197. }
  4198. },
  4199. },
  4200. [
  4201. {
  4202. name: "Micro",
  4203. height: math.unit(2, "inches")
  4204. },
  4205. {
  4206. name: "Normal",
  4207. height: math.unit(6.3, "feet")
  4208. },
  4209. {
  4210. name: "Macro",
  4211. height: math.unit(850, "feet")
  4212. },
  4213. {
  4214. name: "Megamacro",
  4215. height: math.unit(7500, "feet"),
  4216. default: true
  4217. },
  4218. {
  4219. name: "Gigamacro",
  4220. height: math.unit(570000, "miles")
  4221. }
  4222. ]
  4223. ))
  4224. characterMakers.push(() => makeCharacter(
  4225. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4226. {
  4227. front: {
  4228. height: math.unit(6, "feet"),
  4229. weight: math.unit(210, "lbs"),
  4230. name: "Front",
  4231. image: {
  4232. source: "./media/characters/rain-fallen/front.svg"
  4233. }
  4234. },
  4235. side: {
  4236. height: math.unit(6, "feet"),
  4237. weight: math.unit(210, "lbs"),
  4238. name: "Side",
  4239. image: {
  4240. source: "./media/characters/rain-fallen/side.svg"
  4241. }
  4242. },
  4243. back: {
  4244. height: math.unit(6, "feet"),
  4245. weight: math.unit(210, "lbs"),
  4246. name: "Back",
  4247. image: {
  4248. source: "./media/characters/rain-fallen/back.svg"
  4249. }
  4250. },
  4251. feral: {
  4252. height: math.unit(9, "feet"),
  4253. weight: math.unit(700, "lbs"),
  4254. name: "Feral",
  4255. image: {
  4256. source: "./media/characters/rain-fallen/feral.svg"
  4257. }
  4258. },
  4259. },
  4260. [
  4261. {
  4262. name: "Normal",
  4263. height: math.unit(5, "meter")
  4264. },
  4265. {
  4266. name: "Macro",
  4267. height: math.unit(150, "meter"),
  4268. default: true
  4269. },
  4270. {
  4271. name: "Megamacro",
  4272. height: math.unit(278e6, "meter")
  4273. },
  4274. {
  4275. name: "Gigamacro",
  4276. height: math.unit(2e9, "meter")
  4277. },
  4278. {
  4279. name: "Teramacro",
  4280. height: math.unit(8e12, "meter")
  4281. },
  4282. {
  4283. name: "Devourer",
  4284. height: math.unit(14, "zettameters")
  4285. },
  4286. {
  4287. name: "Scarlet King",
  4288. height: math.unit(18, "yottameters")
  4289. },
  4290. {
  4291. name: "Void",
  4292. height: math.unit(6.66e66, "yottameters")
  4293. }
  4294. ]
  4295. ))
  4296. characterMakers.push(() => makeCharacter(
  4297. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4298. {
  4299. standing: {
  4300. height: math.unit(6, "feet"),
  4301. weight: math.unit(180, "lbs"),
  4302. name: "Standing",
  4303. image: {
  4304. source: "./media/characters/zaakira/standing.svg"
  4305. }
  4306. },
  4307. laying: {
  4308. height: math.unit(3, "feet"),
  4309. weight: math.unit(180, "lbs"),
  4310. name: "Laying",
  4311. image: {
  4312. source: "./media/characters/zaakira/laying.svg"
  4313. }
  4314. },
  4315. },
  4316. [
  4317. {
  4318. name: "Normal",
  4319. height: math.unit(12, "feet")
  4320. },
  4321. {
  4322. name: "Macro",
  4323. height: math.unit(279, "feet"),
  4324. default: true
  4325. }
  4326. ]
  4327. ))
  4328. characterMakers.push(() => makeCharacter(
  4329. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4330. {
  4331. femSfw: {
  4332. height: math.unit(8, "feet"),
  4333. weight: math.unit(350, "lb"),
  4334. name: "Fem",
  4335. image: {
  4336. source: "./media/characters/sigvald/fem-sfw.svg",
  4337. extra: 182 / 164,
  4338. bottom: 8.7 / 190.5
  4339. }
  4340. },
  4341. femNsfw: {
  4342. height: math.unit(8, "feet"),
  4343. weight: math.unit(350, "lb"),
  4344. name: "Fem (NSFW)",
  4345. image: {
  4346. source: "./media/characters/sigvald/fem-nsfw.svg",
  4347. extra: 182 / 164,
  4348. bottom: 8.7 / 190.5
  4349. }
  4350. },
  4351. maleNsfw: {
  4352. height: math.unit(8, "feet"),
  4353. weight: math.unit(350, "lb"),
  4354. name: "Male (NSFW)",
  4355. image: {
  4356. source: "./media/characters/sigvald/male-nsfw.svg",
  4357. extra: 182 / 164,
  4358. bottom: 8.7 / 190.5
  4359. }
  4360. },
  4361. hermNsfw: {
  4362. height: math.unit(8, "feet"),
  4363. weight: math.unit(350, "lb"),
  4364. name: "Herm (NSFW)",
  4365. image: {
  4366. source: "./media/characters/sigvald/herm-nsfw.svg",
  4367. extra: 182 / 164,
  4368. bottom: 8.7 / 190.5
  4369. }
  4370. },
  4371. dick: {
  4372. height: math.unit(2.36, "feet"),
  4373. name: "Dick",
  4374. image: {
  4375. source: "./media/characters/sigvald/dick.svg"
  4376. }
  4377. },
  4378. eye: {
  4379. height: math.unit(0.31, "feet"),
  4380. name: "Eye",
  4381. image: {
  4382. source: "./media/characters/sigvald/eye.svg"
  4383. }
  4384. },
  4385. mouth: {
  4386. height: math.unit(0.92, "feet"),
  4387. name: "Mouth",
  4388. image: {
  4389. source: "./media/characters/sigvald/mouth.svg"
  4390. }
  4391. },
  4392. paws: {
  4393. height: math.unit(2.2, "feet"),
  4394. name: "Paws",
  4395. image: {
  4396. source: "./media/characters/sigvald/paws.svg"
  4397. }
  4398. }
  4399. },
  4400. [
  4401. {
  4402. name: "Normal",
  4403. height: math.unit(8, "feet")
  4404. },
  4405. {
  4406. name: "Large",
  4407. height: math.unit(12, "feet")
  4408. },
  4409. {
  4410. name: "Larger",
  4411. height: math.unit(20, "feet")
  4412. },
  4413. {
  4414. name: "Macro",
  4415. height: math.unit(150, "feet")
  4416. },
  4417. {
  4418. name: "Macro+",
  4419. height: math.unit(200, "feet"),
  4420. default: true
  4421. },
  4422. ]
  4423. ))
  4424. characterMakers.push(() => makeCharacter(
  4425. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4426. {
  4427. side: {
  4428. height: math.unit(12, "feet"),
  4429. weight: math.unit(2000, "kg"),
  4430. name: "Side",
  4431. image: {
  4432. source: "./media/characters/scott/side.svg",
  4433. extra: 754 / 724,
  4434. bottom: 0.069
  4435. }
  4436. },
  4437. upright: {
  4438. height: math.unit(12, "feet"),
  4439. weight: math.unit(2000, "kg"),
  4440. name: "Upright",
  4441. image: {
  4442. source: "./media/characters/scott/upright.svg",
  4443. extra: 3881 / 3722,
  4444. bottom: 0.05
  4445. }
  4446. },
  4447. },
  4448. [
  4449. {
  4450. name: "Normal",
  4451. height: math.unit(12, "feet"),
  4452. default: true
  4453. },
  4454. ]
  4455. ))
  4456. characterMakers.push(() => makeCharacter(
  4457. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4458. {
  4459. side: {
  4460. height: math.unit(8, "meters"),
  4461. weight: math.unit(84755, "lbs"),
  4462. name: "Side",
  4463. image: {
  4464. source: "./media/characters/tobias/side.svg",
  4465. extra: 1474 / 1096,
  4466. bottom: 38.9 / 1513.1235
  4467. }
  4468. },
  4469. },
  4470. [
  4471. {
  4472. name: "Normal",
  4473. height: math.unit(8, "meters"),
  4474. default: true
  4475. },
  4476. ]
  4477. ))
  4478. characterMakers.push(() => makeCharacter(
  4479. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4480. {
  4481. front: {
  4482. height: math.unit(5.5, "feet"),
  4483. weight: math.unit(400, "lbs"),
  4484. name: "Front",
  4485. image: {
  4486. source: "./media/characters/kieran/front.svg",
  4487. extra: 2694 / 2364,
  4488. bottom: 217 / 2908
  4489. }
  4490. },
  4491. side: {
  4492. height: math.unit(5.5, "feet"),
  4493. weight: math.unit(400, "lbs"),
  4494. name: "Side",
  4495. image: {
  4496. source: "./media/characters/kieran/side.svg",
  4497. extra: 875 / 777,
  4498. bottom: 84.6 / 959
  4499. }
  4500. },
  4501. },
  4502. [
  4503. {
  4504. name: "Normal",
  4505. height: math.unit(5.5, "feet"),
  4506. default: true
  4507. },
  4508. ]
  4509. ))
  4510. characterMakers.push(() => makeCharacter(
  4511. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4512. {
  4513. side: {
  4514. height: math.unit(2, "meters"),
  4515. weight: math.unit(70, "kg"),
  4516. name: "Side",
  4517. image: {
  4518. source: "./media/characters/sanya/side.svg",
  4519. bottom: 0.02,
  4520. extra: 1.02
  4521. }
  4522. },
  4523. },
  4524. [
  4525. {
  4526. name: "Small",
  4527. height: math.unit(2, "meters")
  4528. },
  4529. {
  4530. name: "Normal",
  4531. height: math.unit(3, "meters")
  4532. },
  4533. {
  4534. name: "Macro",
  4535. height: math.unit(16, "meters"),
  4536. default: true
  4537. },
  4538. ]
  4539. ))
  4540. characterMakers.push(() => makeCharacter(
  4541. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4542. {
  4543. front: {
  4544. height: math.unit(2, "meters"),
  4545. weight: math.unit(120, "kg"),
  4546. name: "Front",
  4547. image: {
  4548. source: "./media/characters/miranda/front.svg",
  4549. extra: 195 / 185,
  4550. bottom: 10.9 / 206.5
  4551. }
  4552. },
  4553. back: {
  4554. height: math.unit(2, "meters"),
  4555. weight: math.unit(120, "kg"),
  4556. name: "Back",
  4557. image: {
  4558. source: "./media/characters/miranda/back.svg",
  4559. extra: 201 / 193,
  4560. bottom: 2.3 / 203.7
  4561. }
  4562. },
  4563. },
  4564. [
  4565. {
  4566. name: "Normal",
  4567. height: math.unit(10, "feet"),
  4568. default: true
  4569. }
  4570. ]
  4571. ))
  4572. characterMakers.push(() => makeCharacter(
  4573. { name: "James", species: ["deer"], tags: ["anthro"] },
  4574. {
  4575. side: {
  4576. height: math.unit(2, "meters"),
  4577. weight: math.unit(100, "kg"),
  4578. name: "Front",
  4579. image: {
  4580. source: "./media/characters/james/front.svg",
  4581. extra: 10 / 8.5
  4582. }
  4583. },
  4584. },
  4585. [
  4586. {
  4587. name: "Normal",
  4588. height: math.unit(8.5, "feet"),
  4589. default: true
  4590. }
  4591. ]
  4592. ))
  4593. characterMakers.push(() => makeCharacter(
  4594. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4595. {
  4596. side: {
  4597. height: math.unit(9.5, "feet"),
  4598. weight: math.unit(2500, "lbs"),
  4599. name: "Side",
  4600. image: {
  4601. source: "./media/characters/heather/side.svg"
  4602. }
  4603. },
  4604. },
  4605. [
  4606. {
  4607. name: "Normal",
  4608. height: math.unit(9.5, "feet"),
  4609. default: true
  4610. }
  4611. ]
  4612. ))
  4613. characterMakers.push(() => makeCharacter(
  4614. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4615. {
  4616. side: {
  4617. height: math.unit(6.5, "feet"),
  4618. weight: math.unit(400, "lbs"),
  4619. name: "Side",
  4620. image: {
  4621. source: "./media/characters/lukas/side.svg",
  4622. extra: 7.25 / 6.5
  4623. }
  4624. },
  4625. },
  4626. [
  4627. {
  4628. name: "Normal",
  4629. height: math.unit(6.5, "feet"),
  4630. default: true
  4631. }
  4632. ]
  4633. ))
  4634. characterMakers.push(() => makeCharacter(
  4635. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4636. {
  4637. side: {
  4638. height: math.unit(5, "feet"),
  4639. weight: math.unit(3000, "lbs"),
  4640. name: "Side",
  4641. image: {
  4642. source: "./media/characters/louise/side.svg"
  4643. }
  4644. },
  4645. },
  4646. [
  4647. {
  4648. name: "Normal",
  4649. height: math.unit(5, "feet"),
  4650. default: true
  4651. }
  4652. ]
  4653. ))
  4654. characterMakers.push(() => makeCharacter(
  4655. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4656. {
  4657. side: {
  4658. height: math.unit(6, "feet"),
  4659. weight: math.unit(150, "lbs"),
  4660. name: "Side",
  4661. image: {
  4662. source: "./media/characters/ramona/side.svg"
  4663. }
  4664. },
  4665. },
  4666. [
  4667. {
  4668. name: "Normal",
  4669. height: math.unit(5.3, "meters"),
  4670. default: true
  4671. },
  4672. {
  4673. name: "Macro",
  4674. height: math.unit(20, "stories")
  4675. },
  4676. {
  4677. name: "Macro+",
  4678. height: math.unit(50, "stories")
  4679. },
  4680. ]
  4681. ))
  4682. characterMakers.push(() => makeCharacter(
  4683. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4684. {
  4685. standing: {
  4686. height: math.unit(5.75, "feet"),
  4687. weight: math.unit(160, "lbs"),
  4688. name: "Standing",
  4689. image: {
  4690. source: "./media/characters/deerpuff/standing.svg",
  4691. extra: 682 / 624
  4692. }
  4693. },
  4694. sitting: {
  4695. height: math.unit(5.75 / 1.79, "feet"),
  4696. weight: math.unit(160, "lbs"),
  4697. name: "Sitting",
  4698. image: {
  4699. source: "./media/characters/deerpuff/sitting.svg",
  4700. bottom: 44 / 400,
  4701. extra: 1
  4702. }
  4703. },
  4704. taurLaying: {
  4705. height: math.unit(6, "feet"),
  4706. weight: math.unit(400, "lbs"),
  4707. name: "Taur (Laying)",
  4708. image: {
  4709. source: "./media/characters/deerpuff/taur-laying.svg"
  4710. }
  4711. },
  4712. },
  4713. [
  4714. {
  4715. name: "Puffball",
  4716. height: math.unit(6, "inches")
  4717. },
  4718. {
  4719. name: "Normalpuff",
  4720. height: math.unit(5.75, "feet")
  4721. },
  4722. {
  4723. name: "Macropuff",
  4724. height: math.unit(1500, "feet"),
  4725. default: true
  4726. },
  4727. {
  4728. name: "Megapuff",
  4729. height: math.unit(500, "miles")
  4730. },
  4731. {
  4732. name: "Gigapuff",
  4733. height: math.unit(250000, "miles")
  4734. },
  4735. {
  4736. name: "Omegapuff",
  4737. height: math.unit(1000, "lightyears")
  4738. },
  4739. ]
  4740. ))
  4741. characterMakers.push(() => makeCharacter(
  4742. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4743. {
  4744. stomping: {
  4745. height: math.unit(6, "feet"),
  4746. weight: math.unit(170, "lbs"),
  4747. name: "Stomping",
  4748. image: {
  4749. source: "./media/characters/vivian/stomping.svg"
  4750. }
  4751. },
  4752. sitting: {
  4753. height: math.unit(6 / 1.75, "feet"),
  4754. weight: math.unit(170, "lbs"),
  4755. name: "Sitting",
  4756. image: {
  4757. source: "./media/characters/vivian/sitting.svg",
  4758. bottom: 1 / 6.4,
  4759. extra: 1,
  4760. }
  4761. },
  4762. },
  4763. [
  4764. {
  4765. name: "Normal",
  4766. height: math.unit(7, "feet"),
  4767. default: true
  4768. },
  4769. {
  4770. name: "Macro",
  4771. height: math.unit(10, "stories")
  4772. },
  4773. {
  4774. name: "Macro+",
  4775. height: math.unit(30, "stories")
  4776. },
  4777. {
  4778. name: "Megamacro",
  4779. height: math.unit(10, "miles")
  4780. },
  4781. {
  4782. name: "Megamacro+",
  4783. height: math.unit(2750000, "meters")
  4784. },
  4785. ]
  4786. ))
  4787. characterMakers.push(() => makeCharacter(
  4788. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4789. {
  4790. front: {
  4791. height: math.unit(6, "feet"),
  4792. weight: math.unit(160, "lbs"),
  4793. name: "Front",
  4794. image: {
  4795. source: "./media/characters/prince/front.svg",
  4796. extra: 3400 / 3000
  4797. }
  4798. },
  4799. jumping: {
  4800. height: math.unit(6, "feet"),
  4801. weight: math.unit(160, "lbs"),
  4802. name: "Jumping",
  4803. image: {
  4804. source: "./media/characters/prince/jump.svg",
  4805. extra: 2555 / 2134
  4806. }
  4807. },
  4808. },
  4809. [
  4810. {
  4811. name: "Normal",
  4812. height: math.unit(7.75, "feet"),
  4813. default: true
  4814. },
  4815. {
  4816. name: "Not cute",
  4817. height: math.unit(17, "feet")
  4818. },
  4819. {
  4820. name: "I said NOT",
  4821. height: math.unit(91, "feet")
  4822. },
  4823. {
  4824. name: "Please stop",
  4825. height: math.unit(560, "feet")
  4826. },
  4827. {
  4828. name: "What have you done",
  4829. height: math.unit(2200, "feet")
  4830. },
  4831. {
  4832. name: "Deer God",
  4833. height: math.unit(3.6, "miles")
  4834. },
  4835. ]
  4836. ))
  4837. characterMakers.push(() => makeCharacter(
  4838. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4839. {
  4840. standing: {
  4841. height: math.unit(6, "feet"),
  4842. weight: math.unit(300, "lbs"),
  4843. name: "Standing",
  4844. image: {
  4845. source: "./media/characters/psymon/standing.svg",
  4846. extra: 1888 / 1810,
  4847. bottom: 0.05
  4848. }
  4849. },
  4850. slithering: {
  4851. height: math.unit(6, "feet"),
  4852. weight: math.unit(300, "lbs"),
  4853. name: "Slithering",
  4854. image: {
  4855. source: "./media/characters/psymon/slithering.svg",
  4856. extra: 1330 / 1224
  4857. }
  4858. },
  4859. slitheringAlt: {
  4860. height: math.unit(6, "feet"),
  4861. weight: math.unit(300, "lbs"),
  4862. name: "Slithering (Alt)",
  4863. image: {
  4864. source: "./media/characters/psymon/slithering-alt.svg",
  4865. extra: 1330 / 1224
  4866. }
  4867. },
  4868. },
  4869. [
  4870. {
  4871. name: "Normal",
  4872. height: math.unit(11.25, "feet"),
  4873. default: true
  4874. },
  4875. {
  4876. name: "Large",
  4877. height: math.unit(27, "feet")
  4878. },
  4879. {
  4880. name: "Giant",
  4881. height: math.unit(87, "feet")
  4882. },
  4883. {
  4884. name: "Macro",
  4885. height: math.unit(365, "feet")
  4886. },
  4887. {
  4888. name: "Megamacro",
  4889. height: math.unit(3, "miles")
  4890. },
  4891. {
  4892. name: "World Serpent",
  4893. height: math.unit(8000, "miles")
  4894. },
  4895. ]
  4896. ))
  4897. characterMakers.push(() => makeCharacter(
  4898. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  4899. {
  4900. front: {
  4901. height: math.unit(6, "feet"),
  4902. weight: math.unit(180, "lbs"),
  4903. name: "Front",
  4904. image: {
  4905. source: "./media/characters/daimos/front.svg",
  4906. extra: 4160 / 3897,
  4907. bottom: 0.021
  4908. }
  4909. }
  4910. },
  4911. [
  4912. {
  4913. name: "Normal",
  4914. height: math.unit(8, "feet"),
  4915. default: true
  4916. },
  4917. {
  4918. name: "Big Dog",
  4919. height: math.unit(22, "feet")
  4920. },
  4921. {
  4922. name: "Macro",
  4923. height: math.unit(127, "feet")
  4924. },
  4925. {
  4926. name: "Megamacro",
  4927. height: math.unit(3600, "feet")
  4928. },
  4929. ]
  4930. ))
  4931. characterMakers.push(() => makeCharacter(
  4932. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  4933. {
  4934. side: {
  4935. height: math.unit(6, "feet"),
  4936. weight: math.unit(180, "lbs"),
  4937. name: "Side",
  4938. image: {
  4939. source: "./media/characters/blake/side.svg",
  4940. extra: 1212 / 1120,
  4941. bottom: 0.05
  4942. }
  4943. },
  4944. crouched: {
  4945. height: math.unit(6 * 0.57, "feet"),
  4946. weight: math.unit(180, "lbs"),
  4947. name: "Crouched",
  4948. image: {
  4949. source: "./media/characters/blake/crouched.svg",
  4950. extra: 840 / 587,
  4951. bottom: 0.04
  4952. }
  4953. },
  4954. bent: {
  4955. height: math.unit(6 * 0.75, "feet"),
  4956. weight: math.unit(180, "lbs"),
  4957. name: "Bent",
  4958. image: {
  4959. source: "./media/characters/blake/bent.svg",
  4960. extra: 592 / 544,
  4961. bottom: 0.035
  4962. }
  4963. },
  4964. },
  4965. [
  4966. {
  4967. name: "Normal",
  4968. height: math.unit(8 + 1 / 6, "feet"),
  4969. default: true
  4970. },
  4971. {
  4972. name: "Big Backside",
  4973. height: math.unit(37, "feet")
  4974. },
  4975. {
  4976. name: "Subway Shredder",
  4977. height: math.unit(72, "feet")
  4978. },
  4979. {
  4980. name: "City Carver",
  4981. height: math.unit(1675, "feet")
  4982. },
  4983. {
  4984. name: "Tectonic Tweaker",
  4985. height: math.unit(2300, "miles")
  4986. },
  4987. ]
  4988. ))
  4989. characterMakers.push(() => makeCharacter(
  4990. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  4991. {
  4992. front: {
  4993. height: math.unit(6, "feet"),
  4994. weight: math.unit(180, "lbs"),
  4995. name: "Front",
  4996. image: {
  4997. source: "./media/characters/guisetto/front.svg",
  4998. extra: 856 / 817,
  4999. bottom: 0.06
  5000. }
  5001. },
  5002. airborne: {
  5003. height: math.unit(6, "feet"),
  5004. weight: math.unit(180, "lbs"),
  5005. name: "Airborne",
  5006. image: {
  5007. source: "./media/characters/guisetto/airborne.svg",
  5008. extra: 584 / 525
  5009. }
  5010. },
  5011. },
  5012. [
  5013. {
  5014. name: "Normal",
  5015. height: math.unit(10 + 11 / 12, "feet"),
  5016. default: true
  5017. },
  5018. {
  5019. name: "Large",
  5020. height: math.unit(35, "feet")
  5021. },
  5022. {
  5023. name: "Macro",
  5024. height: math.unit(475, "feet")
  5025. },
  5026. ]
  5027. ))
  5028. characterMakers.push(() => makeCharacter(
  5029. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5030. {
  5031. front: {
  5032. height: math.unit(6, "feet"),
  5033. weight: math.unit(180, "lbs"),
  5034. name: "Front",
  5035. image: {
  5036. source: "./media/characters/luxor/front.svg",
  5037. extra: 2940 / 2152
  5038. }
  5039. },
  5040. back: {
  5041. height: math.unit(6, "feet"),
  5042. weight: math.unit(180, "lbs"),
  5043. name: "Back",
  5044. image: {
  5045. source: "./media/characters/luxor/back.svg",
  5046. extra: 1083 / 960
  5047. }
  5048. },
  5049. },
  5050. [
  5051. {
  5052. name: "Normal",
  5053. height: math.unit(5 + 5 / 6, "feet"),
  5054. default: true
  5055. },
  5056. {
  5057. name: "Lamp",
  5058. height: math.unit(50, "feet")
  5059. },
  5060. {
  5061. name: "Lämp",
  5062. height: math.unit(300, "feet")
  5063. },
  5064. {
  5065. name: "The sun is a lamp",
  5066. height: math.unit(250000, "miles")
  5067. },
  5068. ]
  5069. ))
  5070. characterMakers.push(() => makeCharacter(
  5071. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5072. {
  5073. front: {
  5074. height: math.unit(6, "feet"),
  5075. weight: math.unit(50, "lbs"),
  5076. name: "Front",
  5077. image: {
  5078. source: "./media/characters/huoyan/front.svg"
  5079. }
  5080. },
  5081. side: {
  5082. height: math.unit(6, "feet"),
  5083. weight: math.unit(180, "lbs"),
  5084. name: "Side",
  5085. image: {
  5086. source: "./media/characters/huoyan/side.svg"
  5087. }
  5088. },
  5089. },
  5090. [
  5091. {
  5092. name: "Chef",
  5093. height: math.unit(9, "feet")
  5094. },
  5095. {
  5096. name: "Normal",
  5097. height: math.unit(65, "feet"),
  5098. default: true
  5099. },
  5100. {
  5101. name: "Macro",
  5102. height: math.unit(780, "feet")
  5103. },
  5104. {
  5105. name: "Flaming Mountain",
  5106. height: math.unit(4.8, "miles")
  5107. },
  5108. {
  5109. name: "Celestial",
  5110. height: math.unit(765000, "miles")
  5111. },
  5112. ]
  5113. ))
  5114. characterMakers.push(() => makeCharacter(
  5115. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5116. {
  5117. front: {
  5118. height: math.unit(5 + 3 / 4, "feet"),
  5119. weight: math.unit(120, "lbs"),
  5120. name: "Front",
  5121. image: {
  5122. source: "./media/characters/tails/front.svg"
  5123. }
  5124. }
  5125. },
  5126. [
  5127. {
  5128. name: "Normal",
  5129. height: math.unit(5 + 3 / 4, "feet"),
  5130. default: true
  5131. }
  5132. ]
  5133. ))
  5134. characterMakers.push(() => makeCharacter(
  5135. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5136. {
  5137. front: {
  5138. height: math.unit(4, "feet"),
  5139. weight: math.unit(50, "lbs"),
  5140. name: "Front",
  5141. image: {
  5142. source: "./media/characters/rainy/front.svg"
  5143. }
  5144. }
  5145. },
  5146. [
  5147. {
  5148. name: "Macro",
  5149. height: math.unit(800, "feet"),
  5150. default: true
  5151. }
  5152. ]
  5153. ))
  5154. characterMakers.push(() => makeCharacter(
  5155. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5156. {
  5157. front: {
  5158. height: math.unit(6, "feet"),
  5159. weight: math.unit(150, "lbs"),
  5160. name: "Front",
  5161. image: {
  5162. source: "./media/characters/rainier/front.svg"
  5163. }
  5164. }
  5165. },
  5166. [
  5167. {
  5168. name: "Micro",
  5169. height: math.unit(2, "mm"),
  5170. default: true
  5171. }
  5172. ]
  5173. ))
  5174. characterMakers.push(() => makeCharacter(
  5175. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5176. {
  5177. front: {
  5178. height: math.unit(6, "feet"),
  5179. weight: math.unit(180, "lbs"),
  5180. name: "Front",
  5181. image: {
  5182. source: "./media/characters/andy/front.svg"
  5183. }
  5184. }
  5185. },
  5186. [
  5187. {
  5188. name: "Normal",
  5189. height: math.unit(8, "feet"),
  5190. default: true
  5191. },
  5192. {
  5193. name: "Macro",
  5194. height: math.unit(1000, "feet")
  5195. },
  5196. {
  5197. name: "Megamacro",
  5198. height: math.unit(5, "miles")
  5199. },
  5200. {
  5201. name: "Gigamacro",
  5202. height: math.unit(5000, "miles")
  5203. },
  5204. ]
  5205. ))
  5206. characterMakers.push(() => makeCharacter(
  5207. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5208. {
  5209. front: {
  5210. height: math.unit(6, "feet"),
  5211. weight: math.unit(210, "lbs"),
  5212. name: "Front",
  5213. image: {
  5214. source: "./media/characters/cimmaron/front-sfw.svg",
  5215. extra: 701 / 676,
  5216. bottom: 0.046
  5217. }
  5218. },
  5219. back: {
  5220. height: math.unit(6, "feet"),
  5221. weight: math.unit(210, "lbs"),
  5222. name: "Back",
  5223. image: {
  5224. source: "./media/characters/cimmaron/back-sfw.svg",
  5225. extra: 701 / 676,
  5226. bottom: 0.046
  5227. }
  5228. },
  5229. frontNsfw: {
  5230. height: math.unit(6, "feet"),
  5231. weight: math.unit(210, "lbs"),
  5232. name: "Front (NSFW)",
  5233. image: {
  5234. source: "./media/characters/cimmaron/front-nsfw.svg",
  5235. extra: 701 / 676,
  5236. bottom: 0.046
  5237. }
  5238. },
  5239. backNsfw: {
  5240. height: math.unit(6, "feet"),
  5241. weight: math.unit(210, "lbs"),
  5242. name: "Back (NSFW)",
  5243. image: {
  5244. source: "./media/characters/cimmaron/back-nsfw.svg",
  5245. extra: 701 / 676,
  5246. bottom: 0.046
  5247. }
  5248. },
  5249. dick: {
  5250. height: math.unit(1.714, "feet"),
  5251. name: "Dick",
  5252. image: {
  5253. source: "./media/characters/cimmaron/dick.svg"
  5254. }
  5255. },
  5256. },
  5257. [
  5258. {
  5259. name: "Normal",
  5260. height: math.unit(6, "feet"),
  5261. default: true
  5262. },
  5263. {
  5264. name: "Macro Mayor",
  5265. height: math.unit(350, "meters")
  5266. },
  5267. ]
  5268. ))
  5269. characterMakers.push(() => makeCharacter(
  5270. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5271. {
  5272. front: {
  5273. height: math.unit(6, "feet"),
  5274. weight: math.unit(200, "lbs"),
  5275. name: "Front",
  5276. image: {
  5277. source: "./media/characters/akari/front.svg",
  5278. extra: 962 / 901,
  5279. bottom: 0.04
  5280. }
  5281. }
  5282. },
  5283. [
  5284. {
  5285. name: "Micro",
  5286. height: math.unit(5, "inches"),
  5287. default: true
  5288. },
  5289. {
  5290. name: "Normal",
  5291. height: math.unit(7, "feet")
  5292. },
  5293. ]
  5294. ))
  5295. characterMakers.push(() => makeCharacter(
  5296. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5297. {
  5298. front: {
  5299. height: math.unit(6, "feet"),
  5300. weight: math.unit(140, "lbs"),
  5301. name: "Front",
  5302. image: {
  5303. source: "./media/characters/cynosura/front.svg",
  5304. extra: 896 / 847
  5305. }
  5306. },
  5307. back: {
  5308. height: math.unit(6, "feet"),
  5309. weight: math.unit(140, "lbs"),
  5310. name: "Back",
  5311. image: {
  5312. source: "./media/characters/cynosura/back.svg",
  5313. extra: 1365 / 1250
  5314. }
  5315. },
  5316. },
  5317. [
  5318. {
  5319. name: "Micro",
  5320. height: math.unit(4, "inches")
  5321. },
  5322. {
  5323. name: "Normal",
  5324. height: math.unit(5.75, "feet"),
  5325. default: true
  5326. },
  5327. {
  5328. name: "Tall",
  5329. height: math.unit(10, "feet")
  5330. },
  5331. {
  5332. name: "Big",
  5333. height: math.unit(20, "feet")
  5334. },
  5335. {
  5336. name: "Macro",
  5337. height: math.unit(50, "feet")
  5338. },
  5339. ]
  5340. ))
  5341. characterMakers.push(() => makeCharacter(
  5342. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5343. {
  5344. front: {
  5345. height: math.unit(6, "feet"),
  5346. weight: math.unit(170, "lbs"),
  5347. name: "Front",
  5348. image: {
  5349. source: "./media/characters/gin/front.svg",
  5350. extra: 1.053,
  5351. bottom: 0.025
  5352. }
  5353. },
  5354. foot: {
  5355. height: math.unit(6 / 4.25, "feet"),
  5356. name: "Foot",
  5357. image: {
  5358. source: "./media/characters/gin/foot.svg"
  5359. }
  5360. },
  5361. sole: {
  5362. height: math.unit(6 / 4.40, "feet"),
  5363. name: "Sole",
  5364. image: {
  5365. source: "./media/characters/gin/sole.svg"
  5366. }
  5367. },
  5368. },
  5369. [
  5370. {
  5371. name: "Normal",
  5372. height: math.unit(13 + 2 / 12, "feet")
  5373. },
  5374. {
  5375. name: "Macro",
  5376. height: math.unit(1500, "feet")
  5377. },
  5378. {
  5379. name: "Megamacro",
  5380. height: math.unit(200, "miles"),
  5381. default: true
  5382. },
  5383. {
  5384. name: "Gigamacro",
  5385. height: math.unit(500, "megameters")
  5386. },
  5387. {
  5388. name: "Teramacro",
  5389. height: math.unit(15, "lightyears")
  5390. }
  5391. ]
  5392. ))
  5393. characterMakers.push(() => makeCharacter(
  5394. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5395. {
  5396. front: {
  5397. height: math.unit(6 + 1 / 6, "feet"),
  5398. weight: math.unit(178, "lbs"),
  5399. name: "Front",
  5400. image: {
  5401. source: "./media/characters/guy/front.svg"
  5402. }
  5403. }
  5404. },
  5405. [
  5406. {
  5407. name: "Normal",
  5408. height: math.unit(6 + 1 / 6, "feet"),
  5409. default: true
  5410. },
  5411. {
  5412. name: "Large",
  5413. height: math.unit(25 + 7 / 12, "feet")
  5414. },
  5415. {
  5416. name: "Macro",
  5417. height: math.unit(60 + 9 / 12, "feet")
  5418. },
  5419. {
  5420. name: "Macro+",
  5421. height: math.unit(246, "feet")
  5422. },
  5423. {
  5424. name: "Macro++",
  5425. height: math.unit(878, "feet")
  5426. }
  5427. ]
  5428. ))
  5429. characterMakers.push(() => makeCharacter(
  5430. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5431. {
  5432. front: {
  5433. height: math.unit(9, "feet"),
  5434. weight: math.unit(800, "lbs"),
  5435. name: "Front",
  5436. image: {
  5437. source: "./media/characters/tiberius/front.svg",
  5438. extra: 2295 / 2071
  5439. }
  5440. },
  5441. back: {
  5442. height: math.unit(9, "feet"),
  5443. weight: math.unit(800, "lbs"),
  5444. name: "Back",
  5445. image: {
  5446. source: "./media/characters/tiberius/back.svg",
  5447. extra: 2373 / 2160
  5448. }
  5449. },
  5450. },
  5451. [
  5452. {
  5453. name: "Normal",
  5454. height: math.unit(9, "feet"),
  5455. default: true
  5456. }
  5457. ]
  5458. ))
  5459. characterMakers.push(() => makeCharacter(
  5460. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5461. {
  5462. front: {
  5463. height: math.unit(6, "feet"),
  5464. weight: math.unit(600, "lbs"),
  5465. name: "Front",
  5466. image: {
  5467. source: "./media/characters/surgo/front.svg",
  5468. extra: 3591 / 2227
  5469. }
  5470. },
  5471. back: {
  5472. height: math.unit(6, "feet"),
  5473. weight: math.unit(600, "lbs"),
  5474. name: "Back",
  5475. image: {
  5476. source: "./media/characters/surgo/back.svg",
  5477. extra: 3557 / 2228
  5478. }
  5479. },
  5480. laying: {
  5481. height: math.unit(6 * 0.85, "feet"),
  5482. weight: math.unit(600, "lbs"),
  5483. name: "Laying",
  5484. image: {
  5485. source: "./media/characters/surgo/laying.svg"
  5486. }
  5487. },
  5488. },
  5489. [
  5490. {
  5491. name: "Normal",
  5492. height: math.unit(6, "feet"),
  5493. default: true
  5494. }
  5495. ]
  5496. ))
  5497. characterMakers.push(() => makeCharacter(
  5498. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5499. {
  5500. side: {
  5501. height: math.unit(6, "feet"),
  5502. weight: math.unit(150, "lbs"),
  5503. name: "Side",
  5504. image: {
  5505. source: "./media/characters/cibus/side.svg",
  5506. extra: 800 / 400
  5507. }
  5508. },
  5509. },
  5510. [
  5511. {
  5512. name: "Normal",
  5513. height: math.unit(6, "feet"),
  5514. default: true
  5515. }
  5516. ]
  5517. ))
  5518. characterMakers.push(() => makeCharacter(
  5519. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5520. {
  5521. front: {
  5522. height: math.unit(6, "feet"),
  5523. weight: math.unit(240, "lbs"),
  5524. name: "Front",
  5525. image: {
  5526. source: "./media/characters/nibbles/front.svg"
  5527. }
  5528. },
  5529. side: {
  5530. height: math.unit(6, "feet"),
  5531. weight: math.unit(240, "lbs"),
  5532. name: "Side",
  5533. image: {
  5534. source: "./media/characters/nibbles/side.svg"
  5535. }
  5536. },
  5537. },
  5538. [
  5539. {
  5540. name: "Normal",
  5541. height: math.unit(9, "feet"),
  5542. default: true
  5543. }
  5544. ]
  5545. ))
  5546. characterMakers.push(() => makeCharacter(
  5547. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5548. {
  5549. side: {
  5550. height: math.unit(5 + 1 / 6, "feet"),
  5551. weight: math.unit(130, "lbs"),
  5552. name: "Side",
  5553. image: {
  5554. source: "./media/characters/rikky/side.svg",
  5555. extra: 851 / 801
  5556. }
  5557. },
  5558. },
  5559. [
  5560. {
  5561. name: "Normal",
  5562. height: math.unit(5 + 1 / 6, "feet")
  5563. },
  5564. {
  5565. name: "Macro",
  5566. height: math.unit(152, "feet"),
  5567. default: true
  5568. },
  5569. {
  5570. name: "Megamacro",
  5571. height: math.unit(7, "miles")
  5572. }
  5573. ]
  5574. ))
  5575. characterMakers.push(() => makeCharacter(
  5576. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5577. {
  5578. side: {
  5579. height: math.unit(370, "cm"),
  5580. weight: math.unit(350, "lbs"),
  5581. name: "Side",
  5582. image: {
  5583. source: "./media/characters/malfressa/side.svg"
  5584. }
  5585. },
  5586. walking: {
  5587. height: math.unit(370, "cm"),
  5588. weight: math.unit(350, "lbs"),
  5589. name: "Walking",
  5590. image: {
  5591. source: "./media/characters/malfressa/walking.svg"
  5592. }
  5593. },
  5594. feral: {
  5595. height: math.unit(2500, "cm"),
  5596. weight: math.unit(100000, "lbs"),
  5597. name: "Feral",
  5598. image: {
  5599. source: "./media/characters/malfressa/feral.svg",
  5600. extra: 2108 / 837,
  5601. bottom: 0.02
  5602. }
  5603. },
  5604. },
  5605. [
  5606. {
  5607. name: "Normal",
  5608. height: math.unit(370, "cm")
  5609. },
  5610. {
  5611. name: "Macro",
  5612. height: math.unit(300, "meters"),
  5613. default: true
  5614. }
  5615. ]
  5616. ))
  5617. characterMakers.push(() => makeCharacter(
  5618. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5619. {
  5620. front: {
  5621. height: math.unit(6, "feet"),
  5622. weight: math.unit(60, "kg"),
  5623. name: "Front",
  5624. image: {
  5625. source: "./media/characters/jaro/front.svg"
  5626. }
  5627. },
  5628. back: {
  5629. height: math.unit(6, "feet"),
  5630. weight: math.unit(60, "kg"),
  5631. name: "Back",
  5632. image: {
  5633. source: "./media/characters/jaro/back.svg"
  5634. }
  5635. },
  5636. },
  5637. [
  5638. {
  5639. name: "Micro",
  5640. height: math.unit(7, "inches")
  5641. },
  5642. {
  5643. name: "Normal",
  5644. height: math.unit(5.5, "feet"),
  5645. default: true
  5646. },
  5647. {
  5648. name: "Minimacro",
  5649. height: math.unit(20, "feet")
  5650. },
  5651. {
  5652. name: "Macro",
  5653. height: math.unit(200, "meters")
  5654. }
  5655. ]
  5656. ))
  5657. characterMakers.push(() => makeCharacter(
  5658. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5659. {
  5660. front: {
  5661. height: math.unit(6, "feet"),
  5662. weight: math.unit(195, "lb"),
  5663. name: "Front",
  5664. image: {
  5665. source: "./media/characters/rogue/front.svg"
  5666. }
  5667. },
  5668. },
  5669. [
  5670. {
  5671. name: "Macro",
  5672. height: math.unit(90, "feet"),
  5673. default: true
  5674. },
  5675. ]
  5676. ))
  5677. characterMakers.push(() => makeCharacter(
  5678. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5679. {
  5680. front: {
  5681. height: math.unit(5 + 8 / 12, "feet"),
  5682. weight: math.unit(140, "lb"),
  5683. name: "Front",
  5684. image: {
  5685. source: "./media/characters/piper/front.svg",
  5686. extra: 3928 / 3681
  5687. }
  5688. },
  5689. },
  5690. [
  5691. {
  5692. name: "Micro",
  5693. height: math.unit(2, "inches")
  5694. },
  5695. {
  5696. name: "Normal",
  5697. height: math.unit(5 + 8 / 12, "feet")
  5698. },
  5699. {
  5700. name: "Macro",
  5701. height: math.unit(250, "feet"),
  5702. default: true
  5703. },
  5704. {
  5705. name: "Megamacro",
  5706. height: math.unit(7, "miles")
  5707. },
  5708. ]
  5709. ))
  5710. characterMakers.push(() => makeCharacter(
  5711. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5712. {
  5713. front: {
  5714. height: math.unit(6, "feet"),
  5715. weight: math.unit(220, "lb"),
  5716. name: "Front",
  5717. image: {
  5718. source: "./media/characters/gemini/front.svg"
  5719. }
  5720. },
  5721. back: {
  5722. height: math.unit(6, "feet"),
  5723. weight: math.unit(220, "lb"),
  5724. name: "Back",
  5725. image: {
  5726. source: "./media/characters/gemini/back.svg"
  5727. }
  5728. },
  5729. kneeling: {
  5730. height: math.unit(6 / 1.5, "feet"),
  5731. weight: math.unit(220, "lb"),
  5732. name: "Kneeling",
  5733. image: {
  5734. source: "./media/characters/gemini/kneeling.svg",
  5735. bottom: 0.02
  5736. }
  5737. },
  5738. },
  5739. [
  5740. {
  5741. name: "Macro",
  5742. height: math.unit(300, "meters"),
  5743. default: true
  5744. },
  5745. {
  5746. name: "Megamacro",
  5747. height: math.unit(6900, "meters")
  5748. },
  5749. ]
  5750. ))
  5751. characterMakers.push(() => makeCharacter(
  5752. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5753. {
  5754. anthro: {
  5755. height: math.unit(2.35, "meters"),
  5756. weight: math.unit(73, "kg"),
  5757. name: "Anthro",
  5758. image: {
  5759. source: "./media/characters/alicia/anthro.svg",
  5760. extra: 2571 / 2385,
  5761. bottom: 75 / 2648
  5762. }
  5763. },
  5764. paw: {
  5765. height: math.unit(1.32, "feet"),
  5766. name: "Paw",
  5767. image: {
  5768. source: "./media/characters/alicia/paw.svg"
  5769. }
  5770. },
  5771. feral: {
  5772. height: math.unit(1.69, "meters"),
  5773. weight: math.unit(73, "kg"),
  5774. name: "Feral",
  5775. image: {
  5776. source: "./media/characters/alicia/feral.svg",
  5777. extra: 2123 / 1715,
  5778. bottom: 222 / 2349
  5779. }
  5780. },
  5781. },
  5782. [
  5783. {
  5784. name: "Normal",
  5785. height: math.unit(2.35, "meters")
  5786. },
  5787. {
  5788. name: "Macro",
  5789. height: math.unit(60, "meters"),
  5790. default: true
  5791. },
  5792. {
  5793. name: "Megamacro",
  5794. height: math.unit(10000, "kilometers")
  5795. },
  5796. ]
  5797. ))
  5798. characterMakers.push(() => makeCharacter(
  5799. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5800. {
  5801. front: {
  5802. height: math.unit(7, "feet"),
  5803. weight: math.unit(250, "lbs"),
  5804. name: "Front",
  5805. image: {
  5806. source: "./media/characters/archy/front.svg"
  5807. }
  5808. }
  5809. },
  5810. [
  5811. {
  5812. name: "Micro",
  5813. height: math.unit(1, "inch")
  5814. },
  5815. {
  5816. name: "Shorty",
  5817. height: math.unit(5, "feet")
  5818. },
  5819. {
  5820. name: "Normal",
  5821. height: math.unit(7, "feet")
  5822. },
  5823. {
  5824. name: "Macro",
  5825. height: math.unit(600, "meters"),
  5826. default: true
  5827. },
  5828. {
  5829. name: "Megamacro",
  5830. height: math.unit(1, "mile")
  5831. },
  5832. ]
  5833. ))
  5834. characterMakers.push(() => makeCharacter(
  5835. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5836. {
  5837. front: {
  5838. height: math.unit(1.65, "meters"),
  5839. weight: math.unit(74, "kg"),
  5840. name: "Front",
  5841. image: {
  5842. source: "./media/characters/berri/front.svg",
  5843. extra: 857 / 837,
  5844. bottom: 18 / 877
  5845. }
  5846. },
  5847. bum: {
  5848. height: math.unit(1.46, "feet"),
  5849. name: "Bum",
  5850. image: {
  5851. source: "./media/characters/berri/bum.svg"
  5852. }
  5853. },
  5854. mouth: {
  5855. height: math.unit(0.44, "feet"),
  5856. name: "Mouth",
  5857. image: {
  5858. source: "./media/characters/berri/mouth.svg"
  5859. }
  5860. },
  5861. paw: {
  5862. height: math.unit(0.826, "feet"),
  5863. name: "Paw",
  5864. image: {
  5865. source: "./media/characters/berri/paw.svg"
  5866. }
  5867. },
  5868. },
  5869. [
  5870. {
  5871. name: "Normal",
  5872. height: math.unit(1.65, "meters")
  5873. },
  5874. {
  5875. name: "Macro",
  5876. height: math.unit(60, "m"),
  5877. default: true
  5878. },
  5879. {
  5880. name: "Megamacro",
  5881. height: math.unit(9.213, "km")
  5882. },
  5883. {
  5884. name: "Planet Eater",
  5885. height: math.unit(489, "megameters")
  5886. },
  5887. {
  5888. name: "Teramacro",
  5889. height: math.unit(2471635000000, "meters")
  5890. },
  5891. {
  5892. name: "Examacro",
  5893. height: math.unit(8.0624e+26, "meters")
  5894. }
  5895. ]
  5896. ))
  5897. characterMakers.push(() => makeCharacter(
  5898. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  5899. {
  5900. front: {
  5901. height: math.unit(1.72, "meters"),
  5902. weight: math.unit(68, "kg"),
  5903. name: "Front",
  5904. image: {
  5905. source: "./media/characters/lexi/front.svg"
  5906. }
  5907. }
  5908. },
  5909. [
  5910. {
  5911. name: "Very Smol",
  5912. height: math.unit(10, "mm")
  5913. },
  5914. {
  5915. name: "Micro",
  5916. height: math.unit(6.8, "cm"),
  5917. default: true
  5918. },
  5919. {
  5920. name: "Normal",
  5921. height: math.unit(1.72, "m")
  5922. }
  5923. ]
  5924. ))
  5925. characterMakers.push(() => makeCharacter(
  5926. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  5927. {
  5928. front: {
  5929. height: math.unit(1.69, "meters"),
  5930. weight: math.unit(68, "kg"),
  5931. name: "Front",
  5932. image: {
  5933. source: "./media/characters/martin/front.svg",
  5934. extra: 596 / 581
  5935. }
  5936. }
  5937. },
  5938. [
  5939. {
  5940. name: "Micro",
  5941. height: math.unit(6.85, "cm"),
  5942. default: true
  5943. },
  5944. {
  5945. name: "Normal",
  5946. height: math.unit(1.69, "m")
  5947. }
  5948. ]
  5949. ))
  5950. characterMakers.push(() => makeCharacter(
  5951. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  5952. {
  5953. front: {
  5954. height: math.unit(1.69, "meters"),
  5955. weight: math.unit(68, "kg"),
  5956. name: "Front",
  5957. image: {
  5958. source: "./media/characters/juno/front.svg"
  5959. }
  5960. }
  5961. },
  5962. [
  5963. {
  5964. name: "Micro",
  5965. height: math.unit(7, "cm")
  5966. },
  5967. {
  5968. name: "Normal",
  5969. height: math.unit(1.89, "m")
  5970. },
  5971. {
  5972. name: "Macro",
  5973. height: math.unit(353, "meters"),
  5974. default: true
  5975. }
  5976. ]
  5977. ))
  5978. characterMakers.push(() => makeCharacter(
  5979. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  5980. {
  5981. front: {
  5982. height: math.unit(1.93, "meters"),
  5983. weight: math.unit(83, "kg"),
  5984. name: "Front",
  5985. image: {
  5986. source: "./media/characters/samantha/front.svg"
  5987. }
  5988. },
  5989. frontClothed: {
  5990. height: math.unit(1.93, "meters"),
  5991. weight: math.unit(83, "kg"),
  5992. name: "Front (Clothed)",
  5993. image: {
  5994. source: "./media/characters/samantha/front-clothed.svg"
  5995. }
  5996. },
  5997. back: {
  5998. height: math.unit(1.93, "meters"),
  5999. weight: math.unit(83, "kg"),
  6000. name: "Back",
  6001. image: {
  6002. source: "./media/characters/samantha/back.svg"
  6003. }
  6004. },
  6005. },
  6006. [
  6007. {
  6008. name: "Normal",
  6009. height: math.unit(1.93, "m")
  6010. },
  6011. {
  6012. name: "Macro",
  6013. height: math.unit(74, "meters"),
  6014. default: true
  6015. },
  6016. {
  6017. name: "Macro+",
  6018. height: math.unit(223, "meters"),
  6019. },
  6020. {
  6021. name: "Megamacro",
  6022. height: math.unit(8381, "meters"),
  6023. },
  6024. {
  6025. name: "Megamacro+",
  6026. height: math.unit(12000, "kilometers")
  6027. },
  6028. ]
  6029. ))
  6030. characterMakers.push(() => makeCharacter(
  6031. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6032. {
  6033. front: {
  6034. height: math.unit(1.92, "meters"),
  6035. weight: math.unit(80, "kg"),
  6036. name: "Front",
  6037. image: {
  6038. source: "./media/characters/dr-clay/front.svg"
  6039. }
  6040. },
  6041. frontClothed: {
  6042. height: math.unit(1.92, "meters"),
  6043. weight: math.unit(80, "kg"),
  6044. name: "Front (Clothed)",
  6045. image: {
  6046. source: "./media/characters/dr-clay/front-clothed.svg"
  6047. }
  6048. }
  6049. },
  6050. [
  6051. {
  6052. name: "Normal",
  6053. height: math.unit(1.92, "m")
  6054. },
  6055. {
  6056. name: "Macro",
  6057. height: math.unit(214, "meters"),
  6058. default: true
  6059. },
  6060. {
  6061. name: "Macro+",
  6062. height: math.unit(12.237, "meters"),
  6063. },
  6064. {
  6065. name: "Megamacro",
  6066. height: math.unit(557, "megameters"),
  6067. },
  6068. {
  6069. name: "Unimaginable",
  6070. height: math.unit(120e9, "lightyears")
  6071. },
  6072. ]
  6073. ))
  6074. characterMakers.push(() => makeCharacter(
  6075. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6076. {
  6077. front: {
  6078. height: math.unit(2, "meters"),
  6079. weight: math.unit(80, "kg"),
  6080. name: "Front",
  6081. image: {
  6082. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6083. }
  6084. }
  6085. },
  6086. [
  6087. {
  6088. name: "Teramacro",
  6089. height: math.unit(500000, "lightyears"),
  6090. default: true
  6091. },
  6092. ]
  6093. ))
  6094. characterMakers.push(() => makeCharacter(
  6095. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6096. {
  6097. front: {
  6098. height: math.unit(2, "meters"),
  6099. weight: math.unit(150, "kg"),
  6100. name: "Front",
  6101. image: {
  6102. source: "./media/characters/vemus/front.svg",
  6103. extra: 2384 / 2084,
  6104. bottom: 0.0123
  6105. }
  6106. }
  6107. },
  6108. [
  6109. {
  6110. name: "Normal",
  6111. height: math.unit(3.75, "meters"),
  6112. default: true
  6113. },
  6114. {
  6115. name: "Big",
  6116. height: math.unit(8, "meters")
  6117. },
  6118. {
  6119. name: "Macro",
  6120. height: math.unit(100, "meters")
  6121. },
  6122. {
  6123. name: "Macro+",
  6124. height: math.unit(1500, "meters")
  6125. },
  6126. {
  6127. name: "Stellar",
  6128. height: math.unit(14e8, "meters")
  6129. },
  6130. ]
  6131. ))
  6132. characterMakers.push(() => makeCharacter(
  6133. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6134. {
  6135. front: {
  6136. height: math.unit(2, "meters"),
  6137. weight: math.unit(70, "kg"),
  6138. name: "Front",
  6139. image: {
  6140. source: "./media/characters/beherit/front.svg",
  6141. extra: 1408 / 1242
  6142. }
  6143. }
  6144. },
  6145. [
  6146. {
  6147. name: "Normal",
  6148. height: math.unit(6, "feet")
  6149. },
  6150. {
  6151. name: "Lorg",
  6152. height: math.unit(25, "feet"),
  6153. default: true
  6154. },
  6155. {
  6156. name: "Lorger",
  6157. height: math.unit(75, "feet")
  6158. },
  6159. {
  6160. name: "Macro",
  6161. height: math.unit(200, "meters")
  6162. },
  6163. ]
  6164. ))
  6165. characterMakers.push(() => makeCharacter(
  6166. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6167. {
  6168. front: {
  6169. height: math.unit(2, "meters"),
  6170. weight: math.unit(150, "kg"),
  6171. name: "Front",
  6172. image: {
  6173. source: "./media/characters/everett/front.svg",
  6174. extra: 2038 / 1737,
  6175. bottom: 0.03
  6176. }
  6177. },
  6178. paw: {
  6179. height: math.unit(2 / 3.6, "meters"),
  6180. name: "Paw",
  6181. image: {
  6182. source: "./media/characters/everett/paw.svg"
  6183. }
  6184. },
  6185. },
  6186. [
  6187. {
  6188. name: "Normal",
  6189. height: math.unit(15, "feet"),
  6190. default: true
  6191. },
  6192. {
  6193. name: "Lorg",
  6194. height: math.unit(70, "feet"),
  6195. default: true
  6196. },
  6197. {
  6198. name: "Lorger",
  6199. height: math.unit(250, "feet")
  6200. },
  6201. {
  6202. name: "Macro",
  6203. height: math.unit(500, "meters")
  6204. },
  6205. ]
  6206. ))
  6207. characterMakers.push(() => makeCharacter(
  6208. { name: "Rose Lion", species: ["lion", "mouse"], tags: ["anthro"] },
  6209. {
  6210. front: {
  6211. height: math.unit(2, "meters"),
  6212. weight: math.unit(86, "kg"),
  6213. name: "Front",
  6214. image: {
  6215. source: "./media/characters/rose-lion/front.svg"
  6216. }
  6217. },
  6218. bent: {
  6219. height: math.unit(2 / 1.4288, "meters"),
  6220. weight: math.unit(86, "kg"),
  6221. name: "Bent",
  6222. image: {
  6223. source: "./media/characters/rose-lion/bent.svg"
  6224. }
  6225. }
  6226. },
  6227. [
  6228. {
  6229. name: "Mini-Micro",
  6230. height: math.unit(1, "cm")
  6231. },
  6232. {
  6233. name: "Micro",
  6234. height: math.unit(3.5, "inches"),
  6235. default: true
  6236. },
  6237. {
  6238. name: "Normal",
  6239. height: math.unit(6 + 1 / 6, "feet")
  6240. },
  6241. {
  6242. name: "Mini-Macro",
  6243. height: math.unit(9 + 10 / 12, "feet")
  6244. },
  6245. ]
  6246. ))
  6247. characterMakers.push(() => makeCharacter(
  6248. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6249. {
  6250. front: {
  6251. height: math.unit(2, "meters"),
  6252. weight: math.unit(350, "lbs"),
  6253. name: "Front",
  6254. image: {
  6255. source: "./media/characters/regal/front.svg"
  6256. }
  6257. },
  6258. back: {
  6259. height: math.unit(2, "meters"),
  6260. weight: math.unit(350, "lbs"),
  6261. name: "Back",
  6262. image: {
  6263. source: "./media/characters/regal/back.svg"
  6264. }
  6265. },
  6266. },
  6267. [
  6268. {
  6269. name: "Macro",
  6270. height: math.unit(350, "feet"),
  6271. default: true
  6272. }
  6273. ]
  6274. ))
  6275. characterMakers.push(() => makeCharacter(
  6276. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6277. {
  6278. front: {
  6279. height: math.unit(4 + 11 / 12, "feet"),
  6280. weight: math.unit(100, "lbs"),
  6281. name: "Front",
  6282. image: {
  6283. source: "./media/characters/opal/front.svg"
  6284. }
  6285. },
  6286. frontAlt: {
  6287. height: math.unit(4 + 11 / 12, "feet"),
  6288. weight: math.unit(100, "lbs"),
  6289. name: "Front (Alt)",
  6290. image: {
  6291. source: "./media/characters/opal/front-alt.svg"
  6292. }
  6293. },
  6294. },
  6295. [
  6296. {
  6297. name: "Small",
  6298. height: math.unit(4 + 11 / 12, "feet")
  6299. },
  6300. {
  6301. name: "Normal",
  6302. height: math.unit(20, "feet"),
  6303. default: true
  6304. },
  6305. {
  6306. name: "Macro",
  6307. height: math.unit(120, "feet")
  6308. },
  6309. {
  6310. name: "Megamacro",
  6311. height: math.unit(80, "miles")
  6312. },
  6313. {
  6314. name: "True Size",
  6315. height: math.unit(100000, "lightyears")
  6316. },
  6317. ]
  6318. ))
  6319. characterMakers.push(() => makeCharacter(
  6320. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6321. {
  6322. front: {
  6323. height: math.unit(6, "feet"),
  6324. weight: math.unit(200, "lbs"),
  6325. name: "Front",
  6326. image: {
  6327. source: "./media/characters/vector-wuff/front.svg"
  6328. }
  6329. }
  6330. },
  6331. [
  6332. {
  6333. name: "Normal",
  6334. height: math.unit(2.8, "meters")
  6335. },
  6336. {
  6337. name: "Macro",
  6338. height: math.unit(450, "meters"),
  6339. default: true
  6340. },
  6341. {
  6342. name: "Megamacro",
  6343. height: math.unit(15, "kilometers")
  6344. }
  6345. ]
  6346. ))
  6347. characterMakers.push(() => makeCharacter(
  6348. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6349. {
  6350. front: {
  6351. height: math.unit(6, "feet"),
  6352. weight: math.unit(256, "lbs"),
  6353. name: "Front",
  6354. image: {
  6355. source: "./media/characters/dannik/front.svg"
  6356. }
  6357. }
  6358. },
  6359. [
  6360. {
  6361. name: "Macro",
  6362. height: math.unit(69.57, "meters"),
  6363. default: true
  6364. },
  6365. ]
  6366. ))
  6367. characterMakers.push(() => makeCharacter(
  6368. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6369. {
  6370. front: {
  6371. height: math.unit(6, "feet"),
  6372. weight: math.unit(120, "lbs"),
  6373. name: "Front",
  6374. image: {
  6375. source: "./media/characters/azura-saharah/front.svg"
  6376. }
  6377. },
  6378. back: {
  6379. height: math.unit(6, "feet"),
  6380. weight: math.unit(120, "lbs"),
  6381. name: "Back",
  6382. image: {
  6383. source: "./media/characters/azura-saharah/back.svg"
  6384. }
  6385. },
  6386. },
  6387. [
  6388. {
  6389. name: "Macro",
  6390. height: math.unit(100, "feet"),
  6391. default: true
  6392. },
  6393. ]
  6394. ))
  6395. characterMakers.push(() => makeCharacter(
  6396. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6397. {
  6398. side: {
  6399. height: math.unit(5 + 4 / 12, "feet"),
  6400. weight: math.unit(163, "lbs"),
  6401. name: "Side",
  6402. image: {
  6403. source: "./media/characters/kennedy/side.svg"
  6404. }
  6405. }
  6406. },
  6407. [
  6408. {
  6409. name: "Standard Doggo",
  6410. height: math.unit(5 + 4 / 12, "feet")
  6411. },
  6412. {
  6413. name: "Big Doggo",
  6414. height: math.unit(25 + 3 / 12, "feet"),
  6415. default: true
  6416. },
  6417. ]
  6418. ))
  6419. characterMakers.push(() => makeCharacter(
  6420. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6421. {
  6422. front: {
  6423. height: math.unit(6, "feet"),
  6424. weight: math.unit(90, "lbs"),
  6425. name: "Front",
  6426. image: {
  6427. source: "./media/characters/odi-lunar/front.svg"
  6428. }
  6429. }
  6430. },
  6431. [
  6432. {
  6433. name: "Micro",
  6434. height: math.unit(3, "inches"),
  6435. default: true
  6436. },
  6437. {
  6438. name: "Normal",
  6439. height: math.unit(5.5, "feet")
  6440. }
  6441. ]
  6442. ))
  6443. characterMakers.push(() => makeCharacter(
  6444. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6445. {
  6446. back: {
  6447. height: math.unit(6, "feet"),
  6448. weight: math.unit(220, "lbs"),
  6449. name: "Back",
  6450. image: {
  6451. source: "./media/characters/mandake/back.svg"
  6452. }
  6453. }
  6454. },
  6455. [
  6456. {
  6457. name: "Normal",
  6458. height: math.unit(7, "feet"),
  6459. default: true
  6460. },
  6461. {
  6462. name: "Macro",
  6463. height: math.unit(78, "feet")
  6464. },
  6465. {
  6466. name: "Macro+",
  6467. height: math.unit(300, "meters")
  6468. },
  6469. {
  6470. name: "Macro++",
  6471. height: math.unit(2400, "feet")
  6472. },
  6473. {
  6474. name: "Megamacro",
  6475. height: math.unit(5167, "meters")
  6476. },
  6477. {
  6478. name: "Gigamacro",
  6479. height: math.unit(41769, "miles")
  6480. },
  6481. ]
  6482. ))
  6483. characterMakers.push(() => makeCharacter(
  6484. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6485. {
  6486. front: {
  6487. height: math.unit(6, "feet"),
  6488. weight: math.unit(120, "lbs"),
  6489. name: "Front",
  6490. image: {
  6491. source: "./media/characters/yozey/front.svg"
  6492. }
  6493. },
  6494. frontAlt: {
  6495. height: math.unit(6, "feet"),
  6496. weight: math.unit(120, "lbs"),
  6497. name: "Front (Alt)",
  6498. image: {
  6499. source: "./media/characters/yozey/front-alt.svg"
  6500. }
  6501. },
  6502. side: {
  6503. height: math.unit(6, "feet"),
  6504. weight: math.unit(120, "lbs"),
  6505. name: "Side",
  6506. image: {
  6507. source: "./media/characters/yozey/side.svg"
  6508. }
  6509. },
  6510. },
  6511. [
  6512. {
  6513. name: "Micro",
  6514. height: math.unit(3, "inches"),
  6515. default: true
  6516. },
  6517. {
  6518. name: "Normal",
  6519. height: math.unit(6, "feet")
  6520. }
  6521. ]
  6522. ))
  6523. characterMakers.push(() => makeCharacter(
  6524. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6525. {
  6526. front: {
  6527. height: math.unit(6, "feet"),
  6528. weight: math.unit(103, "lbs"),
  6529. name: "Front",
  6530. image: {
  6531. source: "./media/characters/valeska-voss/front.svg"
  6532. }
  6533. }
  6534. },
  6535. [
  6536. {
  6537. name: "Mini-Sized Sub",
  6538. height: math.unit(3.1, "inches")
  6539. },
  6540. {
  6541. name: "Mid-Sized Sub",
  6542. height: math.unit(6.2, "inches")
  6543. },
  6544. {
  6545. name: "Full-Sized Sub",
  6546. height: math.unit(9.3, "inches")
  6547. },
  6548. {
  6549. name: "Normal",
  6550. height: math.unit(5 + 2 / 12, "foot"),
  6551. default: true
  6552. },
  6553. ]
  6554. ))
  6555. characterMakers.push(() => makeCharacter(
  6556. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6557. {
  6558. front: {
  6559. height: math.unit(6, "feet"),
  6560. weight: math.unit(160, "lbs"),
  6561. name: "Front",
  6562. image: {
  6563. source: "./media/characters/gene-zeta/front.svg",
  6564. extra: 3006/2826,
  6565. bottom: 182/3188
  6566. }
  6567. }
  6568. },
  6569. [
  6570. {
  6571. name: "Micro",
  6572. height: math.unit(6, "inches")
  6573. },
  6574. {
  6575. name: "Normal",
  6576. height: math.unit(5 + 11/12, "foot"),
  6577. default: true
  6578. },
  6579. {
  6580. name: "Macro",
  6581. height: math.unit(140, "feet")
  6582. },
  6583. {
  6584. name: "Supercharged",
  6585. height: math.unit(2500, "feet")
  6586. },
  6587. ]
  6588. ))
  6589. characterMakers.push(() => makeCharacter(
  6590. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6591. {
  6592. front: {
  6593. height: math.unit(6, "feet"),
  6594. weight: math.unit(350, "lbs"),
  6595. name: "Front",
  6596. image: {
  6597. source: "./media/characters/razinox/front.svg",
  6598. extra: 1686 / 1548,
  6599. bottom: 28.2 / 1868
  6600. }
  6601. },
  6602. back: {
  6603. height: math.unit(6, "feet"),
  6604. weight: math.unit(350, "lbs"),
  6605. name: "Back",
  6606. image: {
  6607. source: "./media/characters/razinox/back.svg",
  6608. extra: 1660 / 1590,
  6609. bottom: 15 / 1665
  6610. }
  6611. },
  6612. },
  6613. [
  6614. {
  6615. name: "Normal",
  6616. height: math.unit(10 + 8 / 12, "foot")
  6617. },
  6618. {
  6619. name: "Minimacro",
  6620. height: math.unit(15, "foot")
  6621. },
  6622. {
  6623. name: "Macro",
  6624. height: math.unit(60, "foot"),
  6625. default: true
  6626. },
  6627. {
  6628. name: "Megamacro",
  6629. height: math.unit(5, "miles")
  6630. },
  6631. {
  6632. name: "Gigamacro",
  6633. height: math.unit(6000, "miles")
  6634. },
  6635. ]
  6636. ))
  6637. characterMakers.push(() => makeCharacter(
  6638. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6639. {
  6640. front: {
  6641. height: math.unit(6, "feet"),
  6642. weight: math.unit(150, "lbs"),
  6643. name: "Front",
  6644. image: {
  6645. source: "./media/characters/cobalt/front.svg"
  6646. }
  6647. }
  6648. },
  6649. [
  6650. {
  6651. name: "Normal",
  6652. height: math.unit(8 + 1 / 12, "foot")
  6653. },
  6654. {
  6655. name: "Macro",
  6656. height: math.unit(111, "foot"),
  6657. default: true
  6658. },
  6659. {
  6660. name: "Supracosmic",
  6661. height: math.unit(1e42, "feet")
  6662. },
  6663. ]
  6664. ))
  6665. characterMakers.push(() => makeCharacter(
  6666. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6667. {
  6668. front: {
  6669. height: math.unit(6, "feet"),
  6670. weight: math.unit(140, "lbs"),
  6671. name: "Front",
  6672. image: {
  6673. source: "./media/characters/amanda/front.svg"
  6674. }
  6675. }
  6676. },
  6677. [
  6678. {
  6679. name: "Micro",
  6680. height: math.unit(5, "inches"),
  6681. default: true
  6682. },
  6683. ]
  6684. ))
  6685. characterMakers.push(() => makeCharacter(
  6686. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6687. {
  6688. front: {
  6689. height: math.unit(5.59, "feet"),
  6690. weight: math.unit(250, "lbs"),
  6691. name: "Front",
  6692. image: {
  6693. source: "./media/characters/teal/front.svg"
  6694. }
  6695. },
  6696. frontAlt: {
  6697. height: math.unit(6, "feet"),
  6698. weight: math.unit(250, "lbs"),
  6699. name: "Front (Alt)",
  6700. image: {
  6701. source: "./media/characters/teal/front-alt.svg",
  6702. bottom: 0.04,
  6703. extra: 1
  6704. }
  6705. },
  6706. },
  6707. [
  6708. {
  6709. name: "Normal",
  6710. height: math.unit(12, "feet"),
  6711. default: true
  6712. },
  6713. {
  6714. name: "Macro",
  6715. height: math.unit(300, "feet")
  6716. },
  6717. ]
  6718. ))
  6719. characterMakers.push(() => makeCharacter(
  6720. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6721. {
  6722. frontCat: {
  6723. height: math.unit(6, "feet"),
  6724. weight: math.unit(180, "lbs"),
  6725. name: "Front (Cat)",
  6726. image: {
  6727. source: "./media/characters/ravin-amulet/front-cat.svg"
  6728. }
  6729. },
  6730. frontCatAlt: {
  6731. height: math.unit(6, "feet"),
  6732. weight: math.unit(180, "lbs"),
  6733. name: "Front (Alt, Cat)",
  6734. image: {
  6735. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6736. }
  6737. },
  6738. frontWerewolf: {
  6739. height: math.unit(6 * 1.2, "feet"),
  6740. weight: math.unit(225, "lbs"),
  6741. name: "Front (Werewolf)",
  6742. image: {
  6743. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6744. }
  6745. },
  6746. backWerewolf: {
  6747. height: math.unit(6 * 1.2, "feet"),
  6748. weight: math.unit(225, "lbs"),
  6749. name: "Back (Werewolf)",
  6750. image: {
  6751. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6752. }
  6753. },
  6754. },
  6755. [
  6756. {
  6757. name: "Nano",
  6758. height: math.unit(1, "micrometer")
  6759. },
  6760. {
  6761. name: "Micro",
  6762. height: math.unit(1, "inch")
  6763. },
  6764. {
  6765. name: "Normal",
  6766. height: math.unit(6, "feet"),
  6767. default: true
  6768. },
  6769. {
  6770. name: "Macro",
  6771. height: math.unit(60, "feet")
  6772. }
  6773. ]
  6774. ))
  6775. characterMakers.push(() => makeCharacter(
  6776. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  6777. {
  6778. front: {
  6779. height: math.unit(6, "feet"),
  6780. weight: math.unit(165, "lbs"),
  6781. name: "Front",
  6782. image: {
  6783. source: "./media/characters/fluoresce/front.svg"
  6784. }
  6785. }
  6786. },
  6787. [
  6788. {
  6789. name: "Micro",
  6790. height: math.unit(6, "cm")
  6791. },
  6792. {
  6793. name: "Normal",
  6794. height: math.unit(5 + 7 / 12, "feet"),
  6795. default: true
  6796. },
  6797. {
  6798. name: "Macro",
  6799. height: math.unit(56, "feet")
  6800. },
  6801. {
  6802. name: "Megamacro",
  6803. height: math.unit(1.9, "miles")
  6804. },
  6805. ]
  6806. ))
  6807. characterMakers.push(() => makeCharacter(
  6808. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  6809. {
  6810. front: {
  6811. height: math.unit(9 + 6 / 12, "feet"),
  6812. weight: math.unit(523, "lbs"),
  6813. name: "Side",
  6814. image: {
  6815. source: "./media/characters/aurora/side.svg"
  6816. }
  6817. }
  6818. },
  6819. [
  6820. {
  6821. name: "Normal",
  6822. height: math.unit(9 + 6 / 12, "feet")
  6823. },
  6824. {
  6825. name: "Macro",
  6826. height: math.unit(96, "feet"),
  6827. default: true
  6828. },
  6829. {
  6830. name: "Macro+",
  6831. height: math.unit(243, "feet")
  6832. },
  6833. ]
  6834. ))
  6835. characterMakers.push(() => makeCharacter(
  6836. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  6837. {
  6838. front: {
  6839. height: math.unit(194, "cm"),
  6840. weight: math.unit(90, "kg"),
  6841. name: "Front",
  6842. image: {
  6843. source: "./media/characters/ranek/front.svg"
  6844. }
  6845. },
  6846. side: {
  6847. height: math.unit(194, "cm"),
  6848. weight: math.unit(90, "kg"),
  6849. name: "Side",
  6850. image: {
  6851. source: "./media/characters/ranek/side.svg"
  6852. }
  6853. },
  6854. back: {
  6855. height: math.unit(194, "cm"),
  6856. weight: math.unit(90, "kg"),
  6857. name: "Back",
  6858. image: {
  6859. source: "./media/characters/ranek/back.svg"
  6860. }
  6861. },
  6862. feral: {
  6863. height: math.unit(30, "cm"),
  6864. weight: math.unit(1.6, "lbs"),
  6865. name: "Feral",
  6866. image: {
  6867. source: "./media/characters/ranek/feral.svg"
  6868. }
  6869. },
  6870. },
  6871. [
  6872. {
  6873. name: "Normal",
  6874. height: math.unit(194, "cm"),
  6875. default: true
  6876. },
  6877. {
  6878. name: "Macro",
  6879. height: math.unit(100, "meters")
  6880. },
  6881. ]
  6882. ))
  6883. characterMakers.push(() => makeCharacter(
  6884. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  6885. {
  6886. front: {
  6887. height: math.unit(5 + 6 / 12, "feet"),
  6888. weight: math.unit(153, "lbs"),
  6889. name: "Front",
  6890. image: {
  6891. source: "./media/characters/andrew-cooper/front.svg"
  6892. }
  6893. },
  6894. },
  6895. [
  6896. {
  6897. name: "Nano",
  6898. height: math.unit(1, "mm")
  6899. },
  6900. {
  6901. name: "Micro",
  6902. height: math.unit(2, "inches")
  6903. },
  6904. {
  6905. name: "Normal",
  6906. height: math.unit(5 + 6 / 12, "feet"),
  6907. default: true
  6908. }
  6909. ]
  6910. ))
  6911. characterMakers.push(() => makeCharacter(
  6912. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  6913. {
  6914. front: {
  6915. height: math.unit(6, "feet"),
  6916. weight: math.unit(180, "lbs"),
  6917. name: "Front",
  6918. image: {
  6919. source: "./media/characters/akane-sato/front.svg",
  6920. extra: 1219 / 1140
  6921. }
  6922. },
  6923. back: {
  6924. height: math.unit(6, "feet"),
  6925. weight: math.unit(180, "lbs"),
  6926. name: "Back",
  6927. image: {
  6928. source: "./media/characters/akane-sato/back.svg",
  6929. extra: 1219 / 1170
  6930. }
  6931. },
  6932. },
  6933. [
  6934. {
  6935. name: "Normal",
  6936. height: math.unit(2.5, "meters")
  6937. },
  6938. {
  6939. name: "Macro",
  6940. height: math.unit(250, "meters"),
  6941. default: true
  6942. },
  6943. {
  6944. name: "Megamacro",
  6945. height: math.unit(25, "km")
  6946. },
  6947. ]
  6948. ))
  6949. characterMakers.push(() => makeCharacter(
  6950. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  6951. {
  6952. front: {
  6953. height: math.unit(6, "feet"),
  6954. weight: math.unit(65, "kg"),
  6955. name: "Front",
  6956. image: {
  6957. source: "./media/characters/rook/front.svg",
  6958. extra: 960 / 950
  6959. }
  6960. }
  6961. },
  6962. [
  6963. {
  6964. name: "Normal",
  6965. height: math.unit(8.8, "feet")
  6966. },
  6967. {
  6968. name: "Macro",
  6969. height: math.unit(88, "feet"),
  6970. default: true
  6971. },
  6972. {
  6973. name: "Megamacro",
  6974. height: math.unit(8, "miles")
  6975. },
  6976. ]
  6977. ))
  6978. characterMakers.push(() => makeCharacter(
  6979. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  6980. {
  6981. front: {
  6982. height: math.unit(12 + 2 / 12, "feet"),
  6983. weight: math.unit(808, "lbs"),
  6984. name: "Front",
  6985. image: {
  6986. source: "./media/characters/prodigy/front.svg"
  6987. }
  6988. }
  6989. },
  6990. [
  6991. {
  6992. name: "Normal",
  6993. height: math.unit(12 + 2 / 12, "feet"),
  6994. default: true
  6995. },
  6996. {
  6997. name: "Macro",
  6998. height: math.unit(143, "feet")
  6999. },
  7000. {
  7001. name: "Macro+",
  7002. height: math.unit(400, "feet")
  7003. },
  7004. ]
  7005. ))
  7006. characterMakers.push(() => makeCharacter(
  7007. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7008. {
  7009. front: {
  7010. height: math.unit(6, "feet"),
  7011. weight: math.unit(225, "lbs"),
  7012. name: "Front",
  7013. image: {
  7014. source: "./media/characters/daniel/front.svg"
  7015. }
  7016. },
  7017. leaning: {
  7018. height: math.unit(6, "feet"),
  7019. weight: math.unit(225, "lbs"),
  7020. name: "Leaning",
  7021. image: {
  7022. source: "./media/characters/daniel/leaning.svg"
  7023. }
  7024. },
  7025. },
  7026. [
  7027. {
  7028. name: "Macro",
  7029. height: math.unit(1000, "feet"),
  7030. default: true
  7031. },
  7032. ]
  7033. ))
  7034. characterMakers.push(() => makeCharacter(
  7035. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7036. {
  7037. front: {
  7038. height: math.unit(6, "feet"),
  7039. weight: math.unit(88, "lbs"),
  7040. name: "Front",
  7041. image: {
  7042. source: "./media/characters/chiros/front.svg",
  7043. extra: 306 / 226
  7044. }
  7045. },
  7046. side: {
  7047. height: math.unit(6, "feet"),
  7048. weight: math.unit(88, "lbs"),
  7049. name: "Side",
  7050. image: {
  7051. source: "./media/characters/chiros/side.svg",
  7052. extra: 306 / 226
  7053. }
  7054. },
  7055. },
  7056. [
  7057. {
  7058. name: "Normal",
  7059. height: math.unit(6, "cm"),
  7060. default: true
  7061. },
  7062. ]
  7063. ))
  7064. characterMakers.push(() => makeCharacter(
  7065. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7066. {
  7067. front: {
  7068. height: math.unit(6, "feet"),
  7069. weight: math.unit(100, "lbs"),
  7070. name: "Front",
  7071. image: {
  7072. source: "./media/characters/selka/front.svg",
  7073. extra: 947 / 887
  7074. }
  7075. }
  7076. },
  7077. [
  7078. {
  7079. name: "Normal",
  7080. height: math.unit(5, "cm"),
  7081. default: true
  7082. },
  7083. ]
  7084. ))
  7085. characterMakers.push(() => makeCharacter(
  7086. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7087. {
  7088. front: {
  7089. height: math.unit(8 + 3 / 12, "feet"),
  7090. weight: math.unit(424, "lbs"),
  7091. name: "Front",
  7092. image: {
  7093. source: "./media/characters/verin/front.svg",
  7094. extra: 1845 / 1550
  7095. }
  7096. },
  7097. frontArmored: {
  7098. height: math.unit(8 + 3 / 12, "feet"),
  7099. weight: math.unit(424, "lbs"),
  7100. name: "Front (Armored)",
  7101. image: {
  7102. source: "./media/characters/verin/front-armor.svg",
  7103. extra: 1845 / 1550,
  7104. bottom: 0.01
  7105. }
  7106. },
  7107. back: {
  7108. height: math.unit(8 + 3 / 12, "feet"),
  7109. weight: math.unit(424, "lbs"),
  7110. name: "Back",
  7111. image: {
  7112. source: "./media/characters/verin/back.svg",
  7113. bottom: 0.1,
  7114. extra: 1
  7115. }
  7116. },
  7117. foot: {
  7118. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7119. name: "Foot",
  7120. image: {
  7121. source: "./media/characters/verin/foot.svg"
  7122. }
  7123. },
  7124. },
  7125. [
  7126. {
  7127. name: "Normal",
  7128. height: math.unit(8 + 3 / 12, "feet")
  7129. },
  7130. {
  7131. name: "Minimacro",
  7132. height: math.unit(21, "feet"),
  7133. default: true
  7134. },
  7135. {
  7136. name: "Macro",
  7137. height: math.unit(626, "feet")
  7138. },
  7139. ]
  7140. ))
  7141. characterMakers.push(() => makeCharacter(
  7142. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7143. {
  7144. front: {
  7145. height: math.unit(2.718, "meters"),
  7146. weight: math.unit(150, "lbs"),
  7147. name: "Front",
  7148. image: {
  7149. source: "./media/characters/sovrim-terraquian/front.svg"
  7150. }
  7151. },
  7152. back: {
  7153. height: math.unit(2.718, "meters"),
  7154. weight: math.unit(150, "lbs"),
  7155. name: "Back",
  7156. image: {
  7157. source: "./media/characters/sovrim-terraquian/back.svg"
  7158. }
  7159. }
  7160. },
  7161. [
  7162. {
  7163. name: "Micro",
  7164. height: math.unit(2, "inches")
  7165. },
  7166. {
  7167. name: "Small",
  7168. height: math.unit(1, "meter")
  7169. },
  7170. {
  7171. name: "Normal",
  7172. height: math.unit(Math.E, "meters"),
  7173. default: true
  7174. },
  7175. {
  7176. name: "Macro",
  7177. height: math.unit(20, "meters")
  7178. },
  7179. {
  7180. name: "Macro+",
  7181. height: math.unit(400, "meters")
  7182. },
  7183. ]
  7184. ))
  7185. characterMakers.push(() => makeCharacter(
  7186. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7187. {
  7188. front: {
  7189. height: math.unit(7, "feet"),
  7190. weight: math.unit(489, "lbs"),
  7191. name: "Front",
  7192. image: {
  7193. source: "./media/characters/reece-silvermane/front.svg",
  7194. bottom: 0.02,
  7195. extra: 1
  7196. }
  7197. },
  7198. },
  7199. [
  7200. {
  7201. name: "Macro",
  7202. height: math.unit(1.5, "miles"),
  7203. default: true
  7204. },
  7205. ]
  7206. ))
  7207. characterMakers.push(() => makeCharacter(
  7208. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7209. {
  7210. front: {
  7211. height: math.unit(6, "feet"),
  7212. weight: math.unit(78, "kg"),
  7213. name: "Front",
  7214. image: {
  7215. source: "./media/characters/kane/front.svg",
  7216. extra: 978 / 899
  7217. }
  7218. },
  7219. },
  7220. [
  7221. {
  7222. name: "Normal",
  7223. height: math.unit(2.1, "m"),
  7224. },
  7225. {
  7226. name: "Macro",
  7227. height: math.unit(1, "km"),
  7228. default: true
  7229. },
  7230. ]
  7231. ))
  7232. characterMakers.push(() => makeCharacter(
  7233. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7234. {
  7235. front: {
  7236. height: math.unit(6, "feet"),
  7237. weight: math.unit(200, "kg"),
  7238. name: "Front",
  7239. image: {
  7240. source: "./media/characters/tegon/front.svg",
  7241. bottom: 0.01,
  7242. extra: 1
  7243. }
  7244. },
  7245. },
  7246. [
  7247. {
  7248. name: "Micro",
  7249. height: math.unit(1, "inch")
  7250. },
  7251. {
  7252. name: "Normal",
  7253. height: math.unit(6 + 3 / 12, "feet"),
  7254. default: true
  7255. },
  7256. {
  7257. name: "Macro",
  7258. height: math.unit(300, "feet")
  7259. },
  7260. {
  7261. name: "Megamacro",
  7262. height: math.unit(69, "miles")
  7263. },
  7264. ]
  7265. ))
  7266. characterMakers.push(() => makeCharacter(
  7267. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7268. {
  7269. side: {
  7270. height: math.unit(6, "feet"),
  7271. weight: math.unit(2304, "lbs"),
  7272. name: "Side",
  7273. image: {
  7274. source: "./media/characters/arcturax/side.svg",
  7275. extra: 790 / 376,
  7276. bottom: 0.01
  7277. }
  7278. },
  7279. },
  7280. [
  7281. {
  7282. name: "Micro",
  7283. height: math.unit(2, "inch")
  7284. },
  7285. {
  7286. name: "Normal",
  7287. height: math.unit(6, "feet")
  7288. },
  7289. {
  7290. name: "Macro",
  7291. height: math.unit(39, "feet"),
  7292. default: true
  7293. },
  7294. {
  7295. name: "Megamacro",
  7296. height: math.unit(7, "miles")
  7297. },
  7298. ]
  7299. ))
  7300. characterMakers.push(() => makeCharacter(
  7301. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7302. {
  7303. front: {
  7304. height: math.unit(6, "feet"),
  7305. weight: math.unit(50, "lbs"),
  7306. name: "Front",
  7307. image: {
  7308. source: "./media/characters/sentri/front.svg",
  7309. extra: 1750 / 1570,
  7310. bottom: 0.025
  7311. }
  7312. },
  7313. frontAlt: {
  7314. height: math.unit(6, "feet"),
  7315. weight: math.unit(50, "lbs"),
  7316. name: "Front (Alt)",
  7317. image: {
  7318. source: "./media/characters/sentri/front-alt.svg",
  7319. extra: 1750 / 1570,
  7320. bottom: 0.025
  7321. }
  7322. },
  7323. },
  7324. [
  7325. {
  7326. name: "Normal",
  7327. height: math.unit(15, "feet"),
  7328. default: true
  7329. },
  7330. {
  7331. name: "Macro",
  7332. height: math.unit(2500, "feet")
  7333. }
  7334. ]
  7335. ))
  7336. characterMakers.push(() => makeCharacter(
  7337. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7338. {
  7339. front: {
  7340. height: math.unit(5 + 8 / 12, "feet"),
  7341. weight: math.unit(130, "lbs"),
  7342. name: "Front",
  7343. image: {
  7344. source: "./media/characters/corvin/front.svg",
  7345. extra: 1803 / 1629
  7346. }
  7347. },
  7348. frontShirt: {
  7349. height: math.unit(5 + 8 / 12, "feet"),
  7350. weight: math.unit(130, "lbs"),
  7351. name: "Front (Shirt)",
  7352. image: {
  7353. source: "./media/characters/corvin/front-shirt.svg",
  7354. extra: 1803 / 1629
  7355. }
  7356. },
  7357. frontPoncho: {
  7358. height: math.unit(5 + 8 / 12, "feet"),
  7359. weight: math.unit(130, "lbs"),
  7360. name: "Front (Poncho)",
  7361. image: {
  7362. source: "./media/characters/corvin/front-poncho.svg",
  7363. extra: 1803 / 1629
  7364. }
  7365. },
  7366. side: {
  7367. height: math.unit(5 + 8 / 12, "feet"),
  7368. weight: math.unit(130, "lbs"),
  7369. name: "Side",
  7370. image: {
  7371. source: "./media/characters/corvin/side.svg",
  7372. extra: 1012 / 945
  7373. }
  7374. },
  7375. back: {
  7376. height: math.unit(5 + 8 / 12, "feet"),
  7377. weight: math.unit(130, "lbs"),
  7378. name: "Back",
  7379. image: {
  7380. source: "./media/characters/corvin/back.svg",
  7381. extra: 1803 / 1629
  7382. }
  7383. },
  7384. },
  7385. [
  7386. {
  7387. name: "Micro",
  7388. height: math.unit(3, "inches")
  7389. },
  7390. {
  7391. name: "Normal",
  7392. height: math.unit(5 + 8 / 12, "feet")
  7393. },
  7394. {
  7395. name: "Macro",
  7396. height: math.unit(300, "feet"),
  7397. default: true
  7398. },
  7399. {
  7400. name: "Megamacro",
  7401. height: math.unit(500, "miles")
  7402. }
  7403. ]
  7404. ))
  7405. characterMakers.push(() => makeCharacter(
  7406. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7407. {
  7408. front: {
  7409. height: math.unit(6, "feet"),
  7410. weight: math.unit(135, "lbs"),
  7411. name: "Front",
  7412. image: {
  7413. source: "./media/characters/q/front.svg",
  7414. extra: 854 / 752,
  7415. bottom: 0.005
  7416. }
  7417. },
  7418. back: {
  7419. height: math.unit(6, "feet"),
  7420. weight: math.unit(130, "lbs"),
  7421. name: "Back",
  7422. image: {
  7423. source: "./media/characters/q/back.svg",
  7424. extra: 854 / 752
  7425. }
  7426. },
  7427. },
  7428. [
  7429. {
  7430. name: "Macro",
  7431. height: math.unit(90, "feet"),
  7432. default: true
  7433. },
  7434. {
  7435. name: "Extra Macro",
  7436. height: math.unit(300, "feet"),
  7437. },
  7438. {
  7439. name: "BIG WALF",
  7440. height: math.unit(750, "feet"),
  7441. },
  7442. ]
  7443. ))
  7444. characterMakers.push(() => makeCharacter(
  7445. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7446. {
  7447. front: {
  7448. height: math.unit(6, "feet"),
  7449. weight: math.unit(150, "lbs"),
  7450. name: "Front",
  7451. image: {
  7452. source: "./media/characters/carley/front.svg",
  7453. extra: 3927 / 3540,
  7454. bottom: 29.2 / 735
  7455. }
  7456. }
  7457. },
  7458. [
  7459. {
  7460. name: "Normal",
  7461. height: math.unit(6 + 3 / 12, "feet")
  7462. },
  7463. {
  7464. name: "Macro",
  7465. height: math.unit(185, "feet"),
  7466. default: true
  7467. },
  7468. {
  7469. name: "Megamacro",
  7470. height: math.unit(8, "miles"),
  7471. },
  7472. ]
  7473. ))
  7474. characterMakers.push(() => makeCharacter(
  7475. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7476. {
  7477. front: {
  7478. height: math.unit(3, "feet"),
  7479. weight: math.unit(28, "lbs"),
  7480. name: "Front",
  7481. image: {
  7482. source: "./media/characters/citrine/front.svg"
  7483. }
  7484. }
  7485. },
  7486. [
  7487. {
  7488. name: "Normal",
  7489. height: math.unit(3, "feet"),
  7490. default: true
  7491. }
  7492. ]
  7493. ))
  7494. characterMakers.push(() => makeCharacter(
  7495. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7496. {
  7497. front: {
  7498. height: math.unit(14, "feet"),
  7499. weight: math.unit(1450, "kg"),
  7500. capacity: math.unit(15, "people"),
  7501. name: "Front",
  7502. image: {
  7503. source: "./media/characters/aura-starwind/front.svg",
  7504. extra: 1455 / 1335
  7505. }
  7506. },
  7507. side: {
  7508. height: math.unit(14, "feet"),
  7509. weight: math.unit(1450, "kg"),
  7510. capacity: math.unit(15, "people"),
  7511. name: "Side",
  7512. image: {
  7513. source: "./media/characters/aura-starwind/side.svg",
  7514. extra: 1654 / 1497
  7515. }
  7516. },
  7517. taur: {
  7518. height: math.unit(18, "feet"),
  7519. weight: math.unit(5500, "kg"),
  7520. capacity: math.unit(50, "people"),
  7521. name: "Taur",
  7522. image: {
  7523. source: "./media/characters/aura-starwind/taur.svg",
  7524. extra: 1760 / 1650
  7525. }
  7526. },
  7527. feral: {
  7528. height: math.unit(46, "feet"),
  7529. weight: math.unit(25000, "kg"),
  7530. capacity: math.unit(120, "people"),
  7531. name: "Feral",
  7532. image: {
  7533. source: "./media/characters/aura-starwind/feral.svg"
  7534. }
  7535. },
  7536. },
  7537. [
  7538. {
  7539. name: "Normal",
  7540. height: math.unit(14, "feet"),
  7541. default: true
  7542. },
  7543. {
  7544. name: "Macro",
  7545. height: math.unit(50, "meters")
  7546. },
  7547. {
  7548. name: "Megamacro",
  7549. height: math.unit(5000, "meters")
  7550. },
  7551. {
  7552. name: "Gigamacro",
  7553. height: math.unit(100000, "kilometers")
  7554. },
  7555. ]
  7556. ))
  7557. characterMakers.push(() => makeCharacter(
  7558. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7559. {
  7560. front: {
  7561. height: math.unit(2 + 7 / 12, "feet"),
  7562. weight: math.unit(32, "lbs"),
  7563. name: "Front",
  7564. image: {
  7565. source: "./media/characters/rivet/front.svg",
  7566. extra: 1716 / 1658,
  7567. bottom: 0.03
  7568. }
  7569. },
  7570. foot: {
  7571. height: math.unit(0.551, "feet"),
  7572. name: "Rivet's Foot",
  7573. image: {
  7574. source: "./media/characters/rivet/foot.svg"
  7575. },
  7576. rename: true
  7577. }
  7578. },
  7579. [
  7580. {
  7581. name: "Micro",
  7582. height: math.unit(1.5, "inches"),
  7583. },
  7584. {
  7585. name: "Normal",
  7586. height: math.unit(2 + 7 / 12, "feet"),
  7587. default: true
  7588. },
  7589. {
  7590. name: "Macro",
  7591. height: math.unit(85, "feet")
  7592. },
  7593. {
  7594. name: "Megamacro",
  7595. height: math.unit(2.2, "km")
  7596. }
  7597. ]
  7598. ))
  7599. characterMakers.push(() => makeCharacter(
  7600. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7601. {
  7602. front: {
  7603. height: math.unit(5 + 9 / 12, "feet"),
  7604. weight: math.unit(150, "lbs"),
  7605. name: "Front",
  7606. image: {
  7607. source: "./media/characters/coffee/front.svg",
  7608. extra: 3666 / 3032,
  7609. bottom: 0.04
  7610. }
  7611. },
  7612. foot: {
  7613. height: math.unit(1.29, "feet"),
  7614. name: "Foot",
  7615. image: {
  7616. source: "./media/characters/coffee/foot.svg"
  7617. }
  7618. },
  7619. },
  7620. [
  7621. {
  7622. name: "Micro",
  7623. height: math.unit(2, "inches"),
  7624. },
  7625. {
  7626. name: "Normal",
  7627. height: math.unit(5 + 9 / 12, "feet"),
  7628. default: true
  7629. },
  7630. {
  7631. name: "Macro",
  7632. height: math.unit(800, "feet")
  7633. },
  7634. {
  7635. name: "Megamacro",
  7636. height: math.unit(25, "miles")
  7637. }
  7638. ]
  7639. ))
  7640. characterMakers.push(() => makeCharacter(
  7641. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7642. {
  7643. front: {
  7644. height: math.unit(6, "feet"),
  7645. weight: math.unit(200, "lbs"),
  7646. name: "Front",
  7647. image: {
  7648. source: "./media/characters/chari-gal/front.svg",
  7649. extra: 1568 / 1385,
  7650. bottom: 0.047
  7651. }
  7652. },
  7653. gigantamax: {
  7654. height: math.unit(6 * 16, "feet"),
  7655. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7656. name: "Gigantamax",
  7657. image: {
  7658. source: "./media/characters/chari-gal/gigantamax.svg",
  7659. extra: 1124 / 888,
  7660. bottom: 0.03
  7661. }
  7662. },
  7663. },
  7664. [
  7665. {
  7666. name: "Normal",
  7667. height: math.unit(5 + 7 / 12, "feet")
  7668. },
  7669. {
  7670. name: "Macro",
  7671. height: math.unit(200, "feet"),
  7672. default: true
  7673. }
  7674. ]
  7675. ))
  7676. characterMakers.push(() => makeCharacter(
  7677. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7678. {
  7679. front: {
  7680. height: math.unit(6, "feet"),
  7681. weight: math.unit(150, "lbs"),
  7682. name: "Front",
  7683. image: {
  7684. source: "./media/characters/nova/front.svg",
  7685. extra: 5000 / 4722,
  7686. bottom: 0.02
  7687. }
  7688. }
  7689. },
  7690. [
  7691. {
  7692. name: "Micro-",
  7693. height: math.unit(0.8, "inches")
  7694. },
  7695. {
  7696. name: "Micro",
  7697. height: math.unit(2, "inches"),
  7698. default: true
  7699. },
  7700. ]
  7701. ))
  7702. characterMakers.push(() => makeCharacter(
  7703. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7704. {
  7705. front: {
  7706. height: math.unit(3 + 1 / 12, "feet"),
  7707. weight: math.unit(21.7, "lbs"),
  7708. name: "Front",
  7709. image: {
  7710. source: "./media/characters/argent/front.svg",
  7711. extra: 1471 / 1331,
  7712. bottom: 100.8 / 1575.5
  7713. }
  7714. }
  7715. },
  7716. [
  7717. {
  7718. name: "Micro",
  7719. height: math.unit(2, "inches")
  7720. },
  7721. {
  7722. name: "Normal",
  7723. height: math.unit(3 + 1 / 12, "feet"),
  7724. default: true
  7725. },
  7726. {
  7727. name: "Macro",
  7728. height: math.unit(120, "feet")
  7729. },
  7730. ]
  7731. ))
  7732. characterMakers.push(() => makeCharacter(
  7733. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7734. {
  7735. lamp: {
  7736. height: math.unit(7 * 1559 / 989, "feet"),
  7737. name: "Magic Lamp",
  7738. image: {
  7739. source: "./media/characters/mira-al-cul/lamp.svg",
  7740. extra: 1617 / 1559
  7741. }
  7742. },
  7743. front: {
  7744. height: math.unit(7, "feet"),
  7745. name: "Front",
  7746. image: {
  7747. source: "./media/characters/mira-al-cul/front.svg",
  7748. extra: 1044 / 990
  7749. }
  7750. },
  7751. },
  7752. [
  7753. {
  7754. name: "Heavily Restricted",
  7755. height: math.unit(7 * 1559 / 989, "feet")
  7756. },
  7757. {
  7758. name: "Freshly Freed",
  7759. height: math.unit(50 * 1559 / 989, "feet")
  7760. },
  7761. {
  7762. name: "World Encompassing",
  7763. height: math.unit(10000 * 1559 / 989, "miles")
  7764. },
  7765. {
  7766. name: "Galactic",
  7767. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7768. },
  7769. {
  7770. name: "Palmed Universe",
  7771. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7772. default: true
  7773. },
  7774. {
  7775. name: "Multiversal Matriarch",
  7776. height: math.unit(8.87e10, "yottameters")
  7777. },
  7778. {
  7779. name: "Void Mother",
  7780. height: math.unit(3.14e110, "yottaparsecs")
  7781. },
  7782. {
  7783. name: "Toying with Transcendence",
  7784. height: math.unit(1e307, "meters")
  7785. },
  7786. ]
  7787. ))
  7788. characterMakers.push(() => makeCharacter(
  7789. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  7790. {
  7791. front: {
  7792. height: math.unit(17 + 1 / 12, "feet"),
  7793. weight: math.unit(476.2 * 5, "lbs"),
  7794. name: "Front",
  7795. image: {
  7796. source: "./media/characters/kuro-shi-uchū/front.svg",
  7797. extra: 2329 / 1835,
  7798. bottom: 0.02
  7799. }
  7800. },
  7801. },
  7802. [
  7803. {
  7804. name: "Micro",
  7805. height: math.unit(2, "inches")
  7806. },
  7807. {
  7808. name: "Normal",
  7809. height: math.unit(12, "meters")
  7810. },
  7811. {
  7812. name: "Planetary",
  7813. height: math.unit(0.00929, "AU"),
  7814. default: true
  7815. },
  7816. {
  7817. name: "Universal",
  7818. height: math.unit(20, "gigaparsecs")
  7819. },
  7820. ]
  7821. ))
  7822. characterMakers.push(() => makeCharacter(
  7823. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  7824. {
  7825. front: {
  7826. height: math.unit(5 + 2 / 12, "feet"),
  7827. weight: math.unit(120, "lbs"),
  7828. name: "Front",
  7829. image: {
  7830. source: "./media/characters/katherine/front.svg",
  7831. extra: 2075 / 1969
  7832. }
  7833. },
  7834. dress: {
  7835. height: math.unit(5 + 2 / 12, "feet"),
  7836. weight: math.unit(120, "lbs"),
  7837. name: "Dress",
  7838. image: {
  7839. source: "./media/characters/katherine/dress.svg",
  7840. extra: 2258 / 2064
  7841. }
  7842. },
  7843. },
  7844. [
  7845. {
  7846. name: "Micro",
  7847. height: math.unit(1, "inches"),
  7848. default: true
  7849. },
  7850. {
  7851. name: "Normal",
  7852. height: math.unit(5 + 2 / 12, "feet")
  7853. },
  7854. {
  7855. name: "Macro",
  7856. height: math.unit(100, "meters")
  7857. },
  7858. {
  7859. name: "Megamacro",
  7860. height: math.unit(80, "miles")
  7861. },
  7862. ]
  7863. ))
  7864. characterMakers.push(() => makeCharacter(
  7865. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  7866. {
  7867. front: {
  7868. height: math.unit(7 + 8 / 12, "feet"),
  7869. weight: math.unit(250, "lbs"),
  7870. name: "Front",
  7871. image: {
  7872. source: "./media/characters/yevis/front.svg",
  7873. extra: 1938 / 1755
  7874. }
  7875. }
  7876. },
  7877. [
  7878. {
  7879. name: "Mortal",
  7880. height: math.unit(7 + 8 / 12, "feet")
  7881. },
  7882. {
  7883. name: "Battle",
  7884. height: math.unit(25 + 11 / 12, "feet")
  7885. },
  7886. {
  7887. name: "Wrath",
  7888. height: math.unit(1654 + 11 / 12, "feet")
  7889. },
  7890. {
  7891. name: "Planet Destroyer",
  7892. height: math.unit(12000, "miles")
  7893. },
  7894. {
  7895. name: "Galaxy Conqueror",
  7896. height: math.unit(1.45, "zettameters"),
  7897. default: true
  7898. },
  7899. {
  7900. name: "Universal War",
  7901. height: math.unit(184, "gigaparsecs")
  7902. },
  7903. {
  7904. name: "Eternity War",
  7905. height: math.unit(1.98e55, "yottaparsecs")
  7906. },
  7907. ]
  7908. ))
  7909. characterMakers.push(() => makeCharacter(
  7910. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  7911. {
  7912. front: {
  7913. height: math.unit(5 + 8 / 12, "feet"),
  7914. weight: math.unit(63, "kg"),
  7915. name: "Front",
  7916. image: {
  7917. source: "./media/characters/xavier/front.svg",
  7918. extra: 944 / 883
  7919. }
  7920. },
  7921. frontStretch: {
  7922. height: math.unit(5 + 8 / 12, "feet"),
  7923. weight: math.unit(63, "kg"),
  7924. name: "Stretching",
  7925. image: {
  7926. source: "./media/characters/xavier/front-stretch.svg",
  7927. extra: 962 / 820
  7928. }
  7929. },
  7930. },
  7931. [
  7932. {
  7933. name: "Normal",
  7934. height: math.unit(5 + 8 / 12, "feet")
  7935. },
  7936. {
  7937. name: "Macro",
  7938. height: math.unit(100, "meters"),
  7939. default: true
  7940. },
  7941. {
  7942. name: "McLargeHuge",
  7943. height: math.unit(10, "miles")
  7944. },
  7945. ]
  7946. ))
  7947. characterMakers.push(() => makeCharacter(
  7948. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  7949. {
  7950. front: {
  7951. height: math.unit(5 + 5 / 12, "feet"),
  7952. weight: math.unit(150, "lb"),
  7953. name: "Front",
  7954. image: {
  7955. source: "./media/characters/joshii/front.svg",
  7956. extra: 765/653,
  7957. bottom: 51/816
  7958. }
  7959. },
  7960. foot: {
  7961. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  7962. name: "Foot",
  7963. image: {
  7964. source: "./media/characters/joshii/foot.svg"
  7965. }
  7966. },
  7967. },
  7968. [
  7969. {
  7970. name: "Micro",
  7971. height: math.unit(2, "inches"),
  7972. default: true
  7973. },
  7974. {
  7975. name: "Normal",
  7976. height: math.unit(5 + 5 / 12, "feet")
  7977. },
  7978. {
  7979. name: "Macro",
  7980. height: math.unit(785, "feet")
  7981. },
  7982. {
  7983. name: "Megamacro",
  7984. height: math.unit(24.5, "miles")
  7985. },
  7986. ]
  7987. ))
  7988. characterMakers.push(() => makeCharacter(
  7989. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  7990. {
  7991. front: {
  7992. height: math.unit(6, "feet"),
  7993. weight: math.unit(150, "lb"),
  7994. name: "Front",
  7995. image: {
  7996. source: "./media/characters/goddess-elizabeth/front.svg",
  7997. extra: 1800 / 1525,
  7998. bottom: 0.005
  7999. }
  8000. },
  8001. foot: {
  8002. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8003. name: "Foot",
  8004. image: {
  8005. source: "./media/characters/goddess-elizabeth/foot.svg"
  8006. }
  8007. },
  8008. mouth: {
  8009. height: math.unit(6, "feet"),
  8010. name: "Mouth",
  8011. image: {
  8012. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8013. }
  8014. },
  8015. },
  8016. [
  8017. {
  8018. name: "Micro",
  8019. height: math.unit(12, "feet")
  8020. },
  8021. {
  8022. name: "Normal",
  8023. height: math.unit(80, "miles"),
  8024. default: true
  8025. },
  8026. {
  8027. name: "Macro",
  8028. height: math.unit(15000, "parsecs")
  8029. },
  8030. ]
  8031. ))
  8032. characterMakers.push(() => makeCharacter(
  8033. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8034. {
  8035. front: {
  8036. height: math.unit(5 + 9 / 12, "feet"),
  8037. weight: math.unit(144, "lb"),
  8038. name: "Front",
  8039. image: {
  8040. source: "./media/characters/kara/front.svg"
  8041. }
  8042. },
  8043. feet: {
  8044. height: math.unit(6 / 6.765, "feet"),
  8045. name: "Kara's Feet",
  8046. rename: true,
  8047. image: {
  8048. source: "./media/characters/kara/feet.svg"
  8049. }
  8050. },
  8051. },
  8052. [
  8053. {
  8054. name: "Normal",
  8055. height: math.unit(5 + 9 / 12, "feet")
  8056. },
  8057. {
  8058. name: "Macro",
  8059. height: math.unit(174, "feet"),
  8060. default: true
  8061. },
  8062. ]
  8063. ))
  8064. characterMakers.push(() => makeCharacter(
  8065. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8066. {
  8067. front: {
  8068. height: math.unit(18, "feet"),
  8069. weight: math.unit(4050, "lb"),
  8070. name: "Front",
  8071. image: {
  8072. source: "./media/characters/tyrone/front.svg",
  8073. extra: 2520 / 2402,
  8074. bottom: 0.025
  8075. }
  8076. },
  8077. },
  8078. [
  8079. {
  8080. name: "Normal",
  8081. height: math.unit(18, "feet"),
  8082. default: true
  8083. },
  8084. {
  8085. name: "Macro",
  8086. height: math.unit(300, "feet")
  8087. },
  8088. ]
  8089. ))
  8090. characterMakers.push(() => makeCharacter(
  8091. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8092. {
  8093. front: {
  8094. height: math.unit(7 + 8 / 12, "feet"),
  8095. weight: math.unit(120, "lb"),
  8096. name: "Front",
  8097. image: {
  8098. source: "./media/characters/danny/front.svg",
  8099. extra: 1490 / 1350
  8100. }
  8101. },
  8102. back: {
  8103. height: math.unit(7 + 8 / 12, "feet"),
  8104. weight: math.unit(120, "lb"),
  8105. name: "Back",
  8106. image: {
  8107. source: "./media/characters/danny/back.svg",
  8108. extra: 1490 / 1350
  8109. }
  8110. },
  8111. },
  8112. [
  8113. {
  8114. name: "Normal",
  8115. height: math.unit(7 + 8 / 12, "feet"),
  8116. default: true
  8117. },
  8118. ]
  8119. ))
  8120. characterMakers.push(() => makeCharacter(
  8121. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8122. {
  8123. front: {
  8124. height: math.unit(3.5, "inches"),
  8125. weight: math.unit(19, "grams"),
  8126. name: "Front",
  8127. image: {
  8128. source: "./media/characters/mallow/front.svg",
  8129. extra: 471 / 431
  8130. }
  8131. },
  8132. back: {
  8133. height: math.unit(3.5, "inches"),
  8134. weight: math.unit(19, "grams"),
  8135. name: "Back",
  8136. image: {
  8137. source: "./media/characters/mallow/back.svg",
  8138. extra: 471 / 431
  8139. }
  8140. },
  8141. },
  8142. [
  8143. {
  8144. name: "Normal",
  8145. height: math.unit(3.5, "inches"),
  8146. default: true
  8147. },
  8148. ]
  8149. ))
  8150. characterMakers.push(() => makeCharacter(
  8151. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8152. {
  8153. front: {
  8154. height: math.unit(9, "feet"),
  8155. weight: math.unit(230, "kg"),
  8156. name: "Front",
  8157. image: {
  8158. source: "./media/characters/starry-aqua/front.svg"
  8159. }
  8160. },
  8161. back: {
  8162. height: math.unit(9, "feet"),
  8163. weight: math.unit(230, "kg"),
  8164. name: "Back",
  8165. image: {
  8166. source: "./media/characters/starry-aqua/back.svg"
  8167. }
  8168. },
  8169. hand: {
  8170. height: math.unit(9 * 0.1168, "feet"),
  8171. name: "Hand",
  8172. image: {
  8173. source: "./media/characters/starry-aqua/hand.svg"
  8174. }
  8175. },
  8176. foot: {
  8177. height: math.unit(9 * 0.18, "feet"),
  8178. name: "Foot",
  8179. image: {
  8180. source: "./media/characters/starry-aqua/foot.svg"
  8181. }
  8182. }
  8183. },
  8184. [
  8185. {
  8186. name: "Micro",
  8187. height: math.unit(3, "inches")
  8188. },
  8189. {
  8190. name: "Normal",
  8191. height: math.unit(9, "feet")
  8192. },
  8193. {
  8194. name: "Macro",
  8195. height: math.unit(300, "feet"),
  8196. default: true
  8197. },
  8198. {
  8199. name: "Megamacro",
  8200. height: math.unit(3200, "feet")
  8201. }
  8202. ]
  8203. ))
  8204. characterMakers.push(() => makeCharacter(
  8205. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8206. {
  8207. front: {
  8208. height: math.unit(6, "feet"),
  8209. weight: math.unit(230, "lb"),
  8210. name: "Front",
  8211. image: {
  8212. source: "./media/characters/luka/front.svg",
  8213. extra: 1,
  8214. bottom: 0.025
  8215. }
  8216. },
  8217. },
  8218. [
  8219. {
  8220. name: "Normal",
  8221. height: math.unit(12 + 8 / 12, "feet"),
  8222. default: true
  8223. },
  8224. {
  8225. name: "Minimacro",
  8226. height: math.unit(20, "feet")
  8227. },
  8228. {
  8229. name: "Macro",
  8230. height: math.unit(250, "feet")
  8231. },
  8232. {
  8233. name: "Megamacro",
  8234. height: math.unit(5, "miles")
  8235. },
  8236. {
  8237. name: "Gigamacro",
  8238. height: math.unit(8000, "miles")
  8239. },
  8240. ]
  8241. ))
  8242. characterMakers.push(() => makeCharacter(
  8243. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8244. {
  8245. front: {
  8246. height: math.unit(6, "feet"),
  8247. weight: math.unit(150, "lb"),
  8248. name: "Front",
  8249. image: {
  8250. source: "./media/characters/natalie-nightring/front.svg",
  8251. extra: 1,
  8252. bottom: 0.06
  8253. }
  8254. },
  8255. },
  8256. [
  8257. {
  8258. name: "Uh Oh",
  8259. height: math.unit(0.1, "mm")
  8260. },
  8261. {
  8262. name: "Small",
  8263. height: math.unit(3, "inches")
  8264. },
  8265. {
  8266. name: "Human Scale",
  8267. height: math.unit(6, "feet")
  8268. },
  8269. {
  8270. name: "Librarian",
  8271. height: math.unit(50, "feet"),
  8272. default: true
  8273. },
  8274. {
  8275. name: "Immense",
  8276. height: math.unit(200, "miles")
  8277. },
  8278. ]
  8279. ))
  8280. characterMakers.push(() => makeCharacter(
  8281. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8282. {
  8283. front: {
  8284. height: math.unit(6, "feet"),
  8285. weight: math.unit(180, "lbs"),
  8286. name: "Front",
  8287. image: {
  8288. source: "./media/characters/danni-rosie/front.svg",
  8289. extra: 1260 / 1128,
  8290. bottom: 0.022
  8291. }
  8292. },
  8293. },
  8294. [
  8295. {
  8296. name: "Micro",
  8297. height: math.unit(2, "inches"),
  8298. default: true
  8299. },
  8300. ]
  8301. ))
  8302. characterMakers.push(() => makeCharacter(
  8303. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8304. {
  8305. front: {
  8306. height: math.unit(5 + 9 / 12, "feet"),
  8307. weight: math.unit(220, "lb"),
  8308. name: "Front",
  8309. image: {
  8310. source: "./media/characters/samantha-kruse/front.svg",
  8311. extra: (985 / 935),
  8312. bottom: 0.03
  8313. }
  8314. },
  8315. frontUndressed: {
  8316. height: math.unit(5 + 9 / 12, "feet"),
  8317. weight: math.unit(220, "lb"),
  8318. name: "Front (Undressed)",
  8319. image: {
  8320. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8321. extra: (973 / 923),
  8322. bottom: 0.025
  8323. }
  8324. },
  8325. fat: {
  8326. height: math.unit(5 + 9 / 12, "feet"),
  8327. weight: math.unit(900, "lb"),
  8328. name: "Front (Fat)",
  8329. image: {
  8330. source: "./media/characters/samantha-kruse/fat.svg",
  8331. extra: 2688 / 2561
  8332. }
  8333. },
  8334. },
  8335. [
  8336. {
  8337. name: "Normal",
  8338. height: math.unit(5 + 9 / 12, "feet"),
  8339. default: true
  8340. }
  8341. ]
  8342. ))
  8343. characterMakers.push(() => makeCharacter(
  8344. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8345. {
  8346. back: {
  8347. height: math.unit(5 + 4 / 12, "feet"),
  8348. weight: math.unit(4963, "lb"),
  8349. name: "Back",
  8350. image: {
  8351. source: "./media/characters/amelia-rosie/back.svg",
  8352. extra: 1113 / 963,
  8353. bottom: 0.01
  8354. }
  8355. },
  8356. },
  8357. [
  8358. {
  8359. name: "Level 0",
  8360. height: math.unit(5 + 4 / 12, "feet")
  8361. },
  8362. {
  8363. name: "Level 1",
  8364. height: math.unit(164597, "feet"),
  8365. default: true
  8366. },
  8367. {
  8368. name: "Level 2",
  8369. height: math.unit(956243, "miles")
  8370. },
  8371. {
  8372. name: "Level 3",
  8373. height: math.unit(29421709423, "miles")
  8374. },
  8375. {
  8376. name: "Level 4",
  8377. height: math.unit(154, "lightyears")
  8378. },
  8379. {
  8380. name: "Level 5",
  8381. height: math.unit(4738272, "lightyears")
  8382. },
  8383. {
  8384. name: "Level 6",
  8385. height: math.unit(145787152896, "lightyears")
  8386. },
  8387. ]
  8388. ))
  8389. characterMakers.push(() => makeCharacter(
  8390. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8391. {
  8392. front: {
  8393. height: math.unit(5 + 11 / 12, "feet"),
  8394. weight: math.unit(65, "kg"),
  8395. name: "Front",
  8396. image: {
  8397. source: "./media/characters/rook-kitara/front.svg",
  8398. extra: 1347 / 1274,
  8399. bottom: 0.005
  8400. }
  8401. },
  8402. },
  8403. [
  8404. {
  8405. name: "Totally Unfair",
  8406. height: math.unit(1.8, "mm")
  8407. },
  8408. {
  8409. name: "Lap Rookie",
  8410. height: math.unit(1.4, "feet")
  8411. },
  8412. {
  8413. name: "Normal",
  8414. height: math.unit(5 + 11 / 12, "feet"),
  8415. default: true
  8416. },
  8417. {
  8418. name: "How Did This Happen",
  8419. height: math.unit(80, "miles")
  8420. }
  8421. ]
  8422. ))
  8423. characterMakers.push(() => makeCharacter(
  8424. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8425. {
  8426. front: {
  8427. height: math.unit(7, "feet"),
  8428. weight: math.unit(300, "lb"),
  8429. name: "Front",
  8430. image: {
  8431. source: "./media/characters/pisces/front.svg",
  8432. extra: 2255 / 2115,
  8433. bottom: 0.03
  8434. }
  8435. },
  8436. back: {
  8437. height: math.unit(7, "feet"),
  8438. weight: math.unit(300, "lb"),
  8439. name: "Back",
  8440. image: {
  8441. source: "./media/characters/pisces/back.svg",
  8442. extra: 2146 / 2055,
  8443. bottom: 0.04
  8444. }
  8445. },
  8446. },
  8447. [
  8448. {
  8449. name: "Normal",
  8450. height: math.unit(7, "feet"),
  8451. default: true
  8452. },
  8453. {
  8454. name: "Swimming Pool",
  8455. height: math.unit(12.2, "meters")
  8456. },
  8457. {
  8458. name: "Olympic Swimming Pool",
  8459. height: math.unit(56.3, "meters")
  8460. },
  8461. {
  8462. name: "Lake Superior",
  8463. height: math.unit(93900, "meters")
  8464. },
  8465. {
  8466. name: "Mediterranean Sea",
  8467. height: math.unit(644457, "meters")
  8468. },
  8469. {
  8470. name: "World's Oceans",
  8471. height: math.unit(4567491, "meters")
  8472. },
  8473. ]
  8474. ))
  8475. characterMakers.push(() => makeCharacter(
  8476. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8477. {
  8478. front: {
  8479. height: math.unit(2.3, "meters"),
  8480. weight: math.unit(120, "kg"),
  8481. name: "Front",
  8482. image: {
  8483. source: "./media/characters/zelas/front.svg"
  8484. }
  8485. },
  8486. side: {
  8487. height: math.unit(2.3, "meters"),
  8488. weight: math.unit(120, "kg"),
  8489. name: "Side",
  8490. image: {
  8491. source: "./media/characters/zelas/side.svg"
  8492. }
  8493. },
  8494. back: {
  8495. height: math.unit(2.3, "meters"),
  8496. weight: math.unit(120, "kg"),
  8497. name: "Back",
  8498. image: {
  8499. source: "./media/characters/zelas/back.svg"
  8500. }
  8501. },
  8502. foot: {
  8503. height: math.unit(1.116, "feet"),
  8504. name: "Foot",
  8505. image: {
  8506. source: "./media/characters/zelas/foot.svg"
  8507. }
  8508. },
  8509. },
  8510. [
  8511. {
  8512. name: "Normal",
  8513. height: math.unit(2.3, "meters")
  8514. },
  8515. {
  8516. name: "Macro",
  8517. height: math.unit(30, "meters"),
  8518. default: true
  8519. },
  8520. ]
  8521. ))
  8522. characterMakers.push(() => makeCharacter(
  8523. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8524. {
  8525. front: {
  8526. height: math.unit(1, "inch"),
  8527. weight: math.unit(0.21, "grams"),
  8528. name: "Front",
  8529. image: {
  8530. source: "./media/characters/talbot/front.svg",
  8531. extra: 594 / 544
  8532. }
  8533. },
  8534. },
  8535. [
  8536. {
  8537. name: "Micro",
  8538. height: math.unit(1, "inch"),
  8539. default: true
  8540. },
  8541. ]
  8542. ))
  8543. characterMakers.push(() => makeCharacter(
  8544. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8545. {
  8546. front: {
  8547. height: math.unit(3 + 3 / 12, "feet"),
  8548. weight: math.unit(51.8, "lb"),
  8549. name: "Front",
  8550. image: {
  8551. source: "./media/characters/fliss/front.svg",
  8552. extra: 840 / 640
  8553. }
  8554. },
  8555. },
  8556. [
  8557. {
  8558. name: "Teeny Tiny",
  8559. height: math.unit(1, "mm")
  8560. },
  8561. {
  8562. name: "Small",
  8563. height: math.unit(1, "inch"),
  8564. default: true
  8565. },
  8566. {
  8567. name: "Standard Sylveon",
  8568. height: math.unit(3 + 3 / 12, "feet")
  8569. },
  8570. {
  8571. name: "Large Nuisance",
  8572. height: math.unit(33, "feet")
  8573. },
  8574. {
  8575. name: "City Filler",
  8576. height: math.unit(3000, "feet")
  8577. },
  8578. {
  8579. name: "New Horizon",
  8580. height: math.unit(6000, "miles")
  8581. },
  8582. ]
  8583. ))
  8584. characterMakers.push(() => makeCharacter(
  8585. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8586. {
  8587. front: {
  8588. height: math.unit(5, "cm"),
  8589. weight: math.unit(1.94, "g"),
  8590. name: "Front",
  8591. image: {
  8592. source: "./media/characters/fleta/front.svg",
  8593. extra: 835 / 803
  8594. }
  8595. },
  8596. back: {
  8597. height: math.unit(5, "cm"),
  8598. weight: math.unit(1.94, "g"),
  8599. name: "Back",
  8600. image: {
  8601. source: "./media/characters/fleta/back.svg",
  8602. extra: 835 / 803
  8603. }
  8604. },
  8605. },
  8606. [
  8607. {
  8608. name: "Micro",
  8609. height: math.unit(5, "cm"),
  8610. default: true
  8611. },
  8612. ]
  8613. ))
  8614. characterMakers.push(() => makeCharacter(
  8615. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8616. {
  8617. front: {
  8618. height: math.unit(6, "feet"),
  8619. weight: math.unit(225, "lb"),
  8620. name: "Front",
  8621. image: {
  8622. source: "./media/characters/dominic/front.svg",
  8623. extra: 1770 / 1620,
  8624. bottom: 0.025
  8625. }
  8626. },
  8627. back: {
  8628. height: math.unit(6, "feet"),
  8629. weight: math.unit(225, "lb"),
  8630. name: "Back",
  8631. image: {
  8632. source: "./media/characters/dominic/back.svg",
  8633. extra: 1745 / 1620,
  8634. bottom: 0.065
  8635. }
  8636. },
  8637. },
  8638. [
  8639. {
  8640. name: "Nano",
  8641. height: math.unit(0.1, "mm")
  8642. },
  8643. {
  8644. name: "Micro-",
  8645. height: math.unit(1, "mm")
  8646. },
  8647. {
  8648. name: "Micro",
  8649. height: math.unit(4, "inches")
  8650. },
  8651. {
  8652. name: "Normal",
  8653. height: math.unit(6 + 4 / 12, "feet"),
  8654. default: true
  8655. },
  8656. {
  8657. name: "Macro",
  8658. height: math.unit(115, "feet")
  8659. },
  8660. {
  8661. name: "Macro+",
  8662. height: math.unit(955, "feet")
  8663. },
  8664. {
  8665. name: "Megamacro",
  8666. height: math.unit(8990, "feet")
  8667. },
  8668. {
  8669. name: "Gigmacro",
  8670. height: math.unit(9310, "miles")
  8671. },
  8672. {
  8673. name: "Teramacro",
  8674. height: math.unit(1567005010, "miles")
  8675. },
  8676. {
  8677. name: "Examacro",
  8678. height: math.unit(1425, "parsecs")
  8679. },
  8680. ]
  8681. ))
  8682. characterMakers.push(() => makeCharacter(
  8683. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8684. {
  8685. front: {
  8686. height: math.unit(400, "feet"),
  8687. weight: math.unit(44444444, "lb"),
  8688. name: "Front",
  8689. image: {
  8690. source: "./media/characters/major-colonel/front.svg"
  8691. }
  8692. },
  8693. back: {
  8694. height: math.unit(400, "feet"),
  8695. weight: math.unit(44444444, "lb"),
  8696. name: "Back",
  8697. image: {
  8698. source: "./media/characters/major-colonel/back.svg"
  8699. }
  8700. },
  8701. },
  8702. [
  8703. {
  8704. name: "Macro",
  8705. height: math.unit(400, "feet"),
  8706. default: true
  8707. },
  8708. ]
  8709. ))
  8710. characterMakers.push(() => makeCharacter(
  8711. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8712. {
  8713. catFront: {
  8714. height: math.unit(6, "feet"),
  8715. weight: math.unit(120, "lb"),
  8716. name: "Front (Cat Side)",
  8717. image: {
  8718. source: "./media/characters/axel-lycan/cat-front.svg",
  8719. extra: 430 / 402,
  8720. bottom: 43 / 472.35
  8721. }
  8722. },
  8723. catBack: {
  8724. height: math.unit(6, "feet"),
  8725. weight: math.unit(120, "lb"),
  8726. name: "Back (Cat Side)",
  8727. image: {
  8728. source: "./media/characters/axel-lycan/cat-back.svg",
  8729. extra: 447 / 419,
  8730. bottom: 23.3 / 469
  8731. }
  8732. },
  8733. wolfFront: {
  8734. height: math.unit(6, "feet"),
  8735. weight: math.unit(120, "lb"),
  8736. name: "Front (Wolf Side)",
  8737. image: {
  8738. source: "./media/characters/axel-lycan/wolf-front.svg",
  8739. extra: 485 / 456,
  8740. bottom: 19 / 504
  8741. }
  8742. },
  8743. wolfBack: {
  8744. height: math.unit(6, "feet"),
  8745. weight: math.unit(120, "lb"),
  8746. name: "Back (Wolf Side)",
  8747. image: {
  8748. source: "./media/characters/axel-lycan/wolf-back.svg",
  8749. extra: 475 / 438,
  8750. bottom: 39.2 / 514
  8751. }
  8752. },
  8753. },
  8754. [
  8755. {
  8756. name: "Macro",
  8757. height: math.unit(1, "km"),
  8758. default: true
  8759. },
  8760. ]
  8761. ))
  8762. characterMakers.push(() => makeCharacter(
  8763. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  8764. {
  8765. front: {
  8766. height: math.unit(5 + 9 / 12, "feet"),
  8767. weight: math.unit(175, "lb"),
  8768. name: "Front",
  8769. image: {
  8770. source: "./media/characters/vanrel-hyena/front.svg",
  8771. extra: 1086 / 1010,
  8772. bottom: 0.04
  8773. }
  8774. },
  8775. },
  8776. [
  8777. {
  8778. name: "Normal",
  8779. height: math.unit(5 + 9 / 12, "feet"),
  8780. default: true
  8781. },
  8782. ]
  8783. ))
  8784. characterMakers.push(() => makeCharacter(
  8785. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  8786. {
  8787. front: {
  8788. height: math.unit(6, "feet"),
  8789. weight: math.unit(103, "lb"),
  8790. name: "Front",
  8791. image: {
  8792. source: "./media/characters/abbott-absol/front.svg",
  8793. extra: 2010 / 1842
  8794. }
  8795. },
  8796. },
  8797. [
  8798. {
  8799. name: "Megamicro",
  8800. height: math.unit(0.1, "mm")
  8801. },
  8802. {
  8803. name: "Micro",
  8804. height: math.unit(1, "inch")
  8805. },
  8806. {
  8807. name: "Normal",
  8808. height: math.unit(6, "feet"),
  8809. default: true
  8810. },
  8811. ]
  8812. ))
  8813. characterMakers.push(() => makeCharacter(
  8814. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  8815. {
  8816. front: {
  8817. height: math.unit(6, "feet"),
  8818. weight: math.unit(264, "lb"),
  8819. name: "Front",
  8820. image: {
  8821. source: "./media/characters/hector/front.svg",
  8822. extra: 2280 / 2130,
  8823. bottom: 0.07
  8824. }
  8825. },
  8826. },
  8827. [
  8828. {
  8829. name: "Normal",
  8830. height: math.unit(12.25, "foot"),
  8831. default: true
  8832. },
  8833. {
  8834. name: "Macro",
  8835. height: math.unit(160, "feet")
  8836. },
  8837. ]
  8838. ))
  8839. characterMakers.push(() => makeCharacter(
  8840. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  8841. {
  8842. front: {
  8843. height: math.unit(6, "feet"),
  8844. weight: math.unit(150, "lb"),
  8845. name: "Front",
  8846. image: {
  8847. source: "./media/characters/sal/front.svg",
  8848. extra: 1846 / 1699,
  8849. bottom: 0.04
  8850. }
  8851. },
  8852. },
  8853. [
  8854. {
  8855. name: "Megamacro",
  8856. height: math.unit(10, "miles"),
  8857. default: true
  8858. },
  8859. ]
  8860. ))
  8861. characterMakers.push(() => makeCharacter(
  8862. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  8863. {
  8864. front: {
  8865. height: math.unit(3, "meters"),
  8866. weight: math.unit(450, "kg"),
  8867. name: "front",
  8868. image: {
  8869. source: "./media/characters/ranger/front.svg",
  8870. extra: 2401 / 2243,
  8871. bottom: 0.05
  8872. }
  8873. },
  8874. },
  8875. [
  8876. {
  8877. name: "Normal",
  8878. height: math.unit(3, "meters"),
  8879. default: true
  8880. },
  8881. ]
  8882. ))
  8883. characterMakers.push(() => makeCharacter(
  8884. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  8885. {
  8886. front: {
  8887. height: math.unit(14, "feet"),
  8888. weight: math.unit(800, "kg"),
  8889. name: "Front",
  8890. image: {
  8891. source: "./media/characters/theresa/front.svg",
  8892. extra: 3575 / 3346,
  8893. bottom: 0.03
  8894. }
  8895. },
  8896. },
  8897. [
  8898. {
  8899. name: "Normal",
  8900. height: math.unit(14, "feet"),
  8901. default: true
  8902. },
  8903. ]
  8904. ))
  8905. characterMakers.push(() => makeCharacter(
  8906. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  8907. {
  8908. front: {
  8909. height: math.unit(6, "feet"),
  8910. weight: math.unit(3, "kg"),
  8911. name: "Front",
  8912. image: {
  8913. source: "./media/characters/ine/front.svg",
  8914. extra: 678 / 539,
  8915. bottom: 0.023
  8916. }
  8917. },
  8918. },
  8919. [
  8920. {
  8921. name: "Normal",
  8922. height: math.unit(2.265, "feet"),
  8923. default: true
  8924. },
  8925. ]
  8926. ))
  8927. characterMakers.push(() => makeCharacter(
  8928. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  8929. {
  8930. front: {
  8931. height: math.unit(5, "feet"),
  8932. weight: math.unit(30, "kg"),
  8933. name: "Front",
  8934. image: {
  8935. source: "./media/characters/vial/front.svg",
  8936. extra: 1365 / 1277,
  8937. bottom: 0.04
  8938. }
  8939. },
  8940. },
  8941. [
  8942. {
  8943. name: "Normal",
  8944. height: math.unit(5, "feet"),
  8945. default: true
  8946. },
  8947. ]
  8948. ))
  8949. characterMakers.push(() => makeCharacter(
  8950. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  8951. {
  8952. side: {
  8953. height: math.unit(3.4, "meters"),
  8954. weight: math.unit(1000, "lb"),
  8955. name: "Side",
  8956. image: {
  8957. source: "./media/characters/rovoska/side.svg",
  8958. extra: 4403 / 1515
  8959. }
  8960. },
  8961. },
  8962. [
  8963. {
  8964. name: "Normal",
  8965. height: math.unit(3.4, "meters"),
  8966. default: true
  8967. },
  8968. ]
  8969. ))
  8970. characterMakers.push(() => makeCharacter(
  8971. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  8972. {
  8973. front: {
  8974. height: math.unit(8, "feet"),
  8975. weight: math.unit(315, "lb"),
  8976. name: "Front",
  8977. image: {
  8978. source: "./media/characters/gunner-rotthbauer/front.svg"
  8979. }
  8980. },
  8981. back: {
  8982. height: math.unit(8, "feet"),
  8983. weight: math.unit(315, "lb"),
  8984. name: "Back",
  8985. image: {
  8986. source: "./media/characters/gunner-rotthbauer/back.svg"
  8987. }
  8988. },
  8989. },
  8990. [
  8991. {
  8992. name: "Micro",
  8993. height: math.unit(3.5, "inches")
  8994. },
  8995. {
  8996. name: "Normal",
  8997. height: math.unit(8, "feet"),
  8998. default: true
  8999. },
  9000. {
  9001. name: "Macro",
  9002. height: math.unit(250, "feet")
  9003. },
  9004. {
  9005. name: "Megamacro",
  9006. height: math.unit(1, "AU")
  9007. },
  9008. ]
  9009. ))
  9010. characterMakers.push(() => makeCharacter(
  9011. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9012. {
  9013. front: {
  9014. height: math.unit(5 + 5 / 12, "feet"),
  9015. weight: math.unit(140, "lb"),
  9016. name: "Front",
  9017. image: {
  9018. source: "./media/characters/allatia/front.svg",
  9019. extra: 1227 / 1180,
  9020. bottom: 0.027
  9021. }
  9022. },
  9023. },
  9024. [
  9025. {
  9026. name: "Normal",
  9027. height: math.unit(5 + 5 / 12, "feet")
  9028. },
  9029. {
  9030. name: "Macro",
  9031. height: math.unit(250, "feet"),
  9032. default: true
  9033. },
  9034. {
  9035. name: "Megamacro",
  9036. height: math.unit(8, "miles")
  9037. }
  9038. ]
  9039. ))
  9040. characterMakers.push(() => makeCharacter(
  9041. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9042. {
  9043. front: {
  9044. height: math.unit(6, "feet"),
  9045. weight: math.unit(120, "lb"),
  9046. name: "Front",
  9047. image: {
  9048. source: "./media/characters/tene/front.svg",
  9049. extra: 1728 / 1578,
  9050. bottom: 0.022
  9051. }
  9052. },
  9053. stomping: {
  9054. height: math.unit(2.025, "meters"),
  9055. weight: math.unit(120, "lb"),
  9056. name: "Stomping",
  9057. image: {
  9058. source: "./media/characters/tene/stomping.svg",
  9059. extra: 938 / 873,
  9060. bottom: 0.01
  9061. }
  9062. },
  9063. sitting: {
  9064. height: math.unit(1, "meter"),
  9065. weight: math.unit(120, "lb"),
  9066. name: "Sitting",
  9067. image: {
  9068. source: "./media/characters/tene/sitting.svg",
  9069. extra: 437 / 415,
  9070. bottom: 0.1
  9071. }
  9072. },
  9073. feral: {
  9074. height: math.unit(3.9, "feet"),
  9075. weight: math.unit(250, "lb"),
  9076. name: "Feral",
  9077. image: {
  9078. source: "./media/characters/tene/feral.svg",
  9079. extra: 717 / 458,
  9080. bottom: 0.179
  9081. }
  9082. },
  9083. },
  9084. [
  9085. {
  9086. name: "Normal",
  9087. height: math.unit(6, "feet")
  9088. },
  9089. {
  9090. name: "Macro",
  9091. height: math.unit(300, "feet"),
  9092. default: true
  9093. },
  9094. {
  9095. name: "Megamacro",
  9096. height: math.unit(5, "miles")
  9097. },
  9098. ]
  9099. ))
  9100. characterMakers.push(() => makeCharacter(
  9101. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9102. {
  9103. side: {
  9104. height: math.unit(6, "feet"),
  9105. name: "Side",
  9106. image: {
  9107. source: "./media/characters/evander/side.svg",
  9108. extra: 877 / 477
  9109. }
  9110. },
  9111. },
  9112. [
  9113. {
  9114. name: "Normal",
  9115. height: math.unit(0.83, "meters"),
  9116. default: true
  9117. },
  9118. ]
  9119. ))
  9120. characterMakers.push(() => makeCharacter(
  9121. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9122. {
  9123. front: {
  9124. height: math.unit(12, "feet"),
  9125. weight: math.unit(1000, "lb"),
  9126. name: "Front",
  9127. image: {
  9128. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9129. extra: 1762 / 1611
  9130. }
  9131. },
  9132. back: {
  9133. height: math.unit(12, "feet"),
  9134. weight: math.unit(1000, "lb"),
  9135. name: "Back",
  9136. image: {
  9137. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9138. extra: 1762 / 1611
  9139. }
  9140. },
  9141. },
  9142. [
  9143. {
  9144. name: "Normal",
  9145. height: math.unit(12, "feet"),
  9146. default: true
  9147. },
  9148. {
  9149. name: "Kaiju",
  9150. height: math.unit(150, "feet")
  9151. },
  9152. ]
  9153. ))
  9154. characterMakers.push(() => makeCharacter(
  9155. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9156. {
  9157. front: {
  9158. height: math.unit(6, "feet"),
  9159. weight: math.unit(150, "lb"),
  9160. name: "Front",
  9161. image: {
  9162. source: "./media/characters/zero-alurus/front.svg"
  9163. }
  9164. },
  9165. back: {
  9166. height: math.unit(6, "feet"),
  9167. weight: math.unit(150, "lb"),
  9168. name: "Back",
  9169. image: {
  9170. source: "./media/characters/zero-alurus/back.svg"
  9171. }
  9172. },
  9173. },
  9174. [
  9175. {
  9176. name: "Normal",
  9177. height: math.unit(5 + 10 / 12, "feet")
  9178. },
  9179. {
  9180. name: "Macro",
  9181. height: math.unit(60, "feet"),
  9182. default: true
  9183. },
  9184. {
  9185. name: "Macro+",
  9186. height: math.unit(450, "feet")
  9187. },
  9188. ]
  9189. ))
  9190. characterMakers.push(() => makeCharacter(
  9191. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9192. {
  9193. front: {
  9194. height: math.unit(6, "feet"),
  9195. weight: math.unit(200, "lb"),
  9196. name: "Front",
  9197. image: {
  9198. source: "./media/characters/mega-shi/front.svg",
  9199. extra: 1279 / 1250,
  9200. bottom: 0.02
  9201. }
  9202. },
  9203. back: {
  9204. height: math.unit(6, "feet"),
  9205. weight: math.unit(200, "lb"),
  9206. name: "Back",
  9207. image: {
  9208. source: "./media/characters/mega-shi/back.svg",
  9209. extra: 1279 / 1250,
  9210. bottom: 0.02
  9211. }
  9212. },
  9213. },
  9214. [
  9215. {
  9216. name: "Micro",
  9217. height: math.unit(16 + 6 / 12, "feet")
  9218. },
  9219. {
  9220. name: "Third Dimension",
  9221. height: math.unit(40, "meters")
  9222. },
  9223. {
  9224. name: "Normal",
  9225. height: math.unit(660, "feet"),
  9226. default: true
  9227. },
  9228. {
  9229. name: "Megamacro",
  9230. height: math.unit(10, "miles")
  9231. },
  9232. {
  9233. name: "Planetary Launch",
  9234. height: math.unit(500, "miles")
  9235. },
  9236. {
  9237. name: "Interstellar",
  9238. height: math.unit(1e9, "miles")
  9239. },
  9240. {
  9241. name: "Leaving the Universe",
  9242. height: math.unit(1, "gigaparsec")
  9243. },
  9244. {
  9245. name: "Travelling Universes",
  9246. height: math.unit(30e15, "parsecs")
  9247. },
  9248. ]
  9249. ))
  9250. characterMakers.push(() => makeCharacter(
  9251. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9252. {
  9253. front: {
  9254. height: math.unit(6, "feet"),
  9255. weight: math.unit(150, "lb"),
  9256. name: "Front",
  9257. image: {
  9258. source: "./media/characters/odyssey/front.svg",
  9259. extra: 1782 / 1582,
  9260. bottom: 0.01
  9261. }
  9262. },
  9263. side: {
  9264. height: math.unit(5.7, "feet"),
  9265. weight: math.unit(140, "lb"),
  9266. name: "Side",
  9267. image: {
  9268. source: "./media/characters/odyssey/side.svg",
  9269. extra: 6462 / 5700
  9270. }
  9271. },
  9272. },
  9273. [
  9274. {
  9275. name: "Normal",
  9276. height: math.unit(5 + 4 / 12, "feet")
  9277. },
  9278. {
  9279. name: "Macro",
  9280. height: math.unit(1, "km")
  9281. },
  9282. {
  9283. name: "Megamacro",
  9284. height: math.unit(3000, "km")
  9285. },
  9286. {
  9287. name: "Gigamacro",
  9288. height: math.unit(1, "AU"),
  9289. default: true
  9290. },
  9291. {
  9292. name: "Omniversal",
  9293. height: math.unit(100e14, "lightyears")
  9294. },
  9295. ]
  9296. ))
  9297. characterMakers.push(() => makeCharacter(
  9298. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9299. {
  9300. front: {
  9301. height: math.unit(6, "feet"),
  9302. weight: math.unit(300, "lb"),
  9303. name: "Front",
  9304. image: {
  9305. source: "./media/characters/mekuto/front.svg",
  9306. extra: 921 / 832,
  9307. bottom: 0.03
  9308. }
  9309. },
  9310. hand: {
  9311. height: math.unit(6 / 10.24, "feet"),
  9312. name: "Hand",
  9313. image: {
  9314. source: "./media/characters/mekuto/hand.svg"
  9315. }
  9316. },
  9317. foot: {
  9318. height: math.unit(6 / 5.05, "feet"),
  9319. name: "Foot",
  9320. image: {
  9321. source: "./media/characters/mekuto/foot.svg"
  9322. }
  9323. },
  9324. },
  9325. [
  9326. {
  9327. name: "Minimicro",
  9328. height: math.unit(0.2, "inches")
  9329. },
  9330. {
  9331. name: "Micro",
  9332. height: math.unit(1.5, "inches")
  9333. },
  9334. {
  9335. name: "Normal",
  9336. height: math.unit(5 + 11 / 12, "feet"),
  9337. default: true
  9338. },
  9339. {
  9340. name: "Minimacro",
  9341. height: math.unit(17 + 9 / 12, "feet")
  9342. },
  9343. {
  9344. name: "Macro",
  9345. height: math.unit(177.5, "feet")
  9346. },
  9347. {
  9348. name: "Megamacro",
  9349. height: math.unit(152, "miles")
  9350. },
  9351. ]
  9352. ))
  9353. characterMakers.push(() => makeCharacter(
  9354. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9355. {
  9356. front: {
  9357. height: math.unit(6.5, "inches"),
  9358. weight: math.unit(13, "oz"),
  9359. name: "Front",
  9360. image: {
  9361. source: "./media/characters/dafydd-tomos/front.svg",
  9362. extra: 2990 / 2603,
  9363. bottom: 0.03
  9364. }
  9365. },
  9366. },
  9367. [
  9368. {
  9369. name: "Micro",
  9370. height: math.unit(6.5, "inches"),
  9371. default: true
  9372. },
  9373. ]
  9374. ))
  9375. characterMakers.push(() => makeCharacter(
  9376. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9377. {
  9378. front: {
  9379. height: math.unit(6, "feet"),
  9380. weight: math.unit(150, "lb"),
  9381. name: "Front",
  9382. image: {
  9383. source: "./media/characters/splinter/front.svg",
  9384. extra: 2990 / 2882,
  9385. bottom: 0.04
  9386. }
  9387. },
  9388. back: {
  9389. height: math.unit(6, "feet"),
  9390. weight: math.unit(150, "lb"),
  9391. name: "Back",
  9392. image: {
  9393. source: "./media/characters/splinter/back.svg",
  9394. extra: 2990 / 2882,
  9395. bottom: 0.04
  9396. }
  9397. },
  9398. },
  9399. [
  9400. {
  9401. name: "Normal",
  9402. height: math.unit(6, "feet")
  9403. },
  9404. {
  9405. name: "Macro",
  9406. height: math.unit(230, "meters"),
  9407. default: true
  9408. },
  9409. ]
  9410. ))
  9411. characterMakers.push(() => makeCharacter(
  9412. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9413. {
  9414. front: {
  9415. height: math.unit(4 + 10 / 12, "feet"),
  9416. weight: math.unit(480, "lb"),
  9417. name: "Front",
  9418. image: {
  9419. source: "./media/characters/snow-gabumon/front.svg",
  9420. extra: 1140 / 963,
  9421. bottom: 0.058
  9422. }
  9423. },
  9424. back: {
  9425. height: math.unit(4 + 10 / 12, "feet"),
  9426. weight: math.unit(480, "lb"),
  9427. name: "Back",
  9428. image: {
  9429. source: "./media/characters/snow-gabumon/back.svg",
  9430. extra: 1115 / 962,
  9431. bottom: 0.041
  9432. }
  9433. },
  9434. frontUndresed: {
  9435. height: math.unit(4 + 10 / 12, "feet"),
  9436. weight: math.unit(480, "lb"),
  9437. name: "Front (Undressed)",
  9438. image: {
  9439. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9440. extra: 1061 / 960,
  9441. bottom: 0.045
  9442. }
  9443. },
  9444. },
  9445. [
  9446. {
  9447. name: "Micro",
  9448. height: math.unit(1, "inch")
  9449. },
  9450. {
  9451. name: "Normal",
  9452. height: math.unit(4 + 10 / 12, "feet"),
  9453. default: true
  9454. },
  9455. {
  9456. name: "Macro",
  9457. height: math.unit(200, "feet")
  9458. },
  9459. {
  9460. name: "Megamacro",
  9461. height: math.unit(120, "miles")
  9462. },
  9463. {
  9464. name: "Gigamacro",
  9465. height: math.unit(9800, "miles")
  9466. },
  9467. ]
  9468. ))
  9469. characterMakers.push(() => makeCharacter(
  9470. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9471. {
  9472. front: {
  9473. height: math.unit(1.7, "meters"),
  9474. weight: math.unit(140, "lb"),
  9475. name: "Front",
  9476. image: {
  9477. source: "./media/characters/moody/front.svg",
  9478. extra: 3226 / 3007,
  9479. bottom: 0.087
  9480. }
  9481. },
  9482. },
  9483. [
  9484. {
  9485. name: "Micro",
  9486. height: math.unit(1, "mm")
  9487. },
  9488. {
  9489. name: "Normal",
  9490. height: math.unit(1.7, "meters"),
  9491. default: true
  9492. },
  9493. {
  9494. name: "Macro",
  9495. height: math.unit(80, "meters")
  9496. },
  9497. {
  9498. name: "Macro+",
  9499. height: math.unit(500, "meters")
  9500. },
  9501. ]
  9502. ))
  9503. characterMakers.push(() => makeCharacter(
  9504. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9505. {
  9506. front: {
  9507. height: math.unit(6, "feet"),
  9508. weight: math.unit(150, "lb"),
  9509. name: "Front",
  9510. image: {
  9511. source: "./media/characters/zyas/front.svg",
  9512. extra: 1180 / 1120,
  9513. bottom: 0.045
  9514. }
  9515. },
  9516. },
  9517. [
  9518. {
  9519. name: "Normal",
  9520. height: math.unit(10, "feet"),
  9521. default: true
  9522. },
  9523. {
  9524. name: "Macro",
  9525. height: math.unit(500, "feet")
  9526. },
  9527. {
  9528. name: "Megamacro",
  9529. height: math.unit(5, "miles")
  9530. },
  9531. {
  9532. name: "Teramacro",
  9533. height: math.unit(150000, "miles")
  9534. },
  9535. ]
  9536. ))
  9537. characterMakers.push(() => makeCharacter(
  9538. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9539. {
  9540. front: {
  9541. height: math.unit(6, "feet"),
  9542. weight: math.unit(150, "lb"),
  9543. name: "Front",
  9544. image: {
  9545. source: "./media/characters/cuon/front.svg",
  9546. extra: 1390 / 1320,
  9547. bottom: 0.008
  9548. }
  9549. },
  9550. },
  9551. [
  9552. {
  9553. name: "Micro",
  9554. height: math.unit(3, "inches")
  9555. },
  9556. {
  9557. name: "Normal",
  9558. height: math.unit(18 + 9 / 12, "feet"),
  9559. default: true
  9560. },
  9561. {
  9562. name: "Macro",
  9563. height: math.unit(360, "feet")
  9564. },
  9565. {
  9566. name: "Megamacro",
  9567. height: math.unit(360, "miles")
  9568. },
  9569. ]
  9570. ))
  9571. characterMakers.push(() => makeCharacter(
  9572. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9573. {
  9574. front: {
  9575. height: math.unit(2.4, "meters"),
  9576. weight: math.unit(70, "kg"),
  9577. name: "Front",
  9578. image: {
  9579. source: "./media/characters/nyanuxk/front.svg",
  9580. extra: 1172 / 1084,
  9581. bottom: 0.065
  9582. }
  9583. },
  9584. side: {
  9585. height: math.unit(2.4, "meters"),
  9586. weight: math.unit(70, "kg"),
  9587. name: "Side",
  9588. image: {
  9589. source: "./media/characters/nyanuxk/side.svg",
  9590. extra: 1190 / 1132,
  9591. bottom: 0.007
  9592. }
  9593. },
  9594. back: {
  9595. height: math.unit(2.4, "meters"),
  9596. weight: math.unit(70, "kg"),
  9597. name: "Back",
  9598. image: {
  9599. source: "./media/characters/nyanuxk/back.svg",
  9600. extra: 1200 / 1141,
  9601. bottom: 0.015
  9602. }
  9603. },
  9604. foot: {
  9605. height: math.unit(0.52, "meters"),
  9606. name: "Foot",
  9607. image: {
  9608. source: "./media/characters/nyanuxk/foot.svg"
  9609. }
  9610. },
  9611. },
  9612. [
  9613. {
  9614. name: "Micro",
  9615. height: math.unit(2, "cm")
  9616. },
  9617. {
  9618. name: "Normal",
  9619. height: math.unit(2.4, "meters"),
  9620. default: true
  9621. },
  9622. {
  9623. name: "Smaller Macro",
  9624. height: math.unit(120, "meters")
  9625. },
  9626. {
  9627. name: "Bigger Macro",
  9628. height: math.unit(1.2, "km")
  9629. },
  9630. {
  9631. name: "Megamacro",
  9632. height: math.unit(15, "kilometers")
  9633. },
  9634. {
  9635. name: "Gigamacro",
  9636. height: math.unit(2000, "km")
  9637. },
  9638. {
  9639. name: "Teramacro",
  9640. height: math.unit(500000, "km")
  9641. },
  9642. ]
  9643. ))
  9644. characterMakers.push(() => makeCharacter(
  9645. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9646. {
  9647. side: {
  9648. height: math.unit(6, "feet"),
  9649. name: "Side",
  9650. image: {
  9651. source: "./media/characters/ailbhe/side.svg",
  9652. extra: 757 / 464,
  9653. bottom: 0.041
  9654. }
  9655. },
  9656. },
  9657. [
  9658. {
  9659. name: "Normal",
  9660. height: math.unit(1.07, "meters"),
  9661. default: true
  9662. },
  9663. ]
  9664. ))
  9665. characterMakers.push(() => makeCharacter(
  9666. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9667. {
  9668. front: {
  9669. height: math.unit(6, "feet"),
  9670. weight: math.unit(120, "kg"),
  9671. name: "Front",
  9672. image: {
  9673. source: "./media/characters/zevulfius/front.svg",
  9674. extra: 965 / 903
  9675. }
  9676. },
  9677. side: {
  9678. height: math.unit(6, "feet"),
  9679. weight: math.unit(120, "kg"),
  9680. name: "Side",
  9681. image: {
  9682. source: "./media/characters/zevulfius/side.svg",
  9683. extra: 939 / 900
  9684. }
  9685. },
  9686. back: {
  9687. height: math.unit(6, "feet"),
  9688. weight: math.unit(120, "kg"),
  9689. name: "Back",
  9690. image: {
  9691. source: "./media/characters/zevulfius/back.svg",
  9692. extra: 918 / 854,
  9693. bottom: 0.005
  9694. }
  9695. },
  9696. foot: {
  9697. height: math.unit(6 / 3.72, "feet"),
  9698. name: "Foot",
  9699. image: {
  9700. source: "./media/characters/zevulfius/foot.svg"
  9701. }
  9702. },
  9703. },
  9704. [
  9705. {
  9706. name: "Macro",
  9707. height: math.unit(750, "meters")
  9708. },
  9709. {
  9710. name: "Megamacro",
  9711. height: math.unit(20, "km"),
  9712. default: true
  9713. },
  9714. {
  9715. name: "Gigamacro",
  9716. height: math.unit(2000, "km")
  9717. },
  9718. {
  9719. name: "Teramacro",
  9720. height: math.unit(250000, "km")
  9721. },
  9722. ]
  9723. ))
  9724. characterMakers.push(() => makeCharacter(
  9725. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9726. {
  9727. front: {
  9728. height: math.unit(100, "feet"),
  9729. weight: math.unit(350, "kg"),
  9730. name: "Front",
  9731. image: {
  9732. source: "./media/characters/rikes/front.svg",
  9733. extra: 1565 / 1483,
  9734. bottom: 0.017
  9735. }
  9736. },
  9737. },
  9738. [
  9739. {
  9740. name: "Macro",
  9741. height: math.unit(100, "feet"),
  9742. default: true
  9743. },
  9744. ]
  9745. ))
  9746. characterMakers.push(() => makeCharacter(
  9747. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9748. {
  9749. anthro: {
  9750. height: math.unit(8, "feet"),
  9751. weight: math.unit(120, "kg"),
  9752. name: "Anthro",
  9753. image: {
  9754. source: "./media/characters/adam-silver-mane/anthro.svg",
  9755. extra: 5743 / 5339,
  9756. bottom: 0.07
  9757. }
  9758. },
  9759. taur: {
  9760. height: math.unit(16, "feet"),
  9761. weight: math.unit(1500, "kg"),
  9762. name: "Taur",
  9763. image: {
  9764. source: "./media/characters/adam-silver-mane/taur.svg",
  9765. extra: 1713 / 1571,
  9766. bottom: 0.01
  9767. }
  9768. },
  9769. },
  9770. [
  9771. {
  9772. name: "Normal",
  9773. height: math.unit(8, "feet")
  9774. },
  9775. {
  9776. name: "Minimacro",
  9777. height: math.unit(80, "feet")
  9778. },
  9779. {
  9780. name: "Macro",
  9781. height: math.unit(800, "feet"),
  9782. default: true
  9783. },
  9784. {
  9785. name: "Megamacro",
  9786. height: math.unit(8000, "feet")
  9787. },
  9788. {
  9789. name: "Gigamacro",
  9790. height: math.unit(800, "miles")
  9791. },
  9792. {
  9793. name: "Teramacro",
  9794. height: math.unit(80000, "miles")
  9795. },
  9796. {
  9797. name: "Celestial",
  9798. height: math.unit(8e6, "miles")
  9799. },
  9800. {
  9801. name: "Star Dragon",
  9802. height: math.unit(800000, "parsecs")
  9803. },
  9804. {
  9805. name: "Godly",
  9806. height: math.unit(800, "teraparsecs")
  9807. },
  9808. ]
  9809. ))
  9810. characterMakers.push(() => makeCharacter(
  9811. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  9812. {
  9813. front: {
  9814. height: math.unit(6, "feet"),
  9815. weight: math.unit(150, "lb"),
  9816. name: "Front",
  9817. image: {
  9818. source: "./media/characters/ky'owin/front.svg",
  9819. extra: 3888 / 3068,
  9820. bottom: 0.015
  9821. }
  9822. },
  9823. },
  9824. [
  9825. {
  9826. name: "Normal",
  9827. height: math.unit(6 + 8 / 12, "feet")
  9828. },
  9829. {
  9830. name: "Large",
  9831. height: math.unit(68, "feet")
  9832. },
  9833. {
  9834. name: "Macro",
  9835. height: math.unit(132, "feet")
  9836. },
  9837. {
  9838. name: "Macro+",
  9839. height: math.unit(340, "feet")
  9840. },
  9841. {
  9842. name: "Macro++",
  9843. height: math.unit(680, "feet"),
  9844. default: true
  9845. },
  9846. {
  9847. name: "Megamacro",
  9848. height: math.unit(1, "mile")
  9849. },
  9850. {
  9851. name: "Megamacro+",
  9852. height: math.unit(10, "miles")
  9853. },
  9854. ]
  9855. ))
  9856. characterMakers.push(() => makeCharacter(
  9857. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  9858. {
  9859. front: {
  9860. height: math.unit(4, "feet"),
  9861. weight: math.unit(50, "lb"),
  9862. name: "Front",
  9863. image: {
  9864. source: "./media/characters/mal/front.svg",
  9865. extra: 785 / 724,
  9866. bottom: 0.07
  9867. }
  9868. },
  9869. },
  9870. [
  9871. {
  9872. name: "Micro",
  9873. height: math.unit(4, "inches")
  9874. },
  9875. {
  9876. name: "Normal",
  9877. height: math.unit(4, "feet"),
  9878. default: true
  9879. },
  9880. {
  9881. name: "Macro",
  9882. height: math.unit(200, "feet")
  9883. },
  9884. ]
  9885. ))
  9886. characterMakers.push(() => makeCharacter(
  9887. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  9888. {
  9889. front: {
  9890. height: math.unit(6, "feet"),
  9891. weight: math.unit(150, "lb"),
  9892. name: "Front",
  9893. image: {
  9894. source: "./media/characters/jordan-deware/front.svg",
  9895. extra: 1191 / 1012
  9896. }
  9897. },
  9898. },
  9899. [
  9900. {
  9901. name: "Nano",
  9902. height: math.unit(0.01, "mm")
  9903. },
  9904. {
  9905. name: "Minimicro",
  9906. height: math.unit(1, "mm")
  9907. },
  9908. {
  9909. name: "Micro",
  9910. height: math.unit(0.5, "inches")
  9911. },
  9912. {
  9913. name: "Normal",
  9914. height: math.unit(4, "feet"),
  9915. default: true
  9916. },
  9917. {
  9918. name: "Minimacro",
  9919. height: math.unit(40, "meters")
  9920. },
  9921. {
  9922. name: "Small Macro",
  9923. height: math.unit(400, "meters")
  9924. },
  9925. {
  9926. name: "Macro",
  9927. height: math.unit(4, "miles")
  9928. },
  9929. {
  9930. name: "Megamacro",
  9931. height: math.unit(40, "miles")
  9932. },
  9933. {
  9934. name: "Megamacro+",
  9935. height: math.unit(400, "miles")
  9936. },
  9937. {
  9938. name: "Gigamacro",
  9939. height: math.unit(400000, "miles")
  9940. },
  9941. ]
  9942. ))
  9943. characterMakers.push(() => makeCharacter(
  9944. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  9945. {
  9946. side: {
  9947. height: math.unit(6, "feet"),
  9948. weight: math.unit(150, "lb"),
  9949. name: "Side",
  9950. image: {
  9951. source: "./media/characters/kimiko/side.svg",
  9952. extra: 600 / 358
  9953. }
  9954. },
  9955. },
  9956. [
  9957. {
  9958. name: "Normal",
  9959. height: math.unit(15, "feet"),
  9960. default: true
  9961. },
  9962. {
  9963. name: "Macro",
  9964. height: math.unit(220, "feet")
  9965. },
  9966. {
  9967. name: "Macro+",
  9968. height: math.unit(1450, "feet")
  9969. },
  9970. {
  9971. name: "Megamacro",
  9972. height: math.unit(11500, "feet")
  9973. },
  9974. {
  9975. name: "Gigamacro",
  9976. height: math.unit(9500, "miles")
  9977. },
  9978. {
  9979. name: "Teramacro",
  9980. height: math.unit(2208005005, "miles")
  9981. },
  9982. {
  9983. name: "Examacro",
  9984. height: math.unit(2750, "parsecs")
  9985. },
  9986. {
  9987. name: "Zettamacro",
  9988. height: math.unit(101500, "parsecs")
  9989. },
  9990. ]
  9991. ))
  9992. characterMakers.push(() => makeCharacter(
  9993. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  9994. {
  9995. front: {
  9996. height: math.unit(6, "feet"),
  9997. weight: math.unit(70, "kg"),
  9998. name: "Front",
  9999. image: {
  10000. source: "./media/characters/andrew-sleepy/front.svg"
  10001. }
  10002. },
  10003. side: {
  10004. height: math.unit(6, "feet"),
  10005. weight: math.unit(70, "kg"),
  10006. name: "Side",
  10007. image: {
  10008. source: "./media/characters/andrew-sleepy/side.svg"
  10009. }
  10010. },
  10011. },
  10012. [
  10013. {
  10014. name: "Micro",
  10015. height: math.unit(1, "mm"),
  10016. default: true
  10017. },
  10018. ]
  10019. ))
  10020. characterMakers.push(() => makeCharacter(
  10021. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10022. {
  10023. front: {
  10024. height: math.unit(6, "feet"),
  10025. weight: math.unit(150, "lb"),
  10026. name: "Front",
  10027. image: {
  10028. source: "./media/characters/judio/front.svg",
  10029. extra: 1258 / 1110
  10030. }
  10031. },
  10032. },
  10033. [
  10034. {
  10035. name: "Normal",
  10036. height: math.unit(5 + 6 / 12, "feet")
  10037. },
  10038. {
  10039. name: "Macro",
  10040. height: math.unit(1000, "feet"),
  10041. default: true
  10042. },
  10043. {
  10044. name: "Megamacro",
  10045. height: math.unit(10, "miles")
  10046. },
  10047. ]
  10048. ))
  10049. characterMakers.push(() => makeCharacter(
  10050. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10051. {
  10052. front: {
  10053. height: math.unit(6, "feet"),
  10054. weight: math.unit(68, "kg"),
  10055. name: "Front",
  10056. image: {
  10057. source: "./media/characters/nomaxice/front.svg",
  10058. extra: 1498 / 1073,
  10059. bottom: 0.075
  10060. }
  10061. },
  10062. foot: {
  10063. height: math.unit(1.1, "feet"),
  10064. name: "Foot",
  10065. image: {
  10066. source: "./media/characters/nomaxice/foot.svg"
  10067. }
  10068. },
  10069. },
  10070. [
  10071. {
  10072. name: "Micro",
  10073. height: math.unit(8, "cm")
  10074. },
  10075. {
  10076. name: "Norm",
  10077. height: math.unit(1.82, "m")
  10078. },
  10079. {
  10080. name: "Norm+",
  10081. height: math.unit(8.8, "feet")
  10082. },
  10083. {
  10084. name: "Big",
  10085. height: math.unit(8, "meters"),
  10086. default: true
  10087. },
  10088. {
  10089. name: "Macro",
  10090. height: math.unit(18, "meters")
  10091. },
  10092. {
  10093. name: "Macro+",
  10094. height: math.unit(88, "meters")
  10095. },
  10096. ]
  10097. ))
  10098. characterMakers.push(() => makeCharacter(
  10099. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10100. {
  10101. front: {
  10102. height: math.unit(12, "feet"),
  10103. weight: math.unit(1.5, "tons"),
  10104. name: "Front",
  10105. image: {
  10106. source: "./media/characters/dydros/front.svg",
  10107. extra: 863 / 800,
  10108. bottom: 0.015
  10109. }
  10110. },
  10111. back: {
  10112. height: math.unit(12, "feet"),
  10113. weight: math.unit(1.5, "tons"),
  10114. name: "Back",
  10115. image: {
  10116. source: "./media/characters/dydros/back.svg",
  10117. extra: 900 / 843,
  10118. bottom: 0.005
  10119. }
  10120. },
  10121. },
  10122. [
  10123. {
  10124. name: "Normal",
  10125. height: math.unit(12, "feet"),
  10126. default: true
  10127. },
  10128. ]
  10129. ))
  10130. characterMakers.push(() => makeCharacter(
  10131. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10132. {
  10133. front: {
  10134. height: math.unit(6, "feet"),
  10135. weight: math.unit(100, "kg"),
  10136. name: "Front",
  10137. image: {
  10138. source: "./media/characters/riggi/front.svg",
  10139. extra: 5787 / 5303
  10140. }
  10141. },
  10142. hyper: {
  10143. height: math.unit(6 * 5 / 3, "feet"),
  10144. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10145. name: "Hyper",
  10146. image: {
  10147. source: "./media/characters/riggi/hyper.svg",
  10148. extra: 3595 / 3485
  10149. }
  10150. },
  10151. },
  10152. [
  10153. {
  10154. name: "Small Macro",
  10155. height: math.unit(50, "feet")
  10156. },
  10157. {
  10158. name: "Default",
  10159. height: math.unit(200, "feet"),
  10160. default: true
  10161. },
  10162. {
  10163. name: "Loom",
  10164. height: math.unit(10000, "feet")
  10165. },
  10166. {
  10167. name: "Cruising Altitude",
  10168. height: math.unit(30000, "feet")
  10169. },
  10170. {
  10171. name: "Megamacro",
  10172. height: math.unit(100, "miles")
  10173. },
  10174. {
  10175. name: "Continent Sized",
  10176. height: math.unit(2800, "miles")
  10177. },
  10178. {
  10179. name: "Earth Sized",
  10180. height: math.unit(8000, "miles")
  10181. },
  10182. ]
  10183. ))
  10184. characterMakers.push(() => makeCharacter(
  10185. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10186. {
  10187. front: {
  10188. height: math.unit(6, "feet"),
  10189. weight: math.unit(250, "lb"),
  10190. name: "Front",
  10191. image: {
  10192. source: "./media/characters/alexi/front.svg",
  10193. extra: 3483 / 3291,
  10194. bottom: 0.04
  10195. }
  10196. },
  10197. back: {
  10198. height: math.unit(6, "feet"),
  10199. weight: math.unit(250, "lb"),
  10200. name: "Back",
  10201. image: {
  10202. source: "./media/characters/alexi/back.svg",
  10203. extra: 3533 / 3356,
  10204. bottom: 0.021
  10205. }
  10206. },
  10207. frontTransforming: {
  10208. height: math.unit(8.58, "feet"),
  10209. weight: math.unit(1300, "lb"),
  10210. name: "Transforming",
  10211. image: {
  10212. source: "./media/characters/alexi/front-transforming.svg",
  10213. extra: 437 / 409,
  10214. bottom: 19 / 458.66
  10215. }
  10216. },
  10217. frontTransformed: {
  10218. height: math.unit(12.5, "feet"),
  10219. weight: math.unit(4000, "lb"),
  10220. name: "Transformed",
  10221. image: {
  10222. source: "./media/characters/alexi/front-transformed.svg",
  10223. extra: 639 / 614,
  10224. bottom: 30.55 / 671
  10225. }
  10226. },
  10227. },
  10228. [
  10229. {
  10230. name: "Normal",
  10231. height: math.unit(14, "feet"),
  10232. default: true
  10233. },
  10234. {
  10235. name: "Minimacro",
  10236. height: math.unit(30, "meters")
  10237. },
  10238. {
  10239. name: "Macro",
  10240. height: math.unit(500, "meters")
  10241. },
  10242. {
  10243. name: "Megamacro",
  10244. height: math.unit(9000, "km")
  10245. },
  10246. {
  10247. name: "Teramacro",
  10248. height: math.unit(384000, "km")
  10249. },
  10250. ]
  10251. ))
  10252. characterMakers.push(() => makeCharacter(
  10253. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10254. {
  10255. front: {
  10256. height: math.unit(6, "feet"),
  10257. weight: math.unit(150, "lb"),
  10258. name: "Front",
  10259. image: {
  10260. source: "./media/characters/kayroo/front.svg",
  10261. extra: 1153 / 1038,
  10262. bottom: 0.06
  10263. }
  10264. },
  10265. foot: {
  10266. height: math.unit(6, "feet"),
  10267. weight: math.unit(150, "lb"),
  10268. name: "Foot",
  10269. image: {
  10270. source: "./media/characters/kayroo/foot.svg"
  10271. }
  10272. },
  10273. },
  10274. [
  10275. {
  10276. name: "Normal",
  10277. height: math.unit(8, "feet"),
  10278. default: true
  10279. },
  10280. {
  10281. name: "Minimacro",
  10282. height: math.unit(250, "feet")
  10283. },
  10284. {
  10285. name: "Macro",
  10286. height: math.unit(2800, "feet")
  10287. },
  10288. {
  10289. name: "Megamacro",
  10290. height: math.unit(5200, "feet")
  10291. },
  10292. {
  10293. name: "Gigamacro",
  10294. height: math.unit(27000, "feet")
  10295. },
  10296. {
  10297. name: "Omega",
  10298. height: math.unit(45000, "feet")
  10299. },
  10300. ]
  10301. ))
  10302. characterMakers.push(() => makeCharacter(
  10303. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10304. {
  10305. front: {
  10306. height: math.unit(18, "feet"),
  10307. weight: math.unit(5800, "lb"),
  10308. name: "Front",
  10309. image: {
  10310. source: "./media/characters/rhys/front.svg",
  10311. extra: 3386 / 3090,
  10312. bottom: 0.07
  10313. }
  10314. },
  10315. },
  10316. [
  10317. {
  10318. name: "Normal",
  10319. height: math.unit(18, "feet"),
  10320. default: true
  10321. },
  10322. {
  10323. name: "Working Size",
  10324. height: math.unit(200, "feet")
  10325. },
  10326. {
  10327. name: "Demolition Size",
  10328. height: math.unit(2000, "feet")
  10329. },
  10330. {
  10331. name: "Maximum Licensed Size",
  10332. height: math.unit(5, "miles")
  10333. },
  10334. {
  10335. name: "Maximum Observed Size",
  10336. height: math.unit(10, "yottameters")
  10337. },
  10338. ]
  10339. ))
  10340. characterMakers.push(() => makeCharacter(
  10341. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10342. {
  10343. front: {
  10344. height: math.unit(6, "feet"),
  10345. weight: math.unit(250, "lb"),
  10346. name: "Front",
  10347. image: {
  10348. source: "./media/characters/toto/front.svg",
  10349. extra: 527 / 479,
  10350. bottom: 0.05
  10351. }
  10352. },
  10353. },
  10354. [
  10355. {
  10356. name: "Micro",
  10357. height: math.unit(3, "feet")
  10358. },
  10359. {
  10360. name: "Normal",
  10361. height: math.unit(10, "feet")
  10362. },
  10363. {
  10364. name: "Macro",
  10365. height: math.unit(150, "feet"),
  10366. default: true
  10367. },
  10368. {
  10369. name: "Megamacro",
  10370. height: math.unit(1200, "feet")
  10371. },
  10372. ]
  10373. ))
  10374. characterMakers.push(() => makeCharacter(
  10375. { name: "King", species: ["lion"], tags: ["anthro"] },
  10376. {
  10377. back: {
  10378. height: math.unit(6, "feet"),
  10379. weight: math.unit(150, "lb"),
  10380. name: "Back",
  10381. image: {
  10382. source: "./media/characters/king/back.svg"
  10383. }
  10384. },
  10385. },
  10386. [
  10387. {
  10388. name: "Micro",
  10389. height: math.unit(2, "inches")
  10390. },
  10391. {
  10392. name: "Normal",
  10393. height: math.unit(8, "feet")
  10394. },
  10395. {
  10396. name: "Macro",
  10397. height: math.unit(200, "feet"),
  10398. default: true
  10399. },
  10400. {
  10401. name: "Megamacro",
  10402. height: math.unit(50, "miles")
  10403. },
  10404. ]
  10405. ))
  10406. characterMakers.push(() => makeCharacter(
  10407. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10408. {
  10409. anthro: {
  10410. height: math.unit(6 + 5 / 12, "feet"),
  10411. weight: math.unit(280, "lb"),
  10412. name: "Anthro",
  10413. image: {
  10414. source: "./media/characters/cordite/anthro.svg",
  10415. extra: 1986 / 1905,
  10416. bottom: 0.025
  10417. }
  10418. },
  10419. feral: {
  10420. height: math.unit(2, "feet"),
  10421. weight: math.unit(90, "lb"),
  10422. name: "Feral",
  10423. image: {
  10424. source: "./media/characters/cordite/feral.svg",
  10425. extra: 1260 / 755,
  10426. bottom: 0.05
  10427. }
  10428. },
  10429. },
  10430. [
  10431. {
  10432. name: "Normal",
  10433. height: math.unit(6 + 5 / 12, "feet"),
  10434. default: true
  10435. },
  10436. ]
  10437. ))
  10438. characterMakers.push(() => makeCharacter(
  10439. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10440. {
  10441. front: {
  10442. height: math.unit(6, "feet"),
  10443. weight: math.unit(150, "lb"),
  10444. name: "Front",
  10445. image: {
  10446. source: "./media/characters/pianostrong/front.svg",
  10447. extra: 6577 / 6254,
  10448. bottom: 0.02
  10449. }
  10450. },
  10451. side: {
  10452. height: math.unit(6, "feet"),
  10453. weight: math.unit(150, "lb"),
  10454. name: "Side",
  10455. image: {
  10456. source: "./media/characters/pianostrong/side.svg",
  10457. extra: 6106 / 5730
  10458. }
  10459. },
  10460. back: {
  10461. height: math.unit(6, "feet"),
  10462. weight: math.unit(150, "lb"),
  10463. name: "Back",
  10464. image: {
  10465. source: "./media/characters/pianostrong/back.svg",
  10466. extra: 6085 / 5733,
  10467. bottom: 0.01
  10468. }
  10469. },
  10470. },
  10471. [
  10472. {
  10473. name: "Macro",
  10474. height: math.unit(100, "feet")
  10475. },
  10476. {
  10477. name: "Macro+",
  10478. height: math.unit(300, "feet"),
  10479. default: true
  10480. },
  10481. {
  10482. name: "Macro++",
  10483. height: math.unit(1000, "feet")
  10484. },
  10485. ]
  10486. ))
  10487. characterMakers.push(() => makeCharacter(
  10488. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10489. {
  10490. front: {
  10491. height: math.unit(6, "feet"),
  10492. weight: math.unit(150, "lb"),
  10493. name: "Front",
  10494. image: {
  10495. source: "./media/characters/kona/front.svg",
  10496. extra: 2960 / 2629,
  10497. bottom: 0.005
  10498. }
  10499. },
  10500. },
  10501. [
  10502. {
  10503. name: "Normal",
  10504. height: math.unit(11 + 8 / 12, "feet")
  10505. },
  10506. {
  10507. name: "Macro",
  10508. height: math.unit(850, "feet"),
  10509. default: true
  10510. },
  10511. {
  10512. name: "Macro+",
  10513. height: math.unit(1.5, "km"),
  10514. default: true
  10515. },
  10516. {
  10517. name: "Megamacro",
  10518. height: math.unit(80, "miles")
  10519. },
  10520. {
  10521. name: "Gigamacro",
  10522. height: math.unit(3500, "miles")
  10523. },
  10524. ]
  10525. ))
  10526. characterMakers.push(() => makeCharacter(
  10527. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10528. {
  10529. side: {
  10530. height: math.unit(1.9, "meters"),
  10531. weight: math.unit(326, "kg"),
  10532. name: "Side",
  10533. image: {
  10534. source: "./media/characters/levi/side.svg",
  10535. extra: 1704 / 1334,
  10536. bottom: 0.02
  10537. }
  10538. },
  10539. },
  10540. [
  10541. {
  10542. name: "Normal",
  10543. height: math.unit(1.9, "meters"),
  10544. default: true
  10545. },
  10546. {
  10547. name: "Macro",
  10548. height: math.unit(20, "meters")
  10549. },
  10550. {
  10551. name: "Macro+",
  10552. height: math.unit(200, "meters")
  10553. },
  10554. {
  10555. name: "Megamacro",
  10556. height: math.unit(2, "km")
  10557. },
  10558. {
  10559. name: "Megamacro+",
  10560. height: math.unit(20, "km")
  10561. },
  10562. {
  10563. name: "Gigamacro",
  10564. height: math.unit(2500, "km")
  10565. },
  10566. {
  10567. name: "Gigamacro+",
  10568. height: math.unit(120000, "km")
  10569. },
  10570. {
  10571. name: "Teramacro",
  10572. height: math.unit(7.77e6, "km")
  10573. },
  10574. ]
  10575. ))
  10576. characterMakers.push(() => makeCharacter(
  10577. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10578. {
  10579. front: {
  10580. height: math.unit(6 + 4 / 12, "feet"),
  10581. weight: math.unit(188, "lb"),
  10582. name: "Front",
  10583. image: {
  10584. source: "./media/characters/bmc/front.svg",
  10585. extra: 1067 / 1022,
  10586. bottom: 0.047
  10587. }
  10588. },
  10589. },
  10590. [
  10591. {
  10592. name: "Human-sized",
  10593. height: math.unit(6 + 4 / 12, "feet")
  10594. },
  10595. {
  10596. name: "Small",
  10597. height: math.unit(250, "feet")
  10598. },
  10599. {
  10600. name: "Normal",
  10601. height: math.unit(1250, "feet"),
  10602. default: true
  10603. },
  10604. {
  10605. name: "Good Day",
  10606. height: math.unit(88, "miles")
  10607. },
  10608. {
  10609. name: "Largest Measured Size",
  10610. height: math.unit(11.2e6, "lightyears")
  10611. },
  10612. ]
  10613. ))
  10614. characterMakers.push(() => makeCharacter(
  10615. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10616. {
  10617. front: {
  10618. height: math.unit(20, "feet"),
  10619. weight: math.unit(2016, "kg"),
  10620. name: "Front",
  10621. image: {
  10622. source: "./media/characters/sven-the-kaiju/front.svg",
  10623. extra: 1479 / 1449,
  10624. bottom: 0.05
  10625. }
  10626. },
  10627. },
  10628. [
  10629. {
  10630. name: "Fairy",
  10631. height: math.unit(6, "inches")
  10632. },
  10633. {
  10634. name: "Normal",
  10635. height: math.unit(20, "feet"),
  10636. default: true
  10637. },
  10638. {
  10639. name: "Rampage",
  10640. height: math.unit(200, "feet")
  10641. },
  10642. {
  10643. name: "Archfey Forest Guardian",
  10644. height: math.unit(1, "mile")
  10645. },
  10646. ]
  10647. ))
  10648. characterMakers.push(() => makeCharacter(
  10649. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10650. {
  10651. front: {
  10652. height: math.unit(4, "meters"),
  10653. weight: math.unit(2, "tons"),
  10654. name: "Front",
  10655. image: {
  10656. source: "./media/characters/marik/front.svg",
  10657. extra: 1057 / 1003,
  10658. bottom: 0.08
  10659. }
  10660. },
  10661. },
  10662. [
  10663. {
  10664. name: "Normal",
  10665. height: math.unit(4, "meters"),
  10666. default: true
  10667. },
  10668. {
  10669. name: "Macro",
  10670. height: math.unit(20, "meters")
  10671. },
  10672. {
  10673. name: "Megamacro",
  10674. height: math.unit(50, "km")
  10675. },
  10676. {
  10677. name: "Gigamacro",
  10678. height: math.unit(100, "km")
  10679. },
  10680. {
  10681. name: "Alpha Macro",
  10682. height: math.unit(7.88e7, "yottameters")
  10683. },
  10684. ]
  10685. ))
  10686. characterMakers.push(() => makeCharacter(
  10687. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10688. {
  10689. front: {
  10690. height: math.unit(6, "feet"),
  10691. weight: math.unit(110, "lb"),
  10692. name: "Front",
  10693. image: {
  10694. source: "./media/characters/mel/front.svg",
  10695. extra: 736 / 617,
  10696. bottom: 0.017
  10697. }
  10698. },
  10699. },
  10700. [
  10701. {
  10702. name: "Pico",
  10703. height: math.unit(3, "pm")
  10704. },
  10705. {
  10706. name: "Nano",
  10707. height: math.unit(3, "nm")
  10708. },
  10709. {
  10710. name: "Micro",
  10711. height: math.unit(0.3, "mm"),
  10712. default: true
  10713. },
  10714. {
  10715. name: "Micro+",
  10716. height: math.unit(3, "mm")
  10717. },
  10718. {
  10719. name: "Normal",
  10720. height: math.unit(5 + 10.5 / 12, "feet")
  10721. },
  10722. ]
  10723. ))
  10724. characterMakers.push(() => makeCharacter(
  10725. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10726. {
  10727. kaiju: {
  10728. height: math.unit(1.75, "meters"),
  10729. weight: math.unit(55, "kg"),
  10730. name: "Kaiju",
  10731. image: {
  10732. source: "./media/characters/lykonous/kaiju.svg",
  10733. extra: 1055 / 946,
  10734. bottom: 0.135
  10735. }
  10736. },
  10737. },
  10738. [
  10739. {
  10740. name: "Normal",
  10741. height: math.unit(2.5, "meters"),
  10742. default: true
  10743. },
  10744. {
  10745. name: "Kaiju Dragon",
  10746. height: math.unit(60, "meters")
  10747. },
  10748. {
  10749. name: "Mega Kaiju",
  10750. height: math.unit(120, "km")
  10751. },
  10752. {
  10753. name: "Giga Kaiju",
  10754. height: math.unit(200, "megameters")
  10755. },
  10756. {
  10757. name: "Terra Kaiju",
  10758. height: math.unit(400, "gigameters")
  10759. },
  10760. {
  10761. name: "Kaiju Dragon God",
  10762. height: math.unit(13000, "exaparsecs")
  10763. },
  10764. ]
  10765. ))
  10766. characterMakers.push(() => makeCharacter(
  10767. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  10768. {
  10769. front: {
  10770. height: math.unit(6, "feet"),
  10771. weight: math.unit(150, "lb"),
  10772. name: "Front",
  10773. image: {
  10774. source: "./media/characters/blü/front.svg",
  10775. extra: 1883 / 1564,
  10776. bottom: 0.031
  10777. }
  10778. },
  10779. },
  10780. [
  10781. {
  10782. name: "Normal",
  10783. height: math.unit(13, "feet"),
  10784. default: true
  10785. },
  10786. {
  10787. name: "Big Boi",
  10788. height: math.unit(150, "meters")
  10789. },
  10790. {
  10791. name: "Mini Stomper",
  10792. height: math.unit(300, "meters")
  10793. },
  10794. {
  10795. name: "Macro",
  10796. height: math.unit(1000, "meters")
  10797. },
  10798. {
  10799. name: "Megamacro",
  10800. height: math.unit(11000, "meters")
  10801. },
  10802. {
  10803. name: "Gigamacro",
  10804. height: math.unit(11000, "km")
  10805. },
  10806. {
  10807. name: "Teramacro",
  10808. height: math.unit(420000, "km")
  10809. },
  10810. {
  10811. name: "Examacro",
  10812. height: math.unit(120, "parsecs")
  10813. },
  10814. {
  10815. name: "God Tho",
  10816. height: math.unit(98000000000, "parsecs")
  10817. },
  10818. ]
  10819. ))
  10820. characterMakers.push(() => makeCharacter(
  10821. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  10822. {
  10823. taurFront: {
  10824. height: math.unit(6, "feet"),
  10825. weight: math.unit(200, "lb"),
  10826. name: "Taur (Front)",
  10827. image: {
  10828. source: "./media/characters/scales/taur-front.svg",
  10829. extra: 1,
  10830. bottom: 0.05
  10831. }
  10832. },
  10833. taurBack: {
  10834. height: math.unit(6, "feet"),
  10835. weight: math.unit(200, "lb"),
  10836. name: "Taur (Back)",
  10837. image: {
  10838. source: "./media/characters/scales/taur-back.svg",
  10839. extra: 1,
  10840. bottom: 0.08
  10841. }
  10842. },
  10843. anthro: {
  10844. height: math.unit(6 * 7 / 12, "feet"),
  10845. weight: math.unit(100, "lb"),
  10846. name: "Anthro",
  10847. image: {
  10848. source: "./media/characters/scales/anthro.svg",
  10849. extra: 1,
  10850. bottom: 0.06
  10851. }
  10852. },
  10853. },
  10854. [
  10855. {
  10856. name: "Normal",
  10857. height: math.unit(12, "feet"),
  10858. default: true
  10859. },
  10860. ]
  10861. ))
  10862. characterMakers.push(() => makeCharacter(
  10863. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  10864. {
  10865. front: {
  10866. height: math.unit(6, "feet"),
  10867. weight: math.unit(150, "lb"),
  10868. name: "Front",
  10869. image: {
  10870. source: "./media/characters/koragos/front.svg",
  10871. extra: 841 / 794,
  10872. bottom: 0.035
  10873. }
  10874. },
  10875. back: {
  10876. height: math.unit(6, "feet"),
  10877. weight: math.unit(150, "lb"),
  10878. name: "Back",
  10879. image: {
  10880. source: "./media/characters/koragos/back.svg",
  10881. extra: 841 / 810,
  10882. bottom: 0.022
  10883. }
  10884. },
  10885. },
  10886. [
  10887. {
  10888. name: "Normal",
  10889. height: math.unit(6 + 11 / 12, "feet"),
  10890. default: true
  10891. },
  10892. {
  10893. name: "Macro",
  10894. height: math.unit(490, "feet")
  10895. },
  10896. {
  10897. name: "Megamacro",
  10898. height: math.unit(10, "miles")
  10899. },
  10900. {
  10901. name: "Gigamacro",
  10902. height: math.unit(50, "miles")
  10903. },
  10904. ]
  10905. ))
  10906. characterMakers.push(() => makeCharacter(
  10907. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  10908. {
  10909. front: {
  10910. height: math.unit(6, "feet"),
  10911. weight: math.unit(250, "lb"),
  10912. name: "Front",
  10913. image: {
  10914. source: "./media/characters/xylrem/front.svg",
  10915. extra: 3323 / 3050,
  10916. bottom: 0.065
  10917. }
  10918. },
  10919. },
  10920. [
  10921. {
  10922. name: "Micro",
  10923. height: math.unit(4, "feet")
  10924. },
  10925. {
  10926. name: "Normal",
  10927. height: math.unit(16, "feet"),
  10928. default: true
  10929. },
  10930. {
  10931. name: "Macro",
  10932. height: math.unit(2720, "feet")
  10933. },
  10934. {
  10935. name: "Megamacro",
  10936. height: math.unit(25000, "miles")
  10937. },
  10938. ]
  10939. ))
  10940. characterMakers.push(() => makeCharacter(
  10941. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  10942. {
  10943. front: {
  10944. height: math.unit(8, "feet"),
  10945. weight: math.unit(250, "kg"),
  10946. name: "Front",
  10947. image: {
  10948. source: "./media/characters/ikideru/front.svg",
  10949. extra: 930 / 870,
  10950. bottom: 0.087
  10951. }
  10952. },
  10953. back: {
  10954. height: math.unit(8, "feet"),
  10955. weight: math.unit(250, "kg"),
  10956. name: "Back",
  10957. image: {
  10958. source: "./media/characters/ikideru/back.svg",
  10959. extra: 919 / 852,
  10960. bottom: 0.055
  10961. }
  10962. },
  10963. },
  10964. [
  10965. {
  10966. name: "Rare",
  10967. height: math.unit(8, "feet"),
  10968. default: true
  10969. },
  10970. {
  10971. name: "Playful Loom",
  10972. height: math.unit(80, "feet")
  10973. },
  10974. {
  10975. name: "City Leaner",
  10976. height: math.unit(230, "feet")
  10977. },
  10978. {
  10979. name: "Megamacro",
  10980. height: math.unit(2500, "feet")
  10981. },
  10982. {
  10983. name: "Gigamacro",
  10984. height: math.unit(26400, "feet")
  10985. },
  10986. {
  10987. name: "Tectonic Shifter",
  10988. height: math.unit(1.7, "megameters")
  10989. },
  10990. {
  10991. name: "Planet Carer",
  10992. height: math.unit(21, "megameters")
  10993. },
  10994. {
  10995. name: "God",
  10996. height: math.unit(11157.22, "parsecs")
  10997. },
  10998. ]
  10999. ))
  11000. characterMakers.push(() => makeCharacter(
  11001. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11002. {
  11003. front: {
  11004. height: math.unit(6, "feet"),
  11005. weight: math.unit(120, "lb"),
  11006. name: "Front",
  11007. image: {
  11008. source: "./media/characters/neo/front.svg"
  11009. }
  11010. },
  11011. },
  11012. [
  11013. {
  11014. name: "Micro",
  11015. height: math.unit(2, "inches"),
  11016. default: true
  11017. },
  11018. {
  11019. name: "Human Size",
  11020. height: math.unit(5 + 8 / 12, "feet")
  11021. },
  11022. ]
  11023. ))
  11024. characterMakers.push(() => makeCharacter(
  11025. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11026. {
  11027. front: {
  11028. height: math.unit(13 + 10 / 12, "feet"),
  11029. weight: math.unit(5320, "lb"),
  11030. name: "Front",
  11031. image: {
  11032. source: "./media/characters/chauncey-chantz/front.svg",
  11033. extra: 1587 / 1435,
  11034. bottom: 0.02
  11035. }
  11036. },
  11037. },
  11038. [
  11039. {
  11040. name: "Normal",
  11041. height: math.unit(13 + 10 / 12, "feet"),
  11042. default: true
  11043. },
  11044. {
  11045. name: "Macro",
  11046. height: math.unit(45, "feet")
  11047. },
  11048. {
  11049. name: "Megamacro",
  11050. height: math.unit(250, "miles")
  11051. },
  11052. {
  11053. name: "Planetary",
  11054. height: math.unit(10000, "miles")
  11055. },
  11056. {
  11057. name: "Galactic",
  11058. height: math.unit(40000, "parsecs")
  11059. },
  11060. {
  11061. name: "Universal",
  11062. height: math.unit(1, "yottameter")
  11063. },
  11064. ]
  11065. ))
  11066. characterMakers.push(() => makeCharacter(
  11067. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11068. {
  11069. front: {
  11070. height: math.unit(6, "feet"),
  11071. weight: math.unit(150, "lb"),
  11072. name: "Front",
  11073. image: {
  11074. source: "./media/characters/epifox/front.svg",
  11075. extra: 1,
  11076. bottom: 0.075
  11077. }
  11078. },
  11079. },
  11080. [
  11081. {
  11082. name: "Micro",
  11083. height: math.unit(6, "inches")
  11084. },
  11085. {
  11086. name: "Normal",
  11087. height: math.unit(12, "feet"),
  11088. default: true
  11089. },
  11090. {
  11091. name: "Macro",
  11092. height: math.unit(3810, "feet")
  11093. },
  11094. {
  11095. name: "Megamacro",
  11096. height: math.unit(500, "miles")
  11097. },
  11098. ]
  11099. ))
  11100. characterMakers.push(() => makeCharacter(
  11101. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11102. {
  11103. front: {
  11104. height: math.unit(1.8796, "m"),
  11105. weight: math.unit(230, "lb"),
  11106. name: "Front",
  11107. image: {
  11108. source: "./media/characters/colin-t/front.svg",
  11109. extra: 1272 / 1193,
  11110. bottom: 0.07
  11111. }
  11112. },
  11113. },
  11114. [
  11115. {
  11116. name: "Micro",
  11117. height: math.unit(0.571, "meters")
  11118. },
  11119. {
  11120. name: "Normal",
  11121. height: math.unit(1.8796, "meters"),
  11122. default: true
  11123. },
  11124. {
  11125. name: "Tall",
  11126. height: math.unit(4, "meters")
  11127. },
  11128. {
  11129. name: "Macro",
  11130. height: math.unit(67.241, "meters")
  11131. },
  11132. {
  11133. name: "Megamacro",
  11134. height: math.unit(371.856, "meters")
  11135. },
  11136. {
  11137. name: "Planetary",
  11138. height: math.unit(12631.5689, "km")
  11139. },
  11140. ]
  11141. ))
  11142. characterMakers.push(() => makeCharacter(
  11143. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11144. {
  11145. front: {
  11146. height: math.unit(1.85, "meters"),
  11147. weight: math.unit(80, "kg"),
  11148. name: "Front",
  11149. image: {
  11150. source: "./media/characters/matvei/front.svg",
  11151. extra: 614 / 594,
  11152. bottom: 0.01
  11153. }
  11154. },
  11155. },
  11156. [
  11157. {
  11158. name: "Normal",
  11159. height: math.unit(1.85, "meters"),
  11160. default: true
  11161. },
  11162. ]
  11163. ))
  11164. characterMakers.push(() => makeCharacter(
  11165. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11166. {
  11167. front: {
  11168. height: math.unit(5 + 9 / 12, "feet"),
  11169. weight: math.unit(70, "lb"),
  11170. name: "Front",
  11171. image: {
  11172. source: "./media/characters/quincy/front.svg",
  11173. extra: 3041 / 2751
  11174. }
  11175. },
  11176. back: {
  11177. height: math.unit(5 + 9 / 12, "feet"),
  11178. weight: math.unit(70, "lb"),
  11179. name: "Back",
  11180. image: {
  11181. source: "./media/characters/quincy/back.svg",
  11182. extra: 3041 / 2751
  11183. }
  11184. },
  11185. flying: {
  11186. height: math.unit(5 + 4 / 12, "feet"),
  11187. weight: math.unit(70, "lb"),
  11188. name: "Flying",
  11189. image: {
  11190. source: "./media/characters/quincy/flying.svg",
  11191. extra: 1044 / 930
  11192. }
  11193. },
  11194. },
  11195. [
  11196. {
  11197. name: "Micro",
  11198. height: math.unit(3, "cm")
  11199. },
  11200. {
  11201. name: "Normal",
  11202. height: math.unit(5 + 9 / 12, "feet")
  11203. },
  11204. {
  11205. name: "Macro",
  11206. height: math.unit(200, "meters"),
  11207. default: true
  11208. },
  11209. {
  11210. name: "Megamacro",
  11211. height: math.unit(1000, "meters")
  11212. },
  11213. ]
  11214. ))
  11215. characterMakers.push(() => makeCharacter(
  11216. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11217. {
  11218. front: {
  11219. height: math.unit(4 + 7 / 12, "feet"),
  11220. weight: math.unit(50, "lb"),
  11221. name: "Front",
  11222. image: {
  11223. source: "./media/characters/vanrel/front.svg",
  11224. extra: 1,
  11225. bottom: 0.02
  11226. }
  11227. },
  11228. frontAlt: {
  11229. height: math.unit(4 + 7 / 12, "feet"),
  11230. weight: math.unit(50, "lb"),
  11231. name: "Front-alt",
  11232. image: {
  11233. source: "./media/characters/vanrel/front-alt.svg",
  11234. extra: 1,
  11235. bottom: 15/1511
  11236. }
  11237. },
  11238. elemental: {
  11239. height: math.unit(3, "feet"),
  11240. weight: math.unit(50, "lb"),
  11241. name: "Elemental",
  11242. image: {
  11243. source: "./media/characters/vanrel/elemental.svg",
  11244. extra: 192.3 / 162.8,
  11245. bottom: 1.79 / 194.17
  11246. }
  11247. },
  11248. side: {
  11249. height: math.unit(4 + 7 / 12, "feet"),
  11250. weight: math.unit(50, "lb"),
  11251. name: "Side",
  11252. image: {
  11253. source: "./media/characters/vanrel/side.svg",
  11254. extra: 1,
  11255. bottom: 0.025
  11256. }
  11257. },
  11258. tome: {
  11259. height: math.unit(1.35, "feet"),
  11260. weight: math.unit(10, "lb"),
  11261. name: "Vanrel's Tome",
  11262. rename: true,
  11263. image: {
  11264. source: "./media/characters/vanrel/tome.svg"
  11265. }
  11266. },
  11267. beans: {
  11268. height: math.unit(0.89, "feet"),
  11269. name: "Beans",
  11270. image: {
  11271. source: "./media/characters/vanrel/beans.svg"
  11272. }
  11273. },
  11274. },
  11275. [
  11276. {
  11277. name: "Normal",
  11278. height: math.unit(4 + 7 / 12, "feet"),
  11279. default: true
  11280. },
  11281. ]
  11282. ))
  11283. characterMakers.push(() => makeCharacter(
  11284. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11285. {
  11286. front: {
  11287. height: math.unit(7 + 5 / 12, "feet"),
  11288. weight: math.unit(150, "lb"),
  11289. name: "Front",
  11290. image: {
  11291. source: "./media/characters/kuiper-vanrel/front.svg",
  11292. extra: 1118 / 1068,
  11293. bottom: 0.09
  11294. }
  11295. },
  11296. foot: {
  11297. height: math.unit(0.55, "meters"),
  11298. name: "Foot",
  11299. image: {
  11300. source: "./media/characters/kuiper-vanrel/foot.svg",
  11301. }
  11302. },
  11303. battle: {
  11304. height: math.unit(6.824, "feet"),
  11305. weight: math.unit(150, "lb"),
  11306. name: "Battle",
  11307. image: {
  11308. source: "./media/characters/kuiper-vanrel/battle.svg",
  11309. extra: 1466 / 1327,
  11310. bottom: 29 / 1492.5
  11311. }
  11312. },
  11313. battleAlt: {
  11314. height: math.unit(6.824, "feet"),
  11315. weight: math.unit(150, "lb"),
  11316. name: "Battle (Alt)",
  11317. image: {
  11318. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11319. extra: 2081 / 1965,
  11320. bottom: 40 / 2121
  11321. }
  11322. },
  11323. },
  11324. [
  11325. {
  11326. name: "Normal",
  11327. height: math.unit(7 + 5 / 12, "feet"),
  11328. default: true
  11329. },
  11330. ]
  11331. ))
  11332. characterMakers.push(() => makeCharacter(
  11333. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11334. {
  11335. front: {
  11336. height: math.unit(8 + 5 / 12, "feet"),
  11337. weight: math.unit(150, "lb"),
  11338. name: "Front",
  11339. image: {
  11340. source: "./media/characters/keset-vanrel/front.svg",
  11341. extra: 1150 / 1084,
  11342. bottom: 0.05
  11343. }
  11344. },
  11345. hand: {
  11346. height: math.unit(0.6, "meters"),
  11347. name: "Hand",
  11348. image: {
  11349. source: "./media/characters/keset-vanrel/hand.svg"
  11350. }
  11351. },
  11352. foot: {
  11353. height: math.unit(0.94978, "meters"),
  11354. name: "Foot",
  11355. image: {
  11356. source: "./media/characters/keset-vanrel/foot.svg"
  11357. }
  11358. },
  11359. battle: {
  11360. height: math.unit(7.408, "feet"),
  11361. weight: math.unit(150, "lb"),
  11362. name: "Battle",
  11363. image: {
  11364. source: "./media/characters/keset-vanrel/battle.svg",
  11365. extra: 1890 / 1386,
  11366. bottom: 73.28 / 1970
  11367. }
  11368. },
  11369. },
  11370. [
  11371. {
  11372. name: "Normal",
  11373. height: math.unit(8 + 5 / 12, "feet"),
  11374. default: true
  11375. },
  11376. ]
  11377. ))
  11378. characterMakers.push(() => makeCharacter(
  11379. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11380. {
  11381. front: {
  11382. height: math.unit(6, "feet"),
  11383. weight: math.unit(150, "lb"),
  11384. name: "Front",
  11385. image: {
  11386. source: "./media/characters/neos/front.svg",
  11387. extra: 1696 / 992,
  11388. bottom: 0.14
  11389. }
  11390. },
  11391. },
  11392. [
  11393. {
  11394. name: "Normal",
  11395. height: math.unit(54, "cm"),
  11396. default: true
  11397. },
  11398. {
  11399. name: "Macro",
  11400. height: math.unit(100, "m")
  11401. },
  11402. {
  11403. name: "Megamacro",
  11404. height: math.unit(10, "km")
  11405. },
  11406. {
  11407. name: "Megamacro+",
  11408. height: math.unit(100, "km")
  11409. },
  11410. {
  11411. name: "Gigamacro",
  11412. height: math.unit(100, "Mm")
  11413. },
  11414. {
  11415. name: "Teramacro",
  11416. height: math.unit(100, "Gm")
  11417. },
  11418. {
  11419. name: "Examacro",
  11420. height: math.unit(100, "Em")
  11421. },
  11422. {
  11423. name: "Godly",
  11424. height: math.unit(10000, "Ym")
  11425. },
  11426. {
  11427. name: "Beyond Godly",
  11428. height: math.unit(25, "multiverses")
  11429. },
  11430. ]
  11431. ))
  11432. characterMakers.push(() => makeCharacter(
  11433. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11434. {
  11435. feminine: {
  11436. height: math.unit(5, "feet"),
  11437. weight: math.unit(100, "lb"),
  11438. name: "Feminine",
  11439. image: {
  11440. source: "./media/characters/sammy-mouse/feminine.svg",
  11441. extra: 2526 / 2425,
  11442. bottom: 0.123
  11443. }
  11444. },
  11445. masculine: {
  11446. height: math.unit(5, "feet"),
  11447. weight: math.unit(100, "lb"),
  11448. name: "Masculine",
  11449. image: {
  11450. source: "./media/characters/sammy-mouse/masculine.svg",
  11451. extra: 2526 / 2425,
  11452. bottom: 0.123
  11453. }
  11454. },
  11455. },
  11456. [
  11457. {
  11458. name: "Micro",
  11459. height: math.unit(5, "inches")
  11460. },
  11461. {
  11462. name: "Normal",
  11463. height: math.unit(5, "feet"),
  11464. default: true
  11465. },
  11466. {
  11467. name: "Macro",
  11468. height: math.unit(60, "feet")
  11469. },
  11470. ]
  11471. ))
  11472. characterMakers.push(() => makeCharacter(
  11473. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11474. {
  11475. front: {
  11476. height: math.unit(4, "feet"),
  11477. weight: math.unit(50, "lb"),
  11478. name: "Front",
  11479. image: {
  11480. source: "./media/characters/kole/front.svg",
  11481. extra: 1423 / 1303,
  11482. bottom: 0.025
  11483. }
  11484. },
  11485. back: {
  11486. height: math.unit(4, "feet"),
  11487. weight: math.unit(50, "lb"),
  11488. name: "Back",
  11489. image: {
  11490. source: "./media/characters/kole/back.svg",
  11491. extra: 1426 / 1280,
  11492. bottom: 0.02
  11493. }
  11494. },
  11495. },
  11496. [
  11497. {
  11498. name: "Normal",
  11499. height: math.unit(4, "feet"),
  11500. default: true
  11501. },
  11502. ]
  11503. ))
  11504. characterMakers.push(() => makeCharacter(
  11505. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11506. {
  11507. front: {
  11508. height: math.unit(2 + 6 / 12, "feet"),
  11509. weight: math.unit(20, "lb"),
  11510. name: "Front",
  11511. image: {
  11512. source: "./media/characters/rufran/front.svg",
  11513. extra: 2041 / 1839,
  11514. bottom: 0.055
  11515. }
  11516. },
  11517. back: {
  11518. height: math.unit(2 + 6 / 12, "feet"),
  11519. weight: math.unit(20, "lb"),
  11520. name: "Back",
  11521. image: {
  11522. source: "./media/characters/rufran/back.svg",
  11523. extra: 2054 / 1839,
  11524. bottom: 0.01
  11525. }
  11526. },
  11527. hand: {
  11528. height: math.unit(0.2166, "meters"),
  11529. name: "Hand",
  11530. image: {
  11531. source: "./media/characters/rufran/hand.svg"
  11532. }
  11533. },
  11534. foot: {
  11535. height: math.unit(0.185, "meters"),
  11536. name: "Foot",
  11537. image: {
  11538. source: "./media/characters/rufran/foot.svg"
  11539. }
  11540. },
  11541. },
  11542. [
  11543. {
  11544. name: "Micro",
  11545. height: math.unit(1, "inch")
  11546. },
  11547. {
  11548. name: "Normal",
  11549. height: math.unit(2 + 6 / 12, "feet"),
  11550. default: true
  11551. },
  11552. {
  11553. name: "Big",
  11554. height: math.unit(60, "feet")
  11555. },
  11556. {
  11557. name: "Macro",
  11558. height: math.unit(325, "feet")
  11559. },
  11560. ]
  11561. ))
  11562. characterMakers.push(() => makeCharacter(
  11563. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11564. {
  11565. front: {
  11566. height: math.unit(0.3, "meters"),
  11567. weight: math.unit(3.5, "kg"),
  11568. name: "Front",
  11569. image: {
  11570. source: "./media/characters/chip/front.svg",
  11571. extra: 748 / 674
  11572. }
  11573. },
  11574. },
  11575. [
  11576. {
  11577. name: "Micro",
  11578. height: math.unit(1, "inch"),
  11579. default: true
  11580. },
  11581. ]
  11582. ))
  11583. characterMakers.push(() => makeCharacter(
  11584. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11585. {
  11586. side: {
  11587. height: math.unit(2.3, "meters"),
  11588. weight: math.unit(3500, "lb"),
  11589. name: "Side",
  11590. image: {
  11591. source: "./media/characters/torvid/side.svg",
  11592. extra: 1972 / 722,
  11593. bottom: 0.035
  11594. }
  11595. },
  11596. },
  11597. [
  11598. {
  11599. name: "Normal",
  11600. height: math.unit(2.3, "meters"),
  11601. default: true
  11602. },
  11603. ]
  11604. ))
  11605. characterMakers.push(() => makeCharacter(
  11606. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11607. {
  11608. front: {
  11609. height: math.unit(2, "meters"),
  11610. weight: math.unit(150.5, "kg"),
  11611. name: "Front",
  11612. image: {
  11613. source: "./media/characters/susan/front.svg",
  11614. extra: 693 / 635,
  11615. bottom: 0.05
  11616. }
  11617. },
  11618. },
  11619. [
  11620. {
  11621. name: "Megamacro",
  11622. height: math.unit(505, "miles"),
  11623. default: true
  11624. },
  11625. ]
  11626. ))
  11627. characterMakers.push(() => makeCharacter(
  11628. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11629. {
  11630. front: {
  11631. height: math.unit(6, "feet"),
  11632. weight: math.unit(150, "lb"),
  11633. name: "Front",
  11634. image: {
  11635. source: "./media/characters/raindrops/front.svg",
  11636. extra: 2655 / 2461,
  11637. bottom: 49 / 2705
  11638. }
  11639. },
  11640. back: {
  11641. height: math.unit(6, "feet"),
  11642. weight: math.unit(150, "lb"),
  11643. name: "Back",
  11644. image: {
  11645. source: "./media/characters/raindrops/back.svg",
  11646. extra: 2574 / 2400,
  11647. bottom: 65 / 2634
  11648. }
  11649. },
  11650. },
  11651. [
  11652. {
  11653. name: "Micro",
  11654. height: math.unit(6, "inches")
  11655. },
  11656. {
  11657. name: "Normal",
  11658. height: math.unit(6 + 2 / 12, "feet")
  11659. },
  11660. {
  11661. name: "Macro",
  11662. height: math.unit(131, "feet"),
  11663. default: true
  11664. },
  11665. {
  11666. name: "Megamacro",
  11667. height: math.unit(15, "miles")
  11668. },
  11669. {
  11670. name: "Gigamacro",
  11671. height: math.unit(4000, "miles")
  11672. },
  11673. {
  11674. name: "Teramacro",
  11675. height: math.unit(315000, "miles")
  11676. },
  11677. ]
  11678. ))
  11679. characterMakers.push(() => makeCharacter(
  11680. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11681. {
  11682. front: {
  11683. height: math.unit(2.794, "meters"),
  11684. weight: math.unit(325, "kg"),
  11685. name: "Front",
  11686. image: {
  11687. source: "./media/characters/tezwa/front.svg",
  11688. extra: 2083 / 1906,
  11689. bottom: 0.031
  11690. }
  11691. },
  11692. foot: {
  11693. height: math.unit(0.687, "meters"),
  11694. name: "Foot",
  11695. image: {
  11696. source: "./media/characters/tezwa/foot.svg"
  11697. }
  11698. },
  11699. },
  11700. [
  11701. {
  11702. name: "Normal",
  11703. height: math.unit(9 + 2 / 12, "feet"),
  11704. default: true
  11705. },
  11706. ]
  11707. ))
  11708. characterMakers.push(() => makeCharacter(
  11709. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11710. {
  11711. front: {
  11712. height: math.unit(58, "feet"),
  11713. weight: math.unit(89000, "lb"),
  11714. name: "Front",
  11715. image: {
  11716. source: "./media/characters/typhus/front.svg",
  11717. extra: 816 / 800,
  11718. bottom: 0.065
  11719. }
  11720. },
  11721. },
  11722. [
  11723. {
  11724. name: "Macro",
  11725. height: math.unit(58, "feet"),
  11726. default: true
  11727. },
  11728. ]
  11729. ))
  11730. characterMakers.push(() => makeCharacter(
  11731. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11732. {
  11733. front: {
  11734. height: math.unit(12, "feet"),
  11735. weight: math.unit(6, "tonnes"),
  11736. name: "Front",
  11737. image: {
  11738. source: "./media/characters/lyra-von-wulf/front.svg",
  11739. extra: 1,
  11740. bottom: 0.10
  11741. }
  11742. },
  11743. frontMecha: {
  11744. height: math.unit(12, "feet"),
  11745. weight: math.unit(12, "tonnes"),
  11746. name: "Front (Mecha)",
  11747. image: {
  11748. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11749. extra: 1,
  11750. bottom: 0.042
  11751. }
  11752. },
  11753. maw: {
  11754. height: math.unit(2.2, "feet"),
  11755. name: "Maw",
  11756. image: {
  11757. source: "./media/characters/lyra-von-wulf/maw.svg"
  11758. }
  11759. },
  11760. },
  11761. [
  11762. {
  11763. name: "Normal",
  11764. height: math.unit(12, "feet"),
  11765. default: true
  11766. },
  11767. {
  11768. name: "Classic",
  11769. height: math.unit(50, "feet")
  11770. },
  11771. {
  11772. name: "Macro",
  11773. height: math.unit(500, "feet")
  11774. },
  11775. {
  11776. name: "Megamacro",
  11777. height: math.unit(1, "mile")
  11778. },
  11779. {
  11780. name: "Gigamacro",
  11781. height: math.unit(400, "miles")
  11782. },
  11783. {
  11784. name: "Teramacro",
  11785. height: math.unit(22000, "miles")
  11786. },
  11787. {
  11788. name: "Solarmacro",
  11789. height: math.unit(8600000, "miles")
  11790. },
  11791. {
  11792. name: "Galactic",
  11793. height: math.unit(1057000, "lightyears")
  11794. },
  11795. ]
  11796. ))
  11797. characterMakers.push(() => makeCharacter(
  11798. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  11799. {
  11800. front: {
  11801. height: math.unit(6 + 10 / 12, "feet"),
  11802. weight: math.unit(150, "lb"),
  11803. name: "Front",
  11804. image: {
  11805. source: "./media/characters/dixon/front.svg",
  11806. extra: 3361 / 3209,
  11807. bottom: 0.01
  11808. }
  11809. },
  11810. },
  11811. [
  11812. {
  11813. name: "Normal",
  11814. height: math.unit(6 + 10 / 12, "feet"),
  11815. default: true
  11816. },
  11817. {
  11818. name: "Big",
  11819. height: math.unit(12, "meters")
  11820. },
  11821. {
  11822. name: "Macro",
  11823. height: math.unit(500, "meters")
  11824. },
  11825. {
  11826. name: "Megamacro",
  11827. height: math.unit(2, "km")
  11828. },
  11829. ]
  11830. ))
  11831. characterMakers.push(() => makeCharacter(
  11832. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  11833. {
  11834. front: {
  11835. height: math.unit(185, "cm"),
  11836. weight: math.unit(68, "kg"),
  11837. name: "Front",
  11838. image: {
  11839. source: "./media/characters/kauko/front.svg",
  11840. extra: 1455 / 1421,
  11841. bottom: 0.03
  11842. }
  11843. },
  11844. back: {
  11845. height: math.unit(185, "cm"),
  11846. weight: math.unit(68, "kg"),
  11847. name: "Back",
  11848. image: {
  11849. source: "./media/characters/kauko/back.svg",
  11850. extra: 1455 / 1421,
  11851. bottom: 0.004
  11852. }
  11853. },
  11854. },
  11855. [
  11856. {
  11857. name: "Normal",
  11858. height: math.unit(185, "cm"),
  11859. default: true
  11860. },
  11861. ]
  11862. ))
  11863. characterMakers.push(() => makeCharacter(
  11864. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  11865. {
  11866. front: {
  11867. height: math.unit(6, "feet"),
  11868. weight: math.unit(150, "kg"),
  11869. name: "Front",
  11870. image: {
  11871. source: "./media/characters/varg/front.svg",
  11872. extra: 1108 / 1018,
  11873. bottom: 0.0375
  11874. }
  11875. },
  11876. },
  11877. [
  11878. {
  11879. name: "Normal",
  11880. height: math.unit(5, "meters")
  11881. },
  11882. {
  11883. name: "Macro",
  11884. height: math.unit(200, "meters")
  11885. },
  11886. {
  11887. name: "Megamacro",
  11888. height: math.unit(20, "kilometers")
  11889. },
  11890. {
  11891. name: "True Size",
  11892. height: math.unit(211, "km"),
  11893. default: true
  11894. },
  11895. {
  11896. name: "Gigamacro",
  11897. height: math.unit(1000, "km")
  11898. },
  11899. {
  11900. name: "Gigamacro+",
  11901. height: math.unit(8000, "km")
  11902. },
  11903. {
  11904. name: "Teramacro",
  11905. height: math.unit(1000000, "km")
  11906. },
  11907. ]
  11908. ))
  11909. characterMakers.push(() => makeCharacter(
  11910. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  11911. {
  11912. front: {
  11913. height: math.unit(7 + 7 / 12, "feet"),
  11914. weight: math.unit(267, "lb"),
  11915. name: "Front",
  11916. image: {
  11917. source: "./media/characters/dayza/front.svg",
  11918. extra: 1262 / 1200,
  11919. bottom: 0.035
  11920. }
  11921. },
  11922. side: {
  11923. height: math.unit(7 + 7 / 12, "feet"),
  11924. weight: math.unit(267, "lb"),
  11925. name: "Side",
  11926. image: {
  11927. source: "./media/characters/dayza/side.svg",
  11928. extra: 1295 / 1245,
  11929. bottom: 0.05
  11930. }
  11931. },
  11932. back: {
  11933. height: math.unit(7 + 7 / 12, "feet"),
  11934. weight: math.unit(267, "lb"),
  11935. name: "Back",
  11936. image: {
  11937. source: "./media/characters/dayza/back.svg",
  11938. extra: 1241 / 1170
  11939. }
  11940. },
  11941. },
  11942. [
  11943. {
  11944. name: "Normal",
  11945. height: math.unit(7 + 7 / 12, "feet"),
  11946. default: true
  11947. },
  11948. {
  11949. name: "Macro",
  11950. height: math.unit(155, "feet")
  11951. },
  11952. ]
  11953. ))
  11954. characterMakers.push(() => makeCharacter(
  11955. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  11956. {
  11957. front: {
  11958. height: math.unit(6 + 5 / 12, "feet"),
  11959. weight: math.unit(160, "lb"),
  11960. name: "Front",
  11961. image: {
  11962. source: "./media/characters/xanthos/front.svg",
  11963. extra: 1,
  11964. bottom: 0.04
  11965. }
  11966. },
  11967. back: {
  11968. height: math.unit(6 + 5 / 12, "feet"),
  11969. weight: math.unit(160, "lb"),
  11970. name: "Back",
  11971. image: {
  11972. source: "./media/characters/xanthos/back.svg",
  11973. extra: 1,
  11974. bottom: 0.03
  11975. }
  11976. },
  11977. hand: {
  11978. height: math.unit(0.928, "feet"),
  11979. name: "Hand",
  11980. image: {
  11981. source: "./media/characters/xanthos/hand.svg"
  11982. }
  11983. },
  11984. foot: {
  11985. height: math.unit(1.286, "feet"),
  11986. name: "Foot",
  11987. image: {
  11988. source: "./media/characters/xanthos/foot.svg"
  11989. }
  11990. },
  11991. },
  11992. [
  11993. {
  11994. name: "Normal",
  11995. height: math.unit(6 + 5 / 12, "feet"),
  11996. default: true
  11997. },
  11998. {
  11999. name: "Normal+",
  12000. height: math.unit(6, "meters")
  12001. },
  12002. {
  12003. name: "Macro",
  12004. height: math.unit(40, "feet")
  12005. },
  12006. {
  12007. name: "Macro+",
  12008. height: math.unit(200, "meters")
  12009. },
  12010. {
  12011. name: "Megamacro",
  12012. height: math.unit(20, "km")
  12013. },
  12014. {
  12015. name: "Megamacro+",
  12016. height: math.unit(100, "km")
  12017. },
  12018. ]
  12019. ))
  12020. characterMakers.push(() => makeCharacter(
  12021. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12022. {
  12023. front: {
  12024. height: math.unit(6 + 3 / 12, "feet"),
  12025. weight: math.unit(215, "lb"),
  12026. name: "Front",
  12027. image: {
  12028. source: "./media/characters/grynn/front.svg",
  12029. extra: 4627 / 4209,
  12030. bottom: 0.047
  12031. }
  12032. },
  12033. },
  12034. [
  12035. {
  12036. name: "Micro",
  12037. height: math.unit(6, "inches")
  12038. },
  12039. {
  12040. name: "Normal",
  12041. height: math.unit(6 + 3 / 12, "feet"),
  12042. default: true
  12043. },
  12044. {
  12045. name: "Big",
  12046. height: math.unit(104, "feet")
  12047. },
  12048. {
  12049. name: "Macro",
  12050. height: math.unit(944, "feet")
  12051. },
  12052. {
  12053. name: "Macro+",
  12054. height: math.unit(9480, "feet")
  12055. },
  12056. {
  12057. name: "Megamacro",
  12058. height: math.unit(78752, "feet")
  12059. },
  12060. {
  12061. name: "Megamacro+",
  12062. height: math.unit(630128, "feet")
  12063. },
  12064. {
  12065. name: "Megamacro++",
  12066. height: math.unit(3150695, "feet")
  12067. },
  12068. ]
  12069. ))
  12070. characterMakers.push(() => makeCharacter(
  12071. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12072. {
  12073. front: {
  12074. height: math.unit(7 + 5 / 12, "feet"),
  12075. weight: math.unit(450, "lb"),
  12076. name: "Front",
  12077. image: {
  12078. source: "./media/characters/mocha-aura/front.svg",
  12079. extra: 1907 / 1817,
  12080. bottom: 0.04
  12081. }
  12082. },
  12083. back: {
  12084. height: math.unit(7 + 5 / 12, "feet"),
  12085. weight: math.unit(450, "lb"),
  12086. name: "Back",
  12087. image: {
  12088. source: "./media/characters/mocha-aura/back.svg",
  12089. extra: 1900 / 1825,
  12090. bottom: 0.045
  12091. }
  12092. },
  12093. },
  12094. [
  12095. {
  12096. name: "Nano",
  12097. height: math.unit(1, "nm")
  12098. },
  12099. {
  12100. name: "Megamicro",
  12101. height: math.unit(1, "mm")
  12102. },
  12103. {
  12104. name: "Micro",
  12105. height: math.unit(3, "inches")
  12106. },
  12107. {
  12108. name: "Normal",
  12109. height: math.unit(7 + 5 / 12, "feet"),
  12110. default: true
  12111. },
  12112. {
  12113. name: "Macro",
  12114. height: math.unit(30, "feet")
  12115. },
  12116. {
  12117. name: "Megamacro",
  12118. height: math.unit(3500, "feet")
  12119. },
  12120. {
  12121. name: "Teramacro",
  12122. height: math.unit(500000, "miles")
  12123. },
  12124. {
  12125. name: "Petamacro",
  12126. height: math.unit(50000000000000000, "parsecs")
  12127. },
  12128. ]
  12129. ))
  12130. characterMakers.push(() => makeCharacter(
  12131. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12132. {
  12133. front: {
  12134. height: math.unit(6, "feet"),
  12135. weight: math.unit(150, "lb"),
  12136. name: "Front",
  12137. image: {
  12138. source: "./media/characters/ilisha-devya/front.svg",
  12139. extra: 1,
  12140. bottom: 0.175
  12141. }
  12142. },
  12143. back: {
  12144. height: math.unit(6, "feet"),
  12145. weight: math.unit(150, "lb"),
  12146. name: "Back",
  12147. image: {
  12148. source: "./media/characters/ilisha-devya/back.svg",
  12149. extra: 1,
  12150. bottom: 0.015
  12151. }
  12152. },
  12153. },
  12154. [
  12155. {
  12156. name: "Macro",
  12157. height: math.unit(500, "feet"),
  12158. default: true
  12159. },
  12160. {
  12161. name: "Megamacro",
  12162. height: math.unit(10, "miles")
  12163. },
  12164. {
  12165. name: "Gigamacro",
  12166. height: math.unit(100000, "miles")
  12167. },
  12168. {
  12169. name: "Examacro",
  12170. height: math.unit(1e9, "lightyears")
  12171. },
  12172. {
  12173. name: "Omniversal",
  12174. height: math.unit(1e33, "lightyears")
  12175. },
  12176. {
  12177. name: "Beyond Infinite",
  12178. height: math.unit(1e100, "lightyears")
  12179. },
  12180. ]
  12181. ))
  12182. characterMakers.push(() => makeCharacter(
  12183. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12184. {
  12185. Side: {
  12186. height: math.unit(6, "feet"),
  12187. weight: math.unit(150, "lb"),
  12188. name: "Side",
  12189. image: {
  12190. source: "./media/characters/mira/side.svg",
  12191. extra: 900 / 799,
  12192. bottom: 0.02
  12193. }
  12194. },
  12195. },
  12196. [
  12197. {
  12198. name: "Human Size",
  12199. height: math.unit(6, "feet")
  12200. },
  12201. {
  12202. name: "Macro",
  12203. height: math.unit(100, "feet"),
  12204. default: true
  12205. },
  12206. {
  12207. name: "Megamacro",
  12208. height: math.unit(10, "miles")
  12209. },
  12210. {
  12211. name: "Gigamacro",
  12212. height: math.unit(25000, "miles")
  12213. },
  12214. {
  12215. name: "Teramacro",
  12216. height: math.unit(300, "AU")
  12217. },
  12218. {
  12219. name: "Full Size",
  12220. height: math.unit(4.5e10, "lightyears")
  12221. },
  12222. ]
  12223. ))
  12224. characterMakers.push(() => makeCharacter(
  12225. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12226. {
  12227. front: {
  12228. height: math.unit(6, "feet"),
  12229. weight: math.unit(150, "lb"),
  12230. name: "Front",
  12231. image: {
  12232. source: "./media/characters/holly/front.svg",
  12233. extra: 639 / 606
  12234. }
  12235. },
  12236. back: {
  12237. height: math.unit(6, "feet"),
  12238. weight: math.unit(150, "lb"),
  12239. name: "Back",
  12240. image: {
  12241. source: "./media/characters/holly/back.svg",
  12242. extra: 623 / 598
  12243. }
  12244. },
  12245. frontWorking: {
  12246. height: math.unit(6, "feet"),
  12247. weight: math.unit(150, "lb"),
  12248. name: "Front (Working)",
  12249. image: {
  12250. source: "./media/characters/holly/front-working.svg",
  12251. extra: 607 / 577,
  12252. bottom: 0.048
  12253. }
  12254. },
  12255. },
  12256. [
  12257. {
  12258. name: "Normal",
  12259. height: math.unit(12 + 3 / 12, "feet"),
  12260. default: true
  12261. },
  12262. ]
  12263. ))
  12264. characterMakers.push(() => makeCharacter(
  12265. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12266. {
  12267. front: {
  12268. height: math.unit(6, "feet"),
  12269. weight: math.unit(150, "lb"),
  12270. name: "Front",
  12271. image: {
  12272. source: "./media/characters/porter/front.svg",
  12273. extra: 1,
  12274. bottom: 0.01
  12275. }
  12276. },
  12277. frontRobes: {
  12278. height: math.unit(6, "feet"),
  12279. weight: math.unit(150, "lb"),
  12280. name: "Front (Robes)",
  12281. image: {
  12282. source: "./media/characters/porter/front-robes.svg",
  12283. extra: 1.01,
  12284. bottom: 0.01
  12285. }
  12286. },
  12287. },
  12288. [
  12289. {
  12290. name: "Normal",
  12291. height: math.unit(11 + 9 / 12, "feet"),
  12292. default: true
  12293. },
  12294. ]
  12295. ))
  12296. characterMakers.push(() => makeCharacter(
  12297. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12298. {
  12299. legendary: {
  12300. height: math.unit(6, "feet"),
  12301. weight: math.unit(150, "lb"),
  12302. name: "Legendary",
  12303. image: {
  12304. source: "./media/characters/lucy/legendary.svg",
  12305. extra: 1355 / 1100,
  12306. bottom: 0.045
  12307. }
  12308. },
  12309. },
  12310. [
  12311. {
  12312. name: "Legendary",
  12313. height: math.unit(86882 * 2, "miles"),
  12314. default: true
  12315. },
  12316. ]
  12317. ))
  12318. characterMakers.push(() => makeCharacter(
  12319. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12320. {
  12321. front: {
  12322. height: math.unit(6, "feet"),
  12323. weight: math.unit(150, "lb"),
  12324. name: "Front",
  12325. image: {
  12326. source: "./media/characters/drusilla/front.svg",
  12327. extra: 678 / 635,
  12328. bottom: 0.03
  12329. }
  12330. },
  12331. back: {
  12332. height: math.unit(6, "feet"),
  12333. weight: math.unit(150, "lb"),
  12334. name: "Back",
  12335. image: {
  12336. source: "./media/characters/drusilla/back.svg",
  12337. extra: 678 / 635,
  12338. bottom: 0.005
  12339. }
  12340. },
  12341. },
  12342. [
  12343. {
  12344. name: "Macro",
  12345. height: math.unit(100, "feet")
  12346. },
  12347. {
  12348. name: "Canon Height",
  12349. height: math.unit(2000, "feet"),
  12350. default: true
  12351. },
  12352. ]
  12353. ))
  12354. characterMakers.push(() => makeCharacter(
  12355. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12356. {
  12357. front: {
  12358. height: math.unit(6, "feet"),
  12359. weight: math.unit(180, "lb"),
  12360. name: "Front",
  12361. image: {
  12362. source: "./media/characters/renard-thatch/front.svg",
  12363. extra: 2411 / 2275,
  12364. bottom: 0.01
  12365. }
  12366. },
  12367. frontPosing: {
  12368. height: math.unit(6, "feet"),
  12369. weight: math.unit(180, "lb"),
  12370. name: "Front (Posing)",
  12371. image: {
  12372. source: "./media/characters/renard-thatch/front-posing.svg",
  12373. extra: 2381 / 2261,
  12374. bottom: 0.01
  12375. }
  12376. },
  12377. back: {
  12378. height: math.unit(6, "feet"),
  12379. weight: math.unit(180, "lb"),
  12380. name: "Back",
  12381. image: {
  12382. source: "./media/characters/renard-thatch/back.svg",
  12383. extra: 2428 / 2288
  12384. }
  12385. },
  12386. },
  12387. [
  12388. {
  12389. name: "Micro",
  12390. height: math.unit(3, "inches")
  12391. },
  12392. {
  12393. name: "Default",
  12394. height: math.unit(6, "feet"),
  12395. default: true
  12396. },
  12397. {
  12398. name: "Macro",
  12399. height: math.unit(75, "feet")
  12400. },
  12401. ]
  12402. ))
  12403. characterMakers.push(() => makeCharacter(
  12404. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12405. {
  12406. front: {
  12407. height: math.unit(1450, "feet"),
  12408. weight: math.unit(1.21e6, "tons"),
  12409. name: "Front",
  12410. image: {
  12411. source: "./media/characters/sekvra/front.svg",
  12412. extra: 1,
  12413. bottom: 0.03
  12414. }
  12415. },
  12416. frontClothed: {
  12417. height: math.unit(1450, "feet"),
  12418. weight: math.unit(1.21e6, "tons"),
  12419. name: "Front (Clothed)",
  12420. image: {
  12421. source: "./media/characters/sekvra/front-clothed.svg",
  12422. extra: 1,
  12423. bottom: 0.03
  12424. }
  12425. },
  12426. side: {
  12427. height: math.unit(1450, "feet"),
  12428. weight: math.unit(1.21e6, "tons"),
  12429. name: "Side",
  12430. image: {
  12431. source: "./media/characters/sekvra/side.svg",
  12432. extra: 1,
  12433. bottom: 0.025
  12434. }
  12435. },
  12436. back: {
  12437. height: math.unit(1450, "feet"),
  12438. weight: math.unit(1.21e6, "tons"),
  12439. name: "Back",
  12440. image: {
  12441. source: "./media/characters/sekvra/back.svg",
  12442. extra: 1,
  12443. bottom: 0.005
  12444. }
  12445. },
  12446. },
  12447. [
  12448. {
  12449. name: "Macro",
  12450. height: math.unit(1450, "feet"),
  12451. default: true
  12452. },
  12453. {
  12454. name: "Megamacro",
  12455. height: math.unit(15000, "feet")
  12456. },
  12457. ]
  12458. ))
  12459. characterMakers.push(() => makeCharacter(
  12460. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12461. {
  12462. front: {
  12463. height: math.unit(6, "feet"),
  12464. weight: math.unit(150, "lb"),
  12465. name: "Front",
  12466. image: {
  12467. source: "./media/characters/carmine/front.svg",
  12468. extra: 1,
  12469. bottom: 0.035
  12470. }
  12471. },
  12472. frontArmor: {
  12473. height: math.unit(6, "feet"),
  12474. weight: math.unit(150, "lb"),
  12475. name: "Front (Armor)",
  12476. image: {
  12477. source: "./media/characters/carmine/front-armor.svg",
  12478. extra: 1,
  12479. bottom: 0.035
  12480. }
  12481. },
  12482. },
  12483. [
  12484. {
  12485. name: "Large",
  12486. height: math.unit(1, "mile")
  12487. },
  12488. {
  12489. name: "Huge",
  12490. height: math.unit(40, "miles"),
  12491. default: true
  12492. },
  12493. {
  12494. name: "Colossal",
  12495. height: math.unit(2500, "miles")
  12496. },
  12497. ]
  12498. ))
  12499. characterMakers.push(() => makeCharacter(
  12500. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12501. {
  12502. front: {
  12503. height: math.unit(6, "feet"),
  12504. weight: math.unit(150, "lb"),
  12505. name: "Front",
  12506. image: {
  12507. source: "./media/characters/elyssia/front.svg",
  12508. extra: 2201 / 2035,
  12509. bottom: 0.05
  12510. }
  12511. },
  12512. frontClothed: {
  12513. height: math.unit(6, "feet"),
  12514. weight: math.unit(150, "lb"),
  12515. name: "Front (Clothed)",
  12516. image: {
  12517. source: "./media/characters/elyssia/front-clothed.svg",
  12518. extra: 2201 / 2035,
  12519. bottom: 0.05
  12520. }
  12521. },
  12522. back: {
  12523. height: math.unit(6, "feet"),
  12524. weight: math.unit(150, "lb"),
  12525. name: "Back",
  12526. image: {
  12527. source: "./media/characters/elyssia/back.svg",
  12528. extra: 2201 / 2035,
  12529. bottom: 0.013
  12530. }
  12531. },
  12532. },
  12533. [
  12534. {
  12535. name: "Smaller",
  12536. height: math.unit(150, "feet")
  12537. },
  12538. {
  12539. name: "Standard",
  12540. height: math.unit(1400, "feet"),
  12541. default: true
  12542. },
  12543. {
  12544. name: "Distracted",
  12545. height: math.unit(15000, "feet")
  12546. },
  12547. ]
  12548. ))
  12549. characterMakers.push(() => makeCharacter(
  12550. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12551. {
  12552. front: {
  12553. height: math.unit(7 + 4 / 12, "feet"),
  12554. weight: math.unit(500, "lb"),
  12555. name: "Front",
  12556. image: {
  12557. source: "./media/characters/geno-maxwell/front.svg",
  12558. extra: 2207 / 2040,
  12559. bottom: 0.015
  12560. }
  12561. },
  12562. },
  12563. [
  12564. {
  12565. name: "Micro",
  12566. height: math.unit(3, "inches")
  12567. },
  12568. {
  12569. name: "Normal",
  12570. height: math.unit(7 + 4 / 12, "feet"),
  12571. default: true
  12572. },
  12573. {
  12574. name: "Macro",
  12575. height: math.unit(220, "feet")
  12576. },
  12577. {
  12578. name: "Megamacro",
  12579. height: math.unit(11, "miles")
  12580. },
  12581. ]
  12582. ))
  12583. characterMakers.push(() => makeCharacter(
  12584. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12585. {
  12586. front: {
  12587. height: math.unit(7 + 4 / 12, "feet"),
  12588. weight: math.unit(500, "lb"),
  12589. name: "Front",
  12590. image: {
  12591. source: "./media/characters/regena-maxwell/front.svg",
  12592. extra: 3115 / 2770,
  12593. bottom: 0.02
  12594. }
  12595. },
  12596. },
  12597. [
  12598. {
  12599. name: "Normal",
  12600. height: math.unit(7 + 4 / 12, "feet"),
  12601. default: true
  12602. },
  12603. {
  12604. name: "Macro",
  12605. height: math.unit(220, "feet")
  12606. },
  12607. {
  12608. name: "Megamacro",
  12609. height: math.unit(11, "miles")
  12610. },
  12611. ]
  12612. ))
  12613. characterMakers.push(() => makeCharacter(
  12614. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12615. {
  12616. front: {
  12617. height: math.unit(6, "feet"),
  12618. weight: math.unit(150, "lb"),
  12619. name: "Front",
  12620. image: {
  12621. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12622. extra: 860 / 690,
  12623. bottom: 0.03
  12624. }
  12625. },
  12626. },
  12627. [
  12628. {
  12629. name: "Normal",
  12630. height: math.unit(1.7, "meters"),
  12631. default: true
  12632. },
  12633. ]
  12634. ))
  12635. characterMakers.push(() => makeCharacter(
  12636. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12637. {
  12638. front: {
  12639. height: math.unit(6, "feet"),
  12640. weight: math.unit(150, "lb"),
  12641. name: "Front",
  12642. image: {
  12643. source: "./media/characters/quilly/front.svg",
  12644. extra: 890 / 776
  12645. }
  12646. },
  12647. },
  12648. [
  12649. {
  12650. name: "Gigamacro",
  12651. height: math.unit(404090, "miles"),
  12652. default: true
  12653. },
  12654. ]
  12655. ))
  12656. characterMakers.push(() => makeCharacter(
  12657. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12658. {
  12659. front: {
  12660. height: math.unit(7 + 8 / 12, "feet"),
  12661. weight: math.unit(350, "lb"),
  12662. name: "Front",
  12663. image: {
  12664. source: "./media/characters/tempest/front.svg",
  12665. extra: 1175 / 1086,
  12666. bottom: 0.02
  12667. }
  12668. },
  12669. },
  12670. [
  12671. {
  12672. name: "Normal",
  12673. height: math.unit(7 + 8 / 12, "feet"),
  12674. default: true
  12675. },
  12676. ]
  12677. ))
  12678. characterMakers.push(() => makeCharacter(
  12679. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12680. {
  12681. side: {
  12682. height: math.unit(4 + 5 / 12, "feet"),
  12683. weight: math.unit(80, "lb"),
  12684. name: "Side",
  12685. image: {
  12686. source: "./media/characters/rodger/side.svg",
  12687. extra: 1235 / 1118
  12688. }
  12689. },
  12690. },
  12691. [
  12692. {
  12693. name: "Micro",
  12694. height: math.unit(1, "inch")
  12695. },
  12696. {
  12697. name: "Normal",
  12698. height: math.unit(4 + 5 / 12, "feet"),
  12699. default: true
  12700. },
  12701. {
  12702. name: "Macro",
  12703. height: math.unit(120, "feet")
  12704. },
  12705. ]
  12706. ))
  12707. characterMakers.push(() => makeCharacter(
  12708. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12709. {
  12710. front: {
  12711. height: math.unit(6, "feet"),
  12712. weight: math.unit(150, "lb"),
  12713. name: "Front",
  12714. image: {
  12715. source: "./media/characters/danyel/front.svg",
  12716. extra: 1185 / 1123,
  12717. bottom: 0.05
  12718. }
  12719. },
  12720. },
  12721. [
  12722. {
  12723. name: "Shrunken",
  12724. height: math.unit(0.5, "mm")
  12725. },
  12726. {
  12727. name: "Micro",
  12728. height: math.unit(1, "mm"),
  12729. default: true
  12730. },
  12731. {
  12732. name: "Upsized",
  12733. height: math.unit(5 + 5 / 12, "feet")
  12734. },
  12735. ]
  12736. ))
  12737. characterMakers.push(() => makeCharacter(
  12738. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12739. {
  12740. front: {
  12741. height: math.unit(5 + 6 / 12, "feet"),
  12742. weight: math.unit(200, "lb"),
  12743. name: "Front",
  12744. image: {
  12745. source: "./media/characters/vivian-bijoux/front.svg",
  12746. extra: 1,
  12747. bottom: 0.072
  12748. }
  12749. },
  12750. },
  12751. [
  12752. {
  12753. name: "Normal",
  12754. height: math.unit(5 + 6 / 12, "feet"),
  12755. default: true
  12756. },
  12757. {
  12758. name: "Bad Dream",
  12759. height: math.unit(500, "feet")
  12760. },
  12761. {
  12762. name: "Nightmare",
  12763. height: math.unit(500, "miles")
  12764. },
  12765. ]
  12766. ))
  12767. characterMakers.push(() => makeCharacter(
  12768. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  12769. {
  12770. front: {
  12771. height: math.unit(6 + 1 / 12, "feet"),
  12772. weight: math.unit(260, "lb"),
  12773. name: "Front",
  12774. image: {
  12775. source: "./media/characters/zeta/front.svg",
  12776. extra: 1968 / 1889,
  12777. bottom: 0.06
  12778. }
  12779. },
  12780. back: {
  12781. height: math.unit(6 + 1 / 12, "feet"),
  12782. weight: math.unit(260, "lb"),
  12783. name: "Back",
  12784. image: {
  12785. source: "./media/characters/zeta/back.svg",
  12786. extra: 1944 / 1858,
  12787. bottom: 0.03
  12788. }
  12789. },
  12790. hand: {
  12791. height: math.unit(1.112, "feet"),
  12792. name: "Hand",
  12793. image: {
  12794. source: "./media/characters/zeta/hand.svg"
  12795. }
  12796. },
  12797. foot: {
  12798. height: math.unit(1.48, "feet"),
  12799. name: "Foot",
  12800. image: {
  12801. source: "./media/characters/zeta/foot.svg"
  12802. }
  12803. },
  12804. },
  12805. [
  12806. {
  12807. name: "Micro",
  12808. height: math.unit(6, "inches")
  12809. },
  12810. {
  12811. name: "Normal",
  12812. height: math.unit(6 + 1 / 12, "feet"),
  12813. default: true
  12814. },
  12815. {
  12816. name: "Macro",
  12817. height: math.unit(20, "feet")
  12818. },
  12819. ]
  12820. ))
  12821. characterMakers.push(() => makeCharacter(
  12822. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  12823. {
  12824. front: {
  12825. height: math.unit(6, "feet"),
  12826. weight: math.unit(150, "lb"),
  12827. name: "Front",
  12828. image: {
  12829. source: "./media/characters/jamie-larsen/front.svg",
  12830. extra: 962 / 933,
  12831. bottom: 0.02
  12832. }
  12833. },
  12834. back: {
  12835. height: math.unit(6, "feet"),
  12836. weight: math.unit(150, "lb"),
  12837. name: "Back",
  12838. image: {
  12839. source: "./media/characters/jamie-larsen/back.svg",
  12840. extra: 997 / 946
  12841. }
  12842. },
  12843. },
  12844. [
  12845. {
  12846. name: "Macro",
  12847. height: math.unit(28 + 7 / 12, "feet"),
  12848. default: true
  12849. },
  12850. {
  12851. name: "Macro+",
  12852. height: math.unit(180, "feet")
  12853. },
  12854. {
  12855. name: "Megamacro",
  12856. height: math.unit(10, "miles")
  12857. },
  12858. {
  12859. name: "Gigamacro",
  12860. height: math.unit(200000, "miles")
  12861. },
  12862. ]
  12863. ))
  12864. characterMakers.push(() => makeCharacter(
  12865. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  12866. {
  12867. front: {
  12868. height: math.unit(6, "feet"),
  12869. weight: math.unit(120, "lb"),
  12870. name: "Front",
  12871. image: {
  12872. source: "./media/characters/vance/front.svg",
  12873. extra: 1980 / 1890,
  12874. bottom: 0.09
  12875. }
  12876. },
  12877. back: {
  12878. height: math.unit(6, "feet"),
  12879. weight: math.unit(120, "lb"),
  12880. name: "Back",
  12881. image: {
  12882. source: "./media/characters/vance/back.svg",
  12883. extra: 2081 / 1994,
  12884. bottom: 0.014
  12885. }
  12886. },
  12887. hand: {
  12888. height: math.unit(0.88, "feet"),
  12889. name: "Hand",
  12890. image: {
  12891. source: "./media/characters/vance/hand.svg"
  12892. }
  12893. },
  12894. foot: {
  12895. height: math.unit(0.64, "feet"),
  12896. name: "Foot",
  12897. image: {
  12898. source: "./media/characters/vance/foot.svg"
  12899. }
  12900. },
  12901. },
  12902. [
  12903. {
  12904. name: "Small",
  12905. height: math.unit(90, "feet"),
  12906. default: true
  12907. },
  12908. {
  12909. name: "Macro",
  12910. height: math.unit(100, "meters")
  12911. },
  12912. {
  12913. name: "Megamacro",
  12914. height: math.unit(15, "miles")
  12915. },
  12916. ]
  12917. ))
  12918. characterMakers.push(() => makeCharacter(
  12919. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  12920. {
  12921. front: {
  12922. height: math.unit(6, "feet"),
  12923. weight: math.unit(180, "lb"),
  12924. name: "Front",
  12925. image: {
  12926. source: "./media/characters/xochitl/front.svg",
  12927. extra: 2297 / 2261,
  12928. bottom: 0.065
  12929. }
  12930. },
  12931. back: {
  12932. height: math.unit(6, "feet"),
  12933. weight: math.unit(180, "lb"),
  12934. name: "Back",
  12935. image: {
  12936. source: "./media/characters/xochitl/back.svg",
  12937. extra: 2386 / 2354,
  12938. bottom: 0.01
  12939. }
  12940. },
  12941. foot: {
  12942. height: math.unit(6 / 5 * 1.15, "feet"),
  12943. weight: math.unit(150, "lb"),
  12944. name: "Foot",
  12945. image: {
  12946. source: "./media/characters/xochitl/foot.svg"
  12947. }
  12948. },
  12949. },
  12950. [
  12951. {
  12952. name: "Macro",
  12953. height: math.unit(80, "feet")
  12954. },
  12955. {
  12956. name: "Macro+",
  12957. height: math.unit(400, "feet"),
  12958. default: true
  12959. },
  12960. {
  12961. name: "Gigamacro",
  12962. height: math.unit(80000, "miles")
  12963. },
  12964. {
  12965. name: "Gigamacro+",
  12966. height: math.unit(400000, "miles")
  12967. },
  12968. {
  12969. name: "Teramacro",
  12970. height: math.unit(300, "AU")
  12971. },
  12972. ]
  12973. ))
  12974. characterMakers.push(() => makeCharacter(
  12975. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  12976. {
  12977. front: {
  12978. height: math.unit(6, "feet"),
  12979. weight: math.unit(150, "lb"),
  12980. name: "Front",
  12981. image: {
  12982. source: "./media/characters/vincent/front.svg",
  12983. extra: 1130 / 1080,
  12984. bottom: 0.055
  12985. }
  12986. },
  12987. beak: {
  12988. height: math.unit(6 * 0.1, "feet"),
  12989. name: "Beak",
  12990. image: {
  12991. source: "./media/characters/vincent/beak.svg"
  12992. }
  12993. },
  12994. hand: {
  12995. height: math.unit(6 * 0.85, "feet"),
  12996. weight: math.unit(150, "lb"),
  12997. name: "Hand",
  12998. image: {
  12999. source: "./media/characters/vincent/hand.svg"
  13000. }
  13001. },
  13002. foot: {
  13003. height: math.unit(6 * 0.19, "feet"),
  13004. weight: math.unit(150, "lb"),
  13005. name: "Foot",
  13006. image: {
  13007. source: "./media/characters/vincent/foot.svg"
  13008. }
  13009. },
  13010. },
  13011. [
  13012. {
  13013. name: "Base",
  13014. height: math.unit(6 + 5 / 12, "feet"),
  13015. default: true
  13016. },
  13017. {
  13018. name: "Macro",
  13019. height: math.unit(300, "feet")
  13020. },
  13021. {
  13022. name: "Megamacro",
  13023. height: math.unit(2, "miles")
  13024. },
  13025. {
  13026. name: "Gigamacro",
  13027. height: math.unit(1000, "miles")
  13028. },
  13029. ]
  13030. ))
  13031. characterMakers.push(() => makeCharacter(
  13032. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13033. {
  13034. front: {
  13035. height: math.unit(6 + 2 / 12, "feet"),
  13036. weight: math.unit(265, "lb"),
  13037. name: "Front",
  13038. image: {
  13039. source: "./media/characters/jay/front.svg",
  13040. extra: 1510 / 1430,
  13041. bottom: 0.042
  13042. }
  13043. },
  13044. back: {
  13045. height: math.unit(6 + 2 / 12, "feet"),
  13046. weight: math.unit(265, "lb"),
  13047. name: "Back",
  13048. image: {
  13049. source: "./media/characters/jay/back.svg",
  13050. extra: 1510 / 1430,
  13051. bottom: 0.025
  13052. }
  13053. },
  13054. clothed: {
  13055. height: math.unit(6 + 2 / 12, "feet"),
  13056. weight: math.unit(265, "lb"),
  13057. name: "Front (Clothed)",
  13058. image: {
  13059. source: "./media/characters/jay/clothed.svg",
  13060. extra: 744 / 699,
  13061. bottom: 0.043
  13062. }
  13063. },
  13064. head: {
  13065. height: math.unit(1.772, "feet"),
  13066. name: "Head",
  13067. image: {
  13068. source: "./media/characters/jay/head.svg"
  13069. }
  13070. },
  13071. sizeRay: {
  13072. height: math.unit(1.331, "feet"),
  13073. name: "Size Ray",
  13074. image: {
  13075. source: "./media/characters/jay/size-ray.svg"
  13076. }
  13077. },
  13078. },
  13079. [
  13080. {
  13081. name: "Micro",
  13082. height: math.unit(1, "inch")
  13083. },
  13084. {
  13085. name: "Normal",
  13086. height: math.unit(6 + 2 / 12, "feet"),
  13087. default: true
  13088. },
  13089. {
  13090. name: "Macro",
  13091. height: math.unit(1, "mile")
  13092. },
  13093. {
  13094. name: "Megamacro",
  13095. height: math.unit(100, "miles")
  13096. },
  13097. ]
  13098. ))
  13099. characterMakers.push(() => makeCharacter(
  13100. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13101. {
  13102. front: {
  13103. height: math.unit(2, "meters"),
  13104. weight: math.unit(500, "kg"),
  13105. name: "Front",
  13106. image: {
  13107. source: "./media/characters/coatl/front.svg",
  13108. extra: 3948 / 3500,
  13109. bottom: 0.082
  13110. }
  13111. },
  13112. },
  13113. [
  13114. {
  13115. name: "Normal",
  13116. height: math.unit(4, "meters")
  13117. },
  13118. {
  13119. name: "Macro",
  13120. height: math.unit(100, "meters"),
  13121. default: true
  13122. },
  13123. {
  13124. name: "Macro+",
  13125. height: math.unit(300, "meters")
  13126. },
  13127. {
  13128. name: "Megamacro",
  13129. height: math.unit(3, "gigameters")
  13130. },
  13131. {
  13132. name: "Megamacro+",
  13133. height: math.unit(300, "terameters")
  13134. },
  13135. {
  13136. name: "Megamacro++",
  13137. height: math.unit(3, "lightyears")
  13138. },
  13139. ]
  13140. ))
  13141. characterMakers.push(() => makeCharacter(
  13142. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13143. {
  13144. front: {
  13145. height: math.unit(6, "feet"),
  13146. weight: math.unit(50, "kg"),
  13147. name: "front",
  13148. image: {
  13149. source: "./media/characters/shiroryu/front.svg",
  13150. extra: 1990 / 1935
  13151. }
  13152. },
  13153. },
  13154. [
  13155. {
  13156. name: "Mortal Mingling",
  13157. height: math.unit(3, "meters")
  13158. },
  13159. {
  13160. name: "Kaiju-ish",
  13161. height: math.unit(250, "meters")
  13162. },
  13163. {
  13164. name: "Somewhat Godly",
  13165. height: math.unit(400, "km"),
  13166. default: true
  13167. },
  13168. {
  13169. name: "Planetary",
  13170. height: math.unit(300, "megameters")
  13171. },
  13172. {
  13173. name: "Galaxy-dwarfing",
  13174. height: math.unit(450, "kiloparsecs")
  13175. },
  13176. {
  13177. name: "Universe Eater",
  13178. height: math.unit(150, "gigaparsecs")
  13179. },
  13180. {
  13181. name: "Almost Immeasurable",
  13182. height: math.unit(1.3e266, "yottaparsecs")
  13183. },
  13184. ]
  13185. ))
  13186. characterMakers.push(() => makeCharacter(
  13187. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13188. {
  13189. front: {
  13190. height: math.unit(6, "feet"),
  13191. weight: math.unit(150, "lb"),
  13192. name: "Front",
  13193. image: {
  13194. source: "./media/characters/umeko/front.svg",
  13195. extra: 1,
  13196. bottom: 0.019
  13197. }
  13198. },
  13199. frontArmored: {
  13200. height: math.unit(6, "feet"),
  13201. weight: math.unit(150, "lb"),
  13202. name: "Front (Armored)",
  13203. image: {
  13204. source: "./media/characters/umeko/front-armored.svg",
  13205. extra: 1,
  13206. bottom: 0.021
  13207. }
  13208. },
  13209. },
  13210. [
  13211. {
  13212. name: "Macro",
  13213. height: math.unit(220, "feet"),
  13214. default: true
  13215. },
  13216. {
  13217. name: "Guardian Dragon",
  13218. height: math.unit(50, "miles")
  13219. },
  13220. {
  13221. name: "Cosmic",
  13222. height: math.unit(800000, "miles")
  13223. },
  13224. ]
  13225. ))
  13226. characterMakers.push(() => makeCharacter(
  13227. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13228. {
  13229. front: {
  13230. height: math.unit(6, "feet"),
  13231. weight: math.unit(150, "lb"),
  13232. name: "Front",
  13233. image: {
  13234. source: "./media/characters/cassidy/front.svg",
  13235. extra: 1,
  13236. bottom: 0.043
  13237. }
  13238. },
  13239. },
  13240. [
  13241. {
  13242. name: "Canon Height",
  13243. height: math.unit(120, "feet"),
  13244. default: true
  13245. },
  13246. {
  13247. name: "Macro+",
  13248. height: math.unit(400, "feet")
  13249. },
  13250. {
  13251. name: "Macro++",
  13252. height: math.unit(4000, "feet")
  13253. },
  13254. {
  13255. name: "Megamacro",
  13256. height: math.unit(3, "miles")
  13257. },
  13258. ]
  13259. ))
  13260. characterMakers.push(() => makeCharacter(
  13261. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13262. {
  13263. front: {
  13264. height: math.unit(6, "feet"),
  13265. weight: math.unit(150, "lb"),
  13266. name: "Front",
  13267. image: {
  13268. source: "./media/characters/isaac/front.svg",
  13269. extra: 896 / 815,
  13270. bottom: 0.11
  13271. }
  13272. },
  13273. },
  13274. [
  13275. {
  13276. name: "Human Size",
  13277. height: math.unit(8, "feet"),
  13278. default: true
  13279. },
  13280. {
  13281. name: "Macro",
  13282. height: math.unit(400, "feet")
  13283. },
  13284. {
  13285. name: "Megamacro",
  13286. height: math.unit(50, "miles")
  13287. },
  13288. {
  13289. name: "Canon Height",
  13290. height: math.unit(200, "AU")
  13291. },
  13292. ]
  13293. ))
  13294. characterMakers.push(() => makeCharacter(
  13295. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13296. {
  13297. front: {
  13298. height: math.unit(6, "feet"),
  13299. weight: math.unit(72, "kg"),
  13300. name: "Front",
  13301. image: {
  13302. source: "./media/characters/sleekit/front.svg",
  13303. extra: 4693 / 4487,
  13304. bottom: 0.012
  13305. }
  13306. },
  13307. },
  13308. [
  13309. {
  13310. name: "Minimum Height",
  13311. height: math.unit(10, "meters")
  13312. },
  13313. {
  13314. name: "Smaller",
  13315. height: math.unit(25, "meters")
  13316. },
  13317. {
  13318. name: "Larger",
  13319. height: math.unit(38, "meters"),
  13320. default: true
  13321. },
  13322. {
  13323. name: "Maximum height",
  13324. height: math.unit(100, "meters")
  13325. },
  13326. ]
  13327. ))
  13328. characterMakers.push(() => makeCharacter(
  13329. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13330. {
  13331. front: {
  13332. height: math.unit(6, "feet"),
  13333. weight: math.unit(150, "lb"),
  13334. name: "Front",
  13335. image: {
  13336. source: "./media/characters/nillia/front.svg",
  13337. extra: 2195 / 2037,
  13338. bottom: 0.005
  13339. }
  13340. },
  13341. back: {
  13342. height: math.unit(6, "feet"),
  13343. weight: math.unit(150, "lb"),
  13344. name: "Back",
  13345. image: {
  13346. source: "./media/characters/nillia/back.svg",
  13347. extra: 2195 / 2037,
  13348. bottom: 0.005
  13349. }
  13350. },
  13351. },
  13352. [
  13353. {
  13354. name: "Canon Height",
  13355. height: math.unit(489, "feet"),
  13356. default: true
  13357. }
  13358. ]
  13359. ))
  13360. characterMakers.push(() => makeCharacter(
  13361. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13362. {
  13363. front: {
  13364. height: math.unit(6, "feet"),
  13365. weight: math.unit(150, "lb"),
  13366. name: "Front",
  13367. image: {
  13368. source: "./media/characters/mesmyriza/front.svg",
  13369. extra: 2067 / 1784,
  13370. bottom: 0.035
  13371. }
  13372. },
  13373. foot: {
  13374. height: math.unit(6 / (250 / 35), "feet"),
  13375. name: "Foot",
  13376. image: {
  13377. source: "./media/characters/mesmyriza/foot.svg"
  13378. }
  13379. },
  13380. },
  13381. [
  13382. {
  13383. name: "Macro",
  13384. height: math.unit(457, "meters"),
  13385. default: true
  13386. },
  13387. {
  13388. name: "Megamacro",
  13389. height: math.unit(8, "megameters")
  13390. },
  13391. ]
  13392. ))
  13393. characterMakers.push(() => makeCharacter(
  13394. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13395. {
  13396. front: {
  13397. height: math.unit(6, "feet"),
  13398. weight: math.unit(250, "lb"),
  13399. name: "Front",
  13400. image: {
  13401. source: "./media/characters/saudade/front.svg",
  13402. extra: 1172 / 1139,
  13403. bottom: 0.035
  13404. }
  13405. },
  13406. },
  13407. [
  13408. {
  13409. name: "Micro",
  13410. height: math.unit(3, "inches")
  13411. },
  13412. {
  13413. name: "Normal",
  13414. height: math.unit(6, "feet"),
  13415. default: true
  13416. },
  13417. {
  13418. name: "Macro",
  13419. height: math.unit(50, "feet")
  13420. },
  13421. {
  13422. name: "Megamacro",
  13423. height: math.unit(2800, "feet")
  13424. },
  13425. ]
  13426. ))
  13427. characterMakers.push(() => makeCharacter(
  13428. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13429. {
  13430. front: {
  13431. height: math.unit(5 + 4 / 12, "feet"),
  13432. weight: math.unit(100, "lb"),
  13433. name: "Front",
  13434. image: {
  13435. source: "./media/characters/keireer/front.svg",
  13436. extra: 716 / 666,
  13437. bottom: 0.05
  13438. }
  13439. },
  13440. },
  13441. [
  13442. {
  13443. name: "Normal",
  13444. height: math.unit(5 + 4 / 12, "feet"),
  13445. default: true
  13446. },
  13447. ]
  13448. ))
  13449. characterMakers.push(() => makeCharacter(
  13450. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13451. {
  13452. front: {
  13453. height: math.unit(6, "feet"),
  13454. weight: math.unit(90, "kg"),
  13455. name: "Front",
  13456. image: {
  13457. source: "./media/characters/mirja/front.svg",
  13458. extra: 1789 / 1683,
  13459. bottom: 0.05
  13460. }
  13461. },
  13462. frontDressed: {
  13463. height: math.unit(6, "feet"),
  13464. weight: math.unit(90, "lb"),
  13465. name: "Front (Dressed)",
  13466. image: {
  13467. source: "./media/characters/mirja/front-dressed.svg",
  13468. extra: 1789 / 1683,
  13469. bottom: 0.05
  13470. }
  13471. },
  13472. back: {
  13473. height: math.unit(6, "feet"),
  13474. weight: math.unit(90, "lb"),
  13475. name: "Back",
  13476. image: {
  13477. source: "./media/characters/mirja/back.svg",
  13478. extra: 953 / 917,
  13479. bottom: 0.017
  13480. }
  13481. },
  13482. },
  13483. [
  13484. {
  13485. name: "\"Incognito\"",
  13486. height: math.unit(3, "meters")
  13487. },
  13488. {
  13489. name: "Strolling Size",
  13490. height: math.unit(15, "km")
  13491. },
  13492. {
  13493. name: "Larger Strolling Size",
  13494. height: math.unit(400, "km")
  13495. },
  13496. {
  13497. name: "Preferred Size",
  13498. height: math.unit(5000, "km")
  13499. },
  13500. {
  13501. name: "True Size",
  13502. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13503. default: true
  13504. },
  13505. ]
  13506. ))
  13507. characterMakers.push(() => makeCharacter(
  13508. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13509. {
  13510. front: {
  13511. height: math.unit(15, "feet"),
  13512. weight: math.unit(880, "kg"),
  13513. name: "Front",
  13514. image: {
  13515. source: "./media/characters/nightraver/front.svg",
  13516. extra: 2444 / 2160,
  13517. bottom: 0.027
  13518. }
  13519. },
  13520. back: {
  13521. height: math.unit(15, "feet"),
  13522. weight: math.unit(880, "kg"),
  13523. name: "Back",
  13524. image: {
  13525. source: "./media/characters/nightraver/back.svg",
  13526. extra: 2309 / 2180,
  13527. bottom: 0.005
  13528. }
  13529. },
  13530. sole: {
  13531. height: math.unit(2.878, "feet"),
  13532. name: "Sole",
  13533. image: {
  13534. source: "./media/characters/nightraver/sole.svg"
  13535. }
  13536. },
  13537. foot: {
  13538. height: math.unit(2.285, "feet"),
  13539. name: "Foot",
  13540. image: {
  13541. source: "./media/characters/nightraver/foot.svg"
  13542. }
  13543. },
  13544. maw: {
  13545. height: math.unit(2.67, "feet"),
  13546. name: "Maw",
  13547. image: {
  13548. source: "./media/characters/nightraver/maw.svg"
  13549. }
  13550. },
  13551. },
  13552. [
  13553. {
  13554. name: "Micro",
  13555. height: math.unit(1, "cm")
  13556. },
  13557. {
  13558. name: "Normal",
  13559. height: math.unit(15, "feet"),
  13560. default: true
  13561. },
  13562. {
  13563. name: "Macro",
  13564. height: math.unit(300, "feet")
  13565. },
  13566. {
  13567. name: "Megamacro",
  13568. height: math.unit(300, "miles")
  13569. },
  13570. {
  13571. name: "Gigamacro",
  13572. height: math.unit(10000, "miles")
  13573. },
  13574. ]
  13575. ))
  13576. characterMakers.push(() => makeCharacter(
  13577. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13578. {
  13579. side: {
  13580. height: math.unit(2, "inches"),
  13581. weight: math.unit(5, "grams"),
  13582. name: "Side",
  13583. image: {
  13584. source: "./media/characters/arc/side.svg"
  13585. }
  13586. },
  13587. },
  13588. [
  13589. {
  13590. name: "Micro",
  13591. height: math.unit(2, "inches"),
  13592. default: true
  13593. },
  13594. ]
  13595. ))
  13596. characterMakers.push(() => makeCharacter(
  13597. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13598. {
  13599. front: {
  13600. height: math.unit(1.1938, "meters"),
  13601. weight: math.unit(54, "kg"),
  13602. name: "Front",
  13603. image: {
  13604. source: "./media/characters/nebula-shahar/front.svg",
  13605. extra: 1642 / 1436,
  13606. bottom: 0.06
  13607. }
  13608. },
  13609. },
  13610. [
  13611. {
  13612. name: "Megamicro",
  13613. height: math.unit(0.3, "mm")
  13614. },
  13615. {
  13616. name: "Micro",
  13617. height: math.unit(3, "cm")
  13618. },
  13619. {
  13620. name: "Normal",
  13621. height: math.unit(138, "cm"),
  13622. default: true
  13623. },
  13624. {
  13625. name: "Macro",
  13626. height: math.unit(30, "m")
  13627. },
  13628. ]
  13629. ))
  13630. characterMakers.push(() => makeCharacter(
  13631. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13632. {
  13633. front: {
  13634. height: math.unit(5.24, "feet"),
  13635. weight: math.unit(150, "lb"),
  13636. name: "Front",
  13637. image: {
  13638. source: "./media/characters/shayla/front.svg",
  13639. extra: 1512 / 1414,
  13640. bottom: 0.01
  13641. }
  13642. },
  13643. back: {
  13644. height: math.unit(5.24, "feet"),
  13645. weight: math.unit(150, "lb"),
  13646. name: "Back",
  13647. image: {
  13648. source: "./media/characters/shayla/back.svg",
  13649. extra: 1512 / 1414
  13650. }
  13651. },
  13652. hand: {
  13653. height: math.unit(0.7781496062992126, "feet"),
  13654. name: "Hand",
  13655. image: {
  13656. source: "./media/characters/shayla/hand.svg"
  13657. }
  13658. },
  13659. foot: {
  13660. height: math.unit(1.4206036745406823, "feet"),
  13661. name: "Foot",
  13662. image: {
  13663. source: "./media/characters/shayla/foot.svg"
  13664. }
  13665. },
  13666. },
  13667. [
  13668. {
  13669. name: "Micro",
  13670. height: math.unit(0.32, "feet")
  13671. },
  13672. {
  13673. name: "Normal",
  13674. height: math.unit(5.24, "feet"),
  13675. default: true
  13676. },
  13677. {
  13678. name: "Macro",
  13679. height: math.unit(492.12, "feet")
  13680. },
  13681. {
  13682. name: "Megamacro",
  13683. height: math.unit(186.41, "miles")
  13684. },
  13685. ]
  13686. ))
  13687. characterMakers.push(() => makeCharacter(
  13688. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13689. {
  13690. front: {
  13691. height: math.unit(2.2, "m"),
  13692. weight: math.unit(120, "kg"),
  13693. name: "Front",
  13694. image: {
  13695. source: "./media/characters/pia-jr/front.svg",
  13696. extra: 1000 / 970,
  13697. bottom: 0.035
  13698. }
  13699. },
  13700. hand: {
  13701. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13702. name: "Hand",
  13703. image: {
  13704. source: "./media/characters/pia-jr/hand.svg"
  13705. }
  13706. },
  13707. paw: {
  13708. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13709. name: "Paw",
  13710. image: {
  13711. source: "./media/characters/pia-jr/paw.svg"
  13712. }
  13713. },
  13714. },
  13715. [
  13716. {
  13717. name: "Micro",
  13718. height: math.unit(1.2, "cm")
  13719. },
  13720. {
  13721. name: "Normal",
  13722. height: math.unit(2.2, "m"),
  13723. default: true
  13724. },
  13725. {
  13726. name: "Macro",
  13727. height: math.unit(180, "m")
  13728. },
  13729. {
  13730. name: "Megamacro",
  13731. height: math.unit(420, "km")
  13732. },
  13733. ]
  13734. ))
  13735. characterMakers.push(() => makeCharacter(
  13736. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13737. {
  13738. front: {
  13739. height: math.unit(2, "m"),
  13740. weight: math.unit(115, "kg"),
  13741. name: "Front",
  13742. image: {
  13743. source: "./media/characters/pia-sr/front.svg",
  13744. extra: 760 / 730,
  13745. bottom: 0.015
  13746. }
  13747. },
  13748. back: {
  13749. height: math.unit(2, "m"),
  13750. weight: math.unit(115, "kg"),
  13751. name: "Back",
  13752. image: {
  13753. source: "./media/characters/pia-sr/back.svg",
  13754. extra: 760 / 730,
  13755. bottom: 0.01
  13756. }
  13757. },
  13758. hand: {
  13759. height: math.unit(0.89 * 6.56 / 6, "feet"),
  13760. name: "Hand",
  13761. image: {
  13762. source: "./media/characters/pia-sr/hand.svg"
  13763. }
  13764. },
  13765. foot: {
  13766. height: math.unit(1.83, "feet"),
  13767. name: "Foot",
  13768. image: {
  13769. source: "./media/characters/pia-sr/foot.svg"
  13770. }
  13771. },
  13772. },
  13773. [
  13774. {
  13775. name: "Micro",
  13776. height: math.unit(88, "mm")
  13777. },
  13778. {
  13779. name: "Normal",
  13780. height: math.unit(2, "m"),
  13781. default: true
  13782. },
  13783. {
  13784. name: "Macro",
  13785. height: math.unit(200, "m")
  13786. },
  13787. {
  13788. name: "Megamacro",
  13789. height: math.unit(420, "km")
  13790. },
  13791. ]
  13792. ))
  13793. characterMakers.push(() => makeCharacter(
  13794. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  13795. {
  13796. front: {
  13797. height: math.unit(8 + 2 / 12, "feet"),
  13798. weight: math.unit(300, "lb"),
  13799. name: "Front",
  13800. image: {
  13801. source: "./media/characters/kibibyte/front.svg",
  13802. extra: 2221 / 2098,
  13803. bottom: 0.04
  13804. }
  13805. },
  13806. },
  13807. [
  13808. {
  13809. name: "Normal",
  13810. height: math.unit(8 + 2 / 12, "feet"),
  13811. default: true
  13812. },
  13813. {
  13814. name: "Socialable Macro",
  13815. height: math.unit(50, "feet")
  13816. },
  13817. {
  13818. name: "Macro",
  13819. height: math.unit(300, "feet")
  13820. },
  13821. {
  13822. name: "Megamacro",
  13823. height: math.unit(500, "miles")
  13824. },
  13825. ]
  13826. ))
  13827. characterMakers.push(() => makeCharacter(
  13828. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  13829. {
  13830. front: {
  13831. height: math.unit(6, "feet"),
  13832. weight: math.unit(150, "lb"),
  13833. name: "Front",
  13834. image: {
  13835. source: "./media/characters/felix/front.svg",
  13836. extra: 762 / 722,
  13837. bottom: 0.02
  13838. }
  13839. },
  13840. frontClothed: {
  13841. height: math.unit(6, "feet"),
  13842. weight: math.unit(150, "lb"),
  13843. name: "Front (Clothed)",
  13844. image: {
  13845. source: "./media/characters/felix/front-clothed.svg",
  13846. extra: 762 / 722,
  13847. bottom: 0.02
  13848. }
  13849. },
  13850. },
  13851. [
  13852. {
  13853. name: "Normal",
  13854. height: math.unit(6 + 8 / 12, "feet"),
  13855. default: true
  13856. },
  13857. {
  13858. name: "Macro",
  13859. height: math.unit(2600, "feet")
  13860. },
  13861. {
  13862. name: "Megamacro",
  13863. height: math.unit(450, "miles")
  13864. },
  13865. ]
  13866. ))
  13867. characterMakers.push(() => makeCharacter(
  13868. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  13869. {
  13870. front: {
  13871. height: math.unit(6 + 1 / 12, "feet"),
  13872. weight: math.unit(250, "lb"),
  13873. name: "Front",
  13874. image: {
  13875. source: "./media/characters/tobo/front.svg",
  13876. extra: 608 / 586,
  13877. bottom: 0.023
  13878. }
  13879. },
  13880. back: {
  13881. height: math.unit(6 + 1 / 12, "feet"),
  13882. weight: math.unit(250, "lb"),
  13883. name: "Back",
  13884. image: {
  13885. source: "./media/characters/tobo/back.svg",
  13886. extra: 608 / 586
  13887. }
  13888. },
  13889. },
  13890. [
  13891. {
  13892. name: "Nano",
  13893. height: math.unit(2, "nm")
  13894. },
  13895. {
  13896. name: "Megamicro",
  13897. height: math.unit(0.1, "mm")
  13898. },
  13899. {
  13900. name: "Micro",
  13901. height: math.unit(1, "inch"),
  13902. default: true
  13903. },
  13904. {
  13905. name: "Human-sized",
  13906. height: math.unit(6 + 1 / 12, "feet")
  13907. },
  13908. {
  13909. name: "Macro",
  13910. height: math.unit(250, "feet")
  13911. },
  13912. {
  13913. name: "Megamacro",
  13914. height: math.unit(75, "miles")
  13915. },
  13916. {
  13917. name: "Texas-sized",
  13918. height: math.unit(750, "miles")
  13919. },
  13920. {
  13921. name: "Teramacro",
  13922. height: math.unit(50000, "miles")
  13923. },
  13924. ]
  13925. ))
  13926. characterMakers.push(() => makeCharacter(
  13927. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  13928. {
  13929. front: {
  13930. height: math.unit(6, "feet"),
  13931. weight: math.unit(269, "lb"),
  13932. name: "Front",
  13933. image: {
  13934. source: "./media/characters/danny-kapowsky/front.svg",
  13935. extra: 766 / 736,
  13936. bottom: 0.044
  13937. }
  13938. },
  13939. back: {
  13940. height: math.unit(6, "feet"),
  13941. weight: math.unit(269, "lb"),
  13942. name: "Back",
  13943. image: {
  13944. source: "./media/characters/danny-kapowsky/back.svg",
  13945. extra: 797 / 760,
  13946. bottom: 0.025
  13947. }
  13948. },
  13949. },
  13950. [
  13951. {
  13952. name: "Macro",
  13953. height: math.unit(150, "feet"),
  13954. default: true
  13955. },
  13956. {
  13957. name: "Macro+",
  13958. height: math.unit(200, "feet")
  13959. },
  13960. {
  13961. name: "Macro++",
  13962. height: math.unit(300, "feet")
  13963. },
  13964. {
  13965. name: "Macro+++",
  13966. height: math.unit(400, "feet")
  13967. },
  13968. ]
  13969. ))
  13970. characterMakers.push(() => makeCharacter(
  13971. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  13972. {
  13973. side: {
  13974. height: math.unit(6, "feet"),
  13975. weight: math.unit(170, "lb"),
  13976. name: "Side",
  13977. image: {
  13978. source: "./media/characters/finn/side.svg",
  13979. extra: 1953 / 1807,
  13980. bottom: 0.057
  13981. }
  13982. },
  13983. },
  13984. [
  13985. {
  13986. name: "Megamacro",
  13987. height: math.unit(14445, "feet"),
  13988. default: true
  13989. },
  13990. ]
  13991. ))
  13992. characterMakers.push(() => makeCharacter(
  13993. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  13994. {
  13995. front: {
  13996. height: math.unit(5 + 6 / 12, "feet"),
  13997. weight: math.unit(125, "lb"),
  13998. name: "Front",
  13999. image: {
  14000. source: "./media/characters/roy/front.svg",
  14001. extra: 1,
  14002. bottom: 0.11
  14003. }
  14004. },
  14005. },
  14006. [
  14007. {
  14008. name: "Micro",
  14009. height: math.unit(3, "inches"),
  14010. default: true
  14011. },
  14012. {
  14013. name: "Normal",
  14014. height: math.unit(5 + 6 / 12, "feet")
  14015. },
  14016. {
  14017. name: "Lesser Macro",
  14018. height: math.unit(60, "feet")
  14019. },
  14020. {
  14021. name: "Greater Macro",
  14022. height: math.unit(120, "feet")
  14023. },
  14024. ]
  14025. ))
  14026. characterMakers.push(() => makeCharacter(
  14027. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14028. {
  14029. front: {
  14030. height: math.unit(6, "feet"),
  14031. weight: math.unit(100, "lb"),
  14032. name: "Front",
  14033. image: {
  14034. source: "./media/characters/aevsivs/front.svg",
  14035. extra: 1,
  14036. bottom: 0.03
  14037. }
  14038. },
  14039. back: {
  14040. height: math.unit(6, "feet"),
  14041. weight: math.unit(100, "lb"),
  14042. name: "Back",
  14043. image: {
  14044. source: "./media/characters/aevsivs/back.svg"
  14045. }
  14046. },
  14047. },
  14048. [
  14049. {
  14050. name: "Micro",
  14051. height: math.unit(2, "inches"),
  14052. default: true
  14053. },
  14054. {
  14055. name: "Normal",
  14056. height: math.unit(5, "feet")
  14057. },
  14058. ]
  14059. ))
  14060. characterMakers.push(() => makeCharacter(
  14061. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14062. {
  14063. front: {
  14064. height: math.unit(5 + 7 / 12, "feet"),
  14065. weight: math.unit(159, "lb"),
  14066. name: "Front",
  14067. image: {
  14068. source: "./media/characters/hildegard/front.svg",
  14069. extra: 289 / 269,
  14070. bottom: 7.63 / 297.8
  14071. }
  14072. },
  14073. back: {
  14074. height: math.unit(5 + 7 / 12, "feet"),
  14075. weight: math.unit(159, "lb"),
  14076. name: "Back",
  14077. image: {
  14078. source: "./media/characters/hildegard/back.svg",
  14079. extra: 280 / 260,
  14080. bottom: 2.3 / 282
  14081. }
  14082. },
  14083. },
  14084. [
  14085. {
  14086. name: "Normal",
  14087. height: math.unit(5 + 7 / 12, "feet"),
  14088. default: true
  14089. },
  14090. ]
  14091. ))
  14092. characterMakers.push(() => makeCharacter(
  14093. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14094. {
  14095. bernard: {
  14096. height: math.unit(2 + 7 / 12, "feet"),
  14097. weight: math.unit(66, "lb"),
  14098. name: "Bernard",
  14099. rename: true,
  14100. image: {
  14101. source: "./media/characters/bernard-wilder/bernard.svg",
  14102. extra: 192 / 128,
  14103. bottom: 0.05
  14104. }
  14105. },
  14106. wilder: {
  14107. height: math.unit(5 + 8 / 12, "feet"),
  14108. weight: math.unit(143, "lb"),
  14109. name: "Wilder",
  14110. rename: true,
  14111. image: {
  14112. source: "./media/characters/bernard-wilder/wilder.svg",
  14113. extra: 361 / 312,
  14114. bottom: 0.02
  14115. }
  14116. },
  14117. },
  14118. [
  14119. {
  14120. name: "Normal",
  14121. height: math.unit(2 + 7 / 12, "feet"),
  14122. default: true
  14123. },
  14124. ]
  14125. ))
  14126. characterMakers.push(() => makeCharacter(
  14127. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14128. {
  14129. anthro: {
  14130. height: math.unit(6 + 1 / 12, "feet"),
  14131. weight: math.unit(155, "lb"),
  14132. name: "Anthro",
  14133. image: {
  14134. source: "./media/characters/hearth/anthro.svg",
  14135. extra: 260 / 250,
  14136. bottom: 0.02
  14137. }
  14138. },
  14139. feral: {
  14140. height: math.unit(3.78, "feet"),
  14141. weight: math.unit(35, "kg"),
  14142. name: "Feral",
  14143. image: {
  14144. source: "./media/characters/hearth/feral.svg",
  14145. extra: 153 / 135,
  14146. bottom: 0.03
  14147. }
  14148. },
  14149. },
  14150. [
  14151. {
  14152. name: "Normal",
  14153. height: math.unit(6 + 1 / 12, "feet"),
  14154. default: true
  14155. },
  14156. ]
  14157. ))
  14158. characterMakers.push(() => makeCharacter(
  14159. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14160. {
  14161. front: {
  14162. height: math.unit(6, "feet"),
  14163. weight: math.unit(182, "lb"),
  14164. name: "Front",
  14165. image: {
  14166. source: "./media/characters/ingrid/front.svg",
  14167. extra: 294 / 268,
  14168. bottom: 0.027
  14169. }
  14170. },
  14171. },
  14172. [
  14173. {
  14174. name: "Normal",
  14175. height: math.unit(6, "feet"),
  14176. default: true
  14177. },
  14178. ]
  14179. ))
  14180. characterMakers.push(() => makeCharacter(
  14181. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14182. {
  14183. eevee: {
  14184. height: math.unit(2 + 10 / 12, "feet"),
  14185. weight: math.unit(86, "lb"),
  14186. name: "Malgam",
  14187. image: {
  14188. source: "./media/characters/malgam/eevee.svg",
  14189. extra: 218 / 180,
  14190. bottom: 0.2
  14191. }
  14192. },
  14193. sylveon: {
  14194. height: math.unit(4, "feet"),
  14195. weight: math.unit(101, "lb"),
  14196. name: "Future Malgam",
  14197. rename: true,
  14198. image: {
  14199. source: "./media/characters/malgam/sylveon.svg",
  14200. extra: 371 / 325,
  14201. bottom: 0.015
  14202. }
  14203. },
  14204. gigantamax: {
  14205. height: math.unit(50, "feet"),
  14206. name: "Gigantamax Malgam",
  14207. rename: true,
  14208. image: {
  14209. source: "./media/characters/malgam/gigantamax.svg"
  14210. }
  14211. },
  14212. },
  14213. [
  14214. {
  14215. name: "Normal",
  14216. height: math.unit(2 + 10 / 12, "feet"),
  14217. default: true
  14218. },
  14219. ]
  14220. ))
  14221. characterMakers.push(() => makeCharacter(
  14222. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14223. {
  14224. front: {
  14225. height: math.unit(5 + 11 / 12, "feet"),
  14226. weight: math.unit(188, "lb"),
  14227. name: "Front",
  14228. image: {
  14229. source: "./media/characters/fleur/front.svg",
  14230. extra: 309 / 283,
  14231. bottom: 0.007
  14232. }
  14233. },
  14234. },
  14235. [
  14236. {
  14237. name: "Normal",
  14238. height: math.unit(5 + 11 / 12, "feet"),
  14239. default: true
  14240. },
  14241. ]
  14242. ))
  14243. characterMakers.push(() => makeCharacter(
  14244. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14245. {
  14246. front: {
  14247. height: math.unit(5 + 4 / 12, "feet"),
  14248. weight: math.unit(122, "lb"),
  14249. name: "Front",
  14250. image: {
  14251. source: "./media/characters/jude/front.svg",
  14252. extra: 288 / 273,
  14253. bottom: 0.03
  14254. }
  14255. },
  14256. },
  14257. [
  14258. {
  14259. name: "Normal",
  14260. height: math.unit(5 + 4 / 12, "feet"),
  14261. default: true
  14262. },
  14263. ]
  14264. ))
  14265. characterMakers.push(() => makeCharacter(
  14266. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14267. {
  14268. front: {
  14269. height: math.unit(5 + 11 / 12, "feet"),
  14270. weight: math.unit(190, "lb"),
  14271. name: "Front",
  14272. image: {
  14273. source: "./media/characters/seara/front.svg",
  14274. extra: 1,
  14275. bottom: 0.05
  14276. }
  14277. },
  14278. },
  14279. [
  14280. {
  14281. name: "Normal",
  14282. height: math.unit(5 + 11 / 12, "feet"),
  14283. default: true
  14284. },
  14285. ]
  14286. ))
  14287. characterMakers.push(() => makeCharacter(
  14288. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14289. {
  14290. front: {
  14291. height: math.unit(16 + 5 / 12, "feet"),
  14292. weight: math.unit(524, "lb"),
  14293. name: "Front",
  14294. image: {
  14295. source: "./media/characters/caspian/front.svg",
  14296. extra: 1,
  14297. bottom: 0.04
  14298. }
  14299. },
  14300. },
  14301. [
  14302. {
  14303. name: "Normal",
  14304. height: math.unit(16 + 5 / 12, "feet"),
  14305. default: true
  14306. },
  14307. ]
  14308. ))
  14309. characterMakers.push(() => makeCharacter(
  14310. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14311. {
  14312. front: {
  14313. height: math.unit(5 + 7 / 12, "feet"),
  14314. weight: math.unit(170, "lb"),
  14315. name: "Front",
  14316. image: {
  14317. source: "./media/characters/mika/front.svg",
  14318. extra: 1,
  14319. bottom: 0.016
  14320. }
  14321. },
  14322. },
  14323. [
  14324. {
  14325. name: "Normal",
  14326. height: math.unit(5 + 7 / 12, "feet"),
  14327. default: true
  14328. },
  14329. ]
  14330. ))
  14331. characterMakers.push(() => makeCharacter(
  14332. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14333. {
  14334. front: {
  14335. height: math.unit(6 + 2 / 12, "feet"),
  14336. weight: math.unit(268, "lb"),
  14337. name: "Front",
  14338. image: {
  14339. source: "./media/characters/sol/front.svg",
  14340. extra: 247 / 231,
  14341. bottom: 0.05
  14342. }
  14343. },
  14344. },
  14345. [
  14346. {
  14347. name: "Normal",
  14348. height: math.unit(6 + 2 / 12, "feet"),
  14349. default: true
  14350. },
  14351. ]
  14352. ))
  14353. characterMakers.push(() => makeCharacter(
  14354. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14355. {
  14356. buizel: {
  14357. height: math.unit(2 + 5 / 12, "feet"),
  14358. weight: math.unit(87, "lb"),
  14359. name: "Buizel",
  14360. image: {
  14361. source: "./media/characters/umiko/buizel.svg",
  14362. extra: 172 / 157,
  14363. bottom: 0.01
  14364. }
  14365. },
  14366. floatzel: {
  14367. height: math.unit(5 + 9 / 12, "feet"),
  14368. weight: math.unit(250, "lb"),
  14369. name: "Floatzel",
  14370. image: {
  14371. source: "./media/characters/umiko/floatzel.svg",
  14372. extra: 262 / 248
  14373. }
  14374. },
  14375. },
  14376. [
  14377. {
  14378. name: "Normal",
  14379. height: math.unit(2 + 5 / 12, "feet"),
  14380. default: true
  14381. },
  14382. ]
  14383. ))
  14384. characterMakers.push(() => makeCharacter(
  14385. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14386. {
  14387. front: {
  14388. height: math.unit(6 + 2 / 12, "feet"),
  14389. weight: math.unit(146, "lb"),
  14390. name: "Front",
  14391. image: {
  14392. source: "./media/characters/iliac/front.svg",
  14393. extra: 389 / 365,
  14394. bottom: 0.035
  14395. }
  14396. },
  14397. },
  14398. [
  14399. {
  14400. name: "Normal",
  14401. height: math.unit(6 + 2 / 12, "feet"),
  14402. default: true
  14403. },
  14404. ]
  14405. ))
  14406. characterMakers.push(() => makeCharacter(
  14407. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14408. {
  14409. front: {
  14410. height: math.unit(6, "feet"),
  14411. weight: math.unit(170, "lb"),
  14412. name: "Front",
  14413. image: {
  14414. source: "./media/characters/topaz/front.svg",
  14415. extra: 317 / 303,
  14416. bottom: 0.055
  14417. }
  14418. },
  14419. },
  14420. [
  14421. {
  14422. name: "Normal",
  14423. height: math.unit(6, "feet"),
  14424. default: true
  14425. },
  14426. ]
  14427. ))
  14428. characterMakers.push(() => makeCharacter(
  14429. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14430. {
  14431. front: {
  14432. height: math.unit(5 + 11 / 12, "feet"),
  14433. weight: math.unit(144, "lb"),
  14434. name: "Front",
  14435. image: {
  14436. source: "./media/characters/gabriel/front.svg",
  14437. extra: 285 / 262,
  14438. bottom: 0.004
  14439. }
  14440. },
  14441. },
  14442. [
  14443. {
  14444. name: "Normal",
  14445. height: math.unit(5 + 11 / 12, "feet"),
  14446. default: true
  14447. },
  14448. ]
  14449. ))
  14450. characterMakers.push(() => makeCharacter(
  14451. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14452. {
  14453. side: {
  14454. height: math.unit(6 + 5 / 12, "feet"),
  14455. weight: math.unit(300, "lb"),
  14456. name: "Side",
  14457. image: {
  14458. source: "./media/characters/tempest-suicune/side.svg",
  14459. extra: 195 / 154,
  14460. bottom: 0.04
  14461. }
  14462. },
  14463. },
  14464. [
  14465. {
  14466. name: "Normal",
  14467. height: math.unit(6 + 5 / 12, "feet"),
  14468. default: true
  14469. },
  14470. ]
  14471. ))
  14472. characterMakers.push(() => makeCharacter(
  14473. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14474. {
  14475. front: {
  14476. height: math.unit(7 + 2 / 12, "feet"),
  14477. weight: math.unit(322, "lb"),
  14478. name: "Front",
  14479. image: {
  14480. source: "./media/characters/vulcan/front.svg",
  14481. extra: 154 / 147,
  14482. bottom: 0.04
  14483. }
  14484. },
  14485. },
  14486. [
  14487. {
  14488. name: "Normal",
  14489. height: math.unit(7 + 2 / 12, "feet"),
  14490. default: true
  14491. },
  14492. ]
  14493. ))
  14494. characterMakers.push(() => makeCharacter(
  14495. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14496. {
  14497. front: {
  14498. height: math.unit(5 + 10 / 12, "feet"),
  14499. weight: math.unit(264, "lb"),
  14500. name: "Front",
  14501. image: {
  14502. source: "./media/characters/gault/front.svg",
  14503. extra: 161 / 140,
  14504. bottom: 0.028
  14505. }
  14506. },
  14507. },
  14508. [
  14509. {
  14510. name: "Normal",
  14511. height: math.unit(5 + 10 / 12, "feet"),
  14512. default: true
  14513. },
  14514. ]
  14515. ))
  14516. characterMakers.push(() => makeCharacter(
  14517. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14518. {
  14519. front: {
  14520. height: math.unit(6, "feet"),
  14521. weight: math.unit(150, "lb"),
  14522. name: "Front",
  14523. image: {
  14524. source: "./media/characters/shard/front.svg",
  14525. extra: 273 / 238,
  14526. bottom: 0.02
  14527. }
  14528. },
  14529. },
  14530. [
  14531. {
  14532. name: "Normal",
  14533. height: math.unit(3 + 6 / 12, "feet"),
  14534. default: true
  14535. },
  14536. ]
  14537. ))
  14538. characterMakers.push(() => makeCharacter(
  14539. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14540. {
  14541. front: {
  14542. height: math.unit(5 + 11 / 12, "feet"),
  14543. weight: math.unit(146, "lb"),
  14544. name: "Front",
  14545. image: {
  14546. source: "./media/characters/ashe/front.svg",
  14547. extra: 400 / 373,
  14548. bottom: 0.01
  14549. }
  14550. },
  14551. },
  14552. [
  14553. {
  14554. name: "Normal",
  14555. height: math.unit(5 + 11 / 12, "feet"),
  14556. default: true
  14557. },
  14558. ]
  14559. ))
  14560. characterMakers.push(() => makeCharacter(
  14561. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14562. {
  14563. front: {
  14564. height: math.unit(5 + 5 / 12, "feet"),
  14565. weight: math.unit(135, "lb"),
  14566. name: "Front",
  14567. image: {
  14568. source: "./media/characters/beatrix/front.svg",
  14569. extra: 392 / 379,
  14570. bottom: 0.01
  14571. }
  14572. },
  14573. },
  14574. [
  14575. {
  14576. name: "Normal",
  14577. height: math.unit(6, "feet"),
  14578. default: true
  14579. },
  14580. ]
  14581. ))
  14582. characterMakers.push(() => makeCharacter(
  14583. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14584. {
  14585. front: {
  14586. height: math.unit(6, "feet"),
  14587. weight: math.unit(150, "lb"),
  14588. name: "Front",
  14589. image: {
  14590. source: "./media/characters/ignatius/front.svg",
  14591. extra: 245 / 222,
  14592. bottom: 0.01
  14593. }
  14594. },
  14595. },
  14596. [
  14597. {
  14598. name: "Normal",
  14599. height: math.unit(5 + 5 / 12, "feet"),
  14600. default: true
  14601. },
  14602. ]
  14603. ))
  14604. characterMakers.push(() => makeCharacter(
  14605. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14606. {
  14607. front: {
  14608. height: math.unit(6 + 2 / 12, "feet"),
  14609. weight: math.unit(138, "lb"),
  14610. name: "Front",
  14611. image: {
  14612. source: "./media/characters/mei-li/front.svg",
  14613. extra: 237 / 229,
  14614. bottom: 0.03
  14615. }
  14616. },
  14617. },
  14618. [
  14619. {
  14620. name: "Normal",
  14621. height: math.unit(6 + 2 / 12, "feet"),
  14622. default: true
  14623. },
  14624. ]
  14625. ))
  14626. characterMakers.push(() => makeCharacter(
  14627. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14628. {
  14629. front: {
  14630. height: math.unit(2 + 4 / 12, "feet"),
  14631. weight: math.unit(62, "lb"),
  14632. name: "Front",
  14633. image: {
  14634. source: "./media/characters/puru/front.svg",
  14635. extra: 206 / 149,
  14636. bottom: 0.06
  14637. }
  14638. },
  14639. },
  14640. [
  14641. {
  14642. name: "Normal",
  14643. height: math.unit(2 + 4 / 12, "feet"),
  14644. default: true
  14645. },
  14646. ]
  14647. ))
  14648. characterMakers.push(() => makeCharacter(
  14649. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14650. {
  14651. taur: {
  14652. height: math.unit(11, "feet"),
  14653. weight: math.unit(500, "lb"),
  14654. name: "Taur",
  14655. image: {
  14656. source: "./media/characters/kee/taur.svg",
  14657. extra: 1,
  14658. bottom: 0.04
  14659. }
  14660. },
  14661. },
  14662. [
  14663. {
  14664. name: "Normal",
  14665. height: math.unit(11, "feet"),
  14666. default: true
  14667. },
  14668. ]
  14669. ))
  14670. characterMakers.push(() => makeCharacter(
  14671. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14672. {
  14673. anthro: {
  14674. height: math.unit(7, "feet"),
  14675. weight: math.unit(190, "lb"),
  14676. name: "Anthro",
  14677. image: {
  14678. source: "./media/characters/cobalt-dracha/anthro.svg",
  14679. extra: 231 / 225,
  14680. bottom: 0.04
  14681. }
  14682. },
  14683. feral: {
  14684. height: math.unit(9 + 7 / 12, "feet"),
  14685. weight: math.unit(294, "lb"),
  14686. name: "Feral",
  14687. image: {
  14688. source: "./media/characters/cobalt-dracha/feral.svg",
  14689. extra: 692 / 633,
  14690. bottom: 0.05
  14691. }
  14692. },
  14693. },
  14694. [
  14695. {
  14696. name: "Normal",
  14697. height: math.unit(7, "feet"),
  14698. default: true
  14699. },
  14700. ]
  14701. ))
  14702. characterMakers.push(() => makeCharacter(
  14703. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14704. {
  14705. fallen: {
  14706. height: math.unit(11 + 8 / 12, "feet"),
  14707. weight: math.unit(485, "lb"),
  14708. name: "Java (Fallen)",
  14709. rename: true,
  14710. image: {
  14711. source: "./media/characters/java/fallen.svg",
  14712. extra: 226 / 208,
  14713. bottom: 0.005
  14714. }
  14715. },
  14716. godkin: {
  14717. height: math.unit(10 + 6 / 12, "feet"),
  14718. weight: math.unit(328, "lb"),
  14719. name: "Java (Godkin)",
  14720. rename: true,
  14721. image: {
  14722. source: "./media/characters/java/godkin.svg",
  14723. extra: 270 / 262,
  14724. bottom: 0.02
  14725. }
  14726. },
  14727. },
  14728. [
  14729. {
  14730. name: "Normal",
  14731. height: math.unit(11 + 8 / 12, "feet"),
  14732. default: true
  14733. },
  14734. ]
  14735. ))
  14736. characterMakers.push(() => makeCharacter(
  14737. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14738. {
  14739. front: {
  14740. height: math.unit(7 + 8 / 12, "feet"),
  14741. weight: math.unit(320, "lb"),
  14742. name: "Front",
  14743. image: {
  14744. source: "./media/characters/skoll/front.svg",
  14745. extra: 232 / 220,
  14746. bottom: 0.02
  14747. }
  14748. },
  14749. },
  14750. [
  14751. {
  14752. name: "Normal",
  14753. height: math.unit(7 + 8 / 12, "feet"),
  14754. default: true
  14755. },
  14756. ]
  14757. ))
  14758. characterMakers.push(() => makeCharacter(
  14759. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  14760. {
  14761. front: {
  14762. height: math.unit(5 + 9 / 12, "feet"),
  14763. weight: math.unit(170, "lb"),
  14764. name: "Front",
  14765. image: {
  14766. source: "./media/characters/purna/front.svg",
  14767. extra: 239 / 229,
  14768. bottom: 0.01
  14769. }
  14770. },
  14771. },
  14772. [
  14773. {
  14774. name: "Normal",
  14775. height: math.unit(5 + 9 / 12, "feet"),
  14776. default: true
  14777. },
  14778. ]
  14779. ))
  14780. characterMakers.push(() => makeCharacter(
  14781. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  14782. {
  14783. front: {
  14784. height: math.unit(5 + 9 / 12, "feet"),
  14785. weight: math.unit(142, "lb"),
  14786. name: "Front",
  14787. image: {
  14788. source: "./media/characters/kuva/front.svg",
  14789. extra: 281 / 271,
  14790. bottom: 0.006
  14791. }
  14792. },
  14793. },
  14794. [
  14795. {
  14796. name: "Normal",
  14797. height: math.unit(5 + 9 / 12, "feet"),
  14798. default: true
  14799. },
  14800. ]
  14801. ))
  14802. characterMakers.push(() => makeCharacter(
  14803. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  14804. {
  14805. anthro: {
  14806. height: math.unit(9 + 2 / 12, "feet"),
  14807. weight: math.unit(270, "lb"),
  14808. name: "Anthro",
  14809. image: {
  14810. source: "./media/characters/embra/anthro.svg",
  14811. extra: 200 / 187,
  14812. bottom: 0.02
  14813. }
  14814. },
  14815. feral: {
  14816. height: math.unit(18 + 8 / 12, "feet"),
  14817. weight: math.unit(576, "lb"),
  14818. name: "Feral",
  14819. image: {
  14820. source: "./media/characters/embra/feral.svg",
  14821. extra: 152 / 137,
  14822. bottom: 0.037
  14823. }
  14824. },
  14825. },
  14826. [
  14827. {
  14828. name: "Normal",
  14829. height: math.unit(9 + 2 / 12, "feet"),
  14830. default: true
  14831. },
  14832. ]
  14833. ))
  14834. characterMakers.push(() => makeCharacter(
  14835. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  14836. {
  14837. anthro: {
  14838. height: math.unit(10 + 9 / 12, "feet"),
  14839. weight: math.unit(224, "lb"),
  14840. name: "Anthro",
  14841. image: {
  14842. source: "./media/characters/grottos/anthro.svg",
  14843. extra: 350 / 332,
  14844. bottom: 0.045
  14845. }
  14846. },
  14847. feral: {
  14848. height: math.unit(20 + 7 / 12, "feet"),
  14849. weight: math.unit(629, "lb"),
  14850. name: "Feral",
  14851. image: {
  14852. source: "./media/characters/grottos/feral.svg",
  14853. extra: 207 / 190,
  14854. bottom: 0.05
  14855. }
  14856. },
  14857. },
  14858. [
  14859. {
  14860. name: "Normal",
  14861. height: math.unit(10 + 9 / 12, "feet"),
  14862. default: true
  14863. },
  14864. ]
  14865. ))
  14866. characterMakers.push(() => makeCharacter(
  14867. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  14868. {
  14869. anthro: {
  14870. height: math.unit(9 + 6 / 12, "feet"),
  14871. weight: math.unit(298, "lb"),
  14872. name: "Anthro",
  14873. image: {
  14874. source: "./media/characters/frifna/anthro.svg",
  14875. extra: 282 / 269,
  14876. bottom: 0.015
  14877. }
  14878. },
  14879. feral: {
  14880. height: math.unit(16 + 2 / 12, "feet"),
  14881. weight: math.unit(624, "lb"),
  14882. name: "Feral",
  14883. image: {
  14884. source: "./media/characters/frifna/feral.svg"
  14885. }
  14886. },
  14887. },
  14888. [
  14889. {
  14890. name: "Normal",
  14891. height: math.unit(9 + 6 / 12, "feet"),
  14892. default: true
  14893. },
  14894. ]
  14895. ))
  14896. characterMakers.push(() => makeCharacter(
  14897. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  14898. {
  14899. front: {
  14900. height: math.unit(6 + 2 / 12, "feet"),
  14901. weight: math.unit(168, "lb"),
  14902. name: "Front",
  14903. image: {
  14904. source: "./media/characters/elise/front.svg",
  14905. extra: 276 / 271
  14906. }
  14907. },
  14908. },
  14909. [
  14910. {
  14911. name: "Normal",
  14912. height: math.unit(6 + 2 / 12, "feet"),
  14913. default: true
  14914. },
  14915. ]
  14916. ))
  14917. characterMakers.push(() => makeCharacter(
  14918. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  14919. {
  14920. front: {
  14921. height: math.unit(5 + 10 / 12, "feet"),
  14922. weight: math.unit(210, "lb"),
  14923. name: "Front",
  14924. image: {
  14925. source: "./media/characters/glade/front.svg",
  14926. extra: 258 / 247,
  14927. bottom: 0.008
  14928. }
  14929. },
  14930. },
  14931. [
  14932. {
  14933. name: "Normal",
  14934. height: math.unit(5 + 10 / 12, "feet"),
  14935. default: true
  14936. },
  14937. ]
  14938. ))
  14939. characterMakers.push(() => makeCharacter(
  14940. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  14941. {
  14942. front: {
  14943. height: math.unit(5 + 10 / 12, "feet"),
  14944. weight: math.unit(129, "lb"),
  14945. name: "Front",
  14946. image: {
  14947. source: "./media/characters/rina/front.svg",
  14948. extra: 266 / 255,
  14949. bottom: 0.005
  14950. }
  14951. },
  14952. },
  14953. [
  14954. {
  14955. name: "Normal",
  14956. height: math.unit(5 + 10 / 12, "feet"),
  14957. default: true
  14958. },
  14959. ]
  14960. ))
  14961. characterMakers.push(() => makeCharacter(
  14962. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  14963. {
  14964. front: {
  14965. height: math.unit(6 + 1 / 12, "feet"),
  14966. weight: math.unit(192, "lb"),
  14967. name: "Front",
  14968. image: {
  14969. source: "./media/characters/veronica/front.svg",
  14970. extra: 319 / 309,
  14971. bottom: 0.005
  14972. }
  14973. },
  14974. },
  14975. [
  14976. {
  14977. name: "Normal",
  14978. height: math.unit(6 + 1 / 12, "feet"),
  14979. default: true
  14980. },
  14981. ]
  14982. ))
  14983. characterMakers.push(() => makeCharacter(
  14984. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  14985. {
  14986. front: {
  14987. height: math.unit(9 + 3 / 12, "feet"),
  14988. weight: math.unit(1100, "lb"),
  14989. name: "Front",
  14990. image: {
  14991. source: "./media/characters/braxton/front.svg",
  14992. extra: 1057 / 984,
  14993. bottom: 0.05
  14994. }
  14995. },
  14996. },
  14997. [
  14998. {
  14999. name: "Normal",
  15000. height: math.unit(9 + 3 / 12, "feet")
  15001. },
  15002. {
  15003. name: "Giant",
  15004. height: math.unit(300, "feet"),
  15005. default: true
  15006. },
  15007. {
  15008. name: "Macro",
  15009. height: math.unit(700, "feet")
  15010. },
  15011. {
  15012. name: "Megamacro",
  15013. height: math.unit(6000, "feet")
  15014. },
  15015. ]
  15016. ))
  15017. characterMakers.push(() => makeCharacter(
  15018. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15019. {
  15020. front: {
  15021. height: math.unit(6 + 7 / 12, "feet"),
  15022. weight: math.unit(150, "lb"),
  15023. name: "Front",
  15024. image: {
  15025. source: "./media/characters/blue-feyonics/front.svg",
  15026. extra: 1403 / 1306,
  15027. bottom: 0.047
  15028. }
  15029. },
  15030. },
  15031. [
  15032. {
  15033. name: "Normal",
  15034. height: math.unit(6 + 7 / 12, "feet"),
  15035. default: true
  15036. },
  15037. ]
  15038. ))
  15039. characterMakers.push(() => makeCharacter(
  15040. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15041. {
  15042. front: {
  15043. height: math.unit(1.8, "meters"),
  15044. weight: math.unit(60, "kg"),
  15045. name: "Front",
  15046. image: {
  15047. source: "./media/characters/maxwell/front.svg",
  15048. extra: 2060 / 1873
  15049. }
  15050. },
  15051. },
  15052. [
  15053. {
  15054. name: "Micro",
  15055. height: math.unit(1, "mm")
  15056. },
  15057. {
  15058. name: "Normal",
  15059. height: math.unit(1.8, "meter"),
  15060. default: true
  15061. },
  15062. {
  15063. name: "Macro",
  15064. height: math.unit(30, "meters")
  15065. },
  15066. {
  15067. name: "Megamacro",
  15068. height: math.unit(10, "km")
  15069. },
  15070. ]
  15071. ))
  15072. characterMakers.push(() => makeCharacter(
  15073. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15074. {
  15075. front: {
  15076. height: math.unit(6, "feet"),
  15077. weight: math.unit(150, "lb"),
  15078. name: "Front",
  15079. image: {
  15080. source: "./media/characters/jack/front.svg",
  15081. extra: 1754 / 1640,
  15082. bottom: 0.01
  15083. }
  15084. },
  15085. },
  15086. [
  15087. {
  15088. name: "Normal",
  15089. height: math.unit(80000, "feet"),
  15090. default: true
  15091. },
  15092. {
  15093. name: "Max size",
  15094. height: math.unit(10, "lightyears")
  15095. },
  15096. ]
  15097. ))
  15098. characterMakers.push(() => makeCharacter(
  15099. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15100. {
  15101. upright: {
  15102. height: math.unit(7, "feet"),
  15103. weight: math.unit(170, "lb"),
  15104. name: "Upright",
  15105. image: {
  15106. source: "./media/characters/cafat/upright.svg",
  15107. bottom: 0.01
  15108. }
  15109. },
  15110. uprightFull: {
  15111. height: math.unit(7, "feet"),
  15112. weight: math.unit(170, "lb"),
  15113. name: "Upright (Full)",
  15114. image: {
  15115. source: "./media/characters/cafat/upright-full.svg",
  15116. bottom: 0.01
  15117. }
  15118. },
  15119. side: {
  15120. height: math.unit(5, "feet"),
  15121. weight: math.unit(150, "lb"),
  15122. name: "Side",
  15123. image: {
  15124. source: "./media/characters/cafat/side.svg"
  15125. }
  15126. },
  15127. },
  15128. [
  15129. {
  15130. name: "Small",
  15131. height: math.unit(7, "feet"),
  15132. default: true
  15133. },
  15134. {
  15135. name: "Large",
  15136. height: math.unit(15.5, "feet")
  15137. },
  15138. ]
  15139. ))
  15140. characterMakers.push(() => makeCharacter(
  15141. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15142. {
  15143. front: {
  15144. height: math.unit(6, "feet"),
  15145. weight: math.unit(150, "lb"),
  15146. name: "Front",
  15147. image: {
  15148. source: "./media/characters/verin-raharra/front.svg",
  15149. extra: 5019 / 4835,
  15150. bottom: 0.023
  15151. }
  15152. },
  15153. },
  15154. [
  15155. {
  15156. name: "Normal",
  15157. height: math.unit(7 + 5 / 12, "feet"),
  15158. default: true
  15159. },
  15160. {
  15161. name: "Upsized",
  15162. height: math.unit(20, "feet")
  15163. },
  15164. ]
  15165. ))
  15166. characterMakers.push(() => makeCharacter(
  15167. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15168. {
  15169. front: {
  15170. height: math.unit(7, "feet"),
  15171. weight: math.unit(230, "lb"),
  15172. name: "Front",
  15173. image: {
  15174. source: "./media/characters/nakata/front.svg",
  15175. extra: 1.005,
  15176. bottom: 0.01
  15177. }
  15178. },
  15179. },
  15180. [
  15181. {
  15182. name: "Normal",
  15183. height: math.unit(7, "feet"),
  15184. default: true
  15185. },
  15186. {
  15187. name: "Big",
  15188. height: math.unit(14, "feet")
  15189. },
  15190. {
  15191. name: "Macro",
  15192. height: math.unit(400, "feet")
  15193. },
  15194. ]
  15195. ))
  15196. characterMakers.push(() => makeCharacter(
  15197. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15198. {
  15199. front: {
  15200. height: math.unit(4.91, "feet"),
  15201. weight: math.unit(100, "lb"),
  15202. name: "Front",
  15203. image: {
  15204. source: "./media/characters/lily/front.svg",
  15205. extra: 1585 / 1415,
  15206. bottom: 0.02
  15207. }
  15208. },
  15209. },
  15210. [
  15211. {
  15212. name: "Normal",
  15213. height: math.unit(4.91, "feet"),
  15214. default: true
  15215. },
  15216. ]
  15217. ))
  15218. characterMakers.push(() => makeCharacter(
  15219. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15220. {
  15221. laying: {
  15222. height: math.unit(4 + 4 / 12, "feet"),
  15223. weight: math.unit(600, "lb"),
  15224. name: "Laying",
  15225. image: {
  15226. source: "./media/characters/sheila/laying.svg",
  15227. extra: 1333 / 1265,
  15228. bottom: 0.16
  15229. }
  15230. },
  15231. },
  15232. [
  15233. {
  15234. name: "Normal",
  15235. height: math.unit(4 + 4 / 12, "feet"),
  15236. default: true
  15237. },
  15238. ]
  15239. ))
  15240. characterMakers.push(() => makeCharacter(
  15241. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15242. {
  15243. front: {
  15244. height: math.unit(6, "feet"),
  15245. weight: math.unit(190, "lb"),
  15246. name: "Front",
  15247. image: {
  15248. source: "./media/characters/sax/front.svg",
  15249. extra: 1187 / 973,
  15250. bottom: 0.042
  15251. }
  15252. },
  15253. },
  15254. [
  15255. {
  15256. name: "Micro",
  15257. height: math.unit(4, "inches"),
  15258. default: true
  15259. },
  15260. ]
  15261. ))
  15262. characterMakers.push(() => makeCharacter(
  15263. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15264. {
  15265. front: {
  15266. height: math.unit(6, "feet"),
  15267. weight: math.unit(150, "lb"),
  15268. name: "Front",
  15269. image: {
  15270. source: "./media/characters/pandora/front.svg",
  15271. extra: 2720 / 2556,
  15272. bottom: 0.015
  15273. }
  15274. },
  15275. back: {
  15276. height: math.unit(6, "feet"),
  15277. weight: math.unit(150, "lb"),
  15278. name: "Back",
  15279. image: {
  15280. source: "./media/characters/pandora/back.svg",
  15281. extra: 2720 / 2556,
  15282. bottom: 0.01
  15283. }
  15284. },
  15285. beans: {
  15286. height: math.unit(6 / 8, "feet"),
  15287. name: "Beans",
  15288. image: {
  15289. source: "./media/characters/pandora/beans.svg"
  15290. }
  15291. },
  15292. skirt: {
  15293. height: math.unit(6, "feet"),
  15294. weight: math.unit(150, "lb"),
  15295. name: "Skirt",
  15296. image: {
  15297. source: "./media/characters/pandora/skirt.svg",
  15298. extra: 1622 / 1525,
  15299. bottom: 0.015
  15300. }
  15301. },
  15302. hoodie: {
  15303. height: math.unit(6, "feet"),
  15304. weight: math.unit(150, "lb"),
  15305. name: "Hoodie",
  15306. image: {
  15307. source: "./media/characters/pandora/hoodie.svg",
  15308. extra: 1622 / 1525,
  15309. bottom: 0.015
  15310. }
  15311. },
  15312. casual: {
  15313. height: math.unit(6, "feet"),
  15314. weight: math.unit(150, "lb"),
  15315. name: "Casual",
  15316. image: {
  15317. source: "./media/characters/pandora/casual.svg",
  15318. extra: 1622 / 1525,
  15319. bottom: 0.015
  15320. }
  15321. },
  15322. },
  15323. [
  15324. {
  15325. name: "Normal",
  15326. height: math.unit(6, "feet")
  15327. },
  15328. {
  15329. name: "Big Steppy",
  15330. height: math.unit(1, "km"),
  15331. default: true
  15332. },
  15333. ]
  15334. ))
  15335. characterMakers.push(() => makeCharacter(
  15336. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15337. {
  15338. side: {
  15339. height: math.unit(10, "feet"),
  15340. weight: math.unit(800, "kg"),
  15341. name: "Side",
  15342. image: {
  15343. source: "./media/characters/venio-darcony/side.svg",
  15344. extra: 1373 / 1003,
  15345. bottom: 0.037
  15346. }
  15347. },
  15348. front: {
  15349. height: math.unit(19, "feet"),
  15350. weight: math.unit(800, "kg"),
  15351. name: "Front",
  15352. image: {
  15353. source: "./media/characters/venio-darcony/front.svg"
  15354. }
  15355. },
  15356. back: {
  15357. height: math.unit(19, "feet"),
  15358. weight: math.unit(800, "kg"),
  15359. name: "Back",
  15360. image: {
  15361. source: "./media/characters/venio-darcony/back.svg"
  15362. }
  15363. },
  15364. sideNsfw: {
  15365. height: math.unit(10, "feet"),
  15366. weight: math.unit(800, "kg"),
  15367. name: "Side (NSFW)",
  15368. image: {
  15369. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15370. extra: 1373 / 1003,
  15371. bottom: 0.037
  15372. }
  15373. },
  15374. frontNsfw: {
  15375. height: math.unit(19, "feet"),
  15376. weight: math.unit(800, "kg"),
  15377. name: "Front (NSFW)",
  15378. image: {
  15379. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15380. }
  15381. },
  15382. backNsfw: {
  15383. height: math.unit(19, "feet"),
  15384. weight: math.unit(800, "kg"),
  15385. name: "Back (NSFW)",
  15386. image: {
  15387. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15388. }
  15389. },
  15390. sideArmored: {
  15391. height: math.unit(10, "feet"),
  15392. weight: math.unit(800, "kg"),
  15393. name: "Side (Armored)",
  15394. image: {
  15395. source: "./media/characters/venio-darcony/side-armored.svg",
  15396. extra: 1373 / 1003,
  15397. bottom: 0.037
  15398. }
  15399. },
  15400. frontArmored: {
  15401. height: math.unit(19, "feet"),
  15402. weight: math.unit(900, "kg"),
  15403. name: "Front (Armored)",
  15404. image: {
  15405. source: "./media/characters/venio-darcony/front-armored.svg"
  15406. }
  15407. },
  15408. backArmored: {
  15409. height: math.unit(19, "feet"),
  15410. weight: math.unit(900, "kg"),
  15411. name: "Back (Armored)",
  15412. image: {
  15413. source: "./media/characters/venio-darcony/back-armored.svg"
  15414. }
  15415. },
  15416. sword: {
  15417. height: math.unit(10, "feet"),
  15418. weight: math.unit(50, "lb"),
  15419. name: "Sword",
  15420. image: {
  15421. source: "./media/characters/venio-darcony/sword.svg"
  15422. }
  15423. },
  15424. },
  15425. [
  15426. {
  15427. name: "Normal",
  15428. height: math.unit(10, "feet")
  15429. },
  15430. {
  15431. name: "Macro",
  15432. height: math.unit(130, "feet"),
  15433. default: true
  15434. },
  15435. {
  15436. name: "Macro+",
  15437. height: math.unit(240, "feet")
  15438. },
  15439. ]
  15440. ))
  15441. characterMakers.push(() => makeCharacter(
  15442. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15443. {
  15444. front: {
  15445. height: math.unit(6, "feet"),
  15446. weight: math.unit(150, "lb"),
  15447. name: "Front",
  15448. image: {
  15449. source: "./media/characters/veski/front.svg",
  15450. extra: 1299 / 1225,
  15451. bottom: 0.04
  15452. }
  15453. },
  15454. back: {
  15455. height: math.unit(6, "feet"),
  15456. weight: math.unit(150, "lb"),
  15457. name: "Back",
  15458. image: {
  15459. source: "./media/characters/veski/back.svg",
  15460. extra: 1299 / 1225,
  15461. bottom: 0.008
  15462. }
  15463. },
  15464. maw: {
  15465. height: math.unit(1.5 * 1.21, "feet"),
  15466. name: "Maw",
  15467. image: {
  15468. source: "./media/characters/veski/maw.svg"
  15469. }
  15470. },
  15471. },
  15472. [
  15473. {
  15474. name: "Macro",
  15475. height: math.unit(2, "km"),
  15476. default: true
  15477. },
  15478. ]
  15479. ))
  15480. characterMakers.push(() => makeCharacter(
  15481. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15482. {
  15483. front: {
  15484. height: math.unit(5 + 7 / 12, "feet"),
  15485. name: "Front",
  15486. image: {
  15487. source: "./media/characters/isabelle/front.svg",
  15488. extra: 2130 / 1976,
  15489. bottom: 0.05
  15490. }
  15491. },
  15492. },
  15493. [
  15494. {
  15495. name: "Supermicro",
  15496. height: math.unit(10, "micrometers")
  15497. },
  15498. {
  15499. name: "Micro",
  15500. height: math.unit(1, "inch")
  15501. },
  15502. {
  15503. name: "Tiny",
  15504. height: math.unit(5, "inches")
  15505. },
  15506. {
  15507. name: "Standard",
  15508. height: math.unit(5 + 7 / 12, "inches")
  15509. },
  15510. {
  15511. name: "Macro",
  15512. height: math.unit(80, "meters"),
  15513. default: true
  15514. },
  15515. {
  15516. name: "Megamacro",
  15517. height: math.unit(250, "meters")
  15518. },
  15519. {
  15520. name: "Gigamacro",
  15521. height: math.unit(5, "km")
  15522. },
  15523. {
  15524. name: "Cosmic",
  15525. height: math.unit(2.5e6, "miles")
  15526. },
  15527. ]
  15528. ))
  15529. characterMakers.push(() => makeCharacter(
  15530. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15531. {
  15532. front: {
  15533. height: math.unit(6, "feet"),
  15534. weight: math.unit(150, "lb"),
  15535. name: "Front",
  15536. image: {
  15537. source: "./media/characters/hanzo/front.svg",
  15538. extra: 374 / 344,
  15539. bottom: 0.02
  15540. }
  15541. },
  15542. },
  15543. [
  15544. {
  15545. name: "Normal",
  15546. height: math.unit(8, "feet"),
  15547. default: true
  15548. },
  15549. ]
  15550. ))
  15551. characterMakers.push(() => makeCharacter(
  15552. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15553. {
  15554. front: {
  15555. height: math.unit(7, "feet"),
  15556. weight: math.unit(130, "lb"),
  15557. name: "Front",
  15558. image: {
  15559. source: "./media/characters/anna/front.svg",
  15560. extra: 169 / 145,
  15561. bottom: 0.06
  15562. }
  15563. },
  15564. full: {
  15565. height: math.unit(4.96, "feet"),
  15566. weight: math.unit(220, "lb"),
  15567. name: "Full",
  15568. image: {
  15569. source: "./media/characters/anna/full.svg",
  15570. extra: 138 / 114,
  15571. bottom: 0.15
  15572. }
  15573. },
  15574. tongue: {
  15575. height: math.unit(2.53, "feet"),
  15576. name: "Tongue",
  15577. image: {
  15578. source: "./media/characters/anna/tongue.svg"
  15579. }
  15580. },
  15581. },
  15582. [
  15583. {
  15584. name: "Normal",
  15585. height: math.unit(7, "feet"),
  15586. default: true
  15587. },
  15588. ]
  15589. ))
  15590. characterMakers.push(() => makeCharacter(
  15591. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15592. {
  15593. front: {
  15594. height: math.unit(7, "feet"),
  15595. weight: math.unit(150, "lb"),
  15596. name: "Front",
  15597. image: {
  15598. source: "./media/characters/ian-corvid/front.svg",
  15599. extra: 150 / 142,
  15600. bottom: 0.02
  15601. }
  15602. },
  15603. back: {
  15604. height: math.unit(7, "feet"),
  15605. weight: math.unit(150, "lb"),
  15606. name: "Back",
  15607. image: {
  15608. source: "./media/characters/ian-corvid/back.svg",
  15609. extra: 150 / 143,
  15610. bottom: 0.01
  15611. }
  15612. },
  15613. stomping: {
  15614. height: math.unit(7, "feet"),
  15615. weight: math.unit(150, "lb"),
  15616. name: "Stomping",
  15617. image: {
  15618. source: "./media/characters/ian-corvid/stomping.svg",
  15619. extra: 76 / 72
  15620. }
  15621. },
  15622. sitting: {
  15623. height: math.unit(7 / 1.8, "feet"),
  15624. weight: math.unit(150, "lb"),
  15625. name: "Sitting",
  15626. image: {
  15627. source: "./media/characters/ian-corvid/sitting.svg",
  15628. extra: 1400 / 1269,
  15629. bottom: 0.15
  15630. }
  15631. },
  15632. },
  15633. [
  15634. {
  15635. name: "Tiny Microw",
  15636. height: math.unit(1, "inch")
  15637. },
  15638. {
  15639. name: "Microw",
  15640. height: math.unit(6, "inches")
  15641. },
  15642. {
  15643. name: "Crow",
  15644. height: math.unit(7 + 1 / 12, "feet"),
  15645. default: true
  15646. },
  15647. {
  15648. name: "Macrow",
  15649. height: math.unit(176, "feet")
  15650. },
  15651. ]
  15652. ))
  15653. characterMakers.push(() => makeCharacter(
  15654. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15655. {
  15656. front: {
  15657. height: math.unit(5 + 7 / 12, "feet"),
  15658. weight: math.unit(147, "lb"),
  15659. name: "Front",
  15660. image: {
  15661. source: "./media/characters/natalie-kellon/front.svg",
  15662. extra: 1214 / 1141,
  15663. bottom: 0.02
  15664. }
  15665. },
  15666. },
  15667. [
  15668. {
  15669. name: "Micro",
  15670. height: math.unit(1 / 16, "inch")
  15671. },
  15672. {
  15673. name: "Tiny",
  15674. height: math.unit(4, "inches")
  15675. },
  15676. {
  15677. name: "Normal",
  15678. height: math.unit(5 + 7 / 12, "feet"),
  15679. default: true
  15680. },
  15681. {
  15682. name: "Amazon",
  15683. height: math.unit(12, "feet")
  15684. },
  15685. {
  15686. name: "Giantess",
  15687. height: math.unit(160, "meters")
  15688. },
  15689. {
  15690. name: "Titaness",
  15691. height: math.unit(800, "meters")
  15692. },
  15693. ]
  15694. ))
  15695. characterMakers.push(() => makeCharacter(
  15696. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15697. {
  15698. front: {
  15699. height: math.unit(6, "feet"),
  15700. weight: math.unit(150, "lb"),
  15701. name: "Front",
  15702. image: {
  15703. source: "./media/characters/alluria/front.svg",
  15704. extra: 806 / 738,
  15705. bottom: 0.01
  15706. }
  15707. },
  15708. side: {
  15709. height: math.unit(6, "feet"),
  15710. weight: math.unit(150, "lb"),
  15711. name: "Side",
  15712. image: {
  15713. source: "./media/characters/alluria/side.svg",
  15714. extra: 800 / 750,
  15715. }
  15716. },
  15717. back: {
  15718. height: math.unit(6, "feet"),
  15719. weight: math.unit(150, "lb"),
  15720. name: "Back",
  15721. image: {
  15722. source: "./media/characters/alluria/back.svg",
  15723. extra: 806 / 738,
  15724. }
  15725. },
  15726. frontMaid: {
  15727. height: math.unit(6, "feet"),
  15728. weight: math.unit(150, "lb"),
  15729. name: "Front (Maid)",
  15730. image: {
  15731. source: "./media/characters/alluria/front-maid.svg",
  15732. extra: 806 / 738,
  15733. bottom: 0.01
  15734. }
  15735. },
  15736. sideMaid: {
  15737. height: math.unit(6, "feet"),
  15738. weight: math.unit(150, "lb"),
  15739. name: "Side (Maid)",
  15740. image: {
  15741. source: "./media/characters/alluria/side-maid.svg",
  15742. extra: 800 / 750,
  15743. bottom: 0.005
  15744. }
  15745. },
  15746. backMaid: {
  15747. height: math.unit(6, "feet"),
  15748. weight: math.unit(150, "lb"),
  15749. name: "Back (Maid)",
  15750. image: {
  15751. source: "./media/characters/alluria/back-maid.svg",
  15752. extra: 806 / 738,
  15753. }
  15754. },
  15755. },
  15756. [
  15757. {
  15758. name: "Micro",
  15759. height: math.unit(6, "inches"),
  15760. default: true
  15761. },
  15762. ]
  15763. ))
  15764. characterMakers.push(() => makeCharacter(
  15765. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  15766. {
  15767. front: {
  15768. height: math.unit(6, "feet"),
  15769. weight: math.unit(150, "lb"),
  15770. name: "Front",
  15771. image: {
  15772. source: "./media/characters/kyle/front.svg",
  15773. extra: 1069 / 962,
  15774. bottom: 77.228 / 1727.45
  15775. }
  15776. },
  15777. },
  15778. [
  15779. {
  15780. name: "Macro",
  15781. height: math.unit(150, "feet"),
  15782. default: true
  15783. },
  15784. ]
  15785. ))
  15786. characterMakers.push(() => makeCharacter(
  15787. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  15788. {
  15789. front: {
  15790. height: math.unit(6, "feet"),
  15791. weight: math.unit(300, "lb"),
  15792. name: "Front",
  15793. image: {
  15794. source: "./media/characters/duncan/front.svg",
  15795. extra: 1650 / 1482,
  15796. bottom: 0.05
  15797. }
  15798. },
  15799. },
  15800. [
  15801. {
  15802. name: "Macro",
  15803. height: math.unit(100, "feet"),
  15804. default: true
  15805. },
  15806. ]
  15807. ))
  15808. characterMakers.push(() => makeCharacter(
  15809. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  15810. {
  15811. front: {
  15812. height: math.unit(5 + 4 / 12, "feet"),
  15813. weight: math.unit(220, "lb"),
  15814. name: "Front",
  15815. image: {
  15816. source: "./media/characters/memory/front.svg",
  15817. extra: 3641 / 3545,
  15818. bottom: 0.03
  15819. }
  15820. },
  15821. back: {
  15822. height: math.unit(5 + 4 / 12, "feet"),
  15823. weight: math.unit(220, "lb"),
  15824. name: "Back",
  15825. image: {
  15826. source: "./media/characters/memory/back.svg",
  15827. extra: 3641 / 3545,
  15828. bottom: 0.025
  15829. }
  15830. },
  15831. frontSkirt: {
  15832. height: math.unit(5 + 4 / 12, "feet"),
  15833. weight: math.unit(220, "lb"),
  15834. name: "Front (Skirt)",
  15835. image: {
  15836. source: "./media/characters/memory/front-skirt.svg",
  15837. extra: 3641 / 3545,
  15838. bottom: 0.03
  15839. }
  15840. },
  15841. frontDress: {
  15842. height: math.unit(5 + 4 / 12, "feet"),
  15843. weight: math.unit(220, "lb"),
  15844. name: "Front (Dress)",
  15845. image: {
  15846. source: "./media/characters/memory/front-dress.svg",
  15847. extra: 3641 / 3545,
  15848. bottom: 0.03
  15849. }
  15850. },
  15851. },
  15852. [
  15853. {
  15854. name: "Micro",
  15855. height: math.unit(6, "inches"),
  15856. default: true
  15857. },
  15858. {
  15859. name: "Normal",
  15860. height: math.unit(5 + 4 / 12, "feet")
  15861. },
  15862. ]
  15863. ))
  15864. characterMakers.push(() => makeCharacter(
  15865. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  15866. {
  15867. front: {
  15868. height: math.unit(4 + 11 / 12, "feet"),
  15869. weight: math.unit(100, "lb"),
  15870. name: "Front",
  15871. image: {
  15872. source: "./media/characters/luno/front.svg",
  15873. extra: 1535 / 1487,
  15874. bottom: 0.03
  15875. }
  15876. },
  15877. },
  15878. [
  15879. {
  15880. name: "Micro",
  15881. height: math.unit(3, "inches")
  15882. },
  15883. {
  15884. name: "Normal",
  15885. height: math.unit(4 + 11 / 12, "feet"),
  15886. default: true
  15887. },
  15888. {
  15889. name: "Macro",
  15890. height: math.unit(300, "feet")
  15891. },
  15892. {
  15893. name: "Megamacro",
  15894. height: math.unit(700, "miles")
  15895. },
  15896. ]
  15897. ))
  15898. characterMakers.push(() => makeCharacter(
  15899. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  15900. {
  15901. front: {
  15902. height: math.unit(6 + 2 / 12, "feet"),
  15903. weight: math.unit(170, "lb"),
  15904. name: "Front",
  15905. image: {
  15906. source: "./media/characters/jamesy/front.svg",
  15907. extra: 440 / 382,
  15908. bottom: 0.005
  15909. }
  15910. },
  15911. },
  15912. [
  15913. {
  15914. name: "Micro",
  15915. height: math.unit(3, "inches")
  15916. },
  15917. {
  15918. name: "Normal",
  15919. height: math.unit(6 + 2 / 12, "feet"),
  15920. default: true
  15921. },
  15922. {
  15923. name: "Macro",
  15924. height: math.unit(300, "feet")
  15925. },
  15926. {
  15927. name: "Megamacro",
  15928. height: math.unit(700, "miles")
  15929. },
  15930. ]
  15931. ))
  15932. characterMakers.push(() => makeCharacter(
  15933. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  15934. {
  15935. front: {
  15936. height: math.unit(6, "feet"),
  15937. weight: math.unit(160, "lb"),
  15938. name: "Front",
  15939. image: {
  15940. source: "./media/characters/mark/front.svg",
  15941. extra: 3300 / 3100,
  15942. bottom: 136.42 / 3440.47
  15943. }
  15944. },
  15945. },
  15946. [
  15947. {
  15948. name: "Macro",
  15949. height: math.unit(120, "meters")
  15950. },
  15951. {
  15952. name: "Bigger Macro",
  15953. height: math.unit(350, "meters")
  15954. },
  15955. {
  15956. name: "Megamacro",
  15957. height: math.unit(8, "km"),
  15958. default: true
  15959. },
  15960. {
  15961. name: "Continental",
  15962. height: math.unit(4550, "km")
  15963. },
  15964. {
  15965. name: "Planetary",
  15966. height: math.unit(65000, "km")
  15967. },
  15968. ]
  15969. ))
  15970. characterMakers.push(() => makeCharacter(
  15971. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  15972. {
  15973. front: {
  15974. height: math.unit(6, "feet"),
  15975. weight: math.unit(400, "lb"),
  15976. name: "Front",
  15977. image: {
  15978. source: "./media/characters/mac/front.svg",
  15979. extra: 1048 / 987.7,
  15980. bottom: 60 / 1107.6,
  15981. }
  15982. },
  15983. },
  15984. [
  15985. {
  15986. name: "Macro",
  15987. height: math.unit(500, "feet"),
  15988. default: true
  15989. },
  15990. ]
  15991. ))
  15992. characterMakers.push(() => makeCharacter(
  15993. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  15994. {
  15995. front: {
  15996. height: math.unit(5 + 2 / 12, "feet"),
  15997. weight: math.unit(190, "lb"),
  15998. name: "Front",
  15999. image: {
  16000. source: "./media/characters/bari/front.svg",
  16001. extra: 3156 / 2880,
  16002. bottom: 0.03
  16003. }
  16004. },
  16005. back: {
  16006. height: math.unit(5 + 2 / 12, "feet"),
  16007. weight: math.unit(190, "lb"),
  16008. name: "Back",
  16009. image: {
  16010. source: "./media/characters/bari/back.svg",
  16011. extra: 3260 / 2834,
  16012. bottom: 0.025
  16013. }
  16014. },
  16015. frontPlush: {
  16016. height: math.unit(5 + 2 / 12, "feet"),
  16017. weight: math.unit(190, "lb"),
  16018. name: "Front (Plush)",
  16019. image: {
  16020. source: "./media/characters/bari/front-plush.svg",
  16021. extra: 1112 / 1061,
  16022. bottom: 0.002
  16023. }
  16024. },
  16025. },
  16026. [
  16027. {
  16028. name: "Micro",
  16029. height: math.unit(3, "inches")
  16030. },
  16031. {
  16032. name: "Normal",
  16033. height: math.unit(5 + 2 / 12, "feet"),
  16034. default: true
  16035. },
  16036. {
  16037. name: "Macro",
  16038. height: math.unit(20, "feet")
  16039. },
  16040. ]
  16041. ))
  16042. characterMakers.push(() => makeCharacter(
  16043. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16044. {
  16045. front: {
  16046. height: math.unit(6 + 1 / 12, "feet"),
  16047. weight: math.unit(275, "lb"),
  16048. name: "Front",
  16049. image: {
  16050. source: "./media/characters/hunter-misha-raven/front.svg"
  16051. }
  16052. },
  16053. },
  16054. [
  16055. {
  16056. name: "Mortal",
  16057. height: math.unit(6 + 1 / 12, "feet")
  16058. },
  16059. {
  16060. name: "Divine",
  16061. height: math.unit(1.12134e34, "parsecs"),
  16062. default: true
  16063. },
  16064. ]
  16065. ))
  16066. characterMakers.push(() => makeCharacter(
  16067. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16068. {
  16069. front: {
  16070. height: math.unit(6 + 3 / 12, "feet"),
  16071. weight: math.unit(220, "lb"),
  16072. name: "Front",
  16073. image: {
  16074. source: "./media/characters/max-calore/front.svg",
  16075. extra: 1700 / 1648,
  16076. bottom: 0.01
  16077. }
  16078. },
  16079. back: {
  16080. height: math.unit(6 + 3 / 12, "feet"),
  16081. weight: math.unit(220, "lb"),
  16082. name: "Back",
  16083. image: {
  16084. source: "./media/characters/max-calore/back.svg",
  16085. extra: 1700 / 1648,
  16086. bottom: 0.01
  16087. }
  16088. },
  16089. },
  16090. [
  16091. {
  16092. name: "Normal",
  16093. height: math.unit(6 + 3 / 12, "feet"),
  16094. default: true
  16095. },
  16096. ]
  16097. ))
  16098. characterMakers.push(() => makeCharacter(
  16099. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16100. {
  16101. side: {
  16102. height: math.unit(2 + 8 / 12, "feet"),
  16103. weight: math.unit(99, "lb"),
  16104. name: "Side",
  16105. image: {
  16106. source: "./media/characters/aspen/side.svg",
  16107. extra: 152 / 138,
  16108. bottom: 0.032
  16109. }
  16110. },
  16111. },
  16112. [
  16113. {
  16114. name: "Normal",
  16115. height: math.unit(2 + 8 / 12, "feet"),
  16116. default: true
  16117. },
  16118. ]
  16119. ))
  16120. characterMakers.push(() => makeCharacter(
  16121. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16122. {
  16123. side: {
  16124. height: math.unit(3 + 2 / 12, "feet"),
  16125. weight: math.unit(224, "lb"),
  16126. name: "Side",
  16127. image: {
  16128. source: "./media/characters/sheila-feral-wolf/side.svg",
  16129. extra: 179 / 166,
  16130. bottom: 0.03
  16131. }
  16132. },
  16133. },
  16134. [
  16135. {
  16136. name: "Normal",
  16137. height: math.unit(3 + 2 / 12, "feet"),
  16138. default: true
  16139. },
  16140. ]
  16141. ))
  16142. characterMakers.push(() => makeCharacter(
  16143. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16144. {
  16145. side: {
  16146. height: math.unit(1 + 9 / 12, "feet"),
  16147. weight: math.unit(38, "lb"),
  16148. name: "Side",
  16149. image: {
  16150. source: "./media/characters/michelle/side.svg",
  16151. extra: 147 / 136.7,
  16152. bottom: 0.03
  16153. }
  16154. },
  16155. },
  16156. [
  16157. {
  16158. name: "Normal",
  16159. height: math.unit(1 + 9 / 12, "feet"),
  16160. default: true
  16161. },
  16162. ]
  16163. ))
  16164. characterMakers.push(() => makeCharacter(
  16165. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16166. {
  16167. front: {
  16168. height: math.unit(1 + 1 / 12, "feet"),
  16169. weight: math.unit(18, "lb"),
  16170. name: "Front",
  16171. image: {
  16172. source: "./media/characters/nino/front.svg"
  16173. }
  16174. },
  16175. },
  16176. [
  16177. {
  16178. name: "Normal",
  16179. height: math.unit(1 + 1 / 12, "feet"),
  16180. default: true
  16181. },
  16182. ]
  16183. ))
  16184. characterMakers.push(() => makeCharacter(
  16185. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16186. {
  16187. front: {
  16188. height: math.unit(1, "feet"),
  16189. weight: math.unit(16, "lb"),
  16190. name: "Front",
  16191. image: {
  16192. source: "./media/characters/viola/front.svg"
  16193. }
  16194. },
  16195. },
  16196. [
  16197. {
  16198. name: "Normal",
  16199. height: math.unit(1, "feet"),
  16200. default: true
  16201. },
  16202. ]
  16203. ))
  16204. characterMakers.push(() => makeCharacter(
  16205. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16206. {
  16207. front: {
  16208. height: math.unit(6 + 5 / 12, "feet"),
  16209. weight: math.unit(580, "lb"),
  16210. name: "Front",
  16211. image: {
  16212. source: "./media/characters/atlas/front.svg",
  16213. extra: 298.5 / 290,
  16214. bottom: 0.015
  16215. }
  16216. },
  16217. },
  16218. [
  16219. {
  16220. name: "Normal",
  16221. height: math.unit(6 + 5 / 12, "feet"),
  16222. default: true
  16223. },
  16224. ]
  16225. ))
  16226. characterMakers.push(() => makeCharacter(
  16227. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16228. {
  16229. side: {
  16230. height: math.unit(1 + 10 / 12, "feet"),
  16231. weight: math.unit(25, "lb"),
  16232. name: "Side",
  16233. image: {
  16234. source: "./media/characters/davy/side.svg",
  16235. extra: 200 / 170,
  16236. bottom: 0.01
  16237. }
  16238. },
  16239. },
  16240. [
  16241. {
  16242. name: "Normal",
  16243. height: math.unit(1 + 10 / 12, "feet"),
  16244. default: true
  16245. },
  16246. ]
  16247. ))
  16248. characterMakers.push(() => makeCharacter(
  16249. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16250. {
  16251. side: {
  16252. height: math.unit(4 + 8 / 12, "feet"),
  16253. weight: math.unit(166, "lb"),
  16254. name: "Side",
  16255. image: {
  16256. source: "./media/characters/fiona/side.svg",
  16257. extra: 232 / 220,
  16258. bottom: 0.03
  16259. }
  16260. },
  16261. },
  16262. [
  16263. {
  16264. name: "Normal",
  16265. height: math.unit(4 + 8 / 12, "feet"),
  16266. default: true
  16267. },
  16268. ]
  16269. ))
  16270. characterMakers.push(() => makeCharacter(
  16271. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16272. {
  16273. front: {
  16274. height: math.unit(2, "feet"),
  16275. weight: math.unit(62, "lb"),
  16276. name: "Front",
  16277. image: {
  16278. source: "./media/characters/lyla/front.svg",
  16279. bottom: 0.1
  16280. }
  16281. },
  16282. },
  16283. [
  16284. {
  16285. name: "Normal",
  16286. height: math.unit(2, "feet"),
  16287. default: true
  16288. },
  16289. ]
  16290. ))
  16291. characterMakers.push(() => makeCharacter(
  16292. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16293. {
  16294. side: {
  16295. height: math.unit(1.8, "feet"),
  16296. weight: math.unit(44, "lb"),
  16297. name: "Side",
  16298. image: {
  16299. source: "./media/characters/perseus/side.svg",
  16300. bottom: 0.21
  16301. }
  16302. },
  16303. },
  16304. [
  16305. {
  16306. name: "Normal",
  16307. height: math.unit(1.8, "feet"),
  16308. default: true
  16309. },
  16310. ]
  16311. ))
  16312. characterMakers.push(() => makeCharacter(
  16313. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16314. {
  16315. side: {
  16316. height: math.unit(4 + 2 / 12, "feet"),
  16317. weight: math.unit(20, "lb"),
  16318. name: "Side",
  16319. image: {
  16320. source: "./media/characters/remus/side.svg"
  16321. }
  16322. },
  16323. },
  16324. [
  16325. {
  16326. name: "Normal",
  16327. height: math.unit(4 + 2 / 12, "feet"),
  16328. default: true
  16329. },
  16330. ]
  16331. ))
  16332. characterMakers.push(() => makeCharacter(
  16333. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16334. {
  16335. front: {
  16336. height: math.unit(4 + 11 / 12, "feet"),
  16337. weight: math.unit(114, "lb"),
  16338. name: "Front",
  16339. image: {
  16340. source: "./media/characters/raf/front.svg",
  16341. bottom: 20.5 / 1863
  16342. }
  16343. },
  16344. side: {
  16345. height: math.unit(4 + 11 / 12, "feet"),
  16346. weight: math.unit(114, "lb"),
  16347. name: "Side",
  16348. image: {
  16349. source: "./media/characters/raf/side.svg",
  16350. bottom: 22 / 1822
  16351. }
  16352. },
  16353. },
  16354. [
  16355. {
  16356. name: "Micro",
  16357. height: math.unit(2, "inches")
  16358. },
  16359. {
  16360. name: "Normal",
  16361. height: math.unit(4 + 11 / 12, "feet"),
  16362. default: true
  16363. },
  16364. {
  16365. name: "Macro",
  16366. height: math.unit(70, "feet")
  16367. },
  16368. ]
  16369. ))
  16370. characterMakers.push(() => makeCharacter(
  16371. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16372. {
  16373. front: {
  16374. height: math.unit(1.5, "meters"),
  16375. weight: math.unit(68, "kg"),
  16376. name: "Front",
  16377. image: {
  16378. source: "./media/characters/liam-einarr/front.svg",
  16379. extra: 2822 / 2666
  16380. }
  16381. },
  16382. back: {
  16383. height: math.unit(1.5, "meters"),
  16384. weight: math.unit(68, "kg"),
  16385. name: "Back",
  16386. image: {
  16387. source: "./media/characters/liam-einarr/back.svg",
  16388. extra: 2822 / 2666,
  16389. bottom: 0.015
  16390. }
  16391. },
  16392. },
  16393. [
  16394. {
  16395. name: "Normal",
  16396. height: math.unit(1.5, "meters"),
  16397. default: true
  16398. },
  16399. {
  16400. name: "Macro",
  16401. height: math.unit(150, "meters")
  16402. },
  16403. {
  16404. name: "Megamacro",
  16405. height: math.unit(35, "km")
  16406. },
  16407. ]
  16408. ))
  16409. characterMakers.push(() => makeCharacter(
  16410. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16411. {
  16412. front: {
  16413. height: math.unit(6, "feet"),
  16414. weight: math.unit(75, "kg"),
  16415. name: "Front",
  16416. image: {
  16417. source: "./media/characters/linda/front.svg",
  16418. extra: 930 / 874,
  16419. bottom: 0.004
  16420. }
  16421. },
  16422. },
  16423. [
  16424. {
  16425. name: "Normal",
  16426. height: math.unit(6, "feet"),
  16427. default: true
  16428. },
  16429. ]
  16430. ))
  16431. characterMakers.push(() => makeCharacter(
  16432. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16433. {
  16434. front: {
  16435. height: math.unit(6 + 8 / 12, "feet"),
  16436. weight: math.unit(220, "lb"),
  16437. name: "Front",
  16438. image: {
  16439. source: "./media/characters/caylex/front.svg",
  16440. extra: 821 / 772,
  16441. bottom: 0.07
  16442. }
  16443. },
  16444. back: {
  16445. height: math.unit(6 + 8 / 12, "feet"),
  16446. weight: math.unit(220, "lb"),
  16447. name: "Back",
  16448. image: {
  16449. source: "./media/characters/caylex/back.svg",
  16450. extra: 821 / 772,
  16451. bottom: 0.022
  16452. }
  16453. },
  16454. hand: {
  16455. height: math.unit(1.25, "feet"),
  16456. name: "Hand",
  16457. image: {
  16458. source: "./media/characters/caylex/hand.svg"
  16459. }
  16460. },
  16461. foot: {
  16462. height: math.unit(1.6, "feet"),
  16463. name: "Foot",
  16464. image: {
  16465. source: "./media/characters/caylex/foot.svg"
  16466. }
  16467. },
  16468. armored: {
  16469. height: math.unit(6 + 8 / 12, "feet"),
  16470. weight: math.unit(250, "lb"),
  16471. name: "Armored",
  16472. image: {
  16473. source: "./media/characters/caylex/armored.svg",
  16474. extra: 1420 / 1310,
  16475. bottom: 0.045
  16476. }
  16477. },
  16478. },
  16479. [
  16480. {
  16481. name: "Normal",
  16482. height: math.unit(6 + 8 / 12, "feet"),
  16483. default: true
  16484. },
  16485. {
  16486. name: "Normal+",
  16487. height: math.unit(12, "feet")
  16488. },
  16489. ]
  16490. ))
  16491. characterMakers.push(() => makeCharacter(
  16492. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16493. {
  16494. front: {
  16495. height: math.unit(7 + 6 / 12, "feet"),
  16496. weight: math.unit(288, "lb"),
  16497. name: "Front",
  16498. image: {
  16499. source: "./media/characters/alana/front.svg",
  16500. extra: 679 / 653,
  16501. bottom: 22.5 / 701
  16502. }
  16503. },
  16504. },
  16505. [
  16506. {
  16507. name: "Normal",
  16508. height: math.unit(7 + 6 / 12, "feet")
  16509. },
  16510. {
  16511. name: "Large",
  16512. height: math.unit(50, "feet")
  16513. },
  16514. {
  16515. name: "Macro",
  16516. height: math.unit(100, "feet"),
  16517. default: true
  16518. },
  16519. {
  16520. name: "Macro+",
  16521. height: math.unit(200, "feet")
  16522. },
  16523. ]
  16524. ))
  16525. characterMakers.push(() => makeCharacter(
  16526. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16527. {
  16528. front: {
  16529. height: math.unit(6 + 1 / 12, "feet"),
  16530. weight: math.unit(210, "lb"),
  16531. name: "Front",
  16532. image: {
  16533. source: "./media/characters/hasani/front.svg",
  16534. extra: 244 / 232,
  16535. bottom: 0.01
  16536. }
  16537. },
  16538. back: {
  16539. height: math.unit(6 + 1 / 12, "feet"),
  16540. weight: math.unit(210, "lb"),
  16541. name: "Back",
  16542. image: {
  16543. source: "./media/characters/hasani/back.svg",
  16544. extra: 244 / 232,
  16545. bottom: 0.01
  16546. }
  16547. },
  16548. },
  16549. [
  16550. {
  16551. name: "Normal",
  16552. height: math.unit(6 + 1 / 12, "feet")
  16553. },
  16554. {
  16555. name: "Macro",
  16556. height: math.unit(175, "feet"),
  16557. default: true
  16558. },
  16559. ]
  16560. ))
  16561. characterMakers.push(() => makeCharacter(
  16562. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16563. {
  16564. front: {
  16565. height: math.unit(1.82, "meters"),
  16566. weight: math.unit(140, "lb"),
  16567. name: "Front",
  16568. image: {
  16569. source: "./media/characters/nita/front.svg",
  16570. extra: 2473 / 2363,
  16571. bottom: 0.01
  16572. }
  16573. },
  16574. },
  16575. [
  16576. {
  16577. name: "Normal",
  16578. height: math.unit(1.82, "m")
  16579. },
  16580. {
  16581. name: "Macro",
  16582. height: math.unit(300, "m")
  16583. },
  16584. {
  16585. name: "Mistake Canon",
  16586. height: math.unit(0.5, "miles"),
  16587. default: true
  16588. },
  16589. {
  16590. name: "Big Mistake",
  16591. height: math.unit(13, "miles")
  16592. },
  16593. {
  16594. name: "Playing God",
  16595. height: math.unit(2450, "miles")
  16596. },
  16597. ]
  16598. ))
  16599. characterMakers.push(() => makeCharacter(
  16600. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16601. {
  16602. front: {
  16603. height: math.unit(4, "feet"),
  16604. weight: math.unit(120, "lb"),
  16605. name: "Front",
  16606. image: {
  16607. source: "./media/characters/shiriko/front.svg",
  16608. extra: 195 / 188
  16609. }
  16610. },
  16611. },
  16612. [
  16613. {
  16614. name: "Normal",
  16615. height: math.unit(4, "feet"),
  16616. default: true
  16617. },
  16618. ]
  16619. ))
  16620. characterMakers.push(() => makeCharacter(
  16621. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16622. {
  16623. front: {
  16624. height: math.unit(6, "feet"),
  16625. name: "front",
  16626. image: {
  16627. source: "./media/characters/deja/front.svg",
  16628. extra: 926 / 840,
  16629. bottom: 0.07
  16630. }
  16631. },
  16632. },
  16633. [
  16634. {
  16635. name: "Planck Length",
  16636. height: math.unit(1.6e-35, "meters")
  16637. },
  16638. {
  16639. name: "Normal",
  16640. height: math.unit(30.48, "meters"),
  16641. default: true
  16642. },
  16643. {
  16644. name: "Universal",
  16645. height: math.unit(8.8e26, "meters")
  16646. },
  16647. ]
  16648. ))
  16649. characterMakers.push(() => makeCharacter(
  16650. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16651. {
  16652. side: {
  16653. height: math.unit(8, "feet"),
  16654. weight: math.unit(6300, "lb"),
  16655. name: "Side",
  16656. image: {
  16657. source: "./media/characters/anima/side.svg",
  16658. bottom: 0.035
  16659. }
  16660. },
  16661. },
  16662. [
  16663. {
  16664. name: "Normal",
  16665. height: math.unit(8, "feet"),
  16666. default: true
  16667. },
  16668. ]
  16669. ))
  16670. characterMakers.push(() => makeCharacter(
  16671. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16672. {
  16673. front: {
  16674. height: math.unit(8, "feet"),
  16675. weight: math.unit(350, "lb"),
  16676. name: "Front",
  16677. image: {
  16678. source: "./media/characters/bianca/front.svg",
  16679. extra: 234 / 225,
  16680. bottom: 0.03
  16681. }
  16682. },
  16683. },
  16684. [
  16685. {
  16686. name: "Normal",
  16687. height: math.unit(8, "feet"),
  16688. default: true
  16689. },
  16690. ]
  16691. ))
  16692. characterMakers.push(() => makeCharacter(
  16693. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16694. {
  16695. front: {
  16696. height: math.unit(6, "feet"),
  16697. weight: math.unit(150, "lb"),
  16698. name: "Front",
  16699. image: {
  16700. source: "./media/characters/adinia/front.svg",
  16701. extra: 1845 / 1672,
  16702. bottom: 0.02
  16703. }
  16704. },
  16705. back: {
  16706. height: math.unit(6, "feet"),
  16707. weight: math.unit(150, "lb"),
  16708. name: "Back",
  16709. image: {
  16710. source: "./media/characters/adinia/back.svg",
  16711. extra: 1845 / 1672,
  16712. bottom: 0.002
  16713. }
  16714. },
  16715. },
  16716. [
  16717. {
  16718. name: "Normal",
  16719. height: math.unit(11 + 5 / 12, "feet"),
  16720. default: true
  16721. },
  16722. ]
  16723. ))
  16724. characterMakers.push(() => makeCharacter(
  16725. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16726. {
  16727. front: {
  16728. height: math.unit(3, "meters"),
  16729. weight: math.unit(200, "kg"),
  16730. name: "Front",
  16731. image: {
  16732. source: "./media/characters/lykasa/front.svg",
  16733. extra: 1076 / 976,
  16734. bottom: 0.06
  16735. }
  16736. },
  16737. },
  16738. [
  16739. {
  16740. name: "Normal",
  16741. height: math.unit(3, "meters")
  16742. },
  16743. {
  16744. name: "Kaiju",
  16745. height: math.unit(120, "meters"),
  16746. default: true
  16747. },
  16748. {
  16749. name: "Mega Kaiju",
  16750. height: math.unit(240, "km")
  16751. },
  16752. {
  16753. name: "Giga Kaiju",
  16754. height: math.unit(400, "megameters")
  16755. },
  16756. {
  16757. name: "Tera Kaiju",
  16758. height: math.unit(800, "gigameters")
  16759. },
  16760. {
  16761. name: "Kaiju Dragon Goddess",
  16762. height: math.unit(26, "zettaparsecs")
  16763. },
  16764. ]
  16765. ))
  16766. characterMakers.push(() => makeCharacter(
  16767. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  16768. {
  16769. side: {
  16770. height: math.unit(283 / 124 * 6, "feet"),
  16771. weight: math.unit(35000, "lb"),
  16772. name: "Side",
  16773. image: {
  16774. source: "./media/characters/malfaren/side.svg",
  16775. extra: 2500 / 1010,
  16776. bottom: 0.01
  16777. }
  16778. },
  16779. front: {
  16780. height: math.unit(22.36, "feet"),
  16781. weight: math.unit(35000, "lb"),
  16782. name: "Front",
  16783. image: {
  16784. source: "./media/characters/malfaren/front.svg",
  16785. extra: 1631 / 1476,
  16786. bottom: 0.01
  16787. }
  16788. },
  16789. maw: {
  16790. height: math.unit(6.9, "feet"),
  16791. name: "Maw",
  16792. image: {
  16793. source: "./media/characters/malfaren/maw.svg"
  16794. }
  16795. },
  16796. },
  16797. [
  16798. {
  16799. name: "Big",
  16800. height: math.unit(283 / 162 * 6, "feet"),
  16801. },
  16802. {
  16803. name: "Bigger",
  16804. height: math.unit(283 / 124 * 6, "feet")
  16805. },
  16806. {
  16807. name: "Massive",
  16808. height: math.unit(283 / 92 * 6, "feet"),
  16809. default: true
  16810. },
  16811. {
  16812. name: "👀💦",
  16813. height: math.unit(283 / 73 * 6, "feet"),
  16814. },
  16815. ]
  16816. ))
  16817. characterMakers.push(() => makeCharacter(
  16818. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  16819. {
  16820. front: {
  16821. height: math.unit(1.7, "m"),
  16822. weight: math.unit(70, "kg"),
  16823. name: "Front",
  16824. image: {
  16825. source: "./media/characters/kernel/front.svg",
  16826. extra: 222 / 210,
  16827. bottom: 0.007
  16828. }
  16829. },
  16830. },
  16831. [
  16832. {
  16833. name: "Nano",
  16834. height: math.unit(17, "micrometers")
  16835. },
  16836. {
  16837. name: "Micro",
  16838. height: math.unit(1.7, "mm")
  16839. },
  16840. {
  16841. name: "Small",
  16842. height: math.unit(1.7, "cm")
  16843. },
  16844. {
  16845. name: "Normal",
  16846. height: math.unit(1.7, "m"),
  16847. default: true
  16848. },
  16849. ]
  16850. ))
  16851. characterMakers.push(() => makeCharacter(
  16852. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  16853. {
  16854. front: {
  16855. height: math.unit(1.75, "meters"),
  16856. weight: math.unit(65, "kg"),
  16857. name: "Front",
  16858. image: {
  16859. source: "./media/characters/jayne-folest/front.svg",
  16860. extra: 2115 / 2007,
  16861. bottom: 0.02
  16862. }
  16863. },
  16864. back: {
  16865. height: math.unit(1.75, "meters"),
  16866. weight: math.unit(65, "kg"),
  16867. name: "Back",
  16868. image: {
  16869. source: "./media/characters/jayne-folest/back.svg",
  16870. extra: 2115 / 2007,
  16871. bottom: 0.005
  16872. }
  16873. },
  16874. frontClothed: {
  16875. height: math.unit(1.75, "meters"),
  16876. weight: math.unit(65, "kg"),
  16877. name: "Front (Clothed)",
  16878. image: {
  16879. source: "./media/characters/jayne-folest/front-clothed.svg",
  16880. extra: 2115 / 2007,
  16881. bottom: 0.035
  16882. }
  16883. },
  16884. hand: {
  16885. height: math.unit(1 / 1.260, "feet"),
  16886. name: "Hand",
  16887. image: {
  16888. source: "./media/characters/jayne-folest/hand.svg"
  16889. }
  16890. },
  16891. foot: {
  16892. height: math.unit(1 / 0.918, "feet"),
  16893. name: "Foot",
  16894. image: {
  16895. source: "./media/characters/jayne-folest/foot.svg"
  16896. }
  16897. },
  16898. },
  16899. [
  16900. {
  16901. name: "Micro",
  16902. height: math.unit(4, "cm")
  16903. },
  16904. {
  16905. name: "Normal",
  16906. height: math.unit(1.75, "meters")
  16907. },
  16908. {
  16909. name: "Macro",
  16910. height: math.unit(47.5, "meters"),
  16911. default: true
  16912. },
  16913. ]
  16914. ))
  16915. characterMakers.push(() => makeCharacter(
  16916. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  16917. {
  16918. front: {
  16919. height: math.unit(180, "cm"),
  16920. weight: math.unit(70, "kg"),
  16921. name: "Front",
  16922. image: {
  16923. source: "./media/characters/algier/front.svg",
  16924. extra: 596 / 572,
  16925. bottom: 0.04
  16926. }
  16927. },
  16928. back: {
  16929. height: math.unit(180, "cm"),
  16930. weight: math.unit(70, "kg"),
  16931. name: "Back",
  16932. image: {
  16933. source: "./media/characters/algier/back.svg",
  16934. extra: 596 / 572,
  16935. bottom: 0.025
  16936. }
  16937. },
  16938. frontdressed: {
  16939. height: math.unit(180, "cm"),
  16940. weight: math.unit(150, "kg"),
  16941. name: "Front-dressed",
  16942. image: {
  16943. source: "./media/characters/algier/front-dressed.svg",
  16944. extra: 596 / 572,
  16945. bottom: 0.038
  16946. }
  16947. },
  16948. },
  16949. [
  16950. {
  16951. name: "Micro",
  16952. height: math.unit(5, "cm")
  16953. },
  16954. {
  16955. name: "Normal",
  16956. height: math.unit(180, "cm"),
  16957. default: true
  16958. },
  16959. {
  16960. name: "Macro",
  16961. height: math.unit(64, "m")
  16962. },
  16963. ]
  16964. ))
  16965. characterMakers.push(() => makeCharacter(
  16966. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  16967. {
  16968. upright: {
  16969. height: math.unit(7, "feet"),
  16970. weight: math.unit(300, "lb"),
  16971. name: "Upright",
  16972. image: {
  16973. source: "./media/characters/pretzel/upright.svg",
  16974. extra: 534 / 522,
  16975. bottom: 0.065
  16976. }
  16977. },
  16978. sprawling: {
  16979. height: math.unit(3.75, "feet"),
  16980. weight: math.unit(300, "lb"),
  16981. name: "Sprawling",
  16982. image: {
  16983. source: "./media/characters/pretzel/sprawling.svg",
  16984. extra: 314 / 281,
  16985. bottom: 0.1
  16986. }
  16987. },
  16988. tongue: {
  16989. height: math.unit(2, "feet"),
  16990. name: "Tongue",
  16991. image: {
  16992. source: "./media/characters/pretzel/tongue.svg"
  16993. }
  16994. },
  16995. },
  16996. [
  16997. {
  16998. name: "Normal",
  16999. height: math.unit(7, "feet"),
  17000. default: true
  17001. },
  17002. {
  17003. name: "Oversized",
  17004. height: math.unit(15, "feet")
  17005. },
  17006. {
  17007. name: "Huge",
  17008. height: math.unit(30, "feet")
  17009. },
  17010. {
  17011. name: "Macro",
  17012. height: math.unit(250, "feet")
  17013. },
  17014. ]
  17015. ))
  17016. characterMakers.push(() => makeCharacter(
  17017. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17018. {
  17019. sideFront: {
  17020. height: math.unit(5 + 2 / 12, "feet"),
  17021. weight: math.unit(120, "lb"),
  17022. name: "Front Side",
  17023. image: {
  17024. source: "./media/characters/roxi/side-front.svg",
  17025. extra: 2924 / 2717,
  17026. bottom: 0.08
  17027. }
  17028. },
  17029. sideBack: {
  17030. height: math.unit(5 + 2 / 12, "feet"),
  17031. weight: math.unit(120, "lb"),
  17032. name: "Back Side",
  17033. image: {
  17034. source: "./media/characters/roxi/side-back.svg",
  17035. extra: 2904 / 2693,
  17036. bottom: 0.06
  17037. }
  17038. },
  17039. front: {
  17040. height: math.unit(5 + 2 / 12, "feet"),
  17041. weight: math.unit(120, "lb"),
  17042. name: "Front",
  17043. image: {
  17044. source: "./media/characters/roxi/front.svg",
  17045. extra: 2028 / 1907,
  17046. bottom: 0.01
  17047. }
  17048. },
  17049. frontAlt: {
  17050. height: math.unit(5 + 2 / 12, "feet"),
  17051. weight: math.unit(120, "lb"),
  17052. name: "Front (Alt)",
  17053. image: {
  17054. source: "./media/characters/roxi/front-alt.svg",
  17055. extra: 1828 / 1798,
  17056. bottom: 0.01
  17057. }
  17058. },
  17059. sitting: {
  17060. height: math.unit(2.8, "feet"),
  17061. weight: math.unit(120, "lb"),
  17062. name: "Sitting",
  17063. image: {
  17064. source: "./media/characters/roxi/sitting.svg",
  17065. extra: 2660 / 2462,
  17066. bottom: 0.1
  17067. }
  17068. },
  17069. },
  17070. [
  17071. {
  17072. name: "Normal",
  17073. height: math.unit(5 + 2 / 12, "feet"),
  17074. default: true
  17075. },
  17076. ]
  17077. ))
  17078. characterMakers.push(() => makeCharacter(
  17079. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17080. {
  17081. side: {
  17082. height: math.unit(55, "feet"),
  17083. weight: math.unit(153, "tons"),
  17084. name: "Side",
  17085. image: {
  17086. source: "./media/characters/shadow/side.svg",
  17087. extra: 701 / 628,
  17088. bottom: 0.02
  17089. }
  17090. },
  17091. flying: {
  17092. height: math.unit(145, "feet"),
  17093. weight: math.unit(153, "tons"),
  17094. name: "Flying",
  17095. image: {
  17096. source: "./media/characters/shadow/flying.svg"
  17097. }
  17098. },
  17099. },
  17100. [
  17101. {
  17102. name: "Normal",
  17103. height: math.unit(55, "feet"),
  17104. default: true
  17105. },
  17106. ]
  17107. ))
  17108. characterMakers.push(() => makeCharacter(
  17109. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17110. {
  17111. front: {
  17112. height: math.unit(6, "feet"),
  17113. weight: math.unit(200, "lb"),
  17114. name: "Front",
  17115. image: {
  17116. source: "./media/characters/marcie/front.svg",
  17117. extra: 960 / 876,
  17118. bottom: 58 / 1017.87
  17119. }
  17120. },
  17121. },
  17122. [
  17123. {
  17124. name: "Macro",
  17125. height: math.unit(1, "mile"),
  17126. default: true
  17127. },
  17128. ]
  17129. ))
  17130. characterMakers.push(() => makeCharacter(
  17131. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17132. {
  17133. front: {
  17134. height: math.unit(7, "feet"),
  17135. weight: math.unit(200, "lb"),
  17136. name: "Front",
  17137. image: {
  17138. source: "./media/characters/kachina/front.svg",
  17139. extra: 1290.68 / 1119,
  17140. bottom: 36.5 / 1327.18
  17141. }
  17142. },
  17143. },
  17144. [
  17145. {
  17146. name: "Normal",
  17147. height: math.unit(7, "feet"),
  17148. default: true
  17149. },
  17150. ]
  17151. ))
  17152. characterMakers.push(() => makeCharacter(
  17153. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17154. {
  17155. looking: {
  17156. height: math.unit(2, "meters"),
  17157. weight: math.unit(300, "kg"),
  17158. name: "Looking",
  17159. image: {
  17160. source: "./media/characters/kash/looking.svg",
  17161. extra: 474 / 344,
  17162. bottom: 0.03
  17163. }
  17164. },
  17165. side: {
  17166. height: math.unit(2, "meters"),
  17167. weight: math.unit(300, "kg"),
  17168. name: "Side",
  17169. image: {
  17170. source: "./media/characters/kash/side.svg",
  17171. extra: 302 / 251,
  17172. bottom: 0.03
  17173. }
  17174. },
  17175. front: {
  17176. height: math.unit(2, "meters"),
  17177. weight: math.unit(300, "kg"),
  17178. name: "Front",
  17179. image: {
  17180. source: "./media/characters/kash/front.svg",
  17181. extra: 495 / 360,
  17182. bottom: 0.015
  17183. }
  17184. },
  17185. },
  17186. [
  17187. {
  17188. name: "Normal",
  17189. height: math.unit(2, "meters"),
  17190. default: true
  17191. },
  17192. {
  17193. name: "Big",
  17194. height: math.unit(3, "meters")
  17195. },
  17196. {
  17197. name: "Large",
  17198. height: math.unit(5, "meters")
  17199. },
  17200. ]
  17201. ))
  17202. characterMakers.push(() => makeCharacter(
  17203. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17204. {
  17205. feeding: {
  17206. height: math.unit(6.7, "feet"),
  17207. weight: math.unit(350, "lb"),
  17208. name: "Feeding",
  17209. image: {
  17210. source: "./media/characters/lalim/feeding.svg",
  17211. }
  17212. },
  17213. },
  17214. [
  17215. {
  17216. name: "Normal",
  17217. height: math.unit(6.7, "feet"),
  17218. default: true
  17219. },
  17220. ]
  17221. ))
  17222. characterMakers.push(() => makeCharacter(
  17223. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17224. {
  17225. front: {
  17226. height: math.unit(9.5, "feet"),
  17227. weight: math.unit(600, "lb"),
  17228. name: "Front",
  17229. image: {
  17230. source: "./media/characters/de'vout/front.svg",
  17231. extra: 1443 / 1328,
  17232. bottom: 0.025
  17233. }
  17234. },
  17235. back: {
  17236. height: math.unit(9.5, "feet"),
  17237. weight: math.unit(600, "lb"),
  17238. name: "Back",
  17239. image: {
  17240. source: "./media/characters/de'vout/back.svg",
  17241. extra: 1443 / 1328
  17242. }
  17243. },
  17244. frontDressed: {
  17245. height: math.unit(9.5, "feet"),
  17246. weight: math.unit(600, "lb"),
  17247. name: "Front (Dressed",
  17248. image: {
  17249. source: "./media/characters/de'vout/front-dressed.svg",
  17250. extra: 1443 / 1328,
  17251. bottom: 0.025
  17252. }
  17253. },
  17254. backDressed: {
  17255. height: math.unit(9.5, "feet"),
  17256. weight: math.unit(600, "lb"),
  17257. name: "Back (Dressed",
  17258. image: {
  17259. source: "./media/characters/de'vout/back-dressed.svg",
  17260. extra: 1443 / 1328
  17261. }
  17262. },
  17263. },
  17264. [
  17265. {
  17266. name: "Normal",
  17267. height: math.unit(9.5, "feet"),
  17268. default: true
  17269. },
  17270. ]
  17271. ))
  17272. characterMakers.push(() => makeCharacter(
  17273. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17274. {
  17275. front: {
  17276. height: math.unit(8, "feet"),
  17277. weight: math.unit(225, "lb"),
  17278. name: "Front",
  17279. image: {
  17280. source: "./media/characters/talana/front.svg",
  17281. extra: 1410 / 1300,
  17282. bottom: 0.015
  17283. }
  17284. },
  17285. frontDressed: {
  17286. height: math.unit(8, "feet"),
  17287. weight: math.unit(225, "lb"),
  17288. name: "Front (Dressed",
  17289. image: {
  17290. source: "./media/characters/talana/front-dressed.svg",
  17291. extra: 1410 / 1300,
  17292. bottom: 0.015
  17293. }
  17294. },
  17295. },
  17296. [
  17297. {
  17298. name: "Normal",
  17299. height: math.unit(8, "feet"),
  17300. default: true
  17301. },
  17302. ]
  17303. ))
  17304. characterMakers.push(() => makeCharacter(
  17305. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17306. {
  17307. side: {
  17308. height: math.unit(7.2, "feet"),
  17309. weight: math.unit(150, "lb"),
  17310. name: "Side",
  17311. image: {
  17312. source: "./media/characters/xeauvok/side.svg",
  17313. extra: 1975 / 1523,
  17314. bottom: 0.07
  17315. }
  17316. },
  17317. },
  17318. [
  17319. {
  17320. name: "Normal",
  17321. height: math.unit(7.2, "feet"),
  17322. default: true
  17323. },
  17324. ]
  17325. ))
  17326. characterMakers.push(() => makeCharacter(
  17327. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17328. {
  17329. side: {
  17330. height: math.unit(10, "feet"),
  17331. weight: math.unit(900, "kg"),
  17332. name: "Side",
  17333. image: {
  17334. source: "./media/characters/zara/side.svg",
  17335. extra: 504 / 498
  17336. }
  17337. },
  17338. },
  17339. [
  17340. {
  17341. name: "Normal",
  17342. height: math.unit(10, "feet"),
  17343. default: true
  17344. },
  17345. ]
  17346. ))
  17347. characterMakers.push(() => makeCharacter(
  17348. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17349. {
  17350. side: {
  17351. height: math.unit(6, "feet"),
  17352. weight: math.unit(150, "lb"),
  17353. name: "Side",
  17354. image: {
  17355. source: "./media/characters/richard-dragon/side.svg",
  17356. extra: 845 / 340,
  17357. bottom: 0.017
  17358. }
  17359. },
  17360. maw: {
  17361. height: math.unit(2.97, "feet"),
  17362. name: "Maw",
  17363. image: {
  17364. source: "./media/characters/richard-dragon/maw.svg"
  17365. }
  17366. },
  17367. },
  17368. [
  17369. ]
  17370. ))
  17371. characterMakers.push(() => makeCharacter(
  17372. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17373. {
  17374. front: {
  17375. height: math.unit(4, "feet"),
  17376. weight: math.unit(100, "lb"),
  17377. name: "Front",
  17378. image: {
  17379. source: "./media/characters/richard-smeargle/front.svg",
  17380. extra: 2952 / 2820,
  17381. bottom: 0.028
  17382. }
  17383. },
  17384. },
  17385. [
  17386. {
  17387. name: "Normal",
  17388. height: math.unit(4, "feet"),
  17389. default: true
  17390. },
  17391. {
  17392. name: "Dynamax",
  17393. height: math.unit(20, "meters")
  17394. },
  17395. ]
  17396. ))
  17397. characterMakers.push(() => makeCharacter(
  17398. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17399. {
  17400. front: {
  17401. height: math.unit(6, "feet"),
  17402. weight: math.unit(110, "lb"),
  17403. name: "Front",
  17404. image: {
  17405. source: "./media/characters/klay/front.svg",
  17406. extra: 962 / 883,
  17407. bottom: 0.04
  17408. }
  17409. },
  17410. back: {
  17411. height: math.unit(6, "feet"),
  17412. weight: math.unit(110, "lb"),
  17413. name: "Back",
  17414. image: {
  17415. source: "./media/characters/klay/back.svg",
  17416. extra: 962 / 883
  17417. }
  17418. },
  17419. beans: {
  17420. height: math.unit(1.15, "feet"),
  17421. name: "Beans",
  17422. image: {
  17423. source: "./media/characters/klay/beans.svg"
  17424. }
  17425. },
  17426. },
  17427. [
  17428. {
  17429. name: "Micro",
  17430. height: math.unit(6, "inches")
  17431. },
  17432. {
  17433. name: "Mini",
  17434. height: math.unit(3, "feet")
  17435. },
  17436. {
  17437. name: "Normal",
  17438. height: math.unit(6, "feet"),
  17439. default: true
  17440. },
  17441. {
  17442. name: "Big",
  17443. height: math.unit(25, "feet")
  17444. },
  17445. {
  17446. name: "Macro",
  17447. height: math.unit(100, "feet")
  17448. },
  17449. {
  17450. name: "Megamacro",
  17451. height: math.unit(400, "feet")
  17452. },
  17453. ]
  17454. ))
  17455. characterMakers.push(() => makeCharacter(
  17456. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17457. {
  17458. front: {
  17459. height: math.unit(6, "feet"),
  17460. weight: math.unit(160, "lb"),
  17461. name: "Front",
  17462. image: {
  17463. source: "./media/characters/marcus/front.svg",
  17464. extra: 734 / 676,
  17465. bottom: 0.03
  17466. }
  17467. },
  17468. },
  17469. [
  17470. {
  17471. name: "Little",
  17472. height: math.unit(6, "feet")
  17473. },
  17474. {
  17475. name: "Normal",
  17476. height: math.unit(110, "feet"),
  17477. default: true
  17478. },
  17479. {
  17480. name: "Macro",
  17481. height: math.unit(250, "feet")
  17482. },
  17483. {
  17484. name: "Megamacro",
  17485. height: math.unit(1000, "feet")
  17486. },
  17487. ]
  17488. ))
  17489. characterMakers.push(() => makeCharacter(
  17490. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17491. {
  17492. front: {
  17493. height: math.unit(7, "feet"),
  17494. weight: math.unit(275, "lb"),
  17495. name: "Front",
  17496. image: {
  17497. source: "./media/characters/claude-delroute/front.svg",
  17498. extra: 230 / 214,
  17499. bottom: 0.007
  17500. }
  17501. },
  17502. side: {
  17503. height: math.unit(7, "feet"),
  17504. weight: math.unit(275, "lb"),
  17505. name: "Side",
  17506. image: {
  17507. source: "./media/characters/claude-delroute/side.svg",
  17508. extra: 222 / 214,
  17509. bottom: 0.01
  17510. }
  17511. },
  17512. back: {
  17513. height: math.unit(7, "feet"),
  17514. weight: math.unit(275, "lb"),
  17515. name: "Back",
  17516. image: {
  17517. source: "./media/characters/claude-delroute/back.svg",
  17518. extra: 230 / 214,
  17519. bottom: 0.015
  17520. }
  17521. },
  17522. maw: {
  17523. height: math.unit(0.6407, "meters"),
  17524. name: "Maw",
  17525. image: {
  17526. source: "./media/characters/claude-delroute/maw.svg"
  17527. }
  17528. },
  17529. },
  17530. [
  17531. {
  17532. name: "Normal",
  17533. height: math.unit(7, "feet"),
  17534. default: true
  17535. },
  17536. {
  17537. name: "Lorge",
  17538. height: math.unit(20, "feet")
  17539. },
  17540. ]
  17541. ))
  17542. characterMakers.push(() => makeCharacter(
  17543. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17544. {
  17545. front: {
  17546. height: math.unit(8 + 4 / 12, "feet"),
  17547. weight: math.unit(600, "lb"),
  17548. name: "Front",
  17549. image: {
  17550. source: "./media/characters/dragonien/front.svg",
  17551. extra: 100 / 94,
  17552. bottom: 3.3 / 103.3445
  17553. }
  17554. },
  17555. back: {
  17556. height: math.unit(8 + 4 / 12, "feet"),
  17557. weight: math.unit(600, "lb"),
  17558. name: "Back",
  17559. image: {
  17560. source: "./media/characters/dragonien/back.svg",
  17561. extra: 776 / 746,
  17562. bottom: 6.4 / 782.0616
  17563. }
  17564. },
  17565. foot: {
  17566. height: math.unit(1.54, "feet"),
  17567. name: "Foot",
  17568. image: {
  17569. source: "./media/characters/dragonien/foot.svg",
  17570. }
  17571. },
  17572. },
  17573. [
  17574. {
  17575. name: "Normal",
  17576. height: math.unit(8 + 4 / 12, "feet"),
  17577. default: true
  17578. },
  17579. {
  17580. name: "Macro",
  17581. height: math.unit(200, "feet")
  17582. },
  17583. {
  17584. name: "Megamacro",
  17585. height: math.unit(1, "mile")
  17586. },
  17587. {
  17588. name: "Gigamacro",
  17589. height: math.unit(1000, "miles")
  17590. },
  17591. ]
  17592. ))
  17593. characterMakers.push(() => makeCharacter(
  17594. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17595. {
  17596. front: {
  17597. height: math.unit(5 + 2 / 12, "feet"),
  17598. weight: math.unit(110, "lb"),
  17599. name: "Front",
  17600. image: {
  17601. source: "./media/characters/desta/front.svg",
  17602. extra: 767 / 726,
  17603. bottom: 11.7 / 779
  17604. }
  17605. },
  17606. back: {
  17607. height: math.unit(5 + 2 / 12, "feet"),
  17608. weight: math.unit(110, "lb"),
  17609. name: "Back",
  17610. image: {
  17611. source: "./media/characters/desta/back.svg",
  17612. extra: 777 / 728,
  17613. bottom: 6 / 784
  17614. }
  17615. },
  17616. frontAlt: {
  17617. height: math.unit(5 + 2 / 12, "feet"),
  17618. weight: math.unit(110, "lb"),
  17619. name: "Front",
  17620. image: {
  17621. source: "./media/characters/desta/front-alt.svg",
  17622. extra: 1482 / 1417
  17623. }
  17624. },
  17625. side: {
  17626. height: math.unit(5 + 2 / 12, "feet"),
  17627. weight: math.unit(110, "lb"),
  17628. name: "Side",
  17629. image: {
  17630. source: "./media/characters/desta/side.svg",
  17631. extra: 2579 / 2491,
  17632. bottom: 0.053
  17633. }
  17634. },
  17635. },
  17636. [
  17637. {
  17638. name: "Micro",
  17639. height: math.unit(6, "inches")
  17640. },
  17641. {
  17642. name: "Normal",
  17643. height: math.unit(5 + 2 / 12, "feet"),
  17644. default: true
  17645. },
  17646. {
  17647. name: "Macro",
  17648. height: math.unit(62, "feet")
  17649. },
  17650. {
  17651. name: "Megamacro",
  17652. height: math.unit(1800, "feet")
  17653. },
  17654. ]
  17655. ))
  17656. characterMakers.push(() => makeCharacter(
  17657. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17658. {
  17659. front: {
  17660. height: math.unit(10, "feet"),
  17661. weight: math.unit(700, "lb"),
  17662. name: "Front",
  17663. image: {
  17664. source: "./media/characters/storm-alystar/front.svg",
  17665. extra: 2112 / 1898,
  17666. bottom: 0.034
  17667. }
  17668. },
  17669. },
  17670. [
  17671. {
  17672. name: "Micro",
  17673. height: math.unit(3.5, "inches")
  17674. },
  17675. {
  17676. name: "Normal",
  17677. height: math.unit(10, "feet"),
  17678. default: true
  17679. },
  17680. {
  17681. name: "Macro",
  17682. height: math.unit(400, "feet")
  17683. },
  17684. {
  17685. name: "Deific",
  17686. height: math.unit(60, "miles")
  17687. },
  17688. ]
  17689. ))
  17690. characterMakers.push(() => makeCharacter(
  17691. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17692. {
  17693. front: {
  17694. height: math.unit(2.35, "meters"),
  17695. weight: math.unit(119, "kg"),
  17696. name: "Front",
  17697. image: {
  17698. source: "./media/characters/ilia/front.svg",
  17699. extra: 1285 / 1255,
  17700. bottom: 0.06
  17701. }
  17702. },
  17703. },
  17704. [
  17705. {
  17706. name: "Normal",
  17707. height: math.unit(2.35, "meters")
  17708. },
  17709. {
  17710. name: "Macro",
  17711. height: math.unit(140, "meters"),
  17712. default: true
  17713. },
  17714. {
  17715. name: "Megamacro",
  17716. height: math.unit(100, "miles")
  17717. },
  17718. ]
  17719. ))
  17720. characterMakers.push(() => makeCharacter(
  17721. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17722. {
  17723. front: {
  17724. height: math.unit(6 + 5 / 12, "feet"),
  17725. weight: math.unit(190, "lb"),
  17726. name: "Front",
  17727. image: {
  17728. source: "./media/characters/kingdead/front.svg",
  17729. extra: 1228 / 1177
  17730. }
  17731. },
  17732. },
  17733. [
  17734. {
  17735. name: "Micro",
  17736. height: math.unit(7, "inches")
  17737. },
  17738. {
  17739. name: "Normal",
  17740. height: math.unit(6 + 5 / 12, "feet")
  17741. },
  17742. {
  17743. name: "Macro",
  17744. height: math.unit(150, "feet"),
  17745. default: true
  17746. },
  17747. {
  17748. name: "Megamacro",
  17749. height: math.unit(200, "miles")
  17750. },
  17751. ]
  17752. ))
  17753. characterMakers.push(() => makeCharacter(
  17754. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17755. {
  17756. front: {
  17757. height: math.unit(8, "feet"),
  17758. weight: math.unit(600, "lb"),
  17759. name: "Front",
  17760. image: {
  17761. source: "./media/characters/kyrehx/front.svg",
  17762. extra: 1195 / 1095,
  17763. bottom: 0.034
  17764. }
  17765. },
  17766. },
  17767. [
  17768. {
  17769. name: "Micro",
  17770. height: math.unit(2, "inches")
  17771. },
  17772. {
  17773. name: "Normal",
  17774. height: math.unit(8, "feet"),
  17775. default: true
  17776. },
  17777. {
  17778. name: "Macro",
  17779. height: math.unit(255, "feet")
  17780. },
  17781. ]
  17782. ))
  17783. characterMakers.push(() => makeCharacter(
  17784. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  17785. {
  17786. front: {
  17787. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17788. weight: math.unit(184, "lb"),
  17789. name: "Front",
  17790. image: {
  17791. source: "./media/characters/xang/front.svg",
  17792. extra: 845 / 755
  17793. }
  17794. },
  17795. },
  17796. [
  17797. {
  17798. name: "Normal",
  17799. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  17800. default: true
  17801. },
  17802. {
  17803. name: "Macro",
  17804. height: math.unit(0.935 * 146, "feet")
  17805. },
  17806. {
  17807. name: "Megamacro",
  17808. height: math.unit(0.935 * 3, "miles")
  17809. },
  17810. ]
  17811. ))
  17812. characterMakers.push(() => makeCharacter(
  17813. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  17814. {
  17815. frontDressed: {
  17816. height: math.unit(5 + 7 / 12, "feet"),
  17817. weight: math.unit(140, "lb"),
  17818. name: "Front (Dressed)",
  17819. image: {
  17820. source: "./media/characters/doc-weardno/front-dressed.svg",
  17821. extra: 263 / 234
  17822. }
  17823. },
  17824. backDressed: {
  17825. height: math.unit(5 + 7 / 12, "feet"),
  17826. weight: math.unit(140, "lb"),
  17827. name: "Back (Dressed)",
  17828. image: {
  17829. source: "./media/characters/doc-weardno/back-dressed.svg",
  17830. extra: 266 / 238
  17831. }
  17832. },
  17833. front: {
  17834. height: math.unit(5 + 7 / 12, "feet"),
  17835. weight: math.unit(140, "lb"),
  17836. name: "Front",
  17837. image: {
  17838. source: "./media/characters/doc-weardno/front.svg",
  17839. extra: 254 / 233
  17840. }
  17841. },
  17842. },
  17843. [
  17844. {
  17845. name: "Micro",
  17846. height: math.unit(3, "inches")
  17847. },
  17848. {
  17849. name: "Normal",
  17850. height: math.unit(5 + 7 / 12, "feet"),
  17851. default: true
  17852. },
  17853. {
  17854. name: "Macro",
  17855. height: math.unit(25, "feet")
  17856. },
  17857. {
  17858. name: "Megamacro",
  17859. height: math.unit(2, "miles")
  17860. },
  17861. ]
  17862. ))
  17863. characterMakers.push(() => makeCharacter(
  17864. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  17865. {
  17866. front: {
  17867. height: math.unit(6 + 2 / 12, "feet"),
  17868. weight: math.unit(153, "lb"),
  17869. name: "Front",
  17870. image: {
  17871. source: "./media/characters/seth-whilst/front.svg",
  17872. bottom: 0.07
  17873. }
  17874. },
  17875. },
  17876. [
  17877. {
  17878. name: "Micro",
  17879. height: math.unit(5, "inches")
  17880. },
  17881. {
  17882. name: "Normal",
  17883. height: math.unit(6 + 2 / 12, "feet"),
  17884. default: true
  17885. },
  17886. ]
  17887. ))
  17888. characterMakers.push(() => makeCharacter(
  17889. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  17890. {
  17891. front: {
  17892. height: math.unit(3, "inches"),
  17893. weight: math.unit(8, "grams"),
  17894. name: "Front",
  17895. image: {
  17896. source: "./media/characters/pocket-jabari/front.svg",
  17897. extra: 1024 / 974,
  17898. bottom: 0.039
  17899. }
  17900. },
  17901. },
  17902. [
  17903. {
  17904. name: "Minimicro",
  17905. height: math.unit(8, "mm")
  17906. },
  17907. {
  17908. name: "Micro",
  17909. height: math.unit(3, "inches"),
  17910. default: true
  17911. },
  17912. {
  17913. name: "Normal",
  17914. height: math.unit(3, "feet")
  17915. },
  17916. ]
  17917. ))
  17918. characterMakers.push(() => makeCharacter(
  17919. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  17920. {
  17921. front: {
  17922. height: math.unit(15, "feet"),
  17923. weight: math.unit(3280, "lb"),
  17924. name: "Front",
  17925. image: {
  17926. source: "./media/characters/sapphy/front.svg",
  17927. extra: 671 / 577,
  17928. bottom: 0.085
  17929. }
  17930. },
  17931. back: {
  17932. height: math.unit(15, "feet"),
  17933. weight: math.unit(3280, "lb"),
  17934. name: "Back",
  17935. image: {
  17936. source: "./media/characters/sapphy/back.svg",
  17937. extra: 631 / 607,
  17938. bottom: 0.045
  17939. }
  17940. },
  17941. },
  17942. [
  17943. {
  17944. name: "Normal",
  17945. height: math.unit(15, "feet")
  17946. },
  17947. {
  17948. name: "Casual Macro",
  17949. height: math.unit(120, "feet")
  17950. },
  17951. {
  17952. name: "Macro",
  17953. height: math.unit(2150, "feet"),
  17954. default: true
  17955. },
  17956. {
  17957. name: "Megamacro",
  17958. height: math.unit(8, "miles")
  17959. },
  17960. {
  17961. name: "Galaxy Mom",
  17962. height: math.unit(6, "megalightyears")
  17963. },
  17964. ]
  17965. ))
  17966. characterMakers.push(() => makeCharacter(
  17967. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  17968. {
  17969. front: {
  17970. height: math.unit(6, "feet"),
  17971. weight: math.unit(170, "lb"),
  17972. name: "Front",
  17973. image: {
  17974. source: "./media/characters/kiro/front.svg",
  17975. extra: 1064 / 1012,
  17976. bottom: 0.052
  17977. }
  17978. },
  17979. },
  17980. [
  17981. {
  17982. name: "Micro",
  17983. height: math.unit(6, "inches")
  17984. },
  17985. {
  17986. name: "Normal",
  17987. height: math.unit(6, "feet"),
  17988. default: true
  17989. },
  17990. {
  17991. name: "Macro",
  17992. height: math.unit(72, "feet")
  17993. },
  17994. ]
  17995. ))
  17996. characterMakers.push(() => makeCharacter(
  17997. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  17998. {
  17999. front: {
  18000. height: math.unit(5 + 9 / 12, "feet"),
  18001. weight: math.unit(175, "lb"),
  18002. name: "Front",
  18003. image: {
  18004. source: "./media/characters/irishfox/front.svg",
  18005. extra: 1912 / 1680,
  18006. bottom: 0.02
  18007. }
  18008. },
  18009. },
  18010. [
  18011. {
  18012. name: "Nano",
  18013. height: math.unit(1, "mm")
  18014. },
  18015. {
  18016. name: "Micro",
  18017. height: math.unit(2, "inches")
  18018. },
  18019. {
  18020. name: "Normal",
  18021. height: math.unit(5 + 9 / 12, "feet"),
  18022. default: true
  18023. },
  18024. {
  18025. name: "Macro",
  18026. height: math.unit(45, "feet")
  18027. },
  18028. ]
  18029. ))
  18030. characterMakers.push(() => makeCharacter(
  18031. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18032. {
  18033. front: {
  18034. height: math.unit(6 + 1 / 12, "feet"),
  18035. weight: math.unit(150, "lb"),
  18036. name: "Front",
  18037. image: {
  18038. source: "./media/characters/aronai-sieyes/front.svg",
  18039. extra: 1556 / 1480,
  18040. bottom: 0.015
  18041. }
  18042. },
  18043. side: {
  18044. height: math.unit(6 + 1 / 12, "feet"),
  18045. weight: math.unit(150, "lb"),
  18046. name: "Side",
  18047. image: {
  18048. source: "./media/characters/aronai-sieyes/side.svg",
  18049. extra: 1433 / 1390,
  18050. bottom: 0.0393
  18051. }
  18052. },
  18053. back: {
  18054. height: math.unit(6 + 1 / 12, "feet"),
  18055. weight: math.unit(150, "lb"),
  18056. name: "Back",
  18057. image: {
  18058. source: "./media/characters/aronai-sieyes/back.svg",
  18059. extra: 1544 / 1494,
  18060. bottom: 0.02
  18061. }
  18062. },
  18063. frontClothed: {
  18064. height: math.unit(6 + 1 / 12, "feet"),
  18065. weight: math.unit(150, "lb"),
  18066. name: "Front (Clothed)",
  18067. image: {
  18068. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18069. extra: 1582 / 1527
  18070. }
  18071. },
  18072. feral: {
  18073. height: math.unit(18, "feet"),
  18074. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  18075. name: "Feral",
  18076. image: {
  18077. source: "./media/characters/aronai-sieyes/feral.svg",
  18078. extra: 1530 / 1240,
  18079. bottom: 0.035
  18080. }
  18081. },
  18082. },
  18083. [
  18084. {
  18085. name: "Micro",
  18086. height: math.unit(2, "inches")
  18087. },
  18088. {
  18089. name: "Normal",
  18090. height: math.unit(6 + 1 / 12, "feet"),
  18091. default: true
  18092. }
  18093. ]
  18094. ))
  18095. characterMakers.push(() => makeCharacter(
  18096. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18097. {
  18098. front: {
  18099. height: math.unit(12, "feet"),
  18100. weight: math.unit(410, "kg"),
  18101. name: "Front",
  18102. image: {
  18103. source: "./media/characters/xuna/front.svg",
  18104. extra: 2184 / 1980
  18105. }
  18106. },
  18107. side: {
  18108. height: math.unit(12, "feet"),
  18109. weight: math.unit(410, "kg"),
  18110. name: "Side",
  18111. image: {
  18112. source: "./media/characters/xuna/side.svg",
  18113. extra: 2184 / 1980
  18114. }
  18115. },
  18116. back: {
  18117. height: math.unit(12, "feet"),
  18118. weight: math.unit(410, "kg"),
  18119. name: "Back",
  18120. image: {
  18121. source: "./media/characters/xuna/back.svg",
  18122. extra: 2184 / 1980
  18123. }
  18124. },
  18125. },
  18126. [
  18127. {
  18128. name: "Nano glow",
  18129. height: math.unit(10, "nm")
  18130. },
  18131. {
  18132. name: "Micro floof",
  18133. height: math.unit(0.3, "m")
  18134. },
  18135. {
  18136. name: "Huggable softy boi",
  18137. height: math.unit(3.6576, "m"),
  18138. default: true
  18139. },
  18140. {
  18141. name: "Admirable floof",
  18142. height: math.unit(80, "meters")
  18143. },
  18144. {
  18145. name: "Gentle macro",
  18146. height: math.unit(300, "meters")
  18147. },
  18148. {
  18149. name: "Very careful floof",
  18150. height: math.unit(3200, "meters")
  18151. },
  18152. {
  18153. name: "The mega floof",
  18154. height: math.unit(36000, "meters")
  18155. },
  18156. {
  18157. name: "Giga-fur-Wicker",
  18158. height: math.unit(4800000, "meters")
  18159. },
  18160. {
  18161. name: "Licky world",
  18162. height: math.unit(20000000, "meters")
  18163. },
  18164. {
  18165. name: "Floofy cyan sun",
  18166. height: math.unit(1500000000, "meters")
  18167. },
  18168. {
  18169. name: "Milky Wicker",
  18170. height: math.unit(1000000000000000000000, "meters")
  18171. },
  18172. {
  18173. name: "The observing Wicker",
  18174. height: math.unit(999999999999999999999999999, "meters")
  18175. },
  18176. ]
  18177. ))
  18178. characterMakers.push(() => makeCharacter(
  18179. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18180. {
  18181. front: {
  18182. height: math.unit(5 + 9 / 12, "feet"),
  18183. weight: math.unit(150, "lb"),
  18184. name: "Front",
  18185. image: {
  18186. source: "./media/characters/arokha-sieyes/front.svg",
  18187. extra: 1425 / 1284,
  18188. bottom: 0.05
  18189. }
  18190. },
  18191. },
  18192. [
  18193. {
  18194. name: "Normal",
  18195. height: math.unit(5 + 9 / 12, "feet")
  18196. },
  18197. {
  18198. name: "Macro",
  18199. height: math.unit(30, "meters"),
  18200. default: true
  18201. },
  18202. ]
  18203. ))
  18204. characterMakers.push(() => makeCharacter(
  18205. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18206. {
  18207. front: {
  18208. height: math.unit(6, "feet"),
  18209. weight: math.unit(180, "lb"),
  18210. name: "Front",
  18211. image: {
  18212. source: "./media/characters/arokh-sieyes/front.svg",
  18213. extra: 1830 / 1769,
  18214. bottom: 0.01
  18215. }
  18216. },
  18217. },
  18218. [
  18219. {
  18220. name: "Normal",
  18221. height: math.unit(6, "feet")
  18222. },
  18223. {
  18224. name: "Macro",
  18225. height: math.unit(30, "meters"),
  18226. default: true
  18227. },
  18228. ]
  18229. ))
  18230. characterMakers.push(() => makeCharacter(
  18231. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18232. {
  18233. side: {
  18234. height: math.unit(13 + 1 / 12, "feet"),
  18235. weight: math.unit(8.5, "tonnes"),
  18236. name: "Side",
  18237. image: {
  18238. source: "./media/characters/goldeneye/side.svg",
  18239. extra: 1182 / 778,
  18240. bottom: 0.067
  18241. }
  18242. },
  18243. paw: {
  18244. height: math.unit(3.4, "feet"),
  18245. name: "Paw",
  18246. image: {
  18247. source: "./media/characters/goldeneye/paw.svg"
  18248. }
  18249. },
  18250. },
  18251. [
  18252. {
  18253. name: "Normal",
  18254. height: math.unit(13 + 1 / 12, "feet"),
  18255. default: true
  18256. },
  18257. ]
  18258. ))
  18259. characterMakers.push(() => makeCharacter(
  18260. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18261. {
  18262. front: {
  18263. height: math.unit(6 + 1 / 12, "feet"),
  18264. weight: math.unit(210, "lb"),
  18265. name: "Front",
  18266. image: {
  18267. source: "./media/characters/leonardo-lycheborne/front.svg",
  18268. extra: 390 / 365,
  18269. bottom: 0.032
  18270. }
  18271. },
  18272. side: {
  18273. height: math.unit(6 + 1 / 12, "feet"),
  18274. weight: math.unit(210, "lb"),
  18275. name: "Side",
  18276. image: {
  18277. source: "./media/characters/leonardo-lycheborne/side.svg",
  18278. extra: 390 / 365,
  18279. bottom: 0.005
  18280. }
  18281. },
  18282. back: {
  18283. height: math.unit(6 + 1 / 12, "feet"),
  18284. weight: math.unit(210, "lb"),
  18285. name: "Back",
  18286. image: {
  18287. source: "./media/characters/leonardo-lycheborne/back.svg",
  18288. extra: 392 / 366,
  18289. bottom: 0.01
  18290. }
  18291. },
  18292. hand: {
  18293. height: math.unit(1.08, "feet"),
  18294. name: "Hand",
  18295. image: {
  18296. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18297. }
  18298. },
  18299. foot: {
  18300. height: math.unit(1.32, "feet"),
  18301. name: "Foot",
  18302. image: {
  18303. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18304. }
  18305. },
  18306. were: {
  18307. height: math.unit(20, "feet"),
  18308. weight: math.unit(7800, "lb"),
  18309. name: "Were",
  18310. image: {
  18311. source: "./media/characters/leonardo-lycheborne/were.svg",
  18312. extra: 308 / 294,
  18313. bottom: 0.048
  18314. }
  18315. },
  18316. feral: {
  18317. height: math.unit(7.5, "feet"),
  18318. weight: math.unit(600, "lb"),
  18319. name: "Feral",
  18320. image: {
  18321. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18322. extra: 210 / 186,
  18323. bottom: 0.108
  18324. }
  18325. },
  18326. taur: {
  18327. height: math.unit(11, "feet"),
  18328. weight: math.unit(3300, "lb"),
  18329. name: "Taur",
  18330. image: {
  18331. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18332. extra: 320 / 303,
  18333. bottom: 0.025
  18334. }
  18335. },
  18336. barghest: {
  18337. height: math.unit(11, "feet"),
  18338. weight: math.unit(1300, "lb"),
  18339. name: "Barghest",
  18340. image: {
  18341. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18342. extra: 323 / 302,
  18343. bottom: 0.027
  18344. }
  18345. },
  18346. dick: {
  18347. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18348. name: "Dick",
  18349. image: {
  18350. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18351. }
  18352. },
  18353. dickWere: {
  18354. height: math.unit((20) / 3.8, "feet"),
  18355. name: "Dick (Were)",
  18356. image: {
  18357. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18358. }
  18359. },
  18360. },
  18361. [
  18362. {
  18363. name: "Normal",
  18364. height: math.unit(6 + 1 / 12, "feet"),
  18365. default: true
  18366. },
  18367. ]
  18368. ))
  18369. characterMakers.push(() => makeCharacter(
  18370. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18371. {
  18372. front: {
  18373. height: math.unit(10, "feet"),
  18374. weight: math.unit(350, "lb"),
  18375. name: "Front",
  18376. image: {
  18377. source: "./media/characters/jet/front.svg",
  18378. extra: 2050 / 1980,
  18379. bottom: 0.013
  18380. }
  18381. },
  18382. back: {
  18383. height: math.unit(10, "feet"),
  18384. weight: math.unit(350, "lb"),
  18385. name: "Back",
  18386. image: {
  18387. source: "./media/characters/jet/back.svg",
  18388. extra: 2050 / 1980,
  18389. bottom: 0.013
  18390. }
  18391. },
  18392. },
  18393. [
  18394. {
  18395. name: "Micro",
  18396. height: math.unit(6, "inches")
  18397. },
  18398. {
  18399. name: "Normal",
  18400. height: math.unit(10, "feet"),
  18401. default: true
  18402. },
  18403. {
  18404. name: "Macro",
  18405. height: math.unit(100, "feet")
  18406. },
  18407. ]
  18408. ))
  18409. characterMakers.push(() => makeCharacter(
  18410. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18411. {
  18412. front: {
  18413. height: math.unit(15, "feet"),
  18414. weight: math.unit(2800, "lb"),
  18415. name: "Front",
  18416. image: {
  18417. source: "./media/characters/tanarath/front.svg",
  18418. extra: 2392 / 2220,
  18419. bottom: 0.03
  18420. }
  18421. },
  18422. back: {
  18423. height: math.unit(15, "feet"),
  18424. weight: math.unit(2800, "lb"),
  18425. name: "Back",
  18426. image: {
  18427. source: "./media/characters/tanarath/back.svg",
  18428. extra: 2392 / 2220,
  18429. bottom: 0.03
  18430. }
  18431. },
  18432. },
  18433. [
  18434. {
  18435. name: "Normal",
  18436. height: math.unit(15, "feet"),
  18437. default: true
  18438. },
  18439. ]
  18440. ))
  18441. characterMakers.push(() => makeCharacter(
  18442. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18443. {
  18444. front: {
  18445. height: math.unit(7 + 1 / 12, "feet"),
  18446. weight: math.unit(175, "lb"),
  18447. name: "Front",
  18448. image: {
  18449. source: "./media/characters/patty-cattybatty/front.svg",
  18450. extra: 908 / 874,
  18451. bottom: 0.025
  18452. }
  18453. },
  18454. },
  18455. [
  18456. {
  18457. name: "Micro",
  18458. height: math.unit(1, "inch")
  18459. },
  18460. {
  18461. name: "Normal",
  18462. height: math.unit(7 + 1 / 12, "feet")
  18463. },
  18464. {
  18465. name: "Mini Macro",
  18466. height: math.unit(155, "feet")
  18467. },
  18468. {
  18469. name: "Macro",
  18470. height: math.unit(1077, "feet")
  18471. },
  18472. {
  18473. name: "Mega Macro",
  18474. height: math.unit(47650, "feet"),
  18475. default: true
  18476. },
  18477. {
  18478. name: "Giga Macro",
  18479. height: math.unit(440, "miles")
  18480. },
  18481. {
  18482. name: "Tera Macro",
  18483. height: math.unit(8700, "miles")
  18484. },
  18485. {
  18486. name: "Planetary Macro",
  18487. height: math.unit(32700, "miles")
  18488. },
  18489. {
  18490. name: "Solar Macro",
  18491. height: math.unit(550000, "miles")
  18492. },
  18493. {
  18494. name: "Celestial Macro",
  18495. height: math.unit(2.5, "AU")
  18496. },
  18497. ]
  18498. ))
  18499. characterMakers.push(() => makeCharacter(
  18500. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18501. {
  18502. front: {
  18503. height: math.unit(4 + 5 / 12, "feet"),
  18504. weight: math.unit(90, "lb"),
  18505. name: "Front",
  18506. image: {
  18507. source: "./media/characters/cappu/front.svg",
  18508. extra: 1247 / 1152,
  18509. bottom: 0.012
  18510. }
  18511. },
  18512. },
  18513. [
  18514. {
  18515. name: "Normal",
  18516. height: math.unit(4 + 5 / 12, "feet"),
  18517. default: true
  18518. },
  18519. ]
  18520. ))
  18521. characterMakers.push(() => makeCharacter(
  18522. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18523. {
  18524. frontDressed: {
  18525. height: math.unit(70, "cm"),
  18526. weight: math.unit(6, "kg"),
  18527. name: "Front (Dressed)",
  18528. image: {
  18529. source: "./media/characters/sebi/front-dressed.svg",
  18530. extra: 713.5 / 686.5,
  18531. bottom: 0.003
  18532. }
  18533. },
  18534. front: {
  18535. height: math.unit(70, "cm"),
  18536. weight: math.unit(5, "kg"),
  18537. name: "Front",
  18538. image: {
  18539. source: "./media/characters/sebi/front.svg",
  18540. extra: 713.5 / 686.5,
  18541. bottom: 0.003
  18542. }
  18543. }
  18544. },
  18545. [
  18546. {
  18547. name: "Normal",
  18548. height: math.unit(70, "cm"),
  18549. default: true
  18550. },
  18551. {
  18552. name: "Macro",
  18553. height: math.unit(8, "meters")
  18554. },
  18555. ]
  18556. ))
  18557. characterMakers.push(() => makeCharacter(
  18558. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18559. {
  18560. front: {
  18561. height: math.unit(6, "feet"),
  18562. weight: math.unit(150, "lb"),
  18563. name: "Front",
  18564. image: {
  18565. source: "./media/characters/typhek/front.svg",
  18566. extra: 1948 / 1929,
  18567. bottom: 0.025
  18568. }
  18569. },
  18570. side: {
  18571. height: math.unit(6, "feet"),
  18572. weight: math.unit(150, "lb"),
  18573. name: "Side",
  18574. image: {
  18575. source: "./media/characters/typhek/side.svg",
  18576. extra: 2034 / 2010,
  18577. bottom: 0.003
  18578. }
  18579. },
  18580. back: {
  18581. height: math.unit(6, "feet"),
  18582. weight: math.unit(150, "lb"),
  18583. name: "Back",
  18584. image: {
  18585. source: "./media/characters/typhek/back.svg",
  18586. extra: 2005 / 1978,
  18587. bottom: 0.004
  18588. }
  18589. },
  18590. palm: {
  18591. height: math.unit(1.2, "feet"),
  18592. name: "Palm",
  18593. image: {
  18594. source: "./media/characters/typhek/palm.svg"
  18595. }
  18596. },
  18597. fist: {
  18598. height: math.unit(1.1, "feet"),
  18599. name: "Fist",
  18600. image: {
  18601. source: "./media/characters/typhek/fist.svg"
  18602. }
  18603. },
  18604. foot: {
  18605. height: math.unit(1.57, "feet"),
  18606. name: "Foot",
  18607. image: {
  18608. source: "./media/characters/typhek/foot.svg"
  18609. }
  18610. },
  18611. sole: {
  18612. height: math.unit(2.05, "feet"),
  18613. name: "Sole",
  18614. image: {
  18615. source: "./media/characters/typhek/sole.svg"
  18616. }
  18617. },
  18618. },
  18619. [
  18620. {
  18621. name: "Macro",
  18622. height: math.unit(40, "stories"),
  18623. default: true
  18624. },
  18625. {
  18626. name: "Megamacro",
  18627. height: math.unit(1, "mile")
  18628. },
  18629. {
  18630. name: "Gigamacro",
  18631. height: math.unit(4000, "solarradii")
  18632. },
  18633. {
  18634. name: "Universal",
  18635. height: math.unit(1.1, "universes")
  18636. }
  18637. ]
  18638. ))
  18639. characterMakers.push(() => makeCharacter(
  18640. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18641. {
  18642. side: {
  18643. height: math.unit(5 + 7 / 12, "feet"),
  18644. weight: math.unit(150, "lb"),
  18645. name: "Side",
  18646. image: {
  18647. source: "./media/characters/kassy/side.svg",
  18648. extra: 1280 / 1225,
  18649. bottom: 0.002
  18650. }
  18651. },
  18652. front: {
  18653. height: math.unit(5 + 7 / 12, "feet"),
  18654. weight: math.unit(150, "lb"),
  18655. name: "Front",
  18656. image: {
  18657. source: "./media/characters/kassy/front.svg",
  18658. extra: 1280 / 1225,
  18659. bottom: 0.025
  18660. }
  18661. },
  18662. back: {
  18663. height: math.unit(5 + 7 / 12, "feet"),
  18664. weight: math.unit(150, "lb"),
  18665. name: "Back",
  18666. image: {
  18667. source: "./media/characters/kassy/back.svg",
  18668. extra: 1280 / 1225,
  18669. bottom: 0.002
  18670. }
  18671. },
  18672. foot: {
  18673. height: math.unit(1.266, "feet"),
  18674. name: "Foot",
  18675. image: {
  18676. source: "./media/characters/kassy/foot.svg"
  18677. }
  18678. },
  18679. },
  18680. [
  18681. {
  18682. name: "Normal",
  18683. height: math.unit(5 + 7 / 12, "feet")
  18684. },
  18685. {
  18686. name: "Macro",
  18687. height: math.unit(137, "feet"),
  18688. default: true
  18689. },
  18690. {
  18691. name: "Megamacro",
  18692. height: math.unit(1, "mile")
  18693. },
  18694. ]
  18695. ))
  18696. characterMakers.push(() => makeCharacter(
  18697. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18698. {
  18699. front: {
  18700. height: math.unit(6 + 1 / 12, "feet"),
  18701. weight: math.unit(200, "lb"),
  18702. name: "Front",
  18703. image: {
  18704. source: "./media/characters/neil/front.svg",
  18705. extra: 1326 / 1250,
  18706. bottom: 0.023
  18707. }
  18708. },
  18709. },
  18710. [
  18711. {
  18712. name: "Normal",
  18713. height: math.unit(6 + 1 / 12, "feet"),
  18714. default: true
  18715. },
  18716. {
  18717. name: "Macro",
  18718. height: math.unit(200, "feet")
  18719. },
  18720. ]
  18721. ))
  18722. characterMakers.push(() => makeCharacter(
  18723. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18724. {
  18725. front: {
  18726. height: math.unit(5 + 9 / 12, "feet"),
  18727. weight: math.unit(190, "lb"),
  18728. name: "Front",
  18729. image: {
  18730. source: "./media/characters/atticus/front.svg",
  18731. extra: 2934 / 2785,
  18732. bottom: 0.025
  18733. }
  18734. },
  18735. },
  18736. [
  18737. {
  18738. name: "Normal",
  18739. height: math.unit(5 + 9 / 12, "feet"),
  18740. default: true
  18741. },
  18742. {
  18743. name: "Macro",
  18744. height: math.unit(180, "feet")
  18745. },
  18746. ]
  18747. ))
  18748. characterMakers.push(() => makeCharacter(
  18749. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18750. {
  18751. side: {
  18752. height: math.unit(9, "feet"),
  18753. weight: math.unit(650, "lb"),
  18754. name: "Side",
  18755. image: {
  18756. source: "./media/characters/milo/side.svg",
  18757. extra: 2644 / 2310,
  18758. bottom: 0.032
  18759. }
  18760. },
  18761. },
  18762. [
  18763. {
  18764. name: "Normal",
  18765. height: math.unit(9, "feet"),
  18766. default: true
  18767. },
  18768. {
  18769. name: "Macro",
  18770. height: math.unit(300, "feet")
  18771. },
  18772. ]
  18773. ))
  18774. characterMakers.push(() => makeCharacter(
  18775. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  18776. {
  18777. side: {
  18778. height: math.unit(8, "meters"),
  18779. weight: math.unit(90000, "kg"),
  18780. name: "Side",
  18781. image: {
  18782. source: "./media/characters/ijzer/side.svg",
  18783. extra: 2756 / 1600,
  18784. bottom: 0.01
  18785. }
  18786. },
  18787. },
  18788. [
  18789. {
  18790. name: "Small",
  18791. height: math.unit(3, "meters")
  18792. },
  18793. {
  18794. name: "Normal",
  18795. height: math.unit(8, "meters"),
  18796. default: true
  18797. },
  18798. {
  18799. name: "Normal+",
  18800. height: math.unit(10, "meters")
  18801. },
  18802. {
  18803. name: "Bigger",
  18804. height: math.unit(24, "meters")
  18805. },
  18806. {
  18807. name: "Huge",
  18808. height: math.unit(80, "meters")
  18809. },
  18810. ]
  18811. ))
  18812. characterMakers.push(() => makeCharacter(
  18813. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  18814. {
  18815. front: {
  18816. height: math.unit(6 + 2 / 12, "feet"),
  18817. weight: math.unit(153, "lb"),
  18818. name: "Front",
  18819. image: {
  18820. source: "./media/characters/luca-cervicum/front.svg",
  18821. extra: 370 / 327,
  18822. bottom: 0.015
  18823. }
  18824. },
  18825. back: {
  18826. height: math.unit(6 + 2 / 12, "feet"),
  18827. weight: math.unit(153, "lb"),
  18828. name: "Back",
  18829. image: {
  18830. source: "./media/characters/luca-cervicum/back.svg",
  18831. extra: 367 / 333,
  18832. bottom: 0.005
  18833. }
  18834. },
  18835. frontGear: {
  18836. height: math.unit(6 + 2 / 12, "feet"),
  18837. weight: math.unit(173, "lb"),
  18838. name: "Front (Gear)",
  18839. image: {
  18840. source: "./media/characters/luca-cervicum/front-gear.svg",
  18841. extra: 377 / 333,
  18842. bottom: 0.006
  18843. }
  18844. },
  18845. },
  18846. [
  18847. {
  18848. name: "Normal",
  18849. height: math.unit(6 + 2 / 12, "feet"),
  18850. default: true
  18851. },
  18852. ]
  18853. ))
  18854. characterMakers.push(() => makeCharacter(
  18855. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  18856. {
  18857. front: {
  18858. height: math.unit(6 + 1 / 12, "feet"),
  18859. weight: math.unit(304, "lb"),
  18860. name: "Front",
  18861. image: {
  18862. source: "./media/characters/oliver/front.svg",
  18863. extra: 157 / 143,
  18864. bottom: 0.08
  18865. }
  18866. },
  18867. },
  18868. [
  18869. {
  18870. name: "Normal",
  18871. height: math.unit(6 + 1 / 12, "feet"),
  18872. default: true
  18873. },
  18874. ]
  18875. ))
  18876. characterMakers.push(() => makeCharacter(
  18877. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  18878. {
  18879. front: {
  18880. height: math.unit(5 + 7 / 12, "feet"),
  18881. weight: math.unit(140, "lb"),
  18882. name: "Front",
  18883. image: {
  18884. source: "./media/characters/shane/front.svg",
  18885. extra: 304 / 289,
  18886. bottom: 0.005
  18887. }
  18888. },
  18889. },
  18890. [
  18891. {
  18892. name: "Normal",
  18893. height: math.unit(5 + 7 / 12, "feet"),
  18894. default: true
  18895. },
  18896. ]
  18897. ))
  18898. characterMakers.push(() => makeCharacter(
  18899. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  18900. {
  18901. front: {
  18902. height: math.unit(5 + 9 / 12, "feet"),
  18903. weight: math.unit(178, "lb"),
  18904. name: "Front",
  18905. image: {
  18906. source: "./media/characters/shin/front.svg",
  18907. extra: 159 / 151,
  18908. bottom: 0.015
  18909. }
  18910. },
  18911. },
  18912. [
  18913. {
  18914. name: "Normal",
  18915. height: math.unit(5 + 9 / 12, "feet"),
  18916. default: true
  18917. },
  18918. ]
  18919. ))
  18920. characterMakers.push(() => makeCharacter(
  18921. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  18922. {
  18923. front: {
  18924. height: math.unit(5 + 10 / 12, "feet"),
  18925. weight: math.unit(168, "lb"),
  18926. name: "Front",
  18927. image: {
  18928. source: "./media/characters/xerxes/front.svg",
  18929. extra: 282 / 260,
  18930. bottom: 0.045
  18931. }
  18932. },
  18933. },
  18934. [
  18935. {
  18936. name: "Normal",
  18937. height: math.unit(5 + 10 / 12, "feet"),
  18938. default: true
  18939. },
  18940. ]
  18941. ))
  18942. characterMakers.push(() => makeCharacter(
  18943. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  18944. {
  18945. front: {
  18946. height: math.unit(6 + 7 / 12, "feet"),
  18947. weight: math.unit(208, "lb"),
  18948. name: "Front",
  18949. image: {
  18950. source: "./media/characters/chaska/front.svg",
  18951. extra: 332 / 319,
  18952. bottom: 0.015
  18953. }
  18954. },
  18955. },
  18956. [
  18957. {
  18958. name: "Normal",
  18959. height: math.unit(6 + 7 / 12, "feet"),
  18960. default: true
  18961. },
  18962. ]
  18963. ))
  18964. characterMakers.push(() => makeCharacter(
  18965. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  18966. {
  18967. front: {
  18968. height: math.unit(5 + 8 / 12, "feet"),
  18969. weight: math.unit(208, "lb"),
  18970. name: "Front",
  18971. image: {
  18972. source: "./media/characters/enuk/front.svg",
  18973. extra: 437 / 406,
  18974. bottom: 0.02
  18975. }
  18976. },
  18977. },
  18978. [
  18979. {
  18980. name: "Normal",
  18981. height: math.unit(5 + 8 / 12, "feet"),
  18982. default: true
  18983. },
  18984. ]
  18985. ))
  18986. characterMakers.push(() => makeCharacter(
  18987. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  18988. {
  18989. front: {
  18990. height: math.unit(5 + 10 / 12, "feet"),
  18991. weight: math.unit(252, "lb"),
  18992. name: "Front",
  18993. image: {
  18994. source: "./media/characters/bruun/front.svg",
  18995. extra: 197 / 187,
  18996. bottom: 0.012
  18997. }
  18998. },
  18999. },
  19000. [
  19001. {
  19002. name: "Normal",
  19003. height: math.unit(5 + 10 / 12, "feet"),
  19004. default: true
  19005. },
  19006. ]
  19007. ))
  19008. characterMakers.push(() => makeCharacter(
  19009. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19010. {
  19011. front: {
  19012. height: math.unit(6 + 10 / 12, "feet"),
  19013. weight: math.unit(255, "lb"),
  19014. name: "Front",
  19015. image: {
  19016. source: "./media/characters/alexeev/front.svg",
  19017. extra: 213 / 200,
  19018. bottom: 0.05
  19019. }
  19020. },
  19021. },
  19022. [
  19023. {
  19024. name: "Normal",
  19025. height: math.unit(6 + 10 / 12, "feet"),
  19026. default: true
  19027. },
  19028. ]
  19029. ))
  19030. characterMakers.push(() => makeCharacter(
  19031. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19032. {
  19033. front: {
  19034. height: math.unit(2 + 8 / 12, "feet"),
  19035. weight: math.unit(22, "lb"),
  19036. name: "Front",
  19037. image: {
  19038. source: "./media/characters/evelyn/front.svg",
  19039. extra: 208 / 180
  19040. }
  19041. },
  19042. },
  19043. [
  19044. {
  19045. name: "Normal",
  19046. height: math.unit(2 + 8 / 12, "feet"),
  19047. default: true
  19048. },
  19049. ]
  19050. ))
  19051. characterMakers.push(() => makeCharacter(
  19052. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19053. {
  19054. front: {
  19055. height: math.unit(5 + 9 / 12, "feet"),
  19056. weight: math.unit(139, "lb"),
  19057. name: "Front",
  19058. image: {
  19059. source: "./media/characters/inca/front.svg",
  19060. extra: 294 / 291,
  19061. bottom: 0.03
  19062. }
  19063. },
  19064. },
  19065. [
  19066. {
  19067. name: "Normal",
  19068. height: math.unit(5 + 9 / 12, "feet"),
  19069. default: true
  19070. },
  19071. ]
  19072. ))
  19073. characterMakers.push(() => makeCharacter(
  19074. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19075. {
  19076. front: {
  19077. height: math.unit(5 + 1 / 12, "feet"),
  19078. weight: math.unit(84, "lb"),
  19079. name: "Front",
  19080. image: {
  19081. source: "./media/characters/magdalene/front.svg",
  19082. extra: 293 / 273
  19083. }
  19084. },
  19085. },
  19086. [
  19087. {
  19088. name: "Normal",
  19089. height: math.unit(5 + 1 / 12, "feet"),
  19090. default: true
  19091. },
  19092. ]
  19093. ))
  19094. characterMakers.push(() => makeCharacter(
  19095. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19096. {
  19097. front: {
  19098. height: math.unit(6 + 3 / 12, "feet"),
  19099. weight: math.unit(185, "lb"),
  19100. name: "Front",
  19101. image: {
  19102. source: "./media/characters/mera/front.svg",
  19103. extra: 291 / 277,
  19104. bottom: 0.03
  19105. }
  19106. },
  19107. },
  19108. [
  19109. {
  19110. name: "Normal",
  19111. height: math.unit(6 + 3 / 12, "feet"),
  19112. default: true
  19113. },
  19114. ]
  19115. ))
  19116. characterMakers.push(() => makeCharacter(
  19117. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19118. {
  19119. front: {
  19120. height: math.unit(6 + 7 / 12, "feet"),
  19121. weight: math.unit(160, "lb"),
  19122. name: "Front",
  19123. image: {
  19124. source: "./media/characters/ceres/front.svg",
  19125. extra: 1023 / 950,
  19126. bottom: 0.027
  19127. }
  19128. },
  19129. back: {
  19130. height: math.unit(6 + 7 / 12, "feet"),
  19131. weight: math.unit(160, "lb"),
  19132. name: "Back",
  19133. image: {
  19134. source: "./media/characters/ceres/back.svg",
  19135. extra: 1023 / 950
  19136. }
  19137. },
  19138. },
  19139. [
  19140. {
  19141. name: "Normal",
  19142. height: math.unit(6 + 7 / 12, "feet"),
  19143. default: true
  19144. },
  19145. ]
  19146. ))
  19147. characterMakers.push(() => makeCharacter(
  19148. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19149. {
  19150. front: {
  19151. height: math.unit(5 + 10 / 12, "feet"),
  19152. weight: math.unit(150, "lb"),
  19153. name: "Front",
  19154. image: {
  19155. source: "./media/characters/kris/front.svg",
  19156. extra: 885 / 803,
  19157. bottom: 0.03
  19158. }
  19159. },
  19160. },
  19161. [
  19162. {
  19163. name: "Normal",
  19164. height: math.unit(5 + 10 / 12, "feet"),
  19165. default: true
  19166. },
  19167. ]
  19168. ))
  19169. characterMakers.push(() => makeCharacter(
  19170. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19171. {
  19172. front: {
  19173. height: math.unit(7, "feet"),
  19174. weight: math.unit(120, "kg"),
  19175. name: "Front",
  19176. image: {
  19177. source: "./media/characters/taluthus/front.svg",
  19178. extra: 903 / 833,
  19179. bottom: 0.015
  19180. }
  19181. },
  19182. },
  19183. [
  19184. {
  19185. name: "Normal",
  19186. height: math.unit(7, "feet"),
  19187. default: true
  19188. },
  19189. {
  19190. name: "Macro",
  19191. height: math.unit(300, "feet")
  19192. },
  19193. ]
  19194. ))
  19195. characterMakers.push(() => makeCharacter(
  19196. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19197. {
  19198. front: {
  19199. height: math.unit(5 + 9 / 12, "feet"),
  19200. weight: math.unit(145, "lb"),
  19201. name: "Front",
  19202. image: {
  19203. source: "./media/characters/dawn/front.svg",
  19204. extra: 2094 / 2016,
  19205. bottom: 0.025
  19206. }
  19207. },
  19208. back: {
  19209. height: math.unit(5 + 9 / 12, "feet"),
  19210. weight: math.unit(160, "lb"),
  19211. name: "Back",
  19212. image: {
  19213. source: "./media/characters/dawn/back.svg",
  19214. extra: 2112 / 2080,
  19215. bottom: 0.005
  19216. }
  19217. },
  19218. },
  19219. [
  19220. {
  19221. name: "Normal",
  19222. height: math.unit(6 + 7 / 12, "feet"),
  19223. default: true
  19224. },
  19225. ]
  19226. ))
  19227. characterMakers.push(() => makeCharacter(
  19228. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19229. {
  19230. anthro: {
  19231. height: math.unit(8 + 3 / 12, "feet"),
  19232. weight: math.unit(450, "lb"),
  19233. name: "Anthro",
  19234. image: {
  19235. source: "./media/characters/arador/anthro.svg",
  19236. extra: 1835 / 1718,
  19237. bottom: 0.025
  19238. }
  19239. },
  19240. feral: {
  19241. height: math.unit(4, "feet"),
  19242. weight: math.unit(200, "lb"),
  19243. name: "Feral",
  19244. image: {
  19245. source: "./media/characters/arador/feral.svg",
  19246. extra: 1683 / 1514,
  19247. bottom: 0.07
  19248. }
  19249. },
  19250. },
  19251. [
  19252. {
  19253. name: "Normal",
  19254. height: math.unit(8 + 3 / 12, "feet")
  19255. },
  19256. {
  19257. name: "Macro",
  19258. height: math.unit(82.5, "feet"),
  19259. default: true
  19260. },
  19261. ]
  19262. ))
  19263. characterMakers.push(() => makeCharacter(
  19264. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19265. {
  19266. front: {
  19267. height: math.unit(5 + 10 / 12, "feet"),
  19268. weight: math.unit(125, "lb"),
  19269. name: "Front",
  19270. image: {
  19271. source: "./media/characters/dharsi/front.svg",
  19272. extra: 716 / 630,
  19273. bottom: 0.035
  19274. }
  19275. },
  19276. },
  19277. [
  19278. {
  19279. name: "Nano",
  19280. height: math.unit(100, "nm")
  19281. },
  19282. {
  19283. name: "Micro",
  19284. height: math.unit(2, "inches")
  19285. },
  19286. {
  19287. name: "Normal",
  19288. height: math.unit(5 + 10 / 12, "feet"),
  19289. default: true
  19290. },
  19291. {
  19292. name: "Macro",
  19293. height: math.unit(1000, "feet")
  19294. },
  19295. {
  19296. name: "Megamacro",
  19297. height: math.unit(10, "miles")
  19298. },
  19299. {
  19300. name: "Gigamacro",
  19301. height: math.unit(3000, "miles")
  19302. },
  19303. {
  19304. name: "Teramacro",
  19305. height: math.unit(500000, "miles")
  19306. },
  19307. {
  19308. name: "Teramacro+",
  19309. height: math.unit(30, "galaxies")
  19310. },
  19311. ]
  19312. ))
  19313. characterMakers.push(() => makeCharacter(
  19314. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19315. {
  19316. front: {
  19317. height: math.unit(6, "feet"),
  19318. weight: math.unit(150, "lb"),
  19319. name: "Front",
  19320. image: {
  19321. source: "./media/characters/deathy/front.svg",
  19322. extra: 1552 / 1463,
  19323. bottom: 0.025
  19324. }
  19325. },
  19326. side: {
  19327. height: math.unit(6, "feet"),
  19328. weight: math.unit(150, "lb"),
  19329. name: "Side",
  19330. image: {
  19331. source: "./media/characters/deathy/side.svg",
  19332. extra: 1604 / 1455,
  19333. bottom: 0.025
  19334. }
  19335. },
  19336. back: {
  19337. height: math.unit(6, "feet"),
  19338. weight: math.unit(150, "lb"),
  19339. name: "Back",
  19340. image: {
  19341. source: "./media/characters/deathy/back.svg",
  19342. extra: 1580 / 1463,
  19343. bottom: 0.005
  19344. }
  19345. },
  19346. },
  19347. [
  19348. {
  19349. name: "Micro",
  19350. height: math.unit(5, "millimeters")
  19351. },
  19352. {
  19353. name: "Normal",
  19354. height: math.unit(6 + 5 / 12, "feet"),
  19355. default: true
  19356. },
  19357. ]
  19358. ))
  19359. characterMakers.push(() => makeCharacter(
  19360. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19361. {
  19362. front: {
  19363. height: math.unit(16, "feet"),
  19364. weight: math.unit(4000, "lb"),
  19365. name: "Front",
  19366. image: {
  19367. source: "./media/characters/juniper/front.svg",
  19368. bottom: 0.04
  19369. }
  19370. },
  19371. },
  19372. [
  19373. {
  19374. name: "Normal",
  19375. height: math.unit(16, "feet"),
  19376. default: true
  19377. },
  19378. ]
  19379. ))
  19380. characterMakers.push(() => makeCharacter(
  19381. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19382. {
  19383. front: {
  19384. height: math.unit(6, "feet"),
  19385. weight: math.unit(150, "lb"),
  19386. name: "Front",
  19387. image: {
  19388. source: "./media/characters/hipster/front.svg",
  19389. extra: 1312 / 1209,
  19390. bottom: 0.025
  19391. }
  19392. },
  19393. back: {
  19394. height: math.unit(6, "feet"),
  19395. weight: math.unit(150, "lb"),
  19396. name: "Back",
  19397. image: {
  19398. source: "./media/characters/hipster/back.svg",
  19399. extra: 1281 / 1196,
  19400. bottom: 0.01
  19401. }
  19402. },
  19403. },
  19404. [
  19405. {
  19406. name: "Micro",
  19407. height: math.unit(1, "mm")
  19408. },
  19409. {
  19410. name: "Normal",
  19411. height: math.unit(4, "inches"),
  19412. default: true
  19413. },
  19414. {
  19415. name: "Macro",
  19416. height: math.unit(500, "feet")
  19417. },
  19418. {
  19419. name: "Megamacro",
  19420. height: math.unit(1000, "miles")
  19421. },
  19422. ]
  19423. ))
  19424. characterMakers.push(() => makeCharacter(
  19425. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19426. {
  19427. front: {
  19428. height: math.unit(6, "feet"),
  19429. weight: math.unit(150, "lb"),
  19430. name: "Front",
  19431. image: {
  19432. source: "./media/characters/tendirmuldr/front.svg",
  19433. extra: 1878 / 1772,
  19434. bottom: 0.015
  19435. }
  19436. },
  19437. },
  19438. [
  19439. {
  19440. name: "Megamacro",
  19441. height: math.unit(1500, "miles"),
  19442. default: true
  19443. },
  19444. ]
  19445. ))
  19446. characterMakers.push(() => makeCharacter(
  19447. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19448. {
  19449. front: {
  19450. height: math.unit(14, "feet"),
  19451. weight: math.unit(12000, "lb"),
  19452. name: "Front",
  19453. image: {
  19454. source: "./media/characters/mort/front.svg",
  19455. extra: 365 / 318,
  19456. bottom: 0.01
  19457. }
  19458. },
  19459. side: {
  19460. height: math.unit(14, "feet"),
  19461. weight: math.unit(12000, "lb"),
  19462. name: "Side",
  19463. image: {
  19464. source: "./media/characters/mort/side.svg",
  19465. extra: 365 / 318,
  19466. bottom: 0.052
  19467. },
  19468. default: true
  19469. },
  19470. back: {
  19471. height: math.unit(14, "feet"),
  19472. weight: math.unit(12000, "lb"),
  19473. name: "Back",
  19474. image: {
  19475. source: "./media/characters/mort/back.svg",
  19476. extra: 371 / 332,
  19477. bottom: 0.18
  19478. }
  19479. },
  19480. },
  19481. [
  19482. {
  19483. name: "Normal",
  19484. height: math.unit(14, "feet"),
  19485. default: true
  19486. },
  19487. ]
  19488. ))
  19489. characterMakers.push(() => makeCharacter(
  19490. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19491. {
  19492. front: {
  19493. height: math.unit(8, "feet"),
  19494. weight: math.unit(1, "ton"),
  19495. name: "Front",
  19496. image: {
  19497. source: "./media/characters/lycoa/front.svg",
  19498. extra: 1875 / 1789,
  19499. bottom: 0.022
  19500. }
  19501. },
  19502. back: {
  19503. height: math.unit(8, "feet"),
  19504. weight: math.unit(1, "ton"),
  19505. name: "Back",
  19506. image: {
  19507. source: "./media/characters/lycoa/back.svg",
  19508. extra: 1835 / 1781,
  19509. bottom: 0.03
  19510. }
  19511. },
  19512. head: {
  19513. height: math.unit(2.1, "feet"),
  19514. name: "Head",
  19515. image: {
  19516. source: "./media/characters/lycoa/head.svg"
  19517. }
  19518. },
  19519. tailmaw: {
  19520. height: math.unit(1.9, "feet"),
  19521. name: "Tailmaw",
  19522. image: {
  19523. source: "./media/characters/lycoa/tailmaw.svg"
  19524. }
  19525. },
  19526. tentacles: {
  19527. height: math.unit(2.1, "feet"),
  19528. name: "Tentacles",
  19529. image: {
  19530. source: "./media/characters/lycoa/tentacles.svg"
  19531. }
  19532. },
  19533. dick: {
  19534. height: math.unit(1.73, "feet"),
  19535. name: "Dick",
  19536. image: {
  19537. source: "./media/characters/lycoa/dick.svg"
  19538. }
  19539. },
  19540. },
  19541. [
  19542. {
  19543. name: "Normal",
  19544. height: math.unit(8, "feet"),
  19545. default: true
  19546. },
  19547. {
  19548. name: "Macro",
  19549. height: math.unit(30, "feet")
  19550. },
  19551. ]
  19552. ))
  19553. characterMakers.push(() => makeCharacter(
  19554. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19555. {
  19556. front: {
  19557. height: math.unit(4 + 2 / 12, "feet"),
  19558. weight: math.unit(70, "lb"),
  19559. name: "Front",
  19560. image: {
  19561. source: "./media/characters/naldara/front.svg",
  19562. extra: 841 / 720,
  19563. bottom: 0.04
  19564. }
  19565. },
  19566. naga: {
  19567. height: math.unit(23, "feet"),
  19568. weight: math.unit(15000, "kg"),
  19569. name: "Naga",
  19570. image: {
  19571. source: "./media/characters/naldara/naga.svg",
  19572. extra: 3290 / 2959,
  19573. bottom: 124 / 3432
  19574. }
  19575. },
  19576. },
  19577. [
  19578. {
  19579. name: "Normal",
  19580. height: math.unit(4 + 2 / 12, "feet"),
  19581. default: true
  19582. },
  19583. ]
  19584. ))
  19585. characterMakers.push(() => makeCharacter(
  19586. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19587. {
  19588. front: {
  19589. height: math.unit(13 + 7 / 12, "feet"),
  19590. weight: math.unit(1500, "lb"),
  19591. name: "Front",
  19592. image: {
  19593. source: "./media/characters/briar/front.svg",
  19594. extra: 626 / 596,
  19595. bottom: 0.08
  19596. }
  19597. },
  19598. },
  19599. [
  19600. {
  19601. name: "Normal",
  19602. height: math.unit(13 + 7 / 12, "feet"),
  19603. default: true
  19604. },
  19605. ]
  19606. ))
  19607. characterMakers.push(() => makeCharacter(
  19608. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19609. {
  19610. side: {
  19611. height: math.unit(10, "feet"),
  19612. weight: math.unit(500, "lb"),
  19613. name: "Side",
  19614. image: {
  19615. source: "./media/characters/vanguard/side.svg",
  19616. extra: 502 / 425,
  19617. bottom: 0.087
  19618. }
  19619. },
  19620. },
  19621. [
  19622. {
  19623. name: "Normal",
  19624. height: math.unit(10, "feet"),
  19625. default: true
  19626. },
  19627. ]
  19628. ))
  19629. characterMakers.push(() => makeCharacter(
  19630. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19631. {
  19632. front: {
  19633. height: math.unit(7.5, "feet"),
  19634. weight: math.unit(2, "lb"),
  19635. name: "Front",
  19636. image: {
  19637. source: "./media/characters/artemis/front.svg",
  19638. extra: 1192 / 1075,
  19639. bottom: 0.07
  19640. }
  19641. },
  19642. frontNsfw: {
  19643. height: math.unit(7.5, "feet"),
  19644. weight: math.unit(2, "lb"),
  19645. name: "Front (NSFW)",
  19646. image: {
  19647. source: "./media/characters/artemis/front-nsfw.svg",
  19648. extra: 1192 / 1075,
  19649. bottom: 0.07
  19650. }
  19651. },
  19652. frontNsfwer: {
  19653. height: math.unit(7.5, "feet"),
  19654. weight: math.unit(2, "lb"),
  19655. name: "Front (NSFW-er)",
  19656. image: {
  19657. source: "./media/characters/artemis/front-nsfwer.svg",
  19658. extra: 1192 / 1075,
  19659. bottom: 0.07
  19660. }
  19661. },
  19662. side: {
  19663. height: math.unit(7.5, "feet"),
  19664. weight: math.unit(2, "lb"),
  19665. name: "Side",
  19666. image: {
  19667. source: "./media/characters/artemis/side.svg",
  19668. extra: 1192 / 1075,
  19669. bottom: 0.07
  19670. }
  19671. },
  19672. sideNsfw: {
  19673. height: math.unit(7.5, "feet"),
  19674. weight: math.unit(2, "lb"),
  19675. name: "Side (NSFW)",
  19676. image: {
  19677. source: "./media/characters/artemis/side-nsfw.svg",
  19678. extra: 1192 / 1075,
  19679. bottom: 0.07
  19680. }
  19681. },
  19682. sideNsfwer: {
  19683. height: math.unit(7.5, "feet"),
  19684. weight: math.unit(2, "lb"),
  19685. name: "Side (NSFW-er)",
  19686. image: {
  19687. source: "./media/characters/artemis/side-nsfwer.svg",
  19688. extra: 1192 / 1075,
  19689. bottom: 0.07
  19690. }
  19691. },
  19692. maw: {
  19693. height: math.unit(1.1, "feet"),
  19694. name: "Maw",
  19695. image: {
  19696. source: "./media/characters/artemis/maw.svg"
  19697. }
  19698. },
  19699. stomach: {
  19700. height: math.unit(0.95, "feet"),
  19701. name: "Stomach",
  19702. image: {
  19703. source: "./media/characters/artemis/stomach.svg"
  19704. }
  19705. },
  19706. dickCanine: {
  19707. height: math.unit(1, "feet"),
  19708. name: "Dick (Canine)",
  19709. image: {
  19710. source: "./media/characters/artemis/dick-canine.svg"
  19711. }
  19712. },
  19713. dickEquine: {
  19714. height: math.unit(0.85, "feet"),
  19715. name: "Dick (Equine)",
  19716. image: {
  19717. source: "./media/characters/artemis/dick-equine.svg"
  19718. }
  19719. },
  19720. dickExotic: {
  19721. height: math.unit(0.85, "feet"),
  19722. name: "Dick (Exotic)",
  19723. image: {
  19724. source: "./media/characters/artemis/dick-exotic.svg"
  19725. }
  19726. },
  19727. },
  19728. [
  19729. {
  19730. name: "Normal",
  19731. height: math.unit(7.5, "feet"),
  19732. default: true
  19733. },
  19734. {
  19735. name: "Enlarged",
  19736. height: math.unit(12, "feet")
  19737. },
  19738. ]
  19739. ))
  19740. characterMakers.push(() => makeCharacter(
  19741. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19742. {
  19743. front: {
  19744. height: math.unit(5 + 3 / 12, "feet"),
  19745. weight: math.unit(160, "lb"),
  19746. name: "Front",
  19747. image: {
  19748. source: "./media/characters/kira/front.svg",
  19749. extra: 906 / 786,
  19750. bottom: 0.01
  19751. }
  19752. },
  19753. back: {
  19754. height: math.unit(5 + 3 / 12, "feet"),
  19755. weight: math.unit(160, "lb"),
  19756. name: "Back",
  19757. image: {
  19758. source: "./media/characters/kira/back.svg",
  19759. extra: 882 / 757,
  19760. bottom: 0.005
  19761. }
  19762. },
  19763. frontDressed: {
  19764. height: math.unit(5 + 3 / 12, "feet"),
  19765. weight: math.unit(160, "lb"),
  19766. name: "Front (Dressed)",
  19767. image: {
  19768. source: "./media/characters/kira/front-dressed.svg",
  19769. extra: 906 / 786,
  19770. bottom: 0.01
  19771. }
  19772. },
  19773. beans: {
  19774. height: math.unit(0.92, "feet"),
  19775. name: "Beans",
  19776. image: {
  19777. source: "./media/characters/kira/beans.svg"
  19778. }
  19779. },
  19780. },
  19781. [
  19782. {
  19783. name: "Normal",
  19784. height: math.unit(5 + 3 / 12, "feet"),
  19785. default: true
  19786. },
  19787. ]
  19788. ))
  19789. characterMakers.push(() => makeCharacter(
  19790. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  19791. {
  19792. front: {
  19793. height: math.unit(5 + 4 / 12, "feet"),
  19794. weight: math.unit(145, "lb"),
  19795. name: "Front",
  19796. image: {
  19797. source: "./media/characters/scramble/front.svg",
  19798. extra: 763 / 727,
  19799. bottom: 0.05
  19800. }
  19801. },
  19802. back: {
  19803. height: math.unit(5 + 4 / 12, "feet"),
  19804. weight: math.unit(145, "lb"),
  19805. name: "Back",
  19806. image: {
  19807. source: "./media/characters/scramble/back.svg",
  19808. extra: 826 / 737,
  19809. bottom: 0.002
  19810. }
  19811. },
  19812. },
  19813. [
  19814. {
  19815. name: "Normal",
  19816. height: math.unit(5 + 4 / 12, "feet"),
  19817. default: true
  19818. },
  19819. ]
  19820. ))
  19821. characterMakers.push(() => makeCharacter(
  19822. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  19823. {
  19824. side: {
  19825. height: math.unit(6 + 2 / 12, "feet"),
  19826. weight: math.unit(190, "lb"),
  19827. name: "Side",
  19828. image: {
  19829. source: "./media/characters/biscuit/side.svg",
  19830. extra: 858 / 791,
  19831. bottom: 0.044
  19832. }
  19833. },
  19834. },
  19835. [
  19836. {
  19837. name: "Normal",
  19838. height: math.unit(6 + 2 / 12, "feet"),
  19839. default: true
  19840. },
  19841. ]
  19842. ))
  19843. characterMakers.push(() => makeCharacter(
  19844. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  19845. {
  19846. front: {
  19847. height: math.unit(5 + 2 / 12, "feet"),
  19848. weight: math.unit(120, "lb"),
  19849. name: "Front",
  19850. image: {
  19851. source: "./media/characters/poffin/front.svg",
  19852. extra: 786 / 680,
  19853. bottom: 0.005
  19854. }
  19855. },
  19856. },
  19857. [
  19858. {
  19859. name: "Normal",
  19860. height: math.unit(5 + 2 / 12, "feet"),
  19861. default: true
  19862. },
  19863. ]
  19864. ))
  19865. characterMakers.push(() => makeCharacter(
  19866. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  19867. {
  19868. front: {
  19869. height: math.unit(6 + 3 / 12, "feet"),
  19870. weight: math.unit(519, "lb"),
  19871. name: "Front",
  19872. image: {
  19873. source: "./media/characters/dhari/front.svg",
  19874. extra: 1048 / 946,
  19875. bottom: 0.015
  19876. }
  19877. },
  19878. back: {
  19879. height: math.unit(6 + 3 / 12, "feet"),
  19880. weight: math.unit(519, "lb"),
  19881. name: "Back",
  19882. image: {
  19883. source: "./media/characters/dhari/back.svg",
  19884. extra: 1048 / 931,
  19885. bottom: 0.005
  19886. }
  19887. },
  19888. frontDressed: {
  19889. height: math.unit(6 + 3 / 12, "feet"),
  19890. weight: math.unit(519, "lb"),
  19891. name: "Front (Dressed)",
  19892. image: {
  19893. source: "./media/characters/dhari/front-dressed.svg",
  19894. extra: 1713 / 1546,
  19895. bottom: 0.02
  19896. }
  19897. },
  19898. backDressed: {
  19899. height: math.unit(6 + 3 / 12, "feet"),
  19900. weight: math.unit(519, "lb"),
  19901. name: "Back (Dressed)",
  19902. image: {
  19903. source: "./media/characters/dhari/back-dressed.svg",
  19904. extra: 1699 / 1537,
  19905. bottom: 0.01
  19906. }
  19907. },
  19908. maw: {
  19909. height: math.unit(0.95, "feet"),
  19910. name: "Maw",
  19911. image: {
  19912. source: "./media/characters/dhari/maw.svg"
  19913. }
  19914. },
  19915. wereFront: {
  19916. height: math.unit(12 + 8 / 12, "feet"),
  19917. weight: math.unit(4000, "lb"),
  19918. name: "Front (Were)",
  19919. image: {
  19920. source: "./media/characters/dhari/were-front.svg",
  19921. extra: 1065 / 969,
  19922. bottom: 0.015
  19923. }
  19924. },
  19925. wereBack: {
  19926. height: math.unit(12 + 8 / 12, "feet"),
  19927. weight: math.unit(4000, "lb"),
  19928. name: "Back (Were)",
  19929. image: {
  19930. source: "./media/characters/dhari/were-back.svg",
  19931. extra: 1065 / 969,
  19932. bottom: 0.012
  19933. }
  19934. },
  19935. wereMaw: {
  19936. height: math.unit(0.625, "meters"),
  19937. name: "Maw (Were)",
  19938. image: {
  19939. source: "./media/characters/dhari/were-maw.svg"
  19940. }
  19941. },
  19942. },
  19943. [
  19944. {
  19945. name: "Normal",
  19946. height: math.unit(6 + 3 / 12, "feet"),
  19947. default: true
  19948. },
  19949. ]
  19950. ))
  19951. characterMakers.push(() => makeCharacter(
  19952. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  19953. {
  19954. anthro: {
  19955. height: math.unit(5 + 7 / 12, "feet"),
  19956. weight: math.unit(175, "lb"),
  19957. name: "Anthro",
  19958. image: {
  19959. source: "./media/characters/rena-dyne/anthro.svg",
  19960. extra: 1849 / 1785,
  19961. bottom: 0.005
  19962. }
  19963. },
  19964. taur: {
  19965. height: math.unit(15 + 6 / 12, "feet"),
  19966. weight: math.unit(8000, "lb"),
  19967. name: "Taur",
  19968. image: {
  19969. source: "./media/characters/rena-dyne/taur.svg",
  19970. extra: 2315 / 2234,
  19971. bottom: 0.033
  19972. }
  19973. },
  19974. },
  19975. [
  19976. {
  19977. name: "Normal",
  19978. height: math.unit(5 + 7 / 12, "feet"),
  19979. default: true
  19980. },
  19981. ]
  19982. ))
  19983. characterMakers.push(() => makeCharacter(
  19984. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  19985. {
  19986. front: {
  19987. height: math.unit(8, "feet"),
  19988. weight: math.unit(600, "lb"),
  19989. name: "Front",
  19990. image: {
  19991. source: "./media/characters/weremeep/front.svg",
  19992. extra: 967 / 862,
  19993. bottom: 0.01
  19994. }
  19995. },
  19996. },
  19997. [
  19998. {
  19999. name: "Normal",
  20000. height: math.unit(8, "feet"),
  20001. default: true
  20002. },
  20003. {
  20004. name: "Lorg",
  20005. height: math.unit(12, "feet")
  20006. },
  20007. {
  20008. name: "Oh Lawd She Comin'",
  20009. height: math.unit(20, "feet")
  20010. },
  20011. ]
  20012. ))
  20013. characterMakers.push(() => makeCharacter(
  20014. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20015. {
  20016. front: {
  20017. height: math.unit(4, "feet"),
  20018. weight: math.unit(90, "lb"),
  20019. name: "Front",
  20020. image: {
  20021. source: "./media/characters/reza/front.svg",
  20022. extra: 1183 / 1111,
  20023. bottom: 0.017
  20024. }
  20025. },
  20026. back: {
  20027. height: math.unit(4, "feet"),
  20028. weight: math.unit(90, "lb"),
  20029. name: "Back",
  20030. image: {
  20031. source: "./media/characters/reza/back.svg",
  20032. extra: 1183 / 1111,
  20033. bottom: 0.01
  20034. }
  20035. },
  20036. drake: {
  20037. height: math.unit(30, "feet"),
  20038. weight: math.unit(246960, "lb"),
  20039. name: "Drake",
  20040. image: {
  20041. source: "./media/characters/reza/drake.svg",
  20042. extra: 2350 / 2024,
  20043. bottom: 60.7 / 2403
  20044. }
  20045. },
  20046. },
  20047. [
  20048. {
  20049. name: "Normal",
  20050. height: math.unit(4, "feet"),
  20051. default: true
  20052. },
  20053. ]
  20054. ))
  20055. characterMakers.push(() => makeCharacter(
  20056. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20057. {
  20058. side: {
  20059. height: math.unit(15, "feet"),
  20060. weight: math.unit(14, "tons"),
  20061. name: "Side",
  20062. image: {
  20063. source: "./media/characters/athea/side.svg",
  20064. extra: 960 / 540,
  20065. bottom: 0.003
  20066. }
  20067. },
  20068. sitting: {
  20069. height: math.unit(6 * 2.85, "feet"),
  20070. weight: math.unit(14, "tons"),
  20071. name: "Sitting",
  20072. image: {
  20073. source: "./media/characters/athea/sitting.svg",
  20074. extra: 621 / 581,
  20075. bottom: 0.075
  20076. }
  20077. },
  20078. maw: {
  20079. height: math.unit(7.59498031496063, "feet"),
  20080. name: "Maw",
  20081. image: {
  20082. source: "./media/characters/athea/maw.svg"
  20083. }
  20084. },
  20085. },
  20086. [
  20087. {
  20088. name: "Lap Cat",
  20089. height: math.unit(2.5, "feet")
  20090. },
  20091. {
  20092. name: "Minimacro",
  20093. height: math.unit(15, "feet"),
  20094. default: true
  20095. },
  20096. {
  20097. name: "Macro",
  20098. height: math.unit(120, "feet")
  20099. },
  20100. {
  20101. name: "Macro+",
  20102. height: math.unit(640, "feet")
  20103. },
  20104. {
  20105. name: "Colossus",
  20106. height: math.unit(2.2, "miles")
  20107. },
  20108. ]
  20109. ))
  20110. characterMakers.push(() => makeCharacter(
  20111. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20112. {
  20113. front: {
  20114. height: math.unit(8 + 8 / 12, "feet"),
  20115. weight: math.unit(130, "kg"),
  20116. name: "Front",
  20117. image: {
  20118. source: "./media/characters/seroko/front.svg",
  20119. extra: 1385 / 1280,
  20120. bottom: 0.025
  20121. }
  20122. },
  20123. back: {
  20124. height: math.unit(8 + 8 / 12, "feet"),
  20125. weight: math.unit(130, "kg"),
  20126. name: "Back",
  20127. image: {
  20128. source: "./media/characters/seroko/back.svg",
  20129. extra: 1369 / 1238,
  20130. bottom: 0.018
  20131. }
  20132. },
  20133. frontDressed: {
  20134. height: math.unit(8 + 8 / 12, "feet"),
  20135. weight: math.unit(130, "kg"),
  20136. name: "Front (Dressed)",
  20137. image: {
  20138. source: "./media/characters/seroko/front-dressed.svg",
  20139. extra: 1366 / 1275,
  20140. bottom: 0.03
  20141. }
  20142. },
  20143. },
  20144. [
  20145. {
  20146. name: "Normal",
  20147. height: math.unit(8 + 8 / 12, "feet"),
  20148. default: true
  20149. },
  20150. ]
  20151. ))
  20152. characterMakers.push(() => makeCharacter(
  20153. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20154. {
  20155. front: {
  20156. height: math.unit(5.5, "feet"),
  20157. weight: math.unit(160, "lb"),
  20158. name: "Front",
  20159. image: {
  20160. source: "./media/characters/quatzi/front.svg",
  20161. extra: 2346 / 2242,
  20162. bottom: 0.015
  20163. }
  20164. },
  20165. },
  20166. [
  20167. {
  20168. name: "Normal",
  20169. height: math.unit(5.5, "feet"),
  20170. default: true
  20171. },
  20172. {
  20173. name: "Big",
  20174. height: math.unit(7.7, "feet")
  20175. },
  20176. ]
  20177. ))
  20178. characterMakers.push(() => makeCharacter(
  20179. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20180. {
  20181. front: {
  20182. height: math.unit(5 + 11 / 12, "feet"),
  20183. weight: math.unit(180, "lb"),
  20184. name: "Front",
  20185. image: {
  20186. source: "./media/characters/sen/front.svg",
  20187. extra: 1321 / 1254,
  20188. bottom: 0.015
  20189. }
  20190. },
  20191. side: {
  20192. height: math.unit(5 + 11 / 12, "feet"),
  20193. weight: math.unit(180, "lb"),
  20194. name: "Side",
  20195. image: {
  20196. source: "./media/characters/sen/side.svg",
  20197. extra: 1321 / 1254,
  20198. bottom: 0.007
  20199. }
  20200. },
  20201. back: {
  20202. height: math.unit(5 + 11 / 12, "feet"),
  20203. weight: math.unit(180, "lb"),
  20204. name: "Back",
  20205. image: {
  20206. source: "./media/characters/sen/back.svg",
  20207. extra: 1321 / 1254
  20208. }
  20209. },
  20210. },
  20211. [
  20212. {
  20213. name: "Normal",
  20214. height: math.unit(5 + 11 / 12, "feet"),
  20215. default: true
  20216. },
  20217. ]
  20218. ))
  20219. characterMakers.push(() => makeCharacter(
  20220. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20221. {
  20222. front: {
  20223. height: math.unit(166.6, "cm"),
  20224. weight: math.unit(66.6, "kg"),
  20225. name: "Front",
  20226. image: {
  20227. source: "./media/characters/fruity/front.svg",
  20228. extra: 1510 / 1386,
  20229. bottom: 0.04
  20230. }
  20231. },
  20232. back: {
  20233. height: math.unit(166.6, "cm"),
  20234. weight: math.unit(66.6, "lb"),
  20235. name: "Back",
  20236. image: {
  20237. source: "./media/characters/fruity/back.svg",
  20238. extra: 1563 / 1435,
  20239. bottom: 0.005
  20240. }
  20241. },
  20242. },
  20243. [
  20244. {
  20245. name: "Normal",
  20246. height: math.unit(166.6, "cm"),
  20247. default: true
  20248. },
  20249. {
  20250. name: "Demonic",
  20251. height: math.unit(166.6, "feet")
  20252. },
  20253. ]
  20254. ))
  20255. characterMakers.push(() => makeCharacter(
  20256. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20257. {
  20258. side: {
  20259. height: math.unit(10, "feet"),
  20260. weight: math.unit(500, "lb"),
  20261. name: "Side",
  20262. image: {
  20263. source: "./media/characters/zost/side.svg",
  20264. extra: 966 / 880,
  20265. bottom: 0.075
  20266. }
  20267. },
  20268. mawFront: {
  20269. height: math.unit(1.08, "meters"),
  20270. name: "Maw (Front)",
  20271. image: {
  20272. source: "./media/characters/zost/maw-front.svg"
  20273. }
  20274. },
  20275. mawSide: {
  20276. height: math.unit(2.66, "feet"),
  20277. name: "Maw (Side)",
  20278. image: {
  20279. source: "./media/characters/zost/maw-side.svg"
  20280. }
  20281. },
  20282. },
  20283. [
  20284. {
  20285. name: "Normal",
  20286. height: math.unit(10, "feet"),
  20287. default: true
  20288. },
  20289. ]
  20290. ))
  20291. characterMakers.push(() => makeCharacter(
  20292. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20293. {
  20294. front: {
  20295. height: math.unit(5 + 4 / 12, "feet"),
  20296. weight: math.unit(120, "lb"),
  20297. name: "Front",
  20298. image: {
  20299. source: "./media/characters/luci/front.svg",
  20300. extra: 1985 / 1884,
  20301. bottom: 0.04
  20302. }
  20303. },
  20304. back: {
  20305. height: math.unit(5 + 4 / 12, "feet"),
  20306. weight: math.unit(120, "lb"),
  20307. name: "Back",
  20308. image: {
  20309. source: "./media/characters/luci/back.svg",
  20310. extra: 1892 / 1791,
  20311. bottom: 0.002
  20312. }
  20313. },
  20314. },
  20315. [
  20316. {
  20317. name: "Normal",
  20318. height: math.unit(5 + 4 / 12, "feet"),
  20319. default: true
  20320. },
  20321. ]
  20322. ))
  20323. characterMakers.push(() => makeCharacter(
  20324. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20325. {
  20326. front: {
  20327. height: math.unit(1500, "feet"),
  20328. weight: math.unit(3.8e6, "tons"),
  20329. name: "Front",
  20330. image: {
  20331. source: "./media/characters/2th/front.svg",
  20332. extra: 3489 / 3350,
  20333. bottom: 0.1
  20334. }
  20335. },
  20336. foot: {
  20337. height: math.unit(461, "feet"),
  20338. name: "Foot",
  20339. image: {
  20340. source: "./media/characters/2th/foot.svg"
  20341. }
  20342. },
  20343. },
  20344. [
  20345. {
  20346. name: "\"Micro\"",
  20347. height: math.unit(15 + 7 / 12, "feet")
  20348. },
  20349. {
  20350. name: "Normal",
  20351. height: math.unit(1500, "feet"),
  20352. default: true
  20353. },
  20354. {
  20355. name: "Macro",
  20356. height: math.unit(5000, "feet")
  20357. },
  20358. {
  20359. name: "Megamacro",
  20360. height: math.unit(15, "miles")
  20361. },
  20362. {
  20363. name: "Gigamacro",
  20364. height: math.unit(4000, "miles")
  20365. },
  20366. {
  20367. name: "Galactic",
  20368. height: math.unit(50, "AU")
  20369. },
  20370. ]
  20371. ))
  20372. characterMakers.push(() => makeCharacter(
  20373. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20374. {
  20375. front: {
  20376. height: math.unit(5 + 6 / 12, "feet"),
  20377. weight: math.unit(220, "lb"),
  20378. name: "Front",
  20379. image: {
  20380. source: "./media/characters/amethyst/front.svg",
  20381. extra: 2078 / 2040,
  20382. bottom: 0.045
  20383. }
  20384. },
  20385. back: {
  20386. height: math.unit(5 + 6 / 12, "feet"),
  20387. weight: math.unit(220, "lb"),
  20388. name: "Back",
  20389. image: {
  20390. source: "./media/characters/amethyst/back.svg",
  20391. extra: 2021 / 1989,
  20392. bottom: 0.02
  20393. }
  20394. },
  20395. },
  20396. [
  20397. {
  20398. name: "Normal",
  20399. height: math.unit(5 + 6 / 12, "feet"),
  20400. default: true
  20401. },
  20402. ]
  20403. ))
  20404. characterMakers.push(() => makeCharacter(
  20405. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20406. {
  20407. front: {
  20408. height: math.unit(4 + 11 / 12, "feet"),
  20409. weight: math.unit(120, "lb"),
  20410. name: "Front",
  20411. image: {
  20412. source: "./media/characters/yumi-akiyama/front.svg",
  20413. extra: 1327 / 1235,
  20414. bottom: 0.02
  20415. }
  20416. },
  20417. back: {
  20418. height: math.unit(4 + 11 / 12, "feet"),
  20419. weight: math.unit(120, "lb"),
  20420. name: "Back",
  20421. image: {
  20422. source: "./media/characters/yumi-akiyama/back.svg",
  20423. extra: 1287 / 1245,
  20424. bottom: 0.002
  20425. }
  20426. },
  20427. },
  20428. [
  20429. {
  20430. name: "Galactic",
  20431. height: math.unit(50, "galaxies"),
  20432. default: true
  20433. },
  20434. {
  20435. name: "Universal",
  20436. height: math.unit(100, "universes")
  20437. },
  20438. ]
  20439. ))
  20440. characterMakers.push(() => makeCharacter(
  20441. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20442. {
  20443. front: {
  20444. height: math.unit(8, "feet"),
  20445. weight: math.unit(500, "lb"),
  20446. name: "Front",
  20447. image: {
  20448. source: "./media/characters/rifter-yrmori/front.svg",
  20449. extra: 1180 / 1125,
  20450. bottom: 0.02
  20451. }
  20452. },
  20453. back: {
  20454. height: math.unit(8, "feet"),
  20455. weight: math.unit(500, "lb"),
  20456. name: "Back",
  20457. image: {
  20458. source: "./media/characters/rifter-yrmori/back.svg",
  20459. extra: 1190 / 1145,
  20460. bottom: 0.001
  20461. }
  20462. },
  20463. wings: {
  20464. height: math.unit(7.75, "feet"),
  20465. weight: math.unit(500, "lb"),
  20466. name: "Wings",
  20467. image: {
  20468. source: "./media/characters/rifter-yrmori/wings.svg",
  20469. extra: 1357 / 1285
  20470. }
  20471. },
  20472. maw: {
  20473. height: math.unit(0.8, "feet"),
  20474. name: "Maw",
  20475. image: {
  20476. source: "./media/characters/rifter-yrmori/maw.svg"
  20477. }
  20478. },
  20479. mawfront: {
  20480. height: math.unit(1.45, "feet"),
  20481. name: "Maw (Front)",
  20482. image: {
  20483. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20484. }
  20485. },
  20486. },
  20487. [
  20488. {
  20489. name: "Normal",
  20490. height: math.unit(8, "feet"),
  20491. default: true
  20492. },
  20493. {
  20494. name: "Macro",
  20495. height: math.unit(42, "meters")
  20496. },
  20497. ]
  20498. ))
  20499. characterMakers.push(() => makeCharacter(
  20500. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20501. {
  20502. were: {
  20503. height: math.unit(25 + 6 / 12, "feet"),
  20504. weight: math.unit(10000, "lb"),
  20505. name: "Were",
  20506. image: {
  20507. source: "./media/characters/tahajin/were.svg",
  20508. extra: 801 / 770,
  20509. bottom: 0.042
  20510. }
  20511. },
  20512. aquatic: {
  20513. height: math.unit(6 + 4 / 12, "feet"),
  20514. weight: math.unit(160, "lb"),
  20515. name: "Aquatic",
  20516. image: {
  20517. source: "./media/characters/tahajin/aquatic.svg",
  20518. extra: 572 / 542,
  20519. bottom: 0.04
  20520. }
  20521. },
  20522. chow: {
  20523. height: math.unit(8 + 11 / 12, "feet"),
  20524. weight: math.unit(450, "lb"),
  20525. name: "Chow",
  20526. image: {
  20527. source: "./media/characters/tahajin/chow.svg",
  20528. extra: 660 / 640,
  20529. bottom: 0.015
  20530. }
  20531. },
  20532. demiNaga: {
  20533. height: math.unit(6 + 8 / 12, "feet"),
  20534. weight: math.unit(300, "lb"),
  20535. name: "Demi Naga",
  20536. image: {
  20537. source: "./media/characters/tahajin/demi-naga.svg",
  20538. extra: 643 / 615,
  20539. bottom: 0.1
  20540. }
  20541. },
  20542. data: {
  20543. height: math.unit(5, "inches"),
  20544. weight: math.unit(0.1, "lb"),
  20545. name: "Data",
  20546. image: {
  20547. source: "./media/characters/tahajin/data.svg"
  20548. }
  20549. },
  20550. fluu: {
  20551. height: math.unit(5 + 7 / 12, "feet"),
  20552. weight: math.unit(140, "lb"),
  20553. name: "Fluu",
  20554. image: {
  20555. source: "./media/characters/tahajin/fluu.svg",
  20556. extra: 628 / 592,
  20557. bottom: 0.02
  20558. }
  20559. },
  20560. starWarrior: {
  20561. height: math.unit(4 + 5 / 12, "feet"),
  20562. weight: math.unit(50, "lb"),
  20563. name: "Star Warrior",
  20564. image: {
  20565. source: "./media/characters/tahajin/star-warrior.svg"
  20566. }
  20567. },
  20568. },
  20569. [
  20570. {
  20571. name: "Normal",
  20572. height: math.unit(25 + 6 / 12, "feet"),
  20573. default: true
  20574. },
  20575. ]
  20576. ))
  20577. characterMakers.push(() => makeCharacter(
  20578. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20579. {
  20580. front: {
  20581. height: math.unit(8, "feet"),
  20582. weight: math.unit(350, "lb"),
  20583. name: "Front",
  20584. image: {
  20585. source: "./media/characters/gabira/front.svg",
  20586. extra: 608 / 580,
  20587. bottom: 0.03
  20588. }
  20589. },
  20590. back: {
  20591. height: math.unit(8, "feet"),
  20592. weight: math.unit(350, "lb"),
  20593. name: "Back",
  20594. image: {
  20595. source: "./media/characters/gabira/back.svg",
  20596. extra: 608 / 580,
  20597. bottom: 0.03
  20598. }
  20599. },
  20600. },
  20601. [
  20602. {
  20603. name: "Normal",
  20604. height: math.unit(8, "feet"),
  20605. default: true
  20606. },
  20607. ]
  20608. ))
  20609. characterMakers.push(() => makeCharacter(
  20610. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20611. {
  20612. front: {
  20613. height: math.unit(5 + 3 / 12, "feet"),
  20614. weight: math.unit(137, "lb"),
  20615. name: "Front",
  20616. image: {
  20617. source: "./media/characters/sasha-katraine/front.svg",
  20618. bottom: 0.045
  20619. }
  20620. },
  20621. },
  20622. [
  20623. {
  20624. name: "Micro",
  20625. height: math.unit(5, "inches")
  20626. },
  20627. {
  20628. name: "Normal",
  20629. height: math.unit(5 + 3 / 12, "feet"),
  20630. default: true
  20631. },
  20632. ]
  20633. ))
  20634. characterMakers.push(() => makeCharacter(
  20635. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20636. {
  20637. side: {
  20638. height: math.unit(4, "inches"),
  20639. weight: math.unit(200, "grams"),
  20640. name: "Side",
  20641. image: {
  20642. source: "./media/characters/der/side.svg",
  20643. extra: 719 / 400,
  20644. bottom: 30.6 / 749.9187
  20645. }
  20646. },
  20647. },
  20648. [
  20649. {
  20650. name: "Micro",
  20651. height: math.unit(4, "inches"),
  20652. default: true
  20653. },
  20654. ]
  20655. ))
  20656. characterMakers.push(() => makeCharacter(
  20657. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20658. {
  20659. side: {
  20660. height: math.unit(30, "meters"),
  20661. weight: math.unit(700, "tonnes"),
  20662. name: "Side",
  20663. image: {
  20664. source: "./media/characters/fixerdragon/side.svg",
  20665. extra: (1293.0514 - 116.03) / 1106.86,
  20666. bottom: 116.03 / 1293.0514
  20667. }
  20668. },
  20669. },
  20670. [
  20671. {
  20672. name: "Planck",
  20673. height: math.unit(1.6e-35, "meters")
  20674. },
  20675. {
  20676. name: "Micro",
  20677. height: math.unit(0.4, "meters")
  20678. },
  20679. {
  20680. name: "Normal",
  20681. height: math.unit(30, "meters"),
  20682. default: true
  20683. },
  20684. {
  20685. name: "Megamacro",
  20686. height: math.unit(1.2, "megameters")
  20687. },
  20688. {
  20689. name: "Teramacro",
  20690. height: math.unit(130, "terameters")
  20691. },
  20692. {
  20693. name: "Yottamacro",
  20694. height: math.unit(6200, "yottameters")
  20695. },
  20696. ]
  20697. ));
  20698. characterMakers.push(() => makeCharacter(
  20699. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20700. {
  20701. front: {
  20702. height: math.unit(8, "feet"),
  20703. weight: math.unit(250, "lb"),
  20704. name: "Front",
  20705. image: {
  20706. source: "./media/characters/kite/front.svg",
  20707. extra: 2796 / 2659,
  20708. bottom: 0.002
  20709. }
  20710. },
  20711. },
  20712. [
  20713. {
  20714. name: "Normal",
  20715. height: math.unit(8, "feet"),
  20716. default: true
  20717. },
  20718. {
  20719. name: "Macro",
  20720. height: math.unit(360, "feet")
  20721. },
  20722. {
  20723. name: "Megamacro",
  20724. height: math.unit(1500, "feet")
  20725. },
  20726. ]
  20727. ))
  20728. characterMakers.push(() => makeCharacter(
  20729. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20730. {
  20731. front: {
  20732. height: math.unit(5 + 10 / 12, "feet"),
  20733. weight: math.unit(150, "lb"),
  20734. name: "Front",
  20735. image: {
  20736. source: "./media/characters/poojawa-vynar/front.svg",
  20737. extra: (1506.1547 - 55) / 1356.6,
  20738. bottom: 55 / 1506.1547
  20739. }
  20740. },
  20741. frontTailless: {
  20742. height: math.unit(5 + 10 / 12, "feet"),
  20743. weight: math.unit(150, "lb"),
  20744. name: "Front (Tailless)",
  20745. image: {
  20746. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20747. extra: (1506.1547 - 55) / 1356.6,
  20748. bottom: 55 / 1506.1547
  20749. }
  20750. },
  20751. },
  20752. [
  20753. {
  20754. name: "Normal",
  20755. height: math.unit(5 + 10 / 12, "feet"),
  20756. default: true
  20757. },
  20758. ]
  20759. ))
  20760. characterMakers.push(() => makeCharacter(
  20761. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  20762. {
  20763. front: {
  20764. height: math.unit(293, "meters"),
  20765. weight: math.unit(70400, "tons"),
  20766. name: "Front",
  20767. image: {
  20768. source: "./media/characters/violette/front.svg",
  20769. extra: 1227 / 1180,
  20770. bottom: 0.005
  20771. }
  20772. },
  20773. back: {
  20774. height: math.unit(293, "meters"),
  20775. weight: math.unit(70400, "tons"),
  20776. name: "Back",
  20777. image: {
  20778. source: "./media/characters/violette/back.svg",
  20779. extra: 1227 / 1180,
  20780. bottom: 0.005
  20781. }
  20782. },
  20783. },
  20784. [
  20785. {
  20786. name: "Macro",
  20787. height: math.unit(293, "meters"),
  20788. default: true
  20789. },
  20790. ]
  20791. ))
  20792. characterMakers.push(() => makeCharacter(
  20793. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  20794. {
  20795. front: {
  20796. height: math.unit(1050, "feet"),
  20797. weight: math.unit(200000, "tons"),
  20798. name: "Front",
  20799. image: {
  20800. source: "./media/characters/alessandra/front.svg",
  20801. extra: 960 / 912,
  20802. bottom: 0.06
  20803. }
  20804. },
  20805. },
  20806. [
  20807. {
  20808. name: "Macro",
  20809. height: math.unit(1050, "feet")
  20810. },
  20811. {
  20812. name: "Macro+",
  20813. height: math.unit(900, "meters"),
  20814. default: true
  20815. },
  20816. ]
  20817. ))
  20818. characterMakers.push(() => makeCharacter(
  20819. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  20820. {
  20821. front: {
  20822. height: math.unit(5, "feet"),
  20823. weight: math.unit(187, "lb"),
  20824. name: "Front",
  20825. image: {
  20826. source: "./media/characters/person/front.svg",
  20827. extra: 3087 / 2945,
  20828. bottom: 91 / 3181
  20829. }
  20830. },
  20831. },
  20832. [
  20833. {
  20834. name: "Micro",
  20835. height: math.unit(3, "inches")
  20836. },
  20837. {
  20838. name: "Normal",
  20839. height: math.unit(5, "feet"),
  20840. default: true
  20841. },
  20842. {
  20843. name: "Macro",
  20844. height: math.unit(90, "feet")
  20845. },
  20846. {
  20847. name: "Max Size",
  20848. height: math.unit(280, "feet")
  20849. },
  20850. ]
  20851. ))
  20852. characterMakers.push(() => makeCharacter(
  20853. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  20854. {
  20855. front: {
  20856. height: math.unit(4.5, "meters"),
  20857. weight: math.unit(3200, "lb"),
  20858. name: "Front",
  20859. image: {
  20860. source: "./media/characters/ty/front.svg",
  20861. extra: 1038 / 960,
  20862. bottom: 31.156 / 1068
  20863. }
  20864. },
  20865. back: {
  20866. height: math.unit(4.5, "meters"),
  20867. weight: math.unit(3200, "lb"),
  20868. name: "Back",
  20869. image: {
  20870. source: "./media/characters/ty/back.svg",
  20871. extra: 1044 / 966,
  20872. bottom: 7.48 / 1049
  20873. }
  20874. },
  20875. },
  20876. [
  20877. {
  20878. name: "Normal",
  20879. height: math.unit(4.5, "meters"),
  20880. default: true
  20881. },
  20882. ]
  20883. ))
  20884. characterMakers.push(() => makeCharacter(
  20885. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  20886. {
  20887. front: {
  20888. height: math.unit(5 + 4 / 12, "feet"),
  20889. weight: math.unit(115, "lb"),
  20890. name: "Front",
  20891. image: {
  20892. source: "./media/characters/rocky/front.svg",
  20893. extra: 1012 / 975,
  20894. bottom: 54 / 1066
  20895. }
  20896. },
  20897. },
  20898. [
  20899. {
  20900. name: "Normal",
  20901. height: math.unit(5 + 4 / 12, "feet"),
  20902. default: true
  20903. },
  20904. ]
  20905. ))
  20906. characterMakers.push(() => makeCharacter(
  20907. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  20908. {
  20909. upright: {
  20910. height: math.unit(6, "meters"),
  20911. weight: math.unit(4000, "kg"),
  20912. name: "Upright",
  20913. image: {
  20914. source: "./media/characters/ruin/upright.svg",
  20915. extra: 668 / 661,
  20916. bottom: 42 / 799.8396
  20917. }
  20918. },
  20919. },
  20920. [
  20921. {
  20922. name: "Normal",
  20923. height: math.unit(6, "meters"),
  20924. default: true
  20925. },
  20926. ]
  20927. ))
  20928. characterMakers.push(() => makeCharacter(
  20929. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  20930. {
  20931. front: {
  20932. height: math.unit(5, "feet"),
  20933. weight: math.unit(106, "lb"),
  20934. name: "Front",
  20935. image: {
  20936. source: "./media/characters/robin/front.svg",
  20937. extra: 862 / 799,
  20938. bottom: 42.4 / 914.8856
  20939. }
  20940. },
  20941. },
  20942. [
  20943. {
  20944. name: "Normal",
  20945. height: math.unit(5, "feet"),
  20946. default: true
  20947. },
  20948. ]
  20949. ))
  20950. characterMakers.push(() => makeCharacter(
  20951. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  20952. {
  20953. side: {
  20954. height: math.unit(3, "feet"),
  20955. weight: math.unit(225, "lb"),
  20956. name: "Side",
  20957. image: {
  20958. source: "./media/characters/saian/side.svg",
  20959. extra: 566 / 356,
  20960. bottom: 79.7 / 643
  20961. }
  20962. },
  20963. maw: {
  20964. height: math.unit(2.85, "feet"),
  20965. name: "Maw",
  20966. image: {
  20967. source: "./media/characters/saian/maw.svg"
  20968. }
  20969. },
  20970. },
  20971. [
  20972. {
  20973. name: "Normal",
  20974. height: math.unit(3, "feet"),
  20975. default: true
  20976. },
  20977. ]
  20978. ))
  20979. characterMakers.push(() => makeCharacter(
  20980. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  20981. {
  20982. side: {
  20983. height: math.unit(8, "feet"),
  20984. weight: math.unit(300, "lb"),
  20985. name: "Side",
  20986. image: {
  20987. source: "./media/characters/equus-silvermane/side.svg",
  20988. extra: 2176 / 2050,
  20989. bottom: 65.7 / 2245
  20990. }
  20991. },
  20992. front: {
  20993. height: math.unit(8, "feet"),
  20994. weight: math.unit(300, "lb"),
  20995. name: "Front",
  20996. image: {
  20997. source: "./media/characters/equus-silvermane/front.svg",
  20998. extra: 4633 / 4400,
  20999. bottom: 71.3 / 4706.915
  21000. }
  21001. },
  21002. sideStepping: {
  21003. height: math.unit(8, "feet"),
  21004. weight: math.unit(300, "lb"),
  21005. name: "Side (Stepping)",
  21006. image: {
  21007. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21008. extra: 1968 / 1860,
  21009. bottom: 16.4 / 1989
  21010. }
  21011. },
  21012. },
  21013. [
  21014. {
  21015. name: "Normal",
  21016. height: math.unit(8, "feet")
  21017. },
  21018. {
  21019. name: "Minimacro",
  21020. height: math.unit(75, "feet"),
  21021. default: true
  21022. },
  21023. {
  21024. name: "Macro",
  21025. height: math.unit(150, "feet")
  21026. },
  21027. {
  21028. name: "Macro+",
  21029. height: math.unit(1000, "feet")
  21030. },
  21031. {
  21032. name: "Megamacro",
  21033. height: math.unit(1, "mile")
  21034. },
  21035. ]
  21036. ))
  21037. characterMakers.push(() => makeCharacter(
  21038. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21039. {
  21040. side: {
  21041. height: math.unit(20, "feet"),
  21042. weight: math.unit(30000, "kg"),
  21043. name: "Side",
  21044. image: {
  21045. source: "./media/characters/windar/side.svg",
  21046. extra: 1491 / 1248,
  21047. bottom: 82.56 / 1568
  21048. }
  21049. },
  21050. },
  21051. [
  21052. {
  21053. name: "Normal",
  21054. height: math.unit(20, "feet"),
  21055. default: true
  21056. },
  21057. ]
  21058. ))
  21059. characterMakers.push(() => makeCharacter(
  21060. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21061. {
  21062. side: {
  21063. height: math.unit(15.66, "feet"),
  21064. weight: math.unit(150, "lb"),
  21065. name: "Side",
  21066. image: {
  21067. source: "./media/characters/melody/side.svg",
  21068. extra: 1097 / 944,
  21069. bottom: 11.8 / 1109
  21070. }
  21071. },
  21072. sideOutfit: {
  21073. height: math.unit(15.66, "feet"),
  21074. weight: math.unit(150, "lb"),
  21075. name: "Side (Outfit)",
  21076. image: {
  21077. source: "./media/characters/melody/side-outfit.svg",
  21078. extra: 1097 / 944,
  21079. bottom: 11.8 / 1109
  21080. }
  21081. },
  21082. },
  21083. [
  21084. {
  21085. name: "Normal",
  21086. height: math.unit(15.66, "feet"),
  21087. default: true
  21088. },
  21089. ]
  21090. ))
  21091. characterMakers.push(() => makeCharacter(
  21092. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21093. {
  21094. front: {
  21095. height: math.unit(8, "feet"),
  21096. weight: math.unit(325, "lb"),
  21097. name: "Front",
  21098. image: {
  21099. source: "./media/characters/windera/front.svg",
  21100. extra: 3180 / 2845,
  21101. bottom: 178 / 3365
  21102. }
  21103. },
  21104. },
  21105. [
  21106. {
  21107. name: "Normal",
  21108. height: math.unit(8, "feet"),
  21109. default: true
  21110. },
  21111. ]
  21112. ))
  21113. characterMakers.push(() => makeCharacter(
  21114. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21115. {
  21116. front: {
  21117. height: math.unit(28.75, "feet"),
  21118. weight: math.unit(2000, "kg"),
  21119. name: "Front",
  21120. image: {
  21121. source: "./media/characters/sonear/front.svg",
  21122. extra: 1041.1 / 964.9,
  21123. bottom: 53.7 / 1096.6
  21124. }
  21125. },
  21126. },
  21127. [
  21128. {
  21129. name: "Normal",
  21130. height: math.unit(28.75, "feet"),
  21131. default: true
  21132. },
  21133. ]
  21134. ))
  21135. characterMakers.push(() => makeCharacter(
  21136. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21137. {
  21138. side: {
  21139. height: math.unit(25.5, "feet"),
  21140. weight: math.unit(23000, "kg"),
  21141. name: "Side",
  21142. image: {
  21143. source: "./media/characters/kanara/side.svg"
  21144. }
  21145. },
  21146. },
  21147. [
  21148. {
  21149. name: "Normal",
  21150. height: math.unit(25.5, "feet"),
  21151. default: true
  21152. },
  21153. ]
  21154. ))
  21155. characterMakers.push(() => makeCharacter(
  21156. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21157. {
  21158. side: {
  21159. height: math.unit(10, "feet"),
  21160. weight: math.unit(1000, "kg"),
  21161. name: "Side",
  21162. image: {
  21163. source: "./media/characters/ereus/side.svg",
  21164. extra: 1157 / 959,
  21165. bottom: 153 / 1312.5
  21166. }
  21167. },
  21168. },
  21169. [
  21170. {
  21171. name: "Normal",
  21172. height: math.unit(10, "feet"),
  21173. default: true
  21174. },
  21175. ]
  21176. ))
  21177. characterMakers.push(() => makeCharacter(
  21178. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21179. {
  21180. side: {
  21181. height: math.unit(4.5, "feet"),
  21182. weight: math.unit(500, "lb"),
  21183. name: "Side",
  21184. image: {
  21185. source: "./media/characters/e-ter/side.svg",
  21186. extra: 1550 / 1248,
  21187. bottom: 146 / 1694
  21188. }
  21189. },
  21190. },
  21191. [
  21192. {
  21193. name: "Normal",
  21194. height: math.unit(4.5, "feet"),
  21195. default: true
  21196. },
  21197. ]
  21198. ))
  21199. characterMakers.push(() => makeCharacter(
  21200. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21201. {
  21202. side: {
  21203. height: math.unit(9.7, "feet"),
  21204. weight: math.unit(4000, "kg"),
  21205. name: "Side",
  21206. image: {
  21207. source: "./media/characters/yamie/side.svg"
  21208. }
  21209. },
  21210. },
  21211. [
  21212. {
  21213. name: "Normal",
  21214. height: math.unit(9.7, "feet"),
  21215. default: true
  21216. },
  21217. ]
  21218. ))
  21219. characterMakers.push(() => makeCharacter(
  21220. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21221. {
  21222. front: {
  21223. height: math.unit(50, "feet"),
  21224. weight: math.unit(50000, "kg"),
  21225. name: "Front",
  21226. image: {
  21227. source: "./media/characters/anders/front.svg",
  21228. extra: 570 / 539,
  21229. bottom: 14.7 / 586.7
  21230. }
  21231. },
  21232. },
  21233. [
  21234. {
  21235. name: "Large",
  21236. height: math.unit(50, "feet")
  21237. },
  21238. {
  21239. name: "Macro",
  21240. height: math.unit(2000, "feet"),
  21241. default: true
  21242. },
  21243. {
  21244. name: "Megamacro",
  21245. height: math.unit(12, "miles")
  21246. },
  21247. ]
  21248. ))
  21249. characterMakers.push(() => makeCharacter(
  21250. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21251. {
  21252. front: {
  21253. height: math.unit(7 + 2 / 12, "feet"),
  21254. weight: math.unit(300, "lb"),
  21255. name: "Front",
  21256. image: {
  21257. source: "./media/characters/reban/front.svg",
  21258. extra: 516 / 487,
  21259. bottom: 42.82 / 558.356
  21260. }
  21261. },
  21262. dick: {
  21263. height: math.unit(7 / 5, "feet"),
  21264. name: "Dick",
  21265. image: {
  21266. source: "./media/characters/reban/dick.svg"
  21267. }
  21268. },
  21269. },
  21270. [
  21271. {
  21272. name: "Natural Height",
  21273. height: math.unit(7 + 2 / 12, "feet")
  21274. },
  21275. {
  21276. name: "Macro",
  21277. height: math.unit(500, "feet"),
  21278. default: true
  21279. },
  21280. {
  21281. name: "Canon Height",
  21282. height: math.unit(50, "AU")
  21283. },
  21284. ]
  21285. ))
  21286. characterMakers.push(() => makeCharacter(
  21287. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21288. {
  21289. front: {
  21290. height: math.unit(6, "feet"),
  21291. weight: math.unit(150, "lb"),
  21292. name: "Front",
  21293. image: {
  21294. source: "./media/characters/terrance-keayes/front.svg",
  21295. extra: 1.005,
  21296. bottom: 151 / 1615
  21297. }
  21298. },
  21299. side: {
  21300. height: math.unit(6, "feet"),
  21301. weight: math.unit(150, "lb"),
  21302. name: "Side",
  21303. image: {
  21304. source: "./media/characters/terrance-keayes/side.svg",
  21305. extra: 1.005,
  21306. bottom: 129.4 / 1544
  21307. }
  21308. },
  21309. back: {
  21310. height: math.unit(6, "feet"),
  21311. weight: math.unit(150, "lb"),
  21312. name: "Back",
  21313. image: {
  21314. source: "./media/characters/terrance-keayes/back.svg",
  21315. extra: 1.005,
  21316. bottom: 58.4 / 1557.3
  21317. }
  21318. },
  21319. dick: {
  21320. height: math.unit(6 * 0.208, "feet"),
  21321. name: "Dick",
  21322. image: {
  21323. source: "./media/characters/terrance-keayes/dick.svg"
  21324. }
  21325. },
  21326. },
  21327. [
  21328. {
  21329. name: "Canon Height",
  21330. height: math.unit(35, "miles"),
  21331. default: true
  21332. },
  21333. ]
  21334. ))
  21335. characterMakers.push(() => makeCharacter(
  21336. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21337. {
  21338. front: {
  21339. height: math.unit(6, "feet"),
  21340. weight: math.unit(150, "lb"),
  21341. name: "Front",
  21342. image: {
  21343. source: "./media/characters/ofelia/front.svg",
  21344. extra: 546 / 541,
  21345. bottom: 39 / 583
  21346. }
  21347. },
  21348. back: {
  21349. height: math.unit(6, "feet"),
  21350. weight: math.unit(150, "lb"),
  21351. name: "Back",
  21352. image: {
  21353. source: "./media/characters/ofelia/back.svg",
  21354. extra: 564 / 559.5,
  21355. bottom: 8.69 / 573.02
  21356. }
  21357. },
  21358. maw: {
  21359. height: math.unit(1, "feet"),
  21360. name: "Maw",
  21361. image: {
  21362. source: "./media/characters/ofelia/maw.svg"
  21363. }
  21364. },
  21365. foot: {
  21366. height: math.unit(1.949, "feet"),
  21367. name: "Foot",
  21368. image: {
  21369. source: "./media/characters/ofelia/foot.svg"
  21370. }
  21371. },
  21372. },
  21373. [
  21374. {
  21375. name: "Canon Height",
  21376. height: math.unit(2000, "miles"),
  21377. default: true
  21378. },
  21379. ]
  21380. ))
  21381. characterMakers.push(() => makeCharacter(
  21382. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21383. {
  21384. front: {
  21385. height: math.unit(6, "feet"),
  21386. weight: math.unit(150, "lb"),
  21387. name: "Front",
  21388. image: {
  21389. source: "./media/characters/samuel/front.svg",
  21390. extra: 265 / 258,
  21391. bottom: 2 / 266.1566
  21392. }
  21393. },
  21394. },
  21395. [
  21396. {
  21397. name: "Macro",
  21398. height: math.unit(100, "feet"),
  21399. default: true
  21400. },
  21401. {
  21402. name: "Full Size",
  21403. height: math.unit(1000, "miles")
  21404. },
  21405. ]
  21406. ))
  21407. characterMakers.push(() => makeCharacter(
  21408. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21409. {
  21410. front: {
  21411. height: math.unit(6, "feet"),
  21412. weight: math.unit(300, "lb"),
  21413. name: "Front",
  21414. image: {
  21415. source: "./media/characters/beishir-kiel/front.svg",
  21416. extra: 569 / 547,
  21417. bottom: 41.9 / 609
  21418. }
  21419. },
  21420. maw: {
  21421. height: math.unit(6 * 0.202, "feet"),
  21422. name: "Maw",
  21423. image: {
  21424. source: "./media/characters/beishir-kiel/maw.svg"
  21425. }
  21426. },
  21427. },
  21428. [
  21429. {
  21430. name: "Macro",
  21431. height: math.unit(300, "feet"),
  21432. default: true
  21433. },
  21434. ]
  21435. ))
  21436. characterMakers.push(() => makeCharacter(
  21437. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21438. {
  21439. front: {
  21440. height: math.unit(5 + 8 / 12, "feet"),
  21441. weight: math.unit(120, "lb"),
  21442. name: "Front",
  21443. image: {
  21444. source: "./media/characters/logan-grey/front.svg",
  21445. extra: 2539 / 2393,
  21446. bottom: 97.6 / 2636.37
  21447. }
  21448. },
  21449. frontAlt: {
  21450. height: math.unit(5 + 8 / 12, "feet"),
  21451. weight: math.unit(120, "lb"),
  21452. name: "Front (Alt)",
  21453. image: {
  21454. source: "./media/characters/logan-grey/front-alt.svg",
  21455. extra: 958 / 893,
  21456. bottom: 15 / 970.768
  21457. }
  21458. },
  21459. back: {
  21460. height: math.unit(5 + 8 / 12, "feet"),
  21461. weight: math.unit(120, "lb"),
  21462. name: "Back",
  21463. image: {
  21464. source: "./media/characters/logan-grey/back.svg",
  21465. extra: 958 / 893,
  21466. bottom: 2.1881 / 970.9788
  21467. }
  21468. },
  21469. dick: {
  21470. height: math.unit(1.437, "feet"),
  21471. name: "Dick",
  21472. image: {
  21473. source: "./media/characters/logan-grey/dick.svg"
  21474. }
  21475. },
  21476. },
  21477. [
  21478. {
  21479. name: "Normal",
  21480. height: math.unit(5 + 8 / 12, "feet")
  21481. },
  21482. {
  21483. name: "The 500 Foot Femboy",
  21484. height: math.unit(500, "feet"),
  21485. default: true
  21486. },
  21487. {
  21488. name: "Megmacro",
  21489. height: math.unit(20, "miles")
  21490. },
  21491. ]
  21492. ))
  21493. characterMakers.push(() => makeCharacter(
  21494. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21495. {
  21496. front: {
  21497. height: math.unit(8 + 2 / 12, "feet"),
  21498. weight: math.unit(275, "lb"),
  21499. name: "Front",
  21500. image: {
  21501. source: "./media/characters/draganta/front.svg",
  21502. extra: 1177 / 1135,
  21503. bottom: 33.46 / 1212.1
  21504. }
  21505. },
  21506. },
  21507. [
  21508. {
  21509. name: "Normal",
  21510. height: math.unit(8 + 6 / 12, "feet"),
  21511. default: true
  21512. },
  21513. {
  21514. name: "Macro",
  21515. height: math.unit(150, "feet")
  21516. },
  21517. {
  21518. name: "Megamacro",
  21519. height: math.unit(1000, "miles")
  21520. },
  21521. ]
  21522. ))
  21523. characterMakers.push(() => makeCharacter(
  21524. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21525. {
  21526. front: {
  21527. height: math.unit(1.72, "m"),
  21528. weight: math.unit(80, "lb"),
  21529. name: "Front",
  21530. image: {
  21531. source: "./media/characters/voski/front.svg",
  21532. extra: 2076.22 / 2022.4,
  21533. bottom: 102.7 / 2177.3866
  21534. }
  21535. },
  21536. frontNsfw: {
  21537. height: math.unit(1.72, "m"),
  21538. weight: math.unit(80, "lb"),
  21539. name: "Front (NSFW)",
  21540. image: {
  21541. source: "./media/characters/voski/front-nsfw.svg",
  21542. extra: 2076.22 / 2022.4,
  21543. bottom: 102.7 / 2177.3866
  21544. }
  21545. },
  21546. back: {
  21547. height: math.unit(1.72, "m"),
  21548. weight: math.unit(80, "lb"),
  21549. name: "Back",
  21550. image: {
  21551. source: "./media/characters/voski/back.svg",
  21552. extra: 2104 / 2051,
  21553. bottom: 10.45 / 2113.63
  21554. }
  21555. },
  21556. },
  21557. [
  21558. {
  21559. name: "Normal",
  21560. height: math.unit(1.72, "m")
  21561. },
  21562. {
  21563. name: "Macro",
  21564. height: math.unit(55, "m"),
  21565. default: true
  21566. },
  21567. {
  21568. name: "Macro+",
  21569. height: math.unit(300, "m")
  21570. },
  21571. {
  21572. name: "Macro++",
  21573. height: math.unit(700, "m")
  21574. },
  21575. {
  21576. name: "Macro+++",
  21577. height: math.unit(4500, "m")
  21578. },
  21579. {
  21580. name: "Macro++++",
  21581. height: math.unit(45, "km")
  21582. },
  21583. {
  21584. name: "Macro+++++",
  21585. height: math.unit(1220, "km")
  21586. },
  21587. ]
  21588. ))
  21589. characterMakers.push(() => makeCharacter(
  21590. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21591. {
  21592. front: {
  21593. height: math.unit(2.3, "m"),
  21594. weight: math.unit(304, "kg"),
  21595. name: "Front",
  21596. image: {
  21597. source: "./media/characters/icowom-lee/front.svg",
  21598. extra: 985 / 955,
  21599. bottom: 25.4 / 1012
  21600. }
  21601. },
  21602. fronttentacles: {
  21603. height: math.unit(2.3, "m"),
  21604. weight: math.unit(304, "kg"),
  21605. name: "Front-tentacles",
  21606. image: {
  21607. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21608. extra: 985 / 955,
  21609. bottom: 25.4 / 1012
  21610. }
  21611. },
  21612. back: {
  21613. height: math.unit(2.3, "m"),
  21614. weight: math.unit(304, "kg"),
  21615. name: "Back",
  21616. image: {
  21617. source: "./media/characters/icowom-lee/back.svg",
  21618. extra: 975 / 954,
  21619. bottom: 9.5 / 985
  21620. }
  21621. },
  21622. backtentacles: {
  21623. height: math.unit(2.3, "m"),
  21624. weight: math.unit(304, "kg"),
  21625. name: "Back-tentacles",
  21626. image: {
  21627. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21628. extra: 975 / 954,
  21629. bottom: 9.5 / 985
  21630. }
  21631. },
  21632. frontDressed: {
  21633. height: math.unit(2.3, "m"),
  21634. weight: math.unit(304, "kg"),
  21635. name: "Front (Dressed)",
  21636. image: {
  21637. source: "./media/characters/icowom-lee/front-dressed.svg",
  21638. extra: 3076 / 2933,
  21639. bottom: 51.4 / 3125.1889
  21640. }
  21641. },
  21642. rump: {
  21643. height: math.unit(0.776, "meters"),
  21644. name: "Rump",
  21645. image: {
  21646. source: "./media/characters/icowom-lee/rump.svg"
  21647. }
  21648. },
  21649. genitals: {
  21650. height: math.unit(0.78, "meters"),
  21651. name: "Genitals",
  21652. image: {
  21653. source: "./media/characters/icowom-lee/genitals.svg"
  21654. }
  21655. },
  21656. },
  21657. [
  21658. {
  21659. name: "Normal",
  21660. height: math.unit(2.3, "meters"),
  21661. default: true
  21662. },
  21663. {
  21664. name: "Macro",
  21665. height: math.unit(94, "meters"),
  21666. default: true
  21667. },
  21668. ]
  21669. ))
  21670. characterMakers.push(() => makeCharacter(
  21671. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21672. {
  21673. front: {
  21674. height: math.unit(22, "meters"),
  21675. weight: math.unit(21000, "kg"),
  21676. name: "Front",
  21677. image: {
  21678. source: "./media/characters/shock-diamond/front.svg",
  21679. extra: 2204 / 2053,
  21680. bottom: 65 / 2239.47
  21681. }
  21682. },
  21683. frontNude: {
  21684. height: math.unit(22, "meters"),
  21685. weight: math.unit(21000, "kg"),
  21686. name: "Front (Nude)",
  21687. image: {
  21688. source: "./media/characters/shock-diamond/front-nude.svg",
  21689. extra: 2514 / 2285,
  21690. bottom: 13 / 2527.56
  21691. }
  21692. },
  21693. },
  21694. [
  21695. {
  21696. name: "Normal",
  21697. height: math.unit(3, "meters")
  21698. },
  21699. {
  21700. name: "Macro",
  21701. height: math.unit(22, "meters"),
  21702. default: true
  21703. },
  21704. ]
  21705. ))
  21706. characterMakers.push(() => makeCharacter(
  21707. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21708. {
  21709. front: {
  21710. height: math.unit(5 + 4 / 12, "feet"),
  21711. weight: math.unit(120, "lb"),
  21712. name: "Front",
  21713. image: {
  21714. source: "./media/characters/rory/front.svg",
  21715. extra: 589 / 556,
  21716. bottom: 45.7 / 635.76
  21717. }
  21718. },
  21719. frontNude: {
  21720. height: math.unit(5 + 4 / 12, "feet"),
  21721. weight: math.unit(120, "lb"),
  21722. name: "Front (Nude)",
  21723. image: {
  21724. source: "./media/characters/rory/front-nude.svg",
  21725. extra: 589 / 556,
  21726. bottom: 45.7 / 635.76
  21727. }
  21728. },
  21729. side: {
  21730. height: math.unit(5 + 4 / 12, "feet"),
  21731. weight: math.unit(120, "lb"),
  21732. name: "Side",
  21733. image: {
  21734. source: "./media/characters/rory/side.svg",
  21735. extra: 597 / 564,
  21736. bottom: 55 / 653
  21737. }
  21738. },
  21739. back: {
  21740. height: math.unit(5 + 4 / 12, "feet"),
  21741. weight: math.unit(120, "lb"),
  21742. name: "Back",
  21743. image: {
  21744. source: "./media/characters/rory/back.svg",
  21745. extra: 620 / 585,
  21746. bottom: 8.86 / 630.43
  21747. }
  21748. },
  21749. dick: {
  21750. height: math.unit(0.86, "feet"),
  21751. name: "Dick",
  21752. image: {
  21753. source: "./media/characters/rory/dick.svg"
  21754. }
  21755. },
  21756. },
  21757. [
  21758. {
  21759. name: "Normal",
  21760. height: math.unit(5 + 4 / 12, "feet"),
  21761. default: true
  21762. },
  21763. {
  21764. name: "Macro",
  21765. height: math.unit(100, "feet")
  21766. },
  21767. {
  21768. name: "Macro+",
  21769. height: math.unit(140, "feet")
  21770. },
  21771. {
  21772. name: "Macro++",
  21773. height: math.unit(300, "feet")
  21774. },
  21775. ]
  21776. ))
  21777. characterMakers.push(() => makeCharacter(
  21778. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  21779. {
  21780. front: {
  21781. height: math.unit(5 + 9 / 12, "feet"),
  21782. weight: math.unit(190, "lb"),
  21783. name: "Front",
  21784. image: {
  21785. source: "./media/characters/sprisk/front.svg",
  21786. extra: 1225 / 1180,
  21787. bottom: 42.7 / 1266.4
  21788. }
  21789. },
  21790. frontNsfw: {
  21791. height: math.unit(5 + 9 / 12, "feet"),
  21792. weight: math.unit(190, "lb"),
  21793. name: "Front (NSFW)",
  21794. image: {
  21795. source: "./media/characters/sprisk/front-nsfw.svg",
  21796. extra: 1225 / 1180,
  21797. bottom: 42.7 / 1266.4
  21798. }
  21799. },
  21800. back: {
  21801. height: math.unit(5 + 9 / 12, "feet"),
  21802. weight: math.unit(190, "lb"),
  21803. name: "Back",
  21804. image: {
  21805. source: "./media/characters/sprisk/back.svg",
  21806. extra: 1247 / 1200,
  21807. bottom: 5.6 / 1253.04
  21808. }
  21809. },
  21810. },
  21811. [
  21812. {
  21813. name: "Tiny",
  21814. height: math.unit(2, "inches")
  21815. },
  21816. {
  21817. name: "Normal",
  21818. height: math.unit(5 + 9 / 12, "feet"),
  21819. default: true
  21820. },
  21821. {
  21822. name: "Mini Macro",
  21823. height: math.unit(18, "feet")
  21824. },
  21825. {
  21826. name: "Macro",
  21827. height: math.unit(100, "feet")
  21828. },
  21829. {
  21830. name: "MACRO",
  21831. height: math.unit(50, "miles")
  21832. },
  21833. {
  21834. name: "M A C R O",
  21835. height: math.unit(300, "miles")
  21836. },
  21837. ]
  21838. ))
  21839. characterMakers.push(() => makeCharacter(
  21840. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  21841. {
  21842. side: {
  21843. height: math.unit(15.6, "meters"),
  21844. weight: math.unit(700000, "kg"),
  21845. name: "Side",
  21846. image: {
  21847. source: "./media/characters/bunsen/side.svg",
  21848. extra: 1644 / 358
  21849. }
  21850. },
  21851. foot: {
  21852. height: math.unit(1.611 * 1644 / 358, "meter"),
  21853. name: "Foot",
  21854. image: {
  21855. source: "./media/characters/bunsen/foot.svg"
  21856. }
  21857. },
  21858. },
  21859. [
  21860. {
  21861. name: "Small",
  21862. height: math.unit(10, "feet")
  21863. },
  21864. {
  21865. name: "Normal",
  21866. height: math.unit(15.6, "meters"),
  21867. default: true
  21868. },
  21869. ]
  21870. ))
  21871. characterMakers.push(() => makeCharacter(
  21872. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  21873. {
  21874. front: {
  21875. height: math.unit(4 + 11 / 12, "feet"),
  21876. weight: math.unit(140, "lb"),
  21877. name: "Front",
  21878. image: {
  21879. source: "./media/characters/sesh/front.svg",
  21880. extra: 3420 / 3231,
  21881. bottom: 72 / 3949.5
  21882. }
  21883. },
  21884. },
  21885. [
  21886. {
  21887. name: "Normal",
  21888. height: math.unit(4 + 11 / 12, "feet")
  21889. },
  21890. {
  21891. name: "Grown",
  21892. height: math.unit(15, "feet"),
  21893. default: true
  21894. },
  21895. {
  21896. name: "Macro",
  21897. height: math.unit(1500, "feet")
  21898. },
  21899. {
  21900. name: "Megamacro",
  21901. height: math.unit(30, "miles")
  21902. },
  21903. {
  21904. name: "Continental",
  21905. height: math.unit(3000, "miles")
  21906. },
  21907. {
  21908. name: "Gravity Mass",
  21909. height: math.unit(300000, "miles")
  21910. },
  21911. {
  21912. name: "Planet Buster",
  21913. height: math.unit(30000000, "miles")
  21914. },
  21915. {
  21916. name: "Big",
  21917. height: math.unit(3000000000, "miles")
  21918. },
  21919. ]
  21920. ))
  21921. characterMakers.push(() => makeCharacter(
  21922. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  21923. {
  21924. front: {
  21925. height: math.unit(9, "feet"),
  21926. weight: math.unit(350, "lb"),
  21927. name: "Front",
  21928. image: {
  21929. source: "./media/characters/pepper/front.svg",
  21930. extra: 1448 / 1312,
  21931. bottom: 9.4 / 1457.88
  21932. }
  21933. },
  21934. back: {
  21935. height: math.unit(9, "feet"),
  21936. weight: math.unit(350, "lb"),
  21937. name: "Back",
  21938. image: {
  21939. source: "./media/characters/pepper/back.svg",
  21940. extra: 1423 / 1300,
  21941. bottom: 4.6 / 1429
  21942. }
  21943. },
  21944. maw: {
  21945. height: math.unit(0.932, "feet"),
  21946. name: "Maw",
  21947. image: {
  21948. source: "./media/characters/pepper/maw.svg"
  21949. }
  21950. },
  21951. },
  21952. [
  21953. {
  21954. name: "Normal",
  21955. height: math.unit(9, "feet"),
  21956. default: true
  21957. },
  21958. ]
  21959. ))
  21960. characterMakers.push(() => makeCharacter(
  21961. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  21962. {
  21963. front: {
  21964. height: math.unit(6, "feet"),
  21965. weight: math.unit(150, "lb"),
  21966. name: "Front",
  21967. image: {
  21968. source: "./media/characters/maelstrom/front.svg",
  21969. extra: 2100 / 1883,
  21970. bottom: 94 / 2196.7
  21971. }
  21972. },
  21973. },
  21974. [
  21975. {
  21976. name: "Less Kaiju",
  21977. height: math.unit(200, "feet")
  21978. },
  21979. {
  21980. name: "Kaiju",
  21981. height: math.unit(400, "feet"),
  21982. default: true
  21983. },
  21984. {
  21985. name: "Kaiju-er",
  21986. height: math.unit(600, "feet")
  21987. },
  21988. ]
  21989. ))
  21990. characterMakers.push(() => makeCharacter(
  21991. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  21992. {
  21993. front: {
  21994. height: math.unit(6 + 5 / 12, "feet"),
  21995. weight: math.unit(180, "lb"),
  21996. name: "Front",
  21997. image: {
  21998. source: "./media/characters/lexir/front.svg",
  21999. extra: 180 / 172,
  22000. bottom: 12 / 192
  22001. }
  22002. },
  22003. back: {
  22004. height: math.unit(6 + 5 / 12, "feet"),
  22005. weight: math.unit(180, "lb"),
  22006. name: "Back",
  22007. image: {
  22008. source: "./media/characters/lexir/back.svg",
  22009. extra: 183.84 / 175.5,
  22010. bottom: 3.1 / 187
  22011. }
  22012. },
  22013. },
  22014. [
  22015. {
  22016. name: "Very Smal",
  22017. height: math.unit(1, "nm")
  22018. },
  22019. {
  22020. name: "Normal",
  22021. height: math.unit(6 + 5 / 12, "feet"),
  22022. default: true
  22023. },
  22024. {
  22025. name: "Macro",
  22026. height: math.unit(1, "mile")
  22027. },
  22028. {
  22029. name: "Megamacro",
  22030. height: math.unit(50, "miles")
  22031. },
  22032. ]
  22033. ))
  22034. characterMakers.push(() => makeCharacter(
  22035. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22036. {
  22037. front: {
  22038. height: math.unit(1.5, "meters"),
  22039. weight: math.unit(100, "lb"),
  22040. name: "Front",
  22041. image: {
  22042. source: "./media/characters/maksio/front.svg",
  22043. extra: 1549 / 1531,
  22044. bottom: 123.7 / 1674.5429
  22045. }
  22046. },
  22047. back: {
  22048. height: math.unit(1.5, "meters"),
  22049. weight: math.unit(100, "lb"),
  22050. name: "Back",
  22051. image: {
  22052. source: "./media/characters/maksio/back.svg",
  22053. extra: 1541 / 1509,
  22054. bottom: 97 / 1639
  22055. }
  22056. },
  22057. hand: {
  22058. height: math.unit(0.621, "feet"),
  22059. name: "Hand",
  22060. image: {
  22061. source: "./media/characters/maksio/hand.svg"
  22062. }
  22063. },
  22064. foot: {
  22065. height: math.unit(1.611, "feet"),
  22066. name: "Foot",
  22067. image: {
  22068. source: "./media/characters/maksio/foot.svg"
  22069. }
  22070. },
  22071. },
  22072. [
  22073. {
  22074. name: "Shrunken",
  22075. height: math.unit(10, "cm")
  22076. },
  22077. {
  22078. name: "Normal",
  22079. height: math.unit(150, "cm"),
  22080. default: true
  22081. },
  22082. ]
  22083. ))
  22084. characterMakers.push(() => makeCharacter(
  22085. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22086. {
  22087. front: {
  22088. height: math.unit(100, "feet"),
  22089. name: "Front",
  22090. image: {
  22091. source: "./media/characters/erza-bear/front.svg",
  22092. extra: 2449 / 2390,
  22093. bottom: 46 / 2494
  22094. }
  22095. },
  22096. back: {
  22097. height: math.unit(100, "feet"),
  22098. name: "Back",
  22099. image: {
  22100. source: "./media/characters/erza-bear/back.svg",
  22101. extra: 2489 / 2430,
  22102. bottom: 85.4 / 2480
  22103. }
  22104. },
  22105. tail: {
  22106. height: math.unit(42, "feet"),
  22107. name: "Tail",
  22108. image: {
  22109. source: "./media/characters/erza-bear/tail.svg"
  22110. }
  22111. },
  22112. tongue: {
  22113. height: math.unit(8, "feet"),
  22114. name: "Tongue",
  22115. image: {
  22116. source: "./media/characters/erza-bear/tongue.svg"
  22117. }
  22118. },
  22119. dick: {
  22120. height: math.unit(10.5, "feet"),
  22121. name: "Dick",
  22122. image: {
  22123. source: "./media/characters/erza-bear/dick.svg"
  22124. }
  22125. },
  22126. dickVertical: {
  22127. height: math.unit(16.9, "feet"),
  22128. name: "Dick (Vertical)",
  22129. image: {
  22130. source: "./media/characters/erza-bear/dick-vertical.svg"
  22131. }
  22132. },
  22133. },
  22134. [
  22135. {
  22136. name: "Macro",
  22137. height: math.unit(100, "feet"),
  22138. default: true
  22139. },
  22140. ]
  22141. ))
  22142. characterMakers.push(() => makeCharacter(
  22143. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22144. {
  22145. front: {
  22146. height: math.unit(172, "cm"),
  22147. weight: math.unit(73, "kg"),
  22148. name: "Front",
  22149. image: {
  22150. source: "./media/characters/violet-flor/front.svg",
  22151. extra: 1530 / 1442,
  22152. bottom: 61.9 / 1588.8
  22153. }
  22154. },
  22155. back: {
  22156. height: math.unit(180, "cm"),
  22157. weight: math.unit(73, "kg"),
  22158. name: "Back",
  22159. image: {
  22160. source: "./media/characters/violet-flor/back.svg",
  22161. extra: 1692 / 1630,
  22162. bottom: 20 / 1712
  22163. }
  22164. },
  22165. },
  22166. [
  22167. {
  22168. name: "Normal",
  22169. height: math.unit(172, "cm"),
  22170. default: true
  22171. },
  22172. ]
  22173. ))
  22174. characterMakers.push(() => makeCharacter(
  22175. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22176. {
  22177. front: {
  22178. height: math.unit(6, "feet"),
  22179. weight: math.unit(220, "lb"),
  22180. name: "Front",
  22181. image: {
  22182. source: "./media/characters/lynn-rhea/front.svg",
  22183. extra: 310 / 273
  22184. }
  22185. },
  22186. back: {
  22187. height: math.unit(6, "feet"),
  22188. weight: math.unit(220, "lb"),
  22189. name: "Back",
  22190. image: {
  22191. source: "./media/characters/lynn-rhea/back.svg",
  22192. extra: 310 / 273
  22193. }
  22194. },
  22195. dicks: {
  22196. height: math.unit(0.9, "feet"),
  22197. name: "Dicks",
  22198. image: {
  22199. source: "./media/characters/lynn-rhea/dicks.svg"
  22200. }
  22201. },
  22202. slit: {
  22203. height: math.unit(0.4, "feet"),
  22204. name: "Slit",
  22205. image: {
  22206. source: "./media/characters/lynn-rhea/slit.svg"
  22207. }
  22208. },
  22209. },
  22210. [
  22211. {
  22212. name: "Micro",
  22213. height: math.unit(1, "inch")
  22214. },
  22215. {
  22216. name: "Macro",
  22217. height: math.unit(60, "feet"),
  22218. default: true
  22219. },
  22220. {
  22221. name: "Megamacro",
  22222. height: math.unit(2, "miles")
  22223. },
  22224. {
  22225. name: "Gigamacro",
  22226. height: math.unit(3, "earths")
  22227. },
  22228. {
  22229. name: "Galactic",
  22230. height: math.unit(0.8, "galaxies")
  22231. },
  22232. ]
  22233. ))
  22234. characterMakers.push(() => makeCharacter(
  22235. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22236. {
  22237. front: {
  22238. height: math.unit(1600, "feet"),
  22239. weight: math.unit(85758785169, "kg"),
  22240. name: "Front",
  22241. image: {
  22242. source: "./media/characters/valathos/front.svg",
  22243. extra: 1451 / 1339
  22244. }
  22245. },
  22246. },
  22247. [
  22248. {
  22249. name: "Macro",
  22250. height: math.unit(1600, "feet"),
  22251. default: true
  22252. },
  22253. ]
  22254. ))
  22255. characterMakers.push(() => makeCharacter(
  22256. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22257. {
  22258. front: {
  22259. height: math.unit(7 + 5 / 12, "feet"),
  22260. weight: math.unit(300, "lb"),
  22261. name: "Front",
  22262. image: {
  22263. source: "./media/characters/azula/front.svg",
  22264. extra: 3208 / 2880,
  22265. bottom: 80.2 / 3277
  22266. }
  22267. },
  22268. back: {
  22269. height: math.unit(7 + 5 / 12, "feet"),
  22270. weight: math.unit(300, "lb"),
  22271. name: "Back",
  22272. image: {
  22273. source: "./media/characters/azula/back.svg",
  22274. extra: 3169 / 2822,
  22275. bottom: 150.6 / 3321
  22276. }
  22277. },
  22278. },
  22279. [
  22280. {
  22281. name: "Normal",
  22282. height: math.unit(7 + 5 / 12, "feet"),
  22283. default: true
  22284. },
  22285. {
  22286. name: "Big",
  22287. height: math.unit(20, "feet")
  22288. },
  22289. ]
  22290. ))
  22291. characterMakers.push(() => makeCharacter(
  22292. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22293. {
  22294. front: {
  22295. height: math.unit(5 + 1 / 12, "feet"),
  22296. weight: math.unit(110, "lb"),
  22297. name: "Front",
  22298. image: {
  22299. source: "./media/characters/rupert/front.svg",
  22300. extra: 1549 / 1495,
  22301. bottom: 54.2 / 1604.4
  22302. }
  22303. },
  22304. },
  22305. [
  22306. {
  22307. name: "Normal",
  22308. height: math.unit(5 + 1 / 12, "feet"),
  22309. default: true
  22310. },
  22311. ]
  22312. ))
  22313. characterMakers.push(() => makeCharacter(
  22314. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22315. {
  22316. front: {
  22317. height: math.unit(8 + 4 / 12, "feet"),
  22318. weight: math.unit(350, "lb"),
  22319. name: "Front",
  22320. image: {
  22321. source: "./media/characters/sheera-castellar/front.svg",
  22322. extra: 1957 / 1894,
  22323. bottom: 26.97 / 1975.017
  22324. }
  22325. },
  22326. side: {
  22327. height: math.unit(8 + 4 / 12, "feet"),
  22328. weight: math.unit(350, "lb"),
  22329. name: "Side",
  22330. image: {
  22331. source: "./media/characters/sheera-castellar/side.svg",
  22332. extra: 1957 / 1894
  22333. }
  22334. },
  22335. back: {
  22336. height: math.unit(8 + 4 / 12, "feet"),
  22337. weight: math.unit(350, "lb"),
  22338. name: "Back",
  22339. image: {
  22340. source: "./media/characters/sheera-castellar/back.svg",
  22341. extra: 1957 / 1894
  22342. }
  22343. },
  22344. angled: {
  22345. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22346. weight: math.unit(350, "lb"),
  22347. name: "Angled",
  22348. image: {
  22349. source: "./media/characters/sheera-castellar/angled.svg",
  22350. extra: 1807 / 1707,
  22351. bottom: 68 / 1875
  22352. }
  22353. },
  22354. genitals: {
  22355. height: math.unit(2.2, "feet"),
  22356. name: "Genitals",
  22357. image: {
  22358. source: "./media/characters/sheera-castellar/genitals.svg"
  22359. }
  22360. },
  22361. },
  22362. [
  22363. {
  22364. name: "Normal",
  22365. height: math.unit(8 + 4 / 12, "feet")
  22366. },
  22367. {
  22368. name: "Macro",
  22369. height: math.unit(150, "feet"),
  22370. default: true
  22371. },
  22372. {
  22373. name: "Macro+",
  22374. height: math.unit(800, "feet")
  22375. },
  22376. ]
  22377. ))
  22378. characterMakers.push(() => makeCharacter(
  22379. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22380. {
  22381. front: {
  22382. height: math.unit(6, "feet"),
  22383. weight: math.unit(150, "lb"),
  22384. name: "Front",
  22385. image: {
  22386. source: "./media/characters/jaipur/front.svg",
  22387. extra: 3860 / 3731,
  22388. bottom: 287 / 4140
  22389. }
  22390. },
  22391. back: {
  22392. height: math.unit(6, "feet"),
  22393. weight: math.unit(150, "lb"),
  22394. name: "Back",
  22395. image: {
  22396. source: "./media/characters/jaipur/back.svg",
  22397. extra: 4060 / 3930,
  22398. bottom: 151 / 4200
  22399. }
  22400. },
  22401. },
  22402. [
  22403. {
  22404. name: "Normal",
  22405. height: math.unit(1.85, "meters"),
  22406. default: true
  22407. },
  22408. {
  22409. name: "Macro",
  22410. height: math.unit(150, "meters")
  22411. },
  22412. {
  22413. name: "Macro+",
  22414. height: math.unit(0.5, "miles")
  22415. },
  22416. {
  22417. name: "Macro++",
  22418. height: math.unit(2.5, "miles")
  22419. },
  22420. {
  22421. name: "Macro+++",
  22422. height: math.unit(12, "miles")
  22423. },
  22424. {
  22425. name: "Macro++++",
  22426. height: math.unit(120, "miles")
  22427. },
  22428. {
  22429. name: "Macro+++++",
  22430. height: math.unit(1200, "miles")
  22431. },
  22432. ]
  22433. ))
  22434. characterMakers.push(() => makeCharacter(
  22435. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22436. {
  22437. front: {
  22438. height: math.unit(6, "feet"),
  22439. weight: math.unit(150, "lb"),
  22440. name: "Front",
  22441. image: {
  22442. source: "./media/characters/sheila-wolf/front.svg",
  22443. extra: 1931 / 1808,
  22444. bottom: 29.5 / 1960
  22445. }
  22446. },
  22447. dick: {
  22448. height: math.unit(1.464, "feet"),
  22449. name: "Dick",
  22450. image: {
  22451. source: "./media/characters/sheila-wolf/dick.svg"
  22452. }
  22453. },
  22454. muzzle: {
  22455. height: math.unit(0.513, "feet"),
  22456. name: "Muzzle",
  22457. image: {
  22458. source: "./media/characters/sheila-wolf/muzzle.svg"
  22459. }
  22460. },
  22461. },
  22462. [
  22463. {
  22464. name: "Macro",
  22465. height: math.unit(70, "feet"),
  22466. default: true
  22467. },
  22468. ]
  22469. ))
  22470. characterMakers.push(() => makeCharacter(
  22471. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22472. {
  22473. front: {
  22474. height: math.unit(32, "meters"),
  22475. weight: math.unit(300000, "kg"),
  22476. name: "Front",
  22477. image: {
  22478. source: "./media/characters/almor/front.svg",
  22479. extra: 1408 / 1322,
  22480. bottom: 94.6 / 1506.5
  22481. }
  22482. },
  22483. },
  22484. [
  22485. {
  22486. name: "Macro",
  22487. height: math.unit(32, "meters"),
  22488. default: true
  22489. },
  22490. ]
  22491. ))
  22492. characterMakers.push(() => makeCharacter(
  22493. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22494. {
  22495. front: {
  22496. height: math.unit(7, "feet"),
  22497. weight: math.unit(200, "lb"),
  22498. name: "Front",
  22499. image: {
  22500. source: "./media/characters/silver/front.svg",
  22501. extra: 472.1 / 450.5,
  22502. bottom: 26.5 / 499.424
  22503. }
  22504. },
  22505. },
  22506. [
  22507. {
  22508. name: "Normal",
  22509. height: math.unit(7, "feet"),
  22510. default: true
  22511. },
  22512. {
  22513. name: "Macro",
  22514. height: math.unit(800, "feet")
  22515. },
  22516. {
  22517. name: "Megamacro",
  22518. height: math.unit(250, "miles")
  22519. },
  22520. ]
  22521. ))
  22522. characterMakers.push(() => makeCharacter(
  22523. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22524. {
  22525. front: {
  22526. height: math.unit(6, "feet"),
  22527. weight: math.unit(150, "lb"),
  22528. name: "Front",
  22529. image: {
  22530. source: "./media/characters/pliskin/front.svg",
  22531. extra: 1469 / 1359,
  22532. bottom: 70 / 1540
  22533. }
  22534. },
  22535. },
  22536. [
  22537. {
  22538. name: "Micro",
  22539. height: math.unit(3, "inches")
  22540. },
  22541. {
  22542. name: "Normal",
  22543. height: math.unit(5 + 11 / 12, "feet"),
  22544. default: true
  22545. },
  22546. {
  22547. name: "Macro",
  22548. height: math.unit(120, "feet")
  22549. },
  22550. ]
  22551. ))
  22552. characterMakers.push(() => makeCharacter(
  22553. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22554. {
  22555. front: {
  22556. height: math.unit(6, "feet"),
  22557. weight: math.unit(150, "lb"),
  22558. name: "Front",
  22559. image: {
  22560. source: "./media/characters/sammy/front.svg",
  22561. extra: 1193 / 1089,
  22562. bottom: 30.5 / 1226
  22563. }
  22564. },
  22565. },
  22566. [
  22567. {
  22568. name: "Macro",
  22569. height: math.unit(1700, "feet"),
  22570. default: true
  22571. },
  22572. {
  22573. name: "Examacro",
  22574. height: math.unit(2.5e9, "lightyears")
  22575. },
  22576. ]
  22577. ))
  22578. characterMakers.push(() => makeCharacter(
  22579. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22580. {
  22581. front: {
  22582. height: math.unit(21, "meters"),
  22583. weight: math.unit(12, "tonnes"),
  22584. name: "Front",
  22585. image: {
  22586. source: "./media/characters/kuru/front.svg",
  22587. extra: 4301 / 3785,
  22588. bottom: 371.3 / 4691
  22589. }
  22590. },
  22591. },
  22592. [
  22593. {
  22594. name: "Macro",
  22595. height: math.unit(21, "meters"),
  22596. default: true
  22597. },
  22598. ]
  22599. ))
  22600. characterMakers.push(() => makeCharacter(
  22601. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22602. {
  22603. front: {
  22604. height: math.unit(23, "meters"),
  22605. weight: math.unit(12.2, "tonnes"),
  22606. name: "Front",
  22607. image: {
  22608. source: "./media/characters/rakka/front.svg",
  22609. extra: 4670 / 4169,
  22610. bottom: 301 / 4968.7
  22611. }
  22612. },
  22613. },
  22614. [
  22615. {
  22616. name: "Macro",
  22617. height: math.unit(23, "meters"),
  22618. default: true
  22619. },
  22620. ]
  22621. ))
  22622. characterMakers.push(() => makeCharacter(
  22623. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22624. {
  22625. front: {
  22626. height: math.unit(6, "feet"),
  22627. weight: math.unit(150, "lb"),
  22628. name: "Front",
  22629. image: {
  22630. source: "./media/characters/rhys-feline/front.svg",
  22631. extra: 2488 / 2308,
  22632. bottom: 35.67 / 2519.19
  22633. }
  22634. },
  22635. },
  22636. [
  22637. {
  22638. name: "Really Small",
  22639. height: math.unit(1, "nm")
  22640. },
  22641. {
  22642. name: "Micro",
  22643. height: math.unit(4, "inches")
  22644. },
  22645. {
  22646. name: "Normal",
  22647. height: math.unit(4 + 10 / 12, "feet"),
  22648. default: true
  22649. },
  22650. {
  22651. name: "Macro",
  22652. height: math.unit(100, "feet")
  22653. },
  22654. {
  22655. name: "Megamacto",
  22656. height: math.unit(50, "miles")
  22657. },
  22658. ]
  22659. ))
  22660. characterMakers.push(() => makeCharacter(
  22661. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22662. {
  22663. side: {
  22664. height: math.unit(30, "feet"),
  22665. weight: math.unit(35000, "kg"),
  22666. name: "Side",
  22667. image: {
  22668. source: "./media/characters/alydar/side.svg",
  22669. extra: 234 / 222,
  22670. bottom: 6.5 / 241
  22671. }
  22672. },
  22673. front: {
  22674. height: math.unit(30, "feet"),
  22675. weight: math.unit(35000, "kg"),
  22676. name: "Front",
  22677. image: {
  22678. source: "./media/characters/alydar/front.svg",
  22679. extra: 223.37 / 210.2,
  22680. bottom: 22.3 / 246.76
  22681. }
  22682. },
  22683. top: {
  22684. height: math.unit(64.54, "feet"),
  22685. weight: math.unit(35000, "kg"),
  22686. name: "Top",
  22687. image: {
  22688. source: "./media/characters/alydar/top.svg"
  22689. }
  22690. },
  22691. anthro: {
  22692. height: math.unit(30, "feet"),
  22693. weight: math.unit(9000, "kg"),
  22694. name: "Anthro",
  22695. image: {
  22696. source: "./media/characters/alydar/anthro.svg",
  22697. extra: 432 / 421,
  22698. bottom: 7.18 / 440
  22699. }
  22700. },
  22701. maw: {
  22702. height: math.unit(11.693, "feet"),
  22703. name: "Maw",
  22704. image: {
  22705. source: "./media/characters/alydar/maw.svg"
  22706. }
  22707. },
  22708. head: {
  22709. height: math.unit(11.693, "feet"),
  22710. name: "Head",
  22711. image: {
  22712. source: "./media/characters/alydar/head.svg"
  22713. }
  22714. },
  22715. headAlt: {
  22716. height: math.unit(12.861, "feet"),
  22717. name: "Head (Alt)",
  22718. image: {
  22719. source: "./media/characters/alydar/head-alt.svg"
  22720. }
  22721. },
  22722. wing: {
  22723. height: math.unit(20.712, "feet"),
  22724. name: "Wing",
  22725. image: {
  22726. source: "./media/characters/alydar/wing.svg"
  22727. }
  22728. },
  22729. wingFeather: {
  22730. height: math.unit(9.662, "feet"),
  22731. name: "Wing Feather",
  22732. image: {
  22733. source: "./media/characters/alydar/wing-feather.svg"
  22734. }
  22735. },
  22736. countourFeather: {
  22737. height: math.unit(4.154, "feet"),
  22738. name: "Contour Feather",
  22739. image: {
  22740. source: "./media/characters/alydar/contour-feather.svg"
  22741. }
  22742. },
  22743. },
  22744. [
  22745. {
  22746. name: "Diplomatic",
  22747. height: math.unit(13, "feet"),
  22748. default: true
  22749. },
  22750. {
  22751. name: "Small",
  22752. height: math.unit(30, "feet")
  22753. },
  22754. {
  22755. name: "Normal",
  22756. height: math.unit(95, "feet"),
  22757. default: true
  22758. },
  22759. {
  22760. name: "Large",
  22761. height: math.unit(285, "feet")
  22762. },
  22763. {
  22764. name: "Incomprehensible",
  22765. height: math.unit(450, "megameters")
  22766. },
  22767. ]
  22768. ))
  22769. characterMakers.push(() => makeCharacter(
  22770. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  22771. {
  22772. side: {
  22773. height: math.unit(11, "feet"),
  22774. weight: math.unit(1750, "kg"),
  22775. name: "Side",
  22776. image: {
  22777. source: "./media/characters/selicia/side.svg",
  22778. extra: 440 / 396,
  22779. bottom: 24.8 / 465.979
  22780. }
  22781. },
  22782. maw: {
  22783. height: math.unit(4.665, "feet"),
  22784. name: "Maw",
  22785. image: {
  22786. source: "./media/characters/selicia/maw.svg"
  22787. }
  22788. },
  22789. },
  22790. [
  22791. {
  22792. name: "Normal",
  22793. height: math.unit(11, "feet"),
  22794. default: true
  22795. },
  22796. ]
  22797. ))
  22798. characterMakers.push(() => makeCharacter(
  22799. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  22800. {
  22801. side: {
  22802. height: math.unit(2 + 6 / 12, "feet"),
  22803. weight: math.unit(30, "lb"),
  22804. name: "Side",
  22805. image: {
  22806. source: "./media/characters/layla/side.svg",
  22807. extra: 244 / 188,
  22808. bottom: 18.2 / 262.1
  22809. }
  22810. },
  22811. back: {
  22812. height: math.unit(2 + 6 / 12, "feet"),
  22813. weight: math.unit(30, "lb"),
  22814. name: "Back",
  22815. image: {
  22816. source: "./media/characters/layla/back.svg",
  22817. extra: 308 / 241.5,
  22818. bottom: 8.9 / 316.8
  22819. }
  22820. },
  22821. cumming: {
  22822. height: math.unit(2 + 6 / 12, "feet"),
  22823. weight: math.unit(30, "lb"),
  22824. name: "Cumming",
  22825. image: {
  22826. source: "./media/characters/layla/cumming.svg",
  22827. extra: 342 / 279,
  22828. bottom: 595 / 938
  22829. }
  22830. },
  22831. dickFlaccid: {
  22832. height: math.unit(2.595, "feet"),
  22833. name: "Flaccid Genitals",
  22834. image: {
  22835. source: "./media/characters/layla/dick-flaccid.svg"
  22836. }
  22837. },
  22838. dickErect: {
  22839. height: math.unit(2.359, "feet"),
  22840. name: "Erect Genitals",
  22841. image: {
  22842. source: "./media/characters/layla/dick-erect.svg"
  22843. }
  22844. },
  22845. },
  22846. [
  22847. {
  22848. name: "Micro",
  22849. height: math.unit(1, "inch")
  22850. },
  22851. {
  22852. name: "Small",
  22853. height: math.unit(1, "foot")
  22854. },
  22855. {
  22856. name: "Normal",
  22857. height: math.unit(2 + 6 / 12, "feet"),
  22858. default: true
  22859. },
  22860. {
  22861. name: "Macro",
  22862. height: math.unit(200, "feet")
  22863. },
  22864. {
  22865. name: "Megamacro",
  22866. height: math.unit(1000, "miles")
  22867. },
  22868. {
  22869. name: "Planetary",
  22870. height: math.unit(8000, "miles")
  22871. },
  22872. {
  22873. name: "True Layla",
  22874. height: math.unit(200000 * 7, "multiverses")
  22875. },
  22876. ]
  22877. ))
  22878. characterMakers.push(() => makeCharacter(
  22879. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  22880. {
  22881. back: {
  22882. height: math.unit(10.5, "feet"),
  22883. weight: math.unit(800, "lb"),
  22884. name: "Back",
  22885. image: {
  22886. source: "./media/characters/knox/back.svg",
  22887. extra: 1486 / 1089,
  22888. bottom: 107 / 1601.4
  22889. }
  22890. },
  22891. side: {
  22892. height: math.unit(10.5, "feet"),
  22893. weight: math.unit(800, "lb"),
  22894. name: "Side",
  22895. image: {
  22896. source: "./media/characters/knox/side.svg",
  22897. extra: 244 / 218,
  22898. bottom: 14 / 260
  22899. }
  22900. },
  22901. },
  22902. [
  22903. {
  22904. name: "Compact",
  22905. height: math.unit(10.5, "feet"),
  22906. default: true
  22907. },
  22908. {
  22909. name: "Dynamax",
  22910. height: math.unit(210, "feet")
  22911. },
  22912. {
  22913. name: "Full Macro",
  22914. height: math.unit(850, "feet")
  22915. },
  22916. ]
  22917. ))
  22918. characterMakers.push(() => makeCharacter(
  22919. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  22920. {
  22921. front: {
  22922. height: math.unit(6, "feet"),
  22923. weight: math.unit(152, "lb"),
  22924. name: "Front",
  22925. image: {
  22926. source: "./media/characters/shin-pikachu/front.svg",
  22927. extra: 1574 / 1480,
  22928. bottom: 53.3 / 1626
  22929. }
  22930. },
  22931. hand: {
  22932. height: math.unit(1.055, "feet"),
  22933. name: "Hand",
  22934. image: {
  22935. source: "./media/characters/shin-pikachu/hand.svg"
  22936. }
  22937. },
  22938. foot: {
  22939. height: math.unit(1.1, "feet"),
  22940. name: "Foot",
  22941. image: {
  22942. source: "./media/characters/shin-pikachu/foot.svg"
  22943. }
  22944. },
  22945. collar: {
  22946. height: math.unit(0.386, "feet"),
  22947. name: "Collar",
  22948. image: {
  22949. source: "./media/characters/shin-pikachu/collar.svg"
  22950. }
  22951. },
  22952. },
  22953. [
  22954. {
  22955. name: "Smallest",
  22956. height: math.unit(0.5, "inches")
  22957. },
  22958. {
  22959. name: "Micro",
  22960. height: math.unit(6, "inches")
  22961. },
  22962. {
  22963. name: "Normal",
  22964. height: math.unit(6, "feet"),
  22965. default: true
  22966. },
  22967. {
  22968. name: "Macro",
  22969. height: math.unit(150, "feet")
  22970. },
  22971. ]
  22972. ))
  22973. characterMakers.push(() => makeCharacter(
  22974. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  22975. {
  22976. front: {
  22977. height: math.unit(28, "feet"),
  22978. weight: math.unit(10500, "lb"),
  22979. name: "Front",
  22980. image: {
  22981. source: "./media/characters/kayda/front.svg",
  22982. extra: 1536 / 1428,
  22983. bottom: 68.7 / 1603
  22984. }
  22985. },
  22986. back: {
  22987. height: math.unit(28, "feet"),
  22988. weight: math.unit(10500, "lb"),
  22989. name: "Back",
  22990. image: {
  22991. source: "./media/characters/kayda/back.svg",
  22992. extra: 1557 / 1464,
  22993. bottom: 39.5 / 1597.49
  22994. }
  22995. },
  22996. dick: {
  22997. height: math.unit(3.858, "feet"),
  22998. name: "Dick",
  22999. image: {
  23000. source: "./media/characters/kayda/dick.svg"
  23001. }
  23002. },
  23003. },
  23004. [
  23005. {
  23006. name: "Macro",
  23007. height: math.unit(28, "feet"),
  23008. default: true
  23009. },
  23010. ]
  23011. ))
  23012. characterMakers.push(() => makeCharacter(
  23013. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23014. {
  23015. front: {
  23016. height: math.unit(10 + 11 / 12, "feet"),
  23017. weight: math.unit(1400, "lb"),
  23018. name: "Front",
  23019. image: {
  23020. source: "./media/characters/brian/front.svg",
  23021. extra: 737 / 692,
  23022. bottom: 55.4 / 785
  23023. }
  23024. },
  23025. },
  23026. [
  23027. {
  23028. name: "Normal",
  23029. height: math.unit(10 + 11 / 12, "feet"),
  23030. default: true
  23031. },
  23032. ]
  23033. ))
  23034. characterMakers.push(() => makeCharacter(
  23035. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23036. {
  23037. front: {
  23038. height: math.unit(5 + 8 / 12, "feet"),
  23039. weight: math.unit(140, "lb"),
  23040. name: "Front",
  23041. image: {
  23042. source: "./media/characters/khemri/front.svg",
  23043. extra: 4780 / 4059,
  23044. bottom: 80.1 / 4859.25
  23045. }
  23046. },
  23047. },
  23048. [
  23049. {
  23050. name: "Micro",
  23051. height: math.unit(6, "inches")
  23052. },
  23053. {
  23054. name: "Normal",
  23055. height: math.unit(5 + 8 / 12, "feet"),
  23056. default: true
  23057. },
  23058. ]
  23059. ))
  23060. characterMakers.push(() => makeCharacter(
  23061. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23062. {
  23063. front: {
  23064. height: math.unit(13, "feet"),
  23065. weight: math.unit(1700, "lb"),
  23066. name: "Front",
  23067. image: {
  23068. source: "./media/characters/felix-braveheart/front.svg",
  23069. extra: 1222 / 1157,
  23070. bottom: 53.2 / 1280
  23071. }
  23072. },
  23073. back: {
  23074. height: math.unit(13, "feet"),
  23075. weight: math.unit(1700, "lb"),
  23076. name: "Back",
  23077. image: {
  23078. source: "./media/characters/felix-braveheart/back.svg",
  23079. extra: 1277 / 1203,
  23080. bottom: 50.2 / 1327
  23081. }
  23082. },
  23083. feral: {
  23084. height: math.unit(6, "feet"),
  23085. weight: math.unit(400, "lb"),
  23086. name: "Feral",
  23087. image: {
  23088. source: "./media/characters/felix-braveheart/feral.svg",
  23089. extra: 682 / 625,
  23090. bottom: 6.9 / 688
  23091. }
  23092. },
  23093. },
  23094. [
  23095. {
  23096. name: "Normal",
  23097. height: math.unit(13, "feet"),
  23098. default: true
  23099. },
  23100. ]
  23101. ))
  23102. characterMakers.push(() => makeCharacter(
  23103. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23104. {
  23105. side: {
  23106. height: math.unit(5 + 11 / 12, "feet"),
  23107. weight: math.unit(1400, "lb"),
  23108. name: "Side",
  23109. image: {
  23110. source: "./media/characters/shadow-blade/side.svg",
  23111. extra: 1726 / 1267,
  23112. bottom: 58.4 / 1785
  23113. }
  23114. },
  23115. },
  23116. [
  23117. {
  23118. name: "Normal",
  23119. height: math.unit(5 + 11 / 12, "feet"),
  23120. default: true
  23121. },
  23122. ]
  23123. ))
  23124. characterMakers.push(() => makeCharacter(
  23125. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23126. {
  23127. front: {
  23128. height: math.unit(1 + 6 / 12, "feet"),
  23129. weight: math.unit(25, "lb"),
  23130. name: "Front",
  23131. image: {
  23132. source: "./media/characters/karla-halldor/front.svg",
  23133. extra: 1459 / 1383,
  23134. bottom: 12 / 1472
  23135. }
  23136. },
  23137. },
  23138. [
  23139. {
  23140. name: "Normal",
  23141. height: math.unit(1 + 6 / 12, "feet"),
  23142. default: true
  23143. },
  23144. ]
  23145. ))
  23146. characterMakers.push(() => makeCharacter(
  23147. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23148. {
  23149. front: {
  23150. height: math.unit(6 + 2 / 12, "feet"),
  23151. weight: math.unit(160, "lb"),
  23152. name: "Front",
  23153. image: {
  23154. source: "./media/characters/ariam/front.svg",
  23155. extra: 714 / 617,
  23156. bottom: 23.4 / 737,
  23157. }
  23158. },
  23159. squatting: {
  23160. height: math.unit(4.1, "feet"),
  23161. weight: math.unit(160, "lb"),
  23162. name: "Squatting",
  23163. image: {
  23164. source: "./media/characters/ariam/squatting.svg",
  23165. extra: 2617 / 2112,
  23166. bottom: 61.2 / 2681,
  23167. }
  23168. },
  23169. },
  23170. [
  23171. {
  23172. name: "Normal",
  23173. height: math.unit(6 + 2 / 12, "feet"),
  23174. default: true
  23175. },
  23176. {
  23177. name: "Normal+",
  23178. height: math.unit(4, "meters")
  23179. },
  23180. {
  23181. name: "Macro",
  23182. height: math.unit(50, "meters")
  23183. },
  23184. {
  23185. name: "Macro+",
  23186. height: math.unit(100, "meters")
  23187. },
  23188. {
  23189. name: "Megamacro",
  23190. height: math.unit(20, "km")
  23191. },
  23192. ]
  23193. ))
  23194. characterMakers.push(() => makeCharacter(
  23195. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23196. {
  23197. front: {
  23198. height: math.unit(1.67, "meters"),
  23199. weight: math.unit(140, "lb"),
  23200. name: "Front",
  23201. image: {
  23202. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23203. extra: 438 / 410,
  23204. bottom: 0.75 / 439
  23205. }
  23206. },
  23207. },
  23208. [
  23209. {
  23210. name: "Shrunken",
  23211. height: math.unit(7.6, "cm")
  23212. },
  23213. {
  23214. name: "Human Scale",
  23215. height: math.unit(1.67, "meters")
  23216. },
  23217. {
  23218. name: "Wolxi Scale",
  23219. height: math.unit(36.7, "meters"),
  23220. default: true
  23221. },
  23222. ]
  23223. ))
  23224. characterMakers.push(() => makeCharacter(
  23225. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23226. {
  23227. front: {
  23228. height: math.unit(1.73, "meters"),
  23229. weight: math.unit(240, "lb"),
  23230. name: "Front",
  23231. image: {
  23232. source: "./media/characters/izue-two-mothers/front.svg",
  23233. extra: 469 / 437,
  23234. bottom: 1.24 / 470.6
  23235. }
  23236. },
  23237. },
  23238. [
  23239. {
  23240. name: "Shrunken",
  23241. height: math.unit(7.86, "cm")
  23242. },
  23243. {
  23244. name: "Human Scale",
  23245. height: math.unit(1.73, "meters")
  23246. },
  23247. {
  23248. name: "Wolxi Scale",
  23249. height: math.unit(38, "meters"),
  23250. default: true
  23251. },
  23252. ]
  23253. ))
  23254. characterMakers.push(() => makeCharacter(
  23255. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23256. {
  23257. front: {
  23258. height: math.unit(1.55, "meters"),
  23259. weight: math.unit(120, "lb"),
  23260. name: "Front",
  23261. image: {
  23262. source: "./media/characters/teeku-love-shack/front.svg",
  23263. extra: 387 / 362,
  23264. bottom: 1.51 / 388
  23265. }
  23266. },
  23267. },
  23268. [
  23269. {
  23270. name: "Shrunken",
  23271. height: math.unit(7, "cm")
  23272. },
  23273. {
  23274. name: "Human Scale",
  23275. height: math.unit(1.55, "meters")
  23276. },
  23277. {
  23278. name: "Wolxi Scale",
  23279. height: math.unit(34.1, "meters"),
  23280. default: true
  23281. },
  23282. ]
  23283. ))
  23284. characterMakers.push(() => makeCharacter(
  23285. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23286. {
  23287. front: {
  23288. height: math.unit(1.83, "meters"),
  23289. weight: math.unit(135, "lb"),
  23290. name: "Front",
  23291. image: {
  23292. source: "./media/characters/dejma-the-red/front.svg",
  23293. extra: 480 / 458,
  23294. bottom: 1.8 / 482
  23295. }
  23296. },
  23297. },
  23298. [
  23299. {
  23300. name: "Shrunken",
  23301. height: math.unit(8.3, "cm")
  23302. },
  23303. {
  23304. name: "Human Scale",
  23305. height: math.unit(1.83, "meters")
  23306. },
  23307. {
  23308. name: "Wolxi Scale",
  23309. height: math.unit(40, "meters"),
  23310. default: true
  23311. },
  23312. ]
  23313. ))
  23314. characterMakers.push(() => makeCharacter(
  23315. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23316. {
  23317. front: {
  23318. height: math.unit(1.78, "meters"),
  23319. weight: math.unit(65, "kg"),
  23320. name: "Front",
  23321. image: {
  23322. source: "./media/characters/aki/front.svg",
  23323. extra: 452 / 415
  23324. }
  23325. },
  23326. frontNsfw: {
  23327. height: math.unit(1.78, "meters"),
  23328. weight: math.unit(65, "kg"),
  23329. name: "Front (NSFW)",
  23330. image: {
  23331. source: "./media/characters/aki/front-nsfw.svg",
  23332. extra: 452 / 415
  23333. }
  23334. },
  23335. back: {
  23336. height: math.unit(1.78, "meters"),
  23337. weight: math.unit(65, "kg"),
  23338. name: "Back",
  23339. image: {
  23340. source: "./media/characters/aki/back.svg",
  23341. extra: 452 / 415
  23342. }
  23343. },
  23344. rump: {
  23345. height: math.unit(2.05, "feet"),
  23346. name: "Rump",
  23347. image: {
  23348. source: "./media/characters/aki/rump.svg"
  23349. }
  23350. },
  23351. dick: {
  23352. height: math.unit(0.95, "feet"),
  23353. name: "Dick",
  23354. image: {
  23355. source: "./media/characters/aki/dick.svg"
  23356. }
  23357. },
  23358. },
  23359. [
  23360. {
  23361. name: "Micro",
  23362. height: math.unit(15, "cm")
  23363. },
  23364. {
  23365. name: "Normal",
  23366. height: math.unit(178, "cm"),
  23367. default: true
  23368. },
  23369. {
  23370. name: "Macro",
  23371. height: math.unit(214, "m")
  23372. },
  23373. {
  23374. name: "Macro+",
  23375. height: math.unit(534, "m")
  23376. },
  23377. ]
  23378. ))
  23379. characterMakers.push(() => makeCharacter(
  23380. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23381. {
  23382. front: {
  23383. height: math.unit(5 + 5 / 12, "feet"),
  23384. weight: math.unit(120, "lb"),
  23385. name: "Front",
  23386. image: {
  23387. source: "./media/characters/ari/front.svg",
  23388. extra: 714.5 / 682,
  23389. bottom: 8 / 722.5
  23390. }
  23391. },
  23392. },
  23393. [
  23394. {
  23395. name: "Normal",
  23396. height: math.unit(5 + 5 / 12, "feet")
  23397. },
  23398. {
  23399. name: "Macro",
  23400. height: math.unit(100, "feet"),
  23401. default: true
  23402. },
  23403. {
  23404. name: "Megamacro",
  23405. height: math.unit(100, "miles")
  23406. },
  23407. {
  23408. name: "Gigamacro",
  23409. height: math.unit(80000, "miles")
  23410. },
  23411. ]
  23412. ))
  23413. characterMakers.push(() => makeCharacter(
  23414. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23415. {
  23416. side: {
  23417. height: math.unit(9, "feet"),
  23418. weight: math.unit(400, "kg"),
  23419. name: "Side",
  23420. image: {
  23421. source: "./media/characters/bolt/side.svg",
  23422. extra: 1126 / 896,
  23423. bottom: 60 / 1187.3,
  23424. }
  23425. },
  23426. },
  23427. [
  23428. {
  23429. name: "Micro",
  23430. height: math.unit(5, "inches")
  23431. },
  23432. {
  23433. name: "Normal",
  23434. height: math.unit(9, "feet"),
  23435. default: true
  23436. },
  23437. {
  23438. name: "Macro",
  23439. height: math.unit(700, "feet")
  23440. },
  23441. {
  23442. name: "Max Size",
  23443. height: math.unit(1.52e22, "yottameters")
  23444. },
  23445. ]
  23446. ))
  23447. characterMakers.push(() => makeCharacter(
  23448. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23449. {
  23450. front: {
  23451. height: math.unit(4.53, "meters"),
  23452. weight: math.unit(3, "tons"),
  23453. name: "Front",
  23454. image: {
  23455. source: "./media/characters/draekon-sylviar/front.svg",
  23456. extra: 1228 / 1068,
  23457. bottom: 41 / 1270
  23458. }
  23459. },
  23460. tail: {
  23461. height: math.unit(1.772, "meter"),
  23462. name: "Tail",
  23463. image: {
  23464. source: "./media/characters/draekon-sylviar/tail.svg"
  23465. }
  23466. },
  23467. head: {
  23468. height: math.unit(1.331, "meter"),
  23469. name: "Head",
  23470. image: {
  23471. source: "./media/characters/draekon-sylviar/head.svg"
  23472. }
  23473. },
  23474. hand: {
  23475. height: math.unit(0.564, "meter"),
  23476. name: "Hand",
  23477. image: {
  23478. source: "./media/characters/draekon-sylviar/hand.svg"
  23479. }
  23480. },
  23481. foot: {
  23482. height: math.unit(0.621, "meter"),
  23483. name: "Foot",
  23484. image: {
  23485. source: "./media/characters/draekon-sylviar/foot.svg",
  23486. bottom: 32 / 324
  23487. }
  23488. },
  23489. dick: {
  23490. height: math.unit(61, "cm"),
  23491. name: "Dick",
  23492. image: {
  23493. source: "./media/characters/draekon-sylviar/dick.svg"
  23494. }
  23495. },
  23496. dickseparated: {
  23497. height: math.unit(61, "cm"),
  23498. name: "Dick-separated",
  23499. image: {
  23500. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23501. }
  23502. },
  23503. },
  23504. [
  23505. {
  23506. name: "Small",
  23507. height: math.unit(4.53 / 2, "meters"),
  23508. default: true
  23509. },
  23510. {
  23511. name: "Normal",
  23512. height: math.unit(4.53, "meters"),
  23513. default: true
  23514. },
  23515. {
  23516. name: "Large",
  23517. height: math.unit(4.53 * 2, "meters"),
  23518. },
  23519. ]
  23520. ))
  23521. characterMakers.push(() => makeCharacter(
  23522. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23523. {
  23524. front: {
  23525. height: math.unit(6 + 2 / 12, "feet"),
  23526. weight: math.unit(180, "lb"),
  23527. name: "Front",
  23528. image: {
  23529. source: "./media/characters/brawler/front.svg",
  23530. extra: 3301 / 3027,
  23531. bottom: 138 / 3439
  23532. }
  23533. },
  23534. },
  23535. [
  23536. {
  23537. name: "Normal",
  23538. height: math.unit(6 + 2 / 12, "feet"),
  23539. default: true
  23540. },
  23541. ]
  23542. ))
  23543. characterMakers.push(() => makeCharacter(
  23544. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23545. {
  23546. front: {
  23547. height: math.unit(11, "feet"),
  23548. weight: math.unit(1000, "lb"),
  23549. name: "Front",
  23550. image: {
  23551. source: "./media/characters/alex/front.svg",
  23552. bottom: 44.5 / 620
  23553. }
  23554. },
  23555. },
  23556. [
  23557. {
  23558. name: "Micro",
  23559. height: math.unit(5, "inches")
  23560. },
  23561. {
  23562. name: "Normal",
  23563. height: math.unit(11, "feet"),
  23564. default: true
  23565. },
  23566. {
  23567. name: "Macro",
  23568. height: math.unit(9.5e9, "feet")
  23569. },
  23570. {
  23571. name: "Max Size",
  23572. height: math.unit(1.4e283, "yottameters")
  23573. },
  23574. ]
  23575. ))
  23576. characterMakers.push(() => makeCharacter(
  23577. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23578. {
  23579. female: {
  23580. height: math.unit(29.9, "m"),
  23581. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23582. name: "Female",
  23583. image: {
  23584. source: "./media/characters/zenari/female.svg",
  23585. extra: 3281.6 / 3217,
  23586. bottom: 72.2 / 3353
  23587. }
  23588. },
  23589. male: {
  23590. height: math.unit(27.7, "m"),
  23591. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23592. name: "Male",
  23593. image: {
  23594. source: "./media/characters/zenari/male.svg",
  23595. extra: 3008 / 2991,
  23596. bottom: 54.6 / 3069
  23597. }
  23598. },
  23599. },
  23600. [
  23601. {
  23602. name: "Macro",
  23603. height: math.unit(29.7, "meters"),
  23604. default: true
  23605. },
  23606. ]
  23607. ))
  23608. characterMakers.push(() => makeCharacter(
  23609. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23610. {
  23611. female: {
  23612. height: math.unit(23.8, "m"),
  23613. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23614. name: "Female",
  23615. image: {
  23616. source: "./media/characters/mactarian/female.svg",
  23617. extra: 2662 / 2569,
  23618. bottom: 73 / 2736
  23619. }
  23620. },
  23621. male: {
  23622. height: math.unit(23.8, "m"),
  23623. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23624. name: "Male",
  23625. image: {
  23626. source: "./media/characters/mactarian/male.svg",
  23627. extra: 2673 / 2600,
  23628. bottom: 76 / 2750
  23629. }
  23630. },
  23631. },
  23632. [
  23633. {
  23634. name: "Macro",
  23635. height: math.unit(23.8, "meters"),
  23636. default: true
  23637. },
  23638. ]
  23639. ))
  23640. characterMakers.push(() => makeCharacter(
  23641. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23642. {
  23643. female: {
  23644. height: math.unit(19.3, "m"),
  23645. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23646. name: "Female",
  23647. image: {
  23648. source: "./media/characters/umok/female.svg",
  23649. extra: 2186 / 2078,
  23650. bottom: 87 / 2277
  23651. }
  23652. },
  23653. male: {
  23654. height: math.unit(19.5, "m"),
  23655. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23656. name: "Male",
  23657. image: {
  23658. source: "./media/characters/umok/male.svg",
  23659. extra: 2233 / 2140,
  23660. bottom: 24.4 / 2258
  23661. }
  23662. },
  23663. },
  23664. [
  23665. {
  23666. name: "Macro",
  23667. height: math.unit(19.3, "meters"),
  23668. default: true
  23669. },
  23670. ]
  23671. ))
  23672. characterMakers.push(() => makeCharacter(
  23673. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23674. {
  23675. female: {
  23676. height: math.unit(26.15, "m"),
  23677. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23678. name: "Female",
  23679. image: {
  23680. source: "./media/characters/joraxian/female.svg",
  23681. extra: 2912 / 2824,
  23682. bottom: 36 / 2956
  23683. }
  23684. },
  23685. male: {
  23686. height: math.unit(25.4, "m"),
  23687. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23688. name: "Male",
  23689. image: {
  23690. source: "./media/characters/joraxian/male.svg",
  23691. extra: 2877 / 2721,
  23692. bottom: 82 / 2967
  23693. }
  23694. },
  23695. },
  23696. [
  23697. {
  23698. name: "Macro",
  23699. height: math.unit(26.15, "meters"),
  23700. default: true
  23701. },
  23702. ]
  23703. ))
  23704. characterMakers.push(() => makeCharacter(
  23705. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23706. {
  23707. female: {
  23708. height: math.unit(21.6, "m"),
  23709. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23710. name: "Female",
  23711. image: {
  23712. source: "./media/characters/sthara/female.svg",
  23713. extra: 2516 / 2347,
  23714. bottom: 21.5 / 2537
  23715. }
  23716. },
  23717. male: {
  23718. height: math.unit(24, "m"),
  23719. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23720. name: "Male",
  23721. image: {
  23722. source: "./media/characters/sthara/male.svg",
  23723. extra: 2732 / 2607,
  23724. bottom: 23 / 2732
  23725. }
  23726. },
  23727. },
  23728. [
  23729. {
  23730. name: "Macro",
  23731. height: math.unit(21.6, "meters"),
  23732. default: true
  23733. },
  23734. ]
  23735. ))
  23736. characterMakers.push(() => makeCharacter(
  23737. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23738. {
  23739. front: {
  23740. height: math.unit(6 + 4 / 12, "feet"),
  23741. weight: math.unit(175, "lb"),
  23742. name: "Front",
  23743. image: {
  23744. source: "./media/characters/luka-bryzant/front.svg",
  23745. extra: 311 / 289,
  23746. bottom: 4 / 315
  23747. }
  23748. },
  23749. back: {
  23750. height: math.unit(6 + 4 / 12, "feet"),
  23751. weight: math.unit(175, "lb"),
  23752. name: "Back",
  23753. image: {
  23754. source: "./media/characters/luka-bryzant/back.svg",
  23755. extra: 311 / 289,
  23756. bottom: 3.8 / 313.7
  23757. }
  23758. },
  23759. },
  23760. [
  23761. {
  23762. name: "Micro",
  23763. height: math.unit(10, "inches")
  23764. },
  23765. {
  23766. name: "Normal",
  23767. height: math.unit(6 + 4 / 12, "feet"),
  23768. default: true
  23769. },
  23770. {
  23771. name: "Large",
  23772. height: math.unit(12, "feet")
  23773. },
  23774. ]
  23775. ))
  23776. characterMakers.push(() => makeCharacter(
  23777. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  23778. {
  23779. front: {
  23780. height: math.unit(5 + 7 / 12, "feet"),
  23781. weight: math.unit(185, "lb"),
  23782. name: "Front",
  23783. image: {
  23784. source: "./media/characters/aman-aquila/front.svg",
  23785. extra: 1013 / 976,
  23786. bottom: 45.6 / 1057
  23787. }
  23788. },
  23789. side: {
  23790. height: math.unit(5 + 7 / 12, "feet"),
  23791. weight: math.unit(185, "lb"),
  23792. name: "Side",
  23793. image: {
  23794. source: "./media/characters/aman-aquila/side.svg",
  23795. extra: 1054 / 1011,
  23796. bottom: 15 / 1070
  23797. }
  23798. },
  23799. back: {
  23800. height: math.unit(5 + 7 / 12, "feet"),
  23801. weight: math.unit(185, "lb"),
  23802. name: "Back",
  23803. image: {
  23804. source: "./media/characters/aman-aquila/back.svg",
  23805. extra: 1026 / 970,
  23806. bottom: 12 / 1039
  23807. }
  23808. },
  23809. head: {
  23810. height: math.unit(1.211, "feet"),
  23811. name: "Head",
  23812. image: {
  23813. source: "./media/characters/aman-aquila/head.svg",
  23814. }
  23815. },
  23816. },
  23817. [
  23818. {
  23819. name: "Minimicro",
  23820. height: math.unit(0.057, "inches")
  23821. },
  23822. {
  23823. name: "Micro",
  23824. height: math.unit(7, "inches")
  23825. },
  23826. {
  23827. name: "Mini",
  23828. height: math.unit(3 + 7 / 12, "feet")
  23829. },
  23830. {
  23831. name: "Normal",
  23832. height: math.unit(5 + 7 / 12, "feet"),
  23833. default: true
  23834. },
  23835. {
  23836. name: "Macro",
  23837. height: math.unit(157 + 7 / 12, "feet")
  23838. },
  23839. {
  23840. name: "Megamacro",
  23841. height: math.unit(1557 + 7 / 12, "feet")
  23842. },
  23843. {
  23844. name: "Gigamacro",
  23845. height: math.unit(15557 + 7 / 12, "feet")
  23846. },
  23847. ]
  23848. ))
  23849. characterMakers.push(() => makeCharacter(
  23850. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  23851. {
  23852. front: {
  23853. height: math.unit(3 + 2 / 12, "inches"),
  23854. weight: math.unit(0.3, "ounces"),
  23855. name: "Front",
  23856. image: {
  23857. source: "./media/characters/hiphae/front.svg",
  23858. extra: 1931 / 1683,
  23859. bottom: 24 / 1955
  23860. }
  23861. },
  23862. },
  23863. [
  23864. {
  23865. name: "Normal",
  23866. height: math.unit(3 + 1 / 2, "inches"),
  23867. default: true
  23868. },
  23869. ]
  23870. ))
  23871. characterMakers.push(() => makeCharacter(
  23872. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  23873. {
  23874. front: {
  23875. height: math.unit(5 + 10 / 12, "feet"),
  23876. weight: math.unit(165, "lb"),
  23877. name: "Front",
  23878. image: {
  23879. source: "./media/characters/nicky/front.svg",
  23880. extra: 3144 / 2886,
  23881. bottom: 45.6 / 3192
  23882. }
  23883. },
  23884. back: {
  23885. height: math.unit(5 + 10 / 12, "feet"),
  23886. weight: math.unit(165, "lb"),
  23887. name: "Back",
  23888. image: {
  23889. source: "./media/characters/nicky/back.svg",
  23890. extra: 3055 / 2804,
  23891. bottom: 28.4 / 3087
  23892. }
  23893. },
  23894. frontclothed: {
  23895. height: math.unit(5 + 10 / 12, "feet"),
  23896. weight: math.unit(165, "lb"),
  23897. name: "Front-clothed",
  23898. image: {
  23899. source: "./media/characters/nicky/front-clothed.svg",
  23900. extra: 3184.9 / 2926.9,
  23901. bottom: 86.5 / 3239.9
  23902. }
  23903. },
  23904. foot: {
  23905. height: math.unit(1.16, "feet"),
  23906. name: "Foot",
  23907. image: {
  23908. source: "./media/characters/nicky/foot.svg"
  23909. }
  23910. },
  23911. feet: {
  23912. height: math.unit(1.34, "feet"),
  23913. name: "Feet",
  23914. image: {
  23915. source: "./media/characters/nicky/feet.svg"
  23916. }
  23917. },
  23918. maw: {
  23919. height: math.unit(0.9, "feet"),
  23920. name: "Maw",
  23921. image: {
  23922. source: "./media/characters/nicky/maw.svg"
  23923. }
  23924. },
  23925. },
  23926. [
  23927. {
  23928. name: "Normal",
  23929. height: math.unit(5 + 10 / 12, "feet"),
  23930. default: true
  23931. },
  23932. {
  23933. name: "Macro",
  23934. height: math.unit(60, "feet")
  23935. },
  23936. {
  23937. name: "Megamacro",
  23938. height: math.unit(1, "mile")
  23939. },
  23940. ]
  23941. ))
  23942. characterMakers.push(() => makeCharacter(
  23943. { name: "Blair", species: ["seal"], tags: ["taur"] },
  23944. {
  23945. side: {
  23946. height: math.unit(10, "feet"),
  23947. weight: math.unit(600, "lb"),
  23948. name: "Side",
  23949. image: {
  23950. source: "./media/characters/blair/side.svg",
  23951. bottom: 16.6 / 475,
  23952. extra: 458 / 431
  23953. }
  23954. },
  23955. },
  23956. [
  23957. {
  23958. name: "Micro",
  23959. height: math.unit(8, "inches")
  23960. },
  23961. {
  23962. name: "Normal",
  23963. height: math.unit(10, "feet"),
  23964. default: true
  23965. },
  23966. {
  23967. name: "Macro",
  23968. height: math.unit(180, "feet")
  23969. },
  23970. ]
  23971. ))
  23972. characterMakers.push(() => makeCharacter(
  23973. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  23974. {
  23975. front: {
  23976. height: math.unit(5 + 4 / 12, "feet"),
  23977. weight: math.unit(125, "lb"),
  23978. name: "Front",
  23979. image: {
  23980. source: "./media/characters/fisher/front.svg",
  23981. extra: 444 / 390,
  23982. bottom: 2 / 444.8
  23983. }
  23984. },
  23985. },
  23986. [
  23987. {
  23988. name: "Micro",
  23989. height: math.unit(4, "inches")
  23990. },
  23991. {
  23992. name: "Normal",
  23993. height: math.unit(5 + 4 / 12, "feet"),
  23994. default: true
  23995. },
  23996. {
  23997. name: "Macro",
  23998. height: math.unit(100, "feet")
  23999. },
  24000. ]
  24001. ))
  24002. characterMakers.push(() => makeCharacter(
  24003. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24004. {
  24005. front: {
  24006. height: math.unit(6.71, "feet"),
  24007. weight: math.unit(200, "lb"),
  24008. capacity: math.unit(1000000, "people"),
  24009. name: "Front",
  24010. image: {
  24011. source: "./media/characters/gliss/front.svg",
  24012. extra: 2347 / 2231,
  24013. bottom: 113 / 2462
  24014. }
  24015. },
  24016. hammerspaceSize: {
  24017. height: math.unit(6.71 * 717, "feet"),
  24018. weight: math.unit(200, "lb"),
  24019. capacity: math.unit(1000000, "people"),
  24020. name: "Hammerspace Size",
  24021. image: {
  24022. source: "./media/characters/gliss/front.svg",
  24023. extra: 2347 / 2231,
  24024. bottom: 113 / 2462
  24025. }
  24026. },
  24027. },
  24028. [
  24029. {
  24030. name: "Normal",
  24031. height: math.unit(6.71, "feet"),
  24032. default: true
  24033. },
  24034. ]
  24035. ))
  24036. characterMakers.push(() => makeCharacter(
  24037. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24038. {
  24039. side: {
  24040. height: math.unit(1.44, "m"),
  24041. weight: math.unit(80, "kg"),
  24042. name: "Side",
  24043. image: {
  24044. source: "./media/characters/dune-anderson/side.svg",
  24045. bottom: 49 / 1426
  24046. }
  24047. },
  24048. },
  24049. [
  24050. {
  24051. name: "Wolf-sized",
  24052. height: math.unit(1.44, "meters")
  24053. },
  24054. {
  24055. name: "Normal",
  24056. height: math.unit(5.05, "meters"),
  24057. default: true
  24058. },
  24059. {
  24060. name: "Big",
  24061. height: math.unit(14.4, "meters")
  24062. },
  24063. {
  24064. name: "Huge",
  24065. height: math.unit(144, "meters")
  24066. },
  24067. ]
  24068. ))
  24069. characterMakers.push(() => makeCharacter(
  24070. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24071. {
  24072. front: {
  24073. height: math.unit(7, "feet"),
  24074. weight: math.unit(425, "lb"),
  24075. name: "Front",
  24076. image: {
  24077. source: "./media/characters/hind/front.svg",
  24078. extra: 2091 / 1860,
  24079. bottom: 129 / 2220
  24080. }
  24081. },
  24082. back: {
  24083. height: math.unit(7, "feet"),
  24084. weight: math.unit(425, "lb"),
  24085. name: "Back",
  24086. image: {
  24087. source: "./media/characters/hind/back.svg",
  24088. extra: 2091 / 1860,
  24089. bottom: 24.6 / 2309
  24090. }
  24091. },
  24092. tail: {
  24093. height: math.unit(2.8, "feet"),
  24094. name: "Tail",
  24095. image: {
  24096. source: "./media/characters/hind/tail.svg"
  24097. }
  24098. },
  24099. head: {
  24100. height: math.unit(2.55, "feet"),
  24101. name: "Head",
  24102. image: {
  24103. source: "./media/characters/hind/head.svg"
  24104. }
  24105. },
  24106. },
  24107. [
  24108. {
  24109. name: "XS",
  24110. height: math.unit(0.7, "feet")
  24111. },
  24112. {
  24113. name: "Normal",
  24114. height: math.unit(7, "feet"),
  24115. default: true
  24116. },
  24117. {
  24118. name: "XL",
  24119. height: math.unit(70, "feet")
  24120. },
  24121. ]
  24122. ))
  24123. characterMakers.push(() => makeCharacter(
  24124. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24125. {
  24126. front: {
  24127. height: math.unit(6, "feet"),
  24128. weight: math.unit(150, "lb"),
  24129. name: "Front",
  24130. image: {
  24131. source: "./media/characters/dylan-skaven/front.svg",
  24132. extra: 2318 / 2063,
  24133. bottom: 93.4 / 2410
  24134. }
  24135. },
  24136. },
  24137. [
  24138. {
  24139. name: "Nano",
  24140. height: math.unit(1, "mm")
  24141. },
  24142. {
  24143. name: "Micro",
  24144. height: math.unit(1, "cm")
  24145. },
  24146. {
  24147. name: "Normal",
  24148. height: math.unit(2.1, "meters"),
  24149. default: true
  24150. },
  24151. ]
  24152. ))
  24153. characterMakers.push(() => makeCharacter(
  24154. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24155. {
  24156. front: {
  24157. height: math.unit(7 + 5 / 12, "feet"),
  24158. weight: math.unit(357, "lb"),
  24159. name: "Front",
  24160. image: {
  24161. source: "./media/characters/solex-draconov/front.svg",
  24162. extra: 1993 / 1865,
  24163. bottom: 117 / 2111
  24164. }
  24165. },
  24166. },
  24167. [
  24168. {
  24169. name: "Natural Height",
  24170. height: math.unit(7 + 5 / 12, "feet"),
  24171. default: true
  24172. },
  24173. {
  24174. name: "Macro",
  24175. height: math.unit(350, "feet")
  24176. },
  24177. {
  24178. name: "Macro+",
  24179. height: math.unit(1000, "feet")
  24180. },
  24181. {
  24182. name: "Megamacro",
  24183. height: math.unit(20, "km")
  24184. },
  24185. {
  24186. name: "Megamacro+",
  24187. height: math.unit(1000, "km")
  24188. },
  24189. {
  24190. name: "Gigamacro",
  24191. height: math.unit(2.5, "Gm")
  24192. },
  24193. {
  24194. name: "Teramacro",
  24195. height: math.unit(15, "Tm")
  24196. },
  24197. {
  24198. name: "Galactic",
  24199. height: math.unit(30, "Zm")
  24200. },
  24201. {
  24202. name: "Universal",
  24203. height: math.unit(21000, "Ym")
  24204. },
  24205. {
  24206. name: "Omniversal",
  24207. height: math.unit(9.861e50, "Ym")
  24208. },
  24209. {
  24210. name: "Existential",
  24211. height: math.unit(1e300, "meters")
  24212. },
  24213. ]
  24214. ))
  24215. characterMakers.push(() => makeCharacter(
  24216. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24217. {
  24218. side: {
  24219. height: math.unit(25, "feet"),
  24220. weight: math.unit(90000, "lb"),
  24221. name: "Side",
  24222. image: {
  24223. source: "./media/characters/mandarax/side.svg",
  24224. extra: 614 / 332,
  24225. bottom: 55 / 630
  24226. }
  24227. },
  24228. head: {
  24229. height: math.unit(11.4, "feet"),
  24230. name: "Head",
  24231. image: {
  24232. source: "./media/characters/mandarax/head.svg"
  24233. }
  24234. },
  24235. belly: {
  24236. height: math.unit(33, "feet"),
  24237. name: "Belly",
  24238. capacity: math.unit(500, "people"),
  24239. image: {
  24240. source: "./media/characters/mandarax/belly.svg"
  24241. }
  24242. },
  24243. dick: {
  24244. height: math.unit(8.46, "feet"),
  24245. name: "Dick",
  24246. image: {
  24247. source: "./media/characters/mandarax/dick.svg"
  24248. }
  24249. },
  24250. top: {
  24251. height: math.unit(28, "meters"),
  24252. name: "Top",
  24253. image: {
  24254. source: "./media/characters/mandarax/top.svg"
  24255. }
  24256. },
  24257. },
  24258. [
  24259. {
  24260. name: "Normal",
  24261. height: math.unit(25, "feet"),
  24262. default: true
  24263. },
  24264. ]
  24265. ))
  24266. characterMakers.push(() => makeCharacter(
  24267. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24268. {
  24269. front: {
  24270. height: math.unit(5, "feet"),
  24271. weight: math.unit(90, "lb"),
  24272. name: "Front",
  24273. image: {
  24274. source: "./media/characters/pixil/front.svg",
  24275. extra: 2000 / 1618,
  24276. bottom: 12.3 / 2011
  24277. }
  24278. },
  24279. },
  24280. [
  24281. {
  24282. name: "Normal",
  24283. height: math.unit(5, "feet"),
  24284. default: true
  24285. },
  24286. {
  24287. name: "Megamacro",
  24288. height: math.unit(10, "miles"),
  24289. },
  24290. ]
  24291. ))
  24292. characterMakers.push(() => makeCharacter(
  24293. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24294. {
  24295. front: {
  24296. height: math.unit(7 + 2 / 12, "feet"),
  24297. weight: math.unit(200, "lb"),
  24298. name: "Front",
  24299. image: {
  24300. source: "./media/characters/angel/front.svg",
  24301. extra: 1830 / 1737,
  24302. bottom: 22.6 / 1854,
  24303. }
  24304. },
  24305. },
  24306. [
  24307. {
  24308. name: "Normal",
  24309. height: math.unit(7 + 2 / 12, "feet"),
  24310. default: true
  24311. },
  24312. {
  24313. name: "Macro",
  24314. height: math.unit(1000, "feet")
  24315. },
  24316. {
  24317. name: "Megamacro",
  24318. height: math.unit(2, "miles")
  24319. },
  24320. {
  24321. name: "Gigamacro",
  24322. height: math.unit(20, "earths")
  24323. },
  24324. ]
  24325. ))
  24326. characterMakers.push(() => makeCharacter(
  24327. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24328. {
  24329. front: {
  24330. height: math.unit(5, "feet"),
  24331. weight: math.unit(180, "lb"),
  24332. name: "Front",
  24333. image: {
  24334. source: "./media/characters/mekana/front.svg",
  24335. extra: 1671 / 1605,
  24336. bottom: 3.5 / 1691
  24337. }
  24338. },
  24339. side: {
  24340. height: math.unit(5, "feet"),
  24341. weight: math.unit(180, "lb"),
  24342. name: "Side",
  24343. image: {
  24344. source: "./media/characters/mekana/side.svg",
  24345. extra: 1671 / 1605,
  24346. bottom: 3.5 / 1691
  24347. }
  24348. },
  24349. back: {
  24350. height: math.unit(5, "feet"),
  24351. weight: math.unit(180, "lb"),
  24352. name: "Back",
  24353. image: {
  24354. source: "./media/characters/mekana/back.svg",
  24355. extra: 1671 / 1605,
  24356. bottom: 3.5 / 1691
  24357. }
  24358. },
  24359. },
  24360. [
  24361. {
  24362. name: "Normal",
  24363. height: math.unit(5, "feet"),
  24364. default: true
  24365. },
  24366. ]
  24367. ))
  24368. characterMakers.push(() => makeCharacter(
  24369. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24370. {
  24371. front: {
  24372. height: math.unit(4 + 6 / 12, "feet"),
  24373. weight: math.unit(80, "lb"),
  24374. name: "Front",
  24375. image: {
  24376. source: "./media/characters/pixie/front.svg",
  24377. extra: 1924 / 1825,
  24378. bottom: 22.4 / 1946
  24379. }
  24380. },
  24381. },
  24382. [
  24383. {
  24384. name: "Normal",
  24385. height: math.unit(4 + 6 / 12, "feet"),
  24386. default: true
  24387. },
  24388. {
  24389. name: "Macro",
  24390. height: math.unit(40, "feet")
  24391. },
  24392. ]
  24393. ))
  24394. characterMakers.push(() => makeCharacter(
  24395. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24396. {
  24397. front: {
  24398. height: math.unit(2.1, "meters"),
  24399. weight: math.unit(200, "lb"),
  24400. name: "Front",
  24401. image: {
  24402. source: "./media/characters/the-lascivious/front.svg",
  24403. extra: 1 / 0.893,
  24404. bottom: 3.5 / 573.7
  24405. }
  24406. },
  24407. },
  24408. [
  24409. {
  24410. name: "Human Scale",
  24411. height: math.unit(2.1, "meters")
  24412. },
  24413. {
  24414. name: "Wolxi Scale",
  24415. height: math.unit(46.2, "m"),
  24416. default: true
  24417. },
  24418. {
  24419. name: "Boinker of Buildings",
  24420. height: math.unit(10, "km")
  24421. },
  24422. {
  24423. name: "Shagger of Skyscrapers",
  24424. height: math.unit(40, "km")
  24425. },
  24426. {
  24427. name: "Banger of Boroughs",
  24428. height: math.unit(4000, "km")
  24429. },
  24430. {
  24431. name: "Screwer of States",
  24432. height: math.unit(100000, "km")
  24433. },
  24434. {
  24435. name: "Pounder of Planets",
  24436. height: math.unit(2000000, "km")
  24437. },
  24438. ]
  24439. ))
  24440. characterMakers.push(() => makeCharacter(
  24441. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24442. {
  24443. front: {
  24444. height: math.unit(6, "feet"),
  24445. weight: math.unit(150, "lb"),
  24446. name: "Front",
  24447. image: {
  24448. source: "./media/characters/aj/front.svg",
  24449. extra: 2039 / 1562,
  24450. bottom: 40 / 2079
  24451. }
  24452. },
  24453. },
  24454. [
  24455. {
  24456. name: "Normal",
  24457. height: math.unit(11 + 6 / 12, "feet"),
  24458. default: true
  24459. },
  24460. {
  24461. name: "Megamacro",
  24462. height: math.unit(60, "megameters")
  24463. },
  24464. ]
  24465. ))
  24466. characterMakers.push(() => makeCharacter(
  24467. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24468. {
  24469. side: {
  24470. height: math.unit(31 + 8 / 12, "feet"),
  24471. weight: math.unit(75000, "kg"),
  24472. name: "Side",
  24473. image: {
  24474. source: "./media/characters/koros/side.svg",
  24475. extra: 1442 / 1297,
  24476. bottom: 122.7 / 1562
  24477. }
  24478. },
  24479. dicksKingsCrown: {
  24480. height: math.unit(6, "feet"),
  24481. name: "Dicks (King's Crown)",
  24482. image: {
  24483. source: "./media/characters/koros/dicks-kings-crown.svg"
  24484. }
  24485. },
  24486. dicksTailSet: {
  24487. height: math.unit(3, "feet"),
  24488. name: "Dicks (Tail Set)",
  24489. image: {
  24490. source: "./media/characters/koros/dicks-tail-set.svg"
  24491. }
  24492. },
  24493. dickCumming: {
  24494. height: math.unit(7.98, "feet"),
  24495. name: "Dick (Cumming)",
  24496. image: {
  24497. source: "./media/characters/koros/dick-cumming.svg"
  24498. }
  24499. },
  24500. dicksBack: {
  24501. height: math.unit(5.9, "feet"),
  24502. name: "Dicks (Back)",
  24503. image: {
  24504. source: "./media/characters/koros/dicks-back.svg"
  24505. }
  24506. },
  24507. dicksFront: {
  24508. height: math.unit(3.72, "feet"),
  24509. name: "Dicks (Front)",
  24510. image: {
  24511. source: "./media/characters/koros/dicks-front.svg"
  24512. }
  24513. },
  24514. dicksPeeking: {
  24515. height: math.unit(3.0, "feet"),
  24516. name: "Dicks (Peeking)",
  24517. image: {
  24518. source: "./media/characters/koros/dicks-peeking.svg"
  24519. }
  24520. },
  24521. eye: {
  24522. height: math.unit(1.7, "feet"),
  24523. name: "Eye",
  24524. image: {
  24525. source: "./media/characters/koros/eye.svg"
  24526. }
  24527. },
  24528. headFront: {
  24529. height: math.unit(11.69, "feet"),
  24530. name: "Head (Front)",
  24531. image: {
  24532. source: "./media/characters/koros/head-front.svg"
  24533. }
  24534. },
  24535. headSide: {
  24536. height: math.unit(14, "feet"),
  24537. name: "Head (Side)",
  24538. image: {
  24539. source: "./media/characters/koros/head-side.svg"
  24540. }
  24541. },
  24542. leg: {
  24543. height: math.unit(17, "feet"),
  24544. name: "Leg",
  24545. image: {
  24546. source: "./media/characters/koros/leg.svg"
  24547. }
  24548. },
  24549. mawSide: {
  24550. height: math.unit(12.8, "feet"),
  24551. name: "Maw (Side)",
  24552. image: {
  24553. source: "./media/characters/koros/maw-side.svg"
  24554. }
  24555. },
  24556. mawSpitting: {
  24557. height: math.unit(17, "feet"),
  24558. name: "Maw (Spitting)",
  24559. image: {
  24560. source: "./media/characters/koros/maw-spitting.svg"
  24561. }
  24562. },
  24563. slit: {
  24564. height: math.unit(2.8, "feet"),
  24565. name: "Slit",
  24566. image: {
  24567. source: "./media/characters/koros/slit.svg"
  24568. }
  24569. },
  24570. stomach: {
  24571. height: math.unit(6.8, "feet"),
  24572. capacity: math.unit(20, "people"),
  24573. name: "Stomach",
  24574. image: {
  24575. source: "./media/characters/koros/stomach.svg"
  24576. }
  24577. },
  24578. wingspanBottom: {
  24579. height: math.unit(114, "feet"),
  24580. name: "Wingspan (Bottom)",
  24581. image: {
  24582. source: "./media/characters/koros/wingspan-bottom.svg"
  24583. }
  24584. },
  24585. wingspanTop: {
  24586. height: math.unit(104, "feet"),
  24587. name: "Wingspan (Top)",
  24588. image: {
  24589. source: "./media/characters/koros/wingspan-top.svg"
  24590. }
  24591. },
  24592. },
  24593. [
  24594. {
  24595. name: "Normal",
  24596. height: math.unit(31 + 8 / 12, "feet"),
  24597. default: true
  24598. },
  24599. ]
  24600. ))
  24601. characterMakers.push(() => makeCharacter(
  24602. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24603. {
  24604. front: {
  24605. height: math.unit(18 + 5 / 12, "feet"),
  24606. weight: math.unit(3750, "kg"),
  24607. name: "Front",
  24608. image: {
  24609. source: "./media/characters/vexx/front.svg",
  24610. extra: 426 / 396,
  24611. bottom: 31.5 / 458
  24612. }
  24613. },
  24614. maw: {
  24615. height: math.unit(6, "feet"),
  24616. name: "Maw",
  24617. image: {
  24618. source: "./media/characters/vexx/maw.svg"
  24619. }
  24620. },
  24621. },
  24622. [
  24623. {
  24624. name: "Normal",
  24625. height: math.unit(18 + 5 / 12, "feet"),
  24626. default: true
  24627. },
  24628. ]
  24629. ))
  24630. characterMakers.push(() => makeCharacter(
  24631. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24632. {
  24633. front: {
  24634. height: math.unit(17 + 6 / 12, "feet"),
  24635. weight: math.unit(150, "lb"),
  24636. name: "Front",
  24637. image: {
  24638. source: "./media/characters/baadra/front.svg",
  24639. extra: 3137 / 2890,
  24640. bottom: 168.4 / 3305
  24641. }
  24642. },
  24643. back: {
  24644. height: math.unit(17 + 6 / 12, "feet"),
  24645. weight: math.unit(150, "lb"),
  24646. name: "Back",
  24647. image: {
  24648. source: "./media/characters/baadra/back.svg",
  24649. extra: 3142 / 2890,
  24650. bottom: 220 / 3371
  24651. }
  24652. },
  24653. head: {
  24654. height: math.unit(5.45, "feet"),
  24655. name: "Head",
  24656. image: {
  24657. source: "./media/characters/baadra/head.svg"
  24658. }
  24659. },
  24660. headAngry: {
  24661. height: math.unit(4.95, "feet"),
  24662. name: "Head (Angry)",
  24663. image: {
  24664. source: "./media/characters/baadra/head-angry.svg"
  24665. }
  24666. },
  24667. headOpen: {
  24668. height: math.unit(6, "feet"),
  24669. name: "Head (Open)",
  24670. image: {
  24671. source: "./media/characters/baadra/head-open.svg"
  24672. }
  24673. },
  24674. },
  24675. [
  24676. {
  24677. name: "Normal",
  24678. height: math.unit(17 + 6 / 12, "feet"),
  24679. default: true
  24680. },
  24681. ]
  24682. ))
  24683. characterMakers.push(() => makeCharacter(
  24684. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24685. {
  24686. front: {
  24687. height: math.unit(7 + 3 / 12, "feet"),
  24688. weight: math.unit(180, "lb"),
  24689. name: "Front",
  24690. image: {
  24691. source: "./media/characters/juri/front.svg",
  24692. extra: 1401 / 1237,
  24693. bottom: 18.5 / 1418
  24694. }
  24695. },
  24696. side: {
  24697. height: math.unit(7 + 3 / 12, "feet"),
  24698. weight: math.unit(180, "lb"),
  24699. name: "Side",
  24700. image: {
  24701. source: "./media/characters/juri/side.svg",
  24702. extra: 1424 / 1242,
  24703. bottom: 18.5 / 1447
  24704. }
  24705. },
  24706. sitting: {
  24707. height: math.unit(6, "feet"),
  24708. weight: math.unit(180, "lb"),
  24709. name: "Sitting",
  24710. image: {
  24711. source: "./media/characters/juri/sitting.svg",
  24712. extra: 1270 / 1143,
  24713. bottom: 100 / 1343
  24714. }
  24715. },
  24716. back: {
  24717. height: math.unit(7 + 3 / 12, "feet"),
  24718. weight: math.unit(180, "lb"),
  24719. name: "Back",
  24720. image: {
  24721. source: "./media/characters/juri/back.svg",
  24722. extra: 1377 / 1240,
  24723. bottom: 23.7 / 1405
  24724. }
  24725. },
  24726. maw: {
  24727. height: math.unit(2.8, "feet"),
  24728. name: "Maw",
  24729. image: {
  24730. source: "./media/characters/juri/maw.svg"
  24731. }
  24732. },
  24733. stomach: {
  24734. height: math.unit(0.89, "feet"),
  24735. capacity: math.unit(4, "liters"),
  24736. name: "Stomach",
  24737. image: {
  24738. source: "./media/characters/juri/stomach.svg"
  24739. }
  24740. },
  24741. },
  24742. [
  24743. {
  24744. name: "Normal",
  24745. height: math.unit(7 + 3 / 12, "feet"),
  24746. default: true
  24747. },
  24748. ]
  24749. ))
  24750. characterMakers.push(() => makeCharacter(
  24751. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  24752. {
  24753. fox: {
  24754. height: math.unit(5 + 6 / 12, "feet"),
  24755. weight: math.unit(140, "lb"),
  24756. name: "Fox",
  24757. image: {
  24758. source: "./media/characters/maxene-sita/fox.svg",
  24759. extra: 146 / 138,
  24760. bottom: 2.1 / 148.19
  24761. }
  24762. },
  24763. foxLaying: {
  24764. height: math.unit(1.70, "feet"),
  24765. weight: math.unit(140, "lb"),
  24766. name: "Fox (Laying)",
  24767. image: {
  24768. source: "./media/characters/maxene-sita/fox-laying.svg",
  24769. extra: 910/572,
  24770. bottom: 71/981
  24771. }
  24772. },
  24773. kitsune: {
  24774. height: math.unit(10, "feet"),
  24775. weight: math.unit(800, "lb"),
  24776. name: "Kitsune",
  24777. image: {
  24778. source: "./media/characters/maxene-sita/kitsune.svg",
  24779. extra: 185 / 176,
  24780. bottom: 4.7 / 189.9
  24781. }
  24782. },
  24783. hellhound: {
  24784. height: math.unit(10, "feet"),
  24785. weight: math.unit(700, "lb"),
  24786. name: "Hellhound",
  24787. image: {
  24788. source: "./media/characters/maxene-sita/hellhound.svg",
  24789. extra: 1600/1545,
  24790. bottom: 81/1681
  24791. }
  24792. },
  24793. },
  24794. [
  24795. {
  24796. name: "Normal",
  24797. height: math.unit(5 + 6 / 12, "feet"),
  24798. default: true
  24799. },
  24800. ]
  24801. ))
  24802. characterMakers.push(() => makeCharacter(
  24803. { name: "Maia", species: ["mew"], tags: ["feral"] },
  24804. {
  24805. front: {
  24806. height: math.unit(3 + 4 / 12, "feet"),
  24807. weight: math.unit(70, "lb"),
  24808. name: "Front",
  24809. image: {
  24810. source: "./media/characters/maia/front.svg",
  24811. extra: 227 / 219.5,
  24812. bottom: 40 / 267
  24813. }
  24814. },
  24815. back: {
  24816. height: math.unit(3 + 4 / 12, "feet"),
  24817. weight: math.unit(70, "lb"),
  24818. name: "Back",
  24819. image: {
  24820. source: "./media/characters/maia/back.svg",
  24821. extra: 237 / 225
  24822. }
  24823. },
  24824. },
  24825. [
  24826. {
  24827. name: "Normal",
  24828. height: math.unit(3 + 4 / 12, "feet"),
  24829. default: true
  24830. },
  24831. ]
  24832. ))
  24833. characterMakers.push(() => makeCharacter(
  24834. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  24835. {
  24836. front: {
  24837. height: math.unit(5 + 10 / 12, "feet"),
  24838. weight: math.unit(197, "lb"),
  24839. name: "Front",
  24840. image: {
  24841. source: "./media/characters/jabaro/front.svg",
  24842. extra: 225 / 216,
  24843. bottom: 5.06 / 230
  24844. }
  24845. },
  24846. back: {
  24847. height: math.unit(5 + 10 / 12, "feet"),
  24848. weight: math.unit(197, "lb"),
  24849. name: "Back",
  24850. image: {
  24851. source: "./media/characters/jabaro/back.svg",
  24852. extra: 225 / 219,
  24853. bottom: 1.9 / 227
  24854. }
  24855. },
  24856. },
  24857. [
  24858. {
  24859. name: "Normal",
  24860. height: math.unit(5 + 10 / 12, "feet"),
  24861. default: true
  24862. },
  24863. ]
  24864. ))
  24865. characterMakers.push(() => makeCharacter(
  24866. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  24867. {
  24868. front: {
  24869. height: math.unit(5 + 8 / 12, "feet"),
  24870. weight: math.unit(139, "lb"),
  24871. name: "Front",
  24872. image: {
  24873. source: "./media/characters/risa/front.svg",
  24874. extra: 270 / 260,
  24875. bottom: 11.2 / 282
  24876. }
  24877. },
  24878. back: {
  24879. height: math.unit(5 + 8 / 12, "feet"),
  24880. weight: math.unit(139, "lb"),
  24881. name: "Back",
  24882. image: {
  24883. source: "./media/characters/risa/back.svg",
  24884. extra: 264 / 255,
  24885. bottom: 4 / 268
  24886. }
  24887. },
  24888. },
  24889. [
  24890. {
  24891. name: "Normal",
  24892. height: math.unit(5 + 8 / 12, "feet"),
  24893. default: true
  24894. },
  24895. ]
  24896. ))
  24897. characterMakers.push(() => makeCharacter(
  24898. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  24899. {
  24900. front: {
  24901. height: math.unit(2 + 11 / 12, "feet"),
  24902. weight: math.unit(30, "lb"),
  24903. name: "Front",
  24904. image: {
  24905. source: "./media/characters/weatley/front.svg",
  24906. bottom: 10.7 / 414,
  24907. extra: 403.5 / 362
  24908. }
  24909. },
  24910. back: {
  24911. height: math.unit(2 + 11 / 12, "feet"),
  24912. weight: math.unit(30, "lb"),
  24913. name: "Back",
  24914. image: {
  24915. source: "./media/characters/weatley/back.svg",
  24916. bottom: 10.7 / 414,
  24917. extra: 403.5 / 362
  24918. }
  24919. },
  24920. },
  24921. [
  24922. {
  24923. name: "Normal",
  24924. height: math.unit(2 + 11 / 12, "feet"),
  24925. default: true
  24926. },
  24927. ]
  24928. ))
  24929. characterMakers.push(() => makeCharacter(
  24930. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  24931. {
  24932. front: {
  24933. height: math.unit(5 + 2 / 12, "feet"),
  24934. weight: math.unit(50, "kg"),
  24935. name: "Front",
  24936. image: {
  24937. source: "./media/characters/mercury-crescent/front.svg",
  24938. extra: 1088 / 1033,
  24939. bottom: 18.9 / 1109
  24940. }
  24941. },
  24942. },
  24943. [
  24944. {
  24945. name: "Normal",
  24946. height: math.unit(5 + 2 / 12, "feet"),
  24947. default: true
  24948. },
  24949. ]
  24950. ))
  24951. characterMakers.push(() => makeCharacter(
  24952. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  24953. {
  24954. front: {
  24955. height: math.unit(2, "feet"),
  24956. weight: math.unit(15, "kg"),
  24957. name: "Front",
  24958. image: {
  24959. source: "./media/characters/diamond-jones/front.svg",
  24960. bottom: 16 / 568
  24961. }
  24962. },
  24963. },
  24964. [
  24965. {
  24966. name: "Normal",
  24967. height: math.unit(2, "feet"),
  24968. default: true
  24969. },
  24970. ]
  24971. ))
  24972. characterMakers.push(() => makeCharacter(
  24973. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  24974. {
  24975. front: {
  24976. height: math.unit(3, "feet"),
  24977. weight: math.unit(30, "kg"),
  24978. name: "Front",
  24979. image: {
  24980. source: "./media/characters/sweet-bit/front.svg",
  24981. extra: 675 / 567,
  24982. bottom: 27.7 / 703
  24983. }
  24984. },
  24985. },
  24986. [
  24987. {
  24988. name: "Normal",
  24989. height: math.unit(3, "feet"),
  24990. default: true
  24991. },
  24992. ]
  24993. ))
  24994. characterMakers.push(() => makeCharacter(
  24995. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  24996. {
  24997. side: {
  24998. height: math.unit(9.178, "feet"),
  24999. weight: math.unit(500, "lb"),
  25000. name: "Side",
  25001. image: {
  25002. source: "./media/characters/umbrazen/side.svg",
  25003. extra: 1730 / 1473,
  25004. bottom: 34.6 / 1765
  25005. }
  25006. },
  25007. },
  25008. [
  25009. {
  25010. name: "Normal",
  25011. height: math.unit(9.178, "feet"),
  25012. default: true
  25013. },
  25014. ]
  25015. ))
  25016. characterMakers.push(() => makeCharacter(
  25017. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25018. {
  25019. front: {
  25020. height: math.unit(10, "feet"),
  25021. weight: math.unit(750, "lb"),
  25022. name: "Front",
  25023. image: {
  25024. source: "./media/characters/arlist/front.svg",
  25025. extra: 961 / 778,
  25026. bottom: 6.2 / 986
  25027. }
  25028. },
  25029. },
  25030. [
  25031. {
  25032. name: "Normal",
  25033. height: math.unit(10, "feet"),
  25034. default: true
  25035. },
  25036. ]
  25037. ))
  25038. characterMakers.push(() => makeCharacter(
  25039. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25040. {
  25041. front: {
  25042. height: math.unit(5 + 1 / 12, "feet"),
  25043. weight: math.unit(110, "lb"),
  25044. name: "Front",
  25045. image: {
  25046. source: "./media/characters/aradel/front.svg",
  25047. extra: 324 / 303,
  25048. bottom: 3.6 / 329.4
  25049. }
  25050. },
  25051. },
  25052. [
  25053. {
  25054. name: "Normal",
  25055. height: math.unit(5 + 1 / 12, "feet"),
  25056. default: true
  25057. },
  25058. ]
  25059. ))
  25060. characterMakers.push(() => makeCharacter(
  25061. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25062. {
  25063. front: {
  25064. height: math.unit(3 + 8 / 12, "feet"),
  25065. weight: math.unit(50, "lb"),
  25066. name: "Front",
  25067. image: {
  25068. source: "./media/characters/serryn/front.svg",
  25069. extra: 1792 / 1656,
  25070. bottom: 43.5 / 1840
  25071. }
  25072. },
  25073. },
  25074. [
  25075. {
  25076. name: "Normal",
  25077. height: math.unit(3 + 8 / 12, "feet"),
  25078. default: true
  25079. },
  25080. ]
  25081. ))
  25082. characterMakers.push(() => makeCharacter(
  25083. { name: "Xavier Thyme" },
  25084. {
  25085. front: {
  25086. height: math.unit(7 + 10 / 12, "feet"),
  25087. weight: math.unit(255, "lb"),
  25088. name: "Front",
  25089. image: {
  25090. source: "./media/characters/xavier-thyme/front.svg",
  25091. extra: 3733 / 3642,
  25092. bottom: 131 / 3869
  25093. }
  25094. },
  25095. frontRaven: {
  25096. height: math.unit(7 + 10 / 12, "feet"),
  25097. weight: math.unit(255, "lb"),
  25098. name: "Front (Raven)",
  25099. image: {
  25100. source: "./media/characters/xavier-thyme/front-raven.svg",
  25101. extra: 4385 / 3642,
  25102. bottom: 131 / 4517
  25103. }
  25104. },
  25105. },
  25106. [
  25107. {
  25108. name: "Normal",
  25109. height: math.unit(7 + 10 / 12, "feet"),
  25110. default: true
  25111. },
  25112. ]
  25113. ))
  25114. characterMakers.push(() => makeCharacter(
  25115. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25116. {
  25117. front: {
  25118. height: math.unit(1.6, "m"),
  25119. weight: math.unit(50, "kg"),
  25120. name: "Front",
  25121. image: {
  25122. source: "./media/characters/kiki/front.svg",
  25123. extra: 4682 / 3610,
  25124. bottom: 115 / 4777
  25125. }
  25126. },
  25127. },
  25128. [
  25129. {
  25130. name: "Normal",
  25131. height: math.unit(1.6, "meters"),
  25132. default: true
  25133. },
  25134. ]
  25135. ))
  25136. characterMakers.push(() => makeCharacter(
  25137. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25138. {
  25139. front: {
  25140. height: math.unit(50, "m"),
  25141. weight: math.unit(500, "tonnes"),
  25142. name: "Front",
  25143. image: {
  25144. source: "./media/characters/ryoko/front.svg",
  25145. extra: 4632 / 3926,
  25146. bottom: 193 / 4823
  25147. }
  25148. },
  25149. },
  25150. [
  25151. {
  25152. name: "Normal",
  25153. height: math.unit(50, "meters"),
  25154. default: true
  25155. },
  25156. ]
  25157. ))
  25158. characterMakers.push(() => makeCharacter(
  25159. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25160. {
  25161. front: {
  25162. height: math.unit(30, "m"),
  25163. weight: math.unit(22, "tonnes"),
  25164. name: "Front",
  25165. image: {
  25166. source: "./media/characters/elio/front.svg",
  25167. extra: 4582 / 3720,
  25168. bottom: 236 / 4828
  25169. }
  25170. },
  25171. },
  25172. [
  25173. {
  25174. name: "Normal",
  25175. height: math.unit(30, "meters"),
  25176. default: true
  25177. },
  25178. ]
  25179. ))
  25180. characterMakers.push(() => makeCharacter(
  25181. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25182. {
  25183. front: {
  25184. height: math.unit(6 + 3 / 12, "feet"),
  25185. weight: math.unit(120, "lb"),
  25186. name: "Front",
  25187. image: {
  25188. source: "./media/characters/azura/front.svg",
  25189. extra: 1149 / 1135,
  25190. bottom: 45 / 1194
  25191. }
  25192. },
  25193. frontClothed: {
  25194. height: math.unit(6 + 3 / 12, "feet"),
  25195. weight: math.unit(120, "lb"),
  25196. name: "Front (Clothed)",
  25197. image: {
  25198. source: "./media/characters/azura/front-clothed.svg",
  25199. extra: 1149 / 1135,
  25200. bottom: 45 / 1194
  25201. }
  25202. },
  25203. },
  25204. [
  25205. {
  25206. name: "Normal",
  25207. height: math.unit(6 + 3 / 12, "feet"),
  25208. default: true
  25209. },
  25210. {
  25211. name: "Macro",
  25212. height: math.unit(20 + 6 / 12, "feet")
  25213. },
  25214. {
  25215. name: "Megamacro",
  25216. height: math.unit(12, "miles")
  25217. },
  25218. {
  25219. name: "Gigamacro",
  25220. height: math.unit(10000, "miles")
  25221. },
  25222. {
  25223. name: "Teramacro",
  25224. height: math.unit(900000, "miles")
  25225. },
  25226. ]
  25227. ))
  25228. characterMakers.push(() => makeCharacter(
  25229. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25230. {
  25231. front: {
  25232. height: math.unit(12, "feet"),
  25233. weight: math.unit(1, "ton"),
  25234. capacity: math.unit(660000, "gallons"),
  25235. name: "Front",
  25236. image: {
  25237. source: "./media/characters/zeus/front.svg",
  25238. extra: 5005 / 4717,
  25239. bottom: 363 / 5388
  25240. }
  25241. },
  25242. },
  25243. [
  25244. {
  25245. name: "Normal",
  25246. height: math.unit(12, "feet")
  25247. },
  25248. {
  25249. name: "Preferred Size",
  25250. height: math.unit(0.5, "miles"),
  25251. default: true
  25252. },
  25253. {
  25254. name: "Giga Horse",
  25255. height: math.unit(300, "miles")
  25256. },
  25257. {
  25258. name: "Riding Planets",
  25259. height: math.unit(30, "megameters")
  25260. },
  25261. {
  25262. name: "Cosmic Giant",
  25263. height: math.unit(3, "zettameters")
  25264. },
  25265. {
  25266. name: "Breeding God",
  25267. height: math.unit(9.92e22, "yottameters")
  25268. },
  25269. ]
  25270. ))
  25271. characterMakers.push(() => makeCharacter(
  25272. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25273. {
  25274. side: {
  25275. height: math.unit(9, "feet"),
  25276. weight: math.unit(1500, "kg"),
  25277. name: "Side",
  25278. image: {
  25279. source: "./media/characters/fang/side.svg",
  25280. extra: 924 / 866,
  25281. bottom: 47.5 / 972.3
  25282. }
  25283. },
  25284. },
  25285. [
  25286. {
  25287. name: "Normal",
  25288. height: math.unit(9, "feet"),
  25289. default: true
  25290. },
  25291. {
  25292. name: "Macro",
  25293. height: math.unit(75 + 6 / 12, "feet")
  25294. },
  25295. {
  25296. name: "Teramacro",
  25297. height: math.unit(50000, "miles")
  25298. },
  25299. ]
  25300. ))
  25301. characterMakers.push(() => makeCharacter(
  25302. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25303. {
  25304. front: {
  25305. height: math.unit(10, "feet"),
  25306. weight: math.unit(2, "tons"),
  25307. name: "Front",
  25308. image: {
  25309. source: "./media/characters/rekhit/front.svg",
  25310. extra: 2796 / 2590,
  25311. bottom: 225 / 3022
  25312. }
  25313. },
  25314. },
  25315. [
  25316. {
  25317. name: "Normal",
  25318. height: math.unit(10, "feet"),
  25319. default: true
  25320. },
  25321. {
  25322. name: "Macro",
  25323. height: math.unit(500, "feet")
  25324. },
  25325. ]
  25326. ))
  25327. characterMakers.push(() => makeCharacter(
  25328. { name: "Dahlia Verrick" },
  25329. {
  25330. front: {
  25331. height: math.unit(7 + 6.451 / 12, "feet"),
  25332. weight: math.unit(310, "lb"),
  25333. name: "Front",
  25334. image: {
  25335. source: "./media/characters/dahlia-verrick/front.svg",
  25336. extra: 1488 / 1365,
  25337. bottom: 6.2 / 1495
  25338. }
  25339. },
  25340. back: {
  25341. height: math.unit(7 + 6.451 / 12, "feet"),
  25342. weight: math.unit(310, "lb"),
  25343. name: "Back",
  25344. image: {
  25345. source: "./media/characters/dahlia-verrick/back.svg",
  25346. extra: 1472 / 1351,
  25347. bottom: 5.28 / 1477
  25348. }
  25349. },
  25350. frontBusiness: {
  25351. height: math.unit(7 + 6.451 / 12, "feet"),
  25352. weight: math.unit(200, "lb"),
  25353. name: "Front (Business)",
  25354. image: {
  25355. source: "./media/characters/dahlia-verrick/front-business.svg",
  25356. extra: 1478 / 1381,
  25357. bottom: 5.5 / 1484
  25358. }
  25359. },
  25360. frontCasual: {
  25361. height: math.unit(7 + 6.451 / 12, "feet"),
  25362. weight: math.unit(200, "lb"),
  25363. name: "Front (Casual)",
  25364. image: {
  25365. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25366. extra: 1478 / 1381,
  25367. bottom: 5.5 / 1484
  25368. }
  25369. },
  25370. },
  25371. [
  25372. {
  25373. name: "Travel-Sized",
  25374. height: math.unit(7.45, "inches")
  25375. },
  25376. {
  25377. name: "Normal",
  25378. height: math.unit(7 + 6.451 / 12, "feet"),
  25379. default: true
  25380. },
  25381. {
  25382. name: "Hitting the Town",
  25383. height: math.unit(37 + 8 / 12, "feet")
  25384. },
  25385. {
  25386. name: "Stomp in the Suburbs",
  25387. height: math.unit(964 + 9.728 / 12, "feet")
  25388. },
  25389. {
  25390. name: "Sit on the City",
  25391. height: math.unit(61747 + 10.592 / 12, "feet")
  25392. },
  25393. {
  25394. name: "Glomp the Globe",
  25395. height: math.unit(252919327 + 4.832 / 12, "feet")
  25396. },
  25397. ]
  25398. ))
  25399. characterMakers.push(() => makeCharacter(
  25400. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25401. {
  25402. front: {
  25403. height: math.unit(6 + 4 / 12, "feet"),
  25404. weight: math.unit(320, "lb"),
  25405. name: "Front",
  25406. image: {
  25407. source: "./media/characters/balina-mahigan/front.svg",
  25408. extra: 447 / 428,
  25409. bottom: 18 / 466
  25410. }
  25411. },
  25412. back: {
  25413. height: math.unit(6 + 4 / 12, "feet"),
  25414. weight: math.unit(320, "lb"),
  25415. name: "Back",
  25416. image: {
  25417. source: "./media/characters/balina-mahigan/back.svg",
  25418. extra: 445 / 428,
  25419. bottom: 4.07 / 448
  25420. }
  25421. },
  25422. arm: {
  25423. height: math.unit(1.88, "feet"),
  25424. name: "Arm",
  25425. image: {
  25426. source: "./media/characters/balina-mahigan/arm.svg"
  25427. }
  25428. },
  25429. backPort: {
  25430. height: math.unit(0.685, "feet"),
  25431. name: "Back Port",
  25432. image: {
  25433. source: "./media/characters/balina-mahigan/back-port.svg"
  25434. }
  25435. },
  25436. hoofpaw: {
  25437. height: math.unit(1.41, "feet"),
  25438. name: "Hoofpaw",
  25439. image: {
  25440. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25441. }
  25442. },
  25443. leftHandBack: {
  25444. height: math.unit(0.938, "feet"),
  25445. name: "Left Hand (Back)",
  25446. image: {
  25447. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25448. }
  25449. },
  25450. leftHandFront: {
  25451. height: math.unit(0.938, "feet"),
  25452. name: "Left Hand (Front)",
  25453. image: {
  25454. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25455. }
  25456. },
  25457. rightHandBack: {
  25458. height: math.unit(0.95, "feet"),
  25459. name: "Right Hand (Back)",
  25460. image: {
  25461. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25462. }
  25463. },
  25464. rightHandFront: {
  25465. height: math.unit(0.95, "feet"),
  25466. name: "Right Hand (Front)",
  25467. image: {
  25468. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25469. }
  25470. },
  25471. },
  25472. [
  25473. {
  25474. name: "Normal",
  25475. height: math.unit(6 + 4 / 12, "feet"),
  25476. default: true
  25477. },
  25478. ]
  25479. ))
  25480. characterMakers.push(() => makeCharacter(
  25481. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25482. {
  25483. front: {
  25484. height: math.unit(6, "feet"),
  25485. weight: math.unit(320, "lb"),
  25486. name: "Front",
  25487. image: {
  25488. source: "./media/characters/balina-mejeri/front.svg",
  25489. extra: 517 / 488,
  25490. bottom: 44.2 / 561
  25491. }
  25492. },
  25493. },
  25494. [
  25495. {
  25496. name: "Normal",
  25497. height: math.unit(6 + 4 / 12, "feet")
  25498. },
  25499. {
  25500. name: "Business",
  25501. height: math.unit(155, "feet"),
  25502. default: true
  25503. },
  25504. ]
  25505. ))
  25506. characterMakers.push(() => makeCharacter(
  25507. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25508. {
  25509. kneeling: {
  25510. height: math.unit(6 + 4 / 12, "feet"),
  25511. weight: math.unit(300 * 20, "lb"),
  25512. name: "Kneeling",
  25513. image: {
  25514. source: "./media/characters/balbarian/kneeling.svg",
  25515. extra: 922 / 862,
  25516. bottom: 42.4 / 965
  25517. }
  25518. },
  25519. },
  25520. [
  25521. {
  25522. name: "Normal",
  25523. height: math.unit(6 + 4 / 12, "feet")
  25524. },
  25525. {
  25526. name: "Treasured",
  25527. height: math.unit(18 + 9 / 12, "feet"),
  25528. default: true
  25529. },
  25530. {
  25531. name: "Macro",
  25532. height: math.unit(900, "feet")
  25533. },
  25534. ]
  25535. ))
  25536. characterMakers.push(() => makeCharacter(
  25537. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25538. {
  25539. front: {
  25540. height: math.unit(6 + 4 / 12, "feet"),
  25541. weight: math.unit(325, "lb"),
  25542. name: "Front",
  25543. image: {
  25544. source: "./media/characters/balina-amarini/front.svg",
  25545. extra: 415 / 403,
  25546. bottom: 19 / 433.4
  25547. }
  25548. },
  25549. back: {
  25550. height: math.unit(6 + 4 / 12, "feet"),
  25551. weight: math.unit(325, "lb"),
  25552. name: "Back",
  25553. image: {
  25554. source: "./media/characters/balina-amarini/back.svg",
  25555. extra: 415 / 403,
  25556. bottom: 13.5 / 432
  25557. }
  25558. },
  25559. overdrive: {
  25560. height: math.unit(6 + 4 / 12, "feet"),
  25561. weight: math.unit(400, "lb"),
  25562. name: "Overdrive",
  25563. image: {
  25564. source: "./media/characters/balina-amarini/overdrive.svg",
  25565. extra: 269 / 259,
  25566. bottom: 12 / 282
  25567. }
  25568. },
  25569. },
  25570. [
  25571. {
  25572. name: "Boom",
  25573. height: math.unit(9 + 10 / 12, "feet"),
  25574. default: true
  25575. },
  25576. {
  25577. name: "Macro",
  25578. height: math.unit(280, "feet")
  25579. },
  25580. ]
  25581. ))
  25582. characterMakers.push(() => makeCharacter(
  25583. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25584. {
  25585. goddess: {
  25586. height: math.unit(600, "feet"),
  25587. weight: math.unit(2000000, "tons"),
  25588. name: "Goddess",
  25589. image: {
  25590. source: "./media/characters/lady-kubwa/goddess.svg",
  25591. extra: 1240.5 / 1223,
  25592. bottom: 22 / 1263
  25593. }
  25594. },
  25595. goddesser: {
  25596. height: math.unit(900, "feet"),
  25597. weight: math.unit(20000000, "lb"),
  25598. name: "Goddess-er",
  25599. image: {
  25600. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25601. extra: 899 / 888,
  25602. bottom: 12.6 / 912
  25603. }
  25604. },
  25605. },
  25606. [
  25607. {
  25608. name: "Macro",
  25609. height: math.unit(600, "feet"),
  25610. default: true
  25611. },
  25612. {
  25613. name: "Megamacro",
  25614. height: math.unit(250, "miles")
  25615. },
  25616. ]
  25617. ))
  25618. characterMakers.push(() => makeCharacter(
  25619. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25620. {
  25621. front: {
  25622. height: math.unit(7 + 7 / 12, "feet"),
  25623. weight: math.unit(250, "lb"),
  25624. name: "Front",
  25625. image: {
  25626. source: "./media/characters/tala-grovehorn/front.svg",
  25627. extra: 2636 / 2525,
  25628. bottom: 147 / 2781
  25629. }
  25630. },
  25631. back: {
  25632. height: math.unit(7 + 7 / 12, "feet"),
  25633. weight: math.unit(250, "lb"),
  25634. name: "Back",
  25635. image: {
  25636. source: "./media/characters/tala-grovehorn/back.svg",
  25637. extra: 2635 / 2539,
  25638. bottom: 100 / 2732.8
  25639. }
  25640. },
  25641. mouth: {
  25642. height: math.unit(1.15, "feet"),
  25643. name: "Mouth",
  25644. image: {
  25645. source: "./media/characters/tala-grovehorn/mouth.svg"
  25646. }
  25647. },
  25648. dick: {
  25649. height: math.unit(2.36, "feet"),
  25650. name: "Dick",
  25651. image: {
  25652. source: "./media/characters/tala-grovehorn/dick.svg"
  25653. }
  25654. },
  25655. slit: {
  25656. height: math.unit(0.61, "feet"),
  25657. name: "Slit",
  25658. image: {
  25659. source: "./media/characters/tala-grovehorn/slit.svg"
  25660. }
  25661. },
  25662. },
  25663. [
  25664. ]
  25665. ))
  25666. characterMakers.push(() => makeCharacter(
  25667. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25668. {
  25669. front: {
  25670. height: math.unit(7 + 7 / 12, "feet"),
  25671. weight: math.unit(225, "lb"),
  25672. name: "Front",
  25673. image: {
  25674. source: "./media/characters/epona/front.svg",
  25675. extra: 2445 / 2290,
  25676. bottom: 251 / 2696
  25677. }
  25678. },
  25679. back: {
  25680. height: math.unit(7 + 7 / 12, "feet"),
  25681. weight: math.unit(225, "lb"),
  25682. name: "Back",
  25683. image: {
  25684. source: "./media/characters/epona/back.svg",
  25685. extra: 2546 / 2408,
  25686. bottom: 44 / 2589
  25687. }
  25688. },
  25689. genitals: {
  25690. height: math.unit(1.5, "feet"),
  25691. name: "Genitals",
  25692. image: {
  25693. source: "./media/characters/epona/genitals.svg"
  25694. }
  25695. },
  25696. },
  25697. [
  25698. {
  25699. name: "Normal",
  25700. height: math.unit(7 + 7 / 12, "feet")
  25701. },
  25702. ]
  25703. ))
  25704. characterMakers.push(() => makeCharacter(
  25705. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25706. {
  25707. front: {
  25708. height: math.unit(7, "feet"),
  25709. weight: math.unit(518, "lb"),
  25710. name: "Front",
  25711. image: {
  25712. source: "./media/characters/avia-bloodbourn/front.svg",
  25713. extra: 1466 / 1350,
  25714. bottom: 65 / 1527
  25715. }
  25716. },
  25717. },
  25718. [
  25719. ]
  25720. ))
  25721. characterMakers.push(() => makeCharacter(
  25722. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25723. {
  25724. front: {
  25725. height: math.unit(9.35, "feet"),
  25726. weight: math.unit(600, "lb"),
  25727. name: "Front",
  25728. image: {
  25729. source: "./media/characters/amera/front.svg",
  25730. extra: 891 / 818,
  25731. bottom: 30 / 922.7
  25732. }
  25733. },
  25734. back: {
  25735. height: math.unit(9.35, "feet"),
  25736. weight: math.unit(600, "lb"),
  25737. name: "Back",
  25738. image: {
  25739. source: "./media/characters/amera/back.svg",
  25740. extra: 876 / 824,
  25741. bottom: 6.8 / 884
  25742. }
  25743. },
  25744. dick: {
  25745. height: math.unit(2.14, "feet"),
  25746. name: "Dick",
  25747. image: {
  25748. source: "./media/characters/amera/dick.svg"
  25749. }
  25750. },
  25751. },
  25752. [
  25753. {
  25754. name: "Normal",
  25755. height: math.unit(9.35, "feet"),
  25756. default: true
  25757. },
  25758. ]
  25759. ))
  25760. characterMakers.push(() => makeCharacter(
  25761. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  25762. {
  25763. kneeling: {
  25764. height: math.unit(3 + 4 / 12, "feet"),
  25765. weight: math.unit(90, "lb"),
  25766. name: "Kneeling",
  25767. image: {
  25768. source: "./media/characters/rosewen/kneeling.svg",
  25769. extra: 1835 / 1571,
  25770. bottom: 27.7 / 1862
  25771. }
  25772. },
  25773. },
  25774. [
  25775. {
  25776. name: "Normal",
  25777. height: math.unit(3 + 4 / 12, "feet"),
  25778. default: true
  25779. },
  25780. ]
  25781. ))
  25782. characterMakers.push(() => makeCharacter(
  25783. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  25784. {
  25785. front: {
  25786. height: math.unit(5 + 10 / 12, "feet"),
  25787. weight: math.unit(200, "lb"),
  25788. name: "Front",
  25789. image: {
  25790. source: "./media/characters/sabah/front.svg",
  25791. extra: 849 / 763,
  25792. bottom: 33.9 / 881
  25793. }
  25794. },
  25795. },
  25796. [
  25797. {
  25798. name: "Normal",
  25799. height: math.unit(5 + 10 / 12, "feet"),
  25800. default: true
  25801. },
  25802. ]
  25803. ))
  25804. characterMakers.push(() => makeCharacter(
  25805. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  25806. {
  25807. front: {
  25808. height: math.unit(3 + 5 / 12, "feet"),
  25809. weight: math.unit(40, "kg"),
  25810. name: "Front",
  25811. image: {
  25812. source: "./media/characters/purple-flame/front.svg",
  25813. extra: 1577 / 1412,
  25814. bottom: 97 / 1694
  25815. }
  25816. },
  25817. frontDressed: {
  25818. height: math.unit(3 + 5 / 12, "feet"),
  25819. weight: math.unit(40, "kg"),
  25820. name: "Front (Dressed)",
  25821. image: {
  25822. source: "./media/characters/purple-flame/front-dressed.svg",
  25823. extra: 1577 / 1412,
  25824. bottom: 97 / 1694
  25825. }
  25826. },
  25827. headphones: {
  25828. height: math.unit(0.85, "feet"),
  25829. name: "Headphones",
  25830. image: {
  25831. source: "./media/characters/purple-flame/headphones.svg"
  25832. }
  25833. },
  25834. },
  25835. [
  25836. {
  25837. name: "Really Small",
  25838. height: math.unit(5, "cm")
  25839. },
  25840. {
  25841. name: "Micro",
  25842. height: math.unit(1 + 5 / 12, "feet")
  25843. },
  25844. {
  25845. name: "Normal",
  25846. height: math.unit(3 + 5 / 12, "feet"),
  25847. default: true
  25848. },
  25849. {
  25850. name: "Minimacro",
  25851. height: math.unit(125, "feet")
  25852. },
  25853. {
  25854. name: "Macro",
  25855. height: math.unit(0.5, "miles")
  25856. },
  25857. {
  25858. name: "Megamacro",
  25859. height: math.unit(50, "miles")
  25860. },
  25861. {
  25862. name: "Gigantic",
  25863. height: math.unit(750, "miles")
  25864. },
  25865. {
  25866. name: "Planetary",
  25867. height: math.unit(15000, "miles")
  25868. },
  25869. ]
  25870. ))
  25871. characterMakers.push(() => makeCharacter(
  25872. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  25873. {
  25874. front: {
  25875. height: math.unit(14, "feet"),
  25876. weight: math.unit(959, "lb"),
  25877. name: "Front",
  25878. image: {
  25879. source: "./media/characters/arsenal/front.svg",
  25880. extra: 2357 / 2157,
  25881. bottom: 93 / 2458
  25882. }
  25883. },
  25884. },
  25885. [
  25886. {
  25887. name: "Normal",
  25888. height: math.unit(14, "feet"),
  25889. default: true
  25890. },
  25891. ]
  25892. ))
  25893. characterMakers.push(() => makeCharacter(
  25894. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  25895. {
  25896. front: {
  25897. height: math.unit(6, "feet"),
  25898. weight: math.unit(150, "lb"),
  25899. name: "Front",
  25900. image: {
  25901. source: "./media/characters/adira/front.svg",
  25902. extra: 1078 / 1029,
  25903. bottom: 87 / 1166
  25904. }
  25905. },
  25906. },
  25907. [
  25908. {
  25909. name: "Micro",
  25910. height: math.unit(4, "inches"),
  25911. default: true
  25912. },
  25913. {
  25914. name: "Macro",
  25915. height: math.unit(50, "feet")
  25916. },
  25917. ]
  25918. ))
  25919. characterMakers.push(() => makeCharacter(
  25920. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  25921. {
  25922. front: {
  25923. height: math.unit(16, "feet"),
  25924. weight: math.unit(1000, "lb"),
  25925. name: "Front",
  25926. image: {
  25927. source: "./media/characters/grim/front.svg",
  25928. extra: 622 / 614,
  25929. bottom: 18.1 / 642
  25930. }
  25931. },
  25932. back: {
  25933. height: math.unit(16, "feet"),
  25934. weight: math.unit(1000, "lb"),
  25935. name: "Back",
  25936. image: {
  25937. source: "./media/characters/grim/back.svg",
  25938. extra: 610.6 / 602,
  25939. bottom: 40.8 / 652
  25940. }
  25941. },
  25942. hunched: {
  25943. height: math.unit(9.75, "feet"),
  25944. weight: math.unit(1000, "lb"),
  25945. name: "Hunched",
  25946. image: {
  25947. source: "./media/characters/grim/hunched.svg",
  25948. extra: 304 / 297,
  25949. bottom: 35.4 / 394
  25950. }
  25951. },
  25952. },
  25953. [
  25954. {
  25955. name: "Normal",
  25956. height: math.unit(16, "feet"),
  25957. default: true
  25958. },
  25959. ]
  25960. ))
  25961. characterMakers.push(() => makeCharacter(
  25962. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  25963. {
  25964. front: {
  25965. height: math.unit(2.3, "meters"),
  25966. weight: math.unit(300, "lb"),
  25967. name: "Front",
  25968. image: {
  25969. source: "./media/characters/sinja/front-sfw.svg",
  25970. extra: 1393 / 1294,
  25971. bottom: 70 / 1463
  25972. }
  25973. },
  25974. frontNsfw: {
  25975. height: math.unit(2.3, "meters"),
  25976. weight: math.unit(300, "lb"),
  25977. name: "Front (NSFW)",
  25978. image: {
  25979. source: "./media/characters/sinja/front-nsfw.svg",
  25980. extra: 1393 / 1294,
  25981. bottom: 70 / 1463
  25982. }
  25983. },
  25984. back: {
  25985. height: math.unit(2.3, "meters"),
  25986. weight: math.unit(300, "lb"),
  25987. name: "Back",
  25988. image: {
  25989. source: "./media/characters/sinja/back.svg",
  25990. extra: 1393 / 1294,
  25991. bottom: 70 / 1463
  25992. }
  25993. },
  25994. head: {
  25995. height: math.unit(1.771, "feet"),
  25996. name: "Head",
  25997. image: {
  25998. source: "./media/characters/sinja/head.svg"
  25999. }
  26000. },
  26001. slit: {
  26002. height: math.unit(0.8, "feet"),
  26003. name: "Slit",
  26004. image: {
  26005. source: "./media/characters/sinja/slit.svg"
  26006. }
  26007. },
  26008. },
  26009. [
  26010. {
  26011. name: "Normal",
  26012. height: math.unit(2.3, "meters")
  26013. },
  26014. {
  26015. name: "Macro",
  26016. height: math.unit(91, "meters"),
  26017. default: true
  26018. },
  26019. {
  26020. name: "Megamacro",
  26021. height: math.unit(91440, "meters")
  26022. },
  26023. {
  26024. name: "Gigamacro",
  26025. height: math.unit(60960000, "meters")
  26026. },
  26027. {
  26028. name: "Teramacro",
  26029. height: math.unit(9144000000, "meters")
  26030. },
  26031. ]
  26032. ))
  26033. characterMakers.push(() => makeCharacter(
  26034. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26035. {
  26036. front: {
  26037. height: math.unit(1.7, "meters"),
  26038. weight: math.unit(130, "lb"),
  26039. name: "Front",
  26040. image: {
  26041. source: "./media/characters/kyu/front.svg",
  26042. extra: 415 / 395,
  26043. bottom: 5 / 420
  26044. }
  26045. },
  26046. head: {
  26047. height: math.unit(1.75, "feet"),
  26048. name: "Head",
  26049. image: {
  26050. source: "./media/characters/kyu/head.svg"
  26051. }
  26052. },
  26053. foot: {
  26054. height: math.unit(0.81, "feet"),
  26055. name: "Foot",
  26056. image: {
  26057. source: "./media/characters/kyu/foot.svg"
  26058. }
  26059. },
  26060. },
  26061. [
  26062. {
  26063. name: "Normal",
  26064. height: math.unit(1.7, "meters")
  26065. },
  26066. {
  26067. name: "Macro",
  26068. height: math.unit(131, "feet"),
  26069. default: true
  26070. },
  26071. {
  26072. name: "Megamacro",
  26073. height: math.unit(91440, "meters")
  26074. },
  26075. {
  26076. name: "Gigamacro",
  26077. height: math.unit(60960000, "meters")
  26078. },
  26079. {
  26080. name: "Teramacro",
  26081. height: math.unit(9144000000, "meters")
  26082. },
  26083. ]
  26084. ))
  26085. characterMakers.push(() => makeCharacter(
  26086. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26087. {
  26088. front: {
  26089. height: math.unit(7 + 1 / 12, "feet"),
  26090. weight: math.unit(250, "lb"),
  26091. name: "Front",
  26092. image: {
  26093. source: "./media/characters/joey/front.svg",
  26094. extra: 1791 / 1537,
  26095. bottom: 28 / 1816
  26096. }
  26097. },
  26098. },
  26099. [
  26100. {
  26101. name: "Micro",
  26102. height: math.unit(3, "inches")
  26103. },
  26104. {
  26105. name: "Normal",
  26106. height: math.unit(7 + 1 / 12, "feet"),
  26107. default: true
  26108. },
  26109. ]
  26110. ))
  26111. characterMakers.push(() => makeCharacter(
  26112. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26113. {
  26114. front: {
  26115. height: math.unit(165, "cm"),
  26116. weight: math.unit(140, "lb"),
  26117. name: "Front",
  26118. image: {
  26119. source: "./media/characters/sam-evans/front.svg",
  26120. extra: 3417 / 3230,
  26121. bottom: 41.3 / 3417
  26122. }
  26123. },
  26124. frontSixTails: {
  26125. height: math.unit(165, "cm"),
  26126. weight: math.unit(140, "lb"),
  26127. name: "Front-six-tails",
  26128. image: {
  26129. source: "./media/characters/sam-evans/front-six-tails.svg",
  26130. extra: 3417 / 3230,
  26131. bottom: 41.3 / 3417
  26132. }
  26133. },
  26134. back: {
  26135. height: math.unit(165, "cm"),
  26136. weight: math.unit(140, "lb"),
  26137. name: "Back",
  26138. image: {
  26139. source: "./media/characters/sam-evans/back.svg",
  26140. extra: 3227 / 3032,
  26141. bottom: 6.8 / 3234
  26142. }
  26143. },
  26144. face: {
  26145. height: math.unit(0.68, "feet"),
  26146. name: "Face",
  26147. image: {
  26148. source: "./media/characters/sam-evans/face.svg"
  26149. }
  26150. },
  26151. },
  26152. [
  26153. {
  26154. name: "Normal",
  26155. height: math.unit(165, "cm"),
  26156. default: true
  26157. },
  26158. {
  26159. name: "Macro",
  26160. height: math.unit(100, "meters")
  26161. },
  26162. {
  26163. name: "Macro+",
  26164. height: math.unit(800, "meters")
  26165. },
  26166. {
  26167. name: "Macro++",
  26168. height: math.unit(3, "km")
  26169. },
  26170. {
  26171. name: "Macro+++",
  26172. height: math.unit(30, "km")
  26173. },
  26174. ]
  26175. ))
  26176. characterMakers.push(() => makeCharacter(
  26177. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26178. {
  26179. front: {
  26180. height: math.unit(10, "feet"),
  26181. weight: math.unit(750, "lb"),
  26182. name: "Front",
  26183. image: {
  26184. source: "./media/characters/juliet-a/front.svg",
  26185. extra: 1766 / 1720,
  26186. bottom: 43 / 1809
  26187. }
  26188. },
  26189. back: {
  26190. height: math.unit(10, "feet"),
  26191. weight: math.unit(750, "lb"),
  26192. name: "Back",
  26193. image: {
  26194. source: "./media/characters/juliet-a/back.svg",
  26195. extra: 1781 / 1734,
  26196. bottom: 35 / 1810,
  26197. }
  26198. },
  26199. },
  26200. [
  26201. {
  26202. name: "Normal",
  26203. height: math.unit(10, "feet"),
  26204. default: true
  26205. },
  26206. {
  26207. name: "Dragon Form",
  26208. height: math.unit(250, "feet")
  26209. },
  26210. {
  26211. name: "Macro",
  26212. height: math.unit(1000, "feet")
  26213. },
  26214. {
  26215. name: "Megamacro",
  26216. height: math.unit(10000, "feet")
  26217. }
  26218. ]
  26219. ))
  26220. characterMakers.push(() => makeCharacter(
  26221. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26222. {
  26223. regular: {
  26224. height: math.unit(7 + 3 / 12, "feet"),
  26225. weight: math.unit(260, "lb"),
  26226. name: "Regular",
  26227. image: {
  26228. source: "./media/characters/wild/regular.svg",
  26229. extra: 97.45 / 92,
  26230. bottom: 6.8 / 104.3
  26231. }
  26232. },
  26233. biggums: {
  26234. height: math.unit(8 + 6 / 12, "feet"),
  26235. weight: math.unit(425, "lb"),
  26236. name: "Biggums",
  26237. image: {
  26238. source: "./media/characters/wild/biggums.svg",
  26239. extra: 97.45 / 92,
  26240. bottom: 7.5 / 132.34
  26241. }
  26242. },
  26243. mawRegular: {
  26244. height: math.unit(1.24, "feet"),
  26245. name: "Maw (Regular)",
  26246. image: {
  26247. source: "./media/characters/wild/maw.svg"
  26248. }
  26249. },
  26250. mawBiggums: {
  26251. height: math.unit(1.47, "feet"),
  26252. name: "Maw (Biggums)",
  26253. image: {
  26254. source: "./media/characters/wild/maw.svg"
  26255. }
  26256. },
  26257. },
  26258. [
  26259. {
  26260. name: "Normal",
  26261. height: math.unit(7 + 3 / 12, "feet"),
  26262. default: true
  26263. },
  26264. ]
  26265. ))
  26266. characterMakers.push(() => makeCharacter(
  26267. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26268. {
  26269. front: {
  26270. height: math.unit(2.5, "meters"),
  26271. weight: math.unit(200, "kg"),
  26272. name: "Front",
  26273. image: {
  26274. source: "./media/characters/vidar/front.svg",
  26275. extra: 2994 / 2795,
  26276. bottom: 56 / 3061
  26277. }
  26278. },
  26279. back: {
  26280. height: math.unit(2.5, "meters"),
  26281. weight: math.unit(200, "kg"),
  26282. name: "Back",
  26283. image: {
  26284. source: "./media/characters/vidar/back.svg",
  26285. extra: 3131 / 2928,
  26286. bottom: 13.5 / 3141.5
  26287. }
  26288. },
  26289. feral: {
  26290. height: math.unit(2.5, "meters"),
  26291. weight: math.unit(2000, "kg"),
  26292. name: "Feral",
  26293. image: {
  26294. source: "./media/characters/vidar/feral.svg",
  26295. extra: 2790 / 1765,
  26296. bottom: 6 / 2796
  26297. }
  26298. },
  26299. },
  26300. [
  26301. {
  26302. name: "Normal",
  26303. height: math.unit(2.5, "meters"),
  26304. default: true
  26305. },
  26306. {
  26307. name: "Macro",
  26308. height: math.unit(100, "meters")
  26309. },
  26310. ]
  26311. ))
  26312. characterMakers.push(() => makeCharacter(
  26313. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26314. {
  26315. front: {
  26316. height: math.unit(5 + 9 / 12, "feet"),
  26317. weight: math.unit(120, "lb"),
  26318. name: "Front",
  26319. image: {
  26320. source: "./media/characters/ash/front.svg",
  26321. extra: 2189 / 1961,
  26322. bottom: 5.2 / 2194
  26323. }
  26324. },
  26325. },
  26326. [
  26327. {
  26328. name: "Normal",
  26329. height: math.unit(5 + 9 / 12, "feet"),
  26330. default: true
  26331. },
  26332. ]
  26333. ))
  26334. characterMakers.push(() => makeCharacter(
  26335. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26336. {
  26337. front: {
  26338. height: math.unit(9, "feet"),
  26339. weight: math.unit(10000, "lb"),
  26340. name: "Front",
  26341. image: {
  26342. source: "./media/characters/gygabite/front.svg",
  26343. bottom: 31.7 / 537.8,
  26344. extra: 505 / 370
  26345. }
  26346. },
  26347. },
  26348. [
  26349. {
  26350. name: "Normal",
  26351. height: math.unit(9, "feet"),
  26352. default: true
  26353. },
  26354. ]
  26355. ))
  26356. characterMakers.push(() => makeCharacter(
  26357. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26358. {
  26359. front: {
  26360. height: math.unit(12, "feet"),
  26361. weight: math.unit(35000, "lb"),
  26362. name: "Front",
  26363. image: {
  26364. source: "./media/characters/p0tat0/front.svg",
  26365. extra: 1065 / 921,
  26366. bottom: 55.7 / 1121.25
  26367. }
  26368. },
  26369. },
  26370. [
  26371. {
  26372. name: "Normal",
  26373. height: math.unit(12, "feet"),
  26374. default: true
  26375. },
  26376. ]
  26377. ))
  26378. characterMakers.push(() => makeCharacter(
  26379. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26380. {
  26381. side: {
  26382. height: math.unit(6.5, "feet"),
  26383. weight: math.unit(800, "lb"),
  26384. name: "Side",
  26385. image: {
  26386. source: "./media/characters/dusk/side.svg",
  26387. extra: 615 / 373,
  26388. bottom: 53 / 664
  26389. }
  26390. },
  26391. sitting: {
  26392. height: math.unit(7, "feet"),
  26393. weight: math.unit(800, "lb"),
  26394. name: "Sitting",
  26395. image: {
  26396. source: "./media/characters/dusk/sitting.svg",
  26397. extra: 753 / 425,
  26398. bottom: 33 / 774
  26399. }
  26400. },
  26401. head: {
  26402. height: math.unit(6.1, "feet"),
  26403. name: "Head",
  26404. image: {
  26405. source: "./media/characters/dusk/head.svg"
  26406. }
  26407. },
  26408. },
  26409. [
  26410. {
  26411. name: "Normal",
  26412. height: math.unit(7, "feet"),
  26413. default: true
  26414. },
  26415. ]
  26416. ))
  26417. characterMakers.push(() => makeCharacter(
  26418. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26419. {
  26420. front: {
  26421. height: math.unit(15, "feet"),
  26422. weight: math.unit(7000, "lb"),
  26423. name: "Front",
  26424. image: {
  26425. source: "./media/characters/jay-direwolf/front.svg",
  26426. extra: 1810 / 1732,
  26427. bottom: 66 / 1892
  26428. }
  26429. },
  26430. },
  26431. [
  26432. {
  26433. name: "Normal",
  26434. height: math.unit(15, "feet"),
  26435. default: true
  26436. },
  26437. ]
  26438. ))
  26439. characterMakers.push(() => makeCharacter(
  26440. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26441. {
  26442. front: {
  26443. height: math.unit(4 + 9 / 12, "feet"),
  26444. weight: math.unit(130, "lb"),
  26445. name: "Front",
  26446. image: {
  26447. source: "./media/characters/anchovie/front.svg",
  26448. extra: 382 / 350,
  26449. bottom: 25 / 409
  26450. }
  26451. },
  26452. back: {
  26453. height: math.unit(4 + 9 / 12, "feet"),
  26454. weight: math.unit(130, "lb"),
  26455. name: "Back",
  26456. image: {
  26457. source: "./media/characters/anchovie/back.svg",
  26458. extra: 385 / 352,
  26459. bottom: 16.6 / 402
  26460. }
  26461. },
  26462. frontDressed: {
  26463. height: math.unit(4 + 9 / 12, "feet"),
  26464. weight: math.unit(130, "lb"),
  26465. name: "Front (Dressed)",
  26466. image: {
  26467. source: "./media/characters/anchovie/front-dressed.svg",
  26468. extra: 382 / 350,
  26469. bottom: 25 / 409
  26470. }
  26471. },
  26472. backDressed: {
  26473. height: math.unit(4 + 9 / 12, "feet"),
  26474. weight: math.unit(130, "lb"),
  26475. name: "Back (Dressed)",
  26476. image: {
  26477. source: "./media/characters/anchovie/back-dressed.svg",
  26478. extra: 385 / 352,
  26479. bottom: 16.6 / 402
  26480. }
  26481. },
  26482. },
  26483. [
  26484. {
  26485. name: "Micro",
  26486. height: math.unit(6.4, "inches")
  26487. },
  26488. {
  26489. name: "Normal",
  26490. height: math.unit(4 + 9 / 12, "feet"),
  26491. default: true
  26492. },
  26493. ]
  26494. ))
  26495. characterMakers.push(() => makeCharacter(
  26496. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26497. {
  26498. front: {
  26499. height: math.unit(2, "meters"),
  26500. weight: math.unit(180, "lb"),
  26501. name: "Front",
  26502. image: {
  26503. source: "./media/characters/acidrenamon/front.svg",
  26504. extra: 987 / 890,
  26505. bottom: 22.8 / 1009
  26506. }
  26507. },
  26508. back: {
  26509. height: math.unit(2, "meters"),
  26510. weight: math.unit(180, "lb"),
  26511. name: "Back",
  26512. image: {
  26513. source: "./media/characters/acidrenamon/back.svg",
  26514. extra: 983 / 891,
  26515. bottom: 8.4 / 992
  26516. }
  26517. },
  26518. head: {
  26519. height: math.unit(1.92, "feet"),
  26520. name: "Head",
  26521. image: {
  26522. source: "./media/characters/acidrenamon/head.svg"
  26523. }
  26524. },
  26525. rump: {
  26526. height: math.unit(1.72, "feet"),
  26527. name: "Rump",
  26528. image: {
  26529. source: "./media/characters/acidrenamon/rump.svg"
  26530. }
  26531. },
  26532. tail: {
  26533. height: math.unit(4.2, "feet"),
  26534. name: "Tail",
  26535. image: {
  26536. source: "./media/characters/acidrenamon/tail.svg"
  26537. }
  26538. },
  26539. },
  26540. [
  26541. {
  26542. name: "Normal",
  26543. height: math.unit(2, "meters"),
  26544. default: true
  26545. },
  26546. {
  26547. name: "Minimacro",
  26548. height: math.unit(7, "meters")
  26549. },
  26550. {
  26551. name: "Macro",
  26552. height: math.unit(200, "meters")
  26553. },
  26554. {
  26555. name: "Gigamacro",
  26556. height: math.unit(0.2, "earths")
  26557. },
  26558. ]
  26559. ))
  26560. characterMakers.push(() => makeCharacter(
  26561. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26562. {
  26563. front: {
  26564. height: math.unit(6, "feet"),
  26565. weight: math.unit(150, "lb"),
  26566. name: "Front",
  26567. image: {
  26568. source: "./media/characters/kenzie-lee/front.svg",
  26569. extra: 1525 / 1465,
  26570. bottom: 45 / 1570
  26571. }
  26572. },
  26573. side: {
  26574. height: math.unit(6, "feet"),
  26575. weight: math.unit(150, "lb"),
  26576. name: "Side",
  26577. image: {
  26578. source: "./media/characters/kenzie-lee/side.svg",
  26579. extra: 5505 / 5383,
  26580. bottom: 60 / 5573
  26581. }
  26582. },
  26583. },
  26584. [
  26585. {
  26586. name: "Normal",
  26587. height: math.unit(152, "feet"),
  26588. default: true
  26589. },
  26590. {
  26591. name: "Megamacro",
  26592. height: math.unit(7, "miles")
  26593. },
  26594. {
  26595. name: "Gigamacro",
  26596. height: math.unit(8000, "miles")
  26597. },
  26598. ]
  26599. ))
  26600. characterMakers.push(() => makeCharacter(
  26601. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26602. {
  26603. side: {
  26604. height: math.unit(6, "feet"),
  26605. weight: math.unit(150, "lb"),
  26606. name: "Side",
  26607. image: {
  26608. source: "./media/characters/withers/side.svg",
  26609. extra: 1830 / 1728,
  26610. bottom: 96 / 1927
  26611. }
  26612. },
  26613. front: {
  26614. height: math.unit(6, "feet"),
  26615. weight: math.unit(150, "lb"),
  26616. name: "Front",
  26617. image: {
  26618. source: "./media/characters/withers/front.svg",
  26619. extra: 1514 / 1438,
  26620. bottom: 118 / 1632
  26621. }
  26622. },
  26623. },
  26624. [
  26625. {
  26626. name: "Macro",
  26627. height: math.unit(168, "feet"),
  26628. default: true
  26629. },
  26630. {
  26631. name: "Megamacro",
  26632. height: math.unit(15, "miles")
  26633. }
  26634. ]
  26635. ))
  26636. characterMakers.push(() => makeCharacter(
  26637. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26638. {
  26639. front: {
  26640. height: math.unit(6 + 7 / 12, "feet"),
  26641. weight: math.unit(250, "lb"),
  26642. name: "Front",
  26643. image: {
  26644. source: "./media/characters/nemoskii/front.svg",
  26645. extra: 2270 / 1734,
  26646. bottom: 86 / 2354
  26647. }
  26648. },
  26649. back: {
  26650. height: math.unit(6 + 7 / 12, "feet"),
  26651. weight: math.unit(250, "lb"),
  26652. name: "Back",
  26653. image: {
  26654. source: "./media/characters/nemoskii/back.svg",
  26655. extra: 1845 / 1788,
  26656. bottom: 10.5 / 1852
  26657. }
  26658. },
  26659. head: {
  26660. height: math.unit(1.31, "feet"),
  26661. name: "Head",
  26662. image: {
  26663. source: "./media/characters/nemoskii/head.svg"
  26664. }
  26665. },
  26666. },
  26667. [
  26668. {
  26669. name: "Normal",
  26670. height: math.unit(6 + 7 / 12, "feet"),
  26671. default: true
  26672. },
  26673. ]
  26674. ))
  26675. characterMakers.push(() => makeCharacter(
  26676. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26677. {
  26678. front: {
  26679. height: math.unit(1, "mile"),
  26680. weight: math.unit(265261.9, "lb"),
  26681. name: "Front",
  26682. image: {
  26683. source: "./media/characters/shui/front.svg",
  26684. extra: 1633 / 1564,
  26685. bottom: 91.5 / 1726
  26686. }
  26687. },
  26688. },
  26689. [
  26690. {
  26691. name: "Macro",
  26692. height: math.unit(1, "mile"),
  26693. default: true
  26694. },
  26695. ]
  26696. ))
  26697. characterMakers.push(() => makeCharacter(
  26698. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26699. {
  26700. front: {
  26701. height: math.unit(12 + 6 / 12, "feet"),
  26702. weight: math.unit(1342, "lb"),
  26703. name: "Front",
  26704. image: {
  26705. source: "./media/characters/arokh-takakura/front.svg",
  26706. extra: 1089 / 1043,
  26707. bottom: 77.4 / 1176.7
  26708. }
  26709. },
  26710. back: {
  26711. height: math.unit(12 + 6 / 12, "feet"),
  26712. weight: math.unit(1342, "lb"),
  26713. name: "Back",
  26714. image: {
  26715. source: "./media/characters/arokh-takakura/back.svg",
  26716. extra: 1046 / 1019,
  26717. bottom: 102 / 1150
  26718. }
  26719. },
  26720. },
  26721. [
  26722. {
  26723. name: "Big",
  26724. height: math.unit(12 + 6 / 12, "feet"),
  26725. default: true
  26726. },
  26727. ]
  26728. ))
  26729. characterMakers.push(() => makeCharacter(
  26730. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  26731. {
  26732. front: {
  26733. height: math.unit(5 + 6 / 12, "feet"),
  26734. weight: math.unit(150, "lb"),
  26735. name: "Front",
  26736. image: {
  26737. source: "./media/characters/theo/front.svg",
  26738. extra: 1184 / 1131,
  26739. bottom: 7.4 / 1191
  26740. }
  26741. },
  26742. },
  26743. [
  26744. {
  26745. name: "Micro",
  26746. height: math.unit(5, "inches")
  26747. },
  26748. {
  26749. name: "Normal",
  26750. height: math.unit(5 + 6 / 12, "feet"),
  26751. default: true
  26752. },
  26753. ]
  26754. ))
  26755. characterMakers.push(() => makeCharacter(
  26756. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  26757. {
  26758. front: {
  26759. height: math.unit(5 + 9 / 12, "feet"),
  26760. weight: math.unit(130, "lb"),
  26761. name: "Front",
  26762. image: {
  26763. source: "./media/characters/cecelia-swift/front.svg",
  26764. extra: 502 / 484,
  26765. bottom: 23 / 523
  26766. }
  26767. },
  26768. back: {
  26769. height: math.unit(5 + 9 / 12, "feet"),
  26770. weight: math.unit(130, "lb"),
  26771. name: "Back",
  26772. image: {
  26773. source: "./media/characters/cecelia-swift/back.svg",
  26774. extra: 499 / 485,
  26775. bottom: 12 / 511
  26776. }
  26777. },
  26778. head: {
  26779. height: math.unit(0.90, "feet"),
  26780. name: "Head",
  26781. image: {
  26782. source: "./media/characters/cecelia-swift/head.svg"
  26783. }
  26784. },
  26785. rump: {
  26786. height: math.unit(1.75, "feet"),
  26787. name: "Rump",
  26788. image: {
  26789. source: "./media/characters/cecelia-swift/rump.svg"
  26790. }
  26791. },
  26792. },
  26793. [
  26794. {
  26795. name: "Normal",
  26796. height: math.unit(5 + 9 / 12, "feet"),
  26797. default: true
  26798. },
  26799. {
  26800. name: "Big",
  26801. height: math.unit(50, "feet")
  26802. },
  26803. {
  26804. name: "Macro",
  26805. height: math.unit(100, "feet")
  26806. },
  26807. {
  26808. name: "Macro+",
  26809. height: math.unit(500, "feet")
  26810. },
  26811. {
  26812. name: "Macro++",
  26813. height: math.unit(1000, "feet")
  26814. },
  26815. ]
  26816. ))
  26817. characterMakers.push(() => makeCharacter(
  26818. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  26819. {
  26820. front: {
  26821. height: math.unit(6, "feet"),
  26822. weight: math.unit(150, "lb"),
  26823. name: "Front",
  26824. image: {
  26825. source: "./media/characters/kaunan/front.svg",
  26826. extra: 2890 / 2523,
  26827. bottom: 49 / 2939
  26828. }
  26829. },
  26830. },
  26831. [
  26832. {
  26833. name: "Macro",
  26834. height: math.unit(150, "feet"),
  26835. default: true
  26836. },
  26837. ]
  26838. ))
  26839. characterMakers.push(() => makeCharacter(
  26840. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  26841. {
  26842. front: {
  26843. height: math.unit(175, "cm"),
  26844. weight: math.unit(60, "kg"),
  26845. name: "Front",
  26846. image: {
  26847. source: "./media/characters/fei/front.svg",
  26848. extra: 2581 / 2400,
  26849. bottom: 82.2 / 2663
  26850. }
  26851. },
  26852. },
  26853. [
  26854. {
  26855. name: "Mortal",
  26856. height: math.unit(175, "cm")
  26857. },
  26858. {
  26859. name: "Normal",
  26860. height: math.unit(3500, "m"),
  26861. default: true
  26862. },
  26863. {
  26864. name: "Stroll",
  26865. height: math.unit(17.5, "km")
  26866. },
  26867. {
  26868. name: "Showoff",
  26869. height: math.unit(175, "km")
  26870. },
  26871. ]
  26872. ))
  26873. characterMakers.push(() => makeCharacter(
  26874. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  26875. {
  26876. front: {
  26877. height: math.unit(7, "feet"),
  26878. weight: math.unit(1000, "kg"),
  26879. name: "Front",
  26880. image: {
  26881. source: "./media/characters/edrax/front.svg",
  26882. extra: 2838 / 2550,
  26883. bottom: 130 / 2968
  26884. }
  26885. },
  26886. },
  26887. [
  26888. {
  26889. name: "Small",
  26890. height: math.unit(7, "feet")
  26891. },
  26892. {
  26893. name: "Normal",
  26894. height: math.unit(1500, "meters")
  26895. },
  26896. {
  26897. name: "Mega",
  26898. height: math.unit(12000000, "km"),
  26899. default: true
  26900. },
  26901. {
  26902. name: "Megamacro",
  26903. height: math.unit(10600000, "lightyears")
  26904. },
  26905. {
  26906. name: "Hypermacro",
  26907. height: math.unit(256, "yottameters")
  26908. },
  26909. ]
  26910. ))
  26911. characterMakers.push(() => makeCharacter(
  26912. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  26913. {
  26914. front: {
  26915. height: math.unit(10, "feet"),
  26916. weight: math.unit(750, "lb"),
  26917. name: "Front",
  26918. image: {
  26919. source: "./media/characters/clove/front.svg",
  26920. extra: 2031 / 1860,
  26921. bottom: 47.8 / 2080
  26922. }
  26923. },
  26924. back: {
  26925. height: math.unit(10, "feet"),
  26926. weight: math.unit(750, "lb"),
  26927. name: "Back",
  26928. image: {
  26929. source: "./media/characters/clove/back.svg",
  26930. extra: 2025 / 1859,
  26931. bottom: 46 / 2071
  26932. }
  26933. },
  26934. },
  26935. [
  26936. {
  26937. name: "Normal",
  26938. height: math.unit(10, "feet")
  26939. },
  26940. ]
  26941. ))
  26942. characterMakers.push(() => makeCharacter(
  26943. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  26944. {
  26945. front: {
  26946. height: math.unit(4, "feet"),
  26947. weight: math.unit(50, "lb"),
  26948. name: "Front",
  26949. image: {
  26950. source: "./media/characters/alex-rabbit/front.svg",
  26951. extra: 507 / 458,
  26952. bottom: 18.5 / 527
  26953. }
  26954. },
  26955. back: {
  26956. height: math.unit(4, "feet"),
  26957. weight: math.unit(50, "lb"),
  26958. name: "Back",
  26959. image: {
  26960. source: "./media/characters/alex-rabbit/back.svg",
  26961. extra: 502 / 460,
  26962. bottom: 18.9 / 521
  26963. }
  26964. },
  26965. },
  26966. [
  26967. {
  26968. name: "Normal",
  26969. height: math.unit(4, "feet"),
  26970. default: true
  26971. },
  26972. ]
  26973. ))
  26974. characterMakers.push(() => makeCharacter(
  26975. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  26976. {
  26977. front: {
  26978. height: math.unit(1 + 3 / 12, "feet"),
  26979. weight: math.unit(80, "lb"),
  26980. name: "Front",
  26981. image: {
  26982. source: "./media/characters/zander-rose/front.svg",
  26983. extra: 916 / 797,
  26984. bottom: 17 / 933
  26985. }
  26986. },
  26987. back: {
  26988. height: math.unit(1 + 3 / 12, "feet"),
  26989. weight: math.unit(80, "lb"),
  26990. name: "Back",
  26991. image: {
  26992. source: "./media/characters/zander-rose/back.svg",
  26993. extra: 903 / 779,
  26994. bottom: 31 / 934
  26995. }
  26996. },
  26997. },
  26998. [
  26999. {
  27000. name: "Normal",
  27001. height: math.unit(1 + 3 / 12, "feet"),
  27002. default: true
  27003. },
  27004. ]
  27005. ))
  27006. characterMakers.push(() => makeCharacter(
  27007. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27008. {
  27009. anthro: {
  27010. height: math.unit(6, "feet"),
  27011. weight: math.unit(150, "lb"),
  27012. name: "Anthro",
  27013. image: {
  27014. source: "./media/characters/razz/anthro.svg",
  27015. extra: 1437 / 1343,
  27016. bottom: 48 / 1485
  27017. }
  27018. },
  27019. feral: {
  27020. height: math.unit(6, "feet"),
  27021. weight: math.unit(150, "lb"),
  27022. name: "Feral",
  27023. image: {
  27024. source: "./media/characters/razz/feral.svg",
  27025. extra: 2569 / 1385,
  27026. bottom: 95 / 2664
  27027. }
  27028. },
  27029. },
  27030. [
  27031. {
  27032. name: "Normal",
  27033. height: math.unit(6, "feet"),
  27034. default: true
  27035. },
  27036. ]
  27037. ))
  27038. characterMakers.push(() => makeCharacter(
  27039. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27040. {
  27041. front: {
  27042. height: math.unit(9 + 4 / 12, "feet"),
  27043. weight: math.unit(500, "lb"),
  27044. name: "Front",
  27045. image: {
  27046. source: "./media/characters/morrigan/front.svg",
  27047. extra: 2707 / 2579,
  27048. bottom: 156 / 2863
  27049. }
  27050. },
  27051. },
  27052. [
  27053. {
  27054. name: "Normal",
  27055. height: math.unit(9 + 4 / 12, "feet"),
  27056. default: true
  27057. },
  27058. ]
  27059. ))
  27060. characterMakers.push(() => makeCharacter(
  27061. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27062. {
  27063. front: {
  27064. height: math.unit(5, "stories"),
  27065. weight: math.unit(4000, "lb"),
  27066. name: "Front",
  27067. image: {
  27068. source: "./media/characters/jenene/front.svg",
  27069. extra: 1780 / 1710,
  27070. bottom: 57 / 1837
  27071. }
  27072. },
  27073. },
  27074. [
  27075. {
  27076. name: "Normal",
  27077. height: math.unit(5, "stories"),
  27078. default: true
  27079. },
  27080. ]
  27081. ))
  27082. characterMakers.push(() => makeCharacter(
  27083. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27084. {
  27085. front: {
  27086. height: math.unit(6, "feet"),
  27087. weight: math.unit(150, "lb"),
  27088. name: "Front",
  27089. image: {
  27090. source: "./media/characters/vix-archaser/front.svg",
  27091. extra: 2767 / 2562,
  27092. bottom: 36 / 2803
  27093. }
  27094. },
  27095. },
  27096. [
  27097. {
  27098. name: "Micro",
  27099. height: math.unit(1, "foot")
  27100. },
  27101. {
  27102. name: "Normal",
  27103. height: math.unit(6 + 5 / 12, "feet")
  27104. },
  27105. {
  27106. name: "Minimacro",
  27107. height: math.unit(500, "feet")
  27108. },
  27109. {
  27110. name: "Macro",
  27111. height: math.unit(4, "miles")
  27112. },
  27113. {
  27114. name: "Megamacro",
  27115. height: math.unit(250, "miles"),
  27116. default: true
  27117. },
  27118. {
  27119. name: "Gigamacro",
  27120. height: math.unit(1, "universe")
  27121. },
  27122. {
  27123. name: "Endgame",
  27124. height: math.unit(100, "multiverses")
  27125. }
  27126. ]
  27127. ))
  27128. characterMakers.push(() => makeCharacter(
  27129. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27130. {
  27131. taurSfw: {
  27132. height: math.unit(10, "meters"),
  27133. weight: math.unit(17500, "kg"),
  27134. name: "Taur",
  27135. image: {
  27136. source: "./media/characters/faey/taur-sfw.svg",
  27137. extra: 1200 / 968,
  27138. bottom: 41 / 1241
  27139. }
  27140. },
  27141. chestmaw: {
  27142. height: math.unit(2.01, "meters"),
  27143. name: "Chestmaw",
  27144. image: {
  27145. source: "./media/characters/faey/chestmaw.svg"
  27146. }
  27147. },
  27148. foot: {
  27149. height: math.unit(2.43, "meters"),
  27150. name: "Foot",
  27151. image: {
  27152. source: "./media/characters/faey/foot.svg"
  27153. }
  27154. },
  27155. jaws: {
  27156. height: math.unit(1.66, "meters"),
  27157. name: "Jaws",
  27158. image: {
  27159. source: "./media/characters/faey/jaws.svg"
  27160. }
  27161. },
  27162. tongues: {
  27163. height: math.unit(2.01, "meters"),
  27164. name: "Tongues",
  27165. image: {
  27166. source: "./media/characters/faey/tongues.svg"
  27167. }
  27168. },
  27169. },
  27170. [
  27171. {
  27172. name: "Small",
  27173. height: math.unit(10, "meters"),
  27174. default: true
  27175. },
  27176. {
  27177. name: "Big",
  27178. height: math.unit(500000, "km")
  27179. },
  27180. ]
  27181. ))
  27182. characterMakers.push(() => makeCharacter(
  27183. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27184. {
  27185. front: {
  27186. height: math.unit(7, "feet"),
  27187. weight: math.unit(275, "lb"),
  27188. name: "Front",
  27189. image: {
  27190. source: "./media/characters/roku/front.svg",
  27191. extra: 903 / 878,
  27192. bottom: 37 / 940
  27193. }
  27194. },
  27195. },
  27196. [
  27197. {
  27198. name: "Normal",
  27199. height: math.unit(7, "feet"),
  27200. default: true
  27201. },
  27202. {
  27203. name: "Macro",
  27204. height: math.unit(500, "feet")
  27205. },
  27206. {
  27207. name: "Megamacro",
  27208. height: math.unit(200, "miles")
  27209. },
  27210. ]
  27211. ))
  27212. characterMakers.push(() => makeCharacter(
  27213. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27214. {
  27215. front: {
  27216. height: math.unit(6 + 2 / 12, "feet"),
  27217. weight: math.unit(150, "lb"),
  27218. name: "Front",
  27219. image: {
  27220. source: "./media/characters/lira/front.svg",
  27221. extra: 1727 / 1605,
  27222. bottom: 26 / 1753
  27223. }
  27224. },
  27225. back: {
  27226. height: math.unit(6 + 2 / 12, "feet"),
  27227. weight: math.unit(150, "lb"),
  27228. name: "Back",
  27229. image: {
  27230. source: "./media/characters/lira/back.svg",
  27231. extra: 1713 / 159,
  27232. bottom: 20 / 1733
  27233. }
  27234. },
  27235. hand: {
  27236. height: math.unit(0.75, "feet"),
  27237. name: "Hand",
  27238. image: {
  27239. source: "./media/characters/lira/hand.svg"
  27240. }
  27241. },
  27242. maw: {
  27243. height: math.unit(0.65, "feet"),
  27244. name: "Maw",
  27245. image: {
  27246. source: "./media/characters/lira/maw.svg"
  27247. }
  27248. },
  27249. pawDigi: {
  27250. height: math.unit(1.6, "feet"),
  27251. name: "Paw Digi",
  27252. image: {
  27253. source: "./media/characters/lira/paw-digi.svg"
  27254. }
  27255. },
  27256. pawPlanti: {
  27257. height: math.unit(1.4, "feet"),
  27258. name: "Paw Planti",
  27259. image: {
  27260. source: "./media/characters/lira/paw-planti.svg"
  27261. }
  27262. },
  27263. },
  27264. [
  27265. {
  27266. name: "Normal",
  27267. height: math.unit(6 + 2 / 12, "feet"),
  27268. default: true
  27269. },
  27270. {
  27271. name: "Macro",
  27272. height: math.unit(100, "feet")
  27273. },
  27274. {
  27275. name: "Macro²",
  27276. height: math.unit(1600, "feet")
  27277. },
  27278. {
  27279. name: "Planetary",
  27280. height: math.unit(20, "earths")
  27281. },
  27282. ]
  27283. ))
  27284. characterMakers.push(() => makeCharacter(
  27285. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27286. {
  27287. front: {
  27288. height: math.unit(6, "feet"),
  27289. weight: math.unit(150, "lb"),
  27290. name: "Front",
  27291. image: {
  27292. source: "./media/characters/hadjet/front.svg",
  27293. extra: 1480 / 1346,
  27294. bottom: 26 / 1506
  27295. }
  27296. },
  27297. frontNsfw: {
  27298. height: math.unit(6, "feet"),
  27299. weight: math.unit(150, "lb"),
  27300. name: "Front (NSFW)",
  27301. image: {
  27302. source: "./media/characters/hadjet/front-nsfw.svg",
  27303. extra: 1440 / 1358,
  27304. bottom: 52 / 1492
  27305. }
  27306. },
  27307. },
  27308. [
  27309. {
  27310. name: "Macro",
  27311. height: math.unit(10, "stories"),
  27312. default: true
  27313. },
  27314. {
  27315. name: "Megamacro",
  27316. height: math.unit(1.5, "miles")
  27317. },
  27318. {
  27319. name: "Megamacro+",
  27320. height: math.unit(5, "miles")
  27321. },
  27322. ]
  27323. ))
  27324. characterMakers.push(() => makeCharacter(
  27325. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27326. {
  27327. side: {
  27328. height: math.unit(106, "feet"),
  27329. weight: math.unit(500, "tonnes"),
  27330. name: "Side",
  27331. image: {
  27332. source: "./media/characters/kodran/side.svg",
  27333. extra: 553 / 480,
  27334. bottom: 33 / 586
  27335. }
  27336. },
  27337. front: {
  27338. height: math.unit(132, "feet"),
  27339. weight: math.unit(500, "tonnes"),
  27340. name: "Front",
  27341. image: {
  27342. source: "./media/characters/kodran/front.svg",
  27343. extra: 667 / 643,
  27344. bottom: 42 / 709
  27345. }
  27346. },
  27347. flying: {
  27348. height: math.unit(350, "feet"),
  27349. weight: math.unit(500, "tonnes"),
  27350. name: "Flying",
  27351. image: {
  27352. source: "./media/characters/kodran/flying.svg"
  27353. }
  27354. },
  27355. foot: {
  27356. height: math.unit(33, "feet"),
  27357. name: "Foot",
  27358. image: {
  27359. source: "./media/characters/kodran/foot.svg"
  27360. }
  27361. },
  27362. footFront: {
  27363. height: math.unit(19, "feet"),
  27364. name: "Foot (Front)",
  27365. image: {
  27366. source: "./media/characters/kodran/foot-front.svg",
  27367. extra: 261 / 261,
  27368. bottom: 91 / 352
  27369. }
  27370. },
  27371. headFront: {
  27372. height: math.unit(53, "feet"),
  27373. name: "Head (Front)",
  27374. image: {
  27375. source: "./media/characters/kodran/head-front.svg"
  27376. }
  27377. },
  27378. headSide: {
  27379. height: math.unit(65, "feet"),
  27380. name: "Head (Side)",
  27381. image: {
  27382. source: "./media/characters/kodran/head-side.svg"
  27383. }
  27384. },
  27385. throat: {
  27386. height: math.unit(79, "feet"),
  27387. name: "Throat",
  27388. image: {
  27389. source: "./media/characters/kodran/throat.svg"
  27390. }
  27391. },
  27392. },
  27393. [
  27394. {
  27395. name: "Large",
  27396. height: math.unit(106, "feet"),
  27397. default: true
  27398. },
  27399. ]
  27400. ))
  27401. characterMakers.push(() => makeCharacter(
  27402. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27403. {
  27404. side: {
  27405. height: math.unit(11, "feet"),
  27406. weight: math.unit(150, "lb"),
  27407. name: "Side",
  27408. image: {
  27409. source: "./media/characters/pyxaron/side.svg",
  27410. extra: 305 / 195,
  27411. bottom: 17 / 322
  27412. }
  27413. },
  27414. },
  27415. [
  27416. {
  27417. name: "Normal",
  27418. height: math.unit(11, "feet")
  27419. },
  27420. ]
  27421. ))
  27422. characterMakers.push(() => makeCharacter(
  27423. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27424. {
  27425. front: {
  27426. height: math.unit(6, "feet"),
  27427. weight: math.unit(150, "lb"),
  27428. name: "Front",
  27429. image: {
  27430. source: "./media/characters/meep/front.svg",
  27431. extra: 88 / 80,
  27432. bottom: 6 / 94
  27433. }
  27434. },
  27435. },
  27436. [
  27437. {
  27438. name: "Fun Sized",
  27439. height: math.unit(2, "inches"),
  27440. default: true
  27441. },
  27442. {
  27443. name: "Friend Sized",
  27444. height: math.unit(8, "inches")
  27445. },
  27446. ]
  27447. ))
  27448. characterMakers.push(() => makeCharacter(
  27449. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27450. {
  27451. front: {
  27452. height: math.unit(15, "feet"),
  27453. weight: math.unit(2500, "lb"),
  27454. name: "Front",
  27455. image: {
  27456. source: "./media/characters/holly-rabbit/front.svg",
  27457. extra: 1433 / 1233,
  27458. bottom: 125 / 1558
  27459. }
  27460. },
  27461. dick: {
  27462. height: math.unit(4.6, "feet"),
  27463. name: "Dick",
  27464. image: {
  27465. source: "./media/characters/holly-rabbit/dick.svg"
  27466. }
  27467. },
  27468. },
  27469. [
  27470. {
  27471. name: "Normal",
  27472. height: math.unit(15, "feet"),
  27473. default: true
  27474. },
  27475. {
  27476. name: "Macro",
  27477. height: math.unit(250, "feet")
  27478. },
  27479. {
  27480. name: "Macro+",
  27481. height: math.unit(2500, "feet")
  27482. },
  27483. ]
  27484. ))
  27485. characterMakers.push(() => makeCharacter(
  27486. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27487. {
  27488. front: {
  27489. height: math.unit(3.02, "meters"),
  27490. weight: math.unit(500, "kg"),
  27491. name: "Front",
  27492. image: {
  27493. source: "./media/characters/drena/front.svg",
  27494. extra: 282 / 243,
  27495. bottom: 8 / 290
  27496. }
  27497. },
  27498. side: {
  27499. height: math.unit(3.02, "meters"),
  27500. weight: math.unit(500, "kg"),
  27501. name: "Side",
  27502. image: {
  27503. source: "./media/characters/drena/side.svg",
  27504. extra: 280 / 245,
  27505. bottom: 10 / 290
  27506. }
  27507. },
  27508. back: {
  27509. height: math.unit(3.02, "meters"),
  27510. weight: math.unit(500, "kg"),
  27511. name: "Back",
  27512. image: {
  27513. source: "./media/characters/drena/back.svg",
  27514. extra: 278 / 243,
  27515. bottom: 2 / 280
  27516. }
  27517. },
  27518. foot: {
  27519. height: math.unit(0.75, "meters"),
  27520. name: "Foot",
  27521. image: {
  27522. source: "./media/characters/drena/foot.svg"
  27523. }
  27524. },
  27525. maw: {
  27526. height: math.unit(0.82, "meters"),
  27527. name: "Maw",
  27528. image: {
  27529. source: "./media/characters/drena/maw.svg"
  27530. }
  27531. },
  27532. rump: {
  27533. height: math.unit(0.93, "meters"),
  27534. name: "Rump",
  27535. image: {
  27536. source: "./media/characters/drena/rump.svg"
  27537. }
  27538. },
  27539. },
  27540. [
  27541. {
  27542. name: "Normal",
  27543. height: math.unit(3.02, "meters"),
  27544. default: true
  27545. },
  27546. ]
  27547. ))
  27548. characterMakers.push(() => makeCharacter(
  27549. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27550. {
  27551. front: {
  27552. height: math.unit(6 + 4 / 12, "feet"),
  27553. weight: math.unit(250, "lb"),
  27554. name: "Front",
  27555. image: {
  27556. source: "./media/characters/remmyzilla/front.svg",
  27557. extra: 4033 / 3588,
  27558. bottom: 123 / 4156
  27559. }
  27560. },
  27561. back: {
  27562. height: math.unit(6 + 4 / 12, "feet"),
  27563. weight: math.unit(250, "lb"),
  27564. name: "Back",
  27565. image: {
  27566. source: "./media/characters/remmyzilla/back.svg",
  27567. extra: 2687 / 2555,
  27568. bottom: 48 / 2735
  27569. }
  27570. },
  27571. frontFancy: {
  27572. height: math.unit(6 + 4 / 12, "feet"),
  27573. weight: math.unit(250, "lb"),
  27574. name: "Front (Fancy)",
  27575. image: {
  27576. source: "./media/characters/remmyzilla/front-fancy.svg",
  27577. extra: 4119 / 3419,
  27578. bottom: 237 / 4356
  27579. }
  27580. },
  27581. paw: {
  27582. height: math.unit(1.73, "feet"),
  27583. name: "Paw",
  27584. image: {
  27585. source: "./media/characters/remmyzilla/paw.svg"
  27586. }
  27587. },
  27588. maw: {
  27589. height: math.unit(1.73, "feet"),
  27590. name: "Maw",
  27591. image: {
  27592. source: "./media/characters/remmyzilla/maw.svg"
  27593. }
  27594. },
  27595. },
  27596. [
  27597. {
  27598. name: "Normal",
  27599. height: math.unit(6 + 4 / 12, "feet")
  27600. },
  27601. {
  27602. name: "Minimacro",
  27603. height: math.unit(12 + 8 / 12, "feet")
  27604. },
  27605. {
  27606. name: "Normal",
  27607. height: math.unit(640, "feet"),
  27608. default: true
  27609. },
  27610. {
  27611. name: "Megamacro",
  27612. height: math.unit(6400, "feet")
  27613. },
  27614. {
  27615. name: "Gigamacro",
  27616. height: math.unit(64000, "miles")
  27617. },
  27618. ]
  27619. ))
  27620. characterMakers.push(() => makeCharacter(
  27621. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27622. {
  27623. front: {
  27624. height: math.unit(2.5, "meters"),
  27625. weight: math.unit(300, "lb"),
  27626. name: "Front",
  27627. image: {
  27628. source: "./media/characters/lawrence/front.svg",
  27629. extra: 357 / 335,
  27630. bottom: 30 / 387
  27631. }
  27632. },
  27633. back: {
  27634. height: math.unit(2.5, "meters"),
  27635. weight: math.unit(300, "lb"),
  27636. name: "Back",
  27637. image: {
  27638. source: "./media/characters/lawrence/back.svg",
  27639. extra: 357 / 338,
  27640. bottom: 16 / 373
  27641. }
  27642. },
  27643. head: {
  27644. height: math.unit(0.9, "meter"),
  27645. name: "Head",
  27646. image: {
  27647. source: "./media/characters/lawrence/head.svg"
  27648. }
  27649. },
  27650. maw: {
  27651. height: math.unit(0.7, "meter"),
  27652. name: "Maw",
  27653. image: {
  27654. source: "./media/characters/lawrence/maw.svg"
  27655. }
  27656. },
  27657. footBottom: {
  27658. height: math.unit(0.5, "meter"),
  27659. name: "Foot (Bottom)",
  27660. image: {
  27661. source: "./media/characters/lawrence/foot-bottom.svg"
  27662. }
  27663. },
  27664. footTop: {
  27665. height: math.unit(0.5, "meter"),
  27666. name: "Foot (Top)",
  27667. image: {
  27668. source: "./media/characters/lawrence/foot-top.svg"
  27669. }
  27670. },
  27671. },
  27672. [
  27673. {
  27674. name: "Normal",
  27675. height: math.unit(2.5, "meters"),
  27676. default: true
  27677. },
  27678. {
  27679. name: "Macro",
  27680. height: math.unit(95, "meters")
  27681. },
  27682. {
  27683. name: "Megamacro",
  27684. height: math.unit(150, "km")
  27685. },
  27686. ]
  27687. ))
  27688. characterMakers.push(() => makeCharacter(
  27689. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  27690. {
  27691. front: {
  27692. height: math.unit(4.2, "meters"),
  27693. name: "Front",
  27694. image: {
  27695. source: "./media/characters/sydney/front.svg",
  27696. extra: 1323 / 1277,
  27697. bottom: 111 / 1434
  27698. }
  27699. },
  27700. },
  27701. [
  27702. {
  27703. name: "Normal",
  27704. height: math.unit(4.2, "meters")
  27705. },
  27706. ]
  27707. ))
  27708. characterMakers.push(() => makeCharacter(
  27709. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  27710. {
  27711. back: {
  27712. height: math.unit(201, "feet"),
  27713. name: "Back",
  27714. image: {
  27715. source: "./media/characters/jessica/back.svg",
  27716. extra: 273 / 259,
  27717. bottom: 7 / 280
  27718. }
  27719. },
  27720. },
  27721. [
  27722. {
  27723. name: "Normal",
  27724. height: math.unit(201, "feet"),
  27725. default: true
  27726. },
  27727. {
  27728. name: "Megamacro",
  27729. height: math.unit(8, "miles")
  27730. },
  27731. ]
  27732. ))
  27733. characterMakers.push(() => makeCharacter(
  27734. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  27735. {
  27736. side: {
  27737. height: math.unit(320, "cm"),
  27738. name: "Side",
  27739. image: {
  27740. source: "./media/characters/victoria/side.svg",
  27741. extra: 778 / 346,
  27742. bottom: 56 / 834
  27743. }
  27744. },
  27745. maw: {
  27746. height: math.unit(5.9, "feet"),
  27747. name: "Maw",
  27748. image: {
  27749. source: "./media/characters/victoria/maw.svg"
  27750. }
  27751. },
  27752. },
  27753. [
  27754. {
  27755. name: "Normal",
  27756. height: math.unit(320, "cm"),
  27757. default: true
  27758. },
  27759. ]
  27760. ))
  27761. characterMakers.push(() => makeCharacter(
  27762. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  27763. {
  27764. front: {
  27765. height: math.unit(5 + 6 / 12, "feet"),
  27766. name: "Front",
  27767. image: {
  27768. source: "./media/characters/cat/front.svg",
  27769. extra: 1374 / 1257,
  27770. bottom: 59 / 1433
  27771. }
  27772. },
  27773. back: {
  27774. height: math.unit(5 + 6 / 12, "feet"),
  27775. name: "Back",
  27776. image: {
  27777. source: "./media/characters/cat/back.svg",
  27778. extra: 1337 / 1226,
  27779. bottom: 34 / 1371
  27780. }
  27781. },
  27782. taur: {
  27783. height: math.unit(7, "feet"),
  27784. name: "Taur",
  27785. image: {
  27786. source: "./media/characters/cat/taur.svg",
  27787. extra: 1345 / 1231,
  27788. bottom: 66 / 1411
  27789. }
  27790. },
  27791. lucario: {
  27792. height: math.unit(4, "feet"),
  27793. name: "Lucario",
  27794. image: {
  27795. source: "./media/characters/cat/lucario.svg",
  27796. extra: 1470 / 1318,
  27797. bottom: 65 / 1535
  27798. }
  27799. },
  27800. megaLucario: {
  27801. height: math.unit(4, "feet"),
  27802. name: "Mega Lucario",
  27803. image: {
  27804. source: "./media/characters/cat/mega-lucario.svg",
  27805. extra: 1515 / 1319,
  27806. bottom: 63 / 1578
  27807. }
  27808. },
  27809. nickit: {
  27810. height: math.unit(2, "feet"),
  27811. name: "Nickit",
  27812. image: {
  27813. source: "./media/characters/cat/nickit.svg",
  27814. extra: 1980 / 1585,
  27815. bottom: 102 / 2082
  27816. }
  27817. },
  27818. lopunnyFront: {
  27819. height: math.unit(5, "feet"),
  27820. name: "Lopunny (Front)",
  27821. image: {
  27822. source: "./media/characters/cat/lopunny-front.svg",
  27823. extra: 1782 / 1469,
  27824. bottom: 38 / 1820
  27825. }
  27826. },
  27827. lopunnyBack: {
  27828. height: math.unit(5, "feet"),
  27829. name: "Lopunny (Back)",
  27830. image: {
  27831. source: "./media/characters/cat/lopunny-back.svg",
  27832. extra: 1660 / 1490,
  27833. bottom: 25 / 1685
  27834. }
  27835. },
  27836. },
  27837. [
  27838. {
  27839. name: "Really small",
  27840. height: math.unit(1, "nm")
  27841. },
  27842. {
  27843. name: "Micro",
  27844. height: math.unit(5, "inches")
  27845. },
  27846. {
  27847. name: "Normal",
  27848. height: math.unit(5 + 6 / 12, "feet"),
  27849. default: true
  27850. },
  27851. {
  27852. name: "Macro",
  27853. height: math.unit(50, "feet")
  27854. },
  27855. {
  27856. name: "Macro+",
  27857. height: math.unit(150, "feet")
  27858. },
  27859. {
  27860. name: "Megamacro",
  27861. height: math.unit(100, "miles")
  27862. },
  27863. ]
  27864. ))
  27865. characterMakers.push(() => makeCharacter(
  27866. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  27867. {
  27868. front: {
  27869. height: math.unit(63.4, "meters"),
  27870. weight: math.unit(3.28349e+6, "kilograms"),
  27871. name: "Front",
  27872. image: {
  27873. source: "./media/characters/kirina-violet/front.svg",
  27874. extra: 2812/2725,
  27875. bottom: 0/2812
  27876. }
  27877. },
  27878. back: {
  27879. height: math.unit(63.4, "meters"),
  27880. weight: math.unit(3.28349e+6, "kilograms"),
  27881. name: "Back",
  27882. image: {
  27883. source: "./media/characters/kirina-violet/back.svg",
  27884. extra: 2812/2725,
  27885. bottom: 0/2812
  27886. }
  27887. },
  27888. mouth: {
  27889. height: math.unit(4.35, "meters"),
  27890. name: "Mouth",
  27891. image: {
  27892. source: "./media/characters/kirina-violet/mouth.svg"
  27893. }
  27894. },
  27895. paw: {
  27896. height: math.unit(5.6, "meters"),
  27897. name: "Paw",
  27898. image: {
  27899. source: "./media/characters/kirina-violet/paw.svg"
  27900. }
  27901. },
  27902. tail: {
  27903. height: math.unit(18, "meters"),
  27904. name: "Tail",
  27905. image: {
  27906. source: "./media/characters/kirina-violet/tail.svg"
  27907. }
  27908. },
  27909. },
  27910. [
  27911. {
  27912. name: "Macro",
  27913. height: math.unit(63.4, "meters"),
  27914. default: true
  27915. },
  27916. ]
  27917. ))
  27918. characterMakers.push(() => makeCharacter(
  27919. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  27920. {
  27921. front: {
  27922. height: math.unit(60, "feet"),
  27923. name: "Front",
  27924. image: {
  27925. source: "./media/characters/cat-gigachu/front.svg",
  27926. extra: 1024/780,
  27927. bottom: 23/1047
  27928. }
  27929. },
  27930. back: {
  27931. height: math.unit(60, "feet"),
  27932. name: "Back",
  27933. image: {
  27934. source: "./media/characters/cat-gigachu/back.svg",
  27935. extra: 1024/780,
  27936. bottom: 23/1047
  27937. }
  27938. },
  27939. },
  27940. [
  27941. {
  27942. name: "Dynamax",
  27943. height: math.unit(60, "feet"),
  27944. default: true
  27945. },
  27946. ]
  27947. ))
  27948. characterMakers.push(() => makeCharacter(
  27949. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  27950. {
  27951. front: {
  27952. height: math.unit(6, "feet"),
  27953. weight: math.unit(150, "lb"),
  27954. name: "Front",
  27955. image: {
  27956. source: "./media/characters/sfaiyan/front.svg",
  27957. extra: 999/978,
  27958. bottom: 5/1004
  27959. }
  27960. },
  27961. },
  27962. [
  27963. {
  27964. name: "Normal",
  27965. height: math.unit(1.82, "meters")
  27966. },
  27967. {
  27968. name: "Giant",
  27969. height: math.unit(2.27, "km"),
  27970. default: true
  27971. },
  27972. ]
  27973. ))
  27974. characterMakers.push(() => makeCharacter(
  27975. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  27976. {
  27977. front: {
  27978. height: math.unit(179, "cm"),
  27979. weight: math.unit(100, "kg"),
  27980. name: "Front",
  27981. image: {
  27982. source: "./media/characters/raunehkeli/front.svg",
  27983. extra: 1934/1926,
  27984. bottom: 0/1934
  27985. }
  27986. },
  27987. },
  27988. [
  27989. {
  27990. name: "Normal",
  27991. height: math.unit(179, "cm")
  27992. },
  27993. {
  27994. name: "Maximum",
  27995. height: math.unit(575, "meters"),
  27996. default: true
  27997. },
  27998. ]
  27999. ))
  28000. characterMakers.push(() => makeCharacter(
  28001. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28002. {
  28003. front: {
  28004. height: math.unit(6, "feet"),
  28005. weight: math.unit(150, "lb"),
  28006. name: "Front",
  28007. image: {
  28008. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28009. extra: 2625/2518,
  28010. bottom: 60/2685
  28011. }
  28012. },
  28013. },
  28014. [
  28015. {
  28016. name: "Normal",
  28017. height: math.unit(6 + 2/12, "feet"),
  28018. default: true
  28019. },
  28020. {
  28021. name: "Macro",
  28022. height: math.unit(1180, "feet")
  28023. },
  28024. ]
  28025. ))
  28026. characterMakers.push(() => makeCharacter(
  28027. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28028. {
  28029. front: {
  28030. height: math.unit(5 + 6/12, "feet"),
  28031. weight: math.unit(108, "lb"),
  28032. name: "Front",
  28033. image: {
  28034. source: "./media/characters/lilith-zott/front.svg",
  28035. extra: 2510/2238,
  28036. bottom: 100/2610
  28037. }
  28038. },
  28039. frontDressed: {
  28040. height: math.unit(5 + 6/12, "feet"),
  28041. weight: math.unit(108, "lb"),
  28042. name: "Front (Dressed)",
  28043. image: {
  28044. source: "./media/characters/lilith-zott/front-dressed.svg",
  28045. extra: 2510/2238,
  28046. bottom: 100/2610
  28047. }
  28048. },
  28049. },
  28050. [
  28051. {
  28052. name: "Normal",
  28053. height: math.unit(5 + 6/12, "feet")
  28054. },
  28055. {
  28056. name: "Macro",
  28057. height: math.unit(200, "feet"),
  28058. default: true
  28059. },
  28060. {
  28061. name: "Macro+",
  28062. height: math.unit(1030, "feet")
  28063. },
  28064. ]
  28065. ))
  28066. characterMakers.push(() => makeCharacter(
  28067. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28068. {
  28069. front: {
  28070. height: math.unit(6, "feet"),
  28071. weight: math.unit(150, "lb"),
  28072. name: "Front",
  28073. image: {
  28074. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28075. extra: 2567/2435,
  28076. bottom: 39/2606
  28077. }
  28078. },
  28079. frontSuper: {
  28080. height: math.unit(6, "feet"),
  28081. name: "Front (Super)",
  28082. image: {
  28083. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28084. extra: 2567/2435,
  28085. bottom: 39/2606
  28086. }
  28087. },
  28088. },
  28089. [
  28090. {
  28091. name: "Normal",
  28092. height: math.unit(5 + 10/12, "feet")
  28093. },
  28094. {
  28095. name: "Macro",
  28096. height: math.unit(220, "feet"),
  28097. default: true
  28098. },
  28099. {
  28100. name: "Macro+",
  28101. height: math.unit(1100, "feet")
  28102. },
  28103. ]
  28104. ))
  28105. characterMakers.push(() => makeCharacter(
  28106. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28107. {
  28108. front: {
  28109. height: math.unit(100, "miles"),
  28110. name: "Front",
  28111. image: {
  28112. source: "./media/characters/sona/front.svg",
  28113. extra: 2433/2201,
  28114. bottom: 53/2486
  28115. }
  28116. },
  28117. foot: {
  28118. height: math.unit(16.1, "miles"),
  28119. name: "Foot",
  28120. image: {
  28121. source: "./media/characters/sona/foot.svg"
  28122. }
  28123. },
  28124. },
  28125. [
  28126. {
  28127. name: "Macro",
  28128. height: math.unit(100, "miles"),
  28129. default: true
  28130. },
  28131. ]
  28132. ))
  28133. characterMakers.push(() => makeCharacter(
  28134. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28135. {
  28136. front: {
  28137. height: math.unit(6, "feet"),
  28138. weight: math.unit(150, "lb"),
  28139. name: "Front",
  28140. image: {
  28141. source: "./media/characters/bailey/front.svg",
  28142. extra: 1778/1724,
  28143. bottom: 30/1808
  28144. }
  28145. },
  28146. },
  28147. [
  28148. {
  28149. name: "Micro",
  28150. height: math.unit(4, "inches")
  28151. },
  28152. {
  28153. name: "Normal",
  28154. height: math.unit(5 + 5/12, "feet"),
  28155. default: true
  28156. },
  28157. {
  28158. name: "Macro",
  28159. height: math.unit(250, "feet")
  28160. },
  28161. {
  28162. name: "Megamacro",
  28163. height: math.unit(100, "miles")
  28164. },
  28165. ]
  28166. ))
  28167. characterMakers.push(() => makeCharacter(
  28168. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28169. {
  28170. front: {
  28171. height: math.unit(5 + 2/12, "feet"),
  28172. weight: math.unit(120, "lb"),
  28173. name: "Front",
  28174. image: {
  28175. source: "./media/characters/snaps/front.svg",
  28176. extra: 2370/2177,
  28177. bottom: 48/2418
  28178. }
  28179. },
  28180. back: {
  28181. height: math.unit(5 + 2/12, "feet"),
  28182. weight: math.unit(120, "lb"),
  28183. name: "Back",
  28184. image: {
  28185. source: "./media/characters/snaps/back.svg",
  28186. extra: 2408/2258,
  28187. bottom: 15/2423
  28188. }
  28189. },
  28190. },
  28191. [
  28192. {
  28193. name: "Micro",
  28194. height: math.unit(9, "inches")
  28195. },
  28196. {
  28197. name: "Normal",
  28198. height: math.unit(5 + 2/12, "feet"),
  28199. default: true
  28200. },
  28201. {
  28202. name: "Mini Macro",
  28203. height: math.unit(10, "feet")
  28204. },
  28205. ]
  28206. ))
  28207. characterMakers.push(() => makeCharacter(
  28208. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28209. {
  28210. front: {
  28211. height: math.unit(1.8, "meters"),
  28212. weight: math.unit(85, "kg"),
  28213. name: "Front",
  28214. image: {
  28215. source: "./media/characters/azteck/front.svg",
  28216. extra: 2815/2625,
  28217. bottom: 89/2904
  28218. }
  28219. },
  28220. back: {
  28221. height: math.unit(1.8, "meters"),
  28222. weight: math.unit(85, "kg"),
  28223. name: "Back",
  28224. image: {
  28225. source: "./media/characters/azteck/back.svg",
  28226. extra: 2856/2648,
  28227. bottom: 85/2941
  28228. }
  28229. },
  28230. frontDressed: {
  28231. height: math.unit(1.8, "meters"),
  28232. weight: math.unit(85, "kg"),
  28233. name: "Front (Dressed)",
  28234. image: {
  28235. source: "./media/characters/azteck/front-dressed.svg",
  28236. extra: 2147/2003,
  28237. bottom: 68/2215
  28238. }
  28239. },
  28240. head: {
  28241. height: math.unit(0.47, "meters"),
  28242. weight: math.unit(85, "kg"),
  28243. name: "Head",
  28244. image: {
  28245. source: "./media/characters/azteck/head.svg"
  28246. }
  28247. },
  28248. },
  28249. [
  28250. {
  28251. name: "Bite sized",
  28252. height: math.unit(16, "cm")
  28253. },
  28254. {
  28255. name: "Normal",
  28256. height: math.unit(1.8, "meters"),
  28257. default: true
  28258. },
  28259. ]
  28260. ))
  28261. characterMakers.push(() => makeCharacter(
  28262. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28263. {
  28264. front: {
  28265. height: math.unit(6, "feet"),
  28266. weight: math.unit(150, "lb"),
  28267. name: "Front",
  28268. image: {
  28269. source: "./media/characters/pidge/front.svg",
  28270. extra: 620/588,
  28271. bottom: 9/629
  28272. }
  28273. },
  28274. back: {
  28275. height: math.unit(6, "feet"),
  28276. weight: math.unit(150, "lb"),
  28277. name: "Back",
  28278. image: {
  28279. source: "./media/characters/pidge/back.svg",
  28280. extra: 620/588,
  28281. bottom: 9/629
  28282. }
  28283. },
  28284. },
  28285. [
  28286. {
  28287. name: "Macro",
  28288. height: math.unit(1, "mile"),
  28289. default: true
  28290. },
  28291. ]
  28292. ))
  28293. characterMakers.push(() => makeCharacter(
  28294. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28295. {
  28296. front: {
  28297. height: math.unit(6, "feet"),
  28298. weight: math.unit(150, "lb"),
  28299. name: "Front",
  28300. image: {
  28301. source: "./media/characters/en/front.svg",
  28302. extra: 1697/1563,
  28303. bottom: 103/1800
  28304. }
  28305. },
  28306. back: {
  28307. height: math.unit(6, "feet"),
  28308. weight: math.unit(150, "lb"),
  28309. name: "Back",
  28310. image: {
  28311. source: "./media/characters/en/back.svg",
  28312. extra: 1700/1570,
  28313. bottom: 51/1751
  28314. }
  28315. },
  28316. frontDressed: {
  28317. height: math.unit(6, "feet"),
  28318. weight: math.unit(150, "lb"),
  28319. name: "Front (Dressed)",
  28320. image: {
  28321. source: "./media/characters/en/front-dressed.svg",
  28322. extra: 1697/1563,
  28323. bottom: 103/1800
  28324. }
  28325. },
  28326. backDressed: {
  28327. height: math.unit(6, "feet"),
  28328. weight: math.unit(150, "lb"),
  28329. name: "Back (Dressed)",
  28330. image: {
  28331. source: "./media/characters/en/back-dressed.svg",
  28332. extra: 1700/1570,
  28333. bottom: 51/1751
  28334. }
  28335. },
  28336. },
  28337. [
  28338. {
  28339. name: "Macro",
  28340. height: math.unit(210, "feet"),
  28341. default: true
  28342. },
  28343. ]
  28344. ))
  28345. characterMakers.push(() => makeCharacter(
  28346. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28347. {
  28348. front: {
  28349. height: math.unit(6, "feet"),
  28350. weight: math.unit(150, "lb"),
  28351. name: "Front",
  28352. image: {
  28353. source: "./media/characters/haze-orris/front.svg",
  28354. extra: 3975/3525,
  28355. bottom: 137/4112
  28356. }
  28357. },
  28358. },
  28359. [
  28360. {
  28361. name: "Micro",
  28362. height: math.unit(150, "mm"),
  28363. default: true
  28364. },
  28365. ]
  28366. ))
  28367. characterMakers.push(() => makeCharacter(
  28368. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28369. {
  28370. front: {
  28371. height: math.unit(6, "feet"),
  28372. weight: math.unit(150, "lb"),
  28373. name: "Front",
  28374. image: {
  28375. source: "./media/characters/casselene-yaro/front.svg",
  28376. extra: 4721/4541,
  28377. bottom: 82/4803
  28378. }
  28379. },
  28380. back: {
  28381. height: math.unit(6, "feet"),
  28382. weight: math.unit(150, "lb"),
  28383. name: "Back",
  28384. image: {
  28385. source: "./media/characters/casselene-yaro/back.svg",
  28386. extra: 4569/4377,
  28387. bottom: 69/4638
  28388. }
  28389. },
  28390. frontDressed: {
  28391. height: math.unit(6, "feet"),
  28392. weight: math.unit(150, "lb"),
  28393. name: "Front-dressed",
  28394. image: {
  28395. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28396. extra: 4721/4541,
  28397. bottom: 82/4803
  28398. }
  28399. },
  28400. },
  28401. [
  28402. {
  28403. name: "Macro",
  28404. height: math.unit(190, "feet")
  28405. },
  28406. ]
  28407. ))
  28408. characterMakers.push(() => makeCharacter(
  28409. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28410. {
  28411. front: {
  28412. height: math.unit(6, "feet"),
  28413. weight: math.unit(150, "lb"),
  28414. name: "Front",
  28415. image: {
  28416. source: "./media/characters/myra-rue-delore/front.svg",
  28417. extra: 1340/1308,
  28418. bottom: 67/1407
  28419. }
  28420. },
  28421. back: {
  28422. height: math.unit(6, "feet"),
  28423. weight: math.unit(150, "lb"),
  28424. name: "Back",
  28425. image: {
  28426. source: "./media/characters/myra-rue-delore/back.svg",
  28427. extra: 1341/1310,
  28428. bottom: 40/1381
  28429. }
  28430. },
  28431. frontDressed: {
  28432. height: math.unit(6, "feet"),
  28433. weight: math.unit(150, "lb"),
  28434. name: "Front (Dressed)",
  28435. image: {
  28436. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28437. extra: 1340/1308,
  28438. bottom: 67/1407
  28439. }
  28440. },
  28441. },
  28442. [
  28443. {
  28444. name: "Macro",
  28445. height: math.unit(150, "feet")
  28446. },
  28447. ]
  28448. ))
  28449. characterMakers.push(() => makeCharacter(
  28450. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28451. {
  28452. front: {
  28453. height: math.unit(10, "feet"),
  28454. weight: math.unit(15015, "lb"),
  28455. name: "Front",
  28456. image: {
  28457. source: "./media/characters/fem!plat/front.svg",
  28458. extra: 2799/2604,
  28459. bottom: 149/2948
  28460. }
  28461. },
  28462. },
  28463. [
  28464. {
  28465. name: "Normal",
  28466. height: math.unit(10, "feet"),
  28467. default: true
  28468. },
  28469. {
  28470. name: "Macro",
  28471. height: math.unit(100, "feet")
  28472. },
  28473. {
  28474. name: "Megamacro",
  28475. height: math.unit(1000, "feet")
  28476. },
  28477. ]
  28478. ))
  28479. characterMakers.push(() => makeCharacter(
  28480. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28481. {
  28482. front: {
  28483. height: math.unit(15 + 5/12, "feet"),
  28484. weight: math.unit(4600, "lb"),
  28485. name: "Front",
  28486. image: {
  28487. source: "./media/characters/neapolitan-ananassa/front.svg",
  28488. extra: 2903/2736,
  28489. bottom: 0/2903
  28490. }
  28491. },
  28492. side: {
  28493. height: math.unit(15 + 5/12, "feet"),
  28494. weight: math.unit(4600, "lb"),
  28495. name: "Side",
  28496. image: {
  28497. source: "./media/characters/neapolitan-ananassa/side.svg",
  28498. extra: 2925/2719,
  28499. bottom: 0/2925
  28500. }
  28501. },
  28502. back: {
  28503. height: math.unit(15 + 5/12, "feet"),
  28504. weight: math.unit(4600, "lb"),
  28505. name: "Back",
  28506. image: {
  28507. source: "./media/characters/neapolitan-ananassa/back.svg",
  28508. extra: 2903/2736,
  28509. bottom: 0/2903
  28510. }
  28511. },
  28512. },
  28513. [
  28514. {
  28515. name: "Normal",
  28516. height: math.unit(15 + 5/12, "feet"),
  28517. default: true
  28518. },
  28519. {
  28520. name: "Post-Millenium",
  28521. height: math.unit(35 + 5/12, "feet")
  28522. },
  28523. {
  28524. name: "Post-Era",
  28525. height: math.unit(450 + 5/12, "feet")
  28526. },
  28527. ]
  28528. ))
  28529. characterMakers.push(() => makeCharacter(
  28530. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28531. {
  28532. front: {
  28533. height: math.unit(300, "meters"),
  28534. weight: math.unit(125000, "tonnes"),
  28535. name: "Front",
  28536. image: {
  28537. source: "./media/characters/pazuzu/front.svg",
  28538. extra: 877/794,
  28539. bottom: 47/924
  28540. }
  28541. },
  28542. },
  28543. [
  28544. {
  28545. name: "Macro",
  28546. height: math.unit(300, "meters"),
  28547. default: true
  28548. },
  28549. ]
  28550. ))
  28551. characterMakers.push(() => makeCharacter(
  28552. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28553. {
  28554. side: {
  28555. height: math.unit(10 + 7/12, "feet"),
  28556. weight: math.unit(2.5, "tons"),
  28557. name: "Side",
  28558. image: {
  28559. source: "./media/characters/aasha/side.svg",
  28560. extra: 1345/1245,
  28561. bottom: 111/1456
  28562. }
  28563. },
  28564. back: {
  28565. height: math.unit(10 + 7/12, "feet"),
  28566. weight: math.unit(2.5, "tons"),
  28567. name: "Back",
  28568. image: {
  28569. source: "./media/characters/aasha/back.svg",
  28570. extra: 1133/1057,
  28571. bottom: 257/1390
  28572. }
  28573. },
  28574. },
  28575. [
  28576. {
  28577. name: "Normal",
  28578. height: math.unit(10 + 7/12, "feet"),
  28579. default: true
  28580. },
  28581. ]
  28582. ))
  28583. characterMakers.push(() => makeCharacter(
  28584. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28585. {
  28586. front: {
  28587. height: math.unit(6 + 3/12, "feet"),
  28588. name: "Front",
  28589. image: {
  28590. source: "./media/characters/nevan/front.svg",
  28591. extra: 704/704,
  28592. bottom: 28/732
  28593. }
  28594. },
  28595. back: {
  28596. height: math.unit(6 + 3/12, "feet"),
  28597. name: "Back",
  28598. image: {
  28599. source: "./media/characters/nevan/back.svg",
  28600. extra: 714/714,
  28601. bottom: 21/735
  28602. }
  28603. },
  28604. frontFlaccid: {
  28605. height: math.unit(6 + 3/12, "feet"),
  28606. name: "Front (Flaccid)",
  28607. image: {
  28608. source: "./media/characters/nevan/front-flaccid.svg",
  28609. extra: 704/704,
  28610. bottom: 28/732
  28611. }
  28612. },
  28613. frontErect: {
  28614. height: math.unit(6 + 3/12, "feet"),
  28615. name: "Front (Erect)",
  28616. image: {
  28617. source: "./media/characters/nevan/front-erect.svg",
  28618. extra: 704/704,
  28619. bottom: 28/732
  28620. }
  28621. },
  28622. backFlaccid: {
  28623. height: math.unit(6 + 3/12, "feet"),
  28624. name: "Back (Flaccid)",
  28625. image: {
  28626. source: "./media/characters/nevan/back-flaccid.svg",
  28627. extra: 714/714,
  28628. bottom: 21/735
  28629. }
  28630. },
  28631. },
  28632. [
  28633. {
  28634. name: "Normal",
  28635. height: math.unit(6 + 3/12, "feet"),
  28636. default: true
  28637. },
  28638. ]
  28639. ))
  28640. characterMakers.push(() => makeCharacter(
  28641. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  28642. {
  28643. front: {
  28644. height: math.unit(4, "feet"),
  28645. name: "Front",
  28646. image: {
  28647. source: "./media/characters/arhan/front.svg",
  28648. extra: 3368/3133,
  28649. bottom: 0/3368
  28650. }
  28651. },
  28652. side: {
  28653. height: math.unit(4, "feet"),
  28654. name: "Side",
  28655. image: {
  28656. source: "./media/characters/arhan/side.svg",
  28657. extra: 3347/3105,
  28658. bottom: 0/3347
  28659. }
  28660. },
  28661. tongue: {
  28662. height: math.unit(1.42, "feet"),
  28663. name: "Tongue",
  28664. image: {
  28665. source: "./media/characters/arhan/tongue.svg"
  28666. }
  28667. },
  28668. head: {
  28669. height: math.unit(0.85, "feet"),
  28670. name: "Head",
  28671. image: {
  28672. source: "./media/characters/arhan/head.svg"
  28673. }
  28674. },
  28675. },
  28676. [
  28677. {
  28678. name: "Normal",
  28679. height: math.unit(4, "feet"),
  28680. default: true
  28681. },
  28682. ]
  28683. ))
  28684. characterMakers.push(() => makeCharacter(
  28685. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  28686. {
  28687. front: {
  28688. height: math.unit(5 + 7.5/12, "feet"),
  28689. weight: math.unit(120, "lb"),
  28690. name: "Front",
  28691. image: {
  28692. source: "./media/characters/digi-duncan/front.svg",
  28693. extra: 330/326,
  28694. bottom: 16/346
  28695. }
  28696. },
  28697. side: {
  28698. height: math.unit(5 + 7.5/12, "feet"),
  28699. weight: math.unit(120, "lb"),
  28700. name: "Side",
  28701. image: {
  28702. source: "./media/characters/digi-duncan/side.svg",
  28703. extra: 341/337,
  28704. bottom: 1/342
  28705. }
  28706. },
  28707. back: {
  28708. height: math.unit(5 + 7.5/12, "feet"),
  28709. weight: math.unit(120, "lb"),
  28710. name: "Back",
  28711. image: {
  28712. source: "./media/characters/digi-duncan/back.svg",
  28713. extra: 330/326,
  28714. bottom: 12/342
  28715. }
  28716. },
  28717. },
  28718. [
  28719. {
  28720. name: "Speck",
  28721. height: math.unit(0.25, "mm")
  28722. },
  28723. {
  28724. name: "Micro",
  28725. height: math.unit(5, "mm")
  28726. },
  28727. {
  28728. name: "Tiny",
  28729. height: math.unit(0.5, "inches"),
  28730. default: true
  28731. },
  28732. {
  28733. name: "Human",
  28734. height: math.unit(5 + 7.5/12, "feet")
  28735. },
  28736. {
  28737. name: "Minigiant",
  28738. height: math.unit(8 + 5.25, "feet")
  28739. },
  28740. {
  28741. name: "Giant",
  28742. height: math.unit(2000, "feet")
  28743. },
  28744. {
  28745. name: "Mega",
  28746. height: math.unit(371.1, "miles")
  28747. },
  28748. ]
  28749. ))
  28750. characterMakers.push(() => makeCharacter(
  28751. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  28752. {
  28753. front: {
  28754. height: math.unit(2, "meters"),
  28755. weight: math.unit(350, "kg"),
  28756. name: "Front",
  28757. image: {
  28758. source: "./media/characters/jagaz-soulbreaker/front.svg",
  28759. extra: 898/838,
  28760. bottom: 9/907
  28761. }
  28762. },
  28763. },
  28764. [
  28765. {
  28766. name: "Micro",
  28767. height: math.unit(8, "meters")
  28768. },
  28769. {
  28770. name: "Normal",
  28771. height: math.unit(50, "meters"),
  28772. default: true
  28773. },
  28774. {
  28775. name: "Macro",
  28776. height: math.unit(500, "meters")
  28777. },
  28778. ]
  28779. ))
  28780. characterMakers.push(() => makeCharacter(
  28781. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  28782. {
  28783. front: {
  28784. height: math.unit(6 + 6/12, "feet"),
  28785. name: "Front",
  28786. image: {
  28787. source: "./media/characters/khardesh/front.svg",
  28788. extra: 888/797,
  28789. bottom: 25/913
  28790. }
  28791. },
  28792. },
  28793. [
  28794. {
  28795. name: "Normal",
  28796. height: math.unit(6 + 6/12, "feet"),
  28797. default: true
  28798. },
  28799. {
  28800. name: "Normal+",
  28801. height: math.unit(4, "meters")
  28802. },
  28803. {
  28804. name: "Macro",
  28805. height: math.unit(50, "meters")
  28806. },
  28807. {
  28808. name: "Macro+",
  28809. height: math.unit(100, "meters")
  28810. },
  28811. {
  28812. name: "Megamacro",
  28813. height: math.unit(20, "km")
  28814. },
  28815. ]
  28816. ))
  28817. characterMakers.push(() => makeCharacter(
  28818. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  28819. {
  28820. front: {
  28821. height: math.unit(6, "feet"),
  28822. weight: math.unit(150, "lb"),
  28823. name: "Front",
  28824. image: {
  28825. source: "./media/characters/kosho/front.svg",
  28826. extra: 1847/1847,
  28827. bottom: 86/1933
  28828. }
  28829. },
  28830. },
  28831. [
  28832. {
  28833. name: "Second-stage micro",
  28834. height: math.unit(0.5, "inches")
  28835. },
  28836. {
  28837. name: "First-stage micro",
  28838. height: math.unit(6, "inches")
  28839. },
  28840. {
  28841. name: "Normal",
  28842. height: math.unit(6, "feet"),
  28843. default: true
  28844. },
  28845. {
  28846. name: "First-stage macro",
  28847. height: math.unit(72, "feet")
  28848. },
  28849. {
  28850. name: "Second-stage macro",
  28851. height: math.unit(864, "feet")
  28852. },
  28853. ]
  28854. ))
  28855. characterMakers.push(() => makeCharacter(
  28856. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  28857. {
  28858. normal: {
  28859. height: math.unit(4 + 6/12, "feet"),
  28860. name: "Normal",
  28861. image: {
  28862. source: "./media/characters/hydra/normal.svg",
  28863. extra: 2833/2634,
  28864. bottom: 68/2901
  28865. }
  28866. },
  28867. smol: {
  28868. height: math.unit(0.705, "inches"),
  28869. name: "Smol",
  28870. image: {
  28871. source: "./media/characters/hydra/smol.svg",
  28872. extra: 2715/2540,
  28873. bottom: 0/2715
  28874. }
  28875. },
  28876. },
  28877. [
  28878. {
  28879. name: "Normal",
  28880. height: math.unit(4 + 6/12, "feet"),
  28881. default: true
  28882. }
  28883. ]
  28884. ))
  28885. characterMakers.push(() => makeCharacter(
  28886. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  28887. {
  28888. front: {
  28889. height: math.unit(0.6, "cm"),
  28890. name: "Front",
  28891. image: {
  28892. source: "./media/characters/daz/front.svg",
  28893. extra: 1682/1164,
  28894. bottom: 42/1724
  28895. }
  28896. },
  28897. },
  28898. [
  28899. {
  28900. name: "Normal",
  28901. height: math.unit(0.6, "cm"),
  28902. default: true
  28903. },
  28904. ]
  28905. ))
  28906. characterMakers.push(() => makeCharacter(
  28907. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  28908. {
  28909. front: {
  28910. height: math.unit(6, "feet"),
  28911. weight: math.unit(235, "lb"),
  28912. name: "Front",
  28913. image: {
  28914. source: "./media/characters/theo-pangolin/front.svg",
  28915. extra: 1996/1969,
  28916. bottom: 115/2111
  28917. }
  28918. },
  28919. back: {
  28920. height: math.unit(6, "feet"),
  28921. weight: math.unit(235, "lb"),
  28922. name: "Back",
  28923. image: {
  28924. source: "./media/characters/theo-pangolin/back.svg",
  28925. extra: 1979/1979,
  28926. bottom: 40/2019
  28927. }
  28928. },
  28929. feral: {
  28930. height: math.unit(2, "feet"),
  28931. weight: math.unit(30, "lb"),
  28932. name: "Feral",
  28933. image: {
  28934. source: "./media/characters/theo-pangolin/feral.svg",
  28935. extra: 803/791,
  28936. bottom: 181/984
  28937. }
  28938. },
  28939. footFive: {
  28940. height: math.unit(1.43, "feet"),
  28941. name: "Foot (Five Toes)",
  28942. image: {
  28943. source: "./media/characters/theo-pangolin/foot-five.svg"
  28944. }
  28945. },
  28946. footFour: {
  28947. height: math.unit(1.43, "feet"),
  28948. name: "Foot (Four Toes)",
  28949. image: {
  28950. source: "./media/characters/theo-pangolin/foot-four.svg"
  28951. }
  28952. },
  28953. handFour: {
  28954. height: math.unit(0.81, "feet"),
  28955. name: "Hand (Four Fingers)",
  28956. image: {
  28957. source: "./media/characters/theo-pangolin/hand-four.svg"
  28958. }
  28959. },
  28960. handThree: {
  28961. height: math.unit(0.81, "feet"),
  28962. name: "Hand (Three Fingers)",
  28963. image: {
  28964. source: "./media/characters/theo-pangolin/hand-three.svg"
  28965. }
  28966. },
  28967. headFront: {
  28968. height: math.unit(1.37, "feet"),
  28969. name: "Head (Front)",
  28970. image: {
  28971. source: "./media/characters/theo-pangolin/head-front.svg"
  28972. }
  28973. },
  28974. headSide: {
  28975. height: math.unit(1.43, "feet"),
  28976. name: "Head (Side)",
  28977. image: {
  28978. source: "./media/characters/theo-pangolin/head-side.svg"
  28979. }
  28980. },
  28981. tongue: {
  28982. height: math.unit(2.29, "feet"),
  28983. name: "Tongue",
  28984. image: {
  28985. source: "./media/characters/theo-pangolin/tongue.svg"
  28986. }
  28987. },
  28988. },
  28989. [
  28990. {
  28991. name: "Normal",
  28992. height: math.unit(6, "feet")
  28993. },
  28994. {
  28995. name: "Macro",
  28996. height: math.unit(400, "feet"),
  28997. default: true
  28998. },
  28999. ]
  29000. ))
  29001. characterMakers.push(() => makeCharacter(
  29002. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29003. {
  29004. front: {
  29005. height: math.unit(6, "inches"),
  29006. weight: math.unit(0.036, "kg"),
  29007. name: "Front",
  29008. image: {
  29009. source: "./media/characters/renée/front.svg",
  29010. extra: 900/886,
  29011. bottom: 8/908
  29012. }
  29013. },
  29014. },
  29015. [
  29016. {
  29017. name: "Nano",
  29018. height: math.unit(1, "nm")
  29019. },
  29020. {
  29021. name: "Micro",
  29022. height: math.unit(1, "mm")
  29023. },
  29024. {
  29025. name: "Normal",
  29026. height: math.unit(6, "inches")
  29027. },
  29028. {
  29029. name: "Macro",
  29030. height: math.unit(2000, "feet"),
  29031. default: true
  29032. },
  29033. {
  29034. name: "Megamacro",
  29035. height: math.unit(2, "km")
  29036. },
  29037. {
  29038. name: "Gigamacro",
  29039. height: math.unit(2000, "km")
  29040. },
  29041. {
  29042. name: "Teramacro",
  29043. height: math.unit(250000, "km")
  29044. },
  29045. ]
  29046. ))
  29047. characterMakers.push(() => makeCharacter(
  29048. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29049. {
  29050. front: {
  29051. height: math.unit(4, "meters"),
  29052. weight: math.unit(150, "kg"),
  29053. name: "Front",
  29054. image: {
  29055. source: "./media/characters/caledvwlch/front.svg",
  29056. extra: 1760/1551,
  29057. bottom: 28/1788
  29058. }
  29059. },
  29060. side: {
  29061. height: math.unit(4, "meters"),
  29062. weight: math.unit(150, "kg"),
  29063. name: "Side",
  29064. image: {
  29065. source: "./media/characters/caledvwlch/side.svg",
  29066. extra: 1605/1536,
  29067. bottom: 31/1636
  29068. }
  29069. },
  29070. back: {
  29071. height: math.unit(4, "meters"),
  29072. weight: math.unit(150, "kg"),
  29073. name: "Back",
  29074. image: {
  29075. source: "./media/characters/caledvwlch/back.svg",
  29076. extra: 1635/1565,
  29077. bottom: 27/1662
  29078. }
  29079. },
  29080. },
  29081. [
  29082. {
  29083. name: "\"Incognito\"",
  29084. height: math.unit(4, "meters")
  29085. },
  29086. {
  29087. name: "Small rampage",
  29088. height: math.unit(600, "meters")
  29089. },
  29090. {
  29091. name: "Mega",
  29092. height: math.unit(30, "km")
  29093. },
  29094. {
  29095. name: "Home-size",
  29096. height: math.unit(50, "km"),
  29097. default: true
  29098. },
  29099. {
  29100. name: "Giga",
  29101. height: math.unit(300, "km")
  29102. },
  29103. {
  29104. name: "Lounging",
  29105. height: math.unit(11000, "km")
  29106. },
  29107. {
  29108. name: "Planet snacking",
  29109. height: math.unit(2000000, "km")
  29110. },
  29111. ]
  29112. ))
  29113. characterMakers.push(() => makeCharacter(
  29114. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29115. {
  29116. front: {
  29117. height: math.unit(6, "feet"),
  29118. weight: math.unit(215, "lb"),
  29119. name: "Front",
  29120. image: {
  29121. source: "./media/characters/sapphire-svell/front.svg",
  29122. extra: 495/455,
  29123. bottom: 20/515
  29124. }
  29125. },
  29126. back: {
  29127. height: math.unit(6, "feet"),
  29128. weight: math.unit(216, "lb"),
  29129. name: "Back",
  29130. image: {
  29131. source: "./media/characters/sapphire-svell/back.svg",
  29132. extra: 497/477,
  29133. bottom: 7/504
  29134. }
  29135. },
  29136. maw: {
  29137. height: math.unit(1.57, "feet"),
  29138. name: "Maw",
  29139. image: {
  29140. source: "./media/characters/sapphire-svell/maw.svg"
  29141. }
  29142. },
  29143. foot: {
  29144. height: math.unit(1.07, "feet"),
  29145. name: "Foot",
  29146. image: {
  29147. source: "./media/characters/sapphire-svell/foot.svg"
  29148. }
  29149. },
  29150. },
  29151. [
  29152. {
  29153. name: "Normal",
  29154. height: math.unit(300, "feet"),
  29155. default: true
  29156. },
  29157. {
  29158. name: "Augmented",
  29159. height: math.unit(1250, "feet")
  29160. },
  29161. {
  29162. name: "Unleashed",
  29163. height: math.unit(3000, "feet")
  29164. },
  29165. ]
  29166. ))
  29167. //characters
  29168. function makeCharacters() {
  29169. const results = [];
  29170. characterMakers.forEach(character => {
  29171. results.push(character());
  29172. });
  29173. return results;
  29174. }