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.
 
 
 

36289 lines
912 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.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. });
  45. return createEntityMaker(info, views, defaultSizes);
  46. }
  47. const speciesData = {
  48. animal: {
  49. name: "Animal"
  50. },
  51. dog: {
  52. name: "Dog",
  53. parents: [
  54. "canine"
  55. ]
  56. },
  57. canine: {
  58. name: "Canine",
  59. parents: [
  60. "mammal"
  61. ]
  62. },
  63. crux: {
  64. name: "Crux",
  65. parents: [
  66. "mammal"
  67. ]
  68. },
  69. mammal: {
  70. name: "Mammal",
  71. parents: [
  72. "animal"
  73. ]
  74. },
  75. "rough-collie": {
  76. name: "Rough Collie",
  77. parents: [
  78. "dog"
  79. ]
  80. },
  81. dragon: {
  82. name: "Dragon",
  83. parents: [
  84. "reptile"
  85. ]
  86. },
  87. reptile: {
  88. name: "Reptile",
  89. parents: [
  90. "animal"
  91. ]
  92. },
  93. woodpecker: {
  94. name: "Woodpecker",
  95. parents: [
  96. "avian"
  97. ]
  98. },
  99. avian: {
  100. name: "Avian",
  101. parents: [
  102. "animal"
  103. ]
  104. },
  105. kitsune: {
  106. name: "Kitsune",
  107. parents: [
  108. "fox"
  109. ]
  110. },
  111. fox: {
  112. name: "Fox",
  113. parents: [
  114. "mammal"
  115. ]
  116. },
  117. pokemon: {
  118. name: "Pokemon"
  119. },
  120. tiger: {
  121. name: "Tiger",
  122. parents: [
  123. "cat"
  124. ]
  125. },
  126. cat: {
  127. name: "Cat",
  128. parents: [
  129. "mammal"
  130. ]
  131. },
  132. "blue-jay": {
  133. name: "Blue Jay",
  134. parents: [
  135. "avian"
  136. ]
  137. },
  138. wolf: {
  139. name: "Wolf",
  140. parents: [
  141. "mammal"
  142. ]
  143. },
  144. coyote: {
  145. name: "Coyote",
  146. parents: [
  147. "mammal"
  148. ]
  149. },
  150. raccoon: {
  151. name: "Raccoon",
  152. parents: [
  153. "mammal"
  154. ]
  155. },
  156. weasel: {
  157. name: "Weasel",
  158. parents: [
  159. "mammal"
  160. ]
  161. },
  162. "red-panda": {
  163. name: "Red Panda",
  164. parents: [
  165. "mammal"
  166. ]
  167. },
  168. dolphin: {
  169. name: "Dolphin",
  170. parents: [
  171. "mammal"
  172. ]
  173. },
  174. "african-wild-dog": {
  175. name: "African Wild Dog",
  176. parents: [
  177. "canine"
  178. ]
  179. },
  180. "hyena": {
  181. name: "Hyena",
  182. parents: [
  183. "canine"
  184. ]
  185. },
  186. "carbuncle": {
  187. name: "Carbuncle",
  188. parents: [
  189. "animal"
  190. ]
  191. },
  192. bat: {
  193. name: "Bat",
  194. parents: [
  195. "mammal"
  196. ]
  197. },
  198. "leaf-nosed-bat": {
  199. name: "Leaf-Nosed Bat",
  200. parents: [
  201. "bat"
  202. ]
  203. },
  204. "fish": {
  205. name: "Fish",
  206. parents: [
  207. "animal"
  208. ]
  209. },
  210. "ram": {
  211. name: "Ram",
  212. parents: [
  213. "mammal"
  214. ]
  215. },
  216. "demon": {
  217. name: "Demon"
  218. },
  219. "cougar": {
  220. name: "Cougar",
  221. parents: [
  222. "cat"
  223. ]
  224. },
  225. "goat": {
  226. name: "Goat",
  227. parents: [
  228. "mammal"
  229. ]
  230. },
  231. "lion": {
  232. name: "Lion",
  233. parents: [
  234. "cat"
  235. ]
  236. },
  237. "harpy-eager": {
  238. name: "Harpy Eagle",
  239. parents: [
  240. "avian"
  241. ]
  242. },
  243. "deer": {
  244. name: "Deer",
  245. parents: [
  246. "mammal"
  247. ]
  248. },
  249. "phoenix": {
  250. name: "Phoenix",
  251. parents: [
  252. "avian"
  253. ]
  254. },
  255. "aeromorph": {
  256. name: "Aeromorph",
  257. parents: [
  258. "machine"
  259. ]
  260. },
  261. "machine": {
  262. name: "Machine",
  263. },
  264. "android": {
  265. name: "Android",
  266. parents: [
  267. "machine"
  268. ]
  269. },
  270. "jackal": {
  271. name: "Jackal",
  272. parents: [
  273. "canine"
  274. ]
  275. },
  276. "corvid": {
  277. name: "Corvid",
  278. parents: [
  279. "avian"
  280. ]
  281. },
  282. "pharaoh-hound": {
  283. name: "Pharaoh Hound",
  284. parents: [
  285. "dog"
  286. ]
  287. },
  288. "skunk": {
  289. name: "Skunk",
  290. parents: [
  291. "mammal"
  292. ]
  293. },
  294. "shark": {
  295. name: "Shark",
  296. parents: [
  297. "fish"
  298. ]
  299. },
  300. "black-panther": {
  301. name: "Black Panther",
  302. parents: [
  303. "cat"
  304. ]
  305. },
  306. "umbra": {
  307. name: "Umbra",
  308. parents: [
  309. "animal"
  310. ]
  311. },
  312. "raven": {
  313. name: "Raven",
  314. parents: [
  315. "corvid"
  316. ]
  317. },
  318. "snow-leopard": {
  319. name: "Snow Leopard",
  320. parents: [
  321. "cat"
  322. ]
  323. },
  324. "barbary-lion": {
  325. name: "Barbary Lion",
  326. parents: [
  327. "lion"
  328. ]
  329. },
  330. "dra'gal": {
  331. name: "Dra'Gal",
  332. parents: [
  333. "mammal"
  334. ]
  335. },
  336. "german-shepherd": {
  337. name: "German Shepherd",
  338. parents: [
  339. "dog"
  340. ]
  341. },
  342. "bayleef": {
  343. name: "Bayleef",
  344. parents: [
  345. "pokemon"
  346. ]
  347. },
  348. "mouse": {
  349. name: "Mouse",
  350. parents: [
  351. "rodent"
  352. ]
  353. },
  354. "rat": {
  355. name: "Rat",
  356. parents: [
  357. "mammal"
  358. ]
  359. },
  360. "hoshiko-beast": {
  361. name: "Hoshiko Beast",
  362. parents: ["animal"]
  363. },
  364. "snow-jugani": {
  365. name: "Snow Jugani",
  366. parents: ["cat"]
  367. },
  368. "patamon": {
  369. name: "Patamon",
  370. parents: ["digimon"]
  371. },
  372. "digimon": {
  373. name: "Digimon",
  374. },
  375. "jugani": {
  376. name: "Jugani",
  377. parents: ["cat"]
  378. },
  379. "luxray": {
  380. name: "Luxray",
  381. parents: ["pokemon"]
  382. },
  383. "mech": {
  384. name: "Mech",
  385. parents: ["machine"]
  386. },
  387. "zoid": {
  388. name: "Zoid",
  389. parents: ["mech"]
  390. },
  391. "monster": {
  392. name: "Monster",
  393. parents: ["animal"]
  394. },
  395. "foo-dog": {
  396. name: "Foo Dog",
  397. parents: ["mammal"]
  398. },
  399. "elephant": {
  400. name: "Elephant",
  401. parents: ["mammal"]
  402. },
  403. "eagle": {
  404. name: "Eagle",
  405. parents: ["avian"]
  406. },
  407. "cow": {
  408. name: "Cow",
  409. parents: ["mammal"]
  410. },
  411. "crocodile": {
  412. name: "Crocodile",
  413. parents: ["reptile"]
  414. },
  415. "borzoi": {
  416. name: "Borzoi",
  417. parents: ["dog"]
  418. },
  419. "snake": {
  420. name: "Snake",
  421. parents: ["reptile"]
  422. },
  423. "horned-bush-viper": {
  424. name: "Horned Bush Viper",
  425. parents: ["snake"]
  426. },
  427. "cobra": {
  428. name: "Cobra",
  429. parents: ["snake"]
  430. },
  431. "harpy-eagle": {
  432. name: "Harpy Eagle",
  433. parents: ["eagle"]
  434. },
  435. "raptor": {
  436. name: "Raptor",
  437. parents: ["dinosaur"]
  438. },
  439. "dinosaur": {
  440. name: "Dinosaur",
  441. parents: ["reptile"]
  442. },
  443. "veilhound": {
  444. name: "Veilhound",
  445. parents: ["hellhound", "demon"]
  446. },
  447. "hellhound": {
  448. name: "Hellhound",
  449. parents: ["canine"]
  450. },
  451. "insect": {
  452. name: "Insect",
  453. parents: ["animal"]
  454. },
  455. "beetle": {
  456. name: "Beetle",
  457. parents: ["insect"]
  458. },
  459. "moth": {
  460. name: "Moth",
  461. parents: ["insect"]
  462. },
  463. "eastern-dragon": {
  464. name: "Eastern Dragon",
  465. parents: ["dragon"]
  466. },
  467. "jaguar": {
  468. name: "Jaguar",
  469. parents: ["cat"]
  470. },
  471. "horse": {
  472. name: "Horse",
  473. parents: ["mammal"]
  474. },
  475. "sergal": {
  476. name: "Sergal",
  477. parents: ["mammal"]
  478. },
  479. "gryphon": {
  480. name: "Gryphon",
  481. parents: ["lion", "eagle"]
  482. },
  483. "robot": {
  484. name: "Robot",
  485. parents: ["machine"]
  486. },
  487. "medihound": {
  488. name: "Medihound",
  489. parents: ["robot", "dog"]
  490. },
  491. "sylveon": {
  492. name: "Sylveon",
  493. parents: ["pokemon"]
  494. },
  495. "catgirl": {
  496. name: "Catgirl",
  497. parents: ["mammal"]
  498. },
  499. "cowgirl": {
  500. name: "Cowgirl",
  501. parents: ["mammal"]
  502. },
  503. "pony": {
  504. name: "Pony",
  505. parents: ["horse"]
  506. },
  507. "rabbit": {
  508. name: "Rabbit",
  509. parents: ["mammal"]
  510. },
  511. "fennec-fox": {
  512. name: "Fennec Fox",
  513. parents: ["fox"]
  514. },
  515. "azodian": {
  516. name: "Azodian",
  517. parents: ["mouse"]
  518. },
  519. "shiba-inu": {
  520. name: "Shiba Inu",
  521. parents: ["dog"]
  522. },
  523. "changeling": {
  524. name: "Changeling",
  525. parents: ["insect"]
  526. },
  527. "cheetah": {
  528. name: "Cheetah",
  529. parents: ["cat"]
  530. },
  531. "golden-jackal": {
  532. name: "Golden Jackal",
  533. parents: ["jackal"]
  534. },
  535. "manectric": {
  536. name: "Manectric",
  537. parents: ["pokemon"]
  538. },
  539. "rat": {
  540. name: "Rat",
  541. parents: ["rodent"]
  542. },
  543. "rodent": {
  544. name: "Rodent",
  545. parents: ["mammal"]
  546. },
  547. "octocoon": {
  548. name: "Octocoon",
  549. parents: ["raccoon", "octopus"]
  550. },
  551. "octopus": {
  552. name: "Octopus",
  553. parents: ["fish"]
  554. },
  555. "werewolf": {
  556. name: "Werewolf",
  557. parents: ["wolf"]
  558. },
  559. "meerkat": {
  560. name: "Meerkat",
  561. parents: ["mammal"]
  562. },
  563. "human": {
  564. name: "Human",
  565. parents: ["mammal"]
  566. },
  567. "geth": {
  568. name: "Geth",
  569. parents: ["android"]
  570. },
  571. "husky": {
  572. name: "Husky",
  573. parents: ["dog"]
  574. },
  575. "long-eared-bat": {
  576. name: "Long Eared Bat",
  577. parents: ["bat"]
  578. },
  579. "lizard": {
  580. name: "Lizard",
  581. parents: ["reptile"]
  582. },
  583. "salamander": {
  584. name: "Salamander",
  585. parents: ["lizard"]
  586. },
  587. "chameleon": {
  588. name: "Chameleon",
  589. parents: ["lizard"]
  590. },
  591. "gecko": {
  592. name: "Gecko",
  593. parents: ["lizard"]
  594. },
  595. "kobold": {
  596. name: "Kobold",
  597. parents: ["reptile"]
  598. },
  599. "charizard": {
  600. name: "Charizard",
  601. parents: ["pokemon"]
  602. },
  603. "lugia": {
  604. name: "Lugia",
  605. parents: ["pokemon"]
  606. },
  607. "cerberus": {
  608. name: "Cerberus",
  609. parents: ["dog"]
  610. },
  611. "tyrantrum": {
  612. name: "Tyrantrum",
  613. parents: ["pokemon"]
  614. },
  615. "lemur": {
  616. name: "Lemur",
  617. parents: ["mammal"]
  618. },
  619. "kelpie": {
  620. name: "Kelpie",
  621. parents: ["horse", "monster"]
  622. },
  623. "labrador": {
  624. name: "Labrador",
  625. parents: ["dog"]
  626. },
  627. "sylveon": {
  628. name: "Sylveon",
  629. parents: ["eeveelution"]
  630. },
  631. "eeveelution": {
  632. name: "Eeveelution",
  633. parents: ["pokemon"]
  634. },
  635. "polar-bear": {
  636. name: "Polar Bear",
  637. parents: ["bear"]
  638. },
  639. "bear": {
  640. name: "Bear",
  641. parents: ["mammal"]
  642. },
  643. "absol": {
  644. name: "Absol",
  645. parents: ["pokemon"]
  646. },
  647. "wolver": {
  648. name: "Wolver",
  649. parents: ["mammal"]
  650. },
  651. "rottweiler": {
  652. name: "Rottweiler",
  653. parents: ["dog"]
  654. },
  655. "zebra": {
  656. name: "Zebra",
  657. parents: ["horse"]
  658. },
  659. "yoshi": {
  660. name: "Yoshi",
  661. parents: ["lizard"]
  662. },
  663. "lynx": {
  664. name: "Lynx",
  665. parents: ["cat"]
  666. },
  667. "unknown": {
  668. name: "Unknown",
  669. parents: []
  670. },
  671. "thylacine": {
  672. name: "Thylacine",
  673. parents: ["mammal"]
  674. },
  675. "gabumon": {
  676. name: "Gabumon",
  677. parents: ["digimon"]
  678. },
  679. "border-collie": {
  680. name: "Border Collie",
  681. parents: ["dog"]
  682. },
  683. "imp": {
  684. name: "Imp",
  685. parents: ["demon"]
  686. },
  687. "kangaroo": {
  688. name: "Kangaroo",
  689. parents: ["mammal"]
  690. },
  691. "renamon": {
  692. name: "Renamon",
  693. parents: ["digimon"]
  694. },
  695. "candy-orca-dragon": {
  696. name: "Candy Orca Dragon",
  697. parents: ["fish", "dragon", "candy"]
  698. },
  699. "sabertooth-tiger": {
  700. name: "Sabertooth Tiger",
  701. parents: ["cat"]
  702. },
  703. "espurr": {
  704. name: "Espurr",
  705. parents: ["pokemon"]
  706. },
  707. "otter": {
  708. name: "Otter",
  709. parents: ["mammal"]
  710. },
  711. "elemental": {
  712. name: "Elemental",
  713. parents: ["mammal"]
  714. },
  715. "mew": {
  716. name: "Mew",
  717. parents: ["pokemon"]
  718. },
  719. "goodra": {
  720. name: "Goodra",
  721. parents: ["pokemon"]
  722. },
  723. "fairy": {
  724. name: "Fairy",
  725. parents: ["magical"]
  726. },
  727. "typhlosion": {
  728. name: "Typhlosion",
  729. parents: ["pokemon"]
  730. },
  731. "magical": {
  732. name: "Magical",
  733. parents: []
  734. },
  735. "xenomorph": {
  736. name: "Xenomorph",
  737. parents: ["monster", "alien"]
  738. },
  739. "charr": {
  740. name: "Charr",
  741. parents: ["cat"]
  742. },
  743. "siberian-husky": {
  744. name: "Siberian Husky",
  745. parents: ["husky"]
  746. },
  747. "alligator": {
  748. name: "Alligator",
  749. parents: ["reptile"]
  750. },
  751. "bernese-mountain-dog": {
  752. name: "Bernese Mountain Dog",
  753. parents: ["dog"]
  754. },
  755. "reshiram": {
  756. name: "Reshiram",
  757. parents: ["pokemon"]
  758. },
  759. "grizzly-bear": {
  760. name: "Grizzly Bear",
  761. parents: ["bear"]
  762. },
  763. "water-monitor": {
  764. name: "Water Monitor",
  765. parents: ["lizard"]
  766. },
  767. "banchofossa": {
  768. name: "Banchofossa",
  769. parents: ["mammal"]
  770. },
  771. "kirin": {
  772. name: "Kirin",
  773. parents: ["monster"]
  774. },
  775. "quilava": {
  776. name: "Quilava",
  777. parents: ["pokemon"]
  778. },
  779. "seviper": {
  780. name: "Seviper",
  781. parents: ["pokemon"]
  782. },
  783. "flying-fox": {
  784. name: "Flying Fox",
  785. parents: ["bat"]
  786. },
  787. "keynain": {
  788. name: "Keynain",
  789. parents: ["avian"]
  790. },
  791. "lucario": {
  792. name: "Lucario",
  793. parents: ["pokemon"]
  794. },
  795. "siamese-cat": {
  796. name: "Siamese Cat",
  797. parents: ["cat"]
  798. },
  799. "spider": {
  800. name: "Spider",
  801. parents: ["insect"]
  802. },
  803. "samurott": {
  804. name: "Samurott",
  805. parents: ["pokemon"]
  806. },
  807. "megalodon": {
  808. name: "Megalodon",
  809. parents: ["shark"]
  810. },
  811. "unicorn": {
  812. name: "Unicorn",
  813. parents: ["horse"]
  814. },
  815. "greninja": {
  816. name: "Greninja",
  817. parents: ["pokemon"]
  818. },
  819. "water-dragon": {
  820. name: "Water Dragon",
  821. parents: ["dragon"]
  822. },
  823. "cross-fox": {
  824. name: "Cross Fox",
  825. parents: ["fox"]
  826. },
  827. "synth": {
  828. name: "Synth",
  829. parents: ["machine"]
  830. },
  831. "construct": {
  832. name: "Construct",
  833. parents: []
  834. },
  835. "mexican-wolf": {
  836. name: "Mexican Wolf",
  837. parents: ["wolf"]
  838. },
  839. "leopard": {
  840. name: "Leopard",
  841. parents: ["cat"]
  842. },
  843. "pig": {
  844. name: "Pig",
  845. parents: ["mammal"]
  846. },
  847. "ampharos": {
  848. name: "Ampharos",
  849. parents: ["pokemon"]
  850. },
  851. "orca": {
  852. name: "Orca",
  853. parents: ["fish"]
  854. },
  855. "lycanroc": {
  856. name: "Lycanroc",
  857. parents: ["pokemon"]
  858. },
  859. "surkanu": {
  860. name: "Surkanu",
  861. parents: ["monster"]
  862. },
  863. "seal": {
  864. name: "Seal",
  865. parents: ["mammal"]
  866. },
  867. "keldeo": {
  868. name: "Keldeo",
  869. parents: ["pokemon"]
  870. },
  871. "great-dane": {
  872. name: "Great Dane",
  873. parents: ["dog"]
  874. },
  875. "black-backed-jackal": {
  876. name: "Black Backed Jackal",
  877. parents: ["jackal"]
  878. },
  879. "sheep": {
  880. name: "Sheep",
  881. parents: ["mammal"]
  882. },
  883. "leopard-seal": {
  884. name: "Leopard Seal",
  885. parents: ["seal"]
  886. },
  887. "zoroark": {
  888. name: "Zoroark",
  889. parents: ["pokemon"]
  890. },
  891. "maned-wolf": {
  892. name: "Maned Wolf",
  893. parents: ["canine"]
  894. },
  895. "dracha": {
  896. name: "Dracha",
  897. parents: ["dragon"]
  898. },
  899. "wolxi": {
  900. name: "Wolxi",
  901. parents: ["mammal", "alien"]
  902. },
  903. "dratini": {
  904. name: "Dratini",
  905. parents: ["pokemon", "dragon"]
  906. },
  907. "skaven": {
  908. name: "Skaven",
  909. parents: ["rat"]
  910. },
  911. "mongoose": {
  912. name: "Mongoose",
  913. parents: ["mammal"]
  914. },
  915. "lopunny": {
  916. name: "Lopunny",
  917. parents: ["pokemon", "rabbit"]
  918. },
  919. "feraligatr": {
  920. name: "Feraligatr",
  921. parents: ["pokemon", "alligator"]
  922. },
  923. "houndoom": {
  924. name: "Houndoom",
  925. parents: ["pokemon", "dog"]
  926. },
  927. "protogen": {
  928. name: "Protogen",
  929. parents: ["machine"]
  930. },
  931. "saint-bernard": {
  932. name: "Saint Bernard",
  933. parents: ["dog"]
  934. },
  935. "crow": {
  936. name: "Crow",
  937. parents: ["corvid"]
  938. },
  939. "delphox": {
  940. name: "Delphox",
  941. parents: ["pokemon", "fox"]
  942. },
  943. "moose": {
  944. name: "Moose",
  945. parents: ["mammal"]
  946. },
  947. "joraxian": {
  948. name: "Joraxian",
  949. parents: ["monster", "canine", "demon"]
  950. },
  951. "nimbat": {
  952. name: "Nimbat",
  953. parents: ["mammal"]
  954. },
  955. "aardwolf": {
  956. name: "Aardwolf",
  957. parents: ["canine"]
  958. },
  959. "fluudrani": {
  960. name: "Fluudrani",
  961. parents: ["animal"]
  962. },
  963. "arcanine": {
  964. name: "Arcanine",
  965. parents: ["pokemon", "dog"]
  966. },
  967. "inteleon": {
  968. name: "Inteleon",
  969. parents: ["pokemon", "fish"]
  970. },
  971. "ninetales": {
  972. name: "Ninetales",
  973. parents: ["pokemon", "kitsune"]
  974. },
  975. "tigrex": {
  976. name: "Tigrex",
  977. parents: ["tiger"]
  978. },
  979. "zorua": {
  980. name: "Zorua",
  981. parents: ["pokemon", "fox"]
  982. },
  983. "vulpix": {
  984. name: "Vulpix",
  985. parents: ["pokemon", "fox"]
  986. },
  987. "barghest": {
  988. name: "Barghest",
  989. parents: ["monster"]
  990. },
  991. "gray-wolf": {
  992. name: "Gray Wolf",
  993. parents: ["wolf"]
  994. },
  995. "ruppells-fox": {
  996. name: "Rüppell's Fox",
  997. parents: ["fox"]
  998. },
  999. "bull-terrier": {
  1000. name: "Bull Terrier",
  1001. parents: ["dog"]
  1002. },
  1003. "european-honey-buzzard": {
  1004. name: "European Honey Buzzard",
  1005. parents: ["avian"]
  1006. },
  1007. "t-rex": {
  1008. name: "T Rex",
  1009. parents: ["dinosaur"]
  1010. },
  1011. "mactarian": {
  1012. name: "Mactarian",
  1013. parents: ["shark", "monster"]
  1014. },
  1015. "mewtwo-y": {
  1016. name: "Mewtwo Y",
  1017. parents: ["mewtwo"]
  1018. },
  1019. "mewtwo": {
  1020. name: "Mewtwo",
  1021. parents: ["pokemon"]
  1022. },
  1023. "mew": {
  1024. name: "Mew",
  1025. parents: ["pokemon"]
  1026. },
  1027. "eevee": {
  1028. name: "Eevee",
  1029. parents: ["eeveelution"]
  1030. },
  1031. "mienshao": {
  1032. name: "Mienshao",
  1033. parents: ["pokemon"]
  1034. },
  1035. "sugar-glider": {
  1036. name: "Sugar Glider",
  1037. parents: ["opossum"]
  1038. },
  1039. "spectral-bat": {
  1040. name: "Spectral Bat",
  1041. parents: ["bat"]
  1042. },
  1043. "scolipede": {
  1044. name: "Scolipede",
  1045. parents: ["pokemon", "insect"]
  1046. },
  1047. "jackalope": {
  1048. name: "Jackalope",
  1049. parents: ["rabbit", "antelope"]
  1050. },
  1051. "caracal": {
  1052. name: "Caracal",
  1053. parents: ["cat"]
  1054. },
  1055. "stoat": {
  1056. name: "Stoat",
  1057. parents: ["mammal"]
  1058. },
  1059. "african-golden-cat": {
  1060. name: "African Golden Cat",
  1061. parents: ["cat"]
  1062. },
  1063. "gigantosaurus": {
  1064. name: "Gigantosaurus",
  1065. parents: ["dinosaur"]
  1066. },
  1067. "zorgoia": {
  1068. name: "Zorgoia",
  1069. parents: ["mammal"]
  1070. },
  1071. "monitor-lizard": {
  1072. name: "Monitor Lizard",
  1073. parents: ["lizard"]
  1074. },
  1075. "ziralkia": {
  1076. name: "Ziralkia",
  1077. parents: ["mammal"]
  1078. },
  1079. "kiiasi": {
  1080. name: "Kiiasi",
  1081. parents: ["animal"]
  1082. },
  1083. "synx": {
  1084. name: "Synx",
  1085. parents: ["monster"]
  1086. },
  1087. "panther": {
  1088. name: "Panther",
  1089. parents: ["cat"]
  1090. },
  1091. "azumarill": {
  1092. name: "Azumarill",
  1093. parents: ["pokemon"]
  1094. },
  1095. "river-snaptail": {
  1096. name: "River Snaptail",
  1097. parents: ["otter", "crocodile"]
  1098. },
  1099. "great-blue-heron": {
  1100. name: "Great Blue Heron",
  1101. parents: ["avian"]
  1102. },
  1103. "smeargle": {
  1104. name: "Smeargle",
  1105. parents: ["pokemon"]
  1106. },
  1107. "vendeilen": {
  1108. name: "Vendeilen",
  1109. parents: ["monster"]
  1110. },
  1111. "ventura": {
  1112. name: "Ventura",
  1113. parents: ["canine"]
  1114. },
  1115. "clouded-leopard": {
  1116. name: "Clouded Leopard",
  1117. parents: ["leopard"]
  1118. },
  1119. "argonian": {
  1120. name: "Argonian",
  1121. parents: ["lizard"]
  1122. },
  1123. "salazzle": {
  1124. name: "Salazzle",
  1125. parents: ["pokemon", "lizard"]
  1126. },
  1127. "je-stoff-drachen": {
  1128. name: "Je-Stoff Drachen",
  1129. parents: ["dragon"]
  1130. },
  1131. "finnish-spitz-dog": {
  1132. name: "Finnish Spitz Dog",
  1133. parents: ["dog"]
  1134. },
  1135. "gray-fox": {
  1136. name: "Gray Fox",
  1137. parents: ["fox"]
  1138. },
  1139. "opossum": {
  1140. name: "opossum",
  1141. parents: ["mammal"]
  1142. },
  1143. "antelope": {
  1144. name: "Antelope",
  1145. parents: ["mammal"]
  1146. },
  1147. "weavile": {
  1148. name: "Weavile",
  1149. parents: ["pokemon"]
  1150. },
  1151. "pikachu": {
  1152. name: "Pikachu",
  1153. parents: ["pokemon", "mouse"]
  1154. },
  1155. "grovyle": {
  1156. name: "Grovyle",
  1157. parents: ["pokemon", "plant"]
  1158. },
  1159. "sthara": {
  1160. name: "Sthara",
  1161. parents: ["snow-leopard", "reptile"]
  1162. },
  1163. "star-warrior": {
  1164. name: "Star Warrior",
  1165. parents: ["magical"]
  1166. },
  1167. "dragonoid": {
  1168. name: "Dragonoid",
  1169. parents: ["dragon"]
  1170. },
  1171. "suicune": {
  1172. name: "Suicune",
  1173. parents: ["pokemon"]
  1174. },
  1175. "vole": {
  1176. name: "Vole",
  1177. parents: ["mammal"]
  1178. },
  1179. "blaziken": {
  1180. name: "Blaziken",
  1181. parents: ["pokemon", "avian"]
  1182. },
  1183. "buizel": {
  1184. name: "Buizel",
  1185. parents: ["pokemon", "fish"]
  1186. },
  1187. "floatzel": {
  1188. name: "Floatzel",
  1189. parents: ["pokemon", "fish"]
  1190. },
  1191. "umok": {
  1192. name: "Umok",
  1193. parents: ["avian"]
  1194. },
  1195. "sea-monster": {
  1196. name: "Sea Monster",
  1197. parents: ["monster", "fish"]
  1198. },
  1199. "egyptian-vulture": {
  1200. name: "Egyptian Vulture",
  1201. parents: ["avian"]
  1202. },
  1203. "doberman": {
  1204. name: "Doberman",
  1205. parents: ["dog"]
  1206. },
  1207. "zangoose": {
  1208. name: "Zangoose",
  1209. parents: ["pokemon", "mongoose"]
  1210. },
  1211. "mongoose": {
  1212. name: "Mongoose",
  1213. parents: ["mammal"]
  1214. },
  1215. "wickerbeast": {
  1216. name: "Wickerbeast",
  1217. parents: ["monster"]
  1218. },
  1219. "zenari": {
  1220. name: "Zenari",
  1221. parents: ["lizard"]
  1222. },
  1223. "plant": {
  1224. name: "Plant",
  1225. parents: []
  1226. },
  1227. "raskatox": {
  1228. name: "Raskatox",
  1229. parents: ["raccoon", "skunk", "cat", "fox"]
  1230. },
  1231. "mikromare": {
  1232. name: "mikromare",
  1233. parents: ["alien"]
  1234. },
  1235. "alien": {
  1236. name: "Alien",
  1237. parents: ["animal"]
  1238. },
  1239. "deity": {
  1240. name: "Deity",
  1241. parents: []
  1242. },
  1243. "skarlan": {
  1244. name: "Skarlan",
  1245. parents: ["slug", "dragon"]
  1246. },
  1247. "slug": {
  1248. name: "Slug",
  1249. parents: ["mollusk"]
  1250. },
  1251. "mollusk": {
  1252. name: "Mollusk",
  1253. parents: ["animal"]
  1254. },
  1255. "chimera": {
  1256. name: "Chimera",
  1257. parents: ["monster"]
  1258. },
  1259. "gestalt": {
  1260. name: "Gestalt",
  1261. parents: ["construct"]
  1262. },
  1263. "mimic": {
  1264. name: "Mimic",
  1265. parents: ["monster"]
  1266. },
  1267. "calico-rat": {
  1268. name: "Calico Rat",
  1269. parents: ["rat"]
  1270. },
  1271. "panda": {
  1272. name: "Panda",
  1273. parents: ["mammal"]
  1274. },
  1275. "oni": {
  1276. name: "Oni",
  1277. parents: ["monster"]
  1278. },
  1279. "pegasus": {
  1280. name: "Pegasus",
  1281. parents: ["horse"]
  1282. },
  1283. "vulpera": {
  1284. name: "Vulpera",
  1285. parents: ["fennec-fox"]
  1286. },
  1287. "ceratosaurus": {
  1288. name: "Ceratosaurus",
  1289. parents: ["dinosaur"]
  1290. },
  1291. "nykur": {
  1292. name: "Nykur",
  1293. parents: ["horse", "monster"]
  1294. },
  1295. "giraffe": {
  1296. name: "Giraffe",
  1297. parents: ["mammal"]
  1298. },
  1299. "tauren": {
  1300. name: "Tauren",
  1301. parents: ["cow"]
  1302. },
  1303. "draconi": {
  1304. name: "Draconi",
  1305. parents: ["alien", "cat", "cyborg"]
  1306. },
  1307. "dire-wolf": {
  1308. name: "Dire Wolf",
  1309. parents: ["wolf"]
  1310. },
  1311. "ferromorph": {
  1312. name: "Ferromorph",
  1313. parents: ["construct"]
  1314. },
  1315. "meowth": {
  1316. name: "Meowth",
  1317. parents: ["cat", "pokemon"]
  1318. },
  1319. "pavodragon": {
  1320. name: "Pavodragon",
  1321. parents: ["dragon"]
  1322. },
  1323. "aaltranae": {
  1324. name: "Aaltranae",
  1325. parents: ["dragon"]
  1326. },
  1327. "cyborg": {
  1328. name: "Cyborg",
  1329. parents: ["machine"]
  1330. },
  1331. "draptor": {
  1332. name: "Draptor",
  1333. parents: ["dragon"]
  1334. },
  1335. "candy": {
  1336. name: "Candy",
  1337. parents: []
  1338. },
  1339. "drenath": {
  1340. name: "Drenath",
  1341. parents: ["dragon", "snake", "rabbit"]
  1342. },
  1343. "coyju": {
  1344. name: "Coyju",
  1345. parents: ["coyote", "kaiju"]
  1346. },
  1347. "kaiju": {
  1348. name: "Kaiju",
  1349. parents: ["monster"]
  1350. },
  1351. "nickit": {
  1352. name: "Nickit",
  1353. parents: ["pokemon", "cat"]
  1354. },
  1355. "lopunny": {
  1356. name: "Lopunny",
  1357. parents: ["pokemon", "rabbit"]
  1358. },
  1359. "korean-jindo-dog": {
  1360. name: "Korean Jindo Dog",
  1361. parents: ["dog"]
  1362. },
  1363. "naga": {
  1364. name: "Naga",
  1365. parents: ["snake", "monster"]
  1366. },
  1367. "undead": {
  1368. name: "Undead",
  1369. parents: ["monster"]
  1370. },
  1371. "whale": {
  1372. name: "Whale",
  1373. parents: ["fish"]
  1374. },
  1375. "gelato-bee": {
  1376. name: "Gelato Bee",
  1377. parents: ["bee"]
  1378. },
  1379. "bee": {
  1380. name: "Bee",
  1381. parents: ["insect"]
  1382. },
  1383. "gardevoir": {
  1384. name: "Gardevoir",
  1385. parents: ["pokemon"]
  1386. },
  1387. "ant": {
  1388. name: "Ant",
  1389. parents: ["insect"]
  1390. },
  1391. "frog": {
  1392. name: "Frog",
  1393. parents: ["amphibian"]
  1394. },
  1395. "amphibian": {
  1396. name: "Amphibian",
  1397. parents: ["animal"]
  1398. },
  1399. "pangolin": {
  1400. name: "Pangolin",
  1401. parents: ["mammal"]
  1402. },
  1403. "uragi'viidorn": {
  1404. name: "Uragi'viidorn",
  1405. parents: ["avian", "bear"]
  1406. },
  1407. "gryphdelphais": {
  1408. name: "Gryphdelphais",
  1409. parents: ["dolphin", "gryphon"]
  1410. },
  1411. "plush": {
  1412. name: "Plush",
  1413. parents: ["construct"]
  1414. },
  1415. "draiger": {
  1416. name: "Draiger",
  1417. parents: ["dragon","tiger"]
  1418. },
  1419. "foxsky": {
  1420. name: "Foxsky",
  1421. parents: ["fox", "husky"]
  1422. },
  1423. "umbreon": {
  1424. name: "Umbreon",
  1425. parents: ["eeveelution"]
  1426. },
  1427. "slime-dragon": {
  1428. name: "Slime Dragon",
  1429. parents: ["dragon"]
  1430. },
  1431. "enderman": {
  1432. name: "Enderman",
  1433. parents: ["monster"]
  1434. },
  1435. "gremlin": {
  1436. name: "Gremlin",
  1437. parents: ["monster"]
  1438. },
  1439. "dragonsune": {
  1440. name: "Dragonsune",
  1441. parents: ["dragon", "kitsune"]
  1442. },
  1443. "ghost": {
  1444. name: "Ghost",
  1445. parents: ["monster"]
  1446. },
  1447. "false-vampire-bat": {
  1448. name: "False Vampire Bat",
  1449. parents: ["bat"]
  1450. },
  1451. "succubus": {
  1452. name: "Succubus",
  1453. parents: ["demon"]
  1454. },
  1455. "mia": {
  1456. name: "Mia",
  1457. parents: ["canine"]
  1458. },
  1459. "rainbow": {
  1460. name: "Rainbow",
  1461. parents: ["monster"]
  1462. },
  1463. "solgaleo": {
  1464. name: "Solgaleo",
  1465. parents: ["pokemon"]
  1466. },
  1467. "lucent-nargacuga": {
  1468. name: "Lucent Nargacuga",
  1469. parents: ["monster-hunter"]
  1470. },
  1471. "monster-hunter": {
  1472. name: "Monster Hunter",
  1473. parents: ["monster"]
  1474. },
  1475. "leviathan": {
  1476. "name": "Leviathan",
  1477. "url": "sea-monster"
  1478. },
  1479. "bull": {
  1480. name: "Bull",
  1481. parents: ["mammal"]
  1482. },
  1483. "tanuki": {
  1484. name: "Tanuki",
  1485. parents: ["monster"]
  1486. },
  1487. "chakat": {
  1488. name: "Chakat",
  1489. parents: ["cat"]
  1490. },
  1491. "hydra": {
  1492. name: "Hydra",
  1493. parents: ["monster"]
  1494. },
  1495. "zigzagoon": {
  1496. name: "Zigzagoon",
  1497. parents: ["raccoon", "pokemon"]
  1498. },
  1499. "vulture": {
  1500. name: "Vulture",
  1501. parents: ["avian"]
  1502. },
  1503. "eastern-dragon": {
  1504. name: "Eastern Dragon",
  1505. parents: ["dragon"]
  1506. },
  1507. "gryffon": {
  1508. name: "Gryffon",
  1509. parents: ["phoenix", "red-panda"]
  1510. },
  1511. "amtsvane": {
  1512. name: "Amtsvane",
  1513. parents: ["reptile"]
  1514. },
  1515. "kigavi": {
  1516. name: "Kigavi",
  1517. parents: ["avian"]
  1518. },
  1519. "turian": {
  1520. name: "Turian",
  1521. parents: ["avian"]
  1522. },
  1523. "zeraora": {
  1524. name: "Zeraora",
  1525. parents: ["pokemon"]
  1526. },
  1527. "sandshrew": {
  1528. name: "Sandshrew",
  1529. parents: ["pokemon", "pangolin"]
  1530. },
  1531. "valais-blacknose-sheep": {
  1532. name: "Valais Blacknose Sheep",
  1533. parents: ["sheep"]
  1534. },
  1535. "novaleit": {
  1536. name: "Novaleit",
  1537. parents: ["mammal"]
  1538. },
  1539. "dunnoh": {
  1540. name: "Dunnoh",
  1541. parents: ["mammal"]
  1542. },
  1543. "lunaral-dragon": {
  1544. name: "Lunaral Dragon",
  1545. parents: ["dragon"]
  1546. },
  1547. "arctic-wolf": {
  1548. name: "Arctic Wolf",
  1549. parents: ["wolf"]
  1550. },
  1551. "donkey": {
  1552. name: "Donkey",
  1553. parents: ["horse"]
  1554. },
  1555. "chinchilla": {
  1556. name: "Chinchilla",
  1557. parents: ["rodent"]
  1558. },
  1559. "felkin": {
  1560. name: "Felkin",
  1561. parents: ["dragon"]
  1562. },
  1563. "tykeriel": {
  1564. name: "Tykeriel",
  1565. parents: ["avian"]
  1566. },
  1567. }
  1568. //species
  1569. function getSpeciesInfo(speciesList) {
  1570. let result = new Set();
  1571. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1572. result.add(entry)
  1573. });
  1574. return Array.from(result);
  1575. };
  1576. function getSpeciesInfoHelper(species) {
  1577. if (!speciesData[species]) {
  1578. console.warn(species + " doesn't exist");
  1579. return [];
  1580. }
  1581. if (speciesData[species].parents) {
  1582. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1583. } else {
  1584. return [species];
  1585. }
  1586. }
  1587. characterMakers.push(() => makeCharacter(
  1588. {
  1589. name: "Fen",
  1590. species: ["crux"],
  1591. description: {
  1592. title: "Bio",
  1593. text: "Very furry. Sheds on everything."
  1594. },
  1595. tags: [
  1596. "anthro",
  1597. "goo"
  1598. ]
  1599. },
  1600. {
  1601. back: {
  1602. height: math.unit(2.2428, "meter"),
  1603. weight: math.unit(124.738, "kg"),
  1604. name: "Back",
  1605. image: {
  1606. source: "./media/characters/fen/back.svg",
  1607. extra: 2024 / 1867,
  1608. bottom: 13 / 2037
  1609. },
  1610. info: {
  1611. description: {
  1612. mode: "append",
  1613. text: "\n\nHe is not currently looking at you."
  1614. }
  1615. }
  1616. },
  1617. full: {
  1618. height: math.unit(1.34, "meter"),
  1619. weight: math.unit(225, "kg"),
  1620. name: "Full",
  1621. image: {
  1622. source: "./media/characters/fen/full.svg"
  1623. },
  1624. info: {
  1625. description: {
  1626. mode: "append",
  1627. text: "\n\nMunch."
  1628. }
  1629. }
  1630. },
  1631. kneeling: {
  1632. height: math.unit(5.4, "feet"),
  1633. weight: math.unit(124.738, "kg"),
  1634. name: "Kneeling",
  1635. image: {
  1636. source: "./media/characters/fen/kneeling.svg",
  1637. extra: 563 / 507
  1638. }
  1639. },
  1640. goo: {
  1641. height: math.unit(2.8, "feet"),
  1642. weight: math.unit(125, "kg"),
  1643. capacity: math.unit(1, "people"),
  1644. name: "Goo",
  1645. image: {
  1646. source: "./media/characters/fen/goo.svg",
  1647. bottom: 116 / 613
  1648. }
  1649. },
  1650. lounging: {
  1651. height: math.unit(6.5, "feet"),
  1652. weight: math.unit(125, "kg"),
  1653. name: "Lounging",
  1654. image: {
  1655. source: "./media/characters/fen/lounging.svg"
  1656. }
  1657. },
  1658. },
  1659. [
  1660. {
  1661. name: "Normal",
  1662. height: math.unit(2.2428, "meter")
  1663. },
  1664. {
  1665. name: "Big",
  1666. height: math.unit(12, "feet")
  1667. },
  1668. {
  1669. name: "Minimacro",
  1670. height: math.unit(40, "feet"),
  1671. default: true,
  1672. info: {
  1673. description: {
  1674. mode: "append",
  1675. text: "\n\nTOO DAMN BIG"
  1676. }
  1677. }
  1678. },
  1679. {
  1680. name: "Macro",
  1681. height: math.unit(100, "feet"),
  1682. info: {
  1683. description: {
  1684. mode: "append",
  1685. text: "\n\nTOO DAMN BIG"
  1686. }
  1687. }
  1688. },
  1689. {
  1690. name: "Macro+",
  1691. height: math.unit(300, "feet")
  1692. },
  1693. {
  1694. name: "Megamacro",
  1695. height: math.unit(2, "miles")
  1696. }
  1697. ]
  1698. ))
  1699. characterMakers.push(() => makeCharacter(
  1700. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1701. {
  1702. front: {
  1703. height: math.unit(183, "cm"),
  1704. weight: math.unit(80, "kg"),
  1705. name: "Front",
  1706. image: {
  1707. source: "./media/characters/sofia-fluttertail/front.svg",
  1708. bottom: 0.01,
  1709. extra: 2154 / 2081
  1710. }
  1711. },
  1712. frontAlt: {
  1713. height: math.unit(183, "cm"),
  1714. weight: math.unit(80, "kg"),
  1715. name: "Front (alt)",
  1716. image: {
  1717. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1718. }
  1719. },
  1720. back: {
  1721. height: math.unit(183, "cm"),
  1722. weight: math.unit(80, "kg"),
  1723. name: "Back",
  1724. image: {
  1725. source: "./media/characters/sofia-fluttertail/back.svg"
  1726. }
  1727. },
  1728. kneeling: {
  1729. height: math.unit(125, "cm"),
  1730. weight: math.unit(80, "kg"),
  1731. name: "Kneeling",
  1732. image: {
  1733. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1734. extra: 1033 / 977,
  1735. bottom: 23.7 / 1057
  1736. }
  1737. },
  1738. maw: {
  1739. height: math.unit(183 / 5, "cm"),
  1740. name: "Maw",
  1741. image: {
  1742. source: "./media/characters/sofia-fluttertail/maw.svg"
  1743. }
  1744. },
  1745. mawcloseup: {
  1746. height: math.unit(183 / 5 * 0.41, "cm"),
  1747. name: "Maw (Closeup)",
  1748. image: {
  1749. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1750. }
  1751. },
  1752. paws: {
  1753. height: math.unit(1.17, "feet"),
  1754. name: "Paws",
  1755. image: {
  1756. source: "./media/characters/sofia-fluttertail/paws.svg",
  1757. extra: 851 / 851,
  1758. bottom: 17 / 868
  1759. }
  1760. },
  1761. },
  1762. [
  1763. {
  1764. name: "Normal",
  1765. height: math.unit(1.83, "meter")
  1766. },
  1767. {
  1768. name: "Size Thief",
  1769. height: math.unit(18, "feet")
  1770. },
  1771. {
  1772. name: "50 Foot Collie",
  1773. height: math.unit(50, "feet")
  1774. },
  1775. {
  1776. name: "Macro",
  1777. height: math.unit(96, "feet"),
  1778. default: true
  1779. },
  1780. {
  1781. name: "Megamerger",
  1782. height: math.unit(650, "feet")
  1783. },
  1784. ]
  1785. ))
  1786. characterMakers.push(() => makeCharacter(
  1787. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1788. {
  1789. front: {
  1790. height: math.unit(7, "feet"),
  1791. weight: math.unit(100, "kg"),
  1792. name: "Front",
  1793. image: {
  1794. source: "./media/characters/march/front.svg",
  1795. extra: 1,
  1796. bottom: 0.015
  1797. }
  1798. },
  1799. foot: {
  1800. height: math.unit(0.9, "feet"),
  1801. name: "Foot",
  1802. image: {
  1803. source: "./media/characters/march/foot.svg"
  1804. }
  1805. },
  1806. },
  1807. [
  1808. {
  1809. name: "Normal",
  1810. height: math.unit(7.9, "feet")
  1811. },
  1812. {
  1813. name: "Macro",
  1814. height: math.unit(220, "meters")
  1815. },
  1816. {
  1817. name: "Megamacro",
  1818. height: math.unit(2.98, "km"),
  1819. default: true
  1820. },
  1821. {
  1822. name: "Gigamacro",
  1823. height: math.unit(15963, "km")
  1824. },
  1825. {
  1826. name: "Teramacro",
  1827. height: math.unit(2980000000, "km")
  1828. },
  1829. {
  1830. name: "Examacro",
  1831. height: math.unit(250, "parsecs")
  1832. },
  1833. ]
  1834. ))
  1835. characterMakers.push(() => makeCharacter(
  1836. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1837. {
  1838. front: {
  1839. height: math.unit(6, "feet"),
  1840. weight: math.unit(60, "kg"),
  1841. name: "Front",
  1842. image: {
  1843. source: "./media/characters/noir/front.svg",
  1844. extra: 1,
  1845. bottom: 0.032
  1846. }
  1847. },
  1848. },
  1849. [
  1850. {
  1851. name: "Normal",
  1852. height: math.unit(6.6, "feet")
  1853. },
  1854. {
  1855. name: "Macro",
  1856. height: math.unit(500, "feet")
  1857. },
  1858. {
  1859. name: "Megamacro",
  1860. height: math.unit(2.5, "km"),
  1861. default: true
  1862. },
  1863. {
  1864. name: "Gigamacro",
  1865. height: math.unit(22500, "km")
  1866. },
  1867. {
  1868. name: "Teramacro",
  1869. height: math.unit(2500000000, "km")
  1870. },
  1871. {
  1872. name: "Examacro",
  1873. height: math.unit(200, "parsecs")
  1874. },
  1875. ]
  1876. ))
  1877. characterMakers.push(() => makeCharacter(
  1878. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1879. {
  1880. front: {
  1881. height: math.unit(7, "feet"),
  1882. weight: math.unit(100, "kg"),
  1883. name: "Front",
  1884. image: {
  1885. source: "./media/characters/okuri/front.svg",
  1886. extra: 1,
  1887. bottom: 0.037
  1888. }
  1889. },
  1890. back: {
  1891. height: math.unit(7, "feet"),
  1892. weight: math.unit(100, "kg"),
  1893. name: "Back",
  1894. image: {
  1895. source: "./media/characters/okuri/back.svg",
  1896. extra: 1,
  1897. bottom: 0.007
  1898. }
  1899. },
  1900. },
  1901. [
  1902. {
  1903. name: "Megamacro",
  1904. height: math.unit(100, "miles"),
  1905. default: true
  1906. },
  1907. ]
  1908. ))
  1909. characterMakers.push(() => makeCharacter(
  1910. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1911. {
  1912. front: {
  1913. height: math.unit(7, "feet"),
  1914. weight: math.unit(100, "kg"),
  1915. name: "Front",
  1916. image: {
  1917. source: "./media/characters/manny/front.svg",
  1918. extra: 1,
  1919. bottom: 0.06
  1920. }
  1921. },
  1922. back: {
  1923. height: math.unit(7, "feet"),
  1924. weight: math.unit(100, "kg"),
  1925. name: "Back",
  1926. image: {
  1927. source: "./media/characters/manny/back.svg",
  1928. extra: 1,
  1929. bottom: 0.014
  1930. }
  1931. },
  1932. },
  1933. [
  1934. {
  1935. name: "Normal",
  1936. height: math.unit(7, "feet"),
  1937. },
  1938. {
  1939. name: "Macro",
  1940. height: math.unit(78, "feet"),
  1941. default: true
  1942. },
  1943. {
  1944. name: "Macro+",
  1945. height: math.unit(300, "meters")
  1946. },
  1947. {
  1948. name: "Macro++",
  1949. height: math.unit(2400, "meters")
  1950. },
  1951. {
  1952. name: "Megamacro",
  1953. height: math.unit(5167, "meters")
  1954. },
  1955. {
  1956. name: "Gigamacro",
  1957. height: math.unit(41769, "miles")
  1958. },
  1959. ]
  1960. ))
  1961. characterMakers.push(() => makeCharacter(
  1962. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1963. {
  1964. front: {
  1965. height: math.unit(7, "feet"),
  1966. weight: math.unit(100, "kg"),
  1967. name: "Front",
  1968. image: {
  1969. source: "./media/characters/adake/front-1.svg"
  1970. }
  1971. },
  1972. frontAlt: {
  1973. height: math.unit(7, "feet"),
  1974. weight: math.unit(100, "kg"),
  1975. name: "Front (Alt)",
  1976. image: {
  1977. source: "./media/characters/adake/front-2.svg",
  1978. extra: 1,
  1979. bottom: 0.01
  1980. }
  1981. },
  1982. back: {
  1983. height: math.unit(7, "feet"),
  1984. weight: math.unit(100, "kg"),
  1985. name: "Back",
  1986. image: {
  1987. source: "./media/characters/adake/back.svg",
  1988. }
  1989. },
  1990. kneel: {
  1991. height: math.unit(5.385, "feet"),
  1992. weight: math.unit(100, "kg"),
  1993. name: "Kneeling",
  1994. image: {
  1995. source: "./media/characters/adake/kneel.svg",
  1996. bottom: 0.052
  1997. }
  1998. },
  1999. },
  2000. [
  2001. {
  2002. name: "Normal",
  2003. height: math.unit(7, "feet"),
  2004. },
  2005. {
  2006. name: "Macro",
  2007. height: math.unit(78, "feet"),
  2008. default: true
  2009. },
  2010. {
  2011. name: "Macro+",
  2012. height: math.unit(300, "meters")
  2013. },
  2014. {
  2015. name: "Macro++",
  2016. height: math.unit(2400, "meters")
  2017. },
  2018. {
  2019. name: "Megamacro",
  2020. height: math.unit(5167, "meters")
  2021. },
  2022. {
  2023. name: "Gigamacro",
  2024. height: math.unit(41769, "miles")
  2025. },
  2026. ]
  2027. ))
  2028. characterMakers.push(() => makeCharacter(
  2029. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2030. {
  2031. front: {
  2032. height: math.unit(1.65, "meters"),
  2033. weight: math.unit(50, "kg"),
  2034. name: "Front",
  2035. image: {
  2036. source: "./media/characters/elijah/front.svg",
  2037. extra: 858 / 830,
  2038. bottom: 95.5 / 953.8559
  2039. }
  2040. },
  2041. back: {
  2042. height: math.unit(1.65, "meters"),
  2043. weight: math.unit(50, "kg"),
  2044. name: "Back",
  2045. image: {
  2046. source: "./media/characters/elijah/back.svg",
  2047. extra: 895 / 850,
  2048. bottom: 5.3 / 897.956
  2049. }
  2050. },
  2051. frontNsfw: {
  2052. height: math.unit(1.65, "meters"),
  2053. weight: math.unit(50, "kg"),
  2054. name: "Front (NSFW)",
  2055. image: {
  2056. source: "./media/characters/elijah/front-nsfw.svg",
  2057. extra: 858 / 830,
  2058. bottom: 95.5 / 953.8559
  2059. }
  2060. },
  2061. backNsfw: {
  2062. height: math.unit(1.65, "meters"),
  2063. weight: math.unit(50, "kg"),
  2064. name: "Back (NSFW)",
  2065. image: {
  2066. source: "./media/characters/elijah/back-nsfw.svg",
  2067. extra: 895 / 850,
  2068. bottom: 5.3 / 897.956
  2069. }
  2070. },
  2071. dick: {
  2072. height: math.unit(1, "feet"),
  2073. name: "Dick",
  2074. image: {
  2075. source: "./media/characters/elijah/dick.svg"
  2076. }
  2077. },
  2078. beakOpen: {
  2079. height: math.unit(1.25, "feet"),
  2080. name: "Beak (Open)",
  2081. image: {
  2082. source: "./media/characters/elijah/beak-open.svg"
  2083. }
  2084. },
  2085. beakShut: {
  2086. height: math.unit(1.25, "feet"),
  2087. name: "Beak (Shut)",
  2088. image: {
  2089. source: "./media/characters/elijah/beak-shut.svg"
  2090. }
  2091. },
  2092. footFlexing: {
  2093. height: math.unit(1.61, "feet"),
  2094. name: "Foot (Flexing)",
  2095. image: {
  2096. source: "./media/characters/elijah/foot-flexing.svg"
  2097. }
  2098. },
  2099. footStepping: {
  2100. height: math.unit(1.44, "feet"),
  2101. name: "Foot (Stepping)",
  2102. image: {
  2103. source: "./media/characters/elijah/foot-stepping.svg"
  2104. }
  2105. },
  2106. plantigradeLeg: {
  2107. height: math.unit(2.34, "feet"),
  2108. name: "Plantigrade Leg",
  2109. image: {
  2110. source: "./media/characters/elijah/plantigrade-leg.svg"
  2111. }
  2112. },
  2113. plantigradeFootLeft: {
  2114. height: math.unit(0.9, "feet"),
  2115. name: "Plantigrade Foot (Left)",
  2116. image: {
  2117. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2118. }
  2119. },
  2120. plantigradeFootRight: {
  2121. height: math.unit(0.9, "feet"),
  2122. name: "Plantigrade Foot (Right)",
  2123. image: {
  2124. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2125. }
  2126. },
  2127. },
  2128. [
  2129. {
  2130. name: "Normal",
  2131. height: math.unit(1.65, "meters")
  2132. },
  2133. {
  2134. name: "Macro",
  2135. height: math.unit(55, "meters"),
  2136. default: true
  2137. },
  2138. {
  2139. name: "Macro+",
  2140. height: math.unit(105, "meters")
  2141. },
  2142. ]
  2143. ))
  2144. characterMakers.push(() => makeCharacter(
  2145. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2146. {
  2147. front: {
  2148. height: math.unit(11, "feet"),
  2149. weight: math.unit(80, "kg"),
  2150. name: "Front",
  2151. image: {
  2152. source: "./media/characters/rai/front.svg",
  2153. extra: 1,
  2154. bottom: 0.03
  2155. }
  2156. },
  2157. side: {
  2158. height: math.unit(11, "feet"),
  2159. weight: math.unit(80, "kg"),
  2160. name: "Side",
  2161. image: {
  2162. source: "./media/characters/rai/side.svg"
  2163. }
  2164. },
  2165. back: {
  2166. height: math.unit(11, "feet"),
  2167. weight: math.unit(80, "lb"),
  2168. name: "Back",
  2169. image: {
  2170. source: "./media/characters/rai/back.svg",
  2171. extra: 1,
  2172. bottom: 0.01
  2173. }
  2174. },
  2175. feral: {
  2176. height: math.unit(11, "feet"),
  2177. weight: math.unit(800, "lb"),
  2178. name: "Feral",
  2179. image: {
  2180. source: "./media/characters/rai/feral.svg",
  2181. extra: 1050 / 659,
  2182. bottom: 0.07
  2183. }
  2184. },
  2185. dragon: {
  2186. height: math.unit(23, "feet"),
  2187. weight: math.unit(50000, "lb"),
  2188. name: "Dragon",
  2189. image: {
  2190. source: "./media/characters/rai/dragon.svg",
  2191. extra: 2498 / 2030,
  2192. bottom: 85.2 / 2584
  2193. }
  2194. },
  2195. maw: {
  2196. height: math.unit(6 / 3.81416, "feet"),
  2197. name: "Maw",
  2198. image: {
  2199. source: "./media/characters/rai/maw.svg"
  2200. }
  2201. },
  2202. },
  2203. [
  2204. {
  2205. name: "Normal",
  2206. height: math.unit(11, "feet")
  2207. },
  2208. {
  2209. name: "Macro",
  2210. height: math.unit(302, "feet"),
  2211. default: true
  2212. },
  2213. ]
  2214. ))
  2215. characterMakers.push(() => makeCharacter(
  2216. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2217. {
  2218. frontDressed: {
  2219. height: math.unit(216, "feet"),
  2220. weight: math.unit(7000000, "lb"),
  2221. name: "Front (Dressed)",
  2222. image: {
  2223. source: "./media/characters/jazzy/front-dressed.svg",
  2224. extra: 2738 / 2651,
  2225. bottom: 41.8 / 2786
  2226. }
  2227. },
  2228. backDressed: {
  2229. height: math.unit(216, "feet"),
  2230. weight: math.unit(7000000, "lb"),
  2231. name: "Back (Dressed)",
  2232. image: {
  2233. source: "./media/characters/jazzy/back-dressed.svg",
  2234. extra: 2775 / 2673,
  2235. bottom: 36.8 / 2817
  2236. }
  2237. },
  2238. front: {
  2239. height: math.unit(216, "feet"),
  2240. weight: math.unit(7000000, "lb"),
  2241. name: "Front",
  2242. image: {
  2243. source: "./media/characters/jazzy/front.svg",
  2244. extra: 2738 / 2651,
  2245. bottom: 41.8 / 2786
  2246. }
  2247. },
  2248. back: {
  2249. height: math.unit(216, "feet"),
  2250. weight: math.unit(7000000, "lb"),
  2251. name: "Back",
  2252. image: {
  2253. source: "./media/characters/jazzy/back.svg",
  2254. extra: 2775 / 2673,
  2255. bottom: 36.8 / 2817
  2256. }
  2257. },
  2258. maw: {
  2259. height: math.unit(20, "feet"),
  2260. name: "Maw",
  2261. image: {
  2262. source: "./media/characters/jazzy/maw.svg"
  2263. }
  2264. },
  2265. paws: {
  2266. height: math.unit(27.5, "feet"),
  2267. name: "Paws",
  2268. image: {
  2269. source: "./media/characters/jazzy/paws.svg"
  2270. }
  2271. },
  2272. eye: {
  2273. height: math.unit(4.4, "feet"),
  2274. name: "Eye",
  2275. image: {
  2276. source: "./media/characters/jazzy/eye.svg"
  2277. }
  2278. },
  2279. droneOffense: {
  2280. height: math.unit(9.5, "inches"),
  2281. name: "Drone (Offense)",
  2282. image: {
  2283. source: "./media/characters/jazzy/drone-offense.svg"
  2284. }
  2285. },
  2286. droneRecon: {
  2287. height: math.unit(9.5, "inches"),
  2288. name: "Drone (Recon)",
  2289. image: {
  2290. source: "./media/characters/jazzy/drone-recon.svg"
  2291. }
  2292. },
  2293. droneDefense: {
  2294. height: math.unit(9.5, "inches"),
  2295. name: "Drone (Defense)",
  2296. image: {
  2297. source: "./media/characters/jazzy/drone-defense.svg"
  2298. }
  2299. },
  2300. },
  2301. [
  2302. {
  2303. name: "Macro",
  2304. height: math.unit(216, "feet"),
  2305. default: true
  2306. },
  2307. ]
  2308. ))
  2309. characterMakers.push(() => makeCharacter(
  2310. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2311. {
  2312. front: {
  2313. height: math.unit(7, "feet"),
  2314. weight: math.unit(80, "kg"),
  2315. name: "Front",
  2316. image: {
  2317. source: "./media/characters/flamm/front.svg",
  2318. extra: 1794 / 1677,
  2319. bottom: 31.7 / 1828.5
  2320. }
  2321. },
  2322. },
  2323. [
  2324. {
  2325. name: "Normal",
  2326. height: math.unit(9.5, "feet")
  2327. },
  2328. {
  2329. name: "Macro",
  2330. height: math.unit(200, "feet"),
  2331. default: true
  2332. },
  2333. ]
  2334. ))
  2335. characterMakers.push(() => makeCharacter(
  2336. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2337. {
  2338. front: {
  2339. height: math.unit(5 + 3/12, "feet"),
  2340. weight: math.unit(60, "kg"),
  2341. name: "Front",
  2342. image: {
  2343. source: "./media/characters/zephiro/front.svg",
  2344. extra: 2309 / 2162,
  2345. bottom: 0.069
  2346. }
  2347. },
  2348. side: {
  2349. height: math.unit(5 + 3/12, "feet"),
  2350. weight: math.unit(60, "kg"),
  2351. name: "Side",
  2352. image: {
  2353. source: "./media/characters/zephiro/side.svg",
  2354. extra: 2403 / 2279,
  2355. bottom: 0.015
  2356. }
  2357. },
  2358. back: {
  2359. height: math.unit(5 + 3/12, "feet"),
  2360. weight: math.unit(60, "kg"),
  2361. name: "Back",
  2362. image: {
  2363. source: "./media/characters/zephiro/back.svg",
  2364. extra: 2373 / 2244,
  2365. bottom: 0.013
  2366. }
  2367. },
  2368. hand: {
  2369. height: math.unit(0.68, "feet"),
  2370. name: "Hand",
  2371. image: {
  2372. source: "./media/characters/zephiro/hand.svg"
  2373. }
  2374. },
  2375. paw: {
  2376. height: math.unit(1, "feet"),
  2377. name: "Paw",
  2378. image: {
  2379. source: "./media/characters/zephiro/paw.svg"
  2380. }
  2381. },
  2382. beans: {
  2383. height: math.unit(0.93, "feet"),
  2384. name: "Beans",
  2385. image: {
  2386. source: "./media/characters/zephiro/beans.svg"
  2387. }
  2388. },
  2389. },
  2390. [
  2391. {
  2392. name: "Micro",
  2393. height: math.unit(3, "inches")
  2394. },
  2395. {
  2396. name: "Normal",
  2397. height: math.unit(5 + 3 / 12, "feet"),
  2398. default: true
  2399. },
  2400. {
  2401. name: "Macro",
  2402. height: math.unit(118, "feet")
  2403. },
  2404. ]
  2405. ))
  2406. characterMakers.push(() => makeCharacter(
  2407. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2408. {
  2409. front: {
  2410. height: math.unit(5, "feet"),
  2411. weight: math.unit(90, "kg"),
  2412. name: "Front",
  2413. image: {
  2414. source: "./media/characters/fory/front.svg",
  2415. extra: 2862 / 2674,
  2416. bottom: 180 / 3043.8
  2417. }
  2418. },
  2419. back: {
  2420. height: math.unit(5, "feet"),
  2421. weight: math.unit(90, "kg"),
  2422. name: "Back",
  2423. image: {
  2424. source: "./media/characters/fory/back.svg",
  2425. extra: 2962 / 2791,
  2426. bottom: 106 / 3071.8
  2427. }
  2428. },
  2429. foot: {
  2430. height: math.unit(2.14, "feet"),
  2431. name: "Foot",
  2432. image: {
  2433. source: "./media/characters/fory/foot.svg"
  2434. }
  2435. },
  2436. },
  2437. [
  2438. {
  2439. name: "Normal",
  2440. height: math.unit(5, "feet")
  2441. },
  2442. {
  2443. name: "Macro",
  2444. height: math.unit(50, "feet"),
  2445. default: true
  2446. },
  2447. {
  2448. name: "Megamacro",
  2449. height: math.unit(10, "miles")
  2450. },
  2451. {
  2452. name: "Gigamacro",
  2453. height: math.unit(5, "earths")
  2454. },
  2455. ]
  2456. ))
  2457. characterMakers.push(() => makeCharacter(
  2458. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2459. {
  2460. front: {
  2461. height: math.unit(7, "feet"),
  2462. weight: math.unit(90, "kg"),
  2463. name: "Front",
  2464. image: {
  2465. source: "./media/characters/kurrikage/front.svg",
  2466. extra: 1,
  2467. bottom: 0.035
  2468. }
  2469. },
  2470. back: {
  2471. height: math.unit(7, "feet"),
  2472. weight: math.unit(90, "lb"),
  2473. name: "Back",
  2474. image: {
  2475. source: "./media/characters/kurrikage/back.svg"
  2476. }
  2477. },
  2478. paw: {
  2479. height: math.unit(1.5, "feet"),
  2480. name: "Paw",
  2481. image: {
  2482. source: "./media/characters/kurrikage/paw.svg"
  2483. }
  2484. },
  2485. staff: {
  2486. height: math.unit(6.7, "feet"),
  2487. name: "Staff",
  2488. image: {
  2489. source: "./media/characters/kurrikage/staff.svg"
  2490. }
  2491. },
  2492. peek: {
  2493. height: math.unit(1.05, "feet"),
  2494. name: "Peeking",
  2495. image: {
  2496. source: "./media/characters/kurrikage/peek.svg",
  2497. bottom: 0.08
  2498. }
  2499. },
  2500. },
  2501. [
  2502. {
  2503. name: "Normal",
  2504. height: math.unit(12, "feet"),
  2505. default: true
  2506. },
  2507. {
  2508. name: "Big",
  2509. height: math.unit(20, "feet")
  2510. },
  2511. {
  2512. name: "Macro",
  2513. height: math.unit(500, "feet")
  2514. },
  2515. {
  2516. name: "Megamacro",
  2517. height: math.unit(20, "miles")
  2518. },
  2519. ]
  2520. ))
  2521. characterMakers.push(() => makeCharacter(
  2522. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2523. {
  2524. front: {
  2525. height: math.unit(6, "feet"),
  2526. weight: math.unit(75, "kg"),
  2527. name: "Front",
  2528. image: {
  2529. source: "./media/characters/shingo/front.svg",
  2530. extra: 706/681,
  2531. bottom: 11/717
  2532. }
  2533. },
  2534. frontAlt: {
  2535. height: math.unit(6, "feet"),
  2536. weight: math.unit(75, "kg"),
  2537. name: "Front (Alt)",
  2538. image: {
  2539. source: "./media/characters/shingo/front-alt.svg",
  2540. extra: 3511 / 3338,
  2541. bottom: 0.005
  2542. }
  2543. },
  2544. paw: {
  2545. height: math.unit(1, "feet"),
  2546. name: "Paw",
  2547. image: {
  2548. source: "./media/characters/shingo/paw.svg"
  2549. }
  2550. },
  2551. },
  2552. [
  2553. {
  2554. name: "Micro",
  2555. height: math.unit(4, "inches")
  2556. },
  2557. {
  2558. name: "Normal",
  2559. height: math.unit(6, "feet"),
  2560. default: true
  2561. },
  2562. {
  2563. name: "Macro",
  2564. height: math.unit(108, "feet")
  2565. },
  2566. {
  2567. name: "Macro+",
  2568. height: math.unit(1500, "feet")
  2569. },
  2570. ]
  2571. ))
  2572. characterMakers.push(() => makeCharacter(
  2573. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2574. {
  2575. side: {
  2576. height: math.unit(6, "feet"),
  2577. weight: math.unit(75, "kg"),
  2578. name: "Side",
  2579. image: {
  2580. source: "./media/characters/aigey/side.svg"
  2581. }
  2582. },
  2583. },
  2584. [
  2585. {
  2586. name: "Macro",
  2587. height: math.unit(200, "feet"),
  2588. default: true
  2589. },
  2590. {
  2591. name: "Megamacro",
  2592. height: math.unit(100, "miles")
  2593. },
  2594. ]
  2595. )
  2596. )
  2597. characterMakers.push(() => makeCharacter(
  2598. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2599. {
  2600. front: {
  2601. height: math.unit(5 + 5 / 12, "feet"),
  2602. weight: math.unit(75, "kg"),
  2603. name: "Front",
  2604. image: {
  2605. source: "./media/characters/natasha/front.svg",
  2606. extra: 859 / 824,
  2607. bottom: 23 / 879.6
  2608. }
  2609. },
  2610. frontNsfw: {
  2611. height: math.unit(5 + 5 / 12, "feet"),
  2612. weight: math.unit(75, "kg"),
  2613. name: "Front (NSFW)",
  2614. image: {
  2615. source: "./media/characters/natasha/front-nsfw.svg",
  2616. extra: 859 / 824,
  2617. bottom: 23 / 879.6
  2618. }
  2619. },
  2620. frontErect: {
  2621. height: math.unit(5 + 5 / 12, "feet"),
  2622. weight: math.unit(75, "kg"),
  2623. name: "Front (Erect)",
  2624. image: {
  2625. source: "./media/characters/natasha/front-erect.svg",
  2626. extra: 859 / 824,
  2627. bottom: 23 / 879.6
  2628. }
  2629. },
  2630. back: {
  2631. height: math.unit(5 + 5 / 12, "feet"),
  2632. weight: math.unit(75, "kg"),
  2633. name: "Back",
  2634. image: {
  2635. source: "./media/characters/natasha/back.svg",
  2636. extra: 887.9 / 852.6,
  2637. bottom: 9.7 / 896.4
  2638. }
  2639. },
  2640. backAlt: {
  2641. height: math.unit(5 + 5 / 12, "feet"),
  2642. weight: math.unit(75, "kg"),
  2643. name: "Back (Alt)",
  2644. image: {
  2645. source: "./media/characters/natasha/back-alt.svg",
  2646. extra: 1236.7 / 1192,
  2647. bottom: 22.3 / 1258.2
  2648. }
  2649. },
  2650. dick: {
  2651. height: math.unit(1.772, "feet"),
  2652. name: "Dick",
  2653. image: {
  2654. source: "./media/characters/natasha/dick.svg"
  2655. }
  2656. },
  2657. paw: {
  2658. height: math.unit(0.250, "meters"),
  2659. name: "Paw",
  2660. image: {
  2661. source: "./media/characters/natasha/paw.svg"
  2662. }
  2663. },
  2664. },
  2665. [
  2666. {
  2667. name: "Normal",
  2668. height: math.unit(5 + 5 / 12, "feet")
  2669. },
  2670. {
  2671. name: "Large",
  2672. height: math.unit(12, "feet")
  2673. },
  2674. {
  2675. name: "Macro",
  2676. height: math.unit(100, "feet"),
  2677. default: true
  2678. },
  2679. {
  2680. name: "Macro+",
  2681. height: math.unit(260, "feet")
  2682. },
  2683. {
  2684. name: "Macro++",
  2685. height: math.unit(1, "mile")
  2686. },
  2687. ]
  2688. ))
  2689. characterMakers.push(() => makeCharacter(
  2690. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2691. {
  2692. front: {
  2693. height: math.unit(6, "feet"),
  2694. weight: math.unit(75, "kg"),
  2695. name: "Front",
  2696. image: {
  2697. source: "./media/characters/malik/front.svg"
  2698. }
  2699. },
  2700. side: {
  2701. height: math.unit(6, "feet"),
  2702. weight: math.unit(75, "kg"),
  2703. name: "Side",
  2704. image: {
  2705. source: "./media/characters/malik/side.svg",
  2706. extra: 1.1539
  2707. }
  2708. },
  2709. back: {
  2710. height: math.unit(6, "feet"),
  2711. weight: math.unit(75, "kg"),
  2712. name: "Back",
  2713. image: {
  2714. source: "./media/characters/malik/back.svg"
  2715. }
  2716. },
  2717. },
  2718. [
  2719. {
  2720. name: "Macro",
  2721. height: math.unit(156, "feet"),
  2722. default: true
  2723. },
  2724. {
  2725. name: "Macro+",
  2726. height: math.unit(1188, "feet")
  2727. },
  2728. ]
  2729. ))
  2730. characterMakers.push(() => makeCharacter(
  2731. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2732. {
  2733. front: {
  2734. height: math.unit(6, "feet"),
  2735. weight: math.unit(75, "kg"),
  2736. name: "Front",
  2737. image: {
  2738. source: "./media/characters/sefer/front.svg",
  2739. extra: 848 / 659,
  2740. bottom: 28.3 / 876.442
  2741. }
  2742. },
  2743. back: {
  2744. height: math.unit(6, "feet"),
  2745. weight: math.unit(75, "kg"),
  2746. name: "Back",
  2747. image: {
  2748. source: "./media/characters/sefer/back.svg",
  2749. extra: 864 / 695,
  2750. bottom: 10 / 871
  2751. }
  2752. },
  2753. frontDressed: {
  2754. height: math.unit(6, "feet"),
  2755. weight: math.unit(75, "kg"),
  2756. name: "Front (Dressed)",
  2757. image: {
  2758. source: "./media/characters/sefer/front-dressed.svg",
  2759. extra: 839 / 653,
  2760. bottom: 37.6 / 878
  2761. }
  2762. },
  2763. },
  2764. [
  2765. {
  2766. name: "Normal",
  2767. height: math.unit(6, "feet"),
  2768. default: true
  2769. },
  2770. ]
  2771. ))
  2772. characterMakers.push(() => makeCharacter(
  2773. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2774. {
  2775. body: {
  2776. height: math.unit(2.2428, "meter"),
  2777. weight: math.unit(124.738, "kg"),
  2778. name: "Body",
  2779. image: {
  2780. extra: 1225 / 1050,
  2781. source: "./media/characters/north/front.svg"
  2782. }
  2783. }
  2784. },
  2785. [
  2786. {
  2787. name: "Micro",
  2788. height: math.unit(4, "inches")
  2789. },
  2790. {
  2791. name: "Macro",
  2792. height: math.unit(63, "meters")
  2793. },
  2794. {
  2795. name: "Megamacro",
  2796. height: math.unit(101, "miles"),
  2797. default: true
  2798. }
  2799. ]
  2800. ))
  2801. characterMakers.push(() => makeCharacter(
  2802. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2803. {
  2804. angled: {
  2805. height: math.unit(4, "meter"),
  2806. weight: math.unit(150, "kg"),
  2807. name: "Angled",
  2808. image: {
  2809. source: "./media/characters/talan/angled-sfw.svg",
  2810. bottom: 29 / 3734
  2811. }
  2812. },
  2813. angledNsfw: {
  2814. height: math.unit(4, "meter"),
  2815. weight: math.unit(150, "kg"),
  2816. name: "Angled (NSFW)",
  2817. image: {
  2818. source: "./media/characters/talan/angled-nsfw.svg",
  2819. bottom: 29 / 3734
  2820. }
  2821. },
  2822. frontNsfw: {
  2823. height: math.unit(4, "meter"),
  2824. weight: math.unit(150, "kg"),
  2825. name: "Front (NSFW)",
  2826. image: {
  2827. source: "./media/characters/talan/front-nsfw.svg",
  2828. bottom: 29 / 3734
  2829. }
  2830. },
  2831. sideNsfw: {
  2832. height: math.unit(4, "meter"),
  2833. weight: math.unit(150, "kg"),
  2834. name: "Side (NSFW)",
  2835. image: {
  2836. source: "./media/characters/talan/side-nsfw.svg",
  2837. bottom: 29 / 3734
  2838. }
  2839. },
  2840. back: {
  2841. height: math.unit(4, "meter"),
  2842. weight: math.unit(150, "kg"),
  2843. name: "Back",
  2844. image: {
  2845. source: "./media/characters/talan/back.svg"
  2846. }
  2847. },
  2848. dickBottom: {
  2849. height: math.unit(0.621, "meter"),
  2850. name: "Dick (Bottom)",
  2851. image: {
  2852. source: "./media/characters/talan/dick-bottom.svg"
  2853. }
  2854. },
  2855. dickTop: {
  2856. height: math.unit(0.621, "meter"),
  2857. name: "Dick (Top)",
  2858. image: {
  2859. source: "./media/characters/talan/dick-top.svg"
  2860. }
  2861. },
  2862. dickSide: {
  2863. height: math.unit(0.305, "meter"),
  2864. name: "Dick (Side)",
  2865. image: {
  2866. source: "./media/characters/talan/dick-side.svg"
  2867. }
  2868. },
  2869. dickFront: {
  2870. height: math.unit(0.305, "meter"),
  2871. name: "Dick (Front)",
  2872. image: {
  2873. source: "./media/characters/talan/dick-front.svg"
  2874. }
  2875. },
  2876. },
  2877. [
  2878. {
  2879. name: "Normal",
  2880. height: math.unit(4, "meters")
  2881. },
  2882. {
  2883. name: "Macro",
  2884. height: math.unit(100, "meters")
  2885. },
  2886. {
  2887. name: "Megamacro",
  2888. height: math.unit(2, "miles"),
  2889. default: true
  2890. },
  2891. {
  2892. name: "Gigamacro",
  2893. height: math.unit(5000, "miles")
  2894. },
  2895. {
  2896. name: "Teramacro",
  2897. height: math.unit(100, "parsecs")
  2898. }
  2899. ]
  2900. ))
  2901. characterMakers.push(() => makeCharacter(
  2902. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2903. {
  2904. front: {
  2905. height: math.unit(2, "meter"),
  2906. weight: math.unit(90, "kg"),
  2907. name: "Front",
  2908. image: {
  2909. source: "./media/characters/gael'rathus/front.svg"
  2910. }
  2911. },
  2912. frontAlt: {
  2913. height: math.unit(2, "meter"),
  2914. weight: math.unit(90, "kg"),
  2915. name: "Front (alt)",
  2916. image: {
  2917. source: "./media/characters/gael'rathus/front-alt.svg"
  2918. }
  2919. },
  2920. frontAlt2: {
  2921. height: math.unit(2, "meter"),
  2922. weight: math.unit(90, "kg"),
  2923. name: "Front (alt 2)",
  2924. image: {
  2925. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2926. }
  2927. }
  2928. },
  2929. [
  2930. {
  2931. name: "Normal",
  2932. height: math.unit(9, "feet"),
  2933. default: true
  2934. },
  2935. {
  2936. name: "Large",
  2937. height: math.unit(25, "feet")
  2938. },
  2939. {
  2940. name: "Macro",
  2941. height: math.unit(0.25, "miles")
  2942. },
  2943. {
  2944. name: "Megamacro",
  2945. height: math.unit(10, "miles")
  2946. }
  2947. ]
  2948. ))
  2949. characterMakers.push(() => makeCharacter(
  2950. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2951. {
  2952. side: {
  2953. height: math.unit(2, "meter"),
  2954. weight: math.unit(140, "kg"),
  2955. name: "Side",
  2956. image: {
  2957. source: "./media/characters/sosha/side.svg",
  2958. bottom: 0.042
  2959. }
  2960. },
  2961. },
  2962. [
  2963. {
  2964. name: "Normal",
  2965. height: math.unit(12, "feet"),
  2966. default: true
  2967. }
  2968. ]
  2969. ))
  2970. characterMakers.push(() => makeCharacter(
  2971. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2972. {
  2973. side: {
  2974. height: math.unit(5 + 5 / 12, "feet"),
  2975. weight: math.unit(170, "kg"),
  2976. name: "Side",
  2977. image: {
  2978. source: "./media/characters/runnola/side.svg",
  2979. extra: 741 / 448,
  2980. bottom: 0.05
  2981. }
  2982. },
  2983. },
  2984. [
  2985. {
  2986. name: "Small",
  2987. height: math.unit(3, "feet")
  2988. },
  2989. {
  2990. name: "Normal",
  2991. height: math.unit(5 + 5 / 12, "feet"),
  2992. default: true
  2993. },
  2994. {
  2995. name: "Big",
  2996. height: math.unit(10, "feet")
  2997. },
  2998. ]
  2999. ))
  3000. characterMakers.push(() => makeCharacter(
  3001. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3002. {
  3003. front: {
  3004. height: math.unit(2, "meter"),
  3005. weight: math.unit(50, "kg"),
  3006. name: "Front",
  3007. image: {
  3008. source: "./media/characters/kurribird/front.svg",
  3009. bottom: 0.015
  3010. }
  3011. },
  3012. frontAlt: {
  3013. height: math.unit(1.5, "meter"),
  3014. weight: math.unit(50, "kg"),
  3015. name: "Front (Alt)",
  3016. image: {
  3017. source: "./media/characters/kurribird/front-alt.svg",
  3018. extra: 1.45
  3019. }
  3020. },
  3021. },
  3022. [
  3023. {
  3024. name: "Normal",
  3025. height: math.unit(7, "feet")
  3026. },
  3027. {
  3028. name: "Big",
  3029. height: math.unit(12, "feet"),
  3030. default: true
  3031. },
  3032. {
  3033. name: "Macro",
  3034. height: math.unit(1500, "feet")
  3035. },
  3036. {
  3037. name: "Megamacro",
  3038. height: math.unit(2, "miles")
  3039. }
  3040. ]
  3041. ))
  3042. characterMakers.push(() => makeCharacter(
  3043. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3044. {
  3045. front: {
  3046. height: math.unit(2, "meter"),
  3047. weight: math.unit(80, "kg"),
  3048. name: "Front",
  3049. image: {
  3050. source: "./media/characters/elbial/front.svg",
  3051. extra: 1643 / 1556,
  3052. bottom: 60.2 / 1696
  3053. }
  3054. },
  3055. side: {
  3056. height: math.unit(2, "meter"),
  3057. weight: math.unit(80, "kg"),
  3058. name: "Side",
  3059. image: {
  3060. source: "./media/characters/elbial/side.svg",
  3061. extra: 1630 / 1565,
  3062. bottom: 71.5 / 1697
  3063. }
  3064. },
  3065. back: {
  3066. height: math.unit(2, "meter"),
  3067. weight: math.unit(80, "kg"),
  3068. name: "Back",
  3069. image: {
  3070. source: "./media/characters/elbial/back.svg",
  3071. extra: 1668 / 1595,
  3072. bottom: 5.6 / 1672
  3073. }
  3074. },
  3075. frontDressed: {
  3076. height: math.unit(2, "meter"),
  3077. weight: math.unit(80, "kg"),
  3078. name: "Front (Dressed)",
  3079. image: {
  3080. source: "./media/characters/elbial/front-dressed.svg",
  3081. extra: 1653 / 1584,
  3082. bottom: 57 / 1708
  3083. }
  3084. },
  3085. genitals: {
  3086. height: math.unit(2 / 3.367, "meter"),
  3087. name: "Genitals",
  3088. image: {
  3089. source: "./media/characters/elbial/genitals.svg"
  3090. }
  3091. },
  3092. },
  3093. [
  3094. {
  3095. name: "Large",
  3096. height: math.unit(100, "feet")
  3097. },
  3098. {
  3099. name: "Macro",
  3100. height: math.unit(500, "feet"),
  3101. default: true
  3102. },
  3103. {
  3104. name: "Megamacro",
  3105. height: math.unit(10, "miles")
  3106. },
  3107. {
  3108. name: "Gigamacro",
  3109. height: math.unit(25000, "miles")
  3110. },
  3111. {
  3112. name: "Full-Size",
  3113. height: math.unit(8000000, "gigaparsecs")
  3114. }
  3115. ]
  3116. ))
  3117. characterMakers.push(() => makeCharacter(
  3118. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3119. {
  3120. front: {
  3121. height: math.unit(2, "meter"),
  3122. weight: math.unit(60, "kg"),
  3123. name: "Front",
  3124. image: {
  3125. source: "./media/characters/noah/front.svg"
  3126. }
  3127. },
  3128. talons: {
  3129. height: math.unit(0.315, "meter"),
  3130. name: "Talons",
  3131. image: {
  3132. source: "./media/characters/noah/talons.svg"
  3133. }
  3134. }
  3135. },
  3136. [
  3137. {
  3138. name: "Large",
  3139. height: math.unit(50, "feet")
  3140. },
  3141. {
  3142. name: "Macro",
  3143. height: math.unit(750, "feet"),
  3144. default: true
  3145. },
  3146. {
  3147. name: "Megamacro",
  3148. height: math.unit(50, "miles")
  3149. },
  3150. {
  3151. name: "Gigamacro",
  3152. height: math.unit(100000, "miles")
  3153. },
  3154. {
  3155. name: "Full-Size",
  3156. height: math.unit(3000000000, "miles")
  3157. }
  3158. ]
  3159. ))
  3160. characterMakers.push(() => makeCharacter(
  3161. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3162. {
  3163. front: {
  3164. height: math.unit(2, "meter"),
  3165. weight: math.unit(80, "kg"),
  3166. name: "Front",
  3167. image: {
  3168. source: "./media/characters/natalya/front.svg"
  3169. }
  3170. },
  3171. back: {
  3172. height: math.unit(2, "meter"),
  3173. weight: math.unit(80, "kg"),
  3174. name: "Back",
  3175. image: {
  3176. source: "./media/characters/natalya/back.svg"
  3177. }
  3178. }
  3179. },
  3180. [
  3181. {
  3182. name: "Normal",
  3183. height: math.unit(150, "feet"),
  3184. default: true
  3185. },
  3186. {
  3187. name: "Megamacro",
  3188. height: math.unit(5, "miles")
  3189. },
  3190. {
  3191. name: "Full-Size",
  3192. height: math.unit(600, "kiloparsecs")
  3193. }
  3194. ]
  3195. ))
  3196. characterMakers.push(() => makeCharacter(
  3197. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3198. {
  3199. front: {
  3200. height: math.unit(2, "meter"),
  3201. weight: math.unit(50, "kg"),
  3202. name: "Front",
  3203. image: {
  3204. source: "./media/characters/erestrebah/front.svg",
  3205. extra: 208 / 193,
  3206. bottom: 0.055
  3207. }
  3208. },
  3209. back: {
  3210. height: math.unit(2, "meter"),
  3211. weight: math.unit(50, "kg"),
  3212. name: "Back",
  3213. image: {
  3214. source: "./media/characters/erestrebah/back.svg",
  3215. extra: 1.3
  3216. }
  3217. }
  3218. },
  3219. [
  3220. {
  3221. name: "Normal",
  3222. height: math.unit(10, "feet")
  3223. },
  3224. {
  3225. name: "Large",
  3226. height: math.unit(50, "feet"),
  3227. default: true
  3228. },
  3229. {
  3230. name: "Macro",
  3231. height: math.unit(300, "feet")
  3232. },
  3233. {
  3234. name: "Macro+",
  3235. height: math.unit(750, "feet")
  3236. },
  3237. {
  3238. name: "Megamacro",
  3239. height: math.unit(3, "miles")
  3240. }
  3241. ]
  3242. ))
  3243. characterMakers.push(() => makeCharacter(
  3244. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3245. {
  3246. front: {
  3247. height: math.unit(2, "meter"),
  3248. weight: math.unit(80, "kg"),
  3249. name: "Front",
  3250. image: {
  3251. source: "./media/characters/jennifer/front.svg",
  3252. bottom: 0.11,
  3253. extra: 1.16
  3254. }
  3255. },
  3256. frontAlt: {
  3257. height: math.unit(2, "meter"),
  3258. weight: math.unit(80, "kg"),
  3259. name: "Front (Alt)",
  3260. image: {
  3261. source: "./media/characters/jennifer/front-alt.svg"
  3262. }
  3263. }
  3264. },
  3265. [
  3266. {
  3267. name: "Canon Height",
  3268. height: math.unit(120, "feet"),
  3269. default: true
  3270. },
  3271. {
  3272. name: "Macro+",
  3273. height: math.unit(300, "feet")
  3274. },
  3275. {
  3276. name: "Megamacro",
  3277. height: math.unit(20000, "feet")
  3278. }
  3279. ]
  3280. ))
  3281. characterMakers.push(() => makeCharacter(
  3282. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3283. {
  3284. front: {
  3285. height: math.unit(2, "meter"),
  3286. weight: math.unit(50, "kg"),
  3287. name: "Front",
  3288. image: {
  3289. source: "./media/characters/kalista/front.svg",
  3290. extra: 1947 / 1700,
  3291. bottom: 76.6 / 1412.98
  3292. }
  3293. },
  3294. back: {
  3295. height: math.unit(2, "meter"),
  3296. weight: math.unit(50, "kg"),
  3297. name: "Back",
  3298. image: {
  3299. source: "./media/characters/kalista/back.svg",
  3300. extra: 1366 / 1156,
  3301. bottom: 33.9 / 1362.78
  3302. }
  3303. }
  3304. },
  3305. [
  3306. {
  3307. name: "Uncomfortably Small",
  3308. height: math.unit(10, "feet")
  3309. },
  3310. {
  3311. name: "Small",
  3312. height: math.unit(30, "feet")
  3313. },
  3314. {
  3315. name: "Macro",
  3316. height: math.unit(100, "feet"),
  3317. default: true
  3318. },
  3319. {
  3320. name: "Macro+",
  3321. height: math.unit(2000, "feet")
  3322. },
  3323. {
  3324. name: "True Form",
  3325. height: math.unit(8924, "miles")
  3326. }
  3327. ]
  3328. ))
  3329. characterMakers.push(() => makeCharacter(
  3330. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3331. {
  3332. front: {
  3333. height: math.unit(2, "meter"),
  3334. weight: math.unit(120, "kg"),
  3335. name: "Front",
  3336. image: {
  3337. source: "./media/characters/ggv/front.svg"
  3338. }
  3339. },
  3340. side: {
  3341. height: math.unit(2, "meter"),
  3342. weight: math.unit(120, "kg"),
  3343. name: "Side",
  3344. image: {
  3345. source: "./media/characters/ggv/side.svg"
  3346. }
  3347. }
  3348. },
  3349. [
  3350. {
  3351. name: "Extremely Puny",
  3352. height: math.unit(9 + 5 / 12, "feet")
  3353. },
  3354. {
  3355. name: "Horribly Small",
  3356. height: math.unit(47.7, "miles"),
  3357. default: true
  3358. },
  3359. {
  3360. name: "Reasonably Sized",
  3361. height: math.unit(25000, "parsecs")
  3362. },
  3363. {
  3364. name: "Slightly Uncompressed",
  3365. height: math.unit(7.77e31, "parsecs")
  3366. },
  3367. {
  3368. name: "Omniversal",
  3369. height: math.unit(1e300, "meters")
  3370. },
  3371. ]
  3372. ))
  3373. characterMakers.push(() => makeCharacter(
  3374. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3375. {
  3376. front: {
  3377. height: math.unit(2, "meter"),
  3378. weight: math.unit(75, "lb"),
  3379. name: "Front",
  3380. image: {
  3381. source: "./media/characters/napalm/front.svg"
  3382. }
  3383. },
  3384. back: {
  3385. height: math.unit(2, "meter"),
  3386. weight: math.unit(75, "lb"),
  3387. name: "Back",
  3388. image: {
  3389. source: "./media/characters/napalm/back.svg"
  3390. }
  3391. }
  3392. },
  3393. [
  3394. {
  3395. name: "Standard",
  3396. height: math.unit(55, "feet"),
  3397. default: true
  3398. }
  3399. ]
  3400. ))
  3401. characterMakers.push(() => makeCharacter(
  3402. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3403. {
  3404. front: {
  3405. height: math.unit(7 + 5 / 6, "feet"),
  3406. weight: math.unit(325, "lb"),
  3407. name: "Front",
  3408. image: {
  3409. source: "./media/characters/asana/front.svg",
  3410. extra: 1133 / 1060,
  3411. bottom: 15.2 / 1148.6
  3412. }
  3413. },
  3414. back: {
  3415. height: math.unit(7 + 5 / 6, "feet"),
  3416. weight: math.unit(325, "lb"),
  3417. name: "Back",
  3418. image: {
  3419. source: "./media/characters/asana/back.svg",
  3420. extra: 1114 / 1043,
  3421. bottom: 5 / 1120
  3422. }
  3423. },
  3424. dressedDark: {
  3425. height: math.unit(7 + 5 / 6, "feet"),
  3426. weight: math.unit(325, "lb"),
  3427. name: "Dressed (Dark)",
  3428. image: {
  3429. source: "./media/characters/asana/dressed-dark.svg",
  3430. extra: 1133 / 1060,
  3431. bottom: 15.2 / 1148.6
  3432. }
  3433. },
  3434. dressedLight: {
  3435. height: math.unit(7 + 5 / 6, "feet"),
  3436. weight: math.unit(325, "lb"),
  3437. name: "Dressed (Light)",
  3438. image: {
  3439. source: "./media/characters/asana/dressed-light.svg",
  3440. extra: 1133 / 1060,
  3441. bottom: 15.2 / 1148.6
  3442. }
  3443. },
  3444. },
  3445. [
  3446. {
  3447. name: "Standard",
  3448. height: math.unit(7 + 5 / 6, "feet"),
  3449. default: true
  3450. },
  3451. {
  3452. name: "Large",
  3453. height: math.unit(10, "meters")
  3454. },
  3455. {
  3456. name: "Macro",
  3457. height: math.unit(2500, "meters")
  3458. },
  3459. {
  3460. name: "Megamacro",
  3461. height: math.unit(5e6, "meters")
  3462. },
  3463. {
  3464. name: "Examacro",
  3465. height: math.unit(5e12, "lightyears")
  3466. },
  3467. {
  3468. name: "Max Size",
  3469. height: math.unit(1e31, "lightyears")
  3470. }
  3471. ]
  3472. ))
  3473. characterMakers.push(() => makeCharacter(
  3474. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3475. {
  3476. front: {
  3477. height: math.unit(2, "meter"),
  3478. weight: math.unit(60, "kg"),
  3479. name: "Front",
  3480. image: {
  3481. source: "./media/characters/ebony/front.svg",
  3482. bottom: 0.03,
  3483. extra: 1045 / 810 + 0.03
  3484. }
  3485. },
  3486. side: {
  3487. height: math.unit(2, "meter"),
  3488. weight: math.unit(60, "kg"),
  3489. name: "Side",
  3490. image: {
  3491. source: "./media/characters/ebony/side.svg",
  3492. bottom: 0.03,
  3493. extra: 1045 / 810 + 0.03
  3494. }
  3495. },
  3496. back: {
  3497. height: math.unit(2, "meter"),
  3498. weight: math.unit(60, "kg"),
  3499. name: "Back",
  3500. image: {
  3501. source: "./media/characters/ebony/back.svg",
  3502. bottom: 0.01,
  3503. extra: 1045 / 810 + 0.01
  3504. }
  3505. },
  3506. },
  3507. [
  3508. // TODO check why I did this lol
  3509. {
  3510. name: "Standard",
  3511. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3512. default: true
  3513. },
  3514. {
  3515. name: "Macro",
  3516. height: math.unit(200, "feet")
  3517. },
  3518. {
  3519. name: "Gigamacro",
  3520. height: math.unit(13000, "km")
  3521. }
  3522. ]
  3523. ))
  3524. characterMakers.push(() => makeCharacter(
  3525. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3526. {
  3527. front: {
  3528. height: math.unit(6, "feet"),
  3529. weight: math.unit(175, "lb"),
  3530. name: "Front",
  3531. image: {
  3532. source: "./media/characters/mountain/front.svg",
  3533. extra: 972 / 955,
  3534. bottom: 64 / 1036.6
  3535. }
  3536. },
  3537. back: {
  3538. height: math.unit(6, "feet"),
  3539. weight: math.unit(175, "lb"),
  3540. name: "Back",
  3541. image: {
  3542. source: "./media/characters/mountain/back.svg",
  3543. extra: 970 / 950,
  3544. bottom: 28.25 / 999
  3545. }
  3546. },
  3547. },
  3548. [
  3549. {
  3550. name: "Large",
  3551. height: math.unit(20, "meters")
  3552. },
  3553. {
  3554. name: "Macro",
  3555. height: math.unit(300, "meters")
  3556. },
  3557. {
  3558. name: "Gigamacro",
  3559. height: math.unit(10000, "km"),
  3560. default: true
  3561. },
  3562. {
  3563. name: "Examacro",
  3564. height: math.unit(10e9, "lightyears")
  3565. }
  3566. ]
  3567. ))
  3568. characterMakers.push(() => makeCharacter(
  3569. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3570. {
  3571. front: {
  3572. height: math.unit(8, "feet"),
  3573. weight: math.unit(500, "lb"),
  3574. name: "Front",
  3575. image: {
  3576. source: "./media/characters/rick/front.svg"
  3577. }
  3578. }
  3579. },
  3580. [
  3581. {
  3582. name: "Normal",
  3583. height: math.unit(8, "feet"),
  3584. default: true
  3585. },
  3586. {
  3587. name: "Macro",
  3588. height: math.unit(5, "km")
  3589. }
  3590. ]
  3591. ))
  3592. characterMakers.push(() => makeCharacter(
  3593. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3594. {
  3595. front: {
  3596. height: math.unit(8, "feet"),
  3597. weight: math.unit(120, "lb"),
  3598. name: "Front",
  3599. image: {
  3600. source: "./media/characters/ona/front.svg"
  3601. }
  3602. },
  3603. frontAlt: {
  3604. height: math.unit(8, "feet"),
  3605. weight: math.unit(120, "lb"),
  3606. name: "Front (Alt)",
  3607. image: {
  3608. source: "./media/characters/ona/front-alt.svg"
  3609. }
  3610. },
  3611. back: {
  3612. height: math.unit(8, "feet"),
  3613. weight: math.unit(120, "lb"),
  3614. name: "Back",
  3615. image: {
  3616. source: "./media/characters/ona/back.svg"
  3617. }
  3618. },
  3619. foot: {
  3620. height: math.unit(1.1, "feet"),
  3621. name: "Foot",
  3622. image: {
  3623. source: "./media/characters/ona/foot.svg"
  3624. }
  3625. }
  3626. },
  3627. [
  3628. {
  3629. name: "Megamacro",
  3630. height: math.unit(70, "km"),
  3631. default: true
  3632. },
  3633. {
  3634. name: "Gigamacro",
  3635. height: math.unit(681818, "miles")
  3636. },
  3637. {
  3638. name: "Examacro",
  3639. height: math.unit(3800000, "lightyears")
  3640. },
  3641. ]
  3642. ))
  3643. characterMakers.push(() => makeCharacter(
  3644. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3645. {
  3646. front: {
  3647. height: math.unit(12, "feet"),
  3648. weight: math.unit(3000, "lb"),
  3649. name: "Front",
  3650. image: {
  3651. source: "./media/characters/mech/front.svg",
  3652. extra: 2900 / 2770,
  3653. bottom: 110 / 3010
  3654. }
  3655. },
  3656. back: {
  3657. height: math.unit(12, "feet"),
  3658. weight: math.unit(3000, "lb"),
  3659. name: "Back",
  3660. image: {
  3661. source: "./media/characters/mech/back.svg",
  3662. extra: 3011 / 2890,
  3663. bottom: 94 / 3105
  3664. }
  3665. },
  3666. maw: {
  3667. height: math.unit(3.07, "feet"),
  3668. name: "Maw",
  3669. image: {
  3670. source: "./media/characters/mech/maw.svg"
  3671. }
  3672. },
  3673. head: {
  3674. height: math.unit(2.82, "feet"),
  3675. name: "Head",
  3676. image: {
  3677. source: "./media/characters/mech/head.svg"
  3678. }
  3679. },
  3680. dick: {
  3681. height: math.unit(1.43, "feet"),
  3682. name: "Dick",
  3683. image: {
  3684. source: "./media/characters/mech/dick.svg"
  3685. }
  3686. },
  3687. },
  3688. [
  3689. {
  3690. name: "Normal",
  3691. height: math.unit(12, "feet")
  3692. },
  3693. {
  3694. name: "Macro",
  3695. height: math.unit(300, "feet"),
  3696. default: true
  3697. },
  3698. {
  3699. name: "Macro+",
  3700. height: math.unit(1500, "feet")
  3701. },
  3702. ]
  3703. ))
  3704. characterMakers.push(() => makeCharacter(
  3705. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3706. {
  3707. front: {
  3708. height: math.unit(1.3, "meter"),
  3709. weight: math.unit(30, "kg"),
  3710. name: "Front",
  3711. image: {
  3712. source: "./media/characters/gregory/front.svg",
  3713. }
  3714. }
  3715. },
  3716. [
  3717. {
  3718. name: "Normal",
  3719. height: math.unit(1.3, "meter"),
  3720. default: true
  3721. },
  3722. {
  3723. name: "Macro",
  3724. height: math.unit(20, "meter")
  3725. }
  3726. ]
  3727. ))
  3728. characterMakers.push(() => makeCharacter(
  3729. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3730. {
  3731. front: {
  3732. height: math.unit(2.8, "meter"),
  3733. weight: math.unit(200, "kg"),
  3734. name: "Front",
  3735. image: {
  3736. source: "./media/characters/elory/front.svg",
  3737. }
  3738. }
  3739. },
  3740. [
  3741. {
  3742. name: "Normal",
  3743. height: math.unit(2.8, "meter"),
  3744. default: true
  3745. },
  3746. {
  3747. name: "Macro",
  3748. height: math.unit(38, "meter")
  3749. }
  3750. ]
  3751. ))
  3752. characterMakers.push(() => makeCharacter(
  3753. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3754. {
  3755. front: {
  3756. height: math.unit(470, "feet"),
  3757. weight: math.unit(924, "tons"),
  3758. name: "Front",
  3759. image: {
  3760. source: "./media/characters/angelpatamon/front.svg",
  3761. }
  3762. }
  3763. },
  3764. [
  3765. {
  3766. name: "Normal",
  3767. height: math.unit(470, "feet"),
  3768. default: true
  3769. },
  3770. {
  3771. name: "Deity Size I",
  3772. height: math.unit(28651.2, "km")
  3773. },
  3774. {
  3775. name: "Deity Size II",
  3776. height: math.unit(171907.2, "km")
  3777. }
  3778. ]
  3779. ))
  3780. characterMakers.push(() => makeCharacter(
  3781. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3782. {
  3783. side: {
  3784. height: math.unit(7.2, "meter"),
  3785. weight: math.unit(8.2, "tons"),
  3786. name: "Side",
  3787. image: {
  3788. source: "./media/characters/cryae/side.svg",
  3789. extra: 3500 / 1500
  3790. }
  3791. }
  3792. },
  3793. [
  3794. {
  3795. name: "Normal",
  3796. height: math.unit(7.2, "meter"),
  3797. default: true
  3798. }
  3799. ]
  3800. ))
  3801. characterMakers.push(() => makeCharacter(
  3802. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3803. {
  3804. front: {
  3805. height: math.unit(6, "feet"),
  3806. weight: math.unit(175, "lb"),
  3807. name: "Front",
  3808. image: {
  3809. source: "./media/characters/xera/front.svg",
  3810. extra: 2377 / 1972,
  3811. bottom: 75.5 / 2452
  3812. }
  3813. },
  3814. side: {
  3815. height: math.unit(6, "feet"),
  3816. weight: math.unit(175, "lb"),
  3817. name: "Side",
  3818. image: {
  3819. source: "./media/characters/xera/side.svg",
  3820. extra: 2345 / 2019,
  3821. bottom: 39.7 / 2384
  3822. }
  3823. },
  3824. back: {
  3825. height: math.unit(6, "feet"),
  3826. weight: math.unit(175, "lb"),
  3827. name: "Back",
  3828. image: {
  3829. source: "./media/characters/xera/back.svg",
  3830. extra: 2095 / 1984,
  3831. bottom: 67 / 2166
  3832. }
  3833. },
  3834. },
  3835. [
  3836. {
  3837. name: "Small",
  3838. height: math.unit(10, "feet")
  3839. },
  3840. {
  3841. name: "Macro",
  3842. height: math.unit(500, "meters"),
  3843. default: true
  3844. },
  3845. {
  3846. name: "Macro+",
  3847. height: math.unit(10, "km")
  3848. },
  3849. {
  3850. name: "Gigamacro",
  3851. height: math.unit(25000, "km")
  3852. },
  3853. {
  3854. name: "Teramacro",
  3855. height: math.unit(3e6, "km")
  3856. }
  3857. ]
  3858. ))
  3859. characterMakers.push(() => makeCharacter(
  3860. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3861. {
  3862. front: {
  3863. height: math.unit(6, "feet"),
  3864. weight: math.unit(175, "lb"),
  3865. name: "Front",
  3866. image: {
  3867. source: "./media/characters/nebula/front.svg",
  3868. extra: 2566 / 2362,
  3869. bottom: 81 / 2644
  3870. }
  3871. }
  3872. },
  3873. [
  3874. {
  3875. name: "Small",
  3876. height: math.unit(4.5, "meters")
  3877. },
  3878. {
  3879. name: "Macro",
  3880. height: math.unit(1500, "meters"),
  3881. default: true
  3882. },
  3883. {
  3884. name: "Megamacro",
  3885. height: math.unit(150, "km")
  3886. },
  3887. {
  3888. name: "Gigamacro",
  3889. height: math.unit(27000, "km")
  3890. }
  3891. ]
  3892. ))
  3893. characterMakers.push(() => makeCharacter(
  3894. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3895. {
  3896. front: {
  3897. height: math.unit(6, "feet"),
  3898. weight: math.unit(225, "lb"),
  3899. name: "Front",
  3900. image: {
  3901. source: "./media/characters/abysgar/front.svg"
  3902. }
  3903. }
  3904. },
  3905. [
  3906. {
  3907. name: "Small",
  3908. height: math.unit(4.5, "meters")
  3909. },
  3910. {
  3911. name: "Macro",
  3912. height: math.unit(1250, "meters"),
  3913. default: true
  3914. },
  3915. {
  3916. name: "Megamacro",
  3917. height: math.unit(125, "km")
  3918. },
  3919. {
  3920. name: "Gigamacro",
  3921. height: math.unit(26000, "km")
  3922. }
  3923. ]
  3924. ))
  3925. characterMakers.push(() => makeCharacter(
  3926. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3927. {
  3928. front: {
  3929. height: math.unit(6, "feet"),
  3930. weight: math.unit(180, "lb"),
  3931. name: "Front",
  3932. image: {
  3933. source: "./media/characters/yakuz/front.svg"
  3934. }
  3935. }
  3936. },
  3937. [
  3938. {
  3939. name: "Small",
  3940. height: math.unit(5, "meters")
  3941. },
  3942. {
  3943. name: "Macro",
  3944. height: math.unit(1500, "meters"),
  3945. default: true
  3946. },
  3947. {
  3948. name: "Megamacro",
  3949. height: math.unit(200, "km")
  3950. },
  3951. {
  3952. name: "Gigamacro",
  3953. height: math.unit(100000, "km")
  3954. }
  3955. ]
  3956. ))
  3957. characterMakers.push(() => makeCharacter(
  3958. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3959. {
  3960. front: {
  3961. height: math.unit(6, "feet"),
  3962. weight: math.unit(175, "lb"),
  3963. name: "Front",
  3964. image: {
  3965. source: "./media/characters/mirova/front.svg",
  3966. extra: 3334 / 3071,
  3967. bottom: 42 / 3375.6
  3968. }
  3969. }
  3970. },
  3971. [
  3972. {
  3973. name: "Small",
  3974. height: math.unit(5, "meters")
  3975. },
  3976. {
  3977. name: "Macro",
  3978. height: math.unit(900, "meters"),
  3979. default: true
  3980. },
  3981. {
  3982. name: "Megamacro",
  3983. height: math.unit(135, "km")
  3984. },
  3985. {
  3986. name: "Gigamacro",
  3987. height: math.unit(20000, "km")
  3988. }
  3989. ]
  3990. ))
  3991. characterMakers.push(() => makeCharacter(
  3992. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3993. {
  3994. side: {
  3995. height: math.unit(28.35, "feet"),
  3996. weight: math.unit(99.75, "tons"),
  3997. name: "Side",
  3998. image: {
  3999. source: "./media/characters/asana-mech/side.svg",
  4000. extra: 923 / 699,
  4001. bottom: 50 / 975
  4002. }
  4003. },
  4004. chaingun: {
  4005. height: math.unit(7, "feet"),
  4006. weight: math.unit(2400, "lb"),
  4007. name: "Chaingun",
  4008. image: {
  4009. source: "./media/characters/asana-mech/chaingun.svg"
  4010. }
  4011. },
  4012. laser: {
  4013. height: math.unit(7.12, "feet"),
  4014. weight: math.unit(2000, "lb"),
  4015. name: "Laser",
  4016. image: {
  4017. source: "./media/characters/asana-mech/laser.svg"
  4018. }
  4019. },
  4020. },
  4021. [
  4022. {
  4023. name: "Normal",
  4024. height: math.unit(28.35, "feet"),
  4025. default: true
  4026. },
  4027. {
  4028. name: "Macro",
  4029. height: math.unit(2500, "feet")
  4030. },
  4031. {
  4032. name: "Megamacro",
  4033. height: math.unit(25, "miles")
  4034. },
  4035. {
  4036. name: "Examacro",
  4037. height: math.unit(6e8, "lightyears")
  4038. },
  4039. ]
  4040. ))
  4041. characterMakers.push(() => makeCharacter(
  4042. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4043. {
  4044. front: {
  4045. height: math.unit(5, "meters"),
  4046. weight: math.unit(1000, "kg"),
  4047. name: "Front",
  4048. image: {
  4049. source: "./media/characters/asche/front.svg",
  4050. extra: 1258 / 1190,
  4051. bottom: 47 / 1305
  4052. }
  4053. },
  4054. frontUnderwear: {
  4055. height: math.unit(5, "meters"),
  4056. weight: math.unit(1000, "kg"),
  4057. name: "Front (Underwear)",
  4058. image: {
  4059. source: "./media/characters/asche/front-underwear.svg",
  4060. extra: 1258 / 1190,
  4061. bottom: 47 / 1305
  4062. }
  4063. },
  4064. frontDressed: {
  4065. height: math.unit(5, "meters"),
  4066. weight: math.unit(1000, "kg"),
  4067. name: "Front (Dressed)",
  4068. image: {
  4069. source: "./media/characters/asche/front-dressed.svg",
  4070. extra: 1258 / 1190,
  4071. bottom: 47 / 1305
  4072. }
  4073. },
  4074. frontArmor: {
  4075. height: math.unit(5, "meters"),
  4076. weight: math.unit(1000, "kg"),
  4077. name: "Front (Armored)",
  4078. image: {
  4079. source: "./media/characters/asche/front-armored.svg",
  4080. extra: 1374 / 1308,
  4081. bottom: 23 / 1397
  4082. }
  4083. },
  4084. mp724: {
  4085. height: math.unit(0.96, "meters"),
  4086. weight: math.unit(38, "kg"),
  4087. name: "H&K MP724",
  4088. image: {
  4089. source: "./media/characters/asche/h&k-mp724.svg"
  4090. }
  4091. },
  4092. side: {
  4093. height: math.unit(5, "meters"),
  4094. weight: math.unit(1000, "kg"),
  4095. name: "Side",
  4096. image: {
  4097. source: "./media/characters/asche/side.svg",
  4098. extra: 1717 / 1609,
  4099. bottom: 0.005
  4100. }
  4101. },
  4102. back: {
  4103. height: math.unit(5, "meters"),
  4104. weight: math.unit(1000, "kg"),
  4105. name: "Back",
  4106. image: {
  4107. source: "./media/characters/asche/back.svg",
  4108. extra: 1570 / 1501
  4109. }
  4110. },
  4111. },
  4112. [
  4113. {
  4114. name: "DEFCON 5",
  4115. height: math.unit(5, "meters")
  4116. },
  4117. {
  4118. name: "DEFCON 4",
  4119. height: math.unit(500, "meters"),
  4120. default: true
  4121. },
  4122. {
  4123. name: "DEFCON 3",
  4124. height: math.unit(5, "km")
  4125. },
  4126. {
  4127. name: "DEFCON 2",
  4128. height: math.unit(500, "km")
  4129. },
  4130. {
  4131. name: "DEFCON 1",
  4132. height: math.unit(500000, "km")
  4133. },
  4134. {
  4135. name: "DEFCON 0",
  4136. height: math.unit(3, "gigaparsecs")
  4137. },
  4138. ]
  4139. ))
  4140. characterMakers.push(() => makeCharacter(
  4141. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4142. {
  4143. front: {
  4144. height: math.unit(2, "meters"),
  4145. weight: math.unit(76, "kg"),
  4146. name: "Front",
  4147. image: {
  4148. source: "./media/characters/gale/front.svg"
  4149. }
  4150. },
  4151. frontAlt1: {
  4152. height: math.unit(2, "meters"),
  4153. weight: math.unit(76, "kg"),
  4154. name: "Front (Alt 1)",
  4155. image: {
  4156. source: "./media/characters/gale/front-alt-1.svg"
  4157. }
  4158. },
  4159. frontAlt2: {
  4160. height: math.unit(2, "meters"),
  4161. weight: math.unit(76, "kg"),
  4162. name: "Front (Alt 2)",
  4163. image: {
  4164. source: "./media/characters/gale/front-alt-2.svg"
  4165. }
  4166. },
  4167. },
  4168. [
  4169. {
  4170. name: "Normal",
  4171. height: math.unit(7, "feet")
  4172. },
  4173. {
  4174. name: "Macro",
  4175. height: math.unit(150, "feet"),
  4176. default: true
  4177. },
  4178. {
  4179. name: "Macro+",
  4180. height: math.unit(300, "feet")
  4181. },
  4182. ]
  4183. ))
  4184. characterMakers.push(() => makeCharacter(
  4185. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4186. {
  4187. front: {
  4188. height: math.unit(2, "meters"),
  4189. weight: math.unit(76, "kg"),
  4190. name: "Front",
  4191. image: {
  4192. source: "./media/characters/draylen/front.svg"
  4193. }
  4194. }
  4195. },
  4196. [
  4197. {
  4198. name: "Macro",
  4199. height: math.unit(150, "feet"),
  4200. default: true
  4201. }
  4202. ]
  4203. ))
  4204. characterMakers.push(() => makeCharacter(
  4205. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4206. {
  4207. front: {
  4208. height: math.unit(7 + 9 / 12, "feet"),
  4209. weight: math.unit(379, "lbs"),
  4210. name: "Front",
  4211. image: {
  4212. source: "./media/characters/chez/front.svg"
  4213. }
  4214. },
  4215. side: {
  4216. height: math.unit(7 + 9 / 12, "feet"),
  4217. weight: math.unit(379, "lbs"),
  4218. name: "Side",
  4219. image: {
  4220. source: "./media/characters/chez/side.svg"
  4221. }
  4222. }
  4223. },
  4224. [
  4225. {
  4226. name: "Normal",
  4227. height: math.unit(7 + 9 / 12, "feet"),
  4228. default: true
  4229. },
  4230. {
  4231. name: "God King",
  4232. height: math.unit(9750000, "meters")
  4233. }
  4234. ]
  4235. ))
  4236. characterMakers.push(() => makeCharacter(
  4237. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4238. {
  4239. front: {
  4240. height: math.unit(6, "feet"),
  4241. weight: math.unit(275, "lbs"),
  4242. name: "Front",
  4243. image: {
  4244. source: "./media/characters/kaylum/front.svg",
  4245. bottom: 0.01,
  4246. extra: 1166 / 1031
  4247. }
  4248. },
  4249. frontWingless: {
  4250. height: math.unit(6, "feet"),
  4251. weight: math.unit(275, "lbs"),
  4252. name: "Front (Wingless)",
  4253. image: {
  4254. source: "./media/characters/kaylum/front-wingless.svg",
  4255. bottom: 0.01,
  4256. extra: 1117 / 1031
  4257. }
  4258. }
  4259. },
  4260. [
  4261. {
  4262. name: "Normal",
  4263. height: math.unit(3.05, "meters")
  4264. },
  4265. {
  4266. name: "Master",
  4267. height: math.unit(5.5, "meters")
  4268. },
  4269. {
  4270. name: "Rampage",
  4271. height: math.unit(19, "meters")
  4272. },
  4273. {
  4274. name: "Macro Lite",
  4275. height: math.unit(37, "meters")
  4276. },
  4277. {
  4278. name: "Hyper Predator",
  4279. height: math.unit(61, "meters")
  4280. },
  4281. {
  4282. name: "Macro",
  4283. height: math.unit(138, "meters"),
  4284. default: true
  4285. }
  4286. ]
  4287. ))
  4288. characterMakers.push(() => makeCharacter(
  4289. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4290. {
  4291. front: {
  4292. height: math.unit(6, "feet"),
  4293. weight: math.unit(150, "lbs"),
  4294. name: "Front",
  4295. image: {
  4296. source: "./media/characters/geta/front.svg"
  4297. }
  4298. }
  4299. },
  4300. [
  4301. {
  4302. name: "Micro",
  4303. height: math.unit(3, "inches"),
  4304. default: true
  4305. },
  4306. {
  4307. name: "Normal",
  4308. height: math.unit(5 + 5 / 12, "feet")
  4309. }
  4310. ]
  4311. ))
  4312. characterMakers.push(() => makeCharacter(
  4313. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4314. {
  4315. front: {
  4316. height: math.unit(6, "feet"),
  4317. weight: math.unit(300, "lbs"),
  4318. name: "Front",
  4319. image: {
  4320. source: "./media/characters/tyrnn/front.svg"
  4321. }
  4322. }
  4323. },
  4324. [
  4325. {
  4326. name: "Main Height",
  4327. height: math.unit(355, "feet"),
  4328. default: true
  4329. },
  4330. {
  4331. name: "Fave. Height",
  4332. height: math.unit(2400, "feet")
  4333. }
  4334. ]
  4335. ))
  4336. characterMakers.push(() => makeCharacter(
  4337. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4338. {
  4339. front: {
  4340. height: math.unit(6, "feet"),
  4341. weight: math.unit(300, "lbs"),
  4342. name: "Front",
  4343. image: {
  4344. source: "./media/characters/appledectomy/front.svg"
  4345. }
  4346. }
  4347. },
  4348. [
  4349. {
  4350. name: "Macro",
  4351. height: math.unit(2500, "feet")
  4352. },
  4353. {
  4354. name: "Megamacro",
  4355. height: math.unit(50, "miles"),
  4356. default: true
  4357. },
  4358. {
  4359. name: "Gigamacro",
  4360. height: math.unit(5000, "miles")
  4361. },
  4362. {
  4363. name: "Teramacro",
  4364. height: math.unit(250000, "miles")
  4365. },
  4366. ]
  4367. ))
  4368. characterMakers.push(() => makeCharacter(
  4369. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4370. {
  4371. front: {
  4372. height: math.unit(6, "feet"),
  4373. weight: math.unit(200, "lbs"),
  4374. name: "Front",
  4375. image: {
  4376. source: "./media/characters/vulpes/front.svg",
  4377. extra: 573 / 543,
  4378. bottom: 0.033
  4379. }
  4380. },
  4381. side: {
  4382. height: math.unit(6, "feet"),
  4383. weight: math.unit(200, "lbs"),
  4384. name: "Side",
  4385. image: {
  4386. source: "./media/characters/vulpes/side.svg",
  4387. extra: 577 / 549,
  4388. bottom: 11 / 588
  4389. }
  4390. },
  4391. back: {
  4392. height: math.unit(6, "feet"),
  4393. weight: math.unit(200, "lbs"),
  4394. name: "Back",
  4395. image: {
  4396. source: "./media/characters/vulpes/back.svg",
  4397. extra: 573 / 549,
  4398. bottom: 20 / 593
  4399. }
  4400. },
  4401. feet: {
  4402. height: math.unit(1.276, "feet"),
  4403. name: "Feet",
  4404. image: {
  4405. source: "./media/characters/vulpes/feet.svg"
  4406. }
  4407. },
  4408. maw: {
  4409. height: math.unit(1.18, "feet"),
  4410. name: "Maw",
  4411. image: {
  4412. source: "./media/characters/vulpes/maw.svg"
  4413. }
  4414. },
  4415. },
  4416. [
  4417. {
  4418. name: "Micro",
  4419. height: math.unit(2, "inches")
  4420. },
  4421. {
  4422. name: "Normal",
  4423. height: math.unit(6.3, "feet")
  4424. },
  4425. {
  4426. name: "Macro",
  4427. height: math.unit(850, "feet")
  4428. },
  4429. {
  4430. name: "Megamacro",
  4431. height: math.unit(7500, "feet"),
  4432. default: true
  4433. },
  4434. {
  4435. name: "Gigamacro",
  4436. height: math.unit(570000, "miles")
  4437. }
  4438. ]
  4439. ))
  4440. characterMakers.push(() => makeCharacter(
  4441. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4442. {
  4443. front: {
  4444. height: math.unit(6, "feet"),
  4445. weight: math.unit(210, "lbs"),
  4446. name: "Front",
  4447. image: {
  4448. source: "./media/characters/rain-fallen/front.svg"
  4449. }
  4450. },
  4451. side: {
  4452. height: math.unit(6, "feet"),
  4453. weight: math.unit(210, "lbs"),
  4454. name: "Side",
  4455. image: {
  4456. source: "./media/characters/rain-fallen/side.svg"
  4457. }
  4458. },
  4459. back: {
  4460. height: math.unit(6, "feet"),
  4461. weight: math.unit(210, "lbs"),
  4462. name: "Back",
  4463. image: {
  4464. source: "./media/characters/rain-fallen/back.svg"
  4465. }
  4466. },
  4467. feral: {
  4468. height: math.unit(9, "feet"),
  4469. weight: math.unit(700, "lbs"),
  4470. name: "Feral",
  4471. image: {
  4472. source: "./media/characters/rain-fallen/feral.svg"
  4473. }
  4474. },
  4475. },
  4476. [
  4477. {
  4478. name: "Meddling with Mortals",
  4479. height: math.unit(8 + 8/12, "feet")
  4480. },
  4481. {
  4482. name: "Normal",
  4483. height: math.unit(5, "meter")
  4484. },
  4485. {
  4486. name: "Macro",
  4487. height: math.unit(150, "meter"),
  4488. default: true
  4489. },
  4490. {
  4491. name: "Megamacro",
  4492. height: math.unit(278e6, "meter")
  4493. },
  4494. {
  4495. name: "Gigamacro",
  4496. height: math.unit(2e9, "meter")
  4497. },
  4498. {
  4499. name: "Teramacro",
  4500. height: math.unit(8e12, "meter")
  4501. },
  4502. {
  4503. name: "Devourer",
  4504. height: math.unit(14, "zettameters")
  4505. },
  4506. {
  4507. name: "Scarlet King",
  4508. height: math.unit(18, "yottameters")
  4509. },
  4510. {
  4511. name: "Void",
  4512. height: math.unit(1e88, "yottameters")
  4513. }
  4514. ]
  4515. ))
  4516. characterMakers.push(() => makeCharacter(
  4517. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4518. {
  4519. standing: {
  4520. height: math.unit(6, "feet"),
  4521. weight: math.unit(180, "lbs"),
  4522. name: "Standing",
  4523. image: {
  4524. source: "./media/characters/zaakira/standing.svg"
  4525. }
  4526. },
  4527. laying: {
  4528. height: math.unit(3, "feet"),
  4529. weight: math.unit(180, "lbs"),
  4530. name: "Laying",
  4531. image: {
  4532. source: "./media/characters/zaakira/laying.svg"
  4533. }
  4534. },
  4535. },
  4536. [
  4537. {
  4538. name: "Normal",
  4539. height: math.unit(12, "feet")
  4540. },
  4541. {
  4542. name: "Macro",
  4543. height: math.unit(279, "feet"),
  4544. default: true
  4545. }
  4546. ]
  4547. ))
  4548. characterMakers.push(() => makeCharacter(
  4549. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4550. {
  4551. femSfw: {
  4552. height: math.unit(8, "feet"),
  4553. weight: math.unit(350, "lb"),
  4554. name: "Fem",
  4555. image: {
  4556. source: "./media/characters/sigvald/fem-sfw.svg",
  4557. extra: 182 / 164,
  4558. bottom: 8.7 / 190.5
  4559. }
  4560. },
  4561. femNsfw: {
  4562. height: math.unit(8, "feet"),
  4563. weight: math.unit(350, "lb"),
  4564. name: "Fem (NSFW)",
  4565. image: {
  4566. source: "./media/characters/sigvald/fem-nsfw.svg",
  4567. extra: 182 / 164,
  4568. bottom: 8.7 / 190.5
  4569. }
  4570. },
  4571. maleNsfw: {
  4572. height: math.unit(8, "feet"),
  4573. weight: math.unit(350, "lb"),
  4574. name: "Male (NSFW)",
  4575. image: {
  4576. source: "./media/characters/sigvald/male-nsfw.svg",
  4577. extra: 182 / 164,
  4578. bottom: 8.7 / 190.5
  4579. }
  4580. },
  4581. hermNsfw: {
  4582. height: math.unit(8, "feet"),
  4583. weight: math.unit(350, "lb"),
  4584. name: "Herm (NSFW)",
  4585. image: {
  4586. source: "./media/characters/sigvald/herm-nsfw.svg",
  4587. extra: 182 / 164,
  4588. bottom: 8.7 / 190.5
  4589. }
  4590. },
  4591. dick: {
  4592. height: math.unit(2.36, "feet"),
  4593. name: "Dick",
  4594. image: {
  4595. source: "./media/characters/sigvald/dick.svg"
  4596. }
  4597. },
  4598. eye: {
  4599. height: math.unit(0.31, "feet"),
  4600. name: "Eye",
  4601. image: {
  4602. source: "./media/characters/sigvald/eye.svg"
  4603. }
  4604. },
  4605. mouth: {
  4606. height: math.unit(0.92, "feet"),
  4607. name: "Mouth",
  4608. image: {
  4609. source: "./media/characters/sigvald/mouth.svg"
  4610. }
  4611. },
  4612. paws: {
  4613. height: math.unit(2.2, "feet"),
  4614. name: "Paws",
  4615. image: {
  4616. source: "./media/characters/sigvald/paws.svg"
  4617. }
  4618. }
  4619. },
  4620. [
  4621. {
  4622. name: "Normal",
  4623. height: math.unit(8, "feet")
  4624. },
  4625. {
  4626. name: "Large",
  4627. height: math.unit(12, "feet")
  4628. },
  4629. {
  4630. name: "Larger",
  4631. height: math.unit(20, "feet")
  4632. },
  4633. {
  4634. name: "Macro",
  4635. height: math.unit(150, "feet")
  4636. },
  4637. {
  4638. name: "Macro+",
  4639. height: math.unit(200, "feet"),
  4640. default: true
  4641. },
  4642. ]
  4643. ))
  4644. characterMakers.push(() => makeCharacter(
  4645. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4646. {
  4647. side: {
  4648. height: math.unit(12, "feet"),
  4649. weight: math.unit(2000, "kg"),
  4650. name: "Side",
  4651. image: {
  4652. source: "./media/characters/scott/side.svg",
  4653. extra: 754 / 724,
  4654. bottom: 0.069
  4655. }
  4656. },
  4657. upright: {
  4658. height: math.unit(12, "feet"),
  4659. weight: math.unit(2000, "kg"),
  4660. name: "Upright",
  4661. image: {
  4662. source: "./media/characters/scott/upright.svg",
  4663. extra: 3881 / 3722,
  4664. bottom: 0.05
  4665. }
  4666. },
  4667. },
  4668. [
  4669. {
  4670. name: "Normal",
  4671. height: math.unit(12, "feet"),
  4672. default: true
  4673. },
  4674. ]
  4675. ))
  4676. characterMakers.push(() => makeCharacter(
  4677. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4678. {
  4679. side: {
  4680. height: math.unit(8, "meters"),
  4681. weight: math.unit(84755, "lbs"),
  4682. name: "Side",
  4683. image: {
  4684. source: "./media/characters/tobias/side.svg",
  4685. extra: 1474 / 1096,
  4686. bottom: 38.9 / 1513.1235
  4687. }
  4688. },
  4689. },
  4690. [
  4691. {
  4692. name: "Normal",
  4693. height: math.unit(8, "meters"),
  4694. default: true
  4695. },
  4696. ]
  4697. ))
  4698. characterMakers.push(() => makeCharacter(
  4699. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4700. {
  4701. front: {
  4702. height: math.unit(5.5, "feet"),
  4703. weight: math.unit(400, "lbs"),
  4704. name: "Front",
  4705. image: {
  4706. source: "./media/characters/kieran/front.svg",
  4707. extra: 2694 / 2364,
  4708. bottom: 217 / 2908
  4709. }
  4710. },
  4711. side: {
  4712. height: math.unit(5.5, "feet"),
  4713. weight: math.unit(400, "lbs"),
  4714. name: "Side",
  4715. image: {
  4716. source: "./media/characters/kieran/side.svg",
  4717. extra: 875 / 777,
  4718. bottom: 84.6 / 959
  4719. }
  4720. },
  4721. },
  4722. [
  4723. {
  4724. name: "Normal",
  4725. height: math.unit(5.5, "feet"),
  4726. default: true
  4727. },
  4728. ]
  4729. ))
  4730. characterMakers.push(() => makeCharacter(
  4731. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4732. {
  4733. side: {
  4734. height: math.unit(2, "meters"),
  4735. weight: math.unit(70, "kg"),
  4736. name: "Side",
  4737. image: {
  4738. source: "./media/characters/sanya/side.svg",
  4739. bottom: 0.02,
  4740. extra: 1.02
  4741. }
  4742. },
  4743. },
  4744. [
  4745. {
  4746. name: "Small",
  4747. height: math.unit(2, "meters")
  4748. },
  4749. {
  4750. name: "Normal",
  4751. height: math.unit(3, "meters")
  4752. },
  4753. {
  4754. name: "Macro",
  4755. height: math.unit(16, "meters"),
  4756. default: true
  4757. },
  4758. ]
  4759. ))
  4760. characterMakers.push(() => makeCharacter(
  4761. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4762. {
  4763. front: {
  4764. height: math.unit(2, "meters"),
  4765. weight: math.unit(120, "kg"),
  4766. name: "Front",
  4767. image: {
  4768. source: "./media/characters/miranda/front.svg",
  4769. extra: 195 / 185,
  4770. bottom: 10.9 / 206.5
  4771. }
  4772. },
  4773. back: {
  4774. height: math.unit(2, "meters"),
  4775. weight: math.unit(120, "kg"),
  4776. name: "Back",
  4777. image: {
  4778. source: "./media/characters/miranda/back.svg",
  4779. extra: 201 / 193,
  4780. bottom: 2.3 / 203.7
  4781. }
  4782. },
  4783. },
  4784. [
  4785. {
  4786. name: "Normal",
  4787. height: math.unit(10, "feet"),
  4788. default: true
  4789. }
  4790. ]
  4791. ))
  4792. characterMakers.push(() => makeCharacter(
  4793. { name: "James", species: ["deer"], tags: ["anthro"] },
  4794. {
  4795. side: {
  4796. height: math.unit(2, "meters"),
  4797. weight: math.unit(100, "kg"),
  4798. name: "Front",
  4799. image: {
  4800. source: "./media/characters/james/front.svg",
  4801. extra: 10 / 8.5
  4802. }
  4803. },
  4804. },
  4805. [
  4806. {
  4807. name: "Normal",
  4808. height: math.unit(8.5, "feet"),
  4809. default: true
  4810. }
  4811. ]
  4812. ))
  4813. characterMakers.push(() => makeCharacter(
  4814. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4815. {
  4816. side: {
  4817. height: math.unit(9.5, "feet"),
  4818. weight: math.unit(2500, "lbs"),
  4819. name: "Side",
  4820. image: {
  4821. source: "./media/characters/heather/side.svg"
  4822. }
  4823. },
  4824. },
  4825. [
  4826. {
  4827. name: "Normal",
  4828. height: math.unit(9.5, "feet"),
  4829. default: true
  4830. }
  4831. ]
  4832. ))
  4833. characterMakers.push(() => makeCharacter(
  4834. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4835. {
  4836. side: {
  4837. height: math.unit(6.5, "feet"),
  4838. weight: math.unit(400, "lbs"),
  4839. name: "Side",
  4840. image: {
  4841. source: "./media/characters/lukas/side.svg",
  4842. extra: 7.25 / 6.5
  4843. }
  4844. },
  4845. },
  4846. [
  4847. {
  4848. name: "Normal",
  4849. height: math.unit(6.5, "feet"),
  4850. default: true
  4851. }
  4852. ]
  4853. ))
  4854. characterMakers.push(() => makeCharacter(
  4855. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4856. {
  4857. side: {
  4858. height: math.unit(5, "feet"),
  4859. weight: math.unit(3000, "lbs"),
  4860. name: "Side",
  4861. image: {
  4862. source: "./media/characters/louise/side.svg"
  4863. }
  4864. },
  4865. },
  4866. [
  4867. {
  4868. name: "Normal",
  4869. height: math.unit(5, "feet"),
  4870. default: true
  4871. }
  4872. ]
  4873. ))
  4874. characterMakers.push(() => makeCharacter(
  4875. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4876. {
  4877. side: {
  4878. height: math.unit(6, "feet"),
  4879. weight: math.unit(150, "lbs"),
  4880. name: "Side",
  4881. image: {
  4882. source: "./media/characters/ramona/side.svg"
  4883. }
  4884. },
  4885. },
  4886. [
  4887. {
  4888. name: "Normal",
  4889. height: math.unit(5.3, "meters"),
  4890. default: true
  4891. },
  4892. {
  4893. name: "Macro",
  4894. height: math.unit(20, "stories")
  4895. },
  4896. {
  4897. name: "Macro+",
  4898. height: math.unit(50, "stories")
  4899. },
  4900. ]
  4901. ))
  4902. characterMakers.push(() => makeCharacter(
  4903. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4904. {
  4905. standing: {
  4906. height: math.unit(5.75, "feet"),
  4907. weight: math.unit(160, "lbs"),
  4908. name: "Standing",
  4909. image: {
  4910. source: "./media/characters/deerpuff/standing.svg",
  4911. extra: 682 / 624
  4912. }
  4913. },
  4914. sitting: {
  4915. height: math.unit(5.75 / 1.79, "feet"),
  4916. weight: math.unit(160, "lbs"),
  4917. name: "Sitting",
  4918. image: {
  4919. source: "./media/characters/deerpuff/sitting.svg",
  4920. bottom: 44 / 400,
  4921. extra: 1
  4922. }
  4923. },
  4924. taurLaying: {
  4925. height: math.unit(6, "feet"),
  4926. weight: math.unit(400, "lbs"),
  4927. name: "Taur (Laying)",
  4928. image: {
  4929. source: "./media/characters/deerpuff/taur-laying.svg"
  4930. }
  4931. },
  4932. },
  4933. [
  4934. {
  4935. name: "Puffball",
  4936. height: math.unit(6, "inches")
  4937. },
  4938. {
  4939. name: "Normalpuff",
  4940. height: math.unit(5.75, "feet")
  4941. },
  4942. {
  4943. name: "Macropuff",
  4944. height: math.unit(1500, "feet"),
  4945. default: true
  4946. },
  4947. {
  4948. name: "Megapuff",
  4949. height: math.unit(500, "miles")
  4950. },
  4951. {
  4952. name: "Gigapuff",
  4953. height: math.unit(250000, "miles")
  4954. },
  4955. {
  4956. name: "Omegapuff",
  4957. height: math.unit(1000, "lightyears")
  4958. },
  4959. ]
  4960. ))
  4961. characterMakers.push(() => makeCharacter(
  4962. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4963. {
  4964. stomping: {
  4965. height: math.unit(6, "feet"),
  4966. weight: math.unit(170, "lbs"),
  4967. name: "Stomping",
  4968. image: {
  4969. source: "./media/characters/vivian/stomping.svg"
  4970. }
  4971. },
  4972. sitting: {
  4973. height: math.unit(6 / 1.75, "feet"),
  4974. weight: math.unit(170, "lbs"),
  4975. name: "Sitting",
  4976. image: {
  4977. source: "./media/characters/vivian/sitting.svg",
  4978. bottom: 1 / 6.4,
  4979. extra: 1,
  4980. }
  4981. },
  4982. },
  4983. [
  4984. {
  4985. name: "Normal",
  4986. height: math.unit(7, "feet"),
  4987. default: true
  4988. },
  4989. {
  4990. name: "Macro",
  4991. height: math.unit(10, "stories")
  4992. },
  4993. {
  4994. name: "Macro+",
  4995. height: math.unit(30, "stories")
  4996. },
  4997. {
  4998. name: "Megamacro",
  4999. height: math.unit(10, "miles")
  5000. },
  5001. {
  5002. name: "Megamacro+",
  5003. height: math.unit(2750000, "meters")
  5004. },
  5005. ]
  5006. ))
  5007. characterMakers.push(() => makeCharacter(
  5008. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5009. {
  5010. front: {
  5011. height: math.unit(6, "feet"),
  5012. weight: math.unit(160, "lbs"),
  5013. name: "Front",
  5014. image: {
  5015. source: "./media/characters/prince/front.svg",
  5016. extra: 3400 / 3000
  5017. }
  5018. },
  5019. jumping: {
  5020. height: math.unit(6, "feet"),
  5021. weight: math.unit(160, "lbs"),
  5022. name: "Jumping",
  5023. image: {
  5024. source: "./media/characters/prince/jump.svg",
  5025. extra: 2555 / 2134
  5026. }
  5027. },
  5028. },
  5029. [
  5030. {
  5031. name: "Normal",
  5032. height: math.unit(7.75, "feet"),
  5033. default: true
  5034. },
  5035. {
  5036. name: "Not cute",
  5037. height: math.unit(17, "feet")
  5038. },
  5039. {
  5040. name: "I said NOT",
  5041. height: math.unit(91, "feet")
  5042. },
  5043. {
  5044. name: "Please stop",
  5045. height: math.unit(560, "feet")
  5046. },
  5047. {
  5048. name: "What have you done",
  5049. height: math.unit(2200, "feet")
  5050. },
  5051. {
  5052. name: "Deer God",
  5053. height: math.unit(3.6, "miles")
  5054. },
  5055. ]
  5056. ))
  5057. characterMakers.push(() => makeCharacter(
  5058. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5059. {
  5060. standing: {
  5061. height: math.unit(6, "feet"),
  5062. weight: math.unit(300, "lbs"),
  5063. name: "Standing",
  5064. image: {
  5065. source: "./media/characters/psymon/standing.svg",
  5066. extra: 1888 / 1810,
  5067. bottom: 0.05
  5068. }
  5069. },
  5070. slithering: {
  5071. height: math.unit(6, "feet"),
  5072. weight: math.unit(300, "lbs"),
  5073. name: "Slithering",
  5074. image: {
  5075. source: "./media/characters/psymon/slithering.svg",
  5076. extra: 1330 / 1224
  5077. }
  5078. },
  5079. slitheringAlt: {
  5080. height: math.unit(6, "feet"),
  5081. weight: math.unit(300, "lbs"),
  5082. name: "Slithering (Alt)",
  5083. image: {
  5084. source: "./media/characters/psymon/slithering-alt.svg",
  5085. extra: 1330 / 1224
  5086. }
  5087. },
  5088. },
  5089. [
  5090. {
  5091. name: "Normal",
  5092. height: math.unit(11.25, "feet"),
  5093. default: true
  5094. },
  5095. {
  5096. name: "Large",
  5097. height: math.unit(27, "feet")
  5098. },
  5099. {
  5100. name: "Giant",
  5101. height: math.unit(87, "feet")
  5102. },
  5103. {
  5104. name: "Macro",
  5105. height: math.unit(365, "feet")
  5106. },
  5107. {
  5108. name: "Megamacro",
  5109. height: math.unit(3, "miles")
  5110. },
  5111. {
  5112. name: "World Serpent",
  5113. height: math.unit(8000, "miles")
  5114. },
  5115. ]
  5116. ))
  5117. characterMakers.push(() => makeCharacter(
  5118. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5119. {
  5120. front: {
  5121. height: math.unit(6, "feet"),
  5122. weight: math.unit(180, "lbs"),
  5123. name: "Front",
  5124. image: {
  5125. source: "./media/characters/daimos/front.svg",
  5126. extra: 4160 / 3897,
  5127. bottom: 0.021
  5128. }
  5129. }
  5130. },
  5131. [
  5132. {
  5133. name: "Normal",
  5134. height: math.unit(8, "feet"),
  5135. default: true
  5136. },
  5137. {
  5138. name: "Big Dog",
  5139. height: math.unit(22, "feet")
  5140. },
  5141. {
  5142. name: "Macro",
  5143. height: math.unit(127, "feet")
  5144. },
  5145. {
  5146. name: "Megamacro",
  5147. height: math.unit(3600, "feet")
  5148. },
  5149. ]
  5150. ))
  5151. characterMakers.push(() => makeCharacter(
  5152. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5153. {
  5154. side: {
  5155. height: math.unit(6, "feet"),
  5156. weight: math.unit(180, "lbs"),
  5157. name: "Side",
  5158. image: {
  5159. source: "./media/characters/blake/side.svg",
  5160. extra: 1212 / 1120,
  5161. bottom: 0.05
  5162. }
  5163. },
  5164. crouched: {
  5165. height: math.unit(6 * 0.57, "feet"),
  5166. weight: math.unit(180, "lbs"),
  5167. name: "Crouched",
  5168. image: {
  5169. source: "./media/characters/blake/crouched.svg",
  5170. extra: 840 / 587,
  5171. bottom: 0.04
  5172. }
  5173. },
  5174. bent: {
  5175. height: math.unit(6 * 0.75, "feet"),
  5176. weight: math.unit(180, "lbs"),
  5177. name: "Bent",
  5178. image: {
  5179. source: "./media/characters/blake/bent.svg",
  5180. extra: 592 / 544,
  5181. bottom: 0.035
  5182. }
  5183. },
  5184. },
  5185. [
  5186. {
  5187. name: "Normal",
  5188. height: math.unit(8 + 1 / 6, "feet"),
  5189. default: true
  5190. },
  5191. {
  5192. name: "Big Backside",
  5193. height: math.unit(37, "feet")
  5194. },
  5195. {
  5196. name: "Subway Shredder",
  5197. height: math.unit(72, "feet")
  5198. },
  5199. {
  5200. name: "City Carver",
  5201. height: math.unit(1675, "feet")
  5202. },
  5203. {
  5204. name: "Tectonic Tweaker",
  5205. height: math.unit(2300, "miles")
  5206. },
  5207. ]
  5208. ))
  5209. characterMakers.push(() => makeCharacter(
  5210. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5211. {
  5212. front: {
  5213. height: math.unit(6, "feet"),
  5214. weight: math.unit(180, "lbs"),
  5215. name: "Front",
  5216. image: {
  5217. source: "./media/characters/guisetto/front.svg",
  5218. extra: 856 / 817,
  5219. bottom: 0.06
  5220. }
  5221. },
  5222. airborne: {
  5223. height: math.unit(6, "feet"),
  5224. weight: math.unit(180, "lbs"),
  5225. name: "Airborne",
  5226. image: {
  5227. source: "./media/characters/guisetto/airborne.svg",
  5228. extra: 584 / 525
  5229. }
  5230. },
  5231. },
  5232. [
  5233. {
  5234. name: "Normal",
  5235. height: math.unit(10 + 11 / 12, "feet"),
  5236. default: true
  5237. },
  5238. {
  5239. name: "Large",
  5240. height: math.unit(35, "feet")
  5241. },
  5242. {
  5243. name: "Macro",
  5244. height: math.unit(475, "feet")
  5245. },
  5246. ]
  5247. ))
  5248. characterMakers.push(() => makeCharacter(
  5249. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5250. {
  5251. front: {
  5252. height: math.unit(6, "feet"),
  5253. weight: math.unit(180, "lbs"),
  5254. name: "Front",
  5255. image: {
  5256. source: "./media/characters/luxor/front.svg",
  5257. extra: 2940 / 2152
  5258. }
  5259. },
  5260. back: {
  5261. height: math.unit(6, "feet"),
  5262. weight: math.unit(180, "lbs"),
  5263. name: "Back",
  5264. image: {
  5265. source: "./media/characters/luxor/back.svg",
  5266. extra: 1083 / 960
  5267. }
  5268. },
  5269. },
  5270. [
  5271. {
  5272. name: "Normal",
  5273. height: math.unit(5 + 5 / 6, "feet"),
  5274. default: true
  5275. },
  5276. {
  5277. name: "Lamp",
  5278. height: math.unit(50, "feet")
  5279. },
  5280. {
  5281. name: "Lämp",
  5282. height: math.unit(300, "feet")
  5283. },
  5284. {
  5285. name: "The sun is a lamp",
  5286. height: math.unit(250000, "miles")
  5287. },
  5288. ]
  5289. ))
  5290. characterMakers.push(() => makeCharacter(
  5291. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5292. {
  5293. front: {
  5294. height: math.unit(6, "feet"),
  5295. weight: math.unit(50, "lbs"),
  5296. name: "Front",
  5297. image: {
  5298. source: "./media/characters/huoyan/front.svg"
  5299. }
  5300. },
  5301. side: {
  5302. height: math.unit(6, "feet"),
  5303. weight: math.unit(180, "lbs"),
  5304. name: "Side",
  5305. image: {
  5306. source: "./media/characters/huoyan/side.svg"
  5307. }
  5308. },
  5309. },
  5310. [
  5311. {
  5312. name: "Chef",
  5313. height: math.unit(9, "feet")
  5314. },
  5315. {
  5316. name: "Normal",
  5317. height: math.unit(65, "feet"),
  5318. default: true
  5319. },
  5320. {
  5321. name: "Macro",
  5322. height: math.unit(780, "feet")
  5323. },
  5324. {
  5325. name: "Flaming Mountain",
  5326. height: math.unit(4.8, "miles")
  5327. },
  5328. {
  5329. name: "Celestial",
  5330. height: math.unit(765000, "miles")
  5331. },
  5332. ]
  5333. ))
  5334. characterMakers.push(() => makeCharacter(
  5335. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5336. {
  5337. front: {
  5338. height: math.unit(5 + 3 / 4, "feet"),
  5339. weight: math.unit(120, "lbs"),
  5340. name: "Front",
  5341. image: {
  5342. source: "./media/characters/tails/front.svg"
  5343. }
  5344. }
  5345. },
  5346. [
  5347. {
  5348. name: "Normal",
  5349. height: math.unit(5 + 3 / 4, "feet"),
  5350. default: true
  5351. }
  5352. ]
  5353. ))
  5354. characterMakers.push(() => makeCharacter(
  5355. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5356. {
  5357. front: {
  5358. height: math.unit(4, "feet"),
  5359. weight: math.unit(50, "lbs"),
  5360. name: "Front",
  5361. image: {
  5362. source: "./media/characters/rainy/front.svg"
  5363. }
  5364. }
  5365. },
  5366. [
  5367. {
  5368. name: "Macro",
  5369. height: math.unit(800, "feet"),
  5370. default: true
  5371. }
  5372. ]
  5373. ))
  5374. characterMakers.push(() => makeCharacter(
  5375. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5376. {
  5377. front: {
  5378. height: math.unit(6, "feet"),
  5379. weight: math.unit(150, "lbs"),
  5380. name: "Front",
  5381. image: {
  5382. source: "./media/characters/rainier/front.svg"
  5383. }
  5384. }
  5385. },
  5386. [
  5387. {
  5388. name: "Micro",
  5389. height: math.unit(2, "mm"),
  5390. default: true
  5391. }
  5392. ]
  5393. ))
  5394. characterMakers.push(() => makeCharacter(
  5395. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5396. {
  5397. front: {
  5398. height: math.unit(6, "feet"),
  5399. weight: math.unit(180, "lbs"),
  5400. name: "Front",
  5401. image: {
  5402. source: "./media/characters/andy/front.svg"
  5403. }
  5404. }
  5405. },
  5406. [
  5407. {
  5408. name: "Normal",
  5409. height: math.unit(8, "feet"),
  5410. default: true
  5411. },
  5412. {
  5413. name: "Macro",
  5414. height: math.unit(1000, "feet")
  5415. },
  5416. {
  5417. name: "Megamacro",
  5418. height: math.unit(5, "miles")
  5419. },
  5420. {
  5421. name: "Gigamacro",
  5422. height: math.unit(5000, "miles")
  5423. },
  5424. ]
  5425. ))
  5426. characterMakers.push(() => makeCharacter(
  5427. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5428. {
  5429. front: {
  5430. height: math.unit(6, "feet"),
  5431. weight: math.unit(210, "lbs"),
  5432. name: "Front",
  5433. image: {
  5434. source: "./media/characters/cimmaron/front-sfw.svg",
  5435. extra: 701 / 676,
  5436. bottom: 0.046
  5437. }
  5438. },
  5439. back: {
  5440. height: math.unit(6, "feet"),
  5441. weight: math.unit(210, "lbs"),
  5442. name: "Back",
  5443. image: {
  5444. source: "./media/characters/cimmaron/back-sfw.svg",
  5445. extra: 701 / 676,
  5446. bottom: 0.046
  5447. }
  5448. },
  5449. frontNsfw: {
  5450. height: math.unit(6, "feet"),
  5451. weight: math.unit(210, "lbs"),
  5452. name: "Front (NSFW)",
  5453. image: {
  5454. source: "./media/characters/cimmaron/front-nsfw.svg",
  5455. extra: 701 / 676,
  5456. bottom: 0.046
  5457. }
  5458. },
  5459. backNsfw: {
  5460. height: math.unit(6, "feet"),
  5461. weight: math.unit(210, "lbs"),
  5462. name: "Back (NSFW)",
  5463. image: {
  5464. source: "./media/characters/cimmaron/back-nsfw.svg",
  5465. extra: 701 / 676,
  5466. bottom: 0.046
  5467. }
  5468. },
  5469. dick: {
  5470. height: math.unit(1.714, "feet"),
  5471. name: "Dick",
  5472. image: {
  5473. source: "./media/characters/cimmaron/dick.svg"
  5474. }
  5475. },
  5476. },
  5477. [
  5478. {
  5479. name: "Normal",
  5480. height: math.unit(6, "feet"),
  5481. default: true
  5482. },
  5483. {
  5484. name: "Macro Mayor",
  5485. height: math.unit(350, "meters")
  5486. },
  5487. ]
  5488. ))
  5489. characterMakers.push(() => makeCharacter(
  5490. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5491. {
  5492. front: {
  5493. height: math.unit(6, "feet"),
  5494. weight: math.unit(200, "lbs"),
  5495. name: "Front",
  5496. image: {
  5497. source: "./media/characters/akari/front.svg",
  5498. extra: 962 / 901,
  5499. bottom: 0.04
  5500. }
  5501. }
  5502. },
  5503. [
  5504. {
  5505. name: "Micro",
  5506. height: math.unit(5, "inches"),
  5507. default: true
  5508. },
  5509. {
  5510. name: "Normal",
  5511. height: math.unit(7, "feet")
  5512. },
  5513. ]
  5514. ))
  5515. characterMakers.push(() => makeCharacter(
  5516. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5517. {
  5518. front: {
  5519. height: math.unit(6, "feet"),
  5520. weight: math.unit(140, "lbs"),
  5521. name: "Front",
  5522. image: {
  5523. source: "./media/characters/cynosura/front.svg",
  5524. extra: 896 / 847
  5525. }
  5526. },
  5527. back: {
  5528. height: math.unit(6, "feet"),
  5529. weight: math.unit(140, "lbs"),
  5530. name: "Back",
  5531. image: {
  5532. source: "./media/characters/cynosura/back.svg",
  5533. extra: 1365 / 1250
  5534. }
  5535. },
  5536. },
  5537. [
  5538. {
  5539. name: "Micro",
  5540. height: math.unit(4, "inches")
  5541. },
  5542. {
  5543. name: "Normal",
  5544. height: math.unit(5.75, "feet"),
  5545. default: true
  5546. },
  5547. {
  5548. name: "Tall",
  5549. height: math.unit(10, "feet")
  5550. },
  5551. {
  5552. name: "Big",
  5553. height: math.unit(20, "feet")
  5554. },
  5555. {
  5556. name: "Macro",
  5557. height: math.unit(50, "feet")
  5558. },
  5559. ]
  5560. ))
  5561. characterMakers.push(() => makeCharacter(
  5562. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5563. {
  5564. front: {
  5565. height: math.unit(6, "feet"),
  5566. weight: math.unit(170, "lbs"),
  5567. name: "Front",
  5568. image: {
  5569. source: "./media/characters/gin/front.svg",
  5570. extra: 1.053,
  5571. bottom: 0.025
  5572. }
  5573. },
  5574. foot: {
  5575. height: math.unit(6 / 4.25, "feet"),
  5576. name: "Foot",
  5577. image: {
  5578. source: "./media/characters/gin/foot.svg"
  5579. }
  5580. },
  5581. sole: {
  5582. height: math.unit(6 / 4.40, "feet"),
  5583. name: "Sole",
  5584. image: {
  5585. source: "./media/characters/gin/sole.svg"
  5586. }
  5587. },
  5588. },
  5589. [
  5590. {
  5591. name: "Normal",
  5592. height: math.unit(13 + 2 / 12, "feet")
  5593. },
  5594. {
  5595. name: "Macro",
  5596. height: math.unit(1500, "feet")
  5597. },
  5598. {
  5599. name: "Megamacro",
  5600. height: math.unit(200, "miles"),
  5601. default: true
  5602. },
  5603. {
  5604. name: "Gigamacro",
  5605. height: math.unit(500, "megameters")
  5606. },
  5607. {
  5608. name: "Teramacro",
  5609. height: math.unit(15, "lightyears")
  5610. }
  5611. ]
  5612. ))
  5613. characterMakers.push(() => makeCharacter(
  5614. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5615. {
  5616. front: {
  5617. height: math.unit(6 + 1 / 6, "feet"),
  5618. weight: math.unit(178, "lbs"),
  5619. name: "Front",
  5620. image: {
  5621. source: "./media/characters/guy/front.svg"
  5622. }
  5623. }
  5624. },
  5625. [
  5626. {
  5627. name: "Normal",
  5628. height: math.unit(6 + 1 / 6, "feet"),
  5629. default: true
  5630. },
  5631. {
  5632. name: "Large",
  5633. height: math.unit(25 + 7 / 12, "feet")
  5634. },
  5635. {
  5636. name: "Macro",
  5637. height: math.unit(60 + 9 / 12, "feet")
  5638. },
  5639. {
  5640. name: "Macro+",
  5641. height: math.unit(246, "feet")
  5642. },
  5643. {
  5644. name: "Macro++",
  5645. height: math.unit(878, "feet")
  5646. }
  5647. ]
  5648. ))
  5649. characterMakers.push(() => makeCharacter(
  5650. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5651. {
  5652. front: {
  5653. height: math.unit(9, "feet"),
  5654. weight: math.unit(800, "lbs"),
  5655. name: "Front",
  5656. image: {
  5657. source: "./media/characters/tiberius/front.svg",
  5658. extra: 2295 / 2071
  5659. }
  5660. },
  5661. back: {
  5662. height: math.unit(9, "feet"),
  5663. weight: math.unit(800, "lbs"),
  5664. name: "Back",
  5665. image: {
  5666. source: "./media/characters/tiberius/back.svg",
  5667. extra: 2373 / 2160
  5668. }
  5669. },
  5670. },
  5671. [
  5672. {
  5673. name: "Normal",
  5674. height: math.unit(9, "feet"),
  5675. default: true
  5676. }
  5677. ]
  5678. ))
  5679. characterMakers.push(() => makeCharacter(
  5680. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5681. {
  5682. front: {
  5683. height: math.unit(6, "feet"),
  5684. weight: math.unit(600, "lbs"),
  5685. name: "Front",
  5686. image: {
  5687. source: "./media/characters/surgo/front.svg",
  5688. extra: 3591 / 2227
  5689. }
  5690. },
  5691. back: {
  5692. height: math.unit(6, "feet"),
  5693. weight: math.unit(600, "lbs"),
  5694. name: "Back",
  5695. image: {
  5696. source: "./media/characters/surgo/back.svg",
  5697. extra: 3557 / 2228
  5698. }
  5699. },
  5700. laying: {
  5701. height: math.unit(6 * 0.85, "feet"),
  5702. weight: math.unit(600, "lbs"),
  5703. name: "Laying",
  5704. image: {
  5705. source: "./media/characters/surgo/laying.svg"
  5706. }
  5707. },
  5708. },
  5709. [
  5710. {
  5711. name: "Normal",
  5712. height: math.unit(6, "feet"),
  5713. default: true
  5714. }
  5715. ]
  5716. ))
  5717. characterMakers.push(() => makeCharacter(
  5718. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5719. {
  5720. side: {
  5721. height: math.unit(6, "feet"),
  5722. weight: math.unit(150, "lbs"),
  5723. name: "Side",
  5724. image: {
  5725. source: "./media/characters/cibus/side.svg",
  5726. extra: 800 / 400
  5727. }
  5728. },
  5729. },
  5730. [
  5731. {
  5732. name: "Normal",
  5733. height: math.unit(6, "feet"),
  5734. default: true
  5735. }
  5736. ]
  5737. ))
  5738. characterMakers.push(() => makeCharacter(
  5739. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5740. {
  5741. front: {
  5742. height: math.unit(6, "feet"),
  5743. weight: math.unit(240, "lbs"),
  5744. name: "Front",
  5745. image: {
  5746. source: "./media/characters/nibbles/front.svg"
  5747. }
  5748. },
  5749. side: {
  5750. height: math.unit(6, "feet"),
  5751. weight: math.unit(240, "lbs"),
  5752. name: "Side",
  5753. image: {
  5754. source: "./media/characters/nibbles/side.svg"
  5755. }
  5756. },
  5757. },
  5758. [
  5759. {
  5760. name: "Normal",
  5761. height: math.unit(9, "feet"),
  5762. default: true
  5763. }
  5764. ]
  5765. ))
  5766. characterMakers.push(() => makeCharacter(
  5767. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5768. {
  5769. side: {
  5770. height: math.unit(5 + 1 / 6, "feet"),
  5771. weight: math.unit(130, "lbs"),
  5772. name: "Side",
  5773. image: {
  5774. source: "./media/characters/rikky/side.svg",
  5775. extra: 851 / 801
  5776. }
  5777. },
  5778. },
  5779. [
  5780. {
  5781. name: "Normal",
  5782. height: math.unit(5 + 1 / 6, "feet")
  5783. },
  5784. {
  5785. name: "Macro",
  5786. height: math.unit(152, "feet"),
  5787. default: true
  5788. },
  5789. {
  5790. name: "Megamacro",
  5791. height: math.unit(7, "miles")
  5792. }
  5793. ]
  5794. ))
  5795. characterMakers.push(() => makeCharacter(
  5796. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5797. {
  5798. side: {
  5799. height: math.unit(370, "cm"),
  5800. weight: math.unit(350, "lbs"),
  5801. name: "Side",
  5802. image: {
  5803. source: "./media/characters/malfressa/side.svg"
  5804. }
  5805. },
  5806. walking: {
  5807. height: math.unit(370, "cm"),
  5808. weight: math.unit(350, "lbs"),
  5809. name: "Walking",
  5810. image: {
  5811. source: "./media/characters/malfressa/walking.svg"
  5812. }
  5813. },
  5814. feral: {
  5815. height: math.unit(2500, "cm"),
  5816. weight: math.unit(100000, "lbs"),
  5817. name: "Feral",
  5818. image: {
  5819. source: "./media/characters/malfressa/feral.svg",
  5820. extra: 2108 / 837,
  5821. bottom: 0.02
  5822. }
  5823. },
  5824. },
  5825. [
  5826. {
  5827. name: "Normal",
  5828. height: math.unit(370, "cm")
  5829. },
  5830. {
  5831. name: "Macro",
  5832. height: math.unit(300, "meters"),
  5833. default: true
  5834. }
  5835. ]
  5836. ))
  5837. characterMakers.push(() => makeCharacter(
  5838. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5839. {
  5840. front: {
  5841. height: math.unit(6, "feet"),
  5842. weight: math.unit(60, "kg"),
  5843. name: "Front",
  5844. image: {
  5845. source: "./media/characters/jaro/front.svg"
  5846. }
  5847. },
  5848. back: {
  5849. height: math.unit(6, "feet"),
  5850. weight: math.unit(60, "kg"),
  5851. name: "Back",
  5852. image: {
  5853. source: "./media/characters/jaro/back.svg"
  5854. }
  5855. },
  5856. },
  5857. [
  5858. {
  5859. name: "Micro",
  5860. height: math.unit(7, "inches")
  5861. },
  5862. {
  5863. name: "Normal",
  5864. height: math.unit(5.5, "feet"),
  5865. default: true
  5866. },
  5867. {
  5868. name: "Minimacro",
  5869. height: math.unit(20, "feet")
  5870. },
  5871. {
  5872. name: "Macro",
  5873. height: math.unit(200, "meters")
  5874. }
  5875. ]
  5876. ))
  5877. characterMakers.push(() => makeCharacter(
  5878. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5879. {
  5880. front: {
  5881. height: math.unit(6, "feet"),
  5882. weight: math.unit(195, "lb"),
  5883. name: "Front",
  5884. image: {
  5885. source: "./media/characters/rogue/front.svg"
  5886. }
  5887. },
  5888. },
  5889. [
  5890. {
  5891. name: "Macro",
  5892. height: math.unit(90, "feet"),
  5893. default: true
  5894. },
  5895. ]
  5896. ))
  5897. characterMakers.push(() => makeCharacter(
  5898. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5899. {
  5900. front: {
  5901. height: math.unit(5 + 8 / 12, "feet"),
  5902. weight: math.unit(140, "lb"),
  5903. name: "Front",
  5904. image: {
  5905. source: "./media/characters/piper/front.svg",
  5906. extra: 3948/3655,
  5907. bottom: 0/3948
  5908. }
  5909. },
  5910. },
  5911. [
  5912. {
  5913. name: "Micro",
  5914. height: math.unit(2, "inches")
  5915. },
  5916. {
  5917. name: "Normal",
  5918. height: math.unit(5 + 8 / 12, "feet")
  5919. },
  5920. {
  5921. name: "Macro",
  5922. height: math.unit(250, "feet"),
  5923. default: true
  5924. },
  5925. {
  5926. name: "Megamacro",
  5927. height: math.unit(7, "miles")
  5928. },
  5929. ]
  5930. ))
  5931. characterMakers.push(() => makeCharacter(
  5932. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5933. {
  5934. front: {
  5935. height: math.unit(6, "feet"),
  5936. weight: math.unit(220, "lb"),
  5937. name: "Front",
  5938. image: {
  5939. source: "./media/characters/gemini/front.svg"
  5940. }
  5941. },
  5942. back: {
  5943. height: math.unit(6, "feet"),
  5944. weight: math.unit(220, "lb"),
  5945. name: "Back",
  5946. image: {
  5947. source: "./media/characters/gemini/back.svg"
  5948. }
  5949. },
  5950. kneeling: {
  5951. height: math.unit(6 / 1.5, "feet"),
  5952. weight: math.unit(220, "lb"),
  5953. name: "Kneeling",
  5954. image: {
  5955. source: "./media/characters/gemini/kneeling.svg",
  5956. bottom: 0.02
  5957. }
  5958. },
  5959. },
  5960. [
  5961. {
  5962. name: "Macro",
  5963. height: math.unit(300, "meters"),
  5964. default: true
  5965. },
  5966. {
  5967. name: "Megamacro",
  5968. height: math.unit(6900, "meters")
  5969. },
  5970. ]
  5971. ))
  5972. characterMakers.push(() => makeCharacter(
  5973. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5974. {
  5975. anthro: {
  5976. height: math.unit(2.35, "meters"),
  5977. weight: math.unit(73, "kg"),
  5978. name: "Anthro",
  5979. image: {
  5980. source: "./media/characters/alicia/anthro.svg",
  5981. extra: 2571 / 2385,
  5982. bottom: 75 / 2648
  5983. }
  5984. },
  5985. paw: {
  5986. height: math.unit(1.32, "feet"),
  5987. name: "Paw",
  5988. image: {
  5989. source: "./media/characters/alicia/paw.svg"
  5990. }
  5991. },
  5992. feral: {
  5993. height: math.unit(1.69, "meters"),
  5994. weight: math.unit(73, "kg"),
  5995. name: "Feral",
  5996. image: {
  5997. source: "./media/characters/alicia/feral.svg",
  5998. extra: 2123 / 1715,
  5999. bottom: 222 / 2349
  6000. }
  6001. },
  6002. },
  6003. [
  6004. {
  6005. name: "Normal",
  6006. height: math.unit(2.35, "meters")
  6007. },
  6008. {
  6009. name: "Macro",
  6010. height: math.unit(60, "meters"),
  6011. default: true
  6012. },
  6013. {
  6014. name: "Megamacro",
  6015. height: math.unit(10000, "kilometers")
  6016. },
  6017. ]
  6018. ))
  6019. characterMakers.push(() => makeCharacter(
  6020. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6021. {
  6022. front: {
  6023. height: math.unit(7, "feet"),
  6024. weight: math.unit(250, "lbs"),
  6025. name: "Front",
  6026. image: {
  6027. source: "./media/characters/archy/front.svg"
  6028. }
  6029. }
  6030. },
  6031. [
  6032. {
  6033. name: "Micro",
  6034. height: math.unit(1, "inch")
  6035. },
  6036. {
  6037. name: "Shorty",
  6038. height: math.unit(5, "feet")
  6039. },
  6040. {
  6041. name: "Normal",
  6042. height: math.unit(7, "feet")
  6043. },
  6044. {
  6045. name: "Macro",
  6046. height: math.unit(600, "meters"),
  6047. default: true
  6048. },
  6049. {
  6050. name: "Megamacro",
  6051. height: math.unit(1, "mile")
  6052. },
  6053. ]
  6054. ))
  6055. characterMakers.push(() => makeCharacter(
  6056. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6057. {
  6058. front: {
  6059. height: math.unit(1.65, "meters"),
  6060. weight: math.unit(74, "kg"),
  6061. name: "Front",
  6062. image: {
  6063. source: "./media/characters/berri/front.svg",
  6064. extra: 857 / 837,
  6065. bottom: 18 / 877
  6066. }
  6067. },
  6068. bum: {
  6069. height: math.unit(1.46, "feet"),
  6070. name: "Bum",
  6071. image: {
  6072. source: "./media/characters/berri/bum.svg"
  6073. }
  6074. },
  6075. mouth: {
  6076. height: math.unit(0.44, "feet"),
  6077. name: "Mouth",
  6078. image: {
  6079. source: "./media/characters/berri/mouth.svg"
  6080. }
  6081. },
  6082. paw: {
  6083. height: math.unit(0.826, "feet"),
  6084. name: "Paw",
  6085. image: {
  6086. source: "./media/characters/berri/paw.svg"
  6087. }
  6088. },
  6089. },
  6090. [
  6091. {
  6092. name: "Normal",
  6093. height: math.unit(1.65, "meters")
  6094. },
  6095. {
  6096. name: "Macro",
  6097. height: math.unit(60, "m"),
  6098. default: true
  6099. },
  6100. {
  6101. name: "Megamacro",
  6102. height: math.unit(9.213, "km")
  6103. },
  6104. {
  6105. name: "Planet Eater",
  6106. height: math.unit(489, "megameters")
  6107. },
  6108. {
  6109. name: "Teramacro",
  6110. height: math.unit(2471635000000, "meters")
  6111. },
  6112. {
  6113. name: "Examacro",
  6114. height: math.unit(8.0624e+26, "meters")
  6115. }
  6116. ]
  6117. ))
  6118. characterMakers.push(() => makeCharacter(
  6119. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6120. {
  6121. front: {
  6122. height: math.unit(1.72, "meters"),
  6123. weight: math.unit(68, "kg"),
  6124. name: "Front",
  6125. image: {
  6126. source: "./media/characters/lexi/front.svg"
  6127. }
  6128. }
  6129. },
  6130. [
  6131. {
  6132. name: "Very Smol",
  6133. height: math.unit(10, "mm")
  6134. },
  6135. {
  6136. name: "Micro",
  6137. height: math.unit(6.8, "cm"),
  6138. default: true
  6139. },
  6140. {
  6141. name: "Normal",
  6142. height: math.unit(1.72, "m")
  6143. }
  6144. ]
  6145. ))
  6146. characterMakers.push(() => makeCharacter(
  6147. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6148. {
  6149. front: {
  6150. height: math.unit(1.69, "meters"),
  6151. weight: math.unit(68, "kg"),
  6152. name: "Front",
  6153. image: {
  6154. source: "./media/characters/martin/front.svg",
  6155. extra: 596 / 581
  6156. }
  6157. }
  6158. },
  6159. [
  6160. {
  6161. name: "Micro",
  6162. height: math.unit(6.85, "cm"),
  6163. default: true
  6164. },
  6165. {
  6166. name: "Normal",
  6167. height: math.unit(1.69, "m")
  6168. }
  6169. ]
  6170. ))
  6171. characterMakers.push(() => makeCharacter(
  6172. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6173. {
  6174. front: {
  6175. height: math.unit(1.69, "meters"),
  6176. weight: math.unit(68, "kg"),
  6177. name: "Front",
  6178. image: {
  6179. source: "./media/characters/juno/front.svg"
  6180. }
  6181. }
  6182. },
  6183. [
  6184. {
  6185. name: "Micro",
  6186. height: math.unit(7, "cm")
  6187. },
  6188. {
  6189. name: "Normal",
  6190. height: math.unit(1.89, "m")
  6191. },
  6192. {
  6193. name: "Macro",
  6194. height: math.unit(353, "meters"),
  6195. default: true
  6196. }
  6197. ]
  6198. ))
  6199. characterMakers.push(() => makeCharacter(
  6200. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6201. {
  6202. front: {
  6203. height: math.unit(1.93, "meters"),
  6204. weight: math.unit(83, "kg"),
  6205. name: "Front",
  6206. image: {
  6207. source: "./media/characters/samantha/front.svg"
  6208. }
  6209. },
  6210. frontClothed: {
  6211. height: math.unit(1.93, "meters"),
  6212. weight: math.unit(83, "kg"),
  6213. name: "Front (Clothed)",
  6214. image: {
  6215. source: "./media/characters/samantha/front-clothed.svg"
  6216. }
  6217. },
  6218. back: {
  6219. height: math.unit(1.93, "meters"),
  6220. weight: math.unit(83, "kg"),
  6221. name: "Back",
  6222. image: {
  6223. source: "./media/characters/samantha/back.svg"
  6224. }
  6225. },
  6226. },
  6227. [
  6228. {
  6229. name: "Normal",
  6230. height: math.unit(1.93, "m")
  6231. },
  6232. {
  6233. name: "Macro",
  6234. height: math.unit(74, "meters"),
  6235. default: true
  6236. },
  6237. {
  6238. name: "Macro+",
  6239. height: math.unit(223, "meters"),
  6240. },
  6241. {
  6242. name: "Megamacro",
  6243. height: math.unit(8381, "meters"),
  6244. },
  6245. {
  6246. name: "Megamacro+",
  6247. height: math.unit(12000, "kilometers")
  6248. },
  6249. ]
  6250. ))
  6251. characterMakers.push(() => makeCharacter(
  6252. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6253. {
  6254. front: {
  6255. height: math.unit(1.92, "meters"),
  6256. weight: math.unit(80, "kg"),
  6257. name: "Front",
  6258. image: {
  6259. source: "./media/characters/dr-clay/front.svg"
  6260. }
  6261. },
  6262. frontClothed: {
  6263. height: math.unit(1.92, "meters"),
  6264. weight: math.unit(80, "kg"),
  6265. name: "Front (Clothed)",
  6266. image: {
  6267. source: "./media/characters/dr-clay/front-clothed.svg"
  6268. }
  6269. }
  6270. },
  6271. [
  6272. {
  6273. name: "Normal",
  6274. height: math.unit(1.92, "m")
  6275. },
  6276. {
  6277. name: "Macro",
  6278. height: math.unit(214, "meters"),
  6279. default: true
  6280. },
  6281. {
  6282. name: "Macro+",
  6283. height: math.unit(12.237, "meters"),
  6284. },
  6285. {
  6286. name: "Megamacro",
  6287. height: math.unit(557, "megameters"),
  6288. },
  6289. {
  6290. name: "Unimaginable",
  6291. height: math.unit(120e9, "lightyears")
  6292. },
  6293. ]
  6294. ))
  6295. characterMakers.push(() => makeCharacter(
  6296. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6297. {
  6298. front: {
  6299. height: math.unit(2, "meters"),
  6300. weight: math.unit(80, "kg"),
  6301. name: "Front",
  6302. image: {
  6303. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6304. }
  6305. }
  6306. },
  6307. [
  6308. {
  6309. name: "Teramacro",
  6310. height: math.unit(500000, "lightyears"),
  6311. default: true
  6312. },
  6313. ]
  6314. ))
  6315. characterMakers.push(() => makeCharacter(
  6316. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6317. {
  6318. front: {
  6319. height: math.unit(2, "meters"),
  6320. weight: math.unit(150, "kg"),
  6321. name: "Front",
  6322. image: {
  6323. source: "./media/characters/vemus/front.svg",
  6324. extra: 2384 / 2084,
  6325. bottom: 0.0123
  6326. }
  6327. }
  6328. },
  6329. [
  6330. {
  6331. name: "Normal",
  6332. height: math.unit(3.75, "meters"),
  6333. default: true
  6334. },
  6335. {
  6336. name: "Big",
  6337. height: math.unit(8, "meters")
  6338. },
  6339. {
  6340. name: "Macro",
  6341. height: math.unit(100, "meters")
  6342. },
  6343. {
  6344. name: "Macro+",
  6345. height: math.unit(1500, "meters")
  6346. },
  6347. {
  6348. name: "Stellar",
  6349. height: math.unit(14e8, "meters")
  6350. },
  6351. ]
  6352. ))
  6353. characterMakers.push(() => makeCharacter(
  6354. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6355. {
  6356. front: {
  6357. height: math.unit(2, "meters"),
  6358. weight: math.unit(70, "kg"),
  6359. name: "Front",
  6360. image: {
  6361. source: "./media/characters/beherit/front.svg",
  6362. extra: 1408 / 1242
  6363. }
  6364. }
  6365. },
  6366. [
  6367. {
  6368. name: "Normal",
  6369. height: math.unit(6, "feet")
  6370. },
  6371. {
  6372. name: "Lorg",
  6373. height: math.unit(25, "feet"),
  6374. default: true
  6375. },
  6376. {
  6377. name: "Lorger",
  6378. height: math.unit(75, "feet")
  6379. },
  6380. {
  6381. name: "Macro",
  6382. height: math.unit(200, "meters")
  6383. },
  6384. ]
  6385. ))
  6386. characterMakers.push(() => makeCharacter(
  6387. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6388. {
  6389. front: {
  6390. height: math.unit(2, "meters"),
  6391. weight: math.unit(150, "kg"),
  6392. name: "Front",
  6393. image: {
  6394. source: "./media/characters/everett/front.svg",
  6395. extra: 2038 / 1737,
  6396. bottom: 0.03
  6397. }
  6398. },
  6399. paw: {
  6400. height: math.unit(2 / 3.6, "meters"),
  6401. name: "Paw",
  6402. image: {
  6403. source: "./media/characters/everett/paw.svg"
  6404. }
  6405. },
  6406. },
  6407. [
  6408. {
  6409. name: "Normal",
  6410. height: math.unit(15, "feet"),
  6411. default: true
  6412. },
  6413. {
  6414. name: "Lorg",
  6415. height: math.unit(70, "feet"),
  6416. default: true
  6417. },
  6418. {
  6419. name: "Lorger",
  6420. height: math.unit(250, "feet")
  6421. },
  6422. {
  6423. name: "Macro",
  6424. height: math.unit(500, "meters")
  6425. },
  6426. ]
  6427. ))
  6428. characterMakers.push(() => makeCharacter(
  6429. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6430. {
  6431. front: {
  6432. height: math.unit(2, "meters"),
  6433. weight: math.unit(86, "kg"),
  6434. name: "Front",
  6435. image: {
  6436. source: "./media/characters/rose/front.svg",
  6437. extra: 350/335,
  6438. bottom: 10/360
  6439. }
  6440. },
  6441. frontAlt: {
  6442. height: math.unit(1.6, "meters"),
  6443. weight: math.unit(86, "kg"),
  6444. name: "Front (Alt)",
  6445. image: {
  6446. source: "./media/characters/rose/front-alt.svg",
  6447. extra: 299/283,
  6448. bottom: 3/302
  6449. }
  6450. },
  6451. plush: {
  6452. height: math.unit(2, "meters"),
  6453. weight: math.unit(86/3, "kg"),
  6454. name: "Plush",
  6455. image: {
  6456. source: "./media/characters/rose/plush.svg",
  6457. extra: 361/337,
  6458. bottom: 11/372
  6459. }
  6460. },
  6461. },
  6462. [
  6463. {
  6464. name: "Mini-Micro",
  6465. height: math.unit(1, "cm")
  6466. },
  6467. {
  6468. name: "Micro",
  6469. height: math.unit(3.5, "inches"),
  6470. default: true
  6471. },
  6472. {
  6473. name: "Normal",
  6474. height: math.unit(6 + 1 / 6, "feet")
  6475. },
  6476. {
  6477. name: "Mini-Macro",
  6478. height: math.unit(9 + 10 / 12, "feet")
  6479. },
  6480. ]
  6481. ))
  6482. characterMakers.push(() => makeCharacter(
  6483. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6484. {
  6485. front: {
  6486. height: math.unit(2, "meters"),
  6487. weight: math.unit(350, "lbs"),
  6488. name: "Front",
  6489. image: {
  6490. source: "./media/characters/regal/front.svg"
  6491. }
  6492. },
  6493. back: {
  6494. height: math.unit(2, "meters"),
  6495. weight: math.unit(350, "lbs"),
  6496. name: "Back",
  6497. image: {
  6498. source: "./media/characters/regal/back.svg"
  6499. }
  6500. },
  6501. },
  6502. [
  6503. {
  6504. name: "Macro",
  6505. height: math.unit(350, "feet"),
  6506. default: true
  6507. }
  6508. ]
  6509. ))
  6510. characterMakers.push(() => makeCharacter(
  6511. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6512. {
  6513. front: {
  6514. height: math.unit(4 + 11 / 12, "feet"),
  6515. weight: math.unit(100, "lbs"),
  6516. name: "Front",
  6517. image: {
  6518. source: "./media/characters/opal/front.svg"
  6519. }
  6520. },
  6521. frontAlt: {
  6522. height: math.unit(4 + 11 / 12, "feet"),
  6523. weight: math.unit(100, "lbs"),
  6524. name: "Front (Alt)",
  6525. image: {
  6526. source: "./media/characters/opal/front-alt.svg"
  6527. }
  6528. },
  6529. },
  6530. [
  6531. {
  6532. name: "Small",
  6533. height: math.unit(4 + 11 / 12, "feet")
  6534. },
  6535. {
  6536. name: "Normal",
  6537. height: math.unit(20, "feet"),
  6538. default: true
  6539. },
  6540. {
  6541. name: "Macro",
  6542. height: math.unit(120, "feet")
  6543. },
  6544. {
  6545. name: "Megamacro",
  6546. height: math.unit(80, "miles")
  6547. },
  6548. {
  6549. name: "True Size",
  6550. height: math.unit(100000, "lightyears")
  6551. },
  6552. ]
  6553. ))
  6554. characterMakers.push(() => makeCharacter(
  6555. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6556. {
  6557. front: {
  6558. height: math.unit(6, "feet"),
  6559. weight: math.unit(200, "lbs"),
  6560. name: "Front",
  6561. image: {
  6562. source: "./media/characters/vector-wuff/front.svg"
  6563. }
  6564. }
  6565. },
  6566. [
  6567. {
  6568. name: "Normal",
  6569. height: math.unit(2.8, "meters")
  6570. },
  6571. {
  6572. name: "Macro",
  6573. height: math.unit(450, "meters"),
  6574. default: true
  6575. },
  6576. {
  6577. name: "Megamacro",
  6578. height: math.unit(15, "kilometers")
  6579. }
  6580. ]
  6581. ))
  6582. characterMakers.push(() => makeCharacter(
  6583. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6584. {
  6585. front: {
  6586. height: math.unit(6, "feet"),
  6587. weight: math.unit(256, "lbs"),
  6588. name: "Front",
  6589. image: {
  6590. source: "./media/characters/dannik/front.svg"
  6591. }
  6592. }
  6593. },
  6594. [
  6595. {
  6596. name: "Macro",
  6597. height: math.unit(69.57, "meters"),
  6598. default: true
  6599. },
  6600. ]
  6601. ))
  6602. characterMakers.push(() => makeCharacter(
  6603. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6604. {
  6605. front: {
  6606. height: math.unit(6, "feet"),
  6607. weight: math.unit(120, "lbs"),
  6608. name: "Front",
  6609. image: {
  6610. source: "./media/characters/azura-saharah/front.svg"
  6611. }
  6612. },
  6613. back: {
  6614. height: math.unit(6, "feet"),
  6615. weight: math.unit(120, "lbs"),
  6616. name: "Back",
  6617. image: {
  6618. source: "./media/characters/azura-saharah/back.svg"
  6619. }
  6620. },
  6621. },
  6622. [
  6623. {
  6624. name: "Macro",
  6625. height: math.unit(100, "feet"),
  6626. default: true
  6627. },
  6628. ]
  6629. ))
  6630. characterMakers.push(() => makeCharacter(
  6631. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6632. {
  6633. side: {
  6634. height: math.unit(5 + 4 / 12, "feet"),
  6635. weight: math.unit(163, "lbs"),
  6636. name: "Side",
  6637. image: {
  6638. source: "./media/characters/kennedy/side.svg"
  6639. }
  6640. }
  6641. },
  6642. [
  6643. {
  6644. name: "Standard Doggo",
  6645. height: math.unit(5 + 4 / 12, "feet")
  6646. },
  6647. {
  6648. name: "Big Doggo",
  6649. height: math.unit(25 + 3 / 12, "feet"),
  6650. default: true
  6651. },
  6652. ]
  6653. ))
  6654. characterMakers.push(() => makeCharacter(
  6655. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6656. {
  6657. front: {
  6658. height: math.unit(6, "feet"),
  6659. weight: math.unit(90, "lbs"),
  6660. name: "Front",
  6661. image: {
  6662. source: "./media/characters/odi-lunar/front.svg"
  6663. }
  6664. }
  6665. },
  6666. [
  6667. {
  6668. name: "Micro",
  6669. height: math.unit(3, "inches"),
  6670. default: true
  6671. },
  6672. {
  6673. name: "Normal",
  6674. height: math.unit(5.5, "feet")
  6675. }
  6676. ]
  6677. ))
  6678. characterMakers.push(() => makeCharacter(
  6679. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6680. {
  6681. back: {
  6682. height: math.unit(6, "feet"),
  6683. weight: math.unit(220, "lbs"),
  6684. name: "Back",
  6685. image: {
  6686. source: "./media/characters/mandake/back.svg"
  6687. }
  6688. }
  6689. },
  6690. [
  6691. {
  6692. name: "Normal",
  6693. height: math.unit(7, "feet"),
  6694. default: true
  6695. },
  6696. {
  6697. name: "Macro",
  6698. height: math.unit(78, "feet")
  6699. },
  6700. {
  6701. name: "Macro+",
  6702. height: math.unit(300, "meters")
  6703. },
  6704. {
  6705. name: "Macro++",
  6706. height: math.unit(2400, "feet")
  6707. },
  6708. {
  6709. name: "Megamacro",
  6710. height: math.unit(5167, "meters")
  6711. },
  6712. {
  6713. name: "Gigamacro",
  6714. height: math.unit(41769, "miles")
  6715. },
  6716. ]
  6717. ))
  6718. characterMakers.push(() => makeCharacter(
  6719. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6720. {
  6721. front: {
  6722. height: math.unit(6, "feet"),
  6723. weight: math.unit(120, "lbs"),
  6724. name: "Front",
  6725. image: {
  6726. source: "./media/characters/yozey/front.svg"
  6727. }
  6728. },
  6729. frontAlt: {
  6730. height: math.unit(6, "feet"),
  6731. weight: math.unit(120, "lbs"),
  6732. name: "Front (Alt)",
  6733. image: {
  6734. source: "./media/characters/yozey/front-alt.svg"
  6735. }
  6736. },
  6737. side: {
  6738. height: math.unit(6, "feet"),
  6739. weight: math.unit(120, "lbs"),
  6740. name: "Side",
  6741. image: {
  6742. source: "./media/characters/yozey/side.svg"
  6743. }
  6744. },
  6745. },
  6746. [
  6747. {
  6748. name: "Micro",
  6749. height: math.unit(3, "inches"),
  6750. default: true
  6751. },
  6752. {
  6753. name: "Normal",
  6754. height: math.unit(6, "feet")
  6755. }
  6756. ]
  6757. ))
  6758. characterMakers.push(() => makeCharacter(
  6759. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6760. {
  6761. front: {
  6762. height: math.unit(6, "feet"),
  6763. weight: math.unit(103, "lbs"),
  6764. name: "Front",
  6765. image: {
  6766. source: "./media/characters/valeska-voss/front.svg"
  6767. }
  6768. }
  6769. },
  6770. [
  6771. {
  6772. name: "Mini-Sized Sub",
  6773. height: math.unit(3.1, "inches")
  6774. },
  6775. {
  6776. name: "Mid-Sized Sub",
  6777. height: math.unit(6.2, "inches")
  6778. },
  6779. {
  6780. name: "Full-Sized Sub",
  6781. height: math.unit(9.3, "inches")
  6782. },
  6783. {
  6784. name: "Normal",
  6785. height: math.unit(5 + 2 / 12, "foot"),
  6786. default: true
  6787. },
  6788. ]
  6789. ))
  6790. characterMakers.push(() => makeCharacter(
  6791. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6792. {
  6793. front: {
  6794. height: math.unit(6, "feet"),
  6795. weight: math.unit(160, "lbs"),
  6796. name: "Front",
  6797. image: {
  6798. source: "./media/characters/gene-zeta/front.svg",
  6799. extra: 3006 / 2826,
  6800. bottom: 182 / 3188
  6801. }
  6802. }
  6803. },
  6804. [
  6805. {
  6806. name: "Micro",
  6807. height: math.unit(6, "inches")
  6808. },
  6809. {
  6810. name: "Normal",
  6811. height: math.unit(5 + 11 / 12, "foot"),
  6812. default: true
  6813. },
  6814. {
  6815. name: "Macro",
  6816. height: math.unit(140, "feet")
  6817. },
  6818. {
  6819. name: "Supercharged",
  6820. height: math.unit(2500, "feet")
  6821. },
  6822. ]
  6823. ))
  6824. characterMakers.push(() => makeCharacter(
  6825. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6826. {
  6827. front: {
  6828. height: math.unit(6, "feet"),
  6829. weight: math.unit(350, "lbs"),
  6830. name: "Front",
  6831. image: {
  6832. source: "./media/characters/razinox/front.svg",
  6833. extra: 1686 / 1548,
  6834. bottom: 28.2 / 1868
  6835. }
  6836. },
  6837. back: {
  6838. height: math.unit(6, "feet"),
  6839. weight: math.unit(350, "lbs"),
  6840. name: "Back",
  6841. image: {
  6842. source: "./media/characters/razinox/back.svg",
  6843. extra: 1660 / 1590,
  6844. bottom: 15 / 1665
  6845. }
  6846. },
  6847. },
  6848. [
  6849. {
  6850. name: "Normal",
  6851. height: math.unit(10 + 8 / 12, "foot")
  6852. },
  6853. {
  6854. name: "Minimacro",
  6855. height: math.unit(15, "foot")
  6856. },
  6857. {
  6858. name: "Macro",
  6859. height: math.unit(60, "foot"),
  6860. default: true
  6861. },
  6862. {
  6863. name: "Megamacro",
  6864. height: math.unit(5, "miles")
  6865. },
  6866. {
  6867. name: "Gigamacro",
  6868. height: math.unit(6000, "miles")
  6869. },
  6870. ]
  6871. ))
  6872. characterMakers.push(() => makeCharacter(
  6873. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6874. {
  6875. front: {
  6876. height: math.unit(6, "feet"),
  6877. weight: math.unit(150, "lbs"),
  6878. name: "Front",
  6879. image: {
  6880. source: "./media/characters/cobalt/front.svg"
  6881. }
  6882. }
  6883. },
  6884. [
  6885. {
  6886. name: "Normal",
  6887. height: math.unit(8 + 1 / 12, "foot")
  6888. },
  6889. {
  6890. name: "Macro",
  6891. height: math.unit(111, "foot"),
  6892. default: true
  6893. },
  6894. {
  6895. name: "Supracosmic",
  6896. height: math.unit(1e42, "feet")
  6897. },
  6898. ]
  6899. ))
  6900. characterMakers.push(() => makeCharacter(
  6901. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6902. {
  6903. front: {
  6904. height: math.unit(6, "feet"),
  6905. weight: math.unit(140, "lbs"),
  6906. name: "Front",
  6907. image: {
  6908. source: "./media/characters/amanda/front.svg"
  6909. }
  6910. }
  6911. },
  6912. [
  6913. {
  6914. name: "Micro",
  6915. height: math.unit(5, "inches"),
  6916. default: true
  6917. },
  6918. ]
  6919. ))
  6920. characterMakers.push(() => makeCharacter(
  6921. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6922. {
  6923. front: {
  6924. height: math.unit(2.75, "meters"),
  6925. weight: math.unit(1200, "lb"),
  6926. name: "Front",
  6927. image: {
  6928. source: "./media/characters/teal/front.svg",
  6929. extra: 2463 / 2320,
  6930. bottom: 166 / 2629
  6931. }
  6932. },
  6933. back: {
  6934. height: math.unit(2.75, "meters"),
  6935. weight: math.unit(1200, "lb"),
  6936. name: "Back",
  6937. image: {
  6938. source: "./media/characters/teal/back.svg",
  6939. extra: 2580 / 2489,
  6940. bottom: 151 / 2731
  6941. }
  6942. },
  6943. sitting: {
  6944. height: math.unit(1.9, "meters"),
  6945. weight: math.unit(1200, "lb"),
  6946. name: "Sitting",
  6947. image: {
  6948. source: "./media/characters/teal/sitting.svg",
  6949. extra: 623 / 590,
  6950. bottom: 121 / 744
  6951. }
  6952. },
  6953. standing: {
  6954. height: math.unit(2.75, "meters"),
  6955. weight: math.unit(1200, "lb"),
  6956. name: "Standing",
  6957. image: {
  6958. source: "./media/characters/teal/standing.svg",
  6959. extra: 923 / 893,
  6960. bottom: 60 / 983
  6961. }
  6962. },
  6963. stretching: {
  6964. height: math.unit(3.65, "meters"),
  6965. weight: math.unit(1200, "lb"),
  6966. name: "Stretching",
  6967. image: {
  6968. source: "./media/characters/teal/stretching.svg",
  6969. extra: 1276 / 1244,
  6970. bottom: 0 / 1276
  6971. }
  6972. },
  6973. legged: {
  6974. height: math.unit(1.3, "meters"),
  6975. weight: math.unit(100, "lb"),
  6976. name: "Legged",
  6977. image: {
  6978. source: "./media/characters/teal/legged.svg",
  6979. extra: 462 / 437,
  6980. bottom: 24 / 486
  6981. }
  6982. },
  6983. naga: {
  6984. height: math.unit(5.4, "meters"),
  6985. weight: math.unit(4000, "lb"),
  6986. name: "Naga",
  6987. image: {
  6988. source: "./media/characters/teal/naga.svg",
  6989. extra: 1902 / 1858,
  6990. bottom: 0 / 1902
  6991. }
  6992. },
  6993. hand: {
  6994. height: math.unit(0.52, "meters"),
  6995. name: "Hand",
  6996. image: {
  6997. source: "./media/characters/teal/hand.svg"
  6998. }
  6999. },
  7000. maw: {
  7001. height: math.unit(0.43, "meters"),
  7002. name: "Maw",
  7003. image: {
  7004. source: "./media/characters/teal/maw.svg"
  7005. }
  7006. },
  7007. slit: {
  7008. height: math.unit(0.25, "meters"),
  7009. name: "Slit",
  7010. image: {
  7011. source: "./media/characters/teal/slit.svg"
  7012. }
  7013. },
  7014. },
  7015. [
  7016. {
  7017. name: "Normal",
  7018. height: math.unit(2.75, "meters"),
  7019. default: true
  7020. },
  7021. {
  7022. name: "Macro",
  7023. height: math.unit(300, "feet")
  7024. },
  7025. {
  7026. name: "Macro+",
  7027. height: math.unit(2000, "feet")
  7028. },
  7029. ]
  7030. ))
  7031. characterMakers.push(() => makeCharacter(
  7032. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7033. {
  7034. frontCat: {
  7035. height: math.unit(6, "feet"),
  7036. weight: math.unit(180, "lbs"),
  7037. name: "Front (Cat)",
  7038. image: {
  7039. source: "./media/characters/ravin-amulet/front-cat.svg"
  7040. }
  7041. },
  7042. frontCatAlt: {
  7043. height: math.unit(6, "feet"),
  7044. weight: math.unit(180, "lbs"),
  7045. name: "Front (Alt, Cat)",
  7046. image: {
  7047. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7048. }
  7049. },
  7050. frontWerewolf: {
  7051. height: math.unit(6 * 1.2, "feet"),
  7052. weight: math.unit(225, "lbs"),
  7053. name: "Front (Werewolf)",
  7054. image: {
  7055. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7056. }
  7057. },
  7058. backWerewolf: {
  7059. height: math.unit(6 * 1.2, "feet"),
  7060. weight: math.unit(225, "lbs"),
  7061. name: "Back (Werewolf)",
  7062. image: {
  7063. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7064. }
  7065. },
  7066. },
  7067. [
  7068. {
  7069. name: "Nano",
  7070. height: math.unit(1, "micrometer")
  7071. },
  7072. {
  7073. name: "Micro",
  7074. height: math.unit(1, "inch")
  7075. },
  7076. {
  7077. name: "Normal",
  7078. height: math.unit(6, "feet"),
  7079. default: true
  7080. },
  7081. {
  7082. name: "Macro",
  7083. height: math.unit(60, "feet")
  7084. }
  7085. ]
  7086. ))
  7087. characterMakers.push(() => makeCharacter(
  7088. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7089. {
  7090. front: {
  7091. height: math.unit(6, "feet"),
  7092. weight: math.unit(165, "lbs"),
  7093. name: "Front",
  7094. image: {
  7095. source: "./media/characters/fluoresce/front.svg"
  7096. }
  7097. }
  7098. },
  7099. [
  7100. {
  7101. name: "Micro",
  7102. height: math.unit(6, "cm")
  7103. },
  7104. {
  7105. name: "Normal",
  7106. height: math.unit(5 + 7 / 12, "feet"),
  7107. default: true
  7108. },
  7109. {
  7110. name: "Macro",
  7111. height: math.unit(56, "feet")
  7112. },
  7113. {
  7114. name: "Megamacro",
  7115. height: math.unit(1.9, "miles")
  7116. },
  7117. ]
  7118. ))
  7119. characterMakers.push(() => makeCharacter(
  7120. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7121. {
  7122. front: {
  7123. height: math.unit(9 + 6 / 12, "feet"),
  7124. weight: math.unit(523, "lbs"),
  7125. name: "Side",
  7126. image: {
  7127. source: "./media/characters/aurora/side.svg"
  7128. }
  7129. }
  7130. },
  7131. [
  7132. {
  7133. name: "Normal",
  7134. height: math.unit(9 + 6 / 12, "feet")
  7135. },
  7136. {
  7137. name: "Macro",
  7138. height: math.unit(96, "feet"),
  7139. default: true
  7140. },
  7141. {
  7142. name: "Macro+",
  7143. height: math.unit(243, "feet")
  7144. },
  7145. ]
  7146. ))
  7147. characterMakers.push(() => makeCharacter(
  7148. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7149. {
  7150. front: {
  7151. height: math.unit(194, "cm"),
  7152. weight: math.unit(90, "kg"),
  7153. name: "Front",
  7154. image: {
  7155. source: "./media/characters/ranek/front.svg"
  7156. }
  7157. },
  7158. side: {
  7159. height: math.unit(194, "cm"),
  7160. weight: math.unit(90, "kg"),
  7161. name: "Side",
  7162. image: {
  7163. source: "./media/characters/ranek/side.svg"
  7164. }
  7165. },
  7166. back: {
  7167. height: math.unit(194, "cm"),
  7168. weight: math.unit(90, "kg"),
  7169. name: "Back",
  7170. image: {
  7171. source: "./media/characters/ranek/back.svg"
  7172. }
  7173. },
  7174. feral: {
  7175. height: math.unit(30, "cm"),
  7176. weight: math.unit(1.6, "lbs"),
  7177. name: "Feral",
  7178. image: {
  7179. source: "./media/characters/ranek/feral.svg"
  7180. }
  7181. },
  7182. },
  7183. [
  7184. {
  7185. name: "Normal",
  7186. height: math.unit(194, "cm"),
  7187. default: true
  7188. },
  7189. {
  7190. name: "Macro",
  7191. height: math.unit(100, "meters")
  7192. },
  7193. ]
  7194. ))
  7195. characterMakers.push(() => makeCharacter(
  7196. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7197. {
  7198. front: {
  7199. height: math.unit(5 + 6 / 12, "feet"),
  7200. weight: math.unit(153, "lbs"),
  7201. name: "Front",
  7202. image: {
  7203. source: "./media/characters/andrew-cooper/front.svg"
  7204. }
  7205. },
  7206. },
  7207. [
  7208. {
  7209. name: "Nano",
  7210. height: math.unit(1, "mm")
  7211. },
  7212. {
  7213. name: "Micro",
  7214. height: math.unit(2, "inches")
  7215. },
  7216. {
  7217. name: "Normal",
  7218. height: math.unit(5 + 6 / 12, "feet"),
  7219. default: true
  7220. }
  7221. ]
  7222. ))
  7223. characterMakers.push(() => makeCharacter(
  7224. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7225. {
  7226. front: {
  7227. height: math.unit(6, "feet"),
  7228. weight: math.unit(180, "lbs"),
  7229. name: "Front",
  7230. image: {
  7231. source: "./media/characters/akane-sato/front.svg",
  7232. extra: 1219 / 1140
  7233. }
  7234. },
  7235. back: {
  7236. height: math.unit(6, "feet"),
  7237. weight: math.unit(180, "lbs"),
  7238. name: "Back",
  7239. image: {
  7240. source: "./media/characters/akane-sato/back.svg",
  7241. extra: 1219 / 1170
  7242. }
  7243. },
  7244. },
  7245. [
  7246. {
  7247. name: "Normal",
  7248. height: math.unit(2.5, "meters")
  7249. },
  7250. {
  7251. name: "Macro",
  7252. height: math.unit(250, "meters"),
  7253. default: true
  7254. },
  7255. {
  7256. name: "Megamacro",
  7257. height: math.unit(25, "km")
  7258. },
  7259. ]
  7260. ))
  7261. characterMakers.push(() => makeCharacter(
  7262. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7263. {
  7264. front: {
  7265. height: math.unit(6, "feet"),
  7266. weight: math.unit(65, "kg"),
  7267. name: "Front",
  7268. image: {
  7269. source: "./media/characters/rook/front.svg",
  7270. extra: 960 / 950
  7271. }
  7272. }
  7273. },
  7274. [
  7275. {
  7276. name: "Normal",
  7277. height: math.unit(8.8, "feet")
  7278. },
  7279. {
  7280. name: "Macro",
  7281. height: math.unit(88, "feet"),
  7282. default: true
  7283. },
  7284. {
  7285. name: "Megamacro",
  7286. height: math.unit(8, "miles")
  7287. },
  7288. ]
  7289. ))
  7290. characterMakers.push(() => makeCharacter(
  7291. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7292. {
  7293. front: {
  7294. height: math.unit(12 + 2 / 12, "feet"),
  7295. weight: math.unit(808, "lbs"),
  7296. name: "Front",
  7297. image: {
  7298. source: "./media/characters/prodigy/front.svg"
  7299. }
  7300. }
  7301. },
  7302. [
  7303. {
  7304. name: "Normal",
  7305. height: math.unit(12 + 2 / 12, "feet"),
  7306. default: true
  7307. },
  7308. {
  7309. name: "Macro",
  7310. height: math.unit(143, "feet")
  7311. },
  7312. {
  7313. name: "Macro+",
  7314. height: math.unit(400, "feet")
  7315. },
  7316. ]
  7317. ))
  7318. characterMakers.push(() => makeCharacter(
  7319. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7320. {
  7321. front: {
  7322. height: math.unit(6, "feet"),
  7323. weight: math.unit(225, "lbs"),
  7324. name: "Front",
  7325. image: {
  7326. source: "./media/characters/daniel/front.svg"
  7327. }
  7328. },
  7329. leaning: {
  7330. height: math.unit(6, "feet"),
  7331. weight: math.unit(225, "lbs"),
  7332. name: "Leaning",
  7333. image: {
  7334. source: "./media/characters/daniel/leaning.svg"
  7335. }
  7336. },
  7337. },
  7338. [
  7339. {
  7340. name: "Macro",
  7341. height: math.unit(1000, "feet"),
  7342. default: true
  7343. },
  7344. ]
  7345. ))
  7346. characterMakers.push(() => makeCharacter(
  7347. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7348. {
  7349. front: {
  7350. height: math.unit(6, "feet"),
  7351. weight: math.unit(88, "lbs"),
  7352. name: "Front",
  7353. image: {
  7354. source: "./media/characters/chiros/front.svg",
  7355. extra: 306 / 226
  7356. }
  7357. },
  7358. side: {
  7359. height: math.unit(6, "feet"),
  7360. weight: math.unit(88, "lbs"),
  7361. name: "Side",
  7362. image: {
  7363. source: "./media/characters/chiros/side.svg",
  7364. extra: 306 / 226
  7365. }
  7366. },
  7367. },
  7368. [
  7369. {
  7370. name: "Normal",
  7371. height: math.unit(6, "cm"),
  7372. default: true
  7373. },
  7374. ]
  7375. ))
  7376. characterMakers.push(() => makeCharacter(
  7377. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7378. {
  7379. front: {
  7380. height: math.unit(6, "feet"),
  7381. weight: math.unit(100, "lbs"),
  7382. name: "Front",
  7383. image: {
  7384. source: "./media/characters/selka/front.svg",
  7385. extra: 947 / 887
  7386. }
  7387. }
  7388. },
  7389. [
  7390. {
  7391. name: "Normal",
  7392. height: math.unit(5, "cm"),
  7393. default: true
  7394. },
  7395. ]
  7396. ))
  7397. characterMakers.push(() => makeCharacter(
  7398. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7399. {
  7400. front: {
  7401. height: math.unit(8 + 3 / 12, "feet"),
  7402. weight: math.unit(424, "lbs"),
  7403. name: "Front",
  7404. image: {
  7405. source: "./media/characters/verin/front.svg",
  7406. extra: 1845 / 1550
  7407. }
  7408. },
  7409. frontArmored: {
  7410. height: math.unit(8 + 3 / 12, "feet"),
  7411. weight: math.unit(424, "lbs"),
  7412. name: "Front (Armored)",
  7413. image: {
  7414. source: "./media/characters/verin/front-armor.svg",
  7415. extra: 1845 / 1550,
  7416. bottom: 0.01
  7417. }
  7418. },
  7419. back: {
  7420. height: math.unit(8 + 3 / 12, "feet"),
  7421. weight: math.unit(424, "lbs"),
  7422. name: "Back",
  7423. image: {
  7424. source: "./media/characters/verin/back.svg",
  7425. bottom: 0.1,
  7426. extra: 1
  7427. }
  7428. },
  7429. foot: {
  7430. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7431. name: "Foot",
  7432. image: {
  7433. source: "./media/characters/verin/foot.svg"
  7434. }
  7435. },
  7436. },
  7437. [
  7438. {
  7439. name: "Normal",
  7440. height: math.unit(8 + 3 / 12, "feet")
  7441. },
  7442. {
  7443. name: "Minimacro",
  7444. height: math.unit(21, "feet"),
  7445. default: true
  7446. },
  7447. {
  7448. name: "Macro",
  7449. height: math.unit(626, "feet")
  7450. },
  7451. ]
  7452. ))
  7453. characterMakers.push(() => makeCharacter(
  7454. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7455. {
  7456. front: {
  7457. height: math.unit(2.718, "meters"),
  7458. weight: math.unit(150, "lbs"),
  7459. name: "Front",
  7460. image: {
  7461. source: "./media/characters/sovrim-terraquian/front.svg"
  7462. }
  7463. },
  7464. back: {
  7465. height: math.unit(2.718, "meters"),
  7466. weight: math.unit(150, "lbs"),
  7467. name: "Back",
  7468. image: {
  7469. source: "./media/characters/sovrim-terraquian/back.svg"
  7470. }
  7471. }
  7472. },
  7473. [
  7474. {
  7475. name: "Micro",
  7476. height: math.unit(2, "inches")
  7477. },
  7478. {
  7479. name: "Small",
  7480. height: math.unit(1, "meter")
  7481. },
  7482. {
  7483. name: "Normal",
  7484. height: math.unit(Math.E, "meters"),
  7485. default: true
  7486. },
  7487. {
  7488. name: "Macro",
  7489. height: math.unit(20, "meters")
  7490. },
  7491. {
  7492. name: "Macro+",
  7493. height: math.unit(400, "meters")
  7494. },
  7495. ]
  7496. ))
  7497. characterMakers.push(() => makeCharacter(
  7498. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7499. {
  7500. front: {
  7501. height: math.unit(7, "feet"),
  7502. weight: math.unit(489, "lbs"),
  7503. name: "Front",
  7504. image: {
  7505. source: "./media/characters/reece-silvermane/front.svg",
  7506. bottom: 0.02,
  7507. extra: 1
  7508. }
  7509. },
  7510. },
  7511. [
  7512. {
  7513. name: "Macro",
  7514. height: math.unit(1.5, "miles"),
  7515. default: true
  7516. },
  7517. ]
  7518. ))
  7519. characterMakers.push(() => makeCharacter(
  7520. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7521. {
  7522. front: {
  7523. height: math.unit(6, "feet"),
  7524. weight: math.unit(78, "kg"),
  7525. name: "Front",
  7526. image: {
  7527. source: "./media/characters/kane/front.svg",
  7528. extra: 978 / 899
  7529. }
  7530. },
  7531. },
  7532. [
  7533. {
  7534. name: "Normal",
  7535. height: math.unit(2.1, "m"),
  7536. },
  7537. {
  7538. name: "Macro",
  7539. height: math.unit(1, "km"),
  7540. default: true
  7541. },
  7542. ]
  7543. ))
  7544. characterMakers.push(() => makeCharacter(
  7545. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7546. {
  7547. front: {
  7548. height: math.unit(6, "feet"),
  7549. weight: math.unit(200, "kg"),
  7550. name: "Front",
  7551. image: {
  7552. source: "./media/characters/tegon/front.svg",
  7553. bottom: 0.01,
  7554. extra: 1
  7555. }
  7556. },
  7557. },
  7558. [
  7559. {
  7560. name: "Micro",
  7561. height: math.unit(1, "inch")
  7562. },
  7563. {
  7564. name: "Normal",
  7565. height: math.unit(6 + 3 / 12, "feet"),
  7566. default: true
  7567. },
  7568. {
  7569. name: "Macro",
  7570. height: math.unit(300, "feet")
  7571. },
  7572. {
  7573. name: "Megamacro",
  7574. height: math.unit(69, "miles")
  7575. },
  7576. ]
  7577. ))
  7578. characterMakers.push(() => makeCharacter(
  7579. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7580. {
  7581. side: {
  7582. height: math.unit(6, "feet"),
  7583. weight: math.unit(2304, "lbs"),
  7584. name: "Side",
  7585. image: {
  7586. source: "./media/characters/arcturax/side.svg",
  7587. extra: 790 / 376,
  7588. bottom: 0.01
  7589. }
  7590. },
  7591. },
  7592. [
  7593. {
  7594. name: "Micro",
  7595. height: math.unit(2, "inch")
  7596. },
  7597. {
  7598. name: "Normal",
  7599. height: math.unit(6, "feet")
  7600. },
  7601. {
  7602. name: "Macro",
  7603. height: math.unit(39, "feet"),
  7604. default: true
  7605. },
  7606. {
  7607. name: "Megamacro",
  7608. height: math.unit(7, "miles")
  7609. },
  7610. ]
  7611. ))
  7612. characterMakers.push(() => makeCharacter(
  7613. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7614. {
  7615. front: {
  7616. height: math.unit(6, "feet"),
  7617. weight: math.unit(50, "lbs"),
  7618. name: "Front",
  7619. image: {
  7620. source: "./media/characters/sentri/front.svg",
  7621. extra: 1750 / 1570,
  7622. bottom: 0.025
  7623. }
  7624. },
  7625. frontAlt: {
  7626. height: math.unit(6, "feet"),
  7627. weight: math.unit(50, "lbs"),
  7628. name: "Front (Alt)",
  7629. image: {
  7630. source: "./media/characters/sentri/front-alt.svg",
  7631. extra: 1750 / 1570,
  7632. bottom: 0.025
  7633. }
  7634. },
  7635. },
  7636. [
  7637. {
  7638. name: "Normal",
  7639. height: math.unit(15, "feet"),
  7640. default: true
  7641. },
  7642. {
  7643. name: "Macro",
  7644. height: math.unit(2500, "feet")
  7645. }
  7646. ]
  7647. ))
  7648. characterMakers.push(() => makeCharacter(
  7649. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7650. {
  7651. front: {
  7652. height: math.unit(5 + 8 / 12, "feet"),
  7653. weight: math.unit(130, "lbs"),
  7654. name: "Front",
  7655. image: {
  7656. source: "./media/characters/corvin/front.svg",
  7657. extra: 1803 / 1629
  7658. }
  7659. },
  7660. frontShirt: {
  7661. height: math.unit(5 + 8 / 12, "feet"),
  7662. weight: math.unit(130, "lbs"),
  7663. name: "Front (Shirt)",
  7664. image: {
  7665. source: "./media/characters/corvin/front-shirt.svg",
  7666. extra: 1803 / 1629
  7667. }
  7668. },
  7669. frontPoncho: {
  7670. height: math.unit(5 + 8 / 12, "feet"),
  7671. weight: math.unit(130, "lbs"),
  7672. name: "Front (Poncho)",
  7673. image: {
  7674. source: "./media/characters/corvin/front-poncho.svg",
  7675. extra: 1803 / 1629
  7676. }
  7677. },
  7678. side: {
  7679. height: math.unit(5 + 8 / 12, "feet"),
  7680. weight: math.unit(130, "lbs"),
  7681. name: "Side",
  7682. image: {
  7683. source: "./media/characters/corvin/side.svg",
  7684. extra: 1012 / 945
  7685. }
  7686. },
  7687. back: {
  7688. height: math.unit(5 + 8 / 12, "feet"),
  7689. weight: math.unit(130, "lbs"),
  7690. name: "Back",
  7691. image: {
  7692. source: "./media/characters/corvin/back.svg",
  7693. extra: 1803 / 1629
  7694. }
  7695. },
  7696. },
  7697. [
  7698. {
  7699. name: "Micro",
  7700. height: math.unit(3, "inches")
  7701. },
  7702. {
  7703. name: "Normal",
  7704. height: math.unit(5 + 8 / 12, "feet")
  7705. },
  7706. {
  7707. name: "Macro",
  7708. height: math.unit(300, "feet"),
  7709. default: true
  7710. },
  7711. {
  7712. name: "Megamacro",
  7713. height: math.unit(500, "miles")
  7714. }
  7715. ]
  7716. ))
  7717. characterMakers.push(() => makeCharacter(
  7718. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7719. {
  7720. front: {
  7721. height: math.unit(6, "feet"),
  7722. weight: math.unit(135, "lbs"),
  7723. name: "Front",
  7724. image: {
  7725. source: "./media/characters/q/front.svg",
  7726. extra: 854 / 752,
  7727. bottom: 0.005
  7728. }
  7729. },
  7730. back: {
  7731. height: math.unit(6, "feet"),
  7732. weight: math.unit(130, "lbs"),
  7733. name: "Back",
  7734. image: {
  7735. source: "./media/characters/q/back.svg",
  7736. extra: 854 / 752
  7737. }
  7738. },
  7739. },
  7740. [
  7741. {
  7742. name: "Macro",
  7743. height: math.unit(90, "feet"),
  7744. default: true
  7745. },
  7746. {
  7747. name: "Extra Macro",
  7748. height: math.unit(300, "feet"),
  7749. },
  7750. {
  7751. name: "BIG WALF",
  7752. height: math.unit(750, "feet"),
  7753. },
  7754. ]
  7755. ))
  7756. characterMakers.push(() => makeCharacter(
  7757. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7758. {
  7759. front: {
  7760. height: math.unit(6, "feet"),
  7761. weight: math.unit(150, "lbs"),
  7762. name: "Front",
  7763. image: {
  7764. source: "./media/characters/carley/front.svg",
  7765. extra: 3927 / 3540,
  7766. bottom: 29.2 / 735
  7767. }
  7768. }
  7769. },
  7770. [
  7771. {
  7772. name: "Normal",
  7773. height: math.unit(6 + 3 / 12, "feet")
  7774. },
  7775. {
  7776. name: "Macro",
  7777. height: math.unit(185, "feet"),
  7778. default: true
  7779. },
  7780. {
  7781. name: "Megamacro",
  7782. height: math.unit(8, "miles"),
  7783. },
  7784. ]
  7785. ))
  7786. characterMakers.push(() => makeCharacter(
  7787. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7788. {
  7789. front: {
  7790. height: math.unit(3, "feet"),
  7791. weight: math.unit(28, "lbs"),
  7792. name: "Front",
  7793. image: {
  7794. source: "./media/characters/citrine/front.svg"
  7795. }
  7796. }
  7797. },
  7798. [
  7799. {
  7800. name: "Normal",
  7801. height: math.unit(3, "feet"),
  7802. default: true
  7803. }
  7804. ]
  7805. ))
  7806. characterMakers.push(() => makeCharacter(
  7807. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7808. {
  7809. front: {
  7810. height: math.unit(14, "feet"),
  7811. weight: math.unit(1450, "kg"),
  7812. capacity: math.unit(15, "people"),
  7813. name: "Front",
  7814. image: {
  7815. source: "./media/characters/aura-starwind/front.svg",
  7816. extra: 1455 / 1335
  7817. }
  7818. },
  7819. side: {
  7820. height: math.unit(14, "feet"),
  7821. weight: math.unit(1450, "kg"),
  7822. capacity: math.unit(15, "people"),
  7823. name: "Side",
  7824. image: {
  7825. source: "./media/characters/aura-starwind/side.svg",
  7826. extra: 1654 / 1497
  7827. }
  7828. },
  7829. taur: {
  7830. height: math.unit(18, "feet"),
  7831. weight: math.unit(5500, "kg"),
  7832. capacity: math.unit(50, "people"),
  7833. name: "Taur",
  7834. image: {
  7835. source: "./media/characters/aura-starwind/taur.svg",
  7836. extra: 1760 / 1650
  7837. }
  7838. },
  7839. feral: {
  7840. height: math.unit(46, "feet"),
  7841. weight: math.unit(25000, "kg"),
  7842. capacity: math.unit(120, "people"),
  7843. name: "Feral",
  7844. image: {
  7845. source: "./media/characters/aura-starwind/feral.svg"
  7846. }
  7847. },
  7848. },
  7849. [
  7850. {
  7851. name: "Normal",
  7852. height: math.unit(14, "feet"),
  7853. default: true
  7854. },
  7855. {
  7856. name: "Macro",
  7857. height: math.unit(50, "meters")
  7858. },
  7859. {
  7860. name: "Megamacro",
  7861. height: math.unit(5000, "meters")
  7862. },
  7863. {
  7864. name: "Gigamacro",
  7865. height: math.unit(100000, "kilometers")
  7866. },
  7867. ]
  7868. ))
  7869. characterMakers.push(() => makeCharacter(
  7870. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7871. {
  7872. front: {
  7873. height: math.unit(2 + 7 / 12, "feet"),
  7874. weight: math.unit(32, "lbs"),
  7875. name: "Front",
  7876. image: {
  7877. source: "./media/characters/rivet/front.svg",
  7878. extra: 1716 / 1658,
  7879. bottom: 0.03
  7880. }
  7881. },
  7882. foot: {
  7883. height: math.unit(0.551, "feet"),
  7884. name: "Rivet's Foot",
  7885. image: {
  7886. source: "./media/characters/rivet/foot.svg"
  7887. },
  7888. rename: true
  7889. }
  7890. },
  7891. [
  7892. {
  7893. name: "Micro",
  7894. height: math.unit(1.5, "inches"),
  7895. },
  7896. {
  7897. name: "Normal",
  7898. height: math.unit(2 + 7 / 12, "feet"),
  7899. default: true
  7900. },
  7901. {
  7902. name: "Macro",
  7903. height: math.unit(85, "feet")
  7904. },
  7905. {
  7906. name: "Megamacro",
  7907. height: math.unit(2.2, "km")
  7908. }
  7909. ]
  7910. ))
  7911. characterMakers.push(() => makeCharacter(
  7912. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7913. {
  7914. front: {
  7915. height: math.unit(5 + 9 / 12, "feet"),
  7916. weight: math.unit(150, "lbs"),
  7917. name: "Front",
  7918. image: {
  7919. source: "./media/characters/coffee/front.svg",
  7920. extra: 3666 / 3032,
  7921. bottom: 0.04
  7922. }
  7923. },
  7924. foot: {
  7925. height: math.unit(1.29, "feet"),
  7926. name: "Foot",
  7927. image: {
  7928. source: "./media/characters/coffee/foot.svg"
  7929. }
  7930. },
  7931. },
  7932. [
  7933. {
  7934. name: "Micro",
  7935. height: math.unit(2, "inches"),
  7936. },
  7937. {
  7938. name: "Normal",
  7939. height: math.unit(5 + 9 / 12, "feet"),
  7940. default: true
  7941. },
  7942. {
  7943. name: "Macro",
  7944. height: math.unit(800, "feet")
  7945. },
  7946. {
  7947. name: "Megamacro",
  7948. height: math.unit(25, "miles")
  7949. }
  7950. ]
  7951. ))
  7952. characterMakers.push(() => makeCharacter(
  7953. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7954. {
  7955. front: {
  7956. height: math.unit(6, "feet"),
  7957. weight: math.unit(200, "lbs"),
  7958. name: "Front",
  7959. image: {
  7960. source: "./media/characters/chari-gal/front.svg",
  7961. extra: 1568 / 1385,
  7962. bottom: 0.047
  7963. }
  7964. },
  7965. gigantamax: {
  7966. height: math.unit(6 * 16, "feet"),
  7967. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7968. name: "Gigantamax",
  7969. image: {
  7970. source: "./media/characters/chari-gal/gigantamax.svg",
  7971. extra: 1124 / 888,
  7972. bottom: 0.03
  7973. }
  7974. },
  7975. },
  7976. [
  7977. {
  7978. name: "Normal",
  7979. height: math.unit(5 + 7 / 12, "feet")
  7980. },
  7981. {
  7982. name: "Macro",
  7983. height: math.unit(200, "feet"),
  7984. default: true
  7985. }
  7986. ]
  7987. ))
  7988. characterMakers.push(() => makeCharacter(
  7989. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7990. {
  7991. front: {
  7992. height: math.unit(6, "feet"),
  7993. weight: math.unit(150, "lbs"),
  7994. name: "Front",
  7995. image: {
  7996. source: "./media/characters/nova/front.svg",
  7997. extra: 5000 / 4722,
  7998. bottom: 0.02
  7999. }
  8000. }
  8001. },
  8002. [
  8003. {
  8004. name: "Micro-",
  8005. height: math.unit(0.8, "inches")
  8006. },
  8007. {
  8008. name: "Micro",
  8009. height: math.unit(2, "inches"),
  8010. default: true
  8011. },
  8012. ]
  8013. ))
  8014. characterMakers.push(() => makeCharacter(
  8015. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8016. {
  8017. front: {
  8018. height: math.unit(3 + 1 / 12, "feet"),
  8019. weight: math.unit(21.7, "lbs"),
  8020. name: "Front",
  8021. image: {
  8022. source: "./media/characters/argent/front.svg",
  8023. extra: 1471 / 1331,
  8024. bottom: 100.8 / 1575.5
  8025. }
  8026. }
  8027. },
  8028. [
  8029. {
  8030. name: "Micro",
  8031. height: math.unit(2, "inches")
  8032. },
  8033. {
  8034. name: "Normal",
  8035. height: math.unit(3 + 1 / 12, "feet"),
  8036. default: true
  8037. },
  8038. {
  8039. name: "Macro",
  8040. height: math.unit(120, "feet")
  8041. },
  8042. ]
  8043. ))
  8044. characterMakers.push(() => makeCharacter(
  8045. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8046. {
  8047. lamp: {
  8048. height: math.unit(7 * 1559 / 989, "feet"),
  8049. name: "Magic Lamp",
  8050. image: {
  8051. source: "./media/characters/mira-al-cul/lamp.svg",
  8052. extra: 1617 / 1559
  8053. }
  8054. },
  8055. front: {
  8056. height: math.unit(7, "feet"),
  8057. name: "Front",
  8058. image: {
  8059. source: "./media/characters/mira-al-cul/front.svg",
  8060. extra: 1044 / 990
  8061. }
  8062. },
  8063. },
  8064. [
  8065. {
  8066. name: "Heavily Restricted",
  8067. height: math.unit(7 * 1559 / 989, "feet")
  8068. },
  8069. {
  8070. name: "Freshly Freed",
  8071. height: math.unit(50 * 1559 / 989, "feet")
  8072. },
  8073. {
  8074. name: "World Encompassing",
  8075. height: math.unit(10000 * 1559 / 989, "miles")
  8076. },
  8077. {
  8078. name: "Galactic",
  8079. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8080. },
  8081. {
  8082. name: "Palmed Universe",
  8083. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8084. default: true
  8085. },
  8086. {
  8087. name: "Multiversal Matriarch",
  8088. height: math.unit(8.87e10, "yottameters")
  8089. },
  8090. {
  8091. name: "Void Mother",
  8092. height: math.unit(3.14e110, "yottaparsecs")
  8093. },
  8094. {
  8095. name: "Toying with Transcendence",
  8096. height: math.unit(1e307, "meters")
  8097. },
  8098. ]
  8099. ))
  8100. characterMakers.push(() => makeCharacter(
  8101. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8102. {
  8103. front: {
  8104. height: math.unit(17 + 1 / 12, "feet"),
  8105. weight: math.unit(476.2 * 5, "lbs"),
  8106. name: "Front",
  8107. image: {
  8108. source: "./media/characters/kuro-shi-uchū/front.svg",
  8109. extra: 2329 / 1835,
  8110. bottom: 0.02
  8111. }
  8112. },
  8113. },
  8114. [
  8115. {
  8116. name: "Micro",
  8117. height: math.unit(2, "inches")
  8118. },
  8119. {
  8120. name: "Normal",
  8121. height: math.unit(12, "meters")
  8122. },
  8123. {
  8124. name: "Planetary",
  8125. height: math.unit(0.00929, "AU"),
  8126. default: true
  8127. },
  8128. {
  8129. name: "Universal",
  8130. height: math.unit(20, "gigaparsecs")
  8131. },
  8132. ]
  8133. ))
  8134. characterMakers.push(() => makeCharacter(
  8135. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8136. {
  8137. front: {
  8138. height: math.unit(5 + 2 / 12, "feet"),
  8139. weight: math.unit(120, "lbs"),
  8140. name: "Front",
  8141. image: {
  8142. source: "./media/characters/katherine/front.svg",
  8143. extra: 2075 / 1969
  8144. }
  8145. },
  8146. dress: {
  8147. height: math.unit(5 + 2 / 12, "feet"),
  8148. weight: math.unit(120, "lbs"),
  8149. name: "Dress",
  8150. image: {
  8151. source: "./media/characters/katherine/dress.svg",
  8152. extra: 2258 / 2064
  8153. }
  8154. },
  8155. },
  8156. [
  8157. {
  8158. name: "Micro",
  8159. height: math.unit(1, "inches"),
  8160. default: true
  8161. },
  8162. {
  8163. name: "Normal",
  8164. height: math.unit(5 + 2 / 12, "feet")
  8165. },
  8166. {
  8167. name: "Macro",
  8168. height: math.unit(100, "meters")
  8169. },
  8170. {
  8171. name: "Megamacro",
  8172. height: math.unit(80, "miles")
  8173. },
  8174. ]
  8175. ))
  8176. characterMakers.push(() => makeCharacter(
  8177. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8178. {
  8179. front: {
  8180. height: math.unit(7 + 8 / 12, "feet"),
  8181. weight: math.unit(250, "lbs"),
  8182. name: "Front",
  8183. image: {
  8184. source: "./media/characters/yevis/front.svg",
  8185. extra: 1938 / 1755
  8186. }
  8187. }
  8188. },
  8189. [
  8190. {
  8191. name: "Mortal",
  8192. height: math.unit(7 + 8 / 12, "feet")
  8193. },
  8194. {
  8195. name: "Battle",
  8196. height: math.unit(25 + 11 / 12, "feet")
  8197. },
  8198. {
  8199. name: "Wrath",
  8200. height: math.unit(1654 + 11 / 12, "feet")
  8201. },
  8202. {
  8203. name: "Planet Destroyer",
  8204. height: math.unit(12000, "miles")
  8205. },
  8206. {
  8207. name: "Galaxy Conqueror",
  8208. height: math.unit(1.45, "zettameters"),
  8209. default: true
  8210. },
  8211. {
  8212. name: "Universal War",
  8213. height: math.unit(184, "gigaparsecs")
  8214. },
  8215. {
  8216. name: "Eternity War",
  8217. height: math.unit(1.98e55, "yottaparsecs")
  8218. },
  8219. ]
  8220. ))
  8221. characterMakers.push(() => makeCharacter(
  8222. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8223. {
  8224. front: {
  8225. height: math.unit(5 + 8 / 12, "feet"),
  8226. weight: math.unit(63, "kg"),
  8227. name: "Front",
  8228. image: {
  8229. source: "./media/characters/xavier/front.svg",
  8230. extra: 944 / 883
  8231. }
  8232. },
  8233. frontStretch: {
  8234. height: math.unit(5 + 8 / 12, "feet"),
  8235. weight: math.unit(63, "kg"),
  8236. name: "Stretching",
  8237. image: {
  8238. source: "./media/characters/xavier/front-stretch.svg",
  8239. extra: 962 / 820
  8240. }
  8241. },
  8242. },
  8243. [
  8244. {
  8245. name: "Normal",
  8246. height: math.unit(5 + 8 / 12, "feet")
  8247. },
  8248. {
  8249. name: "Macro",
  8250. height: math.unit(100, "meters"),
  8251. default: true
  8252. },
  8253. {
  8254. name: "McLargeHuge",
  8255. height: math.unit(10, "miles")
  8256. },
  8257. ]
  8258. ))
  8259. characterMakers.push(() => makeCharacter(
  8260. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8261. {
  8262. front: {
  8263. height: math.unit(5 + 5 / 12, "feet"),
  8264. weight: math.unit(150, "lb"),
  8265. name: "Front",
  8266. image: {
  8267. source: "./media/characters/joshii/front.svg",
  8268. extra: 765 / 653,
  8269. bottom: 51 / 816
  8270. }
  8271. },
  8272. foot: {
  8273. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8274. name: "Foot",
  8275. image: {
  8276. source: "./media/characters/joshii/foot.svg"
  8277. }
  8278. },
  8279. },
  8280. [
  8281. {
  8282. name: "Micro",
  8283. height: math.unit(2, "inches"),
  8284. default: true
  8285. },
  8286. {
  8287. name: "Normal",
  8288. height: math.unit(5 + 5 / 12, "feet")
  8289. },
  8290. {
  8291. name: "Macro",
  8292. height: math.unit(785, "feet")
  8293. },
  8294. {
  8295. name: "Megamacro",
  8296. height: math.unit(24.5, "miles")
  8297. },
  8298. ]
  8299. ))
  8300. characterMakers.push(() => makeCharacter(
  8301. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8302. {
  8303. front: {
  8304. height: math.unit(6, "feet"),
  8305. weight: math.unit(150, "lb"),
  8306. name: "Front",
  8307. image: {
  8308. source: "./media/characters/goddess-elizabeth/front.svg",
  8309. extra: 1800 / 1525,
  8310. bottom: 0.005
  8311. }
  8312. },
  8313. foot: {
  8314. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8315. name: "Foot",
  8316. image: {
  8317. source: "./media/characters/goddess-elizabeth/foot.svg"
  8318. }
  8319. },
  8320. mouth: {
  8321. height: math.unit(6, "feet"),
  8322. name: "Mouth",
  8323. image: {
  8324. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8325. }
  8326. },
  8327. },
  8328. [
  8329. {
  8330. name: "Micro",
  8331. height: math.unit(12, "feet")
  8332. },
  8333. {
  8334. name: "Normal",
  8335. height: math.unit(80, "miles"),
  8336. default: true
  8337. },
  8338. {
  8339. name: "Macro",
  8340. height: math.unit(15000, "parsecs")
  8341. },
  8342. ]
  8343. ))
  8344. characterMakers.push(() => makeCharacter(
  8345. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8346. {
  8347. front: {
  8348. height: math.unit(5 + 9 / 12, "feet"),
  8349. weight: math.unit(144, "lb"),
  8350. name: "Front",
  8351. image: {
  8352. source: "./media/characters/kara/front.svg"
  8353. }
  8354. },
  8355. feet: {
  8356. height: math.unit(6 / 6.765, "feet"),
  8357. name: "Kara's Feet",
  8358. rename: true,
  8359. image: {
  8360. source: "./media/characters/kara/feet.svg"
  8361. }
  8362. },
  8363. },
  8364. [
  8365. {
  8366. name: "Normal",
  8367. height: math.unit(5 + 9 / 12, "feet")
  8368. },
  8369. {
  8370. name: "Macro",
  8371. height: math.unit(174, "feet"),
  8372. default: true
  8373. },
  8374. ]
  8375. ))
  8376. characterMakers.push(() => makeCharacter(
  8377. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8378. {
  8379. front: {
  8380. height: math.unit(18, "feet"),
  8381. weight: math.unit(4050, "lb"),
  8382. name: "Front",
  8383. image: {
  8384. source: "./media/characters/tyrone/front.svg",
  8385. extra: 2405 / 2270,
  8386. bottom: 182 / 2587
  8387. }
  8388. },
  8389. },
  8390. [
  8391. {
  8392. name: "Normal",
  8393. height: math.unit(18, "feet"),
  8394. default: true
  8395. },
  8396. {
  8397. name: "Macro",
  8398. height: math.unit(300, "feet")
  8399. },
  8400. {
  8401. name: "Megamacro",
  8402. height: math.unit(15, "km")
  8403. },
  8404. {
  8405. name: "Gigamacro",
  8406. height: math.unit(500, "km")
  8407. },
  8408. {
  8409. name: "Teramacro",
  8410. height: math.unit(0.5, "gigameters")
  8411. },
  8412. {
  8413. name: "Omnimacro",
  8414. height: math.unit(1e252, "yottauniverse")
  8415. },
  8416. ]
  8417. ))
  8418. characterMakers.push(() => makeCharacter(
  8419. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8420. {
  8421. front: {
  8422. height: math.unit(7 + 8 / 12, "feet"),
  8423. weight: math.unit(120, "lb"),
  8424. name: "Front",
  8425. image: {
  8426. source: "./media/characters/danny/front.svg",
  8427. extra: 1490 / 1350
  8428. }
  8429. },
  8430. back: {
  8431. height: math.unit(7 + 8 / 12, "feet"),
  8432. weight: math.unit(120, "lb"),
  8433. name: "Back",
  8434. image: {
  8435. source: "./media/characters/danny/back.svg",
  8436. extra: 1490 / 1350
  8437. }
  8438. },
  8439. },
  8440. [
  8441. {
  8442. name: "Normal",
  8443. height: math.unit(7 + 8 / 12, "feet"),
  8444. default: true
  8445. },
  8446. ]
  8447. ))
  8448. characterMakers.push(() => makeCharacter(
  8449. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8450. {
  8451. front: {
  8452. height: math.unit(3.5, "inches"),
  8453. weight: math.unit(19, "grams"),
  8454. name: "Front",
  8455. image: {
  8456. source: "./media/characters/mallow/front.svg",
  8457. extra: 471 / 431
  8458. }
  8459. },
  8460. back: {
  8461. height: math.unit(3.5, "inches"),
  8462. weight: math.unit(19, "grams"),
  8463. name: "Back",
  8464. image: {
  8465. source: "./media/characters/mallow/back.svg",
  8466. extra: 471 / 431
  8467. }
  8468. },
  8469. },
  8470. [
  8471. {
  8472. name: "Normal",
  8473. height: math.unit(3.5, "inches"),
  8474. default: true
  8475. },
  8476. ]
  8477. ))
  8478. characterMakers.push(() => makeCharacter(
  8479. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8480. {
  8481. front: {
  8482. height: math.unit(9, "feet"),
  8483. weight: math.unit(230, "kg"),
  8484. name: "Front",
  8485. image: {
  8486. source: "./media/characters/starry-aqua/front.svg"
  8487. }
  8488. },
  8489. back: {
  8490. height: math.unit(9, "feet"),
  8491. weight: math.unit(230, "kg"),
  8492. name: "Back",
  8493. image: {
  8494. source: "./media/characters/starry-aqua/back.svg"
  8495. }
  8496. },
  8497. hand: {
  8498. height: math.unit(9 * 0.1168, "feet"),
  8499. name: "Hand",
  8500. image: {
  8501. source: "./media/characters/starry-aqua/hand.svg"
  8502. }
  8503. },
  8504. foot: {
  8505. height: math.unit(9 * 0.18, "feet"),
  8506. name: "Foot",
  8507. image: {
  8508. source: "./media/characters/starry-aqua/foot.svg"
  8509. }
  8510. }
  8511. },
  8512. [
  8513. {
  8514. name: "Micro",
  8515. height: math.unit(3, "inches")
  8516. },
  8517. {
  8518. name: "Normal",
  8519. height: math.unit(9, "feet")
  8520. },
  8521. {
  8522. name: "Macro",
  8523. height: math.unit(300, "feet"),
  8524. default: true
  8525. },
  8526. {
  8527. name: "Megamacro",
  8528. height: math.unit(3200, "feet")
  8529. }
  8530. ]
  8531. ))
  8532. characterMakers.push(() => makeCharacter(
  8533. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8534. {
  8535. front: {
  8536. height: math.unit(6, "feet"),
  8537. weight: math.unit(230, "lb"),
  8538. name: "Front",
  8539. image: {
  8540. source: "./media/characters/luka/front.svg",
  8541. extra: 1,
  8542. bottom: 0.025
  8543. }
  8544. },
  8545. },
  8546. [
  8547. {
  8548. name: "Normal",
  8549. height: math.unit(12 + 8 / 12, "feet"),
  8550. default: true
  8551. },
  8552. {
  8553. name: "Minimacro",
  8554. height: math.unit(20, "feet")
  8555. },
  8556. {
  8557. name: "Macro",
  8558. height: math.unit(250, "feet")
  8559. },
  8560. {
  8561. name: "Megamacro",
  8562. height: math.unit(5, "miles")
  8563. },
  8564. {
  8565. name: "Gigamacro",
  8566. height: math.unit(8000, "miles")
  8567. },
  8568. ]
  8569. ))
  8570. characterMakers.push(() => makeCharacter(
  8571. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8572. {
  8573. front: {
  8574. height: math.unit(6, "feet"),
  8575. weight: math.unit(150, "lb"),
  8576. name: "Front",
  8577. image: {
  8578. source: "./media/characters/natalie-nightring/front.svg",
  8579. extra: 1,
  8580. bottom: 0.06
  8581. }
  8582. },
  8583. },
  8584. [
  8585. {
  8586. name: "Uh Oh",
  8587. height: math.unit(0.1, "mm")
  8588. },
  8589. {
  8590. name: "Small",
  8591. height: math.unit(3, "inches")
  8592. },
  8593. {
  8594. name: "Human Scale",
  8595. height: math.unit(6, "feet")
  8596. },
  8597. {
  8598. name: "Librarian",
  8599. height: math.unit(50, "feet"),
  8600. default: true
  8601. },
  8602. {
  8603. name: "Immense",
  8604. height: math.unit(200, "miles")
  8605. },
  8606. ]
  8607. ))
  8608. characterMakers.push(() => makeCharacter(
  8609. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8610. {
  8611. front: {
  8612. height: math.unit(6, "feet"),
  8613. weight: math.unit(180, "lbs"),
  8614. name: "Front",
  8615. image: {
  8616. source: "./media/characters/danni-rosie/front.svg",
  8617. extra: 1260 / 1128,
  8618. bottom: 0.022
  8619. }
  8620. },
  8621. },
  8622. [
  8623. {
  8624. name: "Micro",
  8625. height: math.unit(2, "inches"),
  8626. default: true
  8627. },
  8628. ]
  8629. ))
  8630. characterMakers.push(() => makeCharacter(
  8631. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8632. {
  8633. front: {
  8634. height: math.unit(5 + 9 / 12, "feet"),
  8635. weight: math.unit(220, "lb"),
  8636. name: "Front",
  8637. image: {
  8638. source: "./media/characters/samantha-kruse/front.svg",
  8639. extra: (985 / 935),
  8640. bottom: 0.03
  8641. }
  8642. },
  8643. frontUndressed: {
  8644. height: math.unit(5 + 9 / 12, "feet"),
  8645. weight: math.unit(220, "lb"),
  8646. name: "Front (Undressed)",
  8647. image: {
  8648. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8649. extra: (973 / 923),
  8650. bottom: 0.025
  8651. }
  8652. },
  8653. fat: {
  8654. height: math.unit(5 + 9 / 12, "feet"),
  8655. weight: math.unit(900, "lb"),
  8656. name: "Front (Fat)",
  8657. image: {
  8658. source: "./media/characters/samantha-kruse/fat.svg",
  8659. extra: 2688 / 2561
  8660. }
  8661. },
  8662. },
  8663. [
  8664. {
  8665. name: "Normal",
  8666. height: math.unit(5 + 9 / 12, "feet"),
  8667. default: true
  8668. }
  8669. ]
  8670. ))
  8671. characterMakers.push(() => makeCharacter(
  8672. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8673. {
  8674. back: {
  8675. height: math.unit(5 + 4 / 12, "feet"),
  8676. weight: math.unit(4963, "lb"),
  8677. name: "Back",
  8678. image: {
  8679. source: "./media/characters/amelia-rosie/back.svg",
  8680. extra: 1113 / 963,
  8681. bottom: 0.01
  8682. }
  8683. },
  8684. },
  8685. [
  8686. {
  8687. name: "Level 0",
  8688. height: math.unit(5 + 4 / 12, "feet")
  8689. },
  8690. {
  8691. name: "Level 1",
  8692. height: math.unit(164597, "feet"),
  8693. default: true
  8694. },
  8695. {
  8696. name: "Level 2",
  8697. height: math.unit(956243, "miles")
  8698. },
  8699. {
  8700. name: "Level 3",
  8701. height: math.unit(29421709423, "miles")
  8702. },
  8703. {
  8704. name: "Level 4",
  8705. height: math.unit(154, "lightyears")
  8706. },
  8707. {
  8708. name: "Level 5",
  8709. height: math.unit(4738272, "lightyears")
  8710. },
  8711. {
  8712. name: "Level 6",
  8713. height: math.unit(145787152896, "lightyears")
  8714. },
  8715. ]
  8716. ))
  8717. characterMakers.push(() => makeCharacter(
  8718. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8719. {
  8720. front: {
  8721. height: math.unit(5 + 11 / 12, "feet"),
  8722. weight: math.unit(65, "kg"),
  8723. name: "Front",
  8724. image: {
  8725. source: "./media/characters/rook-kitara/front.svg",
  8726. extra: 1347 / 1274,
  8727. bottom: 0.005
  8728. }
  8729. },
  8730. },
  8731. [
  8732. {
  8733. name: "Totally Unfair",
  8734. height: math.unit(1.8, "mm")
  8735. },
  8736. {
  8737. name: "Lap Rookie",
  8738. height: math.unit(1.4, "feet")
  8739. },
  8740. {
  8741. name: "Normal",
  8742. height: math.unit(5 + 11 / 12, "feet"),
  8743. default: true
  8744. },
  8745. {
  8746. name: "How Did This Happen",
  8747. height: math.unit(80, "miles")
  8748. }
  8749. ]
  8750. ))
  8751. characterMakers.push(() => makeCharacter(
  8752. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8753. {
  8754. front: {
  8755. height: math.unit(7, "feet"),
  8756. weight: math.unit(300, "lb"),
  8757. name: "Front",
  8758. image: {
  8759. source: "./media/characters/pisces/front.svg",
  8760. extra: 2255 / 2115,
  8761. bottom: 0.03
  8762. }
  8763. },
  8764. back: {
  8765. height: math.unit(7, "feet"),
  8766. weight: math.unit(300, "lb"),
  8767. name: "Back",
  8768. image: {
  8769. source: "./media/characters/pisces/back.svg",
  8770. extra: 2146 / 2055,
  8771. bottom: 0.04
  8772. }
  8773. },
  8774. },
  8775. [
  8776. {
  8777. name: "Normal",
  8778. height: math.unit(7, "feet"),
  8779. default: true
  8780. },
  8781. {
  8782. name: "Swimming Pool",
  8783. height: math.unit(12.2, "meters")
  8784. },
  8785. {
  8786. name: "Olympic Swimming Pool",
  8787. height: math.unit(56.3, "meters")
  8788. },
  8789. {
  8790. name: "Lake Superior",
  8791. height: math.unit(93900, "meters")
  8792. },
  8793. {
  8794. name: "Mediterranean Sea",
  8795. height: math.unit(644457, "meters")
  8796. },
  8797. {
  8798. name: "World's Oceans",
  8799. height: math.unit(4567491, "meters")
  8800. },
  8801. ]
  8802. ))
  8803. characterMakers.push(() => makeCharacter(
  8804. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8805. {
  8806. front: {
  8807. height: math.unit(2.3, "meters"),
  8808. weight: math.unit(120, "kg"),
  8809. name: "Front",
  8810. image: {
  8811. source: "./media/characters/zelas/front.svg"
  8812. }
  8813. },
  8814. side: {
  8815. height: math.unit(2.3, "meters"),
  8816. weight: math.unit(120, "kg"),
  8817. name: "Side",
  8818. image: {
  8819. source: "./media/characters/zelas/side.svg"
  8820. }
  8821. },
  8822. back: {
  8823. height: math.unit(2.3, "meters"),
  8824. weight: math.unit(120, "kg"),
  8825. name: "Back",
  8826. image: {
  8827. source: "./media/characters/zelas/back.svg"
  8828. }
  8829. },
  8830. foot: {
  8831. height: math.unit(1.116, "feet"),
  8832. name: "Foot",
  8833. image: {
  8834. source: "./media/characters/zelas/foot.svg"
  8835. }
  8836. },
  8837. },
  8838. [
  8839. {
  8840. name: "Normal",
  8841. height: math.unit(2.3, "meters")
  8842. },
  8843. {
  8844. name: "Macro",
  8845. height: math.unit(30, "meters"),
  8846. default: true
  8847. },
  8848. ]
  8849. ))
  8850. characterMakers.push(() => makeCharacter(
  8851. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8852. {
  8853. front: {
  8854. height: math.unit(1, "inch"),
  8855. weight: math.unit(0.21, "grams"),
  8856. name: "Front",
  8857. image: {
  8858. source: "./media/characters/talbot/front.svg",
  8859. extra: 594 / 544
  8860. }
  8861. },
  8862. },
  8863. [
  8864. {
  8865. name: "Micro",
  8866. height: math.unit(1, "inch"),
  8867. default: true
  8868. },
  8869. ]
  8870. ))
  8871. characterMakers.push(() => makeCharacter(
  8872. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8873. {
  8874. front: {
  8875. height: math.unit(3 + 3 / 12, "feet"),
  8876. weight: math.unit(51.8, "lb"),
  8877. name: "Front",
  8878. image: {
  8879. source: "./media/characters/fliss/front.svg",
  8880. extra: 840 / 640
  8881. }
  8882. },
  8883. },
  8884. [
  8885. {
  8886. name: "Teeny Tiny",
  8887. height: math.unit(1, "mm")
  8888. },
  8889. {
  8890. name: "Small",
  8891. height: math.unit(1, "inch"),
  8892. default: true
  8893. },
  8894. {
  8895. name: "Standard Sylveon",
  8896. height: math.unit(3 + 3 / 12, "feet")
  8897. },
  8898. {
  8899. name: "Large Nuisance",
  8900. height: math.unit(33, "feet")
  8901. },
  8902. {
  8903. name: "City Filler",
  8904. height: math.unit(3000, "feet")
  8905. },
  8906. {
  8907. name: "New Horizon",
  8908. height: math.unit(6000, "miles")
  8909. },
  8910. ]
  8911. ))
  8912. characterMakers.push(() => makeCharacter(
  8913. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8914. {
  8915. front: {
  8916. height: math.unit(5, "cm"),
  8917. weight: math.unit(1.94, "g"),
  8918. name: "Front",
  8919. image: {
  8920. source: "./media/characters/fleta/front.svg",
  8921. extra: 835 / 803
  8922. }
  8923. },
  8924. back: {
  8925. height: math.unit(5, "cm"),
  8926. weight: math.unit(1.94, "g"),
  8927. name: "Back",
  8928. image: {
  8929. source: "./media/characters/fleta/back.svg",
  8930. extra: 835 / 803
  8931. }
  8932. },
  8933. },
  8934. [
  8935. {
  8936. name: "Micro",
  8937. height: math.unit(5, "cm"),
  8938. default: true
  8939. },
  8940. ]
  8941. ))
  8942. characterMakers.push(() => makeCharacter(
  8943. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8944. {
  8945. front: {
  8946. height: math.unit(6, "feet"),
  8947. weight: math.unit(225, "lb"),
  8948. name: "Front",
  8949. image: {
  8950. source: "./media/characters/dominic/front.svg",
  8951. extra: 1770 / 1620,
  8952. bottom: 0.025
  8953. }
  8954. },
  8955. back: {
  8956. height: math.unit(6, "feet"),
  8957. weight: math.unit(225, "lb"),
  8958. name: "Back",
  8959. image: {
  8960. source: "./media/characters/dominic/back.svg",
  8961. extra: 1745 / 1620,
  8962. bottom: 0.065
  8963. }
  8964. },
  8965. },
  8966. [
  8967. {
  8968. name: "Nano",
  8969. height: math.unit(0.1, "mm")
  8970. },
  8971. {
  8972. name: "Micro-",
  8973. height: math.unit(1, "mm")
  8974. },
  8975. {
  8976. name: "Micro",
  8977. height: math.unit(4, "inches")
  8978. },
  8979. {
  8980. name: "Normal",
  8981. height: math.unit(6 + 4 / 12, "feet"),
  8982. default: true
  8983. },
  8984. {
  8985. name: "Macro",
  8986. height: math.unit(115, "feet")
  8987. },
  8988. {
  8989. name: "Macro+",
  8990. height: math.unit(955, "feet")
  8991. },
  8992. {
  8993. name: "Megamacro",
  8994. height: math.unit(8990, "feet")
  8995. },
  8996. {
  8997. name: "Gigmacro",
  8998. height: math.unit(9310, "miles")
  8999. },
  9000. {
  9001. name: "Teramacro",
  9002. height: math.unit(1567005010, "miles")
  9003. },
  9004. {
  9005. name: "Examacro",
  9006. height: math.unit(1425, "parsecs")
  9007. },
  9008. ]
  9009. ))
  9010. characterMakers.push(() => makeCharacter(
  9011. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9012. {
  9013. front: {
  9014. height: math.unit(400, "feet"),
  9015. weight: math.unit(44444444, "lb"),
  9016. name: "Front",
  9017. image: {
  9018. source: "./media/characters/major-colonel/front.svg"
  9019. }
  9020. },
  9021. back: {
  9022. height: math.unit(400, "feet"),
  9023. weight: math.unit(44444444, "lb"),
  9024. name: "Back",
  9025. image: {
  9026. source: "./media/characters/major-colonel/back.svg"
  9027. }
  9028. },
  9029. },
  9030. [
  9031. {
  9032. name: "Macro",
  9033. height: math.unit(400, "feet"),
  9034. default: true
  9035. },
  9036. ]
  9037. ))
  9038. characterMakers.push(() => makeCharacter(
  9039. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9040. {
  9041. catFront: {
  9042. height: math.unit(6, "feet"),
  9043. weight: math.unit(120, "lb"),
  9044. name: "Front (Cat Side)",
  9045. image: {
  9046. source: "./media/characters/axel-lycan/cat-front.svg",
  9047. extra: 430 / 402,
  9048. bottom: 43 / 472.35
  9049. }
  9050. },
  9051. catBack: {
  9052. height: math.unit(6, "feet"),
  9053. weight: math.unit(120, "lb"),
  9054. name: "Back (Cat Side)",
  9055. image: {
  9056. source: "./media/characters/axel-lycan/cat-back.svg",
  9057. extra: 447 / 419,
  9058. bottom: 23.3 / 469
  9059. }
  9060. },
  9061. wolfFront: {
  9062. height: math.unit(6, "feet"),
  9063. weight: math.unit(120, "lb"),
  9064. name: "Front (Wolf Side)",
  9065. image: {
  9066. source: "./media/characters/axel-lycan/wolf-front.svg",
  9067. extra: 485 / 456,
  9068. bottom: 19 / 504
  9069. }
  9070. },
  9071. wolfBack: {
  9072. height: math.unit(6, "feet"),
  9073. weight: math.unit(120, "lb"),
  9074. name: "Back (Wolf Side)",
  9075. image: {
  9076. source: "./media/characters/axel-lycan/wolf-back.svg",
  9077. extra: 475 / 438,
  9078. bottom: 39.2 / 514
  9079. }
  9080. },
  9081. },
  9082. [
  9083. {
  9084. name: "Macro",
  9085. height: math.unit(1, "km"),
  9086. default: true
  9087. },
  9088. ]
  9089. ))
  9090. characterMakers.push(() => makeCharacter(
  9091. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9092. {
  9093. front: {
  9094. height: math.unit(5 + 9 / 12, "feet"),
  9095. weight: math.unit(175, "lb"),
  9096. name: "Front",
  9097. image: {
  9098. source: "./media/characters/vanrel-hyena/front.svg",
  9099. extra: 1086 / 1010,
  9100. bottom: 0.04
  9101. }
  9102. },
  9103. },
  9104. [
  9105. {
  9106. name: "Normal",
  9107. height: math.unit(5 + 9 / 12, "feet"),
  9108. default: true
  9109. },
  9110. ]
  9111. ))
  9112. characterMakers.push(() => makeCharacter(
  9113. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9114. {
  9115. front: {
  9116. height: math.unit(6, "feet"),
  9117. weight: math.unit(103, "lb"),
  9118. name: "Front",
  9119. image: {
  9120. source: "./media/characters/abbott-absol/front.svg",
  9121. extra: 2010 / 1842
  9122. }
  9123. },
  9124. },
  9125. [
  9126. {
  9127. name: "Megamicro",
  9128. height: math.unit(0.1, "mm")
  9129. },
  9130. {
  9131. name: "Micro",
  9132. height: math.unit(1, "inch")
  9133. },
  9134. {
  9135. name: "Normal",
  9136. height: math.unit(6, "feet"),
  9137. default: true
  9138. },
  9139. ]
  9140. ))
  9141. characterMakers.push(() => makeCharacter(
  9142. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9143. {
  9144. front: {
  9145. height: math.unit(6, "feet"),
  9146. weight: math.unit(264, "lb"),
  9147. name: "Front",
  9148. image: {
  9149. source: "./media/characters/hector/front.svg",
  9150. extra: 2280 / 2130,
  9151. bottom: 0.07
  9152. }
  9153. },
  9154. },
  9155. [
  9156. {
  9157. name: "Normal",
  9158. height: math.unit(12.25, "foot"),
  9159. default: true
  9160. },
  9161. {
  9162. name: "Macro",
  9163. height: math.unit(160, "feet")
  9164. },
  9165. ]
  9166. ))
  9167. characterMakers.push(() => makeCharacter(
  9168. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9169. {
  9170. front: {
  9171. height: math.unit(6, "feet"),
  9172. weight: math.unit(150, "lb"),
  9173. name: "Front",
  9174. image: {
  9175. source: "./media/characters/sal/front.svg",
  9176. extra: 1846 / 1699,
  9177. bottom: 0.04
  9178. }
  9179. },
  9180. },
  9181. [
  9182. {
  9183. name: "Megamacro",
  9184. height: math.unit(10, "miles"),
  9185. default: true
  9186. },
  9187. ]
  9188. ))
  9189. characterMakers.push(() => makeCharacter(
  9190. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9191. {
  9192. front: {
  9193. height: math.unit(3, "meters"),
  9194. weight: math.unit(450, "kg"),
  9195. name: "front",
  9196. image: {
  9197. source: "./media/characters/ranger/front.svg",
  9198. extra: 2401 / 2243,
  9199. bottom: 0.05
  9200. }
  9201. },
  9202. },
  9203. [
  9204. {
  9205. name: "Normal",
  9206. height: math.unit(3, "meters"),
  9207. default: true
  9208. },
  9209. ]
  9210. ))
  9211. characterMakers.push(() => makeCharacter(
  9212. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9213. {
  9214. front: {
  9215. height: math.unit(14, "feet"),
  9216. weight: math.unit(800, "kg"),
  9217. name: "Front",
  9218. image: {
  9219. source: "./media/characters/theresa/front.svg",
  9220. extra: 3575 / 3346,
  9221. bottom: 0.03
  9222. }
  9223. },
  9224. },
  9225. [
  9226. {
  9227. name: "Normal",
  9228. height: math.unit(14, "feet"),
  9229. default: true
  9230. },
  9231. ]
  9232. ))
  9233. characterMakers.push(() => makeCharacter(
  9234. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9235. {
  9236. front: {
  9237. height: math.unit(6, "feet"),
  9238. weight: math.unit(3, "kg"),
  9239. name: "Front",
  9240. image: {
  9241. source: "./media/characters/ine/front.svg",
  9242. extra: 678 / 539,
  9243. bottom: 0.023
  9244. }
  9245. },
  9246. },
  9247. [
  9248. {
  9249. name: "Normal",
  9250. height: math.unit(2.265, "feet"),
  9251. default: true
  9252. },
  9253. ]
  9254. ))
  9255. characterMakers.push(() => makeCharacter(
  9256. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9257. {
  9258. front: {
  9259. height: math.unit(5, "feet"),
  9260. weight: math.unit(30, "kg"),
  9261. name: "Front",
  9262. image: {
  9263. source: "./media/characters/vial/front.svg",
  9264. extra: 1365 / 1277,
  9265. bottom: 0.04
  9266. }
  9267. },
  9268. },
  9269. [
  9270. {
  9271. name: "Normal",
  9272. height: math.unit(5, "feet"),
  9273. default: true
  9274. },
  9275. ]
  9276. ))
  9277. characterMakers.push(() => makeCharacter(
  9278. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9279. {
  9280. side: {
  9281. height: math.unit(3.4, "meters"),
  9282. weight: math.unit(1000, "lb"),
  9283. name: "Side",
  9284. image: {
  9285. source: "./media/characters/rovoska/side.svg",
  9286. extra: 4403 / 1515
  9287. }
  9288. },
  9289. },
  9290. [
  9291. {
  9292. name: "Normal",
  9293. height: math.unit(3.4, "meters"),
  9294. default: true
  9295. },
  9296. ]
  9297. ))
  9298. characterMakers.push(() => makeCharacter(
  9299. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9300. {
  9301. front: {
  9302. height: math.unit(8, "feet"),
  9303. weight: math.unit(315, "lb"),
  9304. name: "Front",
  9305. image: {
  9306. source: "./media/characters/gunner-rotthbauer/front.svg"
  9307. }
  9308. },
  9309. back: {
  9310. height: math.unit(8, "feet"),
  9311. weight: math.unit(315, "lb"),
  9312. name: "Back",
  9313. image: {
  9314. source: "./media/characters/gunner-rotthbauer/back.svg"
  9315. }
  9316. },
  9317. },
  9318. [
  9319. {
  9320. name: "Micro",
  9321. height: math.unit(3.5, "inches")
  9322. },
  9323. {
  9324. name: "Normal",
  9325. height: math.unit(8, "feet"),
  9326. default: true
  9327. },
  9328. {
  9329. name: "Macro",
  9330. height: math.unit(250, "feet")
  9331. },
  9332. {
  9333. name: "Megamacro",
  9334. height: math.unit(1, "AU")
  9335. },
  9336. ]
  9337. ))
  9338. characterMakers.push(() => makeCharacter(
  9339. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9340. {
  9341. front: {
  9342. height: math.unit(5 + 5 / 12, "feet"),
  9343. weight: math.unit(140, "lb"),
  9344. name: "Front",
  9345. image: {
  9346. source: "./media/characters/allatia/front.svg",
  9347. extra: 1227 / 1180,
  9348. bottom: 0.027
  9349. }
  9350. },
  9351. },
  9352. [
  9353. {
  9354. name: "Normal",
  9355. height: math.unit(5 + 5 / 12, "feet")
  9356. },
  9357. {
  9358. name: "Macro",
  9359. height: math.unit(250, "feet"),
  9360. default: true
  9361. },
  9362. {
  9363. name: "Megamacro",
  9364. height: math.unit(8, "miles")
  9365. }
  9366. ]
  9367. ))
  9368. characterMakers.push(() => makeCharacter(
  9369. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9370. {
  9371. front: {
  9372. height: math.unit(6, "feet"),
  9373. weight: math.unit(120, "lb"),
  9374. name: "Front",
  9375. image: {
  9376. source: "./media/characters/tene/front.svg",
  9377. extra: 1728 / 1578,
  9378. bottom: 0.022
  9379. }
  9380. },
  9381. stomping: {
  9382. height: math.unit(2.025, "meters"),
  9383. weight: math.unit(120, "lb"),
  9384. name: "Stomping",
  9385. image: {
  9386. source: "./media/characters/tene/stomping.svg",
  9387. extra: 938 / 873,
  9388. bottom: 0.01
  9389. }
  9390. },
  9391. sitting: {
  9392. height: math.unit(1, "meter"),
  9393. weight: math.unit(120, "lb"),
  9394. name: "Sitting",
  9395. image: {
  9396. source: "./media/characters/tene/sitting.svg",
  9397. extra: 437 / 415,
  9398. bottom: 0.1
  9399. }
  9400. },
  9401. feral: {
  9402. height: math.unit(3.9, "feet"),
  9403. weight: math.unit(250, "lb"),
  9404. name: "Feral",
  9405. image: {
  9406. source: "./media/characters/tene/feral.svg",
  9407. extra: 717 / 458,
  9408. bottom: 0.179
  9409. }
  9410. },
  9411. },
  9412. [
  9413. {
  9414. name: "Normal",
  9415. height: math.unit(6, "feet")
  9416. },
  9417. {
  9418. name: "Macro",
  9419. height: math.unit(300, "feet"),
  9420. default: true
  9421. },
  9422. {
  9423. name: "Megamacro",
  9424. height: math.unit(5, "miles")
  9425. },
  9426. ]
  9427. ))
  9428. characterMakers.push(() => makeCharacter(
  9429. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9430. {
  9431. side: {
  9432. height: math.unit(6, "feet"),
  9433. name: "Side",
  9434. image: {
  9435. source: "./media/characters/evander/side.svg",
  9436. extra: 877 / 477
  9437. }
  9438. },
  9439. },
  9440. [
  9441. {
  9442. name: "Normal",
  9443. height: math.unit(0.83, "meters"),
  9444. default: true
  9445. },
  9446. ]
  9447. ))
  9448. characterMakers.push(() => makeCharacter(
  9449. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9450. {
  9451. front: {
  9452. height: math.unit(12, "feet"),
  9453. weight: math.unit(1000, "lb"),
  9454. name: "Front",
  9455. image: {
  9456. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9457. extra: 1762 / 1611
  9458. }
  9459. },
  9460. back: {
  9461. height: math.unit(12, "feet"),
  9462. weight: math.unit(1000, "lb"),
  9463. name: "Back",
  9464. image: {
  9465. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9466. extra: 1762 / 1611
  9467. }
  9468. },
  9469. },
  9470. [
  9471. {
  9472. name: "Normal",
  9473. height: math.unit(12, "feet"),
  9474. default: true
  9475. },
  9476. {
  9477. name: "Kaiju",
  9478. height: math.unit(150, "feet")
  9479. },
  9480. ]
  9481. ))
  9482. characterMakers.push(() => makeCharacter(
  9483. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9484. {
  9485. front: {
  9486. height: math.unit(6, "feet"),
  9487. weight: math.unit(150, "lb"),
  9488. name: "Front",
  9489. image: {
  9490. source: "./media/characters/zero-alurus/front.svg"
  9491. }
  9492. },
  9493. back: {
  9494. height: math.unit(6, "feet"),
  9495. weight: math.unit(150, "lb"),
  9496. name: "Back",
  9497. image: {
  9498. source: "./media/characters/zero-alurus/back.svg"
  9499. }
  9500. },
  9501. },
  9502. [
  9503. {
  9504. name: "Normal",
  9505. height: math.unit(5 + 10 / 12, "feet")
  9506. },
  9507. {
  9508. name: "Macro",
  9509. height: math.unit(60, "feet"),
  9510. default: true
  9511. },
  9512. {
  9513. name: "Macro+",
  9514. height: math.unit(450, "feet")
  9515. },
  9516. ]
  9517. ))
  9518. characterMakers.push(() => makeCharacter(
  9519. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9520. {
  9521. front: {
  9522. height: math.unit(6, "feet"),
  9523. weight: math.unit(200, "lb"),
  9524. name: "Front",
  9525. image: {
  9526. source: "./media/characters/mega-shi/front.svg",
  9527. extra: 1279 / 1250,
  9528. bottom: 0.02
  9529. }
  9530. },
  9531. back: {
  9532. height: math.unit(6, "feet"),
  9533. weight: math.unit(200, "lb"),
  9534. name: "Back",
  9535. image: {
  9536. source: "./media/characters/mega-shi/back.svg",
  9537. extra: 1279 / 1250,
  9538. bottom: 0.02
  9539. }
  9540. },
  9541. },
  9542. [
  9543. {
  9544. name: "Micro",
  9545. height: math.unit(16 + 6 / 12, "feet")
  9546. },
  9547. {
  9548. name: "Third Dimension",
  9549. height: math.unit(40, "meters")
  9550. },
  9551. {
  9552. name: "Normal",
  9553. height: math.unit(660, "feet"),
  9554. default: true
  9555. },
  9556. {
  9557. name: "Megamacro",
  9558. height: math.unit(10, "miles")
  9559. },
  9560. {
  9561. name: "Planetary Launch",
  9562. height: math.unit(500, "miles")
  9563. },
  9564. {
  9565. name: "Interstellar",
  9566. height: math.unit(1e9, "miles")
  9567. },
  9568. {
  9569. name: "Leaving the Universe",
  9570. height: math.unit(1, "gigaparsec")
  9571. },
  9572. {
  9573. name: "Travelling Universes",
  9574. height: math.unit(30e15, "parsecs")
  9575. },
  9576. ]
  9577. ))
  9578. characterMakers.push(() => makeCharacter(
  9579. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9580. {
  9581. front: {
  9582. height: math.unit(6, "feet"),
  9583. weight: math.unit(150, "lb"),
  9584. name: "Front",
  9585. image: {
  9586. source: "./media/characters/odyssey/front.svg",
  9587. extra: 1782 / 1582,
  9588. bottom: 0.01
  9589. }
  9590. },
  9591. side: {
  9592. height: math.unit(5.7, "feet"),
  9593. weight: math.unit(140, "lb"),
  9594. name: "Side",
  9595. image: {
  9596. source: "./media/characters/odyssey/side.svg",
  9597. extra: 6462 / 5700
  9598. }
  9599. },
  9600. },
  9601. [
  9602. {
  9603. name: "Normal",
  9604. height: math.unit(5 + 4 / 12, "feet")
  9605. },
  9606. {
  9607. name: "Macro",
  9608. height: math.unit(1, "km")
  9609. },
  9610. {
  9611. name: "Megamacro",
  9612. height: math.unit(3000, "km")
  9613. },
  9614. {
  9615. name: "Gigamacro",
  9616. height: math.unit(1, "AU"),
  9617. default: true
  9618. },
  9619. {
  9620. name: "Omniversal",
  9621. height: math.unit(100e14, "lightyears")
  9622. },
  9623. ]
  9624. ))
  9625. characterMakers.push(() => makeCharacter(
  9626. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9627. {
  9628. front: {
  9629. height: math.unit(6, "feet"),
  9630. weight: math.unit(300, "lb"),
  9631. name: "Front",
  9632. image: {
  9633. source: "./media/characters/mekuto/front.svg",
  9634. extra: 921 / 832,
  9635. bottom: 0.03
  9636. }
  9637. },
  9638. hand: {
  9639. height: math.unit(6 / 10.24, "feet"),
  9640. name: "Hand",
  9641. image: {
  9642. source: "./media/characters/mekuto/hand.svg"
  9643. }
  9644. },
  9645. foot: {
  9646. height: math.unit(6 / 5.05, "feet"),
  9647. name: "Foot",
  9648. image: {
  9649. source: "./media/characters/mekuto/foot.svg"
  9650. }
  9651. },
  9652. },
  9653. [
  9654. {
  9655. name: "Minimicro",
  9656. height: math.unit(0.2, "inches")
  9657. },
  9658. {
  9659. name: "Micro",
  9660. height: math.unit(1.5, "inches")
  9661. },
  9662. {
  9663. name: "Normal",
  9664. height: math.unit(5 + 11 / 12, "feet"),
  9665. default: true
  9666. },
  9667. {
  9668. name: "Minimacro",
  9669. height: math.unit(17 + 9 / 12, "feet")
  9670. },
  9671. {
  9672. name: "Macro",
  9673. height: math.unit(177.5, "feet")
  9674. },
  9675. {
  9676. name: "Megamacro",
  9677. height: math.unit(152, "miles")
  9678. },
  9679. ]
  9680. ))
  9681. characterMakers.push(() => makeCharacter(
  9682. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9683. {
  9684. front: {
  9685. height: math.unit(6.5, "inches"),
  9686. weight: math.unit(13, "oz"),
  9687. name: "Front",
  9688. image: {
  9689. source: "./media/characters/dafydd-tomos/front.svg",
  9690. extra: 2990 / 2603,
  9691. bottom: 0.03
  9692. }
  9693. },
  9694. },
  9695. [
  9696. {
  9697. name: "Micro",
  9698. height: math.unit(6.5, "inches"),
  9699. default: true
  9700. },
  9701. ]
  9702. ))
  9703. characterMakers.push(() => makeCharacter(
  9704. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9705. {
  9706. front: {
  9707. height: math.unit(6, "feet"),
  9708. weight: math.unit(150, "lb"),
  9709. name: "Front",
  9710. image: {
  9711. source: "./media/characters/splinter/front.svg",
  9712. extra: 2990 / 2882,
  9713. bottom: 0.04
  9714. }
  9715. },
  9716. back: {
  9717. height: math.unit(6, "feet"),
  9718. weight: math.unit(150, "lb"),
  9719. name: "Back",
  9720. image: {
  9721. source: "./media/characters/splinter/back.svg",
  9722. extra: 2990 / 2882,
  9723. bottom: 0.04
  9724. }
  9725. },
  9726. },
  9727. [
  9728. {
  9729. name: "Normal",
  9730. height: math.unit(6, "feet")
  9731. },
  9732. {
  9733. name: "Macro",
  9734. height: math.unit(230, "meters"),
  9735. default: true
  9736. },
  9737. ]
  9738. ))
  9739. characterMakers.push(() => makeCharacter(
  9740. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9741. {
  9742. front: {
  9743. height: math.unit(4 + 10 / 12, "feet"),
  9744. weight: math.unit(480, "lb"),
  9745. name: "Front",
  9746. image: {
  9747. source: "./media/characters/snow-gabumon/front.svg",
  9748. extra: 1140 / 963,
  9749. bottom: 0.058
  9750. }
  9751. },
  9752. back: {
  9753. height: math.unit(4 + 10 / 12, "feet"),
  9754. weight: math.unit(480, "lb"),
  9755. name: "Back",
  9756. image: {
  9757. source: "./media/characters/snow-gabumon/back.svg",
  9758. extra: 1115 / 962,
  9759. bottom: 0.041
  9760. }
  9761. },
  9762. frontUndresed: {
  9763. height: math.unit(4 + 10 / 12, "feet"),
  9764. weight: math.unit(480, "lb"),
  9765. name: "Front (Undressed)",
  9766. image: {
  9767. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9768. extra: 1061 / 960,
  9769. bottom: 0.045
  9770. }
  9771. },
  9772. },
  9773. [
  9774. {
  9775. name: "Micro",
  9776. height: math.unit(1, "inch")
  9777. },
  9778. {
  9779. name: "Normal",
  9780. height: math.unit(4 + 10 / 12, "feet"),
  9781. default: true
  9782. },
  9783. {
  9784. name: "Macro",
  9785. height: math.unit(200, "feet")
  9786. },
  9787. {
  9788. name: "Megamacro",
  9789. height: math.unit(120, "miles")
  9790. },
  9791. {
  9792. name: "Gigamacro",
  9793. height: math.unit(9800, "miles")
  9794. },
  9795. ]
  9796. ))
  9797. characterMakers.push(() => makeCharacter(
  9798. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9799. {
  9800. front: {
  9801. height: math.unit(1.7, "meters"),
  9802. weight: math.unit(140, "lb"),
  9803. name: "Front",
  9804. image: {
  9805. source: "./media/characters/moody/front.svg",
  9806. extra: 3226 / 3007,
  9807. bottom: 0.087
  9808. }
  9809. },
  9810. },
  9811. [
  9812. {
  9813. name: "Micro",
  9814. height: math.unit(1, "mm")
  9815. },
  9816. {
  9817. name: "Normal",
  9818. height: math.unit(1.7, "meters"),
  9819. default: true
  9820. },
  9821. {
  9822. name: "Macro",
  9823. height: math.unit(80, "meters")
  9824. },
  9825. {
  9826. name: "Macro+",
  9827. height: math.unit(500, "meters")
  9828. },
  9829. ]
  9830. ))
  9831. characterMakers.push(() => makeCharacter(
  9832. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9833. {
  9834. front: {
  9835. height: math.unit(6, "feet"),
  9836. weight: math.unit(150, "lb"),
  9837. name: "Front",
  9838. image: {
  9839. source: "./media/characters/zyas/front.svg",
  9840. extra: 1180 / 1120,
  9841. bottom: 0.045
  9842. }
  9843. },
  9844. },
  9845. [
  9846. {
  9847. name: "Normal",
  9848. height: math.unit(10, "feet"),
  9849. default: true
  9850. },
  9851. {
  9852. name: "Macro",
  9853. height: math.unit(500, "feet")
  9854. },
  9855. {
  9856. name: "Megamacro",
  9857. height: math.unit(5, "miles")
  9858. },
  9859. {
  9860. name: "Teramacro",
  9861. height: math.unit(150000, "miles")
  9862. },
  9863. ]
  9864. ))
  9865. characterMakers.push(() => makeCharacter(
  9866. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9867. {
  9868. front: {
  9869. height: math.unit(6, "feet"),
  9870. weight: math.unit(150, "lb"),
  9871. name: "Front",
  9872. image: {
  9873. source: "./media/characters/cuon/front.svg",
  9874. extra: 1390 / 1320,
  9875. bottom: 0.008
  9876. }
  9877. },
  9878. },
  9879. [
  9880. {
  9881. name: "Micro",
  9882. height: math.unit(3, "inches")
  9883. },
  9884. {
  9885. name: "Normal",
  9886. height: math.unit(18 + 9 / 12, "feet"),
  9887. default: true
  9888. },
  9889. {
  9890. name: "Macro",
  9891. height: math.unit(360, "feet")
  9892. },
  9893. {
  9894. name: "Megamacro",
  9895. height: math.unit(360, "miles")
  9896. },
  9897. ]
  9898. ))
  9899. characterMakers.push(() => makeCharacter(
  9900. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9901. {
  9902. front: {
  9903. height: math.unit(2.4, "meters"),
  9904. weight: math.unit(70, "kg"),
  9905. name: "Front",
  9906. image: {
  9907. source: "./media/characters/nyanuxk/front.svg",
  9908. extra: 1172 / 1084,
  9909. bottom: 0.065
  9910. }
  9911. },
  9912. side: {
  9913. height: math.unit(2.4, "meters"),
  9914. weight: math.unit(70, "kg"),
  9915. name: "Side",
  9916. image: {
  9917. source: "./media/characters/nyanuxk/side.svg",
  9918. extra: 1190 / 1132,
  9919. bottom: 0.007
  9920. }
  9921. },
  9922. back: {
  9923. height: math.unit(2.4, "meters"),
  9924. weight: math.unit(70, "kg"),
  9925. name: "Back",
  9926. image: {
  9927. source: "./media/characters/nyanuxk/back.svg",
  9928. extra: 1200 / 1141,
  9929. bottom: 0.015
  9930. }
  9931. },
  9932. foot: {
  9933. height: math.unit(0.52, "meters"),
  9934. name: "Foot",
  9935. image: {
  9936. source: "./media/characters/nyanuxk/foot.svg"
  9937. }
  9938. },
  9939. },
  9940. [
  9941. {
  9942. name: "Micro",
  9943. height: math.unit(2, "cm")
  9944. },
  9945. {
  9946. name: "Normal",
  9947. height: math.unit(2.4, "meters"),
  9948. default: true
  9949. },
  9950. {
  9951. name: "Smaller Macro",
  9952. height: math.unit(120, "meters")
  9953. },
  9954. {
  9955. name: "Bigger Macro",
  9956. height: math.unit(1.2, "km")
  9957. },
  9958. {
  9959. name: "Megamacro",
  9960. height: math.unit(15, "kilometers")
  9961. },
  9962. {
  9963. name: "Gigamacro",
  9964. height: math.unit(2000, "km")
  9965. },
  9966. {
  9967. name: "Teramacro",
  9968. height: math.unit(500000, "km")
  9969. },
  9970. ]
  9971. ))
  9972. characterMakers.push(() => makeCharacter(
  9973. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9974. {
  9975. side: {
  9976. height: math.unit(6, "feet"),
  9977. name: "Side",
  9978. image: {
  9979. source: "./media/characters/ailbhe/side.svg",
  9980. extra: 757 / 464,
  9981. bottom: 0.041
  9982. }
  9983. },
  9984. },
  9985. [
  9986. {
  9987. name: "Normal",
  9988. height: math.unit(1.07, "meters"),
  9989. default: true
  9990. },
  9991. ]
  9992. ))
  9993. characterMakers.push(() => makeCharacter(
  9994. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9995. {
  9996. front: {
  9997. height: math.unit(6, "feet"),
  9998. weight: math.unit(120, "kg"),
  9999. name: "Front",
  10000. image: {
  10001. source: "./media/characters/zevulfius/front.svg",
  10002. extra: 965 / 903
  10003. }
  10004. },
  10005. side: {
  10006. height: math.unit(6, "feet"),
  10007. weight: math.unit(120, "kg"),
  10008. name: "Side",
  10009. image: {
  10010. source: "./media/characters/zevulfius/side.svg",
  10011. extra: 939 / 900
  10012. }
  10013. },
  10014. back: {
  10015. height: math.unit(6, "feet"),
  10016. weight: math.unit(120, "kg"),
  10017. name: "Back",
  10018. image: {
  10019. source: "./media/characters/zevulfius/back.svg",
  10020. extra: 918 / 854,
  10021. bottom: 0.005
  10022. }
  10023. },
  10024. foot: {
  10025. height: math.unit(6 / 3.72, "feet"),
  10026. name: "Foot",
  10027. image: {
  10028. source: "./media/characters/zevulfius/foot.svg"
  10029. }
  10030. },
  10031. },
  10032. [
  10033. {
  10034. name: "Macro",
  10035. height: math.unit(750, "meters")
  10036. },
  10037. {
  10038. name: "Megamacro",
  10039. height: math.unit(20, "km"),
  10040. default: true
  10041. },
  10042. {
  10043. name: "Gigamacro",
  10044. height: math.unit(2000, "km")
  10045. },
  10046. {
  10047. name: "Teramacro",
  10048. height: math.unit(250000, "km")
  10049. },
  10050. ]
  10051. ))
  10052. characterMakers.push(() => makeCharacter(
  10053. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10054. {
  10055. front: {
  10056. height: math.unit(100, "feet"),
  10057. weight: math.unit(350, "kg"),
  10058. name: "Front",
  10059. image: {
  10060. source: "./media/characters/rikes/front.svg",
  10061. extra: 1565 / 1483,
  10062. bottom: 0.017
  10063. }
  10064. },
  10065. },
  10066. [
  10067. {
  10068. name: "Macro",
  10069. height: math.unit(100, "feet"),
  10070. default: true
  10071. },
  10072. ]
  10073. ))
  10074. characterMakers.push(() => makeCharacter(
  10075. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10076. {
  10077. anthro: {
  10078. height: math.unit(8, "feet"),
  10079. weight: math.unit(120, "kg"),
  10080. name: "Anthro",
  10081. image: {
  10082. source: "./media/characters/adam-silver-mane/anthro.svg",
  10083. extra: 5743 / 5339,
  10084. bottom: 0.07
  10085. }
  10086. },
  10087. taur: {
  10088. height: math.unit(16, "feet"),
  10089. weight: math.unit(1500, "kg"),
  10090. name: "Taur",
  10091. image: {
  10092. source: "./media/characters/adam-silver-mane/taur.svg",
  10093. extra: 1713 / 1571,
  10094. bottom: 0.01
  10095. }
  10096. },
  10097. },
  10098. [
  10099. {
  10100. name: "Normal",
  10101. height: math.unit(8, "feet")
  10102. },
  10103. {
  10104. name: "Minimacro",
  10105. height: math.unit(80, "feet")
  10106. },
  10107. {
  10108. name: "Macro",
  10109. height: math.unit(800, "feet"),
  10110. default: true
  10111. },
  10112. {
  10113. name: "Megamacro",
  10114. height: math.unit(8000, "feet")
  10115. },
  10116. {
  10117. name: "Gigamacro",
  10118. height: math.unit(800, "miles")
  10119. },
  10120. {
  10121. name: "Teramacro",
  10122. height: math.unit(80000, "miles")
  10123. },
  10124. {
  10125. name: "Celestial",
  10126. height: math.unit(8e6, "miles")
  10127. },
  10128. {
  10129. name: "Star Dragon",
  10130. height: math.unit(800000, "parsecs")
  10131. },
  10132. {
  10133. name: "Godly",
  10134. height: math.unit(800, "teraparsecs")
  10135. },
  10136. ]
  10137. ))
  10138. characterMakers.push(() => makeCharacter(
  10139. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10140. {
  10141. front: {
  10142. height: math.unit(6, "feet"),
  10143. weight: math.unit(150, "lb"),
  10144. name: "Front",
  10145. image: {
  10146. source: "./media/characters/ky'owin/front.svg",
  10147. extra: 3888 / 3068,
  10148. bottom: 0.015
  10149. }
  10150. },
  10151. },
  10152. [
  10153. {
  10154. name: "Normal",
  10155. height: math.unit(6 + 8 / 12, "feet")
  10156. },
  10157. {
  10158. name: "Large",
  10159. height: math.unit(68, "feet")
  10160. },
  10161. {
  10162. name: "Macro",
  10163. height: math.unit(132, "feet")
  10164. },
  10165. {
  10166. name: "Macro+",
  10167. height: math.unit(340, "feet")
  10168. },
  10169. {
  10170. name: "Macro++",
  10171. height: math.unit(680, "feet"),
  10172. default: true
  10173. },
  10174. {
  10175. name: "Megamacro",
  10176. height: math.unit(1, "mile")
  10177. },
  10178. {
  10179. name: "Megamacro+",
  10180. height: math.unit(10, "miles")
  10181. },
  10182. ]
  10183. ))
  10184. characterMakers.push(() => makeCharacter(
  10185. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10186. {
  10187. front: {
  10188. height: math.unit(4, "feet"),
  10189. weight: math.unit(50, "lb"),
  10190. name: "Front",
  10191. image: {
  10192. source: "./media/characters/mal/front.svg",
  10193. extra: 785 / 724,
  10194. bottom: 0.07
  10195. }
  10196. },
  10197. },
  10198. [
  10199. {
  10200. name: "Micro",
  10201. height: math.unit(4, "inches")
  10202. },
  10203. {
  10204. name: "Normal",
  10205. height: math.unit(4, "feet"),
  10206. default: true
  10207. },
  10208. {
  10209. name: "Macro",
  10210. height: math.unit(200, "feet")
  10211. },
  10212. ]
  10213. ))
  10214. characterMakers.push(() => makeCharacter(
  10215. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10216. {
  10217. front: {
  10218. height: math.unit(6, "feet"),
  10219. weight: math.unit(150, "lb"),
  10220. name: "Front",
  10221. image: {
  10222. source: "./media/characters/jordan-deware/front.svg",
  10223. extra: 1191 / 1012
  10224. }
  10225. },
  10226. },
  10227. [
  10228. {
  10229. name: "Nano",
  10230. height: math.unit(0.01, "mm")
  10231. },
  10232. {
  10233. name: "Minimicro",
  10234. height: math.unit(1, "mm")
  10235. },
  10236. {
  10237. name: "Micro",
  10238. height: math.unit(0.5, "inches")
  10239. },
  10240. {
  10241. name: "Normal",
  10242. height: math.unit(4, "feet"),
  10243. default: true
  10244. },
  10245. {
  10246. name: "Minimacro",
  10247. height: math.unit(40, "meters")
  10248. },
  10249. {
  10250. name: "Small Macro",
  10251. height: math.unit(400, "meters")
  10252. },
  10253. {
  10254. name: "Macro",
  10255. height: math.unit(4, "miles")
  10256. },
  10257. {
  10258. name: "Megamacro",
  10259. height: math.unit(40, "miles")
  10260. },
  10261. {
  10262. name: "Megamacro+",
  10263. height: math.unit(400, "miles")
  10264. },
  10265. {
  10266. name: "Gigamacro",
  10267. height: math.unit(400000, "miles")
  10268. },
  10269. ]
  10270. ))
  10271. characterMakers.push(() => makeCharacter(
  10272. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10273. {
  10274. side: {
  10275. height: math.unit(6, "feet"),
  10276. weight: math.unit(150, "lb"),
  10277. name: "Side",
  10278. image: {
  10279. source: "./media/characters/kimiko/side.svg",
  10280. extra: 600 / 358
  10281. }
  10282. },
  10283. },
  10284. [
  10285. {
  10286. name: "Normal",
  10287. height: math.unit(15, "feet"),
  10288. default: true
  10289. },
  10290. {
  10291. name: "Macro",
  10292. height: math.unit(220, "feet")
  10293. },
  10294. {
  10295. name: "Macro+",
  10296. height: math.unit(1450, "feet")
  10297. },
  10298. {
  10299. name: "Megamacro",
  10300. height: math.unit(11500, "feet")
  10301. },
  10302. {
  10303. name: "Gigamacro",
  10304. height: math.unit(9500, "miles")
  10305. },
  10306. {
  10307. name: "Teramacro",
  10308. height: math.unit(2208005005, "miles")
  10309. },
  10310. {
  10311. name: "Examacro",
  10312. height: math.unit(2750, "parsecs")
  10313. },
  10314. {
  10315. name: "Zettamacro",
  10316. height: math.unit(101500, "parsecs")
  10317. },
  10318. ]
  10319. ))
  10320. characterMakers.push(() => makeCharacter(
  10321. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10322. {
  10323. front: {
  10324. height: math.unit(6, "feet"),
  10325. weight: math.unit(70, "kg"),
  10326. name: "Front",
  10327. image: {
  10328. source: "./media/characters/andrew-sleepy/front.svg"
  10329. }
  10330. },
  10331. side: {
  10332. height: math.unit(6, "feet"),
  10333. weight: math.unit(70, "kg"),
  10334. name: "Side",
  10335. image: {
  10336. source: "./media/characters/andrew-sleepy/side.svg"
  10337. }
  10338. },
  10339. },
  10340. [
  10341. {
  10342. name: "Micro",
  10343. height: math.unit(1, "mm"),
  10344. default: true
  10345. },
  10346. ]
  10347. ))
  10348. characterMakers.push(() => makeCharacter(
  10349. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10350. {
  10351. front: {
  10352. height: math.unit(6, "feet"),
  10353. weight: math.unit(150, "lb"),
  10354. name: "Front",
  10355. image: {
  10356. source: "./media/characters/judio/front.svg",
  10357. extra: 1258 / 1110
  10358. }
  10359. },
  10360. },
  10361. [
  10362. {
  10363. name: "Normal",
  10364. height: math.unit(5 + 6 / 12, "feet")
  10365. },
  10366. {
  10367. name: "Macro",
  10368. height: math.unit(1000, "feet"),
  10369. default: true
  10370. },
  10371. {
  10372. name: "Megamacro",
  10373. height: math.unit(10, "miles")
  10374. },
  10375. ]
  10376. ))
  10377. characterMakers.push(() => makeCharacter(
  10378. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10379. {
  10380. front: {
  10381. height: math.unit(6, "feet"),
  10382. weight: math.unit(68, "kg"),
  10383. name: "Front",
  10384. image: {
  10385. source: "./media/characters/nomaxice/front.svg",
  10386. extra: 1498 / 1073,
  10387. bottom: 0.075
  10388. }
  10389. },
  10390. foot: {
  10391. height: math.unit(1.1, "feet"),
  10392. name: "Foot",
  10393. image: {
  10394. source: "./media/characters/nomaxice/foot.svg"
  10395. }
  10396. },
  10397. },
  10398. [
  10399. {
  10400. name: "Micro",
  10401. height: math.unit(8, "cm")
  10402. },
  10403. {
  10404. name: "Norm",
  10405. height: math.unit(1.82, "m")
  10406. },
  10407. {
  10408. name: "Norm+",
  10409. height: math.unit(8.8, "feet")
  10410. },
  10411. {
  10412. name: "Big",
  10413. height: math.unit(8, "meters"),
  10414. default: true
  10415. },
  10416. {
  10417. name: "Macro",
  10418. height: math.unit(18, "meters")
  10419. },
  10420. {
  10421. name: "Macro+",
  10422. height: math.unit(88, "meters")
  10423. },
  10424. ]
  10425. ))
  10426. characterMakers.push(() => makeCharacter(
  10427. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10428. {
  10429. front: {
  10430. height: math.unit(12, "feet"),
  10431. weight: math.unit(1.5, "tons"),
  10432. name: "Front",
  10433. image: {
  10434. source: "./media/characters/dydros/front.svg",
  10435. extra: 863 / 800,
  10436. bottom: 0.015
  10437. }
  10438. },
  10439. back: {
  10440. height: math.unit(12, "feet"),
  10441. weight: math.unit(1.5, "tons"),
  10442. name: "Back",
  10443. image: {
  10444. source: "./media/characters/dydros/back.svg",
  10445. extra: 900 / 843,
  10446. bottom: 0.005
  10447. }
  10448. },
  10449. },
  10450. [
  10451. {
  10452. name: "Normal",
  10453. height: math.unit(12, "feet"),
  10454. default: true
  10455. },
  10456. ]
  10457. ))
  10458. characterMakers.push(() => makeCharacter(
  10459. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10460. {
  10461. front: {
  10462. height: math.unit(6, "feet"),
  10463. weight: math.unit(100, "kg"),
  10464. name: "Front",
  10465. image: {
  10466. source: "./media/characters/riggi/front.svg",
  10467. extra: 5787 / 5303
  10468. }
  10469. },
  10470. hyper: {
  10471. height: math.unit(6 * 5 / 3, "feet"),
  10472. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10473. name: "Hyper",
  10474. image: {
  10475. source: "./media/characters/riggi/hyper.svg",
  10476. extra: 3595 / 3485
  10477. }
  10478. },
  10479. },
  10480. [
  10481. {
  10482. name: "Small Macro",
  10483. height: math.unit(50, "feet")
  10484. },
  10485. {
  10486. name: "Default",
  10487. height: math.unit(200, "feet"),
  10488. default: true
  10489. },
  10490. {
  10491. name: "Loom",
  10492. height: math.unit(10000, "feet")
  10493. },
  10494. {
  10495. name: "Cruising Altitude",
  10496. height: math.unit(30000, "feet")
  10497. },
  10498. {
  10499. name: "Megamacro",
  10500. height: math.unit(100, "miles")
  10501. },
  10502. {
  10503. name: "Continent Sized",
  10504. height: math.unit(2800, "miles")
  10505. },
  10506. {
  10507. name: "Earth Sized",
  10508. height: math.unit(8000, "miles")
  10509. },
  10510. ]
  10511. ))
  10512. characterMakers.push(() => makeCharacter(
  10513. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10514. {
  10515. front: {
  10516. height: math.unit(6, "feet"),
  10517. weight: math.unit(250, "lb"),
  10518. name: "Front",
  10519. image: {
  10520. source: "./media/characters/alexi/front.svg",
  10521. extra: 3483 / 3291,
  10522. bottom: 0.04
  10523. }
  10524. },
  10525. back: {
  10526. height: math.unit(6, "feet"),
  10527. weight: math.unit(250, "lb"),
  10528. name: "Back",
  10529. image: {
  10530. source: "./media/characters/alexi/back.svg",
  10531. extra: 3533 / 3356,
  10532. bottom: 0.021
  10533. }
  10534. },
  10535. frontTransforming: {
  10536. height: math.unit(8.58, "feet"),
  10537. weight: math.unit(1300, "lb"),
  10538. name: "Transforming",
  10539. image: {
  10540. source: "./media/characters/alexi/front-transforming.svg",
  10541. extra: 437 / 409,
  10542. bottom: 19 / 458.66
  10543. }
  10544. },
  10545. frontTransformed: {
  10546. height: math.unit(12.5, "feet"),
  10547. weight: math.unit(4000, "lb"),
  10548. name: "Transformed",
  10549. image: {
  10550. source: "./media/characters/alexi/front-transformed.svg",
  10551. extra: 639 / 614,
  10552. bottom: 30.55 / 671
  10553. }
  10554. },
  10555. },
  10556. [
  10557. {
  10558. name: "Normal",
  10559. height: math.unit(14, "feet"),
  10560. default: true
  10561. },
  10562. {
  10563. name: "Minimacro",
  10564. height: math.unit(30, "meters")
  10565. },
  10566. {
  10567. name: "Macro",
  10568. height: math.unit(500, "meters")
  10569. },
  10570. {
  10571. name: "Megamacro",
  10572. height: math.unit(9000, "km")
  10573. },
  10574. {
  10575. name: "Teramacro",
  10576. height: math.unit(384000, "km")
  10577. },
  10578. ]
  10579. ))
  10580. characterMakers.push(() => makeCharacter(
  10581. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10582. {
  10583. front: {
  10584. height: math.unit(6, "feet"),
  10585. weight: math.unit(150, "lb"),
  10586. name: "Front",
  10587. image: {
  10588. source: "./media/characters/kayroo/front.svg",
  10589. extra: 1153 / 1038,
  10590. bottom: 0.06
  10591. }
  10592. },
  10593. foot: {
  10594. height: math.unit(6, "feet"),
  10595. weight: math.unit(150, "lb"),
  10596. name: "Foot",
  10597. image: {
  10598. source: "./media/characters/kayroo/foot.svg"
  10599. }
  10600. },
  10601. },
  10602. [
  10603. {
  10604. name: "Normal",
  10605. height: math.unit(8, "feet"),
  10606. default: true
  10607. },
  10608. {
  10609. name: "Minimacro",
  10610. height: math.unit(250, "feet")
  10611. },
  10612. {
  10613. name: "Macro",
  10614. height: math.unit(2800, "feet")
  10615. },
  10616. {
  10617. name: "Megamacro",
  10618. height: math.unit(5200, "feet")
  10619. },
  10620. {
  10621. name: "Gigamacro",
  10622. height: math.unit(27000, "feet")
  10623. },
  10624. {
  10625. name: "Omega",
  10626. height: math.unit(45000, "feet")
  10627. },
  10628. ]
  10629. ))
  10630. characterMakers.push(() => makeCharacter(
  10631. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10632. {
  10633. front: {
  10634. height: math.unit(18, "feet"),
  10635. weight: math.unit(5800, "lb"),
  10636. name: "Front",
  10637. image: {
  10638. source: "./media/characters/rhys/front.svg",
  10639. extra: 3386 / 3090,
  10640. bottom: 0.07
  10641. }
  10642. },
  10643. },
  10644. [
  10645. {
  10646. name: "Normal",
  10647. height: math.unit(18, "feet"),
  10648. default: true
  10649. },
  10650. {
  10651. name: "Working Size",
  10652. height: math.unit(200, "feet")
  10653. },
  10654. {
  10655. name: "Demolition Size",
  10656. height: math.unit(2000, "feet")
  10657. },
  10658. {
  10659. name: "Maximum Licensed Size",
  10660. height: math.unit(5, "miles")
  10661. },
  10662. {
  10663. name: "Maximum Observed Size",
  10664. height: math.unit(10, "yottameters")
  10665. },
  10666. ]
  10667. ))
  10668. characterMakers.push(() => makeCharacter(
  10669. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10670. {
  10671. front: {
  10672. height: math.unit(6, "feet"),
  10673. weight: math.unit(250, "lb"),
  10674. name: "Front",
  10675. image: {
  10676. source: "./media/characters/toto/front.svg",
  10677. extra: 527 / 479,
  10678. bottom: 0.05
  10679. }
  10680. },
  10681. },
  10682. [
  10683. {
  10684. name: "Micro",
  10685. height: math.unit(3, "feet")
  10686. },
  10687. {
  10688. name: "Normal",
  10689. height: math.unit(10, "feet")
  10690. },
  10691. {
  10692. name: "Macro",
  10693. height: math.unit(150, "feet"),
  10694. default: true
  10695. },
  10696. {
  10697. name: "Megamacro",
  10698. height: math.unit(1200, "feet")
  10699. },
  10700. ]
  10701. ))
  10702. characterMakers.push(() => makeCharacter(
  10703. { name: "King", species: ["lion"], tags: ["anthro"] },
  10704. {
  10705. back: {
  10706. height: math.unit(6, "feet"),
  10707. weight: math.unit(150, "lb"),
  10708. name: "Back",
  10709. image: {
  10710. source: "./media/characters/king/back.svg"
  10711. }
  10712. },
  10713. },
  10714. [
  10715. {
  10716. name: "Micro",
  10717. height: math.unit(2, "inches")
  10718. },
  10719. {
  10720. name: "Normal",
  10721. height: math.unit(8, "feet")
  10722. },
  10723. {
  10724. name: "Macro",
  10725. height: math.unit(200, "feet"),
  10726. default: true
  10727. },
  10728. {
  10729. name: "Megamacro",
  10730. height: math.unit(50, "miles")
  10731. },
  10732. ]
  10733. ))
  10734. characterMakers.push(() => makeCharacter(
  10735. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10736. {
  10737. anthro: {
  10738. height: math.unit(6 + 5 / 12, "feet"),
  10739. weight: math.unit(280, "lb"),
  10740. name: "Anthro",
  10741. image: {
  10742. source: "./media/characters/cordite/anthro.svg",
  10743. extra: 1986 / 1905,
  10744. bottom: 0.025
  10745. }
  10746. },
  10747. feral: {
  10748. height: math.unit(2, "feet"),
  10749. weight: math.unit(90, "lb"),
  10750. name: "Feral",
  10751. image: {
  10752. source: "./media/characters/cordite/feral.svg",
  10753. extra: 1260 / 755,
  10754. bottom: 0.05
  10755. }
  10756. },
  10757. },
  10758. [
  10759. {
  10760. name: "Normal",
  10761. height: math.unit(6 + 5 / 12, "feet"),
  10762. default: true
  10763. },
  10764. ]
  10765. ))
  10766. characterMakers.push(() => makeCharacter(
  10767. { name: "Pianostrong", species: ["husky"], 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/pianostrong/front.svg",
  10775. extra: 6577 / 6254,
  10776. bottom: 0.02
  10777. }
  10778. },
  10779. side: {
  10780. height: math.unit(6, "feet"),
  10781. weight: math.unit(150, "lb"),
  10782. name: "Side",
  10783. image: {
  10784. source: "./media/characters/pianostrong/side.svg",
  10785. extra: 6106 / 5730
  10786. }
  10787. },
  10788. back: {
  10789. height: math.unit(6, "feet"),
  10790. weight: math.unit(150, "lb"),
  10791. name: "Back",
  10792. image: {
  10793. source: "./media/characters/pianostrong/back.svg",
  10794. extra: 6085 / 5733,
  10795. bottom: 0.01
  10796. }
  10797. },
  10798. },
  10799. [
  10800. {
  10801. name: "Macro",
  10802. height: math.unit(100, "feet")
  10803. },
  10804. {
  10805. name: "Macro+",
  10806. height: math.unit(300, "feet"),
  10807. default: true
  10808. },
  10809. {
  10810. name: "Macro++",
  10811. height: math.unit(1000, "feet")
  10812. },
  10813. ]
  10814. ))
  10815. characterMakers.push(() => makeCharacter(
  10816. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10817. {
  10818. front: {
  10819. height: math.unit(6, "feet"),
  10820. weight: math.unit(150, "lb"),
  10821. name: "Front",
  10822. image: {
  10823. source: "./media/characters/kona/front.svg",
  10824. extra: 2960 / 2629,
  10825. bottom: 0.005
  10826. }
  10827. },
  10828. },
  10829. [
  10830. {
  10831. name: "Normal",
  10832. height: math.unit(11 + 8 / 12, "feet")
  10833. },
  10834. {
  10835. name: "Macro",
  10836. height: math.unit(850, "feet"),
  10837. default: true
  10838. },
  10839. {
  10840. name: "Macro+",
  10841. height: math.unit(1.5, "km"),
  10842. default: true
  10843. },
  10844. {
  10845. name: "Megamacro",
  10846. height: math.unit(80, "miles")
  10847. },
  10848. {
  10849. name: "Gigamacro",
  10850. height: math.unit(3500, "miles")
  10851. },
  10852. ]
  10853. ))
  10854. characterMakers.push(() => makeCharacter(
  10855. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10856. {
  10857. side: {
  10858. height: math.unit(1.9, "meters"),
  10859. weight: math.unit(326, "kg"),
  10860. name: "Side",
  10861. image: {
  10862. source: "./media/characters/levi/side.svg",
  10863. extra: 1704 / 1334,
  10864. bottom: 0.02
  10865. }
  10866. },
  10867. },
  10868. [
  10869. {
  10870. name: "Normal",
  10871. height: math.unit(1.9, "meters"),
  10872. default: true
  10873. },
  10874. {
  10875. name: "Macro",
  10876. height: math.unit(20, "meters")
  10877. },
  10878. {
  10879. name: "Macro+",
  10880. height: math.unit(200, "meters")
  10881. },
  10882. {
  10883. name: "Megamacro",
  10884. height: math.unit(2, "km")
  10885. },
  10886. {
  10887. name: "Megamacro+",
  10888. height: math.unit(20, "km")
  10889. },
  10890. {
  10891. name: "Gigamacro",
  10892. height: math.unit(2500, "km")
  10893. },
  10894. {
  10895. name: "Gigamacro+",
  10896. height: math.unit(120000, "km")
  10897. },
  10898. {
  10899. name: "Teramacro",
  10900. height: math.unit(7.77e6, "km")
  10901. },
  10902. ]
  10903. ))
  10904. characterMakers.push(() => makeCharacter(
  10905. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10906. {
  10907. front: {
  10908. height: math.unit(6 + 4 / 12, "feet"),
  10909. weight: math.unit(188, "lb"),
  10910. name: "Front",
  10911. image: {
  10912. source: "./media/characters/bmc/front.svg",
  10913. extra: 1067 / 1022,
  10914. bottom: 0.047
  10915. }
  10916. },
  10917. },
  10918. [
  10919. {
  10920. name: "Human-sized",
  10921. height: math.unit(6 + 4 / 12, "feet")
  10922. },
  10923. {
  10924. name: "Small",
  10925. height: math.unit(250, "feet")
  10926. },
  10927. {
  10928. name: "Normal",
  10929. height: math.unit(1250, "feet"),
  10930. default: true
  10931. },
  10932. {
  10933. name: "Good Day",
  10934. height: math.unit(88, "miles")
  10935. },
  10936. {
  10937. name: "Largest Measured Size",
  10938. height: math.unit(11.2e6, "lightyears")
  10939. },
  10940. ]
  10941. ))
  10942. characterMakers.push(() => makeCharacter(
  10943. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10944. {
  10945. front: {
  10946. height: math.unit(20, "feet"),
  10947. weight: math.unit(2016, "kg"),
  10948. name: "Front",
  10949. image: {
  10950. source: "./media/characters/sven-the-kaiju/front.svg",
  10951. extra: 1479 / 1449,
  10952. bottom: 0.05
  10953. }
  10954. },
  10955. },
  10956. [
  10957. {
  10958. name: "Fairy",
  10959. height: math.unit(6, "inches")
  10960. },
  10961. {
  10962. name: "Normal",
  10963. height: math.unit(20, "feet"),
  10964. default: true
  10965. },
  10966. {
  10967. name: "Rampage",
  10968. height: math.unit(200, "feet")
  10969. },
  10970. {
  10971. name: "Archfey Forest Guardian",
  10972. height: math.unit(1, "mile")
  10973. },
  10974. ]
  10975. ))
  10976. characterMakers.push(() => makeCharacter(
  10977. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10978. {
  10979. front: {
  10980. height: math.unit(4, "meters"),
  10981. weight: math.unit(2, "tons"),
  10982. name: "Front",
  10983. image: {
  10984. source: "./media/characters/marik/front.svg",
  10985. extra: 1057 / 1003,
  10986. bottom: 0.08
  10987. }
  10988. },
  10989. },
  10990. [
  10991. {
  10992. name: "Normal",
  10993. height: math.unit(4, "meters"),
  10994. default: true
  10995. },
  10996. {
  10997. name: "Macro",
  10998. height: math.unit(20, "meters")
  10999. },
  11000. {
  11001. name: "Megamacro",
  11002. height: math.unit(50, "km")
  11003. },
  11004. {
  11005. name: "Gigamacro",
  11006. height: math.unit(100, "km")
  11007. },
  11008. {
  11009. name: "Alpha Macro",
  11010. height: math.unit(7.88e7, "yottameters")
  11011. },
  11012. ]
  11013. ))
  11014. characterMakers.push(() => makeCharacter(
  11015. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11016. {
  11017. front: {
  11018. height: math.unit(6, "feet"),
  11019. weight: math.unit(110, "lb"),
  11020. name: "Front",
  11021. image: {
  11022. source: "./media/characters/mel/front.svg",
  11023. extra: 736 / 617,
  11024. bottom: 0.017
  11025. }
  11026. },
  11027. },
  11028. [
  11029. {
  11030. name: "Pico",
  11031. height: math.unit(3, "pm")
  11032. },
  11033. {
  11034. name: "Nano",
  11035. height: math.unit(3, "nm")
  11036. },
  11037. {
  11038. name: "Micro",
  11039. height: math.unit(0.3, "mm"),
  11040. default: true
  11041. },
  11042. {
  11043. name: "Micro+",
  11044. height: math.unit(3, "mm")
  11045. },
  11046. {
  11047. name: "Normal",
  11048. height: math.unit(5 + 10.5 / 12, "feet")
  11049. },
  11050. ]
  11051. ))
  11052. characterMakers.push(() => makeCharacter(
  11053. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11054. {
  11055. kaiju: {
  11056. height: math.unit(1.75, "meters"),
  11057. weight: math.unit(55, "kg"),
  11058. name: "Kaiju",
  11059. image: {
  11060. source: "./media/characters/lykonous/kaiju.svg",
  11061. extra: 1055 / 946,
  11062. bottom: 0.135
  11063. }
  11064. },
  11065. },
  11066. [
  11067. {
  11068. name: "Normal",
  11069. height: math.unit(2.5, "meters"),
  11070. default: true
  11071. },
  11072. {
  11073. name: "Kaiju Dragon",
  11074. height: math.unit(60, "meters")
  11075. },
  11076. {
  11077. name: "Mega Kaiju",
  11078. height: math.unit(120, "km")
  11079. },
  11080. {
  11081. name: "Giga Kaiju",
  11082. height: math.unit(200, "megameters")
  11083. },
  11084. {
  11085. name: "Terra Kaiju",
  11086. height: math.unit(400, "gigameters")
  11087. },
  11088. {
  11089. name: "Kaiju Dragon God",
  11090. height: math.unit(13000, "exaparsecs")
  11091. },
  11092. ]
  11093. ))
  11094. characterMakers.push(() => makeCharacter(
  11095. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11096. {
  11097. front: {
  11098. height: math.unit(6, "feet"),
  11099. weight: math.unit(150, "lb"),
  11100. name: "Front",
  11101. image: {
  11102. source: "./media/characters/blü/front.svg",
  11103. extra: 1883 / 1564,
  11104. bottom: 0.031
  11105. }
  11106. },
  11107. },
  11108. [
  11109. {
  11110. name: "Normal",
  11111. height: math.unit(13, "feet"),
  11112. default: true
  11113. },
  11114. {
  11115. name: "Big Boi",
  11116. height: math.unit(150, "meters")
  11117. },
  11118. {
  11119. name: "Mini Stomper",
  11120. height: math.unit(300, "meters")
  11121. },
  11122. {
  11123. name: "Macro",
  11124. height: math.unit(1000, "meters")
  11125. },
  11126. {
  11127. name: "Megamacro",
  11128. height: math.unit(11000, "meters")
  11129. },
  11130. {
  11131. name: "Gigamacro",
  11132. height: math.unit(11000, "km")
  11133. },
  11134. {
  11135. name: "Teramacro",
  11136. height: math.unit(420000, "km")
  11137. },
  11138. {
  11139. name: "Examacro",
  11140. height: math.unit(120, "parsecs")
  11141. },
  11142. {
  11143. name: "God Tho",
  11144. height: math.unit(98000000000, "parsecs")
  11145. },
  11146. ]
  11147. ))
  11148. characterMakers.push(() => makeCharacter(
  11149. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11150. {
  11151. taurFront: {
  11152. height: math.unit(6, "feet"),
  11153. weight: math.unit(200, "lb"),
  11154. name: "Taur (Front)",
  11155. image: {
  11156. source: "./media/characters/scales/taur-front.svg",
  11157. extra: 1,
  11158. bottom: 0.05
  11159. }
  11160. },
  11161. taurBack: {
  11162. height: math.unit(6, "feet"),
  11163. weight: math.unit(200, "lb"),
  11164. name: "Taur (Back)",
  11165. image: {
  11166. source: "./media/characters/scales/taur-back.svg",
  11167. extra: 1,
  11168. bottom: 0.08
  11169. }
  11170. },
  11171. anthro: {
  11172. height: math.unit(6 * 7 / 12, "feet"),
  11173. weight: math.unit(100, "lb"),
  11174. name: "Anthro",
  11175. image: {
  11176. source: "./media/characters/scales/anthro.svg",
  11177. extra: 1,
  11178. bottom: 0.06
  11179. }
  11180. },
  11181. },
  11182. [
  11183. {
  11184. name: "Normal",
  11185. height: math.unit(12, "feet"),
  11186. default: true
  11187. },
  11188. ]
  11189. ))
  11190. characterMakers.push(() => makeCharacter(
  11191. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11192. {
  11193. front: {
  11194. height: math.unit(6, "feet"),
  11195. weight: math.unit(150, "lb"),
  11196. name: "Front",
  11197. image: {
  11198. source: "./media/characters/koragos/front.svg",
  11199. extra: 841 / 794,
  11200. bottom: 0.035
  11201. }
  11202. },
  11203. back: {
  11204. height: math.unit(6, "feet"),
  11205. weight: math.unit(150, "lb"),
  11206. name: "Back",
  11207. image: {
  11208. source: "./media/characters/koragos/back.svg",
  11209. extra: 841 / 810,
  11210. bottom: 0.022
  11211. }
  11212. },
  11213. },
  11214. [
  11215. {
  11216. name: "Normal",
  11217. height: math.unit(6 + 11 / 12, "feet"),
  11218. default: true
  11219. },
  11220. {
  11221. name: "Macro",
  11222. height: math.unit(490, "feet")
  11223. },
  11224. {
  11225. name: "Megamacro",
  11226. height: math.unit(10, "miles")
  11227. },
  11228. {
  11229. name: "Gigamacro",
  11230. height: math.unit(50, "miles")
  11231. },
  11232. ]
  11233. ))
  11234. characterMakers.push(() => makeCharacter(
  11235. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11236. {
  11237. front: {
  11238. height: math.unit(6, "feet"),
  11239. weight: math.unit(250, "lb"),
  11240. name: "Front",
  11241. image: {
  11242. source: "./media/characters/xylrem/front.svg",
  11243. extra: 3323 / 3050,
  11244. bottom: 0.065
  11245. }
  11246. },
  11247. },
  11248. [
  11249. {
  11250. name: "Micro",
  11251. height: math.unit(4, "feet")
  11252. },
  11253. {
  11254. name: "Normal",
  11255. height: math.unit(16, "feet"),
  11256. default: true
  11257. },
  11258. {
  11259. name: "Macro",
  11260. height: math.unit(2720, "feet")
  11261. },
  11262. {
  11263. name: "Megamacro",
  11264. height: math.unit(25000, "miles")
  11265. },
  11266. ]
  11267. ))
  11268. characterMakers.push(() => makeCharacter(
  11269. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11270. {
  11271. front: {
  11272. height: math.unit(8, "feet"),
  11273. weight: math.unit(250, "kg"),
  11274. name: "Front",
  11275. image: {
  11276. source: "./media/characters/ikideru/front.svg",
  11277. extra: 930 / 870,
  11278. bottom: 0.087
  11279. }
  11280. },
  11281. back: {
  11282. height: math.unit(8, "feet"),
  11283. weight: math.unit(250, "kg"),
  11284. name: "Back",
  11285. image: {
  11286. source: "./media/characters/ikideru/back.svg",
  11287. extra: 919 / 852,
  11288. bottom: 0.055
  11289. }
  11290. },
  11291. },
  11292. [
  11293. {
  11294. name: "Rare",
  11295. height: math.unit(8, "feet"),
  11296. default: true
  11297. },
  11298. {
  11299. name: "Playful Loom",
  11300. height: math.unit(80, "feet")
  11301. },
  11302. {
  11303. name: "City Leaner",
  11304. height: math.unit(230, "feet")
  11305. },
  11306. {
  11307. name: "Megamacro",
  11308. height: math.unit(2500, "feet")
  11309. },
  11310. {
  11311. name: "Gigamacro",
  11312. height: math.unit(26400, "feet")
  11313. },
  11314. {
  11315. name: "Tectonic Shifter",
  11316. height: math.unit(1.7, "megameters")
  11317. },
  11318. {
  11319. name: "Planet Carer",
  11320. height: math.unit(21, "megameters")
  11321. },
  11322. {
  11323. name: "God",
  11324. height: math.unit(11157.22, "parsecs")
  11325. },
  11326. ]
  11327. ))
  11328. characterMakers.push(() => makeCharacter(
  11329. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11330. {
  11331. front: {
  11332. height: math.unit(6, "feet"),
  11333. weight: math.unit(120, "lb"),
  11334. name: "Front",
  11335. image: {
  11336. source: "./media/characters/neo/front.svg"
  11337. }
  11338. },
  11339. },
  11340. [
  11341. {
  11342. name: "Micro",
  11343. height: math.unit(2, "inches"),
  11344. default: true
  11345. },
  11346. {
  11347. name: "Human Size",
  11348. height: math.unit(5 + 8 / 12, "feet")
  11349. },
  11350. ]
  11351. ))
  11352. characterMakers.push(() => makeCharacter(
  11353. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11354. {
  11355. front: {
  11356. height: math.unit(13 + 10 / 12, "feet"),
  11357. weight: math.unit(5320, "lb"),
  11358. name: "Front",
  11359. image: {
  11360. source: "./media/characters/chauncey-chantz/front.svg",
  11361. extra: 1587 / 1435,
  11362. bottom: 0.02
  11363. }
  11364. },
  11365. },
  11366. [
  11367. {
  11368. name: "Normal",
  11369. height: math.unit(13 + 10 / 12, "feet"),
  11370. default: true
  11371. },
  11372. {
  11373. name: "Macro",
  11374. height: math.unit(45, "feet")
  11375. },
  11376. {
  11377. name: "Megamacro",
  11378. height: math.unit(250, "miles")
  11379. },
  11380. {
  11381. name: "Planetary",
  11382. height: math.unit(10000, "miles")
  11383. },
  11384. {
  11385. name: "Galactic",
  11386. height: math.unit(40000, "parsecs")
  11387. },
  11388. {
  11389. name: "Universal",
  11390. height: math.unit(1, "yottameter")
  11391. },
  11392. ]
  11393. ))
  11394. characterMakers.push(() => makeCharacter(
  11395. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11396. {
  11397. front: {
  11398. height: math.unit(6, "feet"),
  11399. weight: math.unit(150, "lb"),
  11400. name: "Front",
  11401. image: {
  11402. source: "./media/characters/epifox/front.svg",
  11403. extra: 1,
  11404. bottom: 0.075
  11405. }
  11406. },
  11407. },
  11408. [
  11409. {
  11410. name: "Micro",
  11411. height: math.unit(6, "inches")
  11412. },
  11413. {
  11414. name: "Normal",
  11415. height: math.unit(12, "feet"),
  11416. default: true
  11417. },
  11418. {
  11419. name: "Macro",
  11420. height: math.unit(3810, "feet")
  11421. },
  11422. {
  11423. name: "Megamacro",
  11424. height: math.unit(500, "miles")
  11425. },
  11426. ]
  11427. ))
  11428. characterMakers.push(() => makeCharacter(
  11429. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11430. {
  11431. front: {
  11432. height: math.unit(1.8796, "m"),
  11433. weight: math.unit(230, "lb"),
  11434. name: "Front",
  11435. image: {
  11436. source: "./media/characters/colin-t/front.svg",
  11437. extra: 1272 / 1193,
  11438. bottom: 0.07
  11439. }
  11440. },
  11441. },
  11442. [
  11443. {
  11444. name: "Micro",
  11445. height: math.unit(0.571, "meters")
  11446. },
  11447. {
  11448. name: "Normal",
  11449. height: math.unit(1.8796, "meters"),
  11450. default: true
  11451. },
  11452. {
  11453. name: "Tall",
  11454. height: math.unit(4, "meters")
  11455. },
  11456. {
  11457. name: "Macro",
  11458. height: math.unit(67.241, "meters")
  11459. },
  11460. {
  11461. name: "Megamacro",
  11462. height: math.unit(371.856, "meters")
  11463. },
  11464. {
  11465. name: "Planetary",
  11466. height: math.unit(12631.5689, "km")
  11467. },
  11468. ]
  11469. ))
  11470. characterMakers.push(() => makeCharacter(
  11471. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11472. {
  11473. front: {
  11474. height: math.unit(1.85, "meters"),
  11475. weight: math.unit(80, "kg"),
  11476. name: "Front",
  11477. image: {
  11478. source: "./media/characters/matvei/front.svg",
  11479. extra: 614 / 594,
  11480. bottom: 0.01
  11481. }
  11482. },
  11483. },
  11484. [
  11485. {
  11486. name: "Normal",
  11487. height: math.unit(1.85, "meters"),
  11488. default: true
  11489. },
  11490. ]
  11491. ))
  11492. characterMakers.push(() => makeCharacter(
  11493. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11494. {
  11495. front: {
  11496. height: math.unit(5 + 9 / 12, "feet"),
  11497. weight: math.unit(70, "lb"),
  11498. name: "Front",
  11499. image: {
  11500. source: "./media/characters/quincy/front.svg",
  11501. extra: 3041 / 2751
  11502. }
  11503. },
  11504. back: {
  11505. height: math.unit(5 + 9 / 12, "feet"),
  11506. weight: math.unit(70, "lb"),
  11507. name: "Back",
  11508. image: {
  11509. source: "./media/characters/quincy/back.svg",
  11510. extra: 3041 / 2751
  11511. }
  11512. },
  11513. flying: {
  11514. height: math.unit(5 + 4 / 12, "feet"),
  11515. weight: math.unit(70, "lb"),
  11516. name: "Flying",
  11517. image: {
  11518. source: "./media/characters/quincy/flying.svg",
  11519. extra: 1044 / 930
  11520. }
  11521. },
  11522. },
  11523. [
  11524. {
  11525. name: "Micro",
  11526. height: math.unit(3, "cm")
  11527. },
  11528. {
  11529. name: "Normal",
  11530. height: math.unit(5 + 9 / 12, "feet")
  11531. },
  11532. {
  11533. name: "Macro",
  11534. height: math.unit(200, "meters"),
  11535. default: true
  11536. },
  11537. {
  11538. name: "Megamacro",
  11539. height: math.unit(1000, "meters")
  11540. },
  11541. ]
  11542. ))
  11543. characterMakers.push(() => makeCharacter(
  11544. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11545. {
  11546. front: {
  11547. height: math.unit(4 + 7 / 12, "feet"),
  11548. weight: math.unit(50, "lb"),
  11549. name: "Front",
  11550. image: {
  11551. source: "./media/characters/vanrel/front.svg",
  11552. extra: 1,
  11553. bottom: 0.02
  11554. }
  11555. },
  11556. frontAlt: {
  11557. height: math.unit(4 + 7 / 12, "feet"),
  11558. weight: math.unit(50, "lb"),
  11559. name: "Front-alt",
  11560. image: {
  11561. source: "./media/characters/vanrel/front-alt.svg",
  11562. extra: 1,
  11563. bottom: 15 / 1511
  11564. }
  11565. },
  11566. elemental: {
  11567. height: math.unit(3, "feet"),
  11568. weight: math.unit(50, "lb"),
  11569. name: "Elemental",
  11570. image: {
  11571. source: "./media/characters/vanrel/elemental.svg",
  11572. extra: 192.3 / 162.8,
  11573. bottom: 1.79 / 194.17
  11574. }
  11575. },
  11576. side: {
  11577. height: math.unit(4 + 7 / 12, "feet"),
  11578. weight: math.unit(50, "lb"),
  11579. name: "Side",
  11580. image: {
  11581. source: "./media/characters/vanrel/side.svg",
  11582. extra: 1,
  11583. bottom: 0.025
  11584. }
  11585. },
  11586. tome: {
  11587. height: math.unit(1.35, "feet"),
  11588. weight: math.unit(10, "lb"),
  11589. name: "Vanrel's Tome",
  11590. rename: true,
  11591. image: {
  11592. source: "./media/characters/vanrel/tome.svg"
  11593. }
  11594. },
  11595. beans: {
  11596. height: math.unit(0.89, "feet"),
  11597. name: "Beans",
  11598. image: {
  11599. source: "./media/characters/vanrel/beans.svg"
  11600. }
  11601. },
  11602. },
  11603. [
  11604. {
  11605. name: "Normal",
  11606. height: math.unit(4 + 7 / 12, "feet"),
  11607. default: true
  11608. },
  11609. ]
  11610. ))
  11611. characterMakers.push(() => makeCharacter(
  11612. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11613. {
  11614. front: {
  11615. height: math.unit(7 + 5 / 12, "feet"),
  11616. weight: math.unit(150, "lb"),
  11617. name: "Front",
  11618. image: {
  11619. source: "./media/characters/kuiper-vanrel/front.svg",
  11620. extra: 1118 / 1068,
  11621. bottom: 0.09
  11622. }
  11623. },
  11624. foot: {
  11625. height: math.unit(0.55, "meters"),
  11626. name: "Foot",
  11627. image: {
  11628. source: "./media/characters/kuiper-vanrel/foot.svg",
  11629. }
  11630. },
  11631. battle: {
  11632. height: math.unit(6.824, "feet"),
  11633. weight: math.unit(150, "lb"),
  11634. name: "Battle",
  11635. image: {
  11636. source: "./media/characters/kuiper-vanrel/battle.svg",
  11637. extra: 1466 / 1327,
  11638. bottom: 29 / 1492.5
  11639. }
  11640. },
  11641. battleAlt: {
  11642. height: math.unit(6.824, "feet"),
  11643. weight: math.unit(150, "lb"),
  11644. name: "Battle (Alt)",
  11645. image: {
  11646. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11647. extra: 2081 / 1965,
  11648. bottom: 40 / 2121
  11649. }
  11650. },
  11651. },
  11652. [
  11653. {
  11654. name: "Normal",
  11655. height: math.unit(7 + 5 / 12, "feet"),
  11656. default: true
  11657. },
  11658. ]
  11659. ))
  11660. characterMakers.push(() => makeCharacter(
  11661. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11662. {
  11663. front: {
  11664. height: math.unit(8 + 5 / 12, "feet"),
  11665. weight: math.unit(150, "lb"),
  11666. name: "Front",
  11667. image: {
  11668. source: "./media/characters/keset-vanrel/front.svg",
  11669. extra: 1150 / 1084,
  11670. bottom: 0.05
  11671. }
  11672. },
  11673. hand: {
  11674. height: math.unit(0.6, "meters"),
  11675. name: "Hand",
  11676. image: {
  11677. source: "./media/characters/keset-vanrel/hand.svg"
  11678. }
  11679. },
  11680. foot: {
  11681. height: math.unit(0.94978, "meters"),
  11682. name: "Foot",
  11683. image: {
  11684. source: "./media/characters/keset-vanrel/foot.svg"
  11685. }
  11686. },
  11687. battle: {
  11688. height: math.unit(7.408, "feet"),
  11689. weight: math.unit(150, "lb"),
  11690. name: "Battle",
  11691. image: {
  11692. source: "./media/characters/keset-vanrel/battle.svg",
  11693. extra: 1890 / 1386,
  11694. bottom: 73.28 / 1970
  11695. }
  11696. },
  11697. },
  11698. [
  11699. {
  11700. name: "Normal",
  11701. height: math.unit(8 + 5 / 12, "feet"),
  11702. default: true
  11703. },
  11704. ]
  11705. ))
  11706. characterMakers.push(() => makeCharacter(
  11707. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11708. {
  11709. front: {
  11710. height: math.unit(6, "feet"),
  11711. weight: math.unit(150, "lb"),
  11712. name: "Front",
  11713. image: {
  11714. source: "./media/characters/neos/front.svg",
  11715. extra: 1696 / 992,
  11716. bottom: 0.14
  11717. }
  11718. },
  11719. },
  11720. [
  11721. {
  11722. name: "Normal",
  11723. height: math.unit(54, "cm"),
  11724. default: true
  11725. },
  11726. {
  11727. name: "Macro",
  11728. height: math.unit(100, "m")
  11729. },
  11730. {
  11731. name: "Megamacro",
  11732. height: math.unit(10, "km")
  11733. },
  11734. {
  11735. name: "Megamacro+",
  11736. height: math.unit(100, "km")
  11737. },
  11738. {
  11739. name: "Gigamacro",
  11740. height: math.unit(100, "Mm")
  11741. },
  11742. {
  11743. name: "Teramacro",
  11744. height: math.unit(100, "Gm")
  11745. },
  11746. {
  11747. name: "Examacro",
  11748. height: math.unit(100, "Em")
  11749. },
  11750. {
  11751. name: "Godly",
  11752. height: math.unit(10000, "Ym")
  11753. },
  11754. {
  11755. name: "Beyond Godly",
  11756. height: math.unit(25, "multiverses")
  11757. },
  11758. ]
  11759. ))
  11760. characterMakers.push(() => makeCharacter(
  11761. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11762. {
  11763. feminine: {
  11764. height: math.unit(5, "feet"),
  11765. weight: math.unit(100, "lb"),
  11766. name: "Feminine",
  11767. image: {
  11768. source: "./media/characters/sammy-mouse/feminine.svg",
  11769. extra: 2526 / 2425,
  11770. bottom: 0.123
  11771. }
  11772. },
  11773. masculine: {
  11774. height: math.unit(5, "feet"),
  11775. weight: math.unit(100, "lb"),
  11776. name: "Masculine",
  11777. image: {
  11778. source: "./media/characters/sammy-mouse/masculine.svg",
  11779. extra: 2526 / 2425,
  11780. bottom: 0.123
  11781. }
  11782. },
  11783. },
  11784. [
  11785. {
  11786. name: "Micro",
  11787. height: math.unit(5, "inches")
  11788. },
  11789. {
  11790. name: "Normal",
  11791. height: math.unit(5, "feet"),
  11792. default: true
  11793. },
  11794. {
  11795. name: "Macro",
  11796. height: math.unit(60, "feet")
  11797. },
  11798. ]
  11799. ))
  11800. characterMakers.push(() => makeCharacter(
  11801. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11802. {
  11803. front: {
  11804. height: math.unit(4, "feet"),
  11805. weight: math.unit(50, "lb"),
  11806. name: "Front",
  11807. image: {
  11808. source: "./media/characters/kole/front.svg",
  11809. extra: 1423 / 1303,
  11810. bottom: 0.025
  11811. }
  11812. },
  11813. back: {
  11814. height: math.unit(4, "feet"),
  11815. weight: math.unit(50, "lb"),
  11816. name: "Back",
  11817. image: {
  11818. source: "./media/characters/kole/back.svg",
  11819. extra: 1426 / 1280,
  11820. bottom: 0.02
  11821. }
  11822. },
  11823. },
  11824. [
  11825. {
  11826. name: "Normal",
  11827. height: math.unit(4, "feet"),
  11828. default: true
  11829. },
  11830. ]
  11831. ))
  11832. characterMakers.push(() => makeCharacter(
  11833. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11834. {
  11835. front: {
  11836. height: math.unit(2 + 6 / 12, "feet"),
  11837. weight: math.unit(20, "lb"),
  11838. name: "Front",
  11839. image: {
  11840. source: "./media/characters/rufran/front.svg",
  11841. extra: 2041 / 1839,
  11842. bottom: 0.055
  11843. }
  11844. },
  11845. back: {
  11846. height: math.unit(2 + 6 / 12, "feet"),
  11847. weight: math.unit(20, "lb"),
  11848. name: "Back",
  11849. image: {
  11850. source: "./media/characters/rufran/back.svg",
  11851. extra: 2054 / 1839,
  11852. bottom: 0.01
  11853. }
  11854. },
  11855. hand: {
  11856. height: math.unit(0.2166, "meters"),
  11857. name: "Hand",
  11858. image: {
  11859. source: "./media/characters/rufran/hand.svg"
  11860. }
  11861. },
  11862. foot: {
  11863. height: math.unit(0.185, "meters"),
  11864. name: "Foot",
  11865. image: {
  11866. source: "./media/characters/rufran/foot.svg"
  11867. }
  11868. },
  11869. },
  11870. [
  11871. {
  11872. name: "Micro",
  11873. height: math.unit(1, "inch")
  11874. },
  11875. {
  11876. name: "Normal",
  11877. height: math.unit(2 + 6 / 12, "feet"),
  11878. default: true
  11879. },
  11880. {
  11881. name: "Big",
  11882. height: math.unit(60, "feet")
  11883. },
  11884. {
  11885. name: "Macro",
  11886. height: math.unit(325, "feet")
  11887. },
  11888. ]
  11889. ))
  11890. characterMakers.push(() => makeCharacter(
  11891. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11892. {
  11893. front: {
  11894. height: math.unit(0.3, "meters"),
  11895. weight: math.unit(3.5, "kg"),
  11896. name: "Front",
  11897. image: {
  11898. source: "./media/characters/chip/front.svg",
  11899. extra: 748 / 674
  11900. }
  11901. },
  11902. },
  11903. [
  11904. {
  11905. name: "Micro",
  11906. height: math.unit(1, "inch"),
  11907. default: true
  11908. },
  11909. ]
  11910. ))
  11911. characterMakers.push(() => makeCharacter(
  11912. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11913. {
  11914. side: {
  11915. height: math.unit(2.3, "meters"),
  11916. weight: math.unit(3500, "lb"),
  11917. name: "Side",
  11918. image: {
  11919. source: "./media/characters/torvid/side.svg",
  11920. extra: 1972 / 722,
  11921. bottom: 0.035
  11922. }
  11923. },
  11924. },
  11925. [
  11926. {
  11927. name: "Normal",
  11928. height: math.unit(2.3, "meters"),
  11929. default: true
  11930. },
  11931. ]
  11932. ))
  11933. characterMakers.push(() => makeCharacter(
  11934. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11935. {
  11936. front: {
  11937. height: math.unit(2, "meters"),
  11938. weight: math.unit(150.5, "kg"),
  11939. name: "Front",
  11940. image: {
  11941. source: "./media/characters/susan/front.svg",
  11942. extra: 693 / 635,
  11943. bottom: 0.05
  11944. }
  11945. },
  11946. },
  11947. [
  11948. {
  11949. name: "Megamacro",
  11950. height: math.unit(505, "miles"),
  11951. default: true
  11952. },
  11953. ]
  11954. ))
  11955. characterMakers.push(() => makeCharacter(
  11956. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11957. {
  11958. front: {
  11959. height: math.unit(6, "feet"),
  11960. weight: math.unit(150, "lb"),
  11961. name: "Front",
  11962. image: {
  11963. source: "./media/characters/raindrops/front.svg",
  11964. extra: 2655 / 2461,
  11965. bottom: 49 / 2705
  11966. }
  11967. },
  11968. back: {
  11969. height: math.unit(6, "feet"),
  11970. weight: math.unit(150, "lb"),
  11971. name: "Back",
  11972. image: {
  11973. source: "./media/characters/raindrops/back.svg",
  11974. extra: 2574 / 2400,
  11975. bottom: 65 / 2634
  11976. }
  11977. },
  11978. },
  11979. [
  11980. {
  11981. name: "Micro",
  11982. height: math.unit(6, "inches")
  11983. },
  11984. {
  11985. name: "Normal",
  11986. height: math.unit(6 + 2 / 12, "feet")
  11987. },
  11988. {
  11989. name: "Macro",
  11990. height: math.unit(131, "feet"),
  11991. default: true
  11992. },
  11993. {
  11994. name: "Megamacro",
  11995. height: math.unit(15, "miles")
  11996. },
  11997. {
  11998. name: "Gigamacro",
  11999. height: math.unit(4000, "miles")
  12000. },
  12001. {
  12002. name: "Teramacro",
  12003. height: math.unit(315000, "miles")
  12004. },
  12005. ]
  12006. ))
  12007. characterMakers.push(() => makeCharacter(
  12008. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12009. {
  12010. front: {
  12011. height: math.unit(2.794, "meters"),
  12012. weight: math.unit(325, "kg"),
  12013. name: "Front",
  12014. image: {
  12015. source: "./media/characters/tezwa/front.svg",
  12016. extra: 2083 / 1906,
  12017. bottom: 0.031
  12018. }
  12019. },
  12020. foot: {
  12021. height: math.unit(0.687, "meters"),
  12022. name: "Foot",
  12023. image: {
  12024. source: "./media/characters/tezwa/foot.svg"
  12025. }
  12026. },
  12027. },
  12028. [
  12029. {
  12030. name: "Normal",
  12031. height: math.unit(9 + 2 / 12, "feet"),
  12032. default: true
  12033. },
  12034. ]
  12035. ))
  12036. characterMakers.push(() => makeCharacter(
  12037. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12038. {
  12039. front: {
  12040. height: math.unit(58, "feet"),
  12041. weight: math.unit(89000, "lb"),
  12042. name: "Front",
  12043. image: {
  12044. source: "./media/characters/typhus/front.svg",
  12045. extra: 816 / 800,
  12046. bottom: 0.065
  12047. }
  12048. },
  12049. },
  12050. [
  12051. {
  12052. name: "Macro",
  12053. height: math.unit(58, "feet"),
  12054. default: true
  12055. },
  12056. ]
  12057. ))
  12058. characterMakers.push(() => makeCharacter(
  12059. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12060. {
  12061. front: {
  12062. height: math.unit(12, "feet"),
  12063. weight: math.unit(6, "tonnes"),
  12064. name: "Front",
  12065. image: {
  12066. source: "./media/characters/lyra-von-wulf/front.svg",
  12067. extra: 1,
  12068. bottom: 0.10
  12069. }
  12070. },
  12071. frontMecha: {
  12072. height: math.unit(12, "feet"),
  12073. weight: math.unit(12, "tonnes"),
  12074. name: "Front (Mecha)",
  12075. image: {
  12076. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12077. extra: 1,
  12078. bottom: 0.042
  12079. }
  12080. },
  12081. maw: {
  12082. height: math.unit(2.2, "feet"),
  12083. name: "Maw",
  12084. image: {
  12085. source: "./media/characters/lyra-von-wulf/maw.svg"
  12086. }
  12087. },
  12088. },
  12089. [
  12090. {
  12091. name: "Normal",
  12092. height: math.unit(12, "feet"),
  12093. default: true
  12094. },
  12095. {
  12096. name: "Classic",
  12097. height: math.unit(50, "feet")
  12098. },
  12099. {
  12100. name: "Macro",
  12101. height: math.unit(500, "feet")
  12102. },
  12103. {
  12104. name: "Megamacro",
  12105. height: math.unit(1, "mile")
  12106. },
  12107. {
  12108. name: "Gigamacro",
  12109. height: math.unit(400, "miles")
  12110. },
  12111. {
  12112. name: "Teramacro",
  12113. height: math.unit(22000, "miles")
  12114. },
  12115. {
  12116. name: "Solarmacro",
  12117. height: math.unit(8600000, "miles")
  12118. },
  12119. {
  12120. name: "Galactic",
  12121. height: math.unit(1057000, "lightyears")
  12122. },
  12123. ]
  12124. ))
  12125. characterMakers.push(() => makeCharacter(
  12126. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12127. {
  12128. front: {
  12129. height: math.unit(6 + 10 / 12, "feet"),
  12130. weight: math.unit(150, "lb"),
  12131. name: "Front",
  12132. image: {
  12133. source: "./media/characters/dixon/front.svg",
  12134. extra: 3361 / 3209,
  12135. bottom: 0.01
  12136. }
  12137. },
  12138. },
  12139. [
  12140. {
  12141. name: "Normal",
  12142. height: math.unit(6 + 10 / 12, "feet"),
  12143. default: true
  12144. },
  12145. {
  12146. name: "Big",
  12147. height: math.unit(12, "meters")
  12148. },
  12149. {
  12150. name: "Macro",
  12151. height: math.unit(500, "meters")
  12152. },
  12153. {
  12154. name: "Megamacro",
  12155. height: math.unit(2, "km")
  12156. },
  12157. ]
  12158. ))
  12159. characterMakers.push(() => makeCharacter(
  12160. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12161. {
  12162. front: {
  12163. height: math.unit(185, "cm"),
  12164. weight: math.unit(68, "kg"),
  12165. name: "Front",
  12166. image: {
  12167. source: "./media/characters/kauko/front.svg",
  12168. extra: 1455 / 1421,
  12169. bottom: 0.03
  12170. }
  12171. },
  12172. back: {
  12173. height: math.unit(185, "cm"),
  12174. weight: math.unit(68, "kg"),
  12175. name: "Back",
  12176. image: {
  12177. source: "./media/characters/kauko/back.svg",
  12178. extra: 1455 / 1421,
  12179. bottom: 0.004
  12180. }
  12181. },
  12182. },
  12183. [
  12184. {
  12185. name: "Normal",
  12186. height: math.unit(185, "cm"),
  12187. default: true
  12188. },
  12189. ]
  12190. ))
  12191. characterMakers.push(() => makeCharacter(
  12192. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12193. {
  12194. front: {
  12195. height: math.unit(6, "feet"),
  12196. weight: math.unit(150, "kg"),
  12197. name: "Front",
  12198. image: {
  12199. source: "./media/characters/varg/front.svg",
  12200. extra: 1108 / 1018,
  12201. bottom: 0.0375
  12202. }
  12203. },
  12204. },
  12205. [
  12206. {
  12207. name: "Normal",
  12208. height: math.unit(5, "meters")
  12209. },
  12210. {
  12211. name: "Macro",
  12212. height: math.unit(200, "meters")
  12213. },
  12214. {
  12215. name: "Megamacro",
  12216. height: math.unit(20, "kilometers")
  12217. },
  12218. {
  12219. name: "True Size",
  12220. height: math.unit(211, "km"),
  12221. default: true
  12222. },
  12223. {
  12224. name: "Gigamacro",
  12225. height: math.unit(1000, "km")
  12226. },
  12227. {
  12228. name: "Gigamacro+",
  12229. height: math.unit(8000, "km")
  12230. },
  12231. {
  12232. name: "Teramacro",
  12233. height: math.unit(1000000, "km")
  12234. },
  12235. ]
  12236. ))
  12237. characterMakers.push(() => makeCharacter(
  12238. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12239. {
  12240. front: {
  12241. height: math.unit(7 + 7 / 12, "feet"),
  12242. weight: math.unit(267, "lb"),
  12243. name: "Front",
  12244. image: {
  12245. source: "./media/characters/dayza/front.svg",
  12246. extra: 1262 / 1200,
  12247. bottom: 0.035
  12248. }
  12249. },
  12250. side: {
  12251. height: math.unit(7 + 7 / 12, "feet"),
  12252. weight: math.unit(267, "lb"),
  12253. name: "Side",
  12254. image: {
  12255. source: "./media/characters/dayza/side.svg",
  12256. extra: 1295 / 1245,
  12257. bottom: 0.05
  12258. }
  12259. },
  12260. back: {
  12261. height: math.unit(7 + 7 / 12, "feet"),
  12262. weight: math.unit(267, "lb"),
  12263. name: "Back",
  12264. image: {
  12265. source: "./media/characters/dayza/back.svg",
  12266. extra: 1241 / 1170
  12267. }
  12268. },
  12269. },
  12270. [
  12271. {
  12272. name: "Normal",
  12273. height: math.unit(7 + 7 / 12, "feet"),
  12274. default: true
  12275. },
  12276. {
  12277. name: "Macro",
  12278. height: math.unit(155, "feet")
  12279. },
  12280. ]
  12281. ))
  12282. characterMakers.push(() => makeCharacter(
  12283. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12284. {
  12285. front: {
  12286. height: math.unit(6 + 5 / 12, "feet"),
  12287. weight: math.unit(160, "lb"),
  12288. name: "Front",
  12289. image: {
  12290. source: "./media/characters/xanthos/front.svg",
  12291. extra: 1,
  12292. bottom: 0.04
  12293. }
  12294. },
  12295. back: {
  12296. height: math.unit(6 + 5 / 12, "feet"),
  12297. weight: math.unit(160, "lb"),
  12298. name: "Back",
  12299. image: {
  12300. source: "./media/characters/xanthos/back.svg",
  12301. extra: 1,
  12302. bottom: 0.03
  12303. }
  12304. },
  12305. hand: {
  12306. height: math.unit(0.928, "feet"),
  12307. name: "Hand",
  12308. image: {
  12309. source: "./media/characters/xanthos/hand.svg"
  12310. }
  12311. },
  12312. foot: {
  12313. height: math.unit(1.286, "feet"),
  12314. name: "Foot",
  12315. image: {
  12316. source: "./media/characters/xanthos/foot.svg"
  12317. }
  12318. },
  12319. },
  12320. [
  12321. {
  12322. name: "Normal",
  12323. height: math.unit(6 + 5 / 12, "feet"),
  12324. default: true
  12325. },
  12326. {
  12327. name: "Normal+",
  12328. height: math.unit(6, "meters")
  12329. },
  12330. {
  12331. name: "Macro",
  12332. height: math.unit(40, "feet")
  12333. },
  12334. {
  12335. name: "Macro+",
  12336. height: math.unit(200, "meters")
  12337. },
  12338. {
  12339. name: "Megamacro",
  12340. height: math.unit(20, "km")
  12341. },
  12342. {
  12343. name: "Megamacro+",
  12344. height: math.unit(100, "km")
  12345. },
  12346. ]
  12347. ))
  12348. characterMakers.push(() => makeCharacter(
  12349. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12350. {
  12351. front: {
  12352. height: math.unit(6 + 3 / 12, "feet"),
  12353. weight: math.unit(215, "lb"),
  12354. name: "Front",
  12355. image: {
  12356. source: "./media/characters/grynn/front.svg",
  12357. extra: 4627 / 4209,
  12358. bottom: 0.047
  12359. }
  12360. },
  12361. },
  12362. [
  12363. {
  12364. name: "Micro",
  12365. height: math.unit(6, "inches")
  12366. },
  12367. {
  12368. name: "Normal",
  12369. height: math.unit(6 + 3 / 12, "feet"),
  12370. default: true
  12371. },
  12372. {
  12373. name: "Big",
  12374. height: math.unit(104, "feet")
  12375. },
  12376. {
  12377. name: "Macro",
  12378. height: math.unit(944, "feet")
  12379. },
  12380. {
  12381. name: "Macro+",
  12382. height: math.unit(9480, "feet")
  12383. },
  12384. {
  12385. name: "Megamacro",
  12386. height: math.unit(78752, "feet")
  12387. },
  12388. {
  12389. name: "Megamacro+",
  12390. height: math.unit(630128, "feet")
  12391. },
  12392. {
  12393. name: "Megamacro++",
  12394. height: math.unit(3150695, "feet")
  12395. },
  12396. ]
  12397. ))
  12398. characterMakers.push(() => makeCharacter(
  12399. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12400. {
  12401. front: {
  12402. height: math.unit(7 + 5 / 12, "feet"),
  12403. weight: math.unit(450, "lb"),
  12404. name: "Front",
  12405. image: {
  12406. source: "./media/characters/mocha-aura/front.svg",
  12407. extra: 1907 / 1817,
  12408. bottom: 0.04
  12409. }
  12410. },
  12411. back: {
  12412. height: math.unit(7 + 5 / 12, "feet"),
  12413. weight: math.unit(450, "lb"),
  12414. name: "Back",
  12415. image: {
  12416. source: "./media/characters/mocha-aura/back.svg",
  12417. extra: 1900 / 1825,
  12418. bottom: 0.045
  12419. }
  12420. },
  12421. },
  12422. [
  12423. {
  12424. name: "Nano",
  12425. height: math.unit(1, "nm")
  12426. },
  12427. {
  12428. name: "Megamicro",
  12429. height: math.unit(1, "mm")
  12430. },
  12431. {
  12432. name: "Micro",
  12433. height: math.unit(3, "inches")
  12434. },
  12435. {
  12436. name: "Normal",
  12437. height: math.unit(7 + 5 / 12, "feet"),
  12438. default: true
  12439. },
  12440. {
  12441. name: "Macro",
  12442. height: math.unit(30, "feet")
  12443. },
  12444. {
  12445. name: "Megamacro",
  12446. height: math.unit(3500, "feet")
  12447. },
  12448. {
  12449. name: "Teramacro",
  12450. height: math.unit(500000, "miles")
  12451. },
  12452. {
  12453. name: "Petamacro",
  12454. height: math.unit(50000000000000000, "parsecs")
  12455. },
  12456. ]
  12457. ))
  12458. characterMakers.push(() => makeCharacter(
  12459. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12460. {
  12461. front: {
  12462. height: math.unit(6, "feet"),
  12463. weight: math.unit(150, "lb"),
  12464. name: "Front",
  12465. image: {
  12466. source: "./media/characters/ilisha-devya/front.svg",
  12467. extra: 1,
  12468. bottom: 0.175
  12469. }
  12470. },
  12471. back: {
  12472. height: math.unit(6, "feet"),
  12473. weight: math.unit(150, "lb"),
  12474. name: "Back",
  12475. image: {
  12476. source: "./media/characters/ilisha-devya/back.svg",
  12477. extra: 1,
  12478. bottom: 0.015
  12479. }
  12480. },
  12481. },
  12482. [
  12483. {
  12484. name: "Macro",
  12485. height: math.unit(500, "feet"),
  12486. default: true
  12487. },
  12488. {
  12489. name: "Megamacro",
  12490. height: math.unit(10, "miles")
  12491. },
  12492. {
  12493. name: "Gigamacro",
  12494. height: math.unit(100000, "miles")
  12495. },
  12496. {
  12497. name: "Examacro",
  12498. height: math.unit(1e9, "lightyears")
  12499. },
  12500. {
  12501. name: "Omniversal",
  12502. height: math.unit(1e33, "lightyears")
  12503. },
  12504. {
  12505. name: "Beyond Infinite",
  12506. height: math.unit(1e100, "lightyears")
  12507. },
  12508. ]
  12509. ))
  12510. characterMakers.push(() => makeCharacter(
  12511. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12512. {
  12513. Side: {
  12514. height: math.unit(6, "feet"),
  12515. weight: math.unit(150, "lb"),
  12516. name: "Side",
  12517. image: {
  12518. source: "./media/characters/mira/side.svg",
  12519. extra: 900 / 799,
  12520. bottom: 0.02
  12521. }
  12522. },
  12523. },
  12524. [
  12525. {
  12526. name: "Human Size",
  12527. height: math.unit(6, "feet")
  12528. },
  12529. {
  12530. name: "Macro",
  12531. height: math.unit(100, "feet"),
  12532. default: true
  12533. },
  12534. {
  12535. name: "Megamacro",
  12536. height: math.unit(10, "miles")
  12537. },
  12538. {
  12539. name: "Gigamacro",
  12540. height: math.unit(25000, "miles")
  12541. },
  12542. {
  12543. name: "Teramacro",
  12544. height: math.unit(300, "AU")
  12545. },
  12546. {
  12547. name: "Full Size",
  12548. height: math.unit(4.5e10, "lightyears")
  12549. },
  12550. ]
  12551. ))
  12552. characterMakers.push(() => makeCharacter(
  12553. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12554. {
  12555. front: {
  12556. height: math.unit(6, "feet"),
  12557. weight: math.unit(150, "lb"),
  12558. name: "Front",
  12559. image: {
  12560. source: "./media/characters/holly/front.svg",
  12561. extra: 639 / 606
  12562. }
  12563. },
  12564. back: {
  12565. height: math.unit(6, "feet"),
  12566. weight: math.unit(150, "lb"),
  12567. name: "Back",
  12568. image: {
  12569. source: "./media/characters/holly/back.svg",
  12570. extra: 623 / 598
  12571. }
  12572. },
  12573. frontWorking: {
  12574. height: math.unit(6, "feet"),
  12575. weight: math.unit(150, "lb"),
  12576. name: "Front (Working)",
  12577. image: {
  12578. source: "./media/characters/holly/front-working.svg",
  12579. extra: 607 / 577,
  12580. bottom: 0.048
  12581. }
  12582. },
  12583. },
  12584. [
  12585. {
  12586. name: "Normal",
  12587. height: math.unit(12 + 3 / 12, "feet"),
  12588. default: true
  12589. },
  12590. ]
  12591. ))
  12592. characterMakers.push(() => makeCharacter(
  12593. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12594. {
  12595. front: {
  12596. height: math.unit(6, "feet"),
  12597. weight: math.unit(150, "lb"),
  12598. name: "Front",
  12599. image: {
  12600. source: "./media/characters/porter/front.svg",
  12601. extra: 1,
  12602. bottom: 0.01
  12603. }
  12604. },
  12605. frontRobes: {
  12606. height: math.unit(6, "feet"),
  12607. weight: math.unit(150, "lb"),
  12608. name: "Front (Robes)",
  12609. image: {
  12610. source: "./media/characters/porter/front-robes.svg",
  12611. extra: 1.01,
  12612. bottom: 0.01
  12613. }
  12614. },
  12615. },
  12616. [
  12617. {
  12618. name: "Normal",
  12619. height: math.unit(11 + 9 / 12, "feet"),
  12620. default: true
  12621. },
  12622. ]
  12623. ))
  12624. characterMakers.push(() => makeCharacter(
  12625. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12626. {
  12627. legendary: {
  12628. height: math.unit(6, "feet"),
  12629. weight: math.unit(150, "lb"),
  12630. name: "Legendary",
  12631. image: {
  12632. source: "./media/characters/lucy/legendary.svg",
  12633. extra: 1355 / 1100,
  12634. bottom: 0.045
  12635. }
  12636. },
  12637. },
  12638. [
  12639. {
  12640. name: "Legendary",
  12641. height: math.unit(86882 * 2, "miles"),
  12642. default: true
  12643. },
  12644. ]
  12645. ))
  12646. characterMakers.push(() => makeCharacter(
  12647. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12648. {
  12649. front: {
  12650. height: math.unit(6, "feet"),
  12651. weight: math.unit(150, "lb"),
  12652. name: "Front",
  12653. image: {
  12654. source: "./media/characters/drusilla/front.svg",
  12655. extra: 678 / 635,
  12656. bottom: 0.03
  12657. }
  12658. },
  12659. back: {
  12660. height: math.unit(6, "feet"),
  12661. weight: math.unit(150, "lb"),
  12662. name: "Back",
  12663. image: {
  12664. source: "./media/characters/drusilla/back.svg",
  12665. extra: 678 / 635,
  12666. bottom: 0.005
  12667. }
  12668. },
  12669. },
  12670. [
  12671. {
  12672. name: "Macro",
  12673. height: math.unit(100, "feet")
  12674. },
  12675. {
  12676. name: "Canon Height",
  12677. height: math.unit(2000, "feet"),
  12678. default: true
  12679. },
  12680. ]
  12681. ))
  12682. characterMakers.push(() => makeCharacter(
  12683. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12684. {
  12685. front: {
  12686. height: math.unit(6, "feet"),
  12687. weight: math.unit(180, "lb"),
  12688. name: "Front",
  12689. image: {
  12690. source: "./media/characters/renard-thatch/front.svg",
  12691. extra: 2411 / 2275,
  12692. bottom: 0.01
  12693. }
  12694. },
  12695. frontPosing: {
  12696. height: math.unit(6, "feet"),
  12697. weight: math.unit(180, "lb"),
  12698. name: "Front (Posing)",
  12699. image: {
  12700. source: "./media/characters/renard-thatch/front-posing.svg",
  12701. extra: 2381 / 2261,
  12702. bottom: 0.01
  12703. }
  12704. },
  12705. back: {
  12706. height: math.unit(6, "feet"),
  12707. weight: math.unit(180, "lb"),
  12708. name: "Back",
  12709. image: {
  12710. source: "./media/characters/renard-thatch/back.svg",
  12711. extra: 2428 / 2288
  12712. }
  12713. },
  12714. },
  12715. [
  12716. {
  12717. name: "Micro",
  12718. height: math.unit(3, "inches")
  12719. },
  12720. {
  12721. name: "Default",
  12722. height: math.unit(6, "feet"),
  12723. default: true
  12724. },
  12725. {
  12726. name: "Macro",
  12727. height: math.unit(75, "feet")
  12728. },
  12729. ]
  12730. ))
  12731. characterMakers.push(() => makeCharacter(
  12732. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12733. {
  12734. front: {
  12735. height: math.unit(1450, "feet"),
  12736. weight: math.unit(1.21e6, "tons"),
  12737. name: "Front",
  12738. image: {
  12739. source: "./media/characters/sekvra/front.svg",
  12740. extra: 1,
  12741. bottom: 0.03
  12742. }
  12743. },
  12744. frontClothed: {
  12745. height: math.unit(1450, "feet"),
  12746. weight: math.unit(1.21e6, "tons"),
  12747. name: "Front (Clothed)",
  12748. image: {
  12749. source: "./media/characters/sekvra/front-clothed.svg",
  12750. extra: 1,
  12751. bottom: 0.03
  12752. }
  12753. },
  12754. side: {
  12755. height: math.unit(1450, "feet"),
  12756. weight: math.unit(1.21e6, "tons"),
  12757. name: "Side",
  12758. image: {
  12759. source: "./media/characters/sekvra/side.svg",
  12760. extra: 1,
  12761. bottom: 0.025
  12762. }
  12763. },
  12764. back: {
  12765. height: math.unit(1450, "feet"),
  12766. weight: math.unit(1.21e6, "tons"),
  12767. name: "Back",
  12768. image: {
  12769. source: "./media/characters/sekvra/back.svg",
  12770. extra: 1,
  12771. bottom: 0.005
  12772. }
  12773. },
  12774. },
  12775. [
  12776. {
  12777. name: "Macro",
  12778. height: math.unit(1450, "feet"),
  12779. default: true
  12780. },
  12781. {
  12782. name: "Megamacro",
  12783. height: math.unit(15000, "feet")
  12784. },
  12785. ]
  12786. ))
  12787. characterMakers.push(() => makeCharacter(
  12788. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12789. {
  12790. front: {
  12791. height: math.unit(6, "feet"),
  12792. weight: math.unit(150, "lb"),
  12793. name: "Front",
  12794. image: {
  12795. source: "./media/characters/carmine/front.svg",
  12796. extra: 1,
  12797. bottom: 0.035
  12798. }
  12799. },
  12800. frontArmor: {
  12801. height: math.unit(6, "feet"),
  12802. weight: math.unit(150, "lb"),
  12803. name: "Front (Armor)",
  12804. image: {
  12805. source: "./media/characters/carmine/front-armor.svg",
  12806. extra: 1,
  12807. bottom: 0.035
  12808. }
  12809. },
  12810. },
  12811. [
  12812. {
  12813. name: "Large",
  12814. height: math.unit(1, "mile")
  12815. },
  12816. {
  12817. name: "Huge",
  12818. height: math.unit(40, "miles"),
  12819. default: true
  12820. },
  12821. {
  12822. name: "Colossal",
  12823. height: math.unit(2500, "miles")
  12824. },
  12825. ]
  12826. ))
  12827. characterMakers.push(() => makeCharacter(
  12828. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12829. {
  12830. front: {
  12831. height: math.unit(6, "feet"),
  12832. weight: math.unit(150, "lb"),
  12833. name: "Front",
  12834. image: {
  12835. source: "./media/characters/elyssia/front.svg",
  12836. extra: 2201 / 2035,
  12837. bottom: 0.05
  12838. }
  12839. },
  12840. frontClothed: {
  12841. height: math.unit(6, "feet"),
  12842. weight: math.unit(150, "lb"),
  12843. name: "Front (Clothed)",
  12844. image: {
  12845. source: "./media/characters/elyssia/front-clothed.svg",
  12846. extra: 2201 / 2035,
  12847. bottom: 0.05
  12848. }
  12849. },
  12850. back: {
  12851. height: math.unit(6, "feet"),
  12852. weight: math.unit(150, "lb"),
  12853. name: "Back",
  12854. image: {
  12855. source: "./media/characters/elyssia/back.svg",
  12856. extra: 2201 / 2035,
  12857. bottom: 0.013
  12858. }
  12859. },
  12860. },
  12861. [
  12862. {
  12863. name: "Smaller",
  12864. height: math.unit(150, "feet")
  12865. },
  12866. {
  12867. name: "Standard",
  12868. height: math.unit(1400, "feet"),
  12869. default: true
  12870. },
  12871. {
  12872. name: "Distracted",
  12873. height: math.unit(15000, "feet")
  12874. },
  12875. ]
  12876. ))
  12877. characterMakers.push(() => makeCharacter(
  12878. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12879. {
  12880. front: {
  12881. height: math.unit(7 + 4 / 12, "feet"),
  12882. weight: math.unit(500, "lb"),
  12883. name: "Front",
  12884. image: {
  12885. source: "./media/characters/geno-maxwell/front.svg",
  12886. extra: 2207 / 2040,
  12887. bottom: 0.015
  12888. }
  12889. },
  12890. },
  12891. [
  12892. {
  12893. name: "Micro",
  12894. height: math.unit(3, "inches")
  12895. },
  12896. {
  12897. name: "Normal",
  12898. height: math.unit(7 + 4 / 12, "feet"),
  12899. default: true
  12900. },
  12901. {
  12902. name: "Macro",
  12903. height: math.unit(220, "feet")
  12904. },
  12905. {
  12906. name: "Megamacro",
  12907. height: math.unit(11, "miles")
  12908. },
  12909. ]
  12910. ))
  12911. characterMakers.push(() => makeCharacter(
  12912. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12913. {
  12914. front: {
  12915. height: math.unit(7 + 4 / 12, "feet"),
  12916. weight: math.unit(500, "lb"),
  12917. name: "Front",
  12918. image: {
  12919. source: "./media/characters/regena-maxwell/front.svg",
  12920. extra: 3115 / 2770,
  12921. bottom: 0.02
  12922. }
  12923. },
  12924. },
  12925. [
  12926. {
  12927. name: "Normal",
  12928. height: math.unit(7 + 4 / 12, "feet"),
  12929. default: true
  12930. },
  12931. {
  12932. name: "Macro",
  12933. height: math.unit(220, "feet")
  12934. },
  12935. {
  12936. name: "Megamacro",
  12937. height: math.unit(11, "miles")
  12938. },
  12939. ]
  12940. ))
  12941. characterMakers.push(() => makeCharacter(
  12942. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12943. {
  12944. front: {
  12945. height: math.unit(6, "feet"),
  12946. weight: math.unit(150, "lb"),
  12947. name: "Front",
  12948. image: {
  12949. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12950. extra: 860 / 690,
  12951. bottom: 0.03
  12952. }
  12953. },
  12954. },
  12955. [
  12956. {
  12957. name: "Normal",
  12958. height: math.unit(1.7, "meters"),
  12959. default: true
  12960. },
  12961. ]
  12962. ))
  12963. characterMakers.push(() => makeCharacter(
  12964. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12965. {
  12966. front: {
  12967. height: math.unit(6, "feet"),
  12968. weight: math.unit(150, "lb"),
  12969. name: "Front",
  12970. image: {
  12971. source: "./media/characters/quilly/front.svg",
  12972. extra: 890 / 776
  12973. }
  12974. },
  12975. },
  12976. [
  12977. {
  12978. name: "Gigamacro",
  12979. height: math.unit(404090, "miles"),
  12980. default: true
  12981. },
  12982. ]
  12983. ))
  12984. characterMakers.push(() => makeCharacter(
  12985. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12986. {
  12987. front: {
  12988. height: math.unit(7 + 8 / 12, "feet"),
  12989. weight: math.unit(350, "lb"),
  12990. name: "Front",
  12991. image: {
  12992. source: "./media/characters/tempest/front.svg",
  12993. extra: 1175 / 1086,
  12994. bottom: 0.02
  12995. }
  12996. },
  12997. },
  12998. [
  12999. {
  13000. name: "Normal",
  13001. height: math.unit(7 + 8 / 12, "feet"),
  13002. default: true
  13003. },
  13004. ]
  13005. ))
  13006. characterMakers.push(() => makeCharacter(
  13007. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13008. {
  13009. side: {
  13010. height: math.unit(4 + 5 / 12, "feet"),
  13011. weight: math.unit(80, "lb"),
  13012. name: "Side",
  13013. image: {
  13014. source: "./media/characters/rodger/side.svg",
  13015. extra: 1235 / 1118
  13016. }
  13017. },
  13018. },
  13019. [
  13020. {
  13021. name: "Micro",
  13022. height: math.unit(1, "inch")
  13023. },
  13024. {
  13025. name: "Normal",
  13026. height: math.unit(4 + 5 / 12, "feet"),
  13027. default: true
  13028. },
  13029. {
  13030. name: "Macro",
  13031. height: math.unit(120, "feet")
  13032. },
  13033. ]
  13034. ))
  13035. characterMakers.push(() => makeCharacter(
  13036. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13037. {
  13038. front: {
  13039. height: math.unit(6, "feet"),
  13040. weight: math.unit(150, "lb"),
  13041. name: "Front",
  13042. image: {
  13043. source: "./media/characters/danyel/front.svg",
  13044. extra: 1185 / 1123,
  13045. bottom: 0.05
  13046. }
  13047. },
  13048. },
  13049. [
  13050. {
  13051. name: "Shrunken",
  13052. height: math.unit(0.5, "mm")
  13053. },
  13054. {
  13055. name: "Micro",
  13056. height: math.unit(1, "mm"),
  13057. default: true
  13058. },
  13059. {
  13060. name: "Upsized",
  13061. height: math.unit(5 + 5 / 12, "feet")
  13062. },
  13063. ]
  13064. ))
  13065. characterMakers.push(() => makeCharacter(
  13066. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13067. {
  13068. front: {
  13069. height: math.unit(5 + 6 / 12, "feet"),
  13070. weight: math.unit(200, "lb"),
  13071. name: "Front",
  13072. image: {
  13073. source: "./media/characters/vivian-bijoux/front.svg",
  13074. extra: 1,
  13075. bottom: 0.072
  13076. }
  13077. },
  13078. },
  13079. [
  13080. {
  13081. name: "Normal",
  13082. height: math.unit(5 + 6 / 12, "feet"),
  13083. default: true
  13084. },
  13085. {
  13086. name: "Bad Dream",
  13087. height: math.unit(500, "feet")
  13088. },
  13089. {
  13090. name: "Nightmare",
  13091. height: math.unit(500, "miles")
  13092. },
  13093. ]
  13094. ))
  13095. characterMakers.push(() => makeCharacter(
  13096. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13097. {
  13098. front: {
  13099. height: math.unit(6 + 1 / 12, "feet"),
  13100. weight: math.unit(260, "lb"),
  13101. name: "Front",
  13102. image: {
  13103. source: "./media/characters/zeta/front.svg",
  13104. extra: 1968 / 1889,
  13105. bottom: 0.06
  13106. }
  13107. },
  13108. back: {
  13109. height: math.unit(6 + 1 / 12, "feet"),
  13110. weight: math.unit(260, "lb"),
  13111. name: "Back",
  13112. image: {
  13113. source: "./media/characters/zeta/back.svg",
  13114. extra: 1944 / 1858,
  13115. bottom: 0.03
  13116. }
  13117. },
  13118. hand: {
  13119. height: math.unit(1.112, "feet"),
  13120. name: "Hand",
  13121. image: {
  13122. source: "./media/characters/zeta/hand.svg"
  13123. }
  13124. },
  13125. foot: {
  13126. height: math.unit(1.48, "feet"),
  13127. name: "Foot",
  13128. image: {
  13129. source: "./media/characters/zeta/foot.svg"
  13130. }
  13131. },
  13132. },
  13133. [
  13134. {
  13135. name: "Micro",
  13136. height: math.unit(6, "inches")
  13137. },
  13138. {
  13139. name: "Normal",
  13140. height: math.unit(6 + 1 / 12, "feet"),
  13141. default: true
  13142. },
  13143. {
  13144. name: "Macro",
  13145. height: math.unit(20, "feet")
  13146. },
  13147. ]
  13148. ))
  13149. characterMakers.push(() => makeCharacter(
  13150. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13151. {
  13152. front: {
  13153. height: math.unit(6, "feet"),
  13154. weight: math.unit(150, "lb"),
  13155. name: "Front",
  13156. image: {
  13157. source: "./media/characters/jamie-larsen/front.svg",
  13158. extra: 962 / 933,
  13159. bottom: 0.02
  13160. }
  13161. },
  13162. back: {
  13163. height: math.unit(6, "feet"),
  13164. weight: math.unit(150, "lb"),
  13165. name: "Back",
  13166. image: {
  13167. source: "./media/characters/jamie-larsen/back.svg",
  13168. extra: 997 / 946
  13169. }
  13170. },
  13171. },
  13172. [
  13173. {
  13174. name: "Macro",
  13175. height: math.unit(28 + 7 / 12, "feet"),
  13176. default: true
  13177. },
  13178. {
  13179. name: "Macro+",
  13180. height: math.unit(180, "feet")
  13181. },
  13182. {
  13183. name: "Megamacro",
  13184. height: math.unit(10, "miles")
  13185. },
  13186. {
  13187. name: "Gigamacro",
  13188. height: math.unit(200000, "miles")
  13189. },
  13190. ]
  13191. ))
  13192. characterMakers.push(() => makeCharacter(
  13193. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13194. {
  13195. front: {
  13196. height: math.unit(6, "feet"),
  13197. weight: math.unit(120, "lb"),
  13198. name: "Front",
  13199. image: {
  13200. source: "./media/characters/vance/front.svg",
  13201. extra: 1980 / 1890,
  13202. bottom: 0.09
  13203. }
  13204. },
  13205. back: {
  13206. height: math.unit(6, "feet"),
  13207. weight: math.unit(120, "lb"),
  13208. name: "Back",
  13209. image: {
  13210. source: "./media/characters/vance/back.svg",
  13211. extra: 2081 / 1994,
  13212. bottom: 0.014
  13213. }
  13214. },
  13215. hand: {
  13216. height: math.unit(0.88, "feet"),
  13217. name: "Hand",
  13218. image: {
  13219. source: "./media/characters/vance/hand.svg"
  13220. }
  13221. },
  13222. foot: {
  13223. height: math.unit(0.64, "feet"),
  13224. name: "Foot",
  13225. image: {
  13226. source: "./media/characters/vance/foot.svg"
  13227. }
  13228. },
  13229. },
  13230. [
  13231. {
  13232. name: "Small",
  13233. height: math.unit(90, "feet"),
  13234. default: true
  13235. },
  13236. {
  13237. name: "Macro",
  13238. height: math.unit(100, "meters")
  13239. },
  13240. {
  13241. name: "Megamacro",
  13242. height: math.unit(15, "miles")
  13243. },
  13244. ]
  13245. ))
  13246. characterMakers.push(() => makeCharacter(
  13247. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13248. {
  13249. front: {
  13250. height: math.unit(6, "feet"),
  13251. weight: math.unit(180, "lb"),
  13252. name: "Front",
  13253. image: {
  13254. source: "./media/characters/xochitl/front.svg",
  13255. extra: 2297 / 2261,
  13256. bottom: 0.065
  13257. }
  13258. },
  13259. back: {
  13260. height: math.unit(6, "feet"),
  13261. weight: math.unit(180, "lb"),
  13262. name: "Back",
  13263. image: {
  13264. source: "./media/characters/xochitl/back.svg",
  13265. extra: 2386 / 2354,
  13266. bottom: 0.01
  13267. }
  13268. },
  13269. foot: {
  13270. height: math.unit(6 / 5 * 1.15, "feet"),
  13271. weight: math.unit(150, "lb"),
  13272. name: "Foot",
  13273. image: {
  13274. source: "./media/characters/xochitl/foot.svg"
  13275. }
  13276. },
  13277. },
  13278. [
  13279. {
  13280. name: "Macro",
  13281. height: math.unit(80, "feet")
  13282. },
  13283. {
  13284. name: "Macro+",
  13285. height: math.unit(400, "feet"),
  13286. default: true
  13287. },
  13288. {
  13289. name: "Gigamacro",
  13290. height: math.unit(80000, "miles")
  13291. },
  13292. {
  13293. name: "Gigamacro+",
  13294. height: math.unit(400000, "miles")
  13295. },
  13296. {
  13297. name: "Teramacro",
  13298. height: math.unit(300, "AU")
  13299. },
  13300. ]
  13301. ))
  13302. characterMakers.push(() => makeCharacter(
  13303. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13304. {
  13305. front: {
  13306. height: math.unit(6, "feet"),
  13307. weight: math.unit(150, "lb"),
  13308. name: "Front",
  13309. image: {
  13310. source: "./media/characters/vincent/front.svg",
  13311. extra: 1130 / 1080,
  13312. bottom: 0.055
  13313. }
  13314. },
  13315. beak: {
  13316. height: math.unit(6 * 0.1, "feet"),
  13317. name: "Beak",
  13318. image: {
  13319. source: "./media/characters/vincent/beak.svg"
  13320. }
  13321. },
  13322. hand: {
  13323. height: math.unit(6 * 0.85, "feet"),
  13324. weight: math.unit(150, "lb"),
  13325. name: "Hand",
  13326. image: {
  13327. source: "./media/characters/vincent/hand.svg"
  13328. }
  13329. },
  13330. foot: {
  13331. height: math.unit(6 * 0.19, "feet"),
  13332. weight: math.unit(150, "lb"),
  13333. name: "Foot",
  13334. image: {
  13335. source: "./media/characters/vincent/foot.svg"
  13336. }
  13337. },
  13338. },
  13339. [
  13340. {
  13341. name: "Base",
  13342. height: math.unit(6 + 5 / 12, "feet"),
  13343. default: true
  13344. },
  13345. {
  13346. name: "Macro",
  13347. height: math.unit(300, "feet")
  13348. },
  13349. {
  13350. name: "Megamacro",
  13351. height: math.unit(2, "miles")
  13352. },
  13353. {
  13354. name: "Gigamacro",
  13355. height: math.unit(1000, "miles")
  13356. },
  13357. ]
  13358. ))
  13359. characterMakers.push(() => makeCharacter(
  13360. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13361. {
  13362. front: {
  13363. height: math.unit(6 + 2 / 12, "feet"),
  13364. weight: math.unit(265, "lb"),
  13365. name: "Front",
  13366. image: {
  13367. source: "./media/characters/jay/front.svg",
  13368. extra: 1510 / 1430,
  13369. bottom: 0.042
  13370. }
  13371. },
  13372. back: {
  13373. height: math.unit(6 + 2 / 12, "feet"),
  13374. weight: math.unit(265, "lb"),
  13375. name: "Back",
  13376. image: {
  13377. source: "./media/characters/jay/back.svg",
  13378. extra: 1510 / 1430,
  13379. bottom: 0.025
  13380. }
  13381. },
  13382. clothed: {
  13383. height: math.unit(6 + 2 / 12, "feet"),
  13384. weight: math.unit(265, "lb"),
  13385. name: "Front (Clothed)",
  13386. image: {
  13387. source: "./media/characters/jay/clothed.svg",
  13388. extra: 744 / 699,
  13389. bottom: 0.043
  13390. }
  13391. },
  13392. head: {
  13393. height: math.unit(1.772, "feet"),
  13394. name: "Head",
  13395. image: {
  13396. source: "./media/characters/jay/head.svg"
  13397. }
  13398. },
  13399. sizeRay: {
  13400. height: math.unit(1.331, "feet"),
  13401. name: "Size Ray",
  13402. image: {
  13403. source: "./media/characters/jay/size-ray.svg"
  13404. }
  13405. },
  13406. },
  13407. [
  13408. {
  13409. name: "Micro",
  13410. height: math.unit(1, "inch")
  13411. },
  13412. {
  13413. name: "Normal",
  13414. height: math.unit(6 + 2 / 12, "feet"),
  13415. default: true
  13416. },
  13417. {
  13418. name: "Macro",
  13419. height: math.unit(1, "mile")
  13420. },
  13421. {
  13422. name: "Megamacro",
  13423. height: math.unit(100, "miles")
  13424. },
  13425. ]
  13426. ))
  13427. characterMakers.push(() => makeCharacter(
  13428. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13429. {
  13430. front: {
  13431. height: math.unit(2, "meters"),
  13432. weight: math.unit(500, "kg"),
  13433. name: "Front",
  13434. image: {
  13435. source: "./media/characters/coatl/front.svg",
  13436. extra: 3948 / 3500,
  13437. bottom: 0.082
  13438. }
  13439. },
  13440. },
  13441. [
  13442. {
  13443. name: "Normal",
  13444. height: math.unit(4, "meters")
  13445. },
  13446. {
  13447. name: "Macro",
  13448. height: math.unit(100, "meters"),
  13449. default: true
  13450. },
  13451. {
  13452. name: "Macro+",
  13453. height: math.unit(300, "meters")
  13454. },
  13455. {
  13456. name: "Megamacro",
  13457. height: math.unit(3, "gigameters")
  13458. },
  13459. {
  13460. name: "Megamacro+",
  13461. height: math.unit(300, "terameters")
  13462. },
  13463. {
  13464. name: "Megamacro++",
  13465. height: math.unit(3, "lightyears")
  13466. },
  13467. ]
  13468. ))
  13469. characterMakers.push(() => makeCharacter(
  13470. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13471. {
  13472. front: {
  13473. height: math.unit(6, "feet"),
  13474. weight: math.unit(50, "kg"),
  13475. name: "front",
  13476. image: {
  13477. source: "./media/characters/shiroryu/front.svg",
  13478. extra: 1990 / 1935
  13479. }
  13480. },
  13481. },
  13482. [
  13483. {
  13484. name: "Mortal Mingling",
  13485. height: math.unit(3, "meters")
  13486. },
  13487. {
  13488. name: "Kaiju-ish",
  13489. height: math.unit(250, "meters")
  13490. },
  13491. {
  13492. name: "Somewhat Godly",
  13493. height: math.unit(400, "km"),
  13494. default: true
  13495. },
  13496. {
  13497. name: "Planetary",
  13498. height: math.unit(300, "megameters")
  13499. },
  13500. {
  13501. name: "Galaxy-dwarfing",
  13502. height: math.unit(450, "kiloparsecs")
  13503. },
  13504. {
  13505. name: "Universe Eater",
  13506. height: math.unit(150, "gigaparsecs")
  13507. },
  13508. {
  13509. name: "Almost Immeasurable",
  13510. height: math.unit(1.3e266, "yottaparsecs")
  13511. },
  13512. ]
  13513. ))
  13514. characterMakers.push(() => makeCharacter(
  13515. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13516. {
  13517. front: {
  13518. height: math.unit(6, "feet"),
  13519. weight: math.unit(150, "lb"),
  13520. name: "Front",
  13521. image: {
  13522. source: "./media/characters/umeko/front.svg",
  13523. extra: 1,
  13524. bottom: 0.019
  13525. }
  13526. },
  13527. frontArmored: {
  13528. height: math.unit(6, "feet"),
  13529. weight: math.unit(150, "lb"),
  13530. name: "Front (Armored)",
  13531. image: {
  13532. source: "./media/characters/umeko/front-armored.svg",
  13533. extra: 1,
  13534. bottom: 0.021
  13535. }
  13536. },
  13537. },
  13538. [
  13539. {
  13540. name: "Macro",
  13541. height: math.unit(220, "feet"),
  13542. default: true
  13543. },
  13544. {
  13545. name: "Guardian Dragon",
  13546. height: math.unit(50, "miles")
  13547. },
  13548. {
  13549. name: "Cosmic",
  13550. height: math.unit(800000, "miles")
  13551. },
  13552. ]
  13553. ))
  13554. characterMakers.push(() => makeCharacter(
  13555. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13556. {
  13557. front: {
  13558. height: math.unit(6, "feet"),
  13559. weight: math.unit(150, "lb"),
  13560. name: "Front",
  13561. image: {
  13562. source: "./media/characters/cassidy/front.svg",
  13563. extra: 1,
  13564. bottom: 0.043
  13565. }
  13566. },
  13567. },
  13568. [
  13569. {
  13570. name: "Canon Height",
  13571. height: math.unit(120, "feet"),
  13572. default: true
  13573. },
  13574. {
  13575. name: "Macro+",
  13576. height: math.unit(400, "feet")
  13577. },
  13578. {
  13579. name: "Macro++",
  13580. height: math.unit(4000, "feet")
  13581. },
  13582. {
  13583. name: "Megamacro",
  13584. height: math.unit(3, "miles")
  13585. },
  13586. ]
  13587. ))
  13588. characterMakers.push(() => makeCharacter(
  13589. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13590. {
  13591. front: {
  13592. height: math.unit(6, "feet"),
  13593. weight: math.unit(150, "lb"),
  13594. name: "Front",
  13595. image: {
  13596. source: "./media/characters/isaac/front.svg",
  13597. extra: 896 / 815,
  13598. bottom: 0.11
  13599. }
  13600. },
  13601. },
  13602. [
  13603. {
  13604. name: "Human Size",
  13605. height: math.unit(8, "feet"),
  13606. default: true
  13607. },
  13608. {
  13609. name: "Macro",
  13610. height: math.unit(400, "feet")
  13611. },
  13612. {
  13613. name: "Megamacro",
  13614. height: math.unit(50, "miles")
  13615. },
  13616. {
  13617. name: "Canon Height",
  13618. height: math.unit(200, "AU")
  13619. },
  13620. ]
  13621. ))
  13622. characterMakers.push(() => makeCharacter(
  13623. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13624. {
  13625. front: {
  13626. height: math.unit(6, "feet"),
  13627. weight: math.unit(72, "kg"),
  13628. name: "Front",
  13629. image: {
  13630. source: "./media/characters/sleekit/front.svg",
  13631. extra: 4693 / 4487,
  13632. bottom: 0.012
  13633. }
  13634. },
  13635. },
  13636. [
  13637. {
  13638. name: "Minimum Height",
  13639. height: math.unit(10, "meters")
  13640. },
  13641. {
  13642. name: "Smaller",
  13643. height: math.unit(25, "meters")
  13644. },
  13645. {
  13646. name: "Larger",
  13647. height: math.unit(38, "meters"),
  13648. default: true
  13649. },
  13650. {
  13651. name: "Maximum height",
  13652. height: math.unit(100, "meters")
  13653. },
  13654. ]
  13655. ))
  13656. characterMakers.push(() => makeCharacter(
  13657. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13658. {
  13659. front: {
  13660. height: math.unit(6, "feet"),
  13661. weight: math.unit(150, "lb"),
  13662. name: "Front",
  13663. image: {
  13664. source: "./media/characters/nillia/front.svg",
  13665. extra: 2195 / 2037,
  13666. bottom: 0.005
  13667. }
  13668. },
  13669. back: {
  13670. height: math.unit(6, "feet"),
  13671. weight: math.unit(150, "lb"),
  13672. name: "Back",
  13673. image: {
  13674. source: "./media/characters/nillia/back.svg",
  13675. extra: 2195 / 2037,
  13676. bottom: 0.005
  13677. }
  13678. },
  13679. },
  13680. [
  13681. {
  13682. name: "Canon Height",
  13683. height: math.unit(489, "feet"),
  13684. default: true
  13685. }
  13686. ]
  13687. ))
  13688. characterMakers.push(() => makeCharacter(
  13689. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13690. {
  13691. front: {
  13692. height: math.unit(6, "feet"),
  13693. weight: math.unit(150, "lb"),
  13694. name: "Front",
  13695. image: {
  13696. source: "./media/characters/mesmyriza/front.svg",
  13697. extra: 2067 / 1784,
  13698. bottom: 0.035
  13699. }
  13700. },
  13701. foot: {
  13702. height: math.unit(6 / (250 / 35), "feet"),
  13703. name: "Foot",
  13704. image: {
  13705. source: "./media/characters/mesmyriza/foot.svg"
  13706. }
  13707. },
  13708. },
  13709. [
  13710. {
  13711. name: "Macro",
  13712. height: math.unit(457, "meters"),
  13713. default: true
  13714. },
  13715. {
  13716. name: "Megamacro",
  13717. height: math.unit(8, "megameters")
  13718. },
  13719. ]
  13720. ))
  13721. characterMakers.push(() => makeCharacter(
  13722. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13723. {
  13724. front: {
  13725. height: math.unit(6, "feet"),
  13726. weight: math.unit(250, "lb"),
  13727. name: "Front",
  13728. image: {
  13729. source: "./media/characters/saudade/front.svg",
  13730. extra: 1172 / 1139,
  13731. bottom: 0.035
  13732. }
  13733. },
  13734. },
  13735. [
  13736. {
  13737. name: "Micro",
  13738. height: math.unit(3, "inches")
  13739. },
  13740. {
  13741. name: "Normal",
  13742. height: math.unit(6, "feet"),
  13743. default: true
  13744. },
  13745. {
  13746. name: "Macro",
  13747. height: math.unit(50, "feet")
  13748. },
  13749. {
  13750. name: "Megamacro",
  13751. height: math.unit(2800, "feet")
  13752. },
  13753. ]
  13754. ))
  13755. characterMakers.push(() => makeCharacter(
  13756. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13757. {
  13758. front: {
  13759. height: math.unit(5 + 4 / 12, "feet"),
  13760. weight: math.unit(100, "lb"),
  13761. name: "Front",
  13762. image: {
  13763. source: "./media/characters/keireer/front.svg",
  13764. extra: 716 / 666,
  13765. bottom: 0.05
  13766. }
  13767. },
  13768. },
  13769. [
  13770. {
  13771. name: "Normal",
  13772. height: math.unit(5 + 4 / 12, "feet"),
  13773. default: true
  13774. },
  13775. ]
  13776. ))
  13777. characterMakers.push(() => makeCharacter(
  13778. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13779. {
  13780. front: {
  13781. height: math.unit(6, "feet"),
  13782. weight: math.unit(90, "kg"),
  13783. name: "Front",
  13784. image: {
  13785. source: "./media/characters/mirja/front.svg",
  13786. extra: 1789 / 1683,
  13787. bottom: 0.05
  13788. }
  13789. },
  13790. frontDressed: {
  13791. height: math.unit(6, "feet"),
  13792. weight: math.unit(90, "lb"),
  13793. name: "Front (Dressed)",
  13794. image: {
  13795. source: "./media/characters/mirja/front-dressed.svg",
  13796. extra: 1789 / 1683,
  13797. bottom: 0.05
  13798. }
  13799. },
  13800. back: {
  13801. height: math.unit(6, "feet"),
  13802. weight: math.unit(90, "lb"),
  13803. name: "Back",
  13804. image: {
  13805. source: "./media/characters/mirja/back.svg",
  13806. extra: 953 / 917,
  13807. bottom: 0.017
  13808. }
  13809. },
  13810. },
  13811. [
  13812. {
  13813. name: "\"Incognito\"",
  13814. height: math.unit(3, "meters")
  13815. },
  13816. {
  13817. name: "Strolling Size",
  13818. height: math.unit(15, "km")
  13819. },
  13820. {
  13821. name: "Larger Strolling Size",
  13822. height: math.unit(400, "km")
  13823. },
  13824. {
  13825. name: "Preferred Size",
  13826. height: math.unit(5000, "km")
  13827. },
  13828. {
  13829. name: "True Size",
  13830. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13831. default: true
  13832. },
  13833. ]
  13834. ))
  13835. characterMakers.push(() => makeCharacter(
  13836. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13837. {
  13838. front: {
  13839. height: math.unit(15, "feet"),
  13840. weight: math.unit(880, "kg"),
  13841. name: "Front",
  13842. image: {
  13843. source: "./media/characters/nightraver/front.svg",
  13844. extra: 2444 / 2160,
  13845. bottom: 0.027
  13846. }
  13847. },
  13848. back: {
  13849. height: math.unit(15, "feet"),
  13850. weight: math.unit(880, "kg"),
  13851. name: "Back",
  13852. image: {
  13853. source: "./media/characters/nightraver/back.svg",
  13854. extra: 2309 / 2180,
  13855. bottom: 0.005
  13856. }
  13857. },
  13858. sole: {
  13859. height: math.unit(2.878, "feet"),
  13860. name: "Sole",
  13861. image: {
  13862. source: "./media/characters/nightraver/sole.svg"
  13863. }
  13864. },
  13865. foot: {
  13866. height: math.unit(2.285, "feet"),
  13867. name: "Foot",
  13868. image: {
  13869. source: "./media/characters/nightraver/foot.svg"
  13870. }
  13871. },
  13872. maw: {
  13873. height: math.unit(2.67, "feet"),
  13874. name: "Maw",
  13875. image: {
  13876. source: "./media/characters/nightraver/maw.svg"
  13877. }
  13878. },
  13879. },
  13880. [
  13881. {
  13882. name: "Micro",
  13883. height: math.unit(1, "cm")
  13884. },
  13885. {
  13886. name: "Normal",
  13887. height: math.unit(15, "feet"),
  13888. default: true
  13889. },
  13890. {
  13891. name: "Macro",
  13892. height: math.unit(300, "feet")
  13893. },
  13894. {
  13895. name: "Megamacro",
  13896. height: math.unit(300, "miles")
  13897. },
  13898. {
  13899. name: "Gigamacro",
  13900. height: math.unit(10000, "miles")
  13901. },
  13902. ]
  13903. ))
  13904. characterMakers.push(() => makeCharacter(
  13905. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13906. {
  13907. side: {
  13908. height: math.unit(2, "inches"),
  13909. weight: math.unit(5, "grams"),
  13910. name: "Side",
  13911. image: {
  13912. source: "./media/characters/arc/side.svg"
  13913. }
  13914. },
  13915. },
  13916. [
  13917. {
  13918. name: "Micro",
  13919. height: math.unit(2, "inches"),
  13920. default: true
  13921. },
  13922. ]
  13923. ))
  13924. characterMakers.push(() => makeCharacter(
  13925. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13926. {
  13927. front: {
  13928. height: math.unit(1.1938, "meters"),
  13929. weight: math.unit(54, "kg"),
  13930. name: "Front",
  13931. image: {
  13932. source: "./media/characters/nebula-shahar/front.svg",
  13933. extra: 1642 / 1436,
  13934. bottom: 0.06
  13935. }
  13936. },
  13937. },
  13938. [
  13939. {
  13940. name: "Megamicro",
  13941. height: math.unit(0.3, "mm")
  13942. },
  13943. {
  13944. name: "Micro",
  13945. height: math.unit(3, "cm")
  13946. },
  13947. {
  13948. name: "Normal",
  13949. height: math.unit(138, "cm"),
  13950. default: true
  13951. },
  13952. {
  13953. name: "Macro",
  13954. height: math.unit(30, "m")
  13955. },
  13956. ]
  13957. ))
  13958. characterMakers.push(() => makeCharacter(
  13959. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13960. {
  13961. front: {
  13962. height: math.unit(5.24, "feet"),
  13963. weight: math.unit(150, "lb"),
  13964. name: "Front",
  13965. image: {
  13966. source: "./media/characters/shayla/front.svg",
  13967. extra: 1512 / 1414,
  13968. bottom: 0.01
  13969. }
  13970. },
  13971. back: {
  13972. height: math.unit(5.24, "feet"),
  13973. weight: math.unit(150, "lb"),
  13974. name: "Back",
  13975. image: {
  13976. source: "./media/characters/shayla/back.svg",
  13977. extra: 1512 / 1414
  13978. }
  13979. },
  13980. hand: {
  13981. height: math.unit(0.7781496062992126, "feet"),
  13982. name: "Hand",
  13983. image: {
  13984. source: "./media/characters/shayla/hand.svg"
  13985. }
  13986. },
  13987. foot: {
  13988. height: math.unit(1.4206036745406823, "feet"),
  13989. name: "Foot",
  13990. image: {
  13991. source: "./media/characters/shayla/foot.svg"
  13992. }
  13993. },
  13994. },
  13995. [
  13996. {
  13997. name: "Micro",
  13998. height: math.unit(0.32, "feet")
  13999. },
  14000. {
  14001. name: "Normal",
  14002. height: math.unit(5.24, "feet"),
  14003. default: true
  14004. },
  14005. {
  14006. name: "Macro",
  14007. height: math.unit(492.12, "feet")
  14008. },
  14009. {
  14010. name: "Megamacro",
  14011. height: math.unit(186.41, "miles")
  14012. },
  14013. ]
  14014. ))
  14015. characterMakers.push(() => makeCharacter(
  14016. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14017. {
  14018. front: {
  14019. height: math.unit(2.2, "m"),
  14020. weight: math.unit(120, "kg"),
  14021. name: "Front",
  14022. image: {
  14023. source: "./media/characters/pia-jr/front.svg",
  14024. extra: 1000 / 970,
  14025. bottom: 0.035
  14026. }
  14027. },
  14028. hand: {
  14029. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14030. name: "Hand",
  14031. image: {
  14032. source: "./media/characters/pia-jr/hand.svg"
  14033. }
  14034. },
  14035. paw: {
  14036. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14037. name: "Paw",
  14038. image: {
  14039. source: "./media/characters/pia-jr/paw.svg"
  14040. }
  14041. },
  14042. },
  14043. [
  14044. {
  14045. name: "Micro",
  14046. height: math.unit(1.2, "cm")
  14047. },
  14048. {
  14049. name: "Normal",
  14050. height: math.unit(2.2, "m"),
  14051. default: true
  14052. },
  14053. {
  14054. name: "Macro",
  14055. height: math.unit(180, "m")
  14056. },
  14057. {
  14058. name: "Megamacro",
  14059. height: math.unit(420, "km")
  14060. },
  14061. ]
  14062. ))
  14063. characterMakers.push(() => makeCharacter(
  14064. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14065. {
  14066. front: {
  14067. height: math.unit(2, "m"),
  14068. weight: math.unit(115, "kg"),
  14069. name: "Front",
  14070. image: {
  14071. source: "./media/characters/pia-sr/front.svg",
  14072. extra: 760 / 730,
  14073. bottom: 0.015
  14074. }
  14075. },
  14076. back: {
  14077. height: math.unit(2, "m"),
  14078. weight: math.unit(115, "kg"),
  14079. name: "Back",
  14080. image: {
  14081. source: "./media/characters/pia-sr/back.svg",
  14082. extra: 760 / 730,
  14083. bottom: 0.01
  14084. }
  14085. },
  14086. hand: {
  14087. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14088. name: "Hand",
  14089. image: {
  14090. source: "./media/characters/pia-sr/hand.svg"
  14091. }
  14092. },
  14093. foot: {
  14094. height: math.unit(1.83, "feet"),
  14095. name: "Foot",
  14096. image: {
  14097. source: "./media/characters/pia-sr/foot.svg"
  14098. }
  14099. },
  14100. },
  14101. [
  14102. {
  14103. name: "Micro",
  14104. height: math.unit(88, "mm")
  14105. },
  14106. {
  14107. name: "Normal",
  14108. height: math.unit(2, "m"),
  14109. default: true
  14110. },
  14111. {
  14112. name: "Macro",
  14113. height: math.unit(200, "m")
  14114. },
  14115. {
  14116. name: "Megamacro",
  14117. height: math.unit(420, "km")
  14118. },
  14119. ]
  14120. ))
  14121. characterMakers.push(() => makeCharacter(
  14122. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14123. {
  14124. front: {
  14125. height: math.unit(8 + 2 / 12, "feet"),
  14126. weight: math.unit(300, "lb"),
  14127. name: "Front",
  14128. image: {
  14129. source: "./media/characters/kibibyte/front.svg",
  14130. extra: 2221 / 2098,
  14131. bottom: 0.04
  14132. }
  14133. },
  14134. },
  14135. [
  14136. {
  14137. name: "Normal",
  14138. height: math.unit(8 + 2 / 12, "feet"),
  14139. default: true
  14140. },
  14141. {
  14142. name: "Socialable Macro",
  14143. height: math.unit(50, "feet")
  14144. },
  14145. {
  14146. name: "Macro",
  14147. height: math.unit(300, "feet")
  14148. },
  14149. {
  14150. name: "Megamacro",
  14151. height: math.unit(500, "miles")
  14152. },
  14153. ]
  14154. ))
  14155. characterMakers.push(() => makeCharacter(
  14156. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14157. {
  14158. front: {
  14159. height: math.unit(6, "feet"),
  14160. weight: math.unit(150, "lb"),
  14161. name: "Front",
  14162. image: {
  14163. source: "./media/characters/felix/front.svg",
  14164. extra: 762 / 722,
  14165. bottom: 0.02
  14166. }
  14167. },
  14168. frontClothed: {
  14169. height: math.unit(6, "feet"),
  14170. weight: math.unit(150, "lb"),
  14171. name: "Front (Clothed)",
  14172. image: {
  14173. source: "./media/characters/felix/front-clothed.svg",
  14174. extra: 762 / 722,
  14175. bottom: 0.02
  14176. }
  14177. },
  14178. },
  14179. [
  14180. {
  14181. name: "Normal",
  14182. height: math.unit(6 + 8 / 12, "feet"),
  14183. default: true
  14184. },
  14185. {
  14186. name: "Macro",
  14187. height: math.unit(2600, "feet")
  14188. },
  14189. {
  14190. name: "Megamacro",
  14191. height: math.unit(450, "miles")
  14192. },
  14193. ]
  14194. ))
  14195. characterMakers.push(() => makeCharacter(
  14196. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14197. {
  14198. front: {
  14199. height: math.unit(6 + 1 / 12, "feet"),
  14200. weight: math.unit(250, "lb"),
  14201. name: "Front",
  14202. image: {
  14203. source: "./media/characters/tobo/front.svg",
  14204. extra: 608 / 586,
  14205. bottom: 0.023
  14206. }
  14207. },
  14208. back: {
  14209. height: math.unit(6 + 1 / 12, "feet"),
  14210. weight: math.unit(250, "lb"),
  14211. name: "Back",
  14212. image: {
  14213. source: "./media/characters/tobo/back.svg",
  14214. extra: 608 / 586
  14215. }
  14216. },
  14217. },
  14218. [
  14219. {
  14220. name: "Nano",
  14221. height: math.unit(2, "nm")
  14222. },
  14223. {
  14224. name: "Megamicro",
  14225. height: math.unit(0.1, "mm")
  14226. },
  14227. {
  14228. name: "Micro",
  14229. height: math.unit(1, "inch"),
  14230. default: true
  14231. },
  14232. {
  14233. name: "Human-sized",
  14234. height: math.unit(6 + 1 / 12, "feet")
  14235. },
  14236. {
  14237. name: "Macro",
  14238. height: math.unit(250, "feet")
  14239. },
  14240. {
  14241. name: "Megamacro",
  14242. height: math.unit(75, "miles")
  14243. },
  14244. {
  14245. name: "Texas-sized",
  14246. height: math.unit(750, "miles")
  14247. },
  14248. {
  14249. name: "Teramacro",
  14250. height: math.unit(50000, "miles")
  14251. },
  14252. ]
  14253. ))
  14254. characterMakers.push(() => makeCharacter(
  14255. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14256. {
  14257. front: {
  14258. height: math.unit(6, "feet"),
  14259. weight: math.unit(269, "lb"),
  14260. name: "Front",
  14261. image: {
  14262. source: "./media/characters/danny-kapowsky/front.svg",
  14263. extra: 766 / 736,
  14264. bottom: 0.044
  14265. }
  14266. },
  14267. back: {
  14268. height: math.unit(6, "feet"),
  14269. weight: math.unit(269, "lb"),
  14270. name: "Back",
  14271. image: {
  14272. source: "./media/characters/danny-kapowsky/back.svg",
  14273. extra: 797 / 760,
  14274. bottom: 0.025
  14275. }
  14276. },
  14277. },
  14278. [
  14279. {
  14280. name: "Macro",
  14281. height: math.unit(150, "feet"),
  14282. default: true
  14283. },
  14284. {
  14285. name: "Macro+",
  14286. height: math.unit(200, "feet")
  14287. },
  14288. {
  14289. name: "Macro++",
  14290. height: math.unit(300, "feet")
  14291. },
  14292. {
  14293. name: "Macro+++",
  14294. height: math.unit(400, "feet")
  14295. },
  14296. ]
  14297. ))
  14298. characterMakers.push(() => makeCharacter(
  14299. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14300. {
  14301. side: {
  14302. height: math.unit(6, "feet"),
  14303. weight: math.unit(170, "lb"),
  14304. name: "Side",
  14305. image: {
  14306. source: "./media/characters/finn/side.svg",
  14307. extra: 1953 / 1807,
  14308. bottom: 0.057
  14309. }
  14310. },
  14311. },
  14312. [
  14313. {
  14314. name: "Megamacro",
  14315. height: math.unit(14445, "feet"),
  14316. default: true
  14317. },
  14318. ]
  14319. ))
  14320. characterMakers.push(() => makeCharacter(
  14321. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14322. {
  14323. front: {
  14324. height: math.unit(5 + 6 / 12, "feet"),
  14325. weight: math.unit(125, "lb"),
  14326. name: "Front",
  14327. image: {
  14328. source: "./media/characters/roy/front.svg",
  14329. extra: 1,
  14330. bottom: 0.11
  14331. }
  14332. },
  14333. },
  14334. [
  14335. {
  14336. name: "Micro",
  14337. height: math.unit(3, "inches"),
  14338. default: true
  14339. },
  14340. {
  14341. name: "Normal",
  14342. height: math.unit(5 + 6 / 12, "feet")
  14343. },
  14344. {
  14345. name: "Lesser Macro",
  14346. height: math.unit(60, "feet")
  14347. },
  14348. {
  14349. name: "Greater Macro",
  14350. height: math.unit(120, "feet")
  14351. },
  14352. ]
  14353. ))
  14354. characterMakers.push(() => makeCharacter(
  14355. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14356. {
  14357. front: {
  14358. height: math.unit(6, "feet"),
  14359. weight: math.unit(100, "lb"),
  14360. name: "Front",
  14361. image: {
  14362. source: "./media/characters/aevsivs/front.svg",
  14363. extra: 1,
  14364. bottom: 0.03
  14365. }
  14366. },
  14367. back: {
  14368. height: math.unit(6, "feet"),
  14369. weight: math.unit(100, "lb"),
  14370. name: "Back",
  14371. image: {
  14372. source: "./media/characters/aevsivs/back.svg"
  14373. }
  14374. },
  14375. },
  14376. [
  14377. {
  14378. name: "Micro",
  14379. height: math.unit(2, "inches"),
  14380. default: true
  14381. },
  14382. {
  14383. name: "Normal",
  14384. height: math.unit(5, "feet")
  14385. },
  14386. ]
  14387. ))
  14388. characterMakers.push(() => makeCharacter(
  14389. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14390. {
  14391. front: {
  14392. height: math.unit(5 + 7 / 12, "feet"),
  14393. weight: math.unit(159, "lb"),
  14394. name: "Front",
  14395. image: {
  14396. source: "./media/characters/hildegard/front.svg",
  14397. extra: 289 / 269,
  14398. bottom: 7.63 / 297.8
  14399. }
  14400. },
  14401. back: {
  14402. height: math.unit(5 + 7 / 12, "feet"),
  14403. weight: math.unit(159, "lb"),
  14404. name: "Back",
  14405. image: {
  14406. source: "./media/characters/hildegard/back.svg",
  14407. extra: 280 / 260,
  14408. bottom: 2.3 / 282
  14409. }
  14410. },
  14411. },
  14412. [
  14413. {
  14414. name: "Normal",
  14415. height: math.unit(5 + 7 / 12, "feet"),
  14416. default: true
  14417. },
  14418. ]
  14419. ))
  14420. characterMakers.push(() => makeCharacter(
  14421. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14422. {
  14423. bernard: {
  14424. height: math.unit(2 + 7 / 12, "feet"),
  14425. weight: math.unit(66, "lb"),
  14426. name: "Bernard",
  14427. rename: true,
  14428. image: {
  14429. source: "./media/characters/bernard-wilder/bernard.svg",
  14430. extra: 192 / 128,
  14431. bottom: 0.05
  14432. }
  14433. },
  14434. wilder: {
  14435. height: math.unit(5 + 8 / 12, "feet"),
  14436. weight: math.unit(143, "lb"),
  14437. name: "Wilder",
  14438. rename: true,
  14439. image: {
  14440. source: "./media/characters/bernard-wilder/wilder.svg",
  14441. extra: 361 / 312,
  14442. bottom: 0.02
  14443. }
  14444. },
  14445. },
  14446. [
  14447. {
  14448. name: "Normal",
  14449. height: math.unit(2 + 7 / 12, "feet"),
  14450. default: true
  14451. },
  14452. ]
  14453. ))
  14454. characterMakers.push(() => makeCharacter(
  14455. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14456. {
  14457. anthro: {
  14458. height: math.unit(6 + 1 / 12, "feet"),
  14459. weight: math.unit(155, "lb"),
  14460. name: "Anthro",
  14461. image: {
  14462. source: "./media/characters/hearth/anthro.svg",
  14463. extra: 260 / 250,
  14464. bottom: 0.02
  14465. }
  14466. },
  14467. feral: {
  14468. height: math.unit(3.78, "feet"),
  14469. weight: math.unit(35, "kg"),
  14470. name: "Feral",
  14471. image: {
  14472. source: "./media/characters/hearth/feral.svg",
  14473. extra: 153 / 135,
  14474. bottom: 0.03
  14475. }
  14476. },
  14477. },
  14478. [
  14479. {
  14480. name: "Normal",
  14481. height: math.unit(6 + 1 / 12, "feet"),
  14482. default: true
  14483. },
  14484. ]
  14485. ))
  14486. characterMakers.push(() => makeCharacter(
  14487. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14488. {
  14489. front: {
  14490. height: math.unit(6, "feet"),
  14491. weight: math.unit(182, "lb"),
  14492. name: "Front",
  14493. image: {
  14494. source: "./media/characters/ingrid/front.svg",
  14495. extra: 294 / 268,
  14496. bottom: 0.027
  14497. }
  14498. },
  14499. },
  14500. [
  14501. {
  14502. name: "Normal",
  14503. height: math.unit(6, "feet"),
  14504. default: true
  14505. },
  14506. ]
  14507. ))
  14508. characterMakers.push(() => makeCharacter(
  14509. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14510. {
  14511. eevee: {
  14512. height: math.unit(2 + 10 / 12, "feet"),
  14513. weight: math.unit(86, "lb"),
  14514. name: "Malgam",
  14515. image: {
  14516. source: "./media/characters/malgam/eevee.svg",
  14517. extra: 218 / 180,
  14518. bottom: 0.2
  14519. }
  14520. },
  14521. sylveon: {
  14522. height: math.unit(4, "feet"),
  14523. weight: math.unit(101, "lb"),
  14524. name: "Future Malgam",
  14525. rename: true,
  14526. image: {
  14527. source: "./media/characters/malgam/sylveon.svg",
  14528. extra: 371 / 325,
  14529. bottom: 0.015
  14530. }
  14531. },
  14532. gigantamax: {
  14533. height: math.unit(50, "feet"),
  14534. name: "Gigantamax Malgam",
  14535. rename: true,
  14536. image: {
  14537. source: "./media/characters/malgam/gigantamax.svg"
  14538. }
  14539. },
  14540. },
  14541. [
  14542. {
  14543. name: "Normal",
  14544. height: math.unit(2 + 10 / 12, "feet"),
  14545. default: true
  14546. },
  14547. ]
  14548. ))
  14549. characterMakers.push(() => makeCharacter(
  14550. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14551. {
  14552. front: {
  14553. height: math.unit(5 + 11 / 12, "feet"),
  14554. weight: math.unit(188, "lb"),
  14555. name: "Front",
  14556. image: {
  14557. source: "./media/characters/fleur/front.svg",
  14558. extra: 309 / 283,
  14559. bottom: 0.007
  14560. }
  14561. },
  14562. },
  14563. [
  14564. {
  14565. name: "Normal",
  14566. height: math.unit(5 + 11 / 12, "feet"),
  14567. default: true
  14568. },
  14569. ]
  14570. ))
  14571. characterMakers.push(() => makeCharacter(
  14572. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14573. {
  14574. front: {
  14575. height: math.unit(5 + 4 / 12, "feet"),
  14576. weight: math.unit(122, "lb"),
  14577. name: "Front",
  14578. image: {
  14579. source: "./media/characters/jude/front.svg",
  14580. extra: 288 / 273,
  14581. bottom: 0.03
  14582. }
  14583. },
  14584. },
  14585. [
  14586. {
  14587. name: "Normal",
  14588. height: math.unit(5 + 4 / 12, "feet"),
  14589. default: true
  14590. },
  14591. ]
  14592. ))
  14593. characterMakers.push(() => makeCharacter(
  14594. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14595. {
  14596. front: {
  14597. height: math.unit(5 + 11 / 12, "feet"),
  14598. weight: math.unit(190, "lb"),
  14599. name: "Front",
  14600. image: {
  14601. source: "./media/characters/seara/front.svg",
  14602. extra: 1,
  14603. bottom: 0.05
  14604. }
  14605. },
  14606. },
  14607. [
  14608. {
  14609. name: "Normal",
  14610. height: math.unit(5 + 11 / 12, "feet"),
  14611. default: true
  14612. },
  14613. ]
  14614. ))
  14615. characterMakers.push(() => makeCharacter(
  14616. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14617. {
  14618. front: {
  14619. height: math.unit(16 + 5 / 12, "feet"),
  14620. weight: math.unit(524, "lb"),
  14621. name: "Front",
  14622. image: {
  14623. source: "./media/characters/caspian/front.svg",
  14624. extra: 1,
  14625. bottom: 0.04
  14626. }
  14627. },
  14628. },
  14629. [
  14630. {
  14631. name: "Normal",
  14632. height: math.unit(16 + 5 / 12, "feet"),
  14633. default: true
  14634. },
  14635. ]
  14636. ))
  14637. characterMakers.push(() => makeCharacter(
  14638. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14639. {
  14640. front: {
  14641. height: math.unit(5 + 7 / 12, "feet"),
  14642. weight: math.unit(170, "lb"),
  14643. name: "Front",
  14644. image: {
  14645. source: "./media/characters/mika/front.svg",
  14646. extra: 1,
  14647. bottom: 0.016
  14648. }
  14649. },
  14650. },
  14651. [
  14652. {
  14653. name: "Normal",
  14654. height: math.unit(5 + 7 / 12, "feet"),
  14655. default: true
  14656. },
  14657. ]
  14658. ))
  14659. characterMakers.push(() => makeCharacter(
  14660. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14661. {
  14662. front: {
  14663. height: math.unit(6 + 2 / 12, "feet"),
  14664. weight: math.unit(268, "lb"),
  14665. name: "Front",
  14666. image: {
  14667. source: "./media/characters/sol/front.svg",
  14668. extra: 247 / 231,
  14669. bottom: 0.05
  14670. }
  14671. },
  14672. },
  14673. [
  14674. {
  14675. name: "Normal",
  14676. height: math.unit(6 + 2 / 12, "feet"),
  14677. default: true
  14678. },
  14679. ]
  14680. ))
  14681. characterMakers.push(() => makeCharacter(
  14682. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14683. {
  14684. buizel: {
  14685. height: math.unit(2 + 5 / 12, "feet"),
  14686. weight: math.unit(87, "lb"),
  14687. name: "Buizel",
  14688. image: {
  14689. source: "./media/characters/umiko/buizel.svg",
  14690. extra: 172 / 157,
  14691. bottom: 0.01
  14692. }
  14693. },
  14694. floatzel: {
  14695. height: math.unit(5 + 9 / 12, "feet"),
  14696. weight: math.unit(250, "lb"),
  14697. name: "Floatzel",
  14698. image: {
  14699. source: "./media/characters/umiko/floatzel.svg",
  14700. extra: 262 / 248
  14701. }
  14702. },
  14703. },
  14704. [
  14705. {
  14706. name: "Normal",
  14707. height: math.unit(2 + 5 / 12, "feet"),
  14708. default: true
  14709. },
  14710. ]
  14711. ))
  14712. characterMakers.push(() => makeCharacter(
  14713. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14714. {
  14715. front: {
  14716. height: math.unit(6 + 2 / 12, "feet"),
  14717. weight: math.unit(146, "lb"),
  14718. name: "Front",
  14719. image: {
  14720. source: "./media/characters/iliac/front.svg",
  14721. extra: 389 / 365,
  14722. bottom: 0.035
  14723. }
  14724. },
  14725. },
  14726. [
  14727. {
  14728. name: "Normal",
  14729. height: math.unit(6 + 2 / 12, "feet"),
  14730. default: true
  14731. },
  14732. ]
  14733. ))
  14734. characterMakers.push(() => makeCharacter(
  14735. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14736. {
  14737. front: {
  14738. height: math.unit(6, "feet"),
  14739. weight: math.unit(170, "lb"),
  14740. name: "Front",
  14741. image: {
  14742. source: "./media/characters/topaz/front.svg",
  14743. extra: 317 / 303,
  14744. bottom: 0.055
  14745. }
  14746. },
  14747. },
  14748. [
  14749. {
  14750. name: "Normal",
  14751. height: math.unit(6, "feet"),
  14752. default: true
  14753. },
  14754. ]
  14755. ))
  14756. characterMakers.push(() => makeCharacter(
  14757. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14758. {
  14759. front: {
  14760. height: math.unit(5 + 11 / 12, "feet"),
  14761. weight: math.unit(144, "lb"),
  14762. name: "Front",
  14763. image: {
  14764. source: "./media/characters/gabriel/front.svg",
  14765. extra: 285 / 262,
  14766. bottom: 0.004
  14767. }
  14768. },
  14769. },
  14770. [
  14771. {
  14772. name: "Normal",
  14773. height: math.unit(5 + 11 / 12, "feet"),
  14774. default: true
  14775. },
  14776. ]
  14777. ))
  14778. characterMakers.push(() => makeCharacter(
  14779. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14780. {
  14781. side: {
  14782. height: math.unit(6 + 5 / 12, "feet"),
  14783. weight: math.unit(300, "lb"),
  14784. name: "Side",
  14785. image: {
  14786. source: "./media/characters/tempest-suicune/side.svg",
  14787. extra: 195 / 154,
  14788. bottom: 0.04
  14789. }
  14790. },
  14791. },
  14792. [
  14793. {
  14794. name: "Normal",
  14795. height: math.unit(6 + 5 / 12, "feet"),
  14796. default: true
  14797. },
  14798. ]
  14799. ))
  14800. characterMakers.push(() => makeCharacter(
  14801. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14802. {
  14803. front: {
  14804. height: math.unit(7 + 2 / 12, "feet"),
  14805. weight: math.unit(322, "lb"),
  14806. name: "Front",
  14807. image: {
  14808. source: "./media/characters/vulcan/front.svg",
  14809. extra: 154 / 147,
  14810. bottom: 0.04
  14811. }
  14812. },
  14813. },
  14814. [
  14815. {
  14816. name: "Normal",
  14817. height: math.unit(7 + 2 / 12, "feet"),
  14818. default: true
  14819. },
  14820. ]
  14821. ))
  14822. characterMakers.push(() => makeCharacter(
  14823. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14824. {
  14825. front: {
  14826. height: math.unit(5 + 10 / 12, "feet"),
  14827. weight: math.unit(264, "lb"),
  14828. name: "Front",
  14829. image: {
  14830. source: "./media/characters/gault/front.svg",
  14831. extra: 161 / 140,
  14832. bottom: 0.028
  14833. }
  14834. },
  14835. },
  14836. [
  14837. {
  14838. name: "Normal",
  14839. height: math.unit(5 + 10 / 12, "feet"),
  14840. default: true
  14841. },
  14842. ]
  14843. ))
  14844. characterMakers.push(() => makeCharacter(
  14845. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14846. {
  14847. front: {
  14848. height: math.unit(6, "feet"),
  14849. weight: math.unit(150, "lb"),
  14850. name: "Front",
  14851. image: {
  14852. source: "./media/characters/shard/front.svg",
  14853. extra: 273 / 238,
  14854. bottom: 0.02
  14855. }
  14856. },
  14857. },
  14858. [
  14859. {
  14860. name: "Normal",
  14861. height: math.unit(3 + 6 / 12, "feet"),
  14862. default: true
  14863. },
  14864. ]
  14865. ))
  14866. characterMakers.push(() => makeCharacter(
  14867. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14868. {
  14869. front: {
  14870. height: math.unit(5 + 11 / 12, "feet"),
  14871. weight: math.unit(146, "lb"),
  14872. name: "Front",
  14873. image: {
  14874. source: "./media/characters/ashe/front.svg",
  14875. extra: 400 / 373,
  14876. bottom: 0.01
  14877. }
  14878. },
  14879. },
  14880. [
  14881. {
  14882. name: "Normal",
  14883. height: math.unit(5 + 11 / 12, "feet"),
  14884. default: true
  14885. },
  14886. ]
  14887. ))
  14888. characterMakers.push(() => makeCharacter(
  14889. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14890. {
  14891. front: {
  14892. height: math.unit(5 + 5 / 12, "feet"),
  14893. weight: math.unit(135, "lb"),
  14894. name: "Front",
  14895. image: {
  14896. source: "./media/characters/beatrix/front.svg",
  14897. extra: 392 / 379,
  14898. bottom: 0.01
  14899. }
  14900. },
  14901. },
  14902. [
  14903. {
  14904. name: "Normal",
  14905. height: math.unit(6, "feet"),
  14906. default: true
  14907. },
  14908. ]
  14909. ))
  14910. characterMakers.push(() => makeCharacter(
  14911. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14912. {
  14913. front: {
  14914. height: math.unit(6, "feet"),
  14915. weight: math.unit(150, "lb"),
  14916. name: "Front",
  14917. image: {
  14918. source: "./media/characters/ignatius/front.svg",
  14919. extra: 245 / 222,
  14920. bottom: 0.01
  14921. }
  14922. },
  14923. },
  14924. [
  14925. {
  14926. name: "Normal",
  14927. height: math.unit(5 + 5 / 12, "feet"),
  14928. default: true
  14929. },
  14930. ]
  14931. ))
  14932. characterMakers.push(() => makeCharacter(
  14933. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14934. {
  14935. front: {
  14936. height: math.unit(6 + 2 / 12, "feet"),
  14937. weight: math.unit(138, "lb"),
  14938. name: "Front",
  14939. image: {
  14940. source: "./media/characters/mei-li/front.svg",
  14941. extra: 237 / 229,
  14942. bottom: 0.03
  14943. }
  14944. },
  14945. },
  14946. [
  14947. {
  14948. name: "Normal",
  14949. height: math.unit(6 + 2 / 12, "feet"),
  14950. default: true
  14951. },
  14952. ]
  14953. ))
  14954. characterMakers.push(() => makeCharacter(
  14955. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14956. {
  14957. front: {
  14958. height: math.unit(2 + 4 / 12, "feet"),
  14959. weight: math.unit(62, "lb"),
  14960. name: "Front",
  14961. image: {
  14962. source: "./media/characters/puru/front.svg",
  14963. extra: 206 / 149,
  14964. bottom: 0.06
  14965. }
  14966. },
  14967. },
  14968. [
  14969. {
  14970. name: "Normal",
  14971. height: math.unit(2 + 4 / 12, "feet"),
  14972. default: true
  14973. },
  14974. ]
  14975. ))
  14976. characterMakers.push(() => makeCharacter(
  14977. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14978. {
  14979. taur: {
  14980. height: math.unit(11, "feet"),
  14981. weight: math.unit(500, "lb"),
  14982. name: "Taur",
  14983. image: {
  14984. source: "./media/characters/kee/taur.svg",
  14985. extra: 1,
  14986. bottom: 0.04
  14987. }
  14988. },
  14989. },
  14990. [
  14991. {
  14992. name: "Normal",
  14993. height: math.unit(11, "feet"),
  14994. default: true
  14995. },
  14996. ]
  14997. ))
  14998. characterMakers.push(() => makeCharacter(
  14999. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15000. {
  15001. anthro: {
  15002. height: math.unit(7, "feet"),
  15003. weight: math.unit(190, "lb"),
  15004. name: "Anthro",
  15005. image: {
  15006. source: "./media/characters/cobalt-dracha/anthro.svg",
  15007. extra: 231 / 225,
  15008. bottom: 0.04
  15009. }
  15010. },
  15011. feral: {
  15012. height: math.unit(9 + 7 / 12, "feet"),
  15013. weight: math.unit(294, "lb"),
  15014. name: "Feral",
  15015. image: {
  15016. source: "./media/characters/cobalt-dracha/feral.svg",
  15017. extra: 692 / 633,
  15018. bottom: 0.05
  15019. }
  15020. },
  15021. },
  15022. [
  15023. {
  15024. name: "Normal",
  15025. height: math.unit(7, "feet"),
  15026. default: true
  15027. },
  15028. ]
  15029. ))
  15030. characterMakers.push(() => makeCharacter(
  15031. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15032. {
  15033. fallen: {
  15034. height: math.unit(11 + 8 / 12, "feet"),
  15035. weight: math.unit(485, "lb"),
  15036. name: "Java (Fallen)",
  15037. rename: true,
  15038. image: {
  15039. source: "./media/characters/java/fallen.svg",
  15040. extra: 226 / 208,
  15041. bottom: 0.005
  15042. }
  15043. },
  15044. godkin: {
  15045. height: math.unit(10 + 6 / 12, "feet"),
  15046. weight: math.unit(328, "lb"),
  15047. name: "Java (Godkin)",
  15048. rename: true,
  15049. image: {
  15050. source: "./media/characters/java/godkin.svg",
  15051. extra: 270 / 262,
  15052. bottom: 0.02
  15053. }
  15054. },
  15055. },
  15056. [
  15057. {
  15058. name: "Normal",
  15059. height: math.unit(11 + 8 / 12, "feet"),
  15060. default: true
  15061. },
  15062. ]
  15063. ))
  15064. characterMakers.push(() => makeCharacter(
  15065. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15066. {
  15067. front: {
  15068. height: math.unit(7 + 8 / 12, "feet"),
  15069. weight: math.unit(320, "lb"),
  15070. name: "Front",
  15071. image: {
  15072. source: "./media/characters/skoll/front.svg",
  15073. extra: 232 / 220,
  15074. bottom: 0.02
  15075. }
  15076. },
  15077. },
  15078. [
  15079. {
  15080. name: "Normal",
  15081. height: math.unit(7 + 8 / 12, "feet"),
  15082. default: true
  15083. },
  15084. ]
  15085. ))
  15086. characterMakers.push(() => makeCharacter(
  15087. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15088. {
  15089. front: {
  15090. height: math.unit(5 + 9 / 12, "feet"),
  15091. weight: math.unit(170, "lb"),
  15092. name: "Front",
  15093. image: {
  15094. source: "./media/characters/purna/front.svg",
  15095. extra: 239 / 229,
  15096. bottom: 0.01
  15097. }
  15098. },
  15099. },
  15100. [
  15101. {
  15102. name: "Normal",
  15103. height: math.unit(5 + 9 / 12, "feet"),
  15104. default: true
  15105. },
  15106. ]
  15107. ))
  15108. characterMakers.push(() => makeCharacter(
  15109. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15110. {
  15111. front: {
  15112. height: math.unit(5 + 9 / 12, "feet"),
  15113. weight: math.unit(142, "lb"),
  15114. name: "Front",
  15115. image: {
  15116. source: "./media/characters/kuva/front.svg",
  15117. extra: 281 / 271,
  15118. bottom: 0.006
  15119. }
  15120. },
  15121. },
  15122. [
  15123. {
  15124. name: "Normal",
  15125. height: math.unit(5 + 9 / 12, "feet"),
  15126. default: true
  15127. },
  15128. ]
  15129. ))
  15130. characterMakers.push(() => makeCharacter(
  15131. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15132. {
  15133. anthro: {
  15134. height: math.unit(9 + 2 / 12, "feet"),
  15135. weight: math.unit(270, "lb"),
  15136. name: "Anthro",
  15137. image: {
  15138. source: "./media/characters/embra/anthro.svg",
  15139. extra: 200 / 187,
  15140. bottom: 0.02
  15141. }
  15142. },
  15143. feral: {
  15144. height: math.unit(18 + 8 / 12, "feet"),
  15145. weight: math.unit(576, "lb"),
  15146. name: "Feral",
  15147. image: {
  15148. source: "./media/characters/embra/feral.svg",
  15149. extra: 152 / 137,
  15150. bottom: 0.037
  15151. }
  15152. },
  15153. },
  15154. [
  15155. {
  15156. name: "Normal",
  15157. height: math.unit(9 + 2 / 12, "feet"),
  15158. default: true
  15159. },
  15160. ]
  15161. ))
  15162. characterMakers.push(() => makeCharacter(
  15163. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15164. {
  15165. anthro: {
  15166. height: math.unit(10 + 9 / 12, "feet"),
  15167. weight: math.unit(224, "lb"),
  15168. name: "Anthro",
  15169. image: {
  15170. source: "./media/characters/grottos/anthro.svg",
  15171. extra: 350 / 332,
  15172. bottom: 0.045
  15173. }
  15174. },
  15175. feral: {
  15176. height: math.unit(20 + 7 / 12, "feet"),
  15177. weight: math.unit(629, "lb"),
  15178. name: "Feral",
  15179. image: {
  15180. source: "./media/characters/grottos/feral.svg",
  15181. extra: 207 / 190,
  15182. bottom: 0.05
  15183. }
  15184. },
  15185. },
  15186. [
  15187. {
  15188. name: "Normal",
  15189. height: math.unit(10 + 9 / 12, "feet"),
  15190. default: true
  15191. },
  15192. ]
  15193. ))
  15194. characterMakers.push(() => makeCharacter(
  15195. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15196. {
  15197. anthro: {
  15198. height: math.unit(9 + 6 / 12, "feet"),
  15199. weight: math.unit(298, "lb"),
  15200. name: "Anthro",
  15201. image: {
  15202. source: "./media/characters/frifna/anthro.svg",
  15203. extra: 282 / 269,
  15204. bottom: 0.015
  15205. }
  15206. },
  15207. feral: {
  15208. height: math.unit(16 + 2 / 12, "feet"),
  15209. weight: math.unit(624, "lb"),
  15210. name: "Feral",
  15211. image: {
  15212. source: "./media/characters/frifna/feral.svg"
  15213. }
  15214. },
  15215. },
  15216. [
  15217. {
  15218. name: "Normal",
  15219. height: math.unit(9 + 6 / 12, "feet"),
  15220. default: true
  15221. },
  15222. ]
  15223. ))
  15224. characterMakers.push(() => makeCharacter(
  15225. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15226. {
  15227. front: {
  15228. height: math.unit(6 + 2 / 12, "feet"),
  15229. weight: math.unit(168, "lb"),
  15230. name: "Front",
  15231. image: {
  15232. source: "./media/characters/elise/front.svg",
  15233. extra: 276 / 271
  15234. }
  15235. },
  15236. },
  15237. [
  15238. {
  15239. name: "Normal",
  15240. height: math.unit(6 + 2 / 12, "feet"),
  15241. default: true
  15242. },
  15243. ]
  15244. ))
  15245. characterMakers.push(() => makeCharacter(
  15246. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15247. {
  15248. front: {
  15249. height: math.unit(5 + 10 / 12, "feet"),
  15250. weight: math.unit(210, "lb"),
  15251. name: "Front",
  15252. image: {
  15253. source: "./media/characters/glade/front.svg",
  15254. extra: 258 / 247,
  15255. bottom: 0.008
  15256. }
  15257. },
  15258. },
  15259. [
  15260. {
  15261. name: "Normal",
  15262. height: math.unit(5 + 10 / 12, "feet"),
  15263. default: true
  15264. },
  15265. ]
  15266. ))
  15267. characterMakers.push(() => makeCharacter(
  15268. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15269. {
  15270. front: {
  15271. height: math.unit(5 + 10 / 12, "feet"),
  15272. weight: math.unit(129, "lb"),
  15273. name: "Front",
  15274. image: {
  15275. source: "./media/characters/rina/front.svg",
  15276. extra: 266 / 255,
  15277. bottom: 0.005
  15278. }
  15279. },
  15280. },
  15281. [
  15282. {
  15283. name: "Normal",
  15284. height: math.unit(5 + 10 / 12, "feet"),
  15285. default: true
  15286. },
  15287. ]
  15288. ))
  15289. characterMakers.push(() => makeCharacter(
  15290. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15291. {
  15292. front: {
  15293. height: math.unit(6 + 1 / 12, "feet"),
  15294. weight: math.unit(192, "lb"),
  15295. name: "Front",
  15296. image: {
  15297. source: "./media/characters/veronica/front.svg",
  15298. extra: 319 / 309,
  15299. bottom: 0.005
  15300. }
  15301. },
  15302. },
  15303. [
  15304. {
  15305. name: "Normal",
  15306. height: math.unit(6 + 1 / 12, "feet"),
  15307. default: true
  15308. },
  15309. ]
  15310. ))
  15311. characterMakers.push(() => makeCharacter(
  15312. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15313. {
  15314. front: {
  15315. height: math.unit(9 + 3 / 12, "feet"),
  15316. weight: math.unit(1100, "lb"),
  15317. name: "Front",
  15318. image: {
  15319. source: "./media/characters/braxton/front.svg",
  15320. extra: 1057 / 984,
  15321. bottom: 0.05
  15322. }
  15323. },
  15324. },
  15325. [
  15326. {
  15327. name: "Normal",
  15328. height: math.unit(9 + 3 / 12, "feet")
  15329. },
  15330. {
  15331. name: "Giant",
  15332. height: math.unit(300, "feet"),
  15333. default: true
  15334. },
  15335. {
  15336. name: "Macro",
  15337. height: math.unit(700, "feet")
  15338. },
  15339. {
  15340. name: "Megamacro",
  15341. height: math.unit(6000, "feet")
  15342. },
  15343. ]
  15344. ))
  15345. characterMakers.push(() => makeCharacter(
  15346. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15347. {
  15348. front: {
  15349. height: math.unit(6 + 7 / 12, "feet"),
  15350. weight: math.unit(150, "lb"),
  15351. name: "Front",
  15352. image: {
  15353. source: "./media/characters/blue-feyonics/front.svg",
  15354. extra: 1403 / 1306,
  15355. bottom: 0.047
  15356. }
  15357. },
  15358. },
  15359. [
  15360. {
  15361. name: "Normal",
  15362. height: math.unit(6 + 7 / 12, "feet"),
  15363. default: true
  15364. },
  15365. ]
  15366. ))
  15367. characterMakers.push(() => makeCharacter(
  15368. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15369. {
  15370. front: {
  15371. height: math.unit(1.8, "meters"),
  15372. weight: math.unit(60, "kg"),
  15373. name: "Front",
  15374. image: {
  15375. source: "./media/characters/maxwell/front.svg",
  15376. extra: 2060 / 1873
  15377. }
  15378. },
  15379. },
  15380. [
  15381. {
  15382. name: "Micro",
  15383. height: math.unit(1, "mm")
  15384. },
  15385. {
  15386. name: "Normal",
  15387. height: math.unit(1.8, "meter"),
  15388. default: true
  15389. },
  15390. {
  15391. name: "Macro",
  15392. height: math.unit(30, "meters")
  15393. },
  15394. {
  15395. name: "Megamacro",
  15396. height: math.unit(10, "km")
  15397. },
  15398. ]
  15399. ))
  15400. characterMakers.push(() => makeCharacter(
  15401. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15402. {
  15403. front: {
  15404. height: math.unit(6, "feet"),
  15405. weight: math.unit(150, "lb"),
  15406. name: "Front",
  15407. image: {
  15408. source: "./media/characters/jack/front.svg",
  15409. extra: 1754 / 1640,
  15410. bottom: 0.01
  15411. }
  15412. },
  15413. },
  15414. [
  15415. {
  15416. name: "Normal",
  15417. height: math.unit(80000, "feet"),
  15418. default: true
  15419. },
  15420. {
  15421. name: "Max size",
  15422. height: math.unit(10, "lightyears")
  15423. },
  15424. ]
  15425. ))
  15426. characterMakers.push(() => makeCharacter(
  15427. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15428. {
  15429. upright: {
  15430. height: math.unit(7, "feet"),
  15431. weight: math.unit(170, "lb"),
  15432. name: "Upright",
  15433. image: {
  15434. source: "./media/characters/cafat/upright.svg",
  15435. bottom: 0.01
  15436. }
  15437. },
  15438. uprightFull: {
  15439. height: math.unit(7, "feet"),
  15440. weight: math.unit(170, "lb"),
  15441. name: "Upright (Full)",
  15442. image: {
  15443. source: "./media/characters/cafat/upright-full.svg",
  15444. bottom: 0.01
  15445. }
  15446. },
  15447. side: {
  15448. height: math.unit(5, "feet"),
  15449. weight: math.unit(150, "lb"),
  15450. name: "Side",
  15451. image: {
  15452. source: "./media/characters/cafat/side.svg"
  15453. }
  15454. },
  15455. },
  15456. [
  15457. {
  15458. name: "Small",
  15459. height: math.unit(7, "feet"),
  15460. default: true
  15461. },
  15462. {
  15463. name: "Large",
  15464. height: math.unit(15.5, "feet")
  15465. },
  15466. ]
  15467. ))
  15468. characterMakers.push(() => makeCharacter(
  15469. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15470. {
  15471. front: {
  15472. height: math.unit(6, "feet"),
  15473. weight: math.unit(150, "lb"),
  15474. name: "Front",
  15475. image: {
  15476. source: "./media/characters/verin-raharra/front.svg",
  15477. extra: 5019 / 4835,
  15478. bottom: 0.023
  15479. }
  15480. },
  15481. },
  15482. [
  15483. {
  15484. name: "Normal",
  15485. height: math.unit(7 + 5 / 12, "feet"),
  15486. default: true
  15487. },
  15488. {
  15489. name: "Upsized",
  15490. height: math.unit(20, "feet")
  15491. },
  15492. ]
  15493. ))
  15494. characterMakers.push(() => makeCharacter(
  15495. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15496. {
  15497. front: {
  15498. height: math.unit(7, "feet"),
  15499. weight: math.unit(230, "lb"),
  15500. name: "Front",
  15501. image: {
  15502. source: "./media/characters/nakata/front.svg",
  15503. extra: 1.005,
  15504. bottom: 0.01
  15505. }
  15506. },
  15507. },
  15508. [
  15509. {
  15510. name: "Normal",
  15511. height: math.unit(7, "feet"),
  15512. default: true
  15513. },
  15514. {
  15515. name: "Big",
  15516. height: math.unit(14, "feet")
  15517. },
  15518. {
  15519. name: "Macro",
  15520. height: math.unit(400, "feet")
  15521. },
  15522. ]
  15523. ))
  15524. characterMakers.push(() => makeCharacter(
  15525. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15526. {
  15527. front: {
  15528. height: math.unit(4.91, "feet"),
  15529. weight: math.unit(100, "lb"),
  15530. name: "Front",
  15531. image: {
  15532. source: "./media/characters/lily/front.svg",
  15533. extra: 1585 / 1415,
  15534. bottom: 0.02
  15535. }
  15536. },
  15537. },
  15538. [
  15539. {
  15540. name: "Normal",
  15541. height: math.unit(4.91, "feet"),
  15542. default: true
  15543. },
  15544. ]
  15545. ))
  15546. characterMakers.push(() => makeCharacter(
  15547. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15548. {
  15549. laying: {
  15550. height: math.unit(4 + 4 / 12, "feet"),
  15551. weight: math.unit(600, "lb"),
  15552. name: "Laying",
  15553. image: {
  15554. source: "./media/characters/sheila/laying.svg",
  15555. extra: 1333 / 1265,
  15556. bottom: 0.16
  15557. }
  15558. },
  15559. },
  15560. [
  15561. {
  15562. name: "Normal",
  15563. height: math.unit(4 + 4 / 12, "feet"),
  15564. default: true
  15565. },
  15566. ]
  15567. ))
  15568. characterMakers.push(() => makeCharacter(
  15569. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15570. {
  15571. front: {
  15572. height: math.unit(6, "feet"),
  15573. weight: math.unit(190, "lb"),
  15574. name: "Front",
  15575. image: {
  15576. source: "./media/characters/sax/front.svg",
  15577. extra: 1187 / 973,
  15578. bottom: 0.042
  15579. }
  15580. },
  15581. },
  15582. [
  15583. {
  15584. name: "Micro",
  15585. height: math.unit(4, "inches"),
  15586. default: true
  15587. },
  15588. ]
  15589. ))
  15590. characterMakers.push(() => makeCharacter(
  15591. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15592. {
  15593. front: {
  15594. height: math.unit(6, "feet"),
  15595. weight: math.unit(150, "lb"),
  15596. name: "Front",
  15597. image: {
  15598. source: "./media/characters/pandora/front.svg",
  15599. extra: 2720 / 2556,
  15600. bottom: 0.015
  15601. }
  15602. },
  15603. back: {
  15604. height: math.unit(6, "feet"),
  15605. weight: math.unit(150, "lb"),
  15606. name: "Back",
  15607. image: {
  15608. source: "./media/characters/pandora/back.svg",
  15609. extra: 2720 / 2556,
  15610. bottom: 0.01
  15611. }
  15612. },
  15613. beans: {
  15614. height: math.unit(6 / 8, "feet"),
  15615. name: "Beans",
  15616. image: {
  15617. source: "./media/characters/pandora/beans.svg"
  15618. }
  15619. },
  15620. skirt: {
  15621. height: math.unit(6, "feet"),
  15622. weight: math.unit(150, "lb"),
  15623. name: "Skirt",
  15624. image: {
  15625. source: "./media/characters/pandora/skirt.svg",
  15626. extra: 1622 / 1525,
  15627. bottom: 0.015
  15628. }
  15629. },
  15630. hoodie: {
  15631. height: math.unit(6, "feet"),
  15632. weight: math.unit(150, "lb"),
  15633. name: "Hoodie",
  15634. image: {
  15635. source: "./media/characters/pandora/hoodie.svg",
  15636. extra: 1622 / 1525,
  15637. bottom: 0.015
  15638. }
  15639. },
  15640. casual: {
  15641. height: math.unit(6, "feet"),
  15642. weight: math.unit(150, "lb"),
  15643. name: "Casual",
  15644. image: {
  15645. source: "./media/characters/pandora/casual.svg",
  15646. extra: 1622 / 1525,
  15647. bottom: 0.015
  15648. }
  15649. },
  15650. },
  15651. [
  15652. {
  15653. name: "Normal",
  15654. height: math.unit(6, "feet")
  15655. },
  15656. {
  15657. name: "Big Steppy",
  15658. height: math.unit(1, "km"),
  15659. default: true
  15660. },
  15661. ]
  15662. ))
  15663. characterMakers.push(() => makeCharacter(
  15664. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15665. {
  15666. side: {
  15667. height: math.unit(10, "feet"),
  15668. weight: math.unit(800, "kg"),
  15669. name: "Side",
  15670. image: {
  15671. source: "./media/characters/venio-darcony/side.svg",
  15672. extra: 1373 / 1003,
  15673. bottom: 0.037
  15674. }
  15675. },
  15676. front: {
  15677. height: math.unit(19, "feet"),
  15678. weight: math.unit(800, "kg"),
  15679. name: "Front",
  15680. image: {
  15681. source: "./media/characters/venio-darcony/front.svg"
  15682. }
  15683. },
  15684. back: {
  15685. height: math.unit(19, "feet"),
  15686. weight: math.unit(800, "kg"),
  15687. name: "Back",
  15688. image: {
  15689. source: "./media/characters/venio-darcony/back.svg"
  15690. }
  15691. },
  15692. sideNsfw: {
  15693. height: math.unit(10, "feet"),
  15694. weight: math.unit(800, "kg"),
  15695. name: "Side (NSFW)",
  15696. image: {
  15697. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15698. extra: 1373 / 1003,
  15699. bottom: 0.037
  15700. }
  15701. },
  15702. frontNsfw: {
  15703. height: math.unit(19, "feet"),
  15704. weight: math.unit(800, "kg"),
  15705. name: "Front (NSFW)",
  15706. image: {
  15707. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15708. }
  15709. },
  15710. backNsfw: {
  15711. height: math.unit(19, "feet"),
  15712. weight: math.unit(800, "kg"),
  15713. name: "Back (NSFW)",
  15714. image: {
  15715. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15716. }
  15717. },
  15718. sideArmored: {
  15719. height: math.unit(10, "feet"),
  15720. weight: math.unit(800, "kg"),
  15721. name: "Side (Armored)",
  15722. image: {
  15723. source: "./media/characters/venio-darcony/side-armored.svg",
  15724. extra: 1373 / 1003,
  15725. bottom: 0.037
  15726. }
  15727. },
  15728. frontArmored: {
  15729. height: math.unit(19, "feet"),
  15730. weight: math.unit(900, "kg"),
  15731. name: "Front (Armored)",
  15732. image: {
  15733. source: "./media/characters/venio-darcony/front-armored.svg"
  15734. }
  15735. },
  15736. backArmored: {
  15737. height: math.unit(19, "feet"),
  15738. weight: math.unit(900, "kg"),
  15739. name: "Back (Armored)",
  15740. image: {
  15741. source: "./media/characters/venio-darcony/back-armored.svg"
  15742. }
  15743. },
  15744. sword: {
  15745. height: math.unit(10, "feet"),
  15746. weight: math.unit(50, "lb"),
  15747. name: "Sword",
  15748. image: {
  15749. source: "./media/characters/venio-darcony/sword.svg"
  15750. }
  15751. },
  15752. },
  15753. [
  15754. {
  15755. name: "Normal",
  15756. height: math.unit(10, "feet")
  15757. },
  15758. {
  15759. name: "Macro",
  15760. height: math.unit(130, "feet"),
  15761. default: true
  15762. },
  15763. {
  15764. name: "Macro+",
  15765. height: math.unit(240, "feet")
  15766. },
  15767. ]
  15768. ))
  15769. characterMakers.push(() => makeCharacter(
  15770. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15771. {
  15772. front: {
  15773. height: math.unit(6, "feet"),
  15774. weight: math.unit(150, "lb"),
  15775. name: "Front",
  15776. image: {
  15777. source: "./media/characters/veski/front.svg",
  15778. extra: 1299 / 1225,
  15779. bottom: 0.04
  15780. }
  15781. },
  15782. back: {
  15783. height: math.unit(6, "feet"),
  15784. weight: math.unit(150, "lb"),
  15785. name: "Back",
  15786. image: {
  15787. source: "./media/characters/veski/back.svg",
  15788. extra: 1299 / 1225,
  15789. bottom: 0.008
  15790. }
  15791. },
  15792. maw: {
  15793. height: math.unit(1.5 * 1.21, "feet"),
  15794. name: "Maw",
  15795. image: {
  15796. source: "./media/characters/veski/maw.svg"
  15797. }
  15798. },
  15799. },
  15800. [
  15801. {
  15802. name: "Macro",
  15803. height: math.unit(2, "km"),
  15804. default: true
  15805. },
  15806. ]
  15807. ))
  15808. characterMakers.push(() => makeCharacter(
  15809. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15810. {
  15811. front: {
  15812. height: math.unit(5 + 7 / 12, "feet"),
  15813. name: "Front",
  15814. image: {
  15815. source: "./media/characters/isabelle/front.svg",
  15816. extra: 2130 / 1976,
  15817. bottom: 0.05
  15818. }
  15819. },
  15820. },
  15821. [
  15822. {
  15823. name: "Supermicro",
  15824. height: math.unit(10, "micrometers")
  15825. },
  15826. {
  15827. name: "Micro",
  15828. height: math.unit(1, "inch")
  15829. },
  15830. {
  15831. name: "Tiny",
  15832. height: math.unit(5, "inches")
  15833. },
  15834. {
  15835. name: "Standard",
  15836. height: math.unit(5 + 7 / 12, "inches")
  15837. },
  15838. {
  15839. name: "Macro",
  15840. height: math.unit(80, "meters"),
  15841. default: true
  15842. },
  15843. {
  15844. name: "Megamacro",
  15845. height: math.unit(250, "meters")
  15846. },
  15847. {
  15848. name: "Gigamacro",
  15849. height: math.unit(5, "km")
  15850. },
  15851. {
  15852. name: "Cosmic",
  15853. height: math.unit(2.5e6, "miles")
  15854. },
  15855. ]
  15856. ))
  15857. characterMakers.push(() => makeCharacter(
  15858. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15859. {
  15860. front: {
  15861. height: math.unit(6, "feet"),
  15862. weight: math.unit(150, "lb"),
  15863. name: "Front",
  15864. image: {
  15865. source: "./media/characters/hanzo/front.svg",
  15866. extra: 374 / 344,
  15867. bottom: 0.02
  15868. }
  15869. },
  15870. },
  15871. [
  15872. {
  15873. name: "Normal",
  15874. height: math.unit(8, "feet"),
  15875. default: true
  15876. },
  15877. ]
  15878. ))
  15879. characterMakers.push(() => makeCharacter(
  15880. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15881. {
  15882. front: {
  15883. height: math.unit(7, "feet"),
  15884. weight: math.unit(130, "lb"),
  15885. name: "Front",
  15886. image: {
  15887. source: "./media/characters/anna/front.svg",
  15888. extra: 169 / 145,
  15889. bottom: 0.06
  15890. }
  15891. },
  15892. full: {
  15893. height: math.unit(4.96, "feet"),
  15894. weight: math.unit(220, "lb"),
  15895. name: "Full",
  15896. image: {
  15897. source: "./media/characters/anna/full.svg",
  15898. extra: 138 / 114,
  15899. bottom: 0.15
  15900. }
  15901. },
  15902. tongue: {
  15903. height: math.unit(2.53, "feet"),
  15904. name: "Tongue",
  15905. image: {
  15906. source: "./media/characters/anna/tongue.svg"
  15907. }
  15908. },
  15909. },
  15910. [
  15911. {
  15912. name: "Normal",
  15913. height: math.unit(7, "feet"),
  15914. default: true
  15915. },
  15916. ]
  15917. ))
  15918. characterMakers.push(() => makeCharacter(
  15919. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15920. {
  15921. front: {
  15922. height: math.unit(7, "feet"),
  15923. weight: math.unit(150, "lb"),
  15924. name: "Front",
  15925. image: {
  15926. source: "./media/characters/ian-corvid/front.svg",
  15927. extra: 150 / 142,
  15928. bottom: 0.02
  15929. }
  15930. },
  15931. back: {
  15932. height: math.unit(7, "feet"),
  15933. weight: math.unit(150, "lb"),
  15934. name: "Back",
  15935. image: {
  15936. source: "./media/characters/ian-corvid/back.svg",
  15937. extra: 150 / 143,
  15938. bottom: 0.01
  15939. }
  15940. },
  15941. stomping: {
  15942. height: math.unit(7, "feet"),
  15943. weight: math.unit(150, "lb"),
  15944. name: "Stomping",
  15945. image: {
  15946. source: "./media/characters/ian-corvid/stomping.svg",
  15947. extra: 76 / 72
  15948. }
  15949. },
  15950. sitting: {
  15951. height: math.unit(7 / 1.8, "feet"),
  15952. weight: math.unit(150, "lb"),
  15953. name: "Sitting",
  15954. image: {
  15955. source: "./media/characters/ian-corvid/sitting.svg",
  15956. extra: 1400 / 1269,
  15957. bottom: 0.15
  15958. }
  15959. },
  15960. },
  15961. [
  15962. {
  15963. name: "Tiny Microw",
  15964. height: math.unit(1, "inch")
  15965. },
  15966. {
  15967. name: "Microw",
  15968. height: math.unit(6, "inches")
  15969. },
  15970. {
  15971. name: "Crow",
  15972. height: math.unit(7 + 1 / 12, "feet"),
  15973. default: true
  15974. },
  15975. {
  15976. name: "Macrow",
  15977. height: math.unit(176, "feet")
  15978. },
  15979. ]
  15980. ))
  15981. characterMakers.push(() => makeCharacter(
  15982. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15983. {
  15984. front: {
  15985. height: math.unit(5 + 7 / 12, "feet"),
  15986. weight: math.unit(147, "lb"),
  15987. name: "Front",
  15988. image: {
  15989. source: "./media/characters/natalie-kellon/front.svg",
  15990. extra: 1214 / 1141,
  15991. bottom: 0.02
  15992. }
  15993. },
  15994. },
  15995. [
  15996. {
  15997. name: "Micro",
  15998. height: math.unit(1 / 16, "inch")
  15999. },
  16000. {
  16001. name: "Tiny",
  16002. height: math.unit(4, "inches")
  16003. },
  16004. {
  16005. name: "Normal",
  16006. height: math.unit(5 + 7 / 12, "feet"),
  16007. default: true
  16008. },
  16009. {
  16010. name: "Amazon",
  16011. height: math.unit(12, "feet")
  16012. },
  16013. {
  16014. name: "Giantess",
  16015. height: math.unit(160, "meters")
  16016. },
  16017. {
  16018. name: "Titaness",
  16019. height: math.unit(800, "meters")
  16020. },
  16021. ]
  16022. ))
  16023. characterMakers.push(() => makeCharacter(
  16024. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16025. {
  16026. front: {
  16027. height: math.unit(6, "feet"),
  16028. weight: math.unit(150, "lb"),
  16029. name: "Front",
  16030. image: {
  16031. source: "./media/characters/alluria/front.svg",
  16032. extra: 806 / 738,
  16033. bottom: 0.01
  16034. }
  16035. },
  16036. side: {
  16037. height: math.unit(6, "feet"),
  16038. weight: math.unit(150, "lb"),
  16039. name: "Side",
  16040. image: {
  16041. source: "./media/characters/alluria/side.svg",
  16042. extra: 800 / 750,
  16043. }
  16044. },
  16045. back: {
  16046. height: math.unit(6, "feet"),
  16047. weight: math.unit(150, "lb"),
  16048. name: "Back",
  16049. image: {
  16050. source: "./media/characters/alluria/back.svg",
  16051. extra: 806 / 738,
  16052. }
  16053. },
  16054. frontMaid: {
  16055. height: math.unit(6, "feet"),
  16056. weight: math.unit(150, "lb"),
  16057. name: "Front (Maid)",
  16058. image: {
  16059. source: "./media/characters/alluria/front-maid.svg",
  16060. extra: 806 / 738,
  16061. bottom: 0.01
  16062. }
  16063. },
  16064. sideMaid: {
  16065. height: math.unit(6, "feet"),
  16066. weight: math.unit(150, "lb"),
  16067. name: "Side (Maid)",
  16068. image: {
  16069. source: "./media/characters/alluria/side-maid.svg",
  16070. extra: 800 / 750,
  16071. bottom: 0.005
  16072. }
  16073. },
  16074. backMaid: {
  16075. height: math.unit(6, "feet"),
  16076. weight: math.unit(150, "lb"),
  16077. name: "Back (Maid)",
  16078. image: {
  16079. source: "./media/characters/alluria/back-maid.svg",
  16080. extra: 806 / 738,
  16081. }
  16082. },
  16083. },
  16084. [
  16085. {
  16086. name: "Micro",
  16087. height: math.unit(6, "inches"),
  16088. default: true
  16089. },
  16090. ]
  16091. ))
  16092. characterMakers.push(() => makeCharacter(
  16093. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16094. {
  16095. front: {
  16096. height: math.unit(6, "feet"),
  16097. weight: math.unit(150, "lb"),
  16098. name: "Front",
  16099. image: {
  16100. source: "./media/characters/kyle/front.svg",
  16101. extra: 1069 / 962,
  16102. bottom: 77.228 / 1727.45
  16103. }
  16104. },
  16105. },
  16106. [
  16107. {
  16108. name: "Macro",
  16109. height: math.unit(150, "feet"),
  16110. default: true
  16111. },
  16112. ]
  16113. ))
  16114. characterMakers.push(() => makeCharacter(
  16115. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16116. {
  16117. front: {
  16118. height: math.unit(6, "feet"),
  16119. weight: math.unit(300, "lb"),
  16120. name: "Front",
  16121. image: {
  16122. source: "./media/characters/duncan/front.svg",
  16123. extra: 1650 / 1482,
  16124. bottom: 0.05
  16125. }
  16126. },
  16127. },
  16128. [
  16129. {
  16130. name: "Macro",
  16131. height: math.unit(100, "feet"),
  16132. default: true
  16133. },
  16134. ]
  16135. ))
  16136. characterMakers.push(() => makeCharacter(
  16137. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16138. {
  16139. front: {
  16140. height: math.unit(5 + 4 / 12, "feet"),
  16141. weight: math.unit(220, "lb"),
  16142. name: "Front",
  16143. image: {
  16144. source: "./media/characters/memory/front.svg",
  16145. extra: 3641 / 3545,
  16146. bottom: 0.03
  16147. }
  16148. },
  16149. back: {
  16150. height: math.unit(5 + 4 / 12, "feet"),
  16151. weight: math.unit(220, "lb"),
  16152. name: "Back",
  16153. image: {
  16154. source: "./media/characters/memory/back.svg",
  16155. extra: 3641 / 3545,
  16156. bottom: 0.025
  16157. }
  16158. },
  16159. frontSkirt: {
  16160. height: math.unit(5 + 4 / 12, "feet"),
  16161. weight: math.unit(220, "lb"),
  16162. name: "Front (Skirt)",
  16163. image: {
  16164. source: "./media/characters/memory/front-skirt.svg",
  16165. extra: 3641 / 3545,
  16166. bottom: 0.03
  16167. }
  16168. },
  16169. frontDress: {
  16170. height: math.unit(5 + 4 / 12, "feet"),
  16171. weight: math.unit(220, "lb"),
  16172. name: "Front (Dress)",
  16173. image: {
  16174. source: "./media/characters/memory/front-dress.svg",
  16175. extra: 3641 / 3545,
  16176. bottom: 0.03
  16177. }
  16178. },
  16179. },
  16180. [
  16181. {
  16182. name: "Micro",
  16183. height: math.unit(6, "inches"),
  16184. default: true
  16185. },
  16186. {
  16187. name: "Normal",
  16188. height: math.unit(5 + 4 / 12, "feet")
  16189. },
  16190. ]
  16191. ))
  16192. characterMakers.push(() => makeCharacter(
  16193. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16194. {
  16195. front: {
  16196. height: math.unit(4 + 11 / 12, "feet"),
  16197. weight: math.unit(100, "lb"),
  16198. name: "Front",
  16199. image: {
  16200. source: "./media/characters/luno/front.svg",
  16201. extra: 1535 / 1487,
  16202. bottom: 0.03
  16203. }
  16204. },
  16205. },
  16206. [
  16207. {
  16208. name: "Micro",
  16209. height: math.unit(3, "inches")
  16210. },
  16211. {
  16212. name: "Normal",
  16213. height: math.unit(4 + 11 / 12, "feet"),
  16214. default: true
  16215. },
  16216. {
  16217. name: "Macro",
  16218. height: math.unit(300, "feet")
  16219. },
  16220. {
  16221. name: "Megamacro",
  16222. height: math.unit(700, "miles")
  16223. },
  16224. ]
  16225. ))
  16226. characterMakers.push(() => makeCharacter(
  16227. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16228. {
  16229. front: {
  16230. height: math.unit(6 + 2 / 12, "feet"),
  16231. weight: math.unit(170, "lb"),
  16232. name: "Front",
  16233. image: {
  16234. source: "./media/characters/jamesy/front.svg",
  16235. extra: 440 / 382,
  16236. bottom: 0.005
  16237. }
  16238. },
  16239. },
  16240. [
  16241. {
  16242. name: "Micro",
  16243. height: math.unit(3, "inches")
  16244. },
  16245. {
  16246. name: "Normal",
  16247. height: math.unit(6 + 2 / 12, "feet"),
  16248. default: true
  16249. },
  16250. {
  16251. name: "Macro",
  16252. height: math.unit(300, "feet")
  16253. },
  16254. {
  16255. name: "Megamacro",
  16256. height: math.unit(700, "miles")
  16257. },
  16258. ]
  16259. ))
  16260. characterMakers.push(() => makeCharacter(
  16261. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16262. {
  16263. front: {
  16264. height: math.unit(6, "feet"),
  16265. weight: math.unit(160, "lb"),
  16266. name: "Front",
  16267. image: {
  16268. source: "./media/characters/mark/front.svg",
  16269. extra: 3300 / 3100,
  16270. bottom: 136.42 / 3440.47
  16271. }
  16272. },
  16273. },
  16274. [
  16275. {
  16276. name: "Macro",
  16277. height: math.unit(120, "meters")
  16278. },
  16279. {
  16280. name: "Bigger Macro",
  16281. height: math.unit(350, "meters")
  16282. },
  16283. {
  16284. name: "Megamacro",
  16285. height: math.unit(8, "km"),
  16286. default: true
  16287. },
  16288. {
  16289. name: "Continental",
  16290. height: math.unit(4550, "km")
  16291. },
  16292. {
  16293. name: "Planetary",
  16294. height: math.unit(65000, "km")
  16295. },
  16296. ]
  16297. ))
  16298. characterMakers.push(() => makeCharacter(
  16299. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16300. {
  16301. front: {
  16302. height: math.unit(6, "feet"),
  16303. weight: math.unit(400, "lb"),
  16304. name: "Front",
  16305. image: {
  16306. source: "./media/characters/mac/front.svg",
  16307. extra: 1048 / 987.7,
  16308. bottom: 60 / 1107.6,
  16309. }
  16310. },
  16311. },
  16312. [
  16313. {
  16314. name: "Macro",
  16315. height: math.unit(500, "feet"),
  16316. default: true
  16317. },
  16318. ]
  16319. ))
  16320. characterMakers.push(() => makeCharacter(
  16321. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16322. {
  16323. front: {
  16324. height: math.unit(5 + 2 / 12, "feet"),
  16325. weight: math.unit(190, "lb"),
  16326. name: "Front",
  16327. image: {
  16328. source: "./media/characters/bari/front.svg",
  16329. extra: 3156 / 2880,
  16330. bottom: 0.03
  16331. }
  16332. },
  16333. back: {
  16334. height: math.unit(5 + 2 / 12, "feet"),
  16335. weight: math.unit(190, "lb"),
  16336. name: "Back",
  16337. image: {
  16338. source: "./media/characters/bari/back.svg",
  16339. extra: 3260 / 2834,
  16340. bottom: 0.025
  16341. }
  16342. },
  16343. frontPlush: {
  16344. height: math.unit(5 + 2 / 12, "feet"),
  16345. weight: math.unit(190, "lb"),
  16346. name: "Front (Plush)",
  16347. image: {
  16348. source: "./media/characters/bari/front-plush.svg",
  16349. extra: 1112 / 1061,
  16350. bottom: 0.002
  16351. }
  16352. },
  16353. },
  16354. [
  16355. {
  16356. name: "Micro",
  16357. height: math.unit(3, "inches")
  16358. },
  16359. {
  16360. name: "Normal",
  16361. height: math.unit(5 + 2 / 12, "feet"),
  16362. default: true
  16363. },
  16364. {
  16365. name: "Macro",
  16366. height: math.unit(20, "feet")
  16367. },
  16368. ]
  16369. ))
  16370. characterMakers.push(() => makeCharacter(
  16371. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16372. {
  16373. front: {
  16374. height: math.unit(6 + 1 / 12, "feet"),
  16375. weight: math.unit(275, "lb"),
  16376. name: "Front",
  16377. image: {
  16378. source: "./media/characters/hunter-misha-raven/front.svg"
  16379. }
  16380. },
  16381. },
  16382. [
  16383. {
  16384. name: "Mortal",
  16385. height: math.unit(6 + 1 / 12, "feet")
  16386. },
  16387. {
  16388. name: "Divine",
  16389. height: math.unit(1.12134e34, "parsecs"),
  16390. default: true
  16391. },
  16392. ]
  16393. ))
  16394. characterMakers.push(() => makeCharacter(
  16395. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16396. {
  16397. front: {
  16398. height: math.unit(6 + 3 / 12, "feet"),
  16399. weight: math.unit(220, "lb"),
  16400. name: "Front",
  16401. image: {
  16402. source: "./media/characters/max-calore/front.svg",
  16403. extra: 1700 / 1648,
  16404. bottom: 0.01
  16405. }
  16406. },
  16407. back: {
  16408. height: math.unit(6 + 3 / 12, "feet"),
  16409. weight: math.unit(220, "lb"),
  16410. name: "Back",
  16411. image: {
  16412. source: "./media/characters/max-calore/back.svg",
  16413. extra: 1700 / 1648,
  16414. bottom: 0.01
  16415. }
  16416. },
  16417. },
  16418. [
  16419. {
  16420. name: "Normal",
  16421. height: math.unit(6 + 3 / 12, "feet"),
  16422. default: true
  16423. },
  16424. ]
  16425. ))
  16426. characterMakers.push(() => makeCharacter(
  16427. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16428. {
  16429. side: {
  16430. height: math.unit(2 + 8 / 12, "feet"),
  16431. weight: math.unit(99, "lb"),
  16432. name: "Side",
  16433. image: {
  16434. source: "./media/characters/aspen/side.svg",
  16435. extra: 152 / 138,
  16436. bottom: 0.032
  16437. }
  16438. },
  16439. },
  16440. [
  16441. {
  16442. name: "Normal",
  16443. height: math.unit(2 + 8 / 12, "feet"),
  16444. default: true
  16445. },
  16446. ]
  16447. ))
  16448. characterMakers.push(() => makeCharacter(
  16449. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16450. {
  16451. side: {
  16452. height: math.unit(3 + 2 / 12, "feet"),
  16453. weight: math.unit(224, "lb"),
  16454. name: "Side",
  16455. image: {
  16456. source: "./media/characters/sheila-feral-wolf/side.svg",
  16457. extra: 179 / 166,
  16458. bottom: 0.03
  16459. }
  16460. },
  16461. },
  16462. [
  16463. {
  16464. name: "Normal",
  16465. height: math.unit(3 + 2 / 12, "feet"),
  16466. default: true
  16467. },
  16468. ]
  16469. ))
  16470. characterMakers.push(() => makeCharacter(
  16471. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16472. {
  16473. side: {
  16474. height: math.unit(1 + 9 / 12, "feet"),
  16475. weight: math.unit(38, "lb"),
  16476. name: "Side",
  16477. image: {
  16478. source: "./media/characters/michelle/side.svg",
  16479. extra: 147 / 136.7,
  16480. bottom: 0.03
  16481. }
  16482. },
  16483. },
  16484. [
  16485. {
  16486. name: "Normal",
  16487. height: math.unit(1 + 9 / 12, "feet"),
  16488. default: true
  16489. },
  16490. ]
  16491. ))
  16492. characterMakers.push(() => makeCharacter(
  16493. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16494. {
  16495. front: {
  16496. height: math.unit(1 + 1 / 12, "feet"),
  16497. weight: math.unit(18, "lb"),
  16498. name: "Front",
  16499. image: {
  16500. source: "./media/characters/nino/front.svg"
  16501. }
  16502. },
  16503. },
  16504. [
  16505. {
  16506. name: "Normal",
  16507. height: math.unit(1 + 1 / 12, "feet"),
  16508. default: true
  16509. },
  16510. ]
  16511. ))
  16512. characterMakers.push(() => makeCharacter(
  16513. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16514. {
  16515. front: {
  16516. height: math.unit(1, "feet"),
  16517. weight: math.unit(16, "lb"),
  16518. name: "Front",
  16519. image: {
  16520. source: "./media/characters/viola/front.svg"
  16521. }
  16522. },
  16523. },
  16524. [
  16525. {
  16526. name: "Normal",
  16527. height: math.unit(1, "feet"),
  16528. default: true
  16529. },
  16530. ]
  16531. ))
  16532. characterMakers.push(() => makeCharacter(
  16533. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16534. {
  16535. front: {
  16536. height: math.unit(6 + 5 / 12, "feet"),
  16537. weight: math.unit(580, "lb"),
  16538. name: "Front",
  16539. image: {
  16540. source: "./media/characters/atlas/front.svg",
  16541. extra: 298.5 / 290,
  16542. bottom: 0.015
  16543. }
  16544. },
  16545. },
  16546. [
  16547. {
  16548. name: "Normal",
  16549. height: math.unit(6 + 5 / 12, "feet"),
  16550. default: true
  16551. },
  16552. ]
  16553. ))
  16554. characterMakers.push(() => makeCharacter(
  16555. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16556. {
  16557. side: {
  16558. height: math.unit(1 + 10 / 12, "feet"),
  16559. weight: math.unit(25, "lb"),
  16560. name: "Side",
  16561. image: {
  16562. source: "./media/characters/davy/side.svg",
  16563. extra: 200 / 170,
  16564. bottom: 0.01
  16565. }
  16566. },
  16567. },
  16568. [
  16569. {
  16570. name: "Normal",
  16571. height: math.unit(1 + 10 / 12, "feet"),
  16572. default: true
  16573. },
  16574. ]
  16575. ))
  16576. characterMakers.push(() => makeCharacter(
  16577. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16578. {
  16579. side: {
  16580. height: math.unit(4 + 8 / 12, "feet"),
  16581. weight: math.unit(166, "lb"),
  16582. name: "Side",
  16583. image: {
  16584. source: "./media/characters/fiona/side.svg",
  16585. extra: 232 / 220,
  16586. bottom: 0.03
  16587. }
  16588. },
  16589. },
  16590. [
  16591. {
  16592. name: "Normal",
  16593. height: math.unit(4 + 8 / 12, "feet"),
  16594. default: true
  16595. },
  16596. ]
  16597. ))
  16598. characterMakers.push(() => makeCharacter(
  16599. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16600. {
  16601. front: {
  16602. height: math.unit(2, "feet"),
  16603. weight: math.unit(62, "lb"),
  16604. name: "Front",
  16605. image: {
  16606. source: "./media/characters/lyla/front.svg",
  16607. bottom: 0.1
  16608. }
  16609. },
  16610. },
  16611. [
  16612. {
  16613. name: "Normal",
  16614. height: math.unit(2, "feet"),
  16615. default: true
  16616. },
  16617. ]
  16618. ))
  16619. characterMakers.push(() => makeCharacter(
  16620. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16621. {
  16622. side: {
  16623. height: math.unit(1.8, "feet"),
  16624. weight: math.unit(44, "lb"),
  16625. name: "Side",
  16626. image: {
  16627. source: "./media/characters/perseus/side.svg",
  16628. bottom: 0.21
  16629. }
  16630. },
  16631. },
  16632. [
  16633. {
  16634. name: "Normal",
  16635. height: math.unit(1.8, "feet"),
  16636. default: true
  16637. },
  16638. ]
  16639. ))
  16640. characterMakers.push(() => makeCharacter(
  16641. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16642. {
  16643. side: {
  16644. height: math.unit(4 + 2 / 12, "feet"),
  16645. weight: math.unit(20, "lb"),
  16646. name: "Side",
  16647. image: {
  16648. source: "./media/characters/remus/side.svg"
  16649. }
  16650. },
  16651. },
  16652. [
  16653. {
  16654. name: "Normal",
  16655. height: math.unit(4 + 2 / 12, "feet"),
  16656. default: true
  16657. },
  16658. ]
  16659. ))
  16660. characterMakers.push(() => makeCharacter(
  16661. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16662. {
  16663. front: {
  16664. height: math.unit(4 + 11 / 12, "feet"),
  16665. weight: math.unit(114, "lb"),
  16666. name: "Front",
  16667. image: {
  16668. source: "./media/characters/raf/front.svg",
  16669. bottom: 20.5 / 1863
  16670. }
  16671. },
  16672. side: {
  16673. height: math.unit(4 + 11 / 12, "feet"),
  16674. weight: math.unit(114, "lb"),
  16675. name: "Side",
  16676. image: {
  16677. source: "./media/characters/raf/side.svg",
  16678. bottom: 22 / 1822
  16679. }
  16680. },
  16681. },
  16682. [
  16683. {
  16684. name: "Micro",
  16685. height: math.unit(2, "inches")
  16686. },
  16687. {
  16688. name: "Normal",
  16689. height: math.unit(4 + 11 / 12, "feet"),
  16690. default: true
  16691. },
  16692. {
  16693. name: "Macro",
  16694. height: math.unit(70, "feet")
  16695. },
  16696. ]
  16697. ))
  16698. characterMakers.push(() => makeCharacter(
  16699. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16700. {
  16701. front: {
  16702. height: math.unit(1.5, "meters"),
  16703. weight: math.unit(68, "kg"),
  16704. name: "Front",
  16705. image: {
  16706. source: "./media/characters/liam-einarr/front.svg",
  16707. extra: 2822 / 2666
  16708. }
  16709. },
  16710. back: {
  16711. height: math.unit(1.5, "meters"),
  16712. weight: math.unit(68, "kg"),
  16713. name: "Back",
  16714. image: {
  16715. source: "./media/characters/liam-einarr/back.svg",
  16716. extra: 2822 / 2666,
  16717. bottom: 0.015
  16718. }
  16719. },
  16720. },
  16721. [
  16722. {
  16723. name: "Normal",
  16724. height: math.unit(1.5, "meters"),
  16725. default: true
  16726. },
  16727. {
  16728. name: "Macro",
  16729. height: math.unit(150, "meters")
  16730. },
  16731. {
  16732. name: "Megamacro",
  16733. height: math.unit(35, "km")
  16734. },
  16735. ]
  16736. ))
  16737. characterMakers.push(() => makeCharacter(
  16738. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16739. {
  16740. front: {
  16741. height: math.unit(6, "feet"),
  16742. weight: math.unit(75, "kg"),
  16743. name: "Front",
  16744. image: {
  16745. source: "./media/characters/linda/front.svg",
  16746. extra: 930 / 874,
  16747. bottom: 0.004
  16748. }
  16749. },
  16750. },
  16751. [
  16752. {
  16753. name: "Normal",
  16754. height: math.unit(6, "feet"),
  16755. default: true
  16756. },
  16757. ]
  16758. ))
  16759. characterMakers.push(() => makeCharacter(
  16760. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16761. {
  16762. front: {
  16763. height: math.unit(6 + 8 / 12, "feet"),
  16764. weight: math.unit(220, "lb"),
  16765. name: "Front",
  16766. image: {
  16767. source: "./media/characters/caylex/front.svg",
  16768. extra: 821 / 772,
  16769. bottom: 0.07
  16770. }
  16771. },
  16772. back: {
  16773. height: math.unit(6 + 8 / 12, "feet"),
  16774. weight: math.unit(220, "lb"),
  16775. name: "Back",
  16776. image: {
  16777. source: "./media/characters/caylex/back.svg",
  16778. extra: 821 / 772,
  16779. bottom: 0.022
  16780. }
  16781. },
  16782. hand: {
  16783. height: math.unit(1.25, "feet"),
  16784. name: "Hand",
  16785. image: {
  16786. source: "./media/characters/caylex/hand.svg"
  16787. }
  16788. },
  16789. foot: {
  16790. height: math.unit(1.6, "feet"),
  16791. name: "Foot",
  16792. image: {
  16793. source: "./media/characters/caylex/foot.svg"
  16794. }
  16795. },
  16796. armored: {
  16797. height: math.unit(6 + 8 / 12, "feet"),
  16798. weight: math.unit(250, "lb"),
  16799. name: "Armored",
  16800. image: {
  16801. source: "./media/characters/caylex/armored.svg",
  16802. extra: 1420 / 1310,
  16803. bottom: 0.045
  16804. }
  16805. },
  16806. },
  16807. [
  16808. {
  16809. name: "Normal",
  16810. height: math.unit(6 + 8 / 12, "feet"),
  16811. default: true
  16812. },
  16813. {
  16814. name: "Normal+",
  16815. height: math.unit(12, "feet")
  16816. },
  16817. ]
  16818. ))
  16819. characterMakers.push(() => makeCharacter(
  16820. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16821. {
  16822. front: {
  16823. height: math.unit(7 + 6 / 12, "feet"),
  16824. weight: math.unit(288, "lb"),
  16825. name: "Front",
  16826. image: {
  16827. source: "./media/characters/alana/front.svg",
  16828. extra: 679 / 653,
  16829. bottom: 22.5 / 701
  16830. }
  16831. },
  16832. },
  16833. [
  16834. {
  16835. name: "Normal",
  16836. height: math.unit(7 + 6 / 12, "feet")
  16837. },
  16838. {
  16839. name: "Large",
  16840. height: math.unit(50, "feet")
  16841. },
  16842. {
  16843. name: "Macro",
  16844. height: math.unit(100, "feet"),
  16845. default: true
  16846. },
  16847. {
  16848. name: "Macro+",
  16849. height: math.unit(200, "feet")
  16850. },
  16851. ]
  16852. ))
  16853. characterMakers.push(() => makeCharacter(
  16854. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16855. {
  16856. front: {
  16857. height: math.unit(6 + 1 / 12, "feet"),
  16858. weight: math.unit(210, "lb"),
  16859. name: "Front",
  16860. image: {
  16861. source: "./media/characters/hasani/front.svg",
  16862. extra: 244 / 232,
  16863. bottom: 0.01
  16864. }
  16865. },
  16866. back: {
  16867. height: math.unit(6 + 1 / 12, "feet"),
  16868. weight: math.unit(210, "lb"),
  16869. name: "Back",
  16870. image: {
  16871. source: "./media/characters/hasani/back.svg",
  16872. extra: 244 / 232,
  16873. bottom: 0.01
  16874. }
  16875. },
  16876. },
  16877. [
  16878. {
  16879. name: "Normal",
  16880. height: math.unit(6 + 1 / 12, "feet")
  16881. },
  16882. {
  16883. name: "Macro",
  16884. height: math.unit(175, "feet"),
  16885. default: true
  16886. },
  16887. ]
  16888. ))
  16889. characterMakers.push(() => makeCharacter(
  16890. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16891. {
  16892. front: {
  16893. height: math.unit(1.82, "meters"),
  16894. weight: math.unit(140, "lb"),
  16895. name: "Front",
  16896. image: {
  16897. source: "./media/characters/nita/front.svg",
  16898. extra: 2473 / 2363,
  16899. bottom: 0.01
  16900. }
  16901. },
  16902. },
  16903. [
  16904. {
  16905. name: "Normal",
  16906. height: math.unit(1.82, "m")
  16907. },
  16908. {
  16909. name: "Macro",
  16910. height: math.unit(300, "m")
  16911. },
  16912. {
  16913. name: "Mistake Canon",
  16914. height: math.unit(0.5, "miles"),
  16915. default: true
  16916. },
  16917. {
  16918. name: "Big Mistake",
  16919. height: math.unit(13, "miles")
  16920. },
  16921. {
  16922. name: "Playing God",
  16923. height: math.unit(2450, "miles")
  16924. },
  16925. ]
  16926. ))
  16927. characterMakers.push(() => makeCharacter(
  16928. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16929. {
  16930. front: {
  16931. height: math.unit(4, "feet"),
  16932. weight: math.unit(120, "lb"),
  16933. name: "Front",
  16934. image: {
  16935. source: "./media/characters/shiriko/front.svg",
  16936. extra: 195 / 188
  16937. }
  16938. },
  16939. },
  16940. [
  16941. {
  16942. name: "Normal",
  16943. height: math.unit(4, "feet"),
  16944. default: true
  16945. },
  16946. ]
  16947. ))
  16948. characterMakers.push(() => makeCharacter(
  16949. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16950. {
  16951. front: {
  16952. height: math.unit(6, "feet"),
  16953. name: "front",
  16954. image: {
  16955. source: "./media/characters/deja/front.svg",
  16956. extra: 926 / 840,
  16957. bottom: 0.07
  16958. }
  16959. },
  16960. },
  16961. [
  16962. {
  16963. name: "Planck Length",
  16964. height: math.unit(1.6e-35, "meters")
  16965. },
  16966. {
  16967. name: "Normal",
  16968. height: math.unit(30.48, "meters"),
  16969. default: true
  16970. },
  16971. {
  16972. name: "Universal",
  16973. height: math.unit(8.8e26, "meters")
  16974. },
  16975. ]
  16976. ))
  16977. characterMakers.push(() => makeCharacter(
  16978. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16979. {
  16980. side: {
  16981. height: math.unit(8, "feet"),
  16982. weight: math.unit(6300, "lb"),
  16983. name: "Side",
  16984. image: {
  16985. source: "./media/characters/anima/side.svg",
  16986. bottom: 0.035
  16987. }
  16988. },
  16989. },
  16990. [
  16991. {
  16992. name: "Normal",
  16993. height: math.unit(8, "feet"),
  16994. default: true
  16995. },
  16996. ]
  16997. ))
  16998. characterMakers.push(() => makeCharacter(
  16999. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17000. {
  17001. front: {
  17002. height: math.unit(8, "feet"),
  17003. weight: math.unit(350, "lb"),
  17004. name: "Front",
  17005. image: {
  17006. source: "./media/characters/bianca/front.svg",
  17007. extra: 234 / 225,
  17008. bottom: 0.03
  17009. }
  17010. },
  17011. },
  17012. [
  17013. {
  17014. name: "Normal",
  17015. height: math.unit(8, "feet"),
  17016. default: true
  17017. },
  17018. ]
  17019. ))
  17020. characterMakers.push(() => makeCharacter(
  17021. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17022. {
  17023. front: {
  17024. height: math.unit(6, "feet"),
  17025. weight: math.unit(150, "lb"),
  17026. name: "Front",
  17027. image: {
  17028. source: "./media/characters/adinia/front.svg",
  17029. extra: 1845 / 1672,
  17030. bottom: 0.02
  17031. }
  17032. },
  17033. back: {
  17034. height: math.unit(6, "feet"),
  17035. weight: math.unit(150, "lb"),
  17036. name: "Back",
  17037. image: {
  17038. source: "./media/characters/adinia/back.svg",
  17039. extra: 1845 / 1672,
  17040. bottom: 0.002
  17041. }
  17042. },
  17043. },
  17044. [
  17045. {
  17046. name: "Normal",
  17047. height: math.unit(11 + 5 / 12, "feet"),
  17048. default: true
  17049. },
  17050. ]
  17051. ))
  17052. characterMakers.push(() => makeCharacter(
  17053. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17054. {
  17055. front: {
  17056. height: math.unit(3, "meters"),
  17057. weight: math.unit(200, "kg"),
  17058. name: "Front",
  17059. image: {
  17060. source: "./media/characters/lykasa/front.svg",
  17061. extra: 1076 / 976,
  17062. bottom: 0.06
  17063. }
  17064. },
  17065. },
  17066. [
  17067. {
  17068. name: "Normal",
  17069. height: math.unit(3, "meters")
  17070. },
  17071. {
  17072. name: "Kaiju",
  17073. height: math.unit(120, "meters"),
  17074. default: true
  17075. },
  17076. {
  17077. name: "Mega Kaiju",
  17078. height: math.unit(240, "km")
  17079. },
  17080. {
  17081. name: "Giga Kaiju",
  17082. height: math.unit(400, "megameters")
  17083. },
  17084. {
  17085. name: "Tera Kaiju",
  17086. height: math.unit(800, "gigameters")
  17087. },
  17088. {
  17089. name: "Kaiju Dragon Goddess",
  17090. height: math.unit(26, "zettaparsecs")
  17091. },
  17092. ]
  17093. ))
  17094. characterMakers.push(() => makeCharacter(
  17095. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17096. {
  17097. side: {
  17098. height: math.unit(283 / 124 * 6, "feet"),
  17099. weight: math.unit(35000, "lb"),
  17100. name: "Side",
  17101. image: {
  17102. source: "./media/characters/malfaren/side.svg",
  17103. extra: 2500 / 1010,
  17104. bottom: 0.01
  17105. }
  17106. },
  17107. front: {
  17108. height: math.unit(22.36, "feet"),
  17109. weight: math.unit(35000, "lb"),
  17110. name: "Front",
  17111. image: {
  17112. source: "./media/characters/malfaren/front.svg",
  17113. extra: 1631 / 1476,
  17114. bottom: 0.01
  17115. }
  17116. },
  17117. maw: {
  17118. height: math.unit(6.9, "feet"),
  17119. name: "Maw",
  17120. image: {
  17121. source: "./media/characters/malfaren/maw.svg"
  17122. }
  17123. },
  17124. },
  17125. [
  17126. {
  17127. name: "Big",
  17128. height: math.unit(283 / 162 * 6, "feet"),
  17129. },
  17130. {
  17131. name: "Bigger",
  17132. height: math.unit(283 / 124 * 6, "feet")
  17133. },
  17134. {
  17135. name: "Massive",
  17136. height: math.unit(283 / 92 * 6, "feet"),
  17137. default: true
  17138. },
  17139. {
  17140. name: "👀💦",
  17141. height: math.unit(283 / 73 * 6, "feet"),
  17142. },
  17143. ]
  17144. ))
  17145. characterMakers.push(() => makeCharacter(
  17146. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17147. {
  17148. front: {
  17149. height: math.unit(1.7, "m"),
  17150. weight: math.unit(70, "kg"),
  17151. name: "Front",
  17152. image: {
  17153. source: "./media/characters/kernel/front.svg",
  17154. extra: 222 / 210,
  17155. bottom: 0.007
  17156. }
  17157. },
  17158. },
  17159. [
  17160. {
  17161. name: "Nano",
  17162. height: math.unit(17, "micrometers")
  17163. },
  17164. {
  17165. name: "Micro",
  17166. height: math.unit(1.7, "mm")
  17167. },
  17168. {
  17169. name: "Small",
  17170. height: math.unit(1.7, "cm")
  17171. },
  17172. {
  17173. name: "Normal",
  17174. height: math.unit(1.7, "m"),
  17175. default: true
  17176. },
  17177. ]
  17178. ))
  17179. characterMakers.push(() => makeCharacter(
  17180. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17181. {
  17182. front: {
  17183. height: math.unit(1.75, "meters"),
  17184. weight: math.unit(65, "kg"),
  17185. name: "Front",
  17186. image: {
  17187. source: "./media/characters/jayne-folest/front.svg",
  17188. extra: 2115 / 2007,
  17189. bottom: 0.02
  17190. }
  17191. },
  17192. back: {
  17193. height: math.unit(1.75, "meters"),
  17194. weight: math.unit(65, "kg"),
  17195. name: "Back",
  17196. image: {
  17197. source: "./media/characters/jayne-folest/back.svg",
  17198. extra: 2115 / 2007,
  17199. bottom: 0.005
  17200. }
  17201. },
  17202. frontClothed: {
  17203. height: math.unit(1.75, "meters"),
  17204. weight: math.unit(65, "kg"),
  17205. name: "Front (Clothed)",
  17206. image: {
  17207. source: "./media/characters/jayne-folest/front-clothed.svg",
  17208. extra: 2115 / 2007,
  17209. bottom: 0.035
  17210. }
  17211. },
  17212. hand: {
  17213. height: math.unit(1 / 1.260, "feet"),
  17214. name: "Hand",
  17215. image: {
  17216. source: "./media/characters/jayne-folest/hand.svg"
  17217. }
  17218. },
  17219. foot: {
  17220. height: math.unit(1 / 0.918, "feet"),
  17221. name: "Foot",
  17222. image: {
  17223. source: "./media/characters/jayne-folest/foot.svg"
  17224. }
  17225. },
  17226. },
  17227. [
  17228. {
  17229. name: "Micro",
  17230. height: math.unit(4, "cm")
  17231. },
  17232. {
  17233. name: "Normal",
  17234. height: math.unit(1.75, "meters")
  17235. },
  17236. {
  17237. name: "Macro",
  17238. height: math.unit(47.5, "meters"),
  17239. default: true
  17240. },
  17241. ]
  17242. ))
  17243. characterMakers.push(() => makeCharacter(
  17244. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17245. {
  17246. front: {
  17247. height: math.unit(180, "cm"),
  17248. weight: math.unit(70, "kg"),
  17249. name: "Front",
  17250. image: {
  17251. source: "./media/characters/algier/front.svg",
  17252. extra: 596 / 572,
  17253. bottom: 0.04
  17254. }
  17255. },
  17256. back: {
  17257. height: math.unit(180, "cm"),
  17258. weight: math.unit(70, "kg"),
  17259. name: "Back",
  17260. image: {
  17261. source: "./media/characters/algier/back.svg",
  17262. extra: 596 / 572,
  17263. bottom: 0.025
  17264. }
  17265. },
  17266. frontdressed: {
  17267. height: math.unit(180, "cm"),
  17268. weight: math.unit(150, "kg"),
  17269. name: "Front-dressed",
  17270. image: {
  17271. source: "./media/characters/algier/front-dressed.svg",
  17272. extra: 596 / 572,
  17273. bottom: 0.038
  17274. }
  17275. },
  17276. },
  17277. [
  17278. {
  17279. name: "Micro",
  17280. height: math.unit(5, "cm")
  17281. },
  17282. {
  17283. name: "Normal",
  17284. height: math.unit(180, "cm"),
  17285. default: true
  17286. },
  17287. {
  17288. name: "Macro",
  17289. height: math.unit(64, "m")
  17290. },
  17291. ]
  17292. ))
  17293. characterMakers.push(() => makeCharacter(
  17294. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17295. {
  17296. upright: {
  17297. height: math.unit(7, "feet"),
  17298. weight: math.unit(300, "lb"),
  17299. name: "Upright",
  17300. image: {
  17301. source: "./media/characters/pretzel/upright.svg",
  17302. extra: 534 / 522,
  17303. bottom: 0.065
  17304. }
  17305. },
  17306. sprawling: {
  17307. height: math.unit(3.75, "feet"),
  17308. weight: math.unit(300, "lb"),
  17309. name: "Sprawling",
  17310. image: {
  17311. source: "./media/characters/pretzel/sprawling.svg",
  17312. extra: 314 / 281,
  17313. bottom: 0.1
  17314. }
  17315. },
  17316. tongue: {
  17317. height: math.unit(2, "feet"),
  17318. name: "Tongue",
  17319. image: {
  17320. source: "./media/characters/pretzel/tongue.svg"
  17321. }
  17322. },
  17323. },
  17324. [
  17325. {
  17326. name: "Normal",
  17327. height: math.unit(7, "feet"),
  17328. default: true
  17329. },
  17330. {
  17331. name: "Oversized",
  17332. height: math.unit(15, "feet")
  17333. },
  17334. {
  17335. name: "Huge",
  17336. height: math.unit(30, "feet")
  17337. },
  17338. {
  17339. name: "Macro",
  17340. height: math.unit(250, "feet")
  17341. },
  17342. ]
  17343. ))
  17344. characterMakers.push(() => makeCharacter(
  17345. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17346. {
  17347. sideFront: {
  17348. height: math.unit(5 + 2 / 12, "feet"),
  17349. weight: math.unit(120, "lb"),
  17350. name: "Front Side",
  17351. image: {
  17352. source: "./media/characters/roxi/side-front.svg",
  17353. extra: 2924 / 2717,
  17354. bottom: 0.08
  17355. }
  17356. },
  17357. sideBack: {
  17358. height: math.unit(5 + 2 / 12, "feet"),
  17359. weight: math.unit(120, "lb"),
  17360. name: "Back Side",
  17361. image: {
  17362. source: "./media/characters/roxi/side-back.svg",
  17363. extra: 2904 / 2693,
  17364. bottom: 0.06
  17365. }
  17366. },
  17367. front: {
  17368. height: math.unit(5 + 2 / 12, "feet"),
  17369. weight: math.unit(120, "lb"),
  17370. name: "Front",
  17371. image: {
  17372. source: "./media/characters/roxi/front.svg",
  17373. extra: 2028 / 1907,
  17374. bottom: 0.01
  17375. }
  17376. },
  17377. frontAlt: {
  17378. height: math.unit(5 + 2 / 12, "feet"),
  17379. weight: math.unit(120, "lb"),
  17380. name: "Front (Alt)",
  17381. image: {
  17382. source: "./media/characters/roxi/front-alt.svg",
  17383. extra: 1828 / 1798,
  17384. bottom: 0.01
  17385. }
  17386. },
  17387. sitting: {
  17388. height: math.unit(2.8, "feet"),
  17389. weight: math.unit(120, "lb"),
  17390. name: "Sitting",
  17391. image: {
  17392. source: "./media/characters/roxi/sitting.svg",
  17393. extra: 2660 / 2462,
  17394. bottom: 0.1
  17395. }
  17396. },
  17397. },
  17398. [
  17399. {
  17400. name: "Normal",
  17401. height: math.unit(5 + 2 / 12, "feet"),
  17402. default: true
  17403. },
  17404. ]
  17405. ))
  17406. characterMakers.push(() => makeCharacter(
  17407. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17408. {
  17409. side: {
  17410. height: math.unit(55, "feet"),
  17411. weight: math.unit(153, "tons"),
  17412. name: "Side",
  17413. image: {
  17414. source: "./media/characters/shadow/side.svg",
  17415. extra: 701 / 628,
  17416. bottom: 0.02
  17417. }
  17418. },
  17419. flying: {
  17420. height: math.unit(145, "feet"),
  17421. weight: math.unit(153, "tons"),
  17422. name: "Flying",
  17423. image: {
  17424. source: "./media/characters/shadow/flying.svg"
  17425. }
  17426. },
  17427. },
  17428. [
  17429. {
  17430. name: "Normal",
  17431. height: math.unit(55, "feet"),
  17432. default: true
  17433. },
  17434. ]
  17435. ))
  17436. characterMakers.push(() => makeCharacter(
  17437. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17438. {
  17439. front: {
  17440. height: math.unit(6, "feet"),
  17441. weight: math.unit(200, "lb"),
  17442. name: "Front",
  17443. image: {
  17444. source: "./media/characters/marcie/front.svg",
  17445. extra: 960 / 876,
  17446. bottom: 58 / 1017.87
  17447. }
  17448. },
  17449. },
  17450. [
  17451. {
  17452. name: "Macro",
  17453. height: math.unit(1, "mile"),
  17454. default: true
  17455. },
  17456. ]
  17457. ))
  17458. characterMakers.push(() => makeCharacter(
  17459. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17460. {
  17461. front: {
  17462. height: math.unit(7, "feet"),
  17463. weight: math.unit(200, "lb"),
  17464. name: "Front",
  17465. image: {
  17466. source: "./media/characters/kachina/front.svg",
  17467. extra: 1290.68 / 1119,
  17468. bottom: 36.5 / 1327.18
  17469. }
  17470. },
  17471. },
  17472. [
  17473. {
  17474. name: "Normal",
  17475. height: math.unit(7, "feet"),
  17476. default: true
  17477. },
  17478. ]
  17479. ))
  17480. characterMakers.push(() => makeCharacter(
  17481. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17482. {
  17483. looking: {
  17484. height: math.unit(2, "meters"),
  17485. weight: math.unit(300, "kg"),
  17486. name: "Looking",
  17487. image: {
  17488. source: "./media/characters/kash/looking.svg",
  17489. extra: 474 / 344,
  17490. bottom: 0.03
  17491. }
  17492. },
  17493. side: {
  17494. height: math.unit(2, "meters"),
  17495. weight: math.unit(300, "kg"),
  17496. name: "Side",
  17497. image: {
  17498. source: "./media/characters/kash/side.svg",
  17499. extra: 302 / 251,
  17500. bottom: 0.03
  17501. }
  17502. },
  17503. front: {
  17504. height: math.unit(2, "meters"),
  17505. weight: math.unit(300, "kg"),
  17506. name: "Front",
  17507. image: {
  17508. source: "./media/characters/kash/front.svg",
  17509. extra: 495 / 360,
  17510. bottom: 0.015
  17511. }
  17512. },
  17513. },
  17514. [
  17515. {
  17516. name: "Normal",
  17517. height: math.unit(2, "meters"),
  17518. default: true
  17519. },
  17520. {
  17521. name: "Big",
  17522. height: math.unit(3, "meters")
  17523. },
  17524. {
  17525. name: "Large",
  17526. height: math.unit(5, "meters")
  17527. },
  17528. ]
  17529. ))
  17530. characterMakers.push(() => makeCharacter(
  17531. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17532. {
  17533. feeding: {
  17534. height: math.unit(6.7, "feet"),
  17535. weight: math.unit(350, "lb"),
  17536. name: "Feeding",
  17537. image: {
  17538. source: "./media/characters/lalim/feeding.svg",
  17539. }
  17540. },
  17541. },
  17542. [
  17543. {
  17544. name: "Normal",
  17545. height: math.unit(6.7, "feet"),
  17546. default: true
  17547. },
  17548. ]
  17549. ))
  17550. characterMakers.push(() => makeCharacter(
  17551. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17552. {
  17553. front: {
  17554. height: math.unit(9.5, "feet"),
  17555. weight: math.unit(600, "lb"),
  17556. name: "Front",
  17557. image: {
  17558. source: "./media/characters/de'vout/front.svg",
  17559. extra: 1443 / 1328,
  17560. bottom: 0.025
  17561. }
  17562. },
  17563. back: {
  17564. height: math.unit(9.5, "feet"),
  17565. weight: math.unit(600, "lb"),
  17566. name: "Back",
  17567. image: {
  17568. source: "./media/characters/de'vout/back.svg",
  17569. extra: 1443 / 1328
  17570. }
  17571. },
  17572. frontDressed: {
  17573. height: math.unit(9.5, "feet"),
  17574. weight: math.unit(600, "lb"),
  17575. name: "Front (Dressed",
  17576. image: {
  17577. source: "./media/characters/de'vout/front-dressed.svg",
  17578. extra: 1443 / 1328,
  17579. bottom: 0.025
  17580. }
  17581. },
  17582. backDressed: {
  17583. height: math.unit(9.5, "feet"),
  17584. weight: math.unit(600, "lb"),
  17585. name: "Back (Dressed",
  17586. image: {
  17587. source: "./media/characters/de'vout/back-dressed.svg",
  17588. extra: 1443 / 1328
  17589. }
  17590. },
  17591. },
  17592. [
  17593. {
  17594. name: "Normal",
  17595. height: math.unit(9.5, "feet"),
  17596. default: true
  17597. },
  17598. ]
  17599. ))
  17600. characterMakers.push(() => makeCharacter(
  17601. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17602. {
  17603. front: {
  17604. height: math.unit(8, "feet"),
  17605. weight: math.unit(225, "lb"),
  17606. name: "Front",
  17607. image: {
  17608. source: "./media/characters/talana/front.svg",
  17609. extra: 1410 / 1300,
  17610. bottom: 0.015
  17611. }
  17612. },
  17613. frontDressed: {
  17614. height: math.unit(8, "feet"),
  17615. weight: math.unit(225, "lb"),
  17616. name: "Front (Dressed",
  17617. image: {
  17618. source: "./media/characters/talana/front-dressed.svg",
  17619. extra: 1410 / 1300,
  17620. bottom: 0.015
  17621. }
  17622. },
  17623. },
  17624. [
  17625. {
  17626. name: "Normal",
  17627. height: math.unit(8, "feet"),
  17628. default: true
  17629. },
  17630. ]
  17631. ))
  17632. characterMakers.push(() => makeCharacter(
  17633. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17634. {
  17635. side: {
  17636. height: math.unit(7.2, "feet"),
  17637. weight: math.unit(150, "lb"),
  17638. name: "Side",
  17639. image: {
  17640. source: "./media/characters/xeauvok/side.svg",
  17641. extra: 1975 / 1523,
  17642. bottom: 0.07
  17643. }
  17644. },
  17645. },
  17646. [
  17647. {
  17648. name: "Normal",
  17649. height: math.unit(7.2, "feet"),
  17650. default: true
  17651. },
  17652. ]
  17653. ))
  17654. characterMakers.push(() => makeCharacter(
  17655. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17656. {
  17657. side: {
  17658. height: math.unit(10, "feet"),
  17659. weight: math.unit(900, "kg"),
  17660. name: "Side",
  17661. image: {
  17662. source: "./media/characters/zara/side.svg",
  17663. extra: 504 / 498
  17664. }
  17665. },
  17666. },
  17667. [
  17668. {
  17669. name: "Normal",
  17670. height: math.unit(10, "feet"),
  17671. default: true
  17672. },
  17673. ]
  17674. ))
  17675. characterMakers.push(() => makeCharacter(
  17676. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17677. {
  17678. side: {
  17679. height: math.unit(6, "feet"),
  17680. weight: math.unit(150, "lb"),
  17681. name: "Side",
  17682. image: {
  17683. source: "./media/characters/richard-dragon/side.svg",
  17684. extra: 845 / 340,
  17685. bottom: 0.017
  17686. }
  17687. },
  17688. maw: {
  17689. height: math.unit(2.97, "feet"),
  17690. name: "Maw",
  17691. image: {
  17692. source: "./media/characters/richard-dragon/maw.svg"
  17693. }
  17694. },
  17695. },
  17696. [
  17697. ]
  17698. ))
  17699. characterMakers.push(() => makeCharacter(
  17700. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17701. {
  17702. front: {
  17703. height: math.unit(4, "feet"),
  17704. weight: math.unit(100, "lb"),
  17705. name: "Front",
  17706. image: {
  17707. source: "./media/characters/richard-smeargle/front.svg",
  17708. extra: 2952 / 2820,
  17709. bottom: 0.028
  17710. }
  17711. },
  17712. },
  17713. [
  17714. {
  17715. name: "Normal",
  17716. height: math.unit(4, "feet"),
  17717. default: true
  17718. },
  17719. {
  17720. name: "Dynamax",
  17721. height: math.unit(20, "meters")
  17722. },
  17723. ]
  17724. ))
  17725. characterMakers.push(() => makeCharacter(
  17726. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17727. {
  17728. front: {
  17729. height: math.unit(6, "feet"),
  17730. weight: math.unit(110, "lb"),
  17731. name: "Front",
  17732. image: {
  17733. source: "./media/characters/klay/front.svg",
  17734. extra: 962 / 883,
  17735. bottom: 0.04
  17736. }
  17737. },
  17738. back: {
  17739. height: math.unit(6, "feet"),
  17740. weight: math.unit(110, "lb"),
  17741. name: "Back",
  17742. image: {
  17743. source: "./media/characters/klay/back.svg",
  17744. extra: 962 / 883
  17745. }
  17746. },
  17747. beans: {
  17748. height: math.unit(1.15, "feet"),
  17749. name: "Beans",
  17750. image: {
  17751. source: "./media/characters/klay/beans.svg"
  17752. }
  17753. },
  17754. },
  17755. [
  17756. {
  17757. name: "Micro",
  17758. height: math.unit(6, "inches")
  17759. },
  17760. {
  17761. name: "Mini",
  17762. height: math.unit(3, "feet")
  17763. },
  17764. {
  17765. name: "Normal",
  17766. height: math.unit(6, "feet"),
  17767. default: true
  17768. },
  17769. {
  17770. name: "Big",
  17771. height: math.unit(25, "feet")
  17772. },
  17773. {
  17774. name: "Macro",
  17775. height: math.unit(100, "feet")
  17776. },
  17777. {
  17778. name: "Megamacro",
  17779. height: math.unit(400, "feet")
  17780. },
  17781. ]
  17782. ))
  17783. characterMakers.push(() => makeCharacter(
  17784. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17785. {
  17786. front: {
  17787. height: math.unit(6, "feet"),
  17788. weight: math.unit(160, "lb"),
  17789. name: "Front",
  17790. image: {
  17791. source: "./media/characters/marcus/front.svg",
  17792. extra: 734 / 676,
  17793. bottom: 0.03
  17794. }
  17795. },
  17796. },
  17797. [
  17798. {
  17799. name: "Little",
  17800. height: math.unit(6, "feet")
  17801. },
  17802. {
  17803. name: "Normal",
  17804. height: math.unit(110, "feet"),
  17805. default: true
  17806. },
  17807. {
  17808. name: "Macro",
  17809. height: math.unit(250, "feet")
  17810. },
  17811. {
  17812. name: "Megamacro",
  17813. height: math.unit(1000, "feet")
  17814. },
  17815. ]
  17816. ))
  17817. characterMakers.push(() => makeCharacter(
  17818. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17819. {
  17820. front: {
  17821. height: math.unit(7, "feet"),
  17822. weight: math.unit(275, "lb"),
  17823. name: "Front",
  17824. image: {
  17825. source: "./media/characters/claude-delroute/front.svg",
  17826. extra: 230 / 214,
  17827. bottom: 0.007
  17828. }
  17829. },
  17830. side: {
  17831. height: math.unit(7, "feet"),
  17832. weight: math.unit(275, "lb"),
  17833. name: "Side",
  17834. image: {
  17835. source: "./media/characters/claude-delroute/side.svg",
  17836. extra: 222 / 214,
  17837. bottom: 0.01
  17838. }
  17839. },
  17840. back: {
  17841. height: math.unit(7, "feet"),
  17842. weight: math.unit(275, "lb"),
  17843. name: "Back",
  17844. image: {
  17845. source: "./media/characters/claude-delroute/back.svg",
  17846. extra: 230 / 214,
  17847. bottom: 0.015
  17848. }
  17849. },
  17850. maw: {
  17851. height: math.unit(0.6407, "meters"),
  17852. name: "Maw",
  17853. image: {
  17854. source: "./media/characters/claude-delroute/maw.svg"
  17855. }
  17856. },
  17857. },
  17858. [
  17859. {
  17860. name: "Normal",
  17861. height: math.unit(7, "feet"),
  17862. default: true
  17863. },
  17864. {
  17865. name: "Lorge",
  17866. height: math.unit(20, "feet")
  17867. },
  17868. ]
  17869. ))
  17870. characterMakers.push(() => makeCharacter(
  17871. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17872. {
  17873. front: {
  17874. height: math.unit(8 + 4 / 12, "feet"),
  17875. weight: math.unit(600, "lb"),
  17876. name: "Front",
  17877. image: {
  17878. source: "./media/characters/dragonien/front.svg",
  17879. extra: 100 / 94,
  17880. bottom: 3.3 / 103.3445
  17881. }
  17882. },
  17883. back: {
  17884. height: math.unit(8 + 4 / 12, "feet"),
  17885. weight: math.unit(600, "lb"),
  17886. name: "Back",
  17887. image: {
  17888. source: "./media/characters/dragonien/back.svg",
  17889. extra: 776 / 746,
  17890. bottom: 6.4 / 782.0616
  17891. }
  17892. },
  17893. foot: {
  17894. height: math.unit(1.54, "feet"),
  17895. name: "Foot",
  17896. image: {
  17897. source: "./media/characters/dragonien/foot.svg",
  17898. }
  17899. },
  17900. },
  17901. [
  17902. {
  17903. name: "Normal",
  17904. height: math.unit(8 + 4 / 12, "feet"),
  17905. default: true
  17906. },
  17907. {
  17908. name: "Macro",
  17909. height: math.unit(200, "feet")
  17910. },
  17911. {
  17912. name: "Megamacro",
  17913. height: math.unit(1, "mile")
  17914. },
  17915. {
  17916. name: "Gigamacro",
  17917. height: math.unit(1000, "miles")
  17918. },
  17919. ]
  17920. ))
  17921. characterMakers.push(() => makeCharacter(
  17922. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17923. {
  17924. front: {
  17925. height: math.unit(5 + 2 / 12, "feet"),
  17926. weight: math.unit(110, "lb"),
  17927. name: "Front",
  17928. image: {
  17929. source: "./media/characters/desta/front.svg",
  17930. extra: 767 / 726,
  17931. bottom: 11.7 / 779
  17932. }
  17933. },
  17934. back: {
  17935. height: math.unit(5 + 2 / 12, "feet"),
  17936. weight: math.unit(110, "lb"),
  17937. name: "Back",
  17938. image: {
  17939. source: "./media/characters/desta/back.svg",
  17940. extra: 777 / 728,
  17941. bottom: 6 / 784
  17942. }
  17943. },
  17944. frontAlt: {
  17945. height: math.unit(5 + 2 / 12, "feet"),
  17946. weight: math.unit(110, "lb"),
  17947. name: "Front",
  17948. image: {
  17949. source: "./media/characters/desta/front-alt.svg",
  17950. extra: 1482 / 1417
  17951. }
  17952. },
  17953. side: {
  17954. height: math.unit(5 + 2 / 12, "feet"),
  17955. weight: math.unit(110, "lb"),
  17956. name: "Side",
  17957. image: {
  17958. source: "./media/characters/desta/side.svg",
  17959. extra: 2579 / 2491,
  17960. bottom: 0.053
  17961. }
  17962. },
  17963. },
  17964. [
  17965. {
  17966. name: "Micro",
  17967. height: math.unit(6, "inches")
  17968. },
  17969. {
  17970. name: "Normal",
  17971. height: math.unit(5 + 2 / 12, "feet"),
  17972. default: true
  17973. },
  17974. {
  17975. name: "Macro",
  17976. height: math.unit(62, "feet")
  17977. },
  17978. {
  17979. name: "Megamacro",
  17980. height: math.unit(1800, "feet")
  17981. },
  17982. ]
  17983. ))
  17984. characterMakers.push(() => makeCharacter(
  17985. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17986. {
  17987. front: {
  17988. height: math.unit(10, "feet"),
  17989. weight: math.unit(700, "lb"),
  17990. name: "Front",
  17991. image: {
  17992. source: "./media/characters/storm-alystar/front.svg",
  17993. extra: 2112 / 1898,
  17994. bottom: 0.034
  17995. }
  17996. },
  17997. },
  17998. [
  17999. {
  18000. name: "Micro",
  18001. height: math.unit(3.5, "inches")
  18002. },
  18003. {
  18004. name: "Normal",
  18005. height: math.unit(10, "feet"),
  18006. default: true
  18007. },
  18008. {
  18009. name: "Macro",
  18010. height: math.unit(400, "feet")
  18011. },
  18012. {
  18013. name: "Deific",
  18014. height: math.unit(60, "miles")
  18015. },
  18016. ]
  18017. ))
  18018. characterMakers.push(() => makeCharacter(
  18019. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18020. {
  18021. front: {
  18022. height: math.unit(2.35, "meters"),
  18023. weight: math.unit(119, "kg"),
  18024. name: "Front",
  18025. image: {
  18026. source: "./media/characters/ilia/front.svg",
  18027. extra: 1285 / 1255,
  18028. bottom: 0.06
  18029. }
  18030. },
  18031. },
  18032. [
  18033. {
  18034. name: "Normal",
  18035. height: math.unit(2.35, "meters")
  18036. },
  18037. {
  18038. name: "Macro",
  18039. height: math.unit(140, "meters"),
  18040. default: true
  18041. },
  18042. {
  18043. name: "Megamacro",
  18044. height: math.unit(100, "miles")
  18045. },
  18046. ]
  18047. ))
  18048. characterMakers.push(() => makeCharacter(
  18049. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18050. {
  18051. front: {
  18052. height: math.unit(6 + 5 / 12, "feet"),
  18053. weight: math.unit(190, "lb"),
  18054. name: "Front",
  18055. image: {
  18056. source: "./media/characters/kingdead/front.svg",
  18057. extra: 1228 / 1177
  18058. }
  18059. },
  18060. },
  18061. [
  18062. {
  18063. name: "Micro",
  18064. height: math.unit(7, "inches")
  18065. },
  18066. {
  18067. name: "Normal",
  18068. height: math.unit(6 + 5 / 12, "feet")
  18069. },
  18070. {
  18071. name: "Macro",
  18072. height: math.unit(150, "feet"),
  18073. default: true
  18074. },
  18075. {
  18076. name: "Megamacro",
  18077. height: math.unit(200, "miles")
  18078. },
  18079. ]
  18080. ))
  18081. characterMakers.push(() => makeCharacter(
  18082. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18083. {
  18084. front: {
  18085. height: math.unit(8, "feet"),
  18086. weight: math.unit(600, "lb"),
  18087. name: "Front",
  18088. image: {
  18089. source: "./media/characters/kyrehx/front.svg",
  18090. extra: 1195 / 1095,
  18091. bottom: 0.034
  18092. }
  18093. },
  18094. },
  18095. [
  18096. {
  18097. name: "Micro",
  18098. height: math.unit(2, "inches")
  18099. },
  18100. {
  18101. name: "Normal",
  18102. height: math.unit(8, "feet"),
  18103. default: true
  18104. },
  18105. {
  18106. name: "Macro",
  18107. height: math.unit(255, "feet")
  18108. },
  18109. ]
  18110. ))
  18111. characterMakers.push(() => makeCharacter(
  18112. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18113. {
  18114. front: {
  18115. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18116. weight: math.unit(184, "lb"),
  18117. name: "Front",
  18118. image: {
  18119. source: "./media/characters/xang/front.svg",
  18120. extra: 845 / 755
  18121. }
  18122. },
  18123. },
  18124. [
  18125. {
  18126. name: "Normal",
  18127. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18128. default: true
  18129. },
  18130. {
  18131. name: "Macro",
  18132. height: math.unit(0.935 * 146, "feet")
  18133. },
  18134. {
  18135. name: "Megamacro",
  18136. height: math.unit(0.935 * 3, "miles")
  18137. },
  18138. ]
  18139. ))
  18140. characterMakers.push(() => makeCharacter(
  18141. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18142. {
  18143. frontDressed: {
  18144. height: math.unit(5 + 7 / 12, "feet"),
  18145. weight: math.unit(140, "lb"),
  18146. name: "Front (Dressed)",
  18147. image: {
  18148. source: "./media/characters/doc-weardno/front-dressed.svg",
  18149. extra: 263 / 234
  18150. }
  18151. },
  18152. backDressed: {
  18153. height: math.unit(5 + 7 / 12, "feet"),
  18154. weight: math.unit(140, "lb"),
  18155. name: "Back (Dressed)",
  18156. image: {
  18157. source: "./media/characters/doc-weardno/back-dressed.svg",
  18158. extra: 266 / 238
  18159. }
  18160. },
  18161. front: {
  18162. height: math.unit(5 + 7 / 12, "feet"),
  18163. weight: math.unit(140, "lb"),
  18164. name: "Front",
  18165. image: {
  18166. source: "./media/characters/doc-weardno/front.svg",
  18167. extra: 254 / 233
  18168. }
  18169. },
  18170. },
  18171. [
  18172. {
  18173. name: "Micro",
  18174. height: math.unit(3, "inches")
  18175. },
  18176. {
  18177. name: "Normal",
  18178. height: math.unit(5 + 7 / 12, "feet"),
  18179. default: true
  18180. },
  18181. {
  18182. name: "Macro",
  18183. height: math.unit(25, "feet")
  18184. },
  18185. {
  18186. name: "Megamacro",
  18187. height: math.unit(2, "miles")
  18188. },
  18189. ]
  18190. ))
  18191. characterMakers.push(() => makeCharacter(
  18192. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18193. {
  18194. front: {
  18195. height: math.unit(6 + 2 / 12, "feet"),
  18196. weight: math.unit(153, "lb"),
  18197. name: "Front",
  18198. image: {
  18199. source: "./media/characters/seth-whilst/front.svg",
  18200. bottom: 0.07
  18201. }
  18202. },
  18203. },
  18204. [
  18205. {
  18206. name: "Micro",
  18207. height: math.unit(5, "inches")
  18208. },
  18209. {
  18210. name: "Normal",
  18211. height: math.unit(6 + 2 / 12, "feet"),
  18212. default: true
  18213. },
  18214. ]
  18215. ))
  18216. characterMakers.push(() => makeCharacter(
  18217. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18218. {
  18219. front: {
  18220. height: math.unit(3, "inches"),
  18221. weight: math.unit(8, "grams"),
  18222. name: "Front",
  18223. image: {
  18224. source: "./media/characters/pocket-jabari/front.svg",
  18225. extra: 1024 / 974,
  18226. bottom: 0.039
  18227. }
  18228. },
  18229. },
  18230. [
  18231. {
  18232. name: "Minimicro",
  18233. height: math.unit(8, "mm")
  18234. },
  18235. {
  18236. name: "Micro",
  18237. height: math.unit(3, "inches"),
  18238. default: true
  18239. },
  18240. {
  18241. name: "Normal",
  18242. height: math.unit(3, "feet")
  18243. },
  18244. ]
  18245. ))
  18246. characterMakers.push(() => makeCharacter(
  18247. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18248. {
  18249. front: {
  18250. height: math.unit(15, "feet"),
  18251. weight: math.unit(3280, "lb"),
  18252. name: "Front",
  18253. image: {
  18254. source: "./media/characters/sapphy/front.svg",
  18255. extra: 671 / 577,
  18256. bottom: 0.085
  18257. }
  18258. },
  18259. back: {
  18260. height: math.unit(15, "feet"),
  18261. weight: math.unit(3280, "lb"),
  18262. name: "Back",
  18263. image: {
  18264. source: "./media/characters/sapphy/back.svg",
  18265. extra: 631 / 607,
  18266. bottom: 0.045
  18267. }
  18268. },
  18269. },
  18270. [
  18271. {
  18272. name: "Normal",
  18273. height: math.unit(15, "feet")
  18274. },
  18275. {
  18276. name: "Casual Macro",
  18277. height: math.unit(120, "feet")
  18278. },
  18279. {
  18280. name: "Macro",
  18281. height: math.unit(2150, "feet"),
  18282. default: true
  18283. },
  18284. {
  18285. name: "Megamacro",
  18286. height: math.unit(8, "miles")
  18287. },
  18288. {
  18289. name: "Galaxy Mom",
  18290. height: math.unit(6, "megalightyears")
  18291. },
  18292. ]
  18293. ))
  18294. characterMakers.push(() => makeCharacter(
  18295. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  18296. {
  18297. front: {
  18298. height: math.unit(6, "feet"),
  18299. weight: math.unit(170, "lb"),
  18300. name: "Front",
  18301. image: {
  18302. source: "./media/characters/kiro/front.svg",
  18303. extra: 1064 / 1012,
  18304. bottom: 0.052
  18305. }
  18306. },
  18307. },
  18308. [
  18309. {
  18310. name: "Micro",
  18311. height: math.unit(6, "inches")
  18312. },
  18313. {
  18314. name: "Normal",
  18315. height: math.unit(6, "feet"),
  18316. default: true
  18317. },
  18318. {
  18319. name: "Macro",
  18320. height: math.unit(72, "feet")
  18321. },
  18322. ]
  18323. ))
  18324. characterMakers.push(() => makeCharacter(
  18325. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18326. {
  18327. front: {
  18328. height: math.unit(5 + 9 / 12, "feet"),
  18329. weight: math.unit(175, "lb"),
  18330. name: "Front",
  18331. image: {
  18332. source: "./media/characters/irishfox/front.svg",
  18333. extra: 1912 / 1680,
  18334. bottom: 0.02
  18335. }
  18336. },
  18337. },
  18338. [
  18339. {
  18340. name: "Nano",
  18341. height: math.unit(1, "mm")
  18342. },
  18343. {
  18344. name: "Micro",
  18345. height: math.unit(2, "inches")
  18346. },
  18347. {
  18348. name: "Normal",
  18349. height: math.unit(5 + 9 / 12, "feet"),
  18350. default: true
  18351. },
  18352. {
  18353. name: "Macro",
  18354. height: math.unit(45, "feet")
  18355. },
  18356. ]
  18357. ))
  18358. characterMakers.push(() => makeCharacter(
  18359. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18360. {
  18361. front: {
  18362. height: math.unit(6 + 1 / 12, "feet"),
  18363. weight: math.unit(75, "lb"),
  18364. name: "Front",
  18365. image: {
  18366. source: "./media/characters/aronai-sieyes/front.svg",
  18367. extra: 1556 / 1480,
  18368. bottom: 0.015
  18369. }
  18370. },
  18371. side: {
  18372. height: math.unit(6 + 1 / 12, "feet"),
  18373. weight: math.unit(75, "lb"),
  18374. name: "Side",
  18375. image: {
  18376. source: "./media/characters/aronai-sieyes/side.svg",
  18377. extra: 1433 / 1390,
  18378. bottom: 0.0393
  18379. }
  18380. },
  18381. back: {
  18382. height: math.unit(6 + 1 / 12, "feet"),
  18383. weight: math.unit(75, "lb"),
  18384. name: "Back",
  18385. image: {
  18386. source: "./media/characters/aronai-sieyes/back.svg",
  18387. extra: 1544 / 1494,
  18388. bottom: 0.02
  18389. }
  18390. },
  18391. frontClothed: {
  18392. height: math.unit(6 + 1 / 12, "feet"),
  18393. weight: math.unit(75, "lb"),
  18394. name: "Front (Clothed)",
  18395. image: {
  18396. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18397. extra: 1582 / 1527
  18398. }
  18399. },
  18400. feral: {
  18401. height: math.unit(18, "feet"),
  18402. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18403. name: "Feral",
  18404. image: {
  18405. source: "./media/characters/aronai-sieyes/feral.svg",
  18406. extra: 1530 / 1240,
  18407. bottom: 0.035
  18408. }
  18409. },
  18410. },
  18411. [
  18412. {
  18413. name: "Micro",
  18414. height: math.unit(2, "inches")
  18415. },
  18416. {
  18417. name: "Normal",
  18418. height: math.unit(6 + 1 / 12, "feet"),
  18419. default: true
  18420. }
  18421. ]
  18422. ))
  18423. characterMakers.push(() => makeCharacter(
  18424. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18425. {
  18426. front: {
  18427. height: math.unit(12, "feet"),
  18428. weight: math.unit(410, "kg"),
  18429. name: "Front",
  18430. image: {
  18431. source: "./media/characters/xuna/front.svg",
  18432. extra: 2184 / 1980
  18433. }
  18434. },
  18435. side: {
  18436. height: math.unit(12, "feet"),
  18437. weight: math.unit(410, "kg"),
  18438. name: "Side",
  18439. image: {
  18440. source: "./media/characters/xuna/side.svg",
  18441. extra: 2184 / 1980
  18442. }
  18443. },
  18444. back: {
  18445. height: math.unit(12, "feet"),
  18446. weight: math.unit(410, "kg"),
  18447. name: "Back",
  18448. image: {
  18449. source: "./media/characters/xuna/back.svg",
  18450. extra: 2184 / 1980
  18451. }
  18452. },
  18453. },
  18454. [
  18455. {
  18456. name: "Nano glow",
  18457. height: math.unit(10, "nm")
  18458. },
  18459. {
  18460. name: "Micro floof",
  18461. height: math.unit(0.3, "m")
  18462. },
  18463. {
  18464. name: "Huggable softy boi",
  18465. height: math.unit(3.6576, "m"),
  18466. default: true
  18467. },
  18468. {
  18469. name: "Admirable floof",
  18470. height: math.unit(80, "meters")
  18471. },
  18472. {
  18473. name: "Gentle macro",
  18474. height: math.unit(300, "meters")
  18475. },
  18476. {
  18477. name: "Very careful floof",
  18478. height: math.unit(3200, "meters")
  18479. },
  18480. {
  18481. name: "The mega floof",
  18482. height: math.unit(36000, "meters")
  18483. },
  18484. {
  18485. name: "Giga-fur-Wicker",
  18486. height: math.unit(4800000, "meters")
  18487. },
  18488. {
  18489. name: "Licky world",
  18490. height: math.unit(20000000, "meters")
  18491. },
  18492. {
  18493. name: "Floofy cyan sun",
  18494. height: math.unit(1500000000, "meters")
  18495. },
  18496. {
  18497. name: "Milky Wicker",
  18498. height: math.unit(1000000000000000000000, "meters")
  18499. },
  18500. {
  18501. name: "The observing Wicker",
  18502. height: math.unit(999999999999999999999999999, "meters")
  18503. },
  18504. ]
  18505. ))
  18506. characterMakers.push(() => makeCharacter(
  18507. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18508. {
  18509. front: {
  18510. height: math.unit(5 + 9 / 12, "feet"),
  18511. weight: math.unit(150, "lb"),
  18512. name: "Front",
  18513. image: {
  18514. source: "./media/characters/arokha-sieyes/front.svg",
  18515. extra: 1425 / 1284,
  18516. bottom: 0.05
  18517. }
  18518. },
  18519. },
  18520. [
  18521. {
  18522. name: "Normal",
  18523. height: math.unit(5 + 9 / 12, "feet")
  18524. },
  18525. {
  18526. name: "Macro",
  18527. height: math.unit(30, "meters"),
  18528. default: true
  18529. },
  18530. ]
  18531. ))
  18532. characterMakers.push(() => makeCharacter(
  18533. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18534. {
  18535. front: {
  18536. height: math.unit(6, "feet"),
  18537. weight: math.unit(180, "lb"),
  18538. name: "Front",
  18539. image: {
  18540. source: "./media/characters/arokh-sieyes/front.svg",
  18541. extra: 1830 / 1769,
  18542. bottom: 0.01
  18543. }
  18544. },
  18545. },
  18546. [
  18547. {
  18548. name: "Normal",
  18549. height: math.unit(6, "feet")
  18550. },
  18551. {
  18552. name: "Macro",
  18553. height: math.unit(30, "meters"),
  18554. default: true
  18555. },
  18556. ]
  18557. ))
  18558. characterMakers.push(() => makeCharacter(
  18559. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18560. {
  18561. side: {
  18562. height: math.unit(13 + 1 / 12, "feet"),
  18563. weight: math.unit(8.5, "tonnes"),
  18564. name: "Side",
  18565. image: {
  18566. source: "./media/characters/goldeneye/side.svg",
  18567. extra: 1182 / 778,
  18568. bottom: 0.067
  18569. }
  18570. },
  18571. paw: {
  18572. height: math.unit(3.4, "feet"),
  18573. name: "Paw",
  18574. image: {
  18575. source: "./media/characters/goldeneye/paw.svg"
  18576. }
  18577. },
  18578. },
  18579. [
  18580. {
  18581. name: "Normal",
  18582. height: math.unit(13 + 1 / 12, "feet"),
  18583. default: true
  18584. },
  18585. ]
  18586. ))
  18587. characterMakers.push(() => makeCharacter(
  18588. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18589. {
  18590. front: {
  18591. height: math.unit(6 + 1 / 12, "feet"),
  18592. weight: math.unit(210, "lb"),
  18593. name: "Front",
  18594. image: {
  18595. source: "./media/characters/leonardo-lycheborne/front.svg",
  18596. extra: 390 / 365,
  18597. bottom: 0.032
  18598. }
  18599. },
  18600. side: {
  18601. height: math.unit(6 + 1 / 12, "feet"),
  18602. weight: math.unit(210, "lb"),
  18603. name: "Side",
  18604. image: {
  18605. source: "./media/characters/leonardo-lycheborne/side.svg",
  18606. extra: 390 / 365,
  18607. bottom: 0.005
  18608. }
  18609. },
  18610. back: {
  18611. height: math.unit(6 + 1 / 12, "feet"),
  18612. weight: math.unit(210, "lb"),
  18613. name: "Back",
  18614. image: {
  18615. source: "./media/characters/leonardo-lycheborne/back.svg",
  18616. extra: 392 / 366,
  18617. bottom: 0.01
  18618. }
  18619. },
  18620. hand: {
  18621. height: math.unit(1.08, "feet"),
  18622. name: "Hand",
  18623. image: {
  18624. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18625. }
  18626. },
  18627. foot: {
  18628. height: math.unit(1.32, "feet"),
  18629. name: "Foot",
  18630. image: {
  18631. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18632. }
  18633. },
  18634. were: {
  18635. height: math.unit(20, "feet"),
  18636. weight: math.unit(7800, "lb"),
  18637. name: "Were",
  18638. image: {
  18639. source: "./media/characters/leonardo-lycheborne/were.svg",
  18640. extra: 308 / 294,
  18641. bottom: 0.048
  18642. }
  18643. },
  18644. feral: {
  18645. height: math.unit(7.5, "feet"),
  18646. weight: math.unit(600, "lb"),
  18647. name: "Feral",
  18648. image: {
  18649. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18650. extra: 210 / 186,
  18651. bottom: 0.108
  18652. }
  18653. },
  18654. taur: {
  18655. height: math.unit(11, "feet"),
  18656. weight: math.unit(3300, "lb"),
  18657. name: "Taur",
  18658. image: {
  18659. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18660. extra: 320 / 303,
  18661. bottom: 0.025
  18662. }
  18663. },
  18664. barghest: {
  18665. height: math.unit(11, "feet"),
  18666. weight: math.unit(1300, "lb"),
  18667. name: "Barghest",
  18668. image: {
  18669. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18670. extra: 323 / 302,
  18671. bottom: 0.027
  18672. }
  18673. },
  18674. dick: {
  18675. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18676. name: "Dick",
  18677. image: {
  18678. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18679. }
  18680. },
  18681. dickWere: {
  18682. height: math.unit((20) / 3.8, "feet"),
  18683. name: "Dick (Were)",
  18684. image: {
  18685. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18686. }
  18687. },
  18688. },
  18689. [
  18690. {
  18691. name: "Normal",
  18692. height: math.unit(6 + 1 / 12, "feet"),
  18693. default: true
  18694. },
  18695. ]
  18696. ))
  18697. characterMakers.push(() => makeCharacter(
  18698. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18699. {
  18700. front: {
  18701. height: math.unit(10, "feet"),
  18702. weight: math.unit(350, "lb"),
  18703. name: "Front",
  18704. image: {
  18705. source: "./media/characters/jet/front.svg",
  18706. extra: 2050 / 1980,
  18707. bottom: 0.013
  18708. }
  18709. },
  18710. back: {
  18711. height: math.unit(10, "feet"),
  18712. weight: math.unit(350, "lb"),
  18713. name: "Back",
  18714. image: {
  18715. source: "./media/characters/jet/back.svg",
  18716. extra: 2050 / 1980,
  18717. bottom: 0.013
  18718. }
  18719. },
  18720. },
  18721. [
  18722. {
  18723. name: "Micro",
  18724. height: math.unit(6, "inches")
  18725. },
  18726. {
  18727. name: "Normal",
  18728. height: math.unit(10, "feet"),
  18729. default: true
  18730. },
  18731. {
  18732. name: "Macro",
  18733. height: math.unit(100, "feet")
  18734. },
  18735. ]
  18736. ))
  18737. characterMakers.push(() => makeCharacter(
  18738. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18739. {
  18740. front: {
  18741. height: math.unit(15, "feet"),
  18742. weight: math.unit(2800, "lb"),
  18743. name: "Front",
  18744. image: {
  18745. source: "./media/characters/tanarath/front.svg",
  18746. extra: 2392 / 2220,
  18747. bottom: 0.03
  18748. }
  18749. },
  18750. back: {
  18751. height: math.unit(15, "feet"),
  18752. weight: math.unit(2800, "lb"),
  18753. name: "Back",
  18754. image: {
  18755. source: "./media/characters/tanarath/back.svg",
  18756. extra: 2392 / 2220,
  18757. bottom: 0.03
  18758. }
  18759. },
  18760. },
  18761. [
  18762. {
  18763. name: "Normal",
  18764. height: math.unit(15, "feet"),
  18765. default: true
  18766. },
  18767. ]
  18768. ))
  18769. characterMakers.push(() => makeCharacter(
  18770. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18771. {
  18772. front: {
  18773. height: math.unit(7 + 1 / 12, "feet"),
  18774. weight: math.unit(175, "lb"),
  18775. name: "Front",
  18776. image: {
  18777. source: "./media/characters/patty-cattybatty/front.svg",
  18778. extra: 908 / 874,
  18779. bottom: 0.025
  18780. }
  18781. },
  18782. },
  18783. [
  18784. {
  18785. name: "Micro",
  18786. height: math.unit(1, "inch")
  18787. },
  18788. {
  18789. name: "Normal",
  18790. height: math.unit(7 + 1 / 12, "feet")
  18791. },
  18792. {
  18793. name: "Mini Macro",
  18794. height: math.unit(155, "feet")
  18795. },
  18796. {
  18797. name: "Macro",
  18798. height: math.unit(1077, "feet")
  18799. },
  18800. {
  18801. name: "Mega Macro",
  18802. height: math.unit(47650, "feet"),
  18803. default: true
  18804. },
  18805. {
  18806. name: "Giga Macro",
  18807. height: math.unit(440, "miles")
  18808. },
  18809. {
  18810. name: "Tera Macro",
  18811. height: math.unit(8700, "miles")
  18812. },
  18813. {
  18814. name: "Planetary Macro",
  18815. height: math.unit(32700, "miles")
  18816. },
  18817. {
  18818. name: "Solar Macro",
  18819. height: math.unit(550000, "miles")
  18820. },
  18821. {
  18822. name: "Celestial Macro",
  18823. height: math.unit(2.5, "AU")
  18824. },
  18825. ]
  18826. ))
  18827. characterMakers.push(() => makeCharacter(
  18828. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18829. {
  18830. front: {
  18831. height: math.unit(4 + 5 / 12, "feet"),
  18832. weight: math.unit(90, "lb"),
  18833. name: "Front",
  18834. image: {
  18835. source: "./media/characters/cappu/front.svg",
  18836. extra: 1247 / 1152,
  18837. bottom: 0.012
  18838. }
  18839. },
  18840. },
  18841. [
  18842. {
  18843. name: "Normal",
  18844. height: math.unit(4 + 5 / 12, "feet"),
  18845. default: true
  18846. },
  18847. ]
  18848. ))
  18849. characterMakers.push(() => makeCharacter(
  18850. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18851. {
  18852. frontDressed: {
  18853. height: math.unit(70, "cm"),
  18854. weight: math.unit(6, "kg"),
  18855. name: "Front (Dressed)",
  18856. image: {
  18857. source: "./media/characters/sebi/front-dressed.svg",
  18858. extra: 713.5 / 686.5,
  18859. bottom: 0.003
  18860. }
  18861. },
  18862. front: {
  18863. height: math.unit(70, "cm"),
  18864. weight: math.unit(5, "kg"),
  18865. name: "Front",
  18866. image: {
  18867. source: "./media/characters/sebi/front.svg",
  18868. extra: 713.5 / 686.5,
  18869. bottom: 0.003
  18870. }
  18871. }
  18872. },
  18873. [
  18874. {
  18875. name: "Normal",
  18876. height: math.unit(70, "cm"),
  18877. default: true
  18878. },
  18879. {
  18880. name: "Macro",
  18881. height: math.unit(8, "meters")
  18882. },
  18883. ]
  18884. ))
  18885. characterMakers.push(() => makeCharacter(
  18886. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18887. {
  18888. front: {
  18889. height: math.unit(6, "feet"),
  18890. weight: math.unit(150, "lb"),
  18891. name: "Front",
  18892. image: {
  18893. source: "./media/characters/typhek/front.svg",
  18894. extra: 1948 / 1929,
  18895. bottom: 0.025
  18896. }
  18897. },
  18898. side: {
  18899. height: math.unit(6, "feet"),
  18900. weight: math.unit(150, "lb"),
  18901. name: "Side",
  18902. image: {
  18903. source: "./media/characters/typhek/side.svg",
  18904. extra: 2034 / 2010,
  18905. bottom: 0.003
  18906. }
  18907. },
  18908. back: {
  18909. height: math.unit(6, "feet"),
  18910. weight: math.unit(150, "lb"),
  18911. name: "Back",
  18912. image: {
  18913. source: "./media/characters/typhek/back.svg",
  18914. extra: 2005 / 1978,
  18915. bottom: 0.004
  18916. }
  18917. },
  18918. palm: {
  18919. height: math.unit(1.2, "feet"),
  18920. name: "Palm",
  18921. image: {
  18922. source: "./media/characters/typhek/palm.svg"
  18923. }
  18924. },
  18925. fist: {
  18926. height: math.unit(1.1, "feet"),
  18927. name: "Fist",
  18928. image: {
  18929. source: "./media/characters/typhek/fist.svg"
  18930. }
  18931. },
  18932. foot: {
  18933. height: math.unit(1.57, "feet"),
  18934. name: "Foot",
  18935. image: {
  18936. source: "./media/characters/typhek/foot.svg"
  18937. }
  18938. },
  18939. sole: {
  18940. height: math.unit(2.05, "feet"),
  18941. name: "Sole",
  18942. image: {
  18943. source: "./media/characters/typhek/sole.svg"
  18944. }
  18945. },
  18946. },
  18947. [
  18948. {
  18949. name: "Macro",
  18950. height: math.unit(40, "stories"),
  18951. default: true
  18952. },
  18953. {
  18954. name: "Megamacro",
  18955. height: math.unit(1, "mile")
  18956. },
  18957. {
  18958. name: "Gigamacro",
  18959. height: math.unit(4000, "solarradii")
  18960. },
  18961. {
  18962. name: "Universal",
  18963. height: math.unit(1.1, "universes")
  18964. }
  18965. ]
  18966. ))
  18967. characterMakers.push(() => makeCharacter(
  18968. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18969. {
  18970. side: {
  18971. height: math.unit(5 + 7 / 12, "feet"),
  18972. weight: math.unit(150, "lb"),
  18973. name: "Side",
  18974. image: {
  18975. source: "./media/characters/kassy/side.svg",
  18976. extra: 1280 / 1225,
  18977. bottom: 0.002
  18978. }
  18979. },
  18980. front: {
  18981. height: math.unit(5 + 7 / 12, "feet"),
  18982. weight: math.unit(150, "lb"),
  18983. name: "Front",
  18984. image: {
  18985. source: "./media/characters/kassy/front.svg",
  18986. extra: 1280 / 1225,
  18987. bottom: 0.025
  18988. }
  18989. },
  18990. back: {
  18991. height: math.unit(5 + 7 / 12, "feet"),
  18992. weight: math.unit(150, "lb"),
  18993. name: "Back",
  18994. image: {
  18995. source: "./media/characters/kassy/back.svg",
  18996. extra: 1280 / 1225,
  18997. bottom: 0.002
  18998. }
  18999. },
  19000. foot: {
  19001. height: math.unit(1.266, "feet"),
  19002. name: "Foot",
  19003. image: {
  19004. source: "./media/characters/kassy/foot.svg"
  19005. }
  19006. },
  19007. },
  19008. [
  19009. {
  19010. name: "Normal",
  19011. height: math.unit(5 + 7 / 12, "feet")
  19012. },
  19013. {
  19014. name: "Macro",
  19015. height: math.unit(137, "feet"),
  19016. default: true
  19017. },
  19018. {
  19019. name: "Megamacro",
  19020. height: math.unit(1, "mile")
  19021. },
  19022. ]
  19023. ))
  19024. characterMakers.push(() => makeCharacter(
  19025. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19026. {
  19027. front: {
  19028. height: math.unit(6 + 1 / 12, "feet"),
  19029. weight: math.unit(200, "lb"),
  19030. name: "Front",
  19031. image: {
  19032. source: "./media/characters/neil/front.svg",
  19033. extra: 1326 / 1250,
  19034. bottom: 0.023
  19035. }
  19036. },
  19037. },
  19038. [
  19039. {
  19040. name: "Normal",
  19041. height: math.unit(6 + 1 / 12, "feet"),
  19042. default: true
  19043. },
  19044. {
  19045. name: "Macro",
  19046. height: math.unit(200, "feet")
  19047. },
  19048. ]
  19049. ))
  19050. characterMakers.push(() => makeCharacter(
  19051. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19052. {
  19053. front: {
  19054. height: math.unit(5 + 9 / 12, "feet"),
  19055. weight: math.unit(190, "lb"),
  19056. name: "Front",
  19057. image: {
  19058. source: "./media/characters/atticus/front.svg",
  19059. extra: 2934 / 2785,
  19060. bottom: 0.025
  19061. }
  19062. },
  19063. },
  19064. [
  19065. {
  19066. name: "Normal",
  19067. height: math.unit(5 + 9 / 12, "feet"),
  19068. default: true
  19069. },
  19070. {
  19071. name: "Macro",
  19072. height: math.unit(180, "feet")
  19073. },
  19074. ]
  19075. ))
  19076. characterMakers.push(() => makeCharacter(
  19077. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19078. {
  19079. side: {
  19080. height: math.unit(9, "feet"),
  19081. weight: math.unit(650, "lb"),
  19082. name: "Side",
  19083. image: {
  19084. source: "./media/characters/milo/side.svg",
  19085. extra: 2644 / 2310,
  19086. bottom: 0.032
  19087. }
  19088. },
  19089. },
  19090. [
  19091. {
  19092. name: "Normal",
  19093. height: math.unit(9, "feet"),
  19094. default: true
  19095. },
  19096. {
  19097. name: "Macro",
  19098. height: math.unit(300, "feet")
  19099. },
  19100. ]
  19101. ))
  19102. characterMakers.push(() => makeCharacter(
  19103. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19104. {
  19105. side: {
  19106. height: math.unit(8, "meters"),
  19107. weight: math.unit(90000, "kg"),
  19108. name: "Side",
  19109. image: {
  19110. source: "./media/characters/ijzer/side.svg",
  19111. extra: 2756 / 1600,
  19112. bottom: 0.01
  19113. }
  19114. },
  19115. },
  19116. [
  19117. {
  19118. name: "Small",
  19119. height: math.unit(3, "meters")
  19120. },
  19121. {
  19122. name: "Normal",
  19123. height: math.unit(8, "meters"),
  19124. default: true
  19125. },
  19126. {
  19127. name: "Normal+",
  19128. height: math.unit(10, "meters")
  19129. },
  19130. {
  19131. name: "Bigger",
  19132. height: math.unit(24, "meters")
  19133. },
  19134. {
  19135. name: "Huge",
  19136. height: math.unit(80, "meters")
  19137. },
  19138. ]
  19139. ))
  19140. characterMakers.push(() => makeCharacter(
  19141. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19142. {
  19143. front: {
  19144. height: math.unit(6 + 2 / 12, "feet"),
  19145. weight: math.unit(153, "lb"),
  19146. name: "Front",
  19147. image: {
  19148. source: "./media/characters/luca-cervicum/front.svg",
  19149. extra: 370 / 327,
  19150. bottom: 0.015
  19151. }
  19152. },
  19153. back: {
  19154. height: math.unit(6 + 2 / 12, "feet"),
  19155. weight: math.unit(153, "lb"),
  19156. name: "Back",
  19157. image: {
  19158. source: "./media/characters/luca-cervicum/back.svg",
  19159. extra: 367 / 333,
  19160. bottom: 0.005
  19161. }
  19162. },
  19163. frontGear: {
  19164. height: math.unit(6 + 2 / 12, "feet"),
  19165. weight: math.unit(173, "lb"),
  19166. name: "Front (Gear)",
  19167. image: {
  19168. source: "./media/characters/luca-cervicum/front-gear.svg",
  19169. extra: 377 / 333,
  19170. bottom: 0.006
  19171. }
  19172. },
  19173. },
  19174. [
  19175. {
  19176. name: "Normal",
  19177. height: math.unit(6 + 2 / 12, "feet"),
  19178. default: true
  19179. },
  19180. ]
  19181. ))
  19182. characterMakers.push(() => makeCharacter(
  19183. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19184. {
  19185. front: {
  19186. height: math.unit(6 + 1 / 12, "feet"),
  19187. weight: math.unit(304, "lb"),
  19188. name: "Front",
  19189. image: {
  19190. source: "./media/characters/oliver/front.svg",
  19191. extra: 157 / 143,
  19192. bottom: 0.08
  19193. }
  19194. },
  19195. },
  19196. [
  19197. {
  19198. name: "Normal",
  19199. height: math.unit(6 + 1 / 12, "feet"),
  19200. default: true
  19201. },
  19202. ]
  19203. ))
  19204. characterMakers.push(() => makeCharacter(
  19205. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19206. {
  19207. front: {
  19208. height: math.unit(5 + 7 / 12, "feet"),
  19209. weight: math.unit(140, "lb"),
  19210. name: "Front",
  19211. image: {
  19212. source: "./media/characters/shane/front.svg",
  19213. extra: 304 / 289,
  19214. bottom: 0.005
  19215. }
  19216. },
  19217. },
  19218. [
  19219. {
  19220. name: "Normal",
  19221. height: math.unit(5 + 7 / 12, "feet"),
  19222. default: true
  19223. },
  19224. ]
  19225. ))
  19226. characterMakers.push(() => makeCharacter(
  19227. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19228. {
  19229. front: {
  19230. height: math.unit(5 + 9 / 12, "feet"),
  19231. weight: math.unit(178, "lb"),
  19232. name: "Front",
  19233. image: {
  19234. source: "./media/characters/shin/front.svg",
  19235. extra: 159 / 151,
  19236. bottom: 0.015
  19237. }
  19238. },
  19239. },
  19240. [
  19241. {
  19242. name: "Normal",
  19243. height: math.unit(5 + 9 / 12, "feet"),
  19244. default: true
  19245. },
  19246. ]
  19247. ))
  19248. characterMakers.push(() => makeCharacter(
  19249. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19250. {
  19251. front: {
  19252. height: math.unit(5 + 10 / 12, "feet"),
  19253. weight: math.unit(168, "lb"),
  19254. name: "Front",
  19255. image: {
  19256. source: "./media/characters/xerxes/front.svg",
  19257. extra: 282 / 260,
  19258. bottom: 0.045
  19259. }
  19260. },
  19261. },
  19262. [
  19263. {
  19264. name: "Normal",
  19265. height: math.unit(5 + 10 / 12, "feet"),
  19266. default: true
  19267. },
  19268. ]
  19269. ))
  19270. characterMakers.push(() => makeCharacter(
  19271. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19272. {
  19273. front: {
  19274. height: math.unit(6 + 7 / 12, "feet"),
  19275. weight: math.unit(208, "lb"),
  19276. name: "Front",
  19277. image: {
  19278. source: "./media/characters/chaska/front.svg",
  19279. extra: 332 / 319,
  19280. bottom: 0.015
  19281. }
  19282. },
  19283. },
  19284. [
  19285. {
  19286. name: "Normal",
  19287. height: math.unit(6 + 7 / 12, "feet"),
  19288. default: true
  19289. },
  19290. ]
  19291. ))
  19292. characterMakers.push(() => makeCharacter(
  19293. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19294. {
  19295. front: {
  19296. height: math.unit(5 + 8 / 12, "feet"),
  19297. weight: math.unit(208, "lb"),
  19298. name: "Front",
  19299. image: {
  19300. source: "./media/characters/enuk/front.svg",
  19301. extra: 437 / 406,
  19302. bottom: 0.02
  19303. }
  19304. },
  19305. },
  19306. [
  19307. {
  19308. name: "Normal",
  19309. height: math.unit(5 + 8 / 12, "feet"),
  19310. default: true
  19311. },
  19312. ]
  19313. ))
  19314. characterMakers.push(() => makeCharacter(
  19315. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19316. {
  19317. front: {
  19318. height: math.unit(5 + 10 / 12, "feet"),
  19319. weight: math.unit(252, "lb"),
  19320. name: "Front",
  19321. image: {
  19322. source: "./media/characters/bruun/front.svg",
  19323. extra: 197 / 187,
  19324. bottom: 0.012
  19325. }
  19326. },
  19327. },
  19328. [
  19329. {
  19330. name: "Normal",
  19331. height: math.unit(5 + 10 / 12, "feet"),
  19332. default: true
  19333. },
  19334. ]
  19335. ))
  19336. characterMakers.push(() => makeCharacter(
  19337. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19338. {
  19339. front: {
  19340. height: math.unit(6 + 10 / 12, "feet"),
  19341. weight: math.unit(255, "lb"),
  19342. name: "Front",
  19343. image: {
  19344. source: "./media/characters/alexeev/front.svg",
  19345. extra: 213 / 200,
  19346. bottom: 0.05
  19347. }
  19348. },
  19349. },
  19350. [
  19351. {
  19352. name: "Normal",
  19353. height: math.unit(6 + 10 / 12, "feet"),
  19354. default: true
  19355. },
  19356. ]
  19357. ))
  19358. characterMakers.push(() => makeCharacter(
  19359. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19360. {
  19361. front: {
  19362. height: math.unit(2 + 8 / 12, "feet"),
  19363. weight: math.unit(22, "lb"),
  19364. name: "Front",
  19365. image: {
  19366. source: "./media/characters/evelyn/front.svg",
  19367. extra: 208 / 180
  19368. }
  19369. },
  19370. },
  19371. [
  19372. {
  19373. name: "Normal",
  19374. height: math.unit(2 + 8 / 12, "feet"),
  19375. default: true
  19376. },
  19377. ]
  19378. ))
  19379. characterMakers.push(() => makeCharacter(
  19380. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19381. {
  19382. front: {
  19383. height: math.unit(5 + 9 / 12, "feet"),
  19384. weight: math.unit(139, "lb"),
  19385. name: "Front",
  19386. image: {
  19387. source: "./media/characters/inca/front.svg",
  19388. extra: 294 / 291,
  19389. bottom: 0.03
  19390. }
  19391. },
  19392. },
  19393. [
  19394. {
  19395. name: "Normal",
  19396. height: math.unit(5 + 9 / 12, "feet"),
  19397. default: true
  19398. },
  19399. ]
  19400. ))
  19401. characterMakers.push(() => makeCharacter(
  19402. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19403. {
  19404. front: {
  19405. height: math.unit(5 + 1 / 12, "feet"),
  19406. weight: math.unit(84, "lb"),
  19407. name: "Front",
  19408. image: {
  19409. source: "./media/characters/magdalene/front.svg",
  19410. extra: 293 / 273
  19411. }
  19412. },
  19413. },
  19414. [
  19415. {
  19416. name: "Normal",
  19417. height: math.unit(5 + 1 / 12, "feet"),
  19418. default: true
  19419. },
  19420. ]
  19421. ))
  19422. characterMakers.push(() => makeCharacter(
  19423. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19424. {
  19425. front: {
  19426. height: math.unit(6 + 3 / 12, "feet"),
  19427. weight: math.unit(185, "lb"),
  19428. name: "Front",
  19429. image: {
  19430. source: "./media/characters/mera/front.svg",
  19431. extra: 291 / 277,
  19432. bottom: 0.03
  19433. }
  19434. },
  19435. },
  19436. [
  19437. {
  19438. name: "Normal",
  19439. height: math.unit(6 + 3 / 12, "feet"),
  19440. default: true
  19441. },
  19442. ]
  19443. ))
  19444. characterMakers.push(() => makeCharacter(
  19445. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19446. {
  19447. front: {
  19448. height: math.unit(6 + 7 / 12, "feet"),
  19449. weight: math.unit(160, "lb"),
  19450. name: "Front",
  19451. image: {
  19452. source: "./media/characters/ceres/front.svg",
  19453. extra: 1023 / 950,
  19454. bottom: 0.027
  19455. }
  19456. },
  19457. back: {
  19458. height: math.unit(6 + 7 / 12, "feet"),
  19459. weight: math.unit(160, "lb"),
  19460. name: "Back",
  19461. image: {
  19462. source: "./media/characters/ceres/back.svg",
  19463. extra: 1023 / 950
  19464. }
  19465. },
  19466. },
  19467. [
  19468. {
  19469. name: "Normal",
  19470. height: math.unit(6 + 7 / 12, "feet"),
  19471. default: true
  19472. },
  19473. ]
  19474. ))
  19475. characterMakers.push(() => makeCharacter(
  19476. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19477. {
  19478. front: {
  19479. height: math.unit(5 + 10 / 12, "feet"),
  19480. weight: math.unit(150, "lb"),
  19481. name: "Front",
  19482. image: {
  19483. source: "./media/characters/kris/front.svg",
  19484. extra: 885 / 803,
  19485. bottom: 0.03
  19486. }
  19487. },
  19488. },
  19489. [
  19490. {
  19491. name: "Normal",
  19492. height: math.unit(5 + 10 / 12, "feet"),
  19493. default: true
  19494. },
  19495. ]
  19496. ))
  19497. characterMakers.push(() => makeCharacter(
  19498. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19499. {
  19500. front: {
  19501. height: math.unit(7, "feet"),
  19502. weight: math.unit(120, "kg"),
  19503. name: "Front",
  19504. image: {
  19505. source: "./media/characters/taluthus/front.svg",
  19506. extra: 903 / 833,
  19507. bottom: 0.015
  19508. }
  19509. },
  19510. },
  19511. [
  19512. {
  19513. name: "Normal",
  19514. height: math.unit(7, "feet"),
  19515. default: true
  19516. },
  19517. {
  19518. name: "Macro",
  19519. height: math.unit(300, "feet")
  19520. },
  19521. ]
  19522. ))
  19523. characterMakers.push(() => makeCharacter(
  19524. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19525. {
  19526. front: {
  19527. height: math.unit(5 + 9 / 12, "feet"),
  19528. weight: math.unit(145, "lb"),
  19529. name: "Front",
  19530. image: {
  19531. source: "./media/characters/dawn/front.svg",
  19532. extra: 2094 / 2016,
  19533. bottom: 0.025
  19534. }
  19535. },
  19536. back: {
  19537. height: math.unit(5 + 9 / 12, "feet"),
  19538. weight: math.unit(160, "lb"),
  19539. name: "Back",
  19540. image: {
  19541. source: "./media/characters/dawn/back.svg",
  19542. extra: 2112 / 2080,
  19543. bottom: 0.005
  19544. }
  19545. },
  19546. },
  19547. [
  19548. {
  19549. name: "Normal",
  19550. height: math.unit(6 + 7 / 12, "feet"),
  19551. default: true
  19552. },
  19553. ]
  19554. ))
  19555. characterMakers.push(() => makeCharacter(
  19556. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19557. {
  19558. anthro: {
  19559. height: math.unit(8 + 3 / 12, "feet"),
  19560. weight: math.unit(450, "lb"),
  19561. name: "Anthro",
  19562. image: {
  19563. source: "./media/characters/arador/anthro.svg",
  19564. extra: 1835 / 1718,
  19565. bottom: 0.025
  19566. }
  19567. },
  19568. feral: {
  19569. height: math.unit(4, "feet"),
  19570. weight: math.unit(200, "lb"),
  19571. name: "Feral",
  19572. image: {
  19573. source: "./media/characters/arador/feral.svg",
  19574. extra: 1683 / 1514,
  19575. bottom: 0.07
  19576. }
  19577. },
  19578. },
  19579. [
  19580. {
  19581. name: "Normal",
  19582. height: math.unit(8 + 3 / 12, "feet")
  19583. },
  19584. {
  19585. name: "Macro",
  19586. height: math.unit(82.5, "feet"),
  19587. default: true
  19588. },
  19589. ]
  19590. ))
  19591. characterMakers.push(() => makeCharacter(
  19592. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19593. {
  19594. front: {
  19595. height: math.unit(5 + 10 / 12, "feet"),
  19596. weight: math.unit(125, "lb"),
  19597. name: "Front",
  19598. image: {
  19599. source: "./media/characters/dharsi/front.svg",
  19600. extra: 716 / 630,
  19601. bottom: 0.035
  19602. }
  19603. },
  19604. },
  19605. [
  19606. {
  19607. name: "Nano",
  19608. height: math.unit(100, "nm")
  19609. },
  19610. {
  19611. name: "Micro",
  19612. height: math.unit(2, "inches")
  19613. },
  19614. {
  19615. name: "Normal",
  19616. height: math.unit(5 + 10 / 12, "feet"),
  19617. default: true
  19618. },
  19619. {
  19620. name: "Macro",
  19621. height: math.unit(1000, "feet")
  19622. },
  19623. {
  19624. name: "Megamacro",
  19625. height: math.unit(10, "miles")
  19626. },
  19627. {
  19628. name: "Gigamacro",
  19629. height: math.unit(3000, "miles")
  19630. },
  19631. {
  19632. name: "Teramacro",
  19633. height: math.unit(500000, "miles")
  19634. },
  19635. {
  19636. name: "Teramacro+",
  19637. height: math.unit(30, "galaxies")
  19638. },
  19639. ]
  19640. ))
  19641. characterMakers.push(() => makeCharacter(
  19642. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19643. {
  19644. front: {
  19645. height: math.unit(6, "feet"),
  19646. weight: math.unit(150, "lb"),
  19647. name: "Front",
  19648. image: {
  19649. source: "./media/characters/deathy/front.svg",
  19650. extra: 1552 / 1463,
  19651. bottom: 0.025
  19652. }
  19653. },
  19654. side: {
  19655. height: math.unit(6, "feet"),
  19656. weight: math.unit(150, "lb"),
  19657. name: "Side",
  19658. image: {
  19659. source: "./media/characters/deathy/side.svg",
  19660. extra: 1604 / 1455,
  19661. bottom: 0.025
  19662. }
  19663. },
  19664. back: {
  19665. height: math.unit(6, "feet"),
  19666. weight: math.unit(150, "lb"),
  19667. name: "Back",
  19668. image: {
  19669. source: "./media/characters/deathy/back.svg",
  19670. extra: 1580 / 1463,
  19671. bottom: 0.005
  19672. }
  19673. },
  19674. },
  19675. [
  19676. {
  19677. name: "Micro",
  19678. height: math.unit(5, "millimeters")
  19679. },
  19680. {
  19681. name: "Normal",
  19682. height: math.unit(6 + 5 / 12, "feet"),
  19683. default: true
  19684. },
  19685. ]
  19686. ))
  19687. characterMakers.push(() => makeCharacter(
  19688. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19689. {
  19690. front: {
  19691. height: math.unit(16, "feet"),
  19692. weight: math.unit(4000, "lb"),
  19693. name: "Front",
  19694. image: {
  19695. source: "./media/characters/juniper/front.svg",
  19696. bottom: 0.04
  19697. }
  19698. },
  19699. },
  19700. [
  19701. {
  19702. name: "Normal",
  19703. height: math.unit(16, "feet"),
  19704. default: true
  19705. },
  19706. ]
  19707. ))
  19708. characterMakers.push(() => makeCharacter(
  19709. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19710. {
  19711. front: {
  19712. height: math.unit(6, "feet"),
  19713. weight: math.unit(150, "lb"),
  19714. name: "Front",
  19715. image: {
  19716. source: "./media/characters/hipster/front.svg",
  19717. extra: 1312 / 1209,
  19718. bottom: 0.025
  19719. }
  19720. },
  19721. back: {
  19722. height: math.unit(6, "feet"),
  19723. weight: math.unit(150, "lb"),
  19724. name: "Back",
  19725. image: {
  19726. source: "./media/characters/hipster/back.svg",
  19727. extra: 1281 / 1196,
  19728. bottom: 0.01
  19729. }
  19730. },
  19731. },
  19732. [
  19733. {
  19734. name: "Micro",
  19735. height: math.unit(1, "mm")
  19736. },
  19737. {
  19738. name: "Normal",
  19739. height: math.unit(4, "inches"),
  19740. default: true
  19741. },
  19742. {
  19743. name: "Macro",
  19744. height: math.unit(500, "feet")
  19745. },
  19746. {
  19747. name: "Megamacro",
  19748. height: math.unit(1000, "miles")
  19749. },
  19750. ]
  19751. ))
  19752. characterMakers.push(() => makeCharacter(
  19753. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19754. {
  19755. front: {
  19756. height: math.unit(6, "feet"),
  19757. weight: math.unit(150, "lb"),
  19758. name: "Front",
  19759. image: {
  19760. source: "./media/characters/tendirmuldr/front.svg",
  19761. extra: 1878 / 1772,
  19762. bottom: 0.015
  19763. }
  19764. },
  19765. },
  19766. [
  19767. {
  19768. name: "Megamacro",
  19769. height: math.unit(1500, "miles"),
  19770. default: true
  19771. },
  19772. ]
  19773. ))
  19774. characterMakers.push(() => makeCharacter(
  19775. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19776. {
  19777. front: {
  19778. height: math.unit(14, "feet"),
  19779. weight: math.unit(12000, "lb"),
  19780. name: "Front",
  19781. image: {
  19782. source: "./media/characters/mort/front.svg",
  19783. extra: 365 / 318,
  19784. bottom: 0.01
  19785. }
  19786. },
  19787. side: {
  19788. height: math.unit(14, "feet"),
  19789. weight: math.unit(12000, "lb"),
  19790. name: "Side",
  19791. image: {
  19792. source: "./media/characters/mort/side.svg",
  19793. extra: 365 / 318,
  19794. bottom: 0.052
  19795. },
  19796. default: true
  19797. },
  19798. back: {
  19799. height: math.unit(14, "feet"),
  19800. weight: math.unit(12000, "lb"),
  19801. name: "Back",
  19802. image: {
  19803. source: "./media/characters/mort/back.svg",
  19804. extra: 371 / 332,
  19805. bottom: 0.18
  19806. }
  19807. },
  19808. },
  19809. [
  19810. {
  19811. name: "Normal",
  19812. height: math.unit(14, "feet"),
  19813. default: true
  19814. },
  19815. ]
  19816. ))
  19817. characterMakers.push(() => makeCharacter(
  19818. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19819. {
  19820. front: {
  19821. height: math.unit(8, "feet"),
  19822. weight: math.unit(1, "ton"),
  19823. name: "Front",
  19824. image: {
  19825. source: "./media/characters/lycoa/front.svg",
  19826. extra: 1875 / 1789,
  19827. bottom: 0.022
  19828. }
  19829. },
  19830. back: {
  19831. height: math.unit(8, "feet"),
  19832. weight: math.unit(1, "ton"),
  19833. name: "Back",
  19834. image: {
  19835. source: "./media/characters/lycoa/back.svg",
  19836. extra: 1835 / 1781,
  19837. bottom: 0.03
  19838. }
  19839. },
  19840. head: {
  19841. height: math.unit(2.1, "feet"),
  19842. name: "Head",
  19843. image: {
  19844. source: "./media/characters/lycoa/head.svg"
  19845. }
  19846. },
  19847. tailmaw: {
  19848. height: math.unit(1.9, "feet"),
  19849. name: "Tailmaw",
  19850. image: {
  19851. source: "./media/characters/lycoa/tailmaw.svg"
  19852. }
  19853. },
  19854. tentacles: {
  19855. height: math.unit(2.1, "feet"),
  19856. name: "Tentacles",
  19857. image: {
  19858. source: "./media/characters/lycoa/tentacles.svg"
  19859. }
  19860. },
  19861. dick: {
  19862. height: math.unit(1.73, "feet"),
  19863. name: "Dick",
  19864. image: {
  19865. source: "./media/characters/lycoa/dick.svg"
  19866. }
  19867. },
  19868. },
  19869. [
  19870. {
  19871. name: "Normal",
  19872. height: math.unit(8, "feet"),
  19873. default: true
  19874. },
  19875. {
  19876. name: "Macro",
  19877. height: math.unit(30, "feet")
  19878. },
  19879. ]
  19880. ))
  19881. characterMakers.push(() => makeCharacter(
  19882. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19883. {
  19884. front: {
  19885. height: math.unit(4 + 2 / 12, "feet"),
  19886. weight: math.unit(70, "lb"),
  19887. name: "Front",
  19888. image: {
  19889. source: "./media/characters/naldara/front.svg",
  19890. extra: 841 / 720,
  19891. bottom: 0.04
  19892. }
  19893. },
  19894. naga: {
  19895. height: math.unit(23, "feet"),
  19896. weight: math.unit(15000, "kg"),
  19897. name: "Naga",
  19898. image: {
  19899. source: "./media/characters/naldara/naga.svg",
  19900. extra: 3290 / 2959,
  19901. bottom: 124 / 3432
  19902. }
  19903. },
  19904. },
  19905. [
  19906. {
  19907. name: "Normal",
  19908. height: math.unit(4 + 2 / 12, "feet"),
  19909. default: true
  19910. },
  19911. ]
  19912. ))
  19913. characterMakers.push(() => makeCharacter(
  19914. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19915. {
  19916. front: {
  19917. height: math.unit(13 + 7 / 12, "feet"),
  19918. weight: math.unit(1500, "lb"),
  19919. name: "Front",
  19920. image: {
  19921. source: "./media/characters/briar/front.svg",
  19922. extra: 626 / 596,
  19923. bottom: 0.08
  19924. }
  19925. },
  19926. },
  19927. [
  19928. {
  19929. name: "Normal",
  19930. height: math.unit(13 + 7 / 12, "feet"),
  19931. default: true
  19932. },
  19933. ]
  19934. ))
  19935. characterMakers.push(() => makeCharacter(
  19936. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19937. {
  19938. side: {
  19939. height: math.unit(10, "feet"),
  19940. weight: math.unit(500, "lb"),
  19941. name: "Side",
  19942. image: {
  19943. source: "./media/characters/vanguard/side.svg",
  19944. extra: 502 / 425,
  19945. bottom: 0.087
  19946. }
  19947. },
  19948. },
  19949. [
  19950. {
  19951. name: "Normal",
  19952. height: math.unit(10, "feet"),
  19953. default: true
  19954. },
  19955. ]
  19956. ))
  19957. characterMakers.push(() => makeCharacter(
  19958. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19959. {
  19960. front: {
  19961. height: math.unit(7.5, "feet"),
  19962. weight: math.unit(2, "lb"),
  19963. name: "Front",
  19964. image: {
  19965. source: "./media/characters/artemis/front.svg",
  19966. extra: 1192 / 1075,
  19967. bottom: 0.07
  19968. }
  19969. },
  19970. frontNsfw: {
  19971. height: math.unit(7.5, "feet"),
  19972. weight: math.unit(2, "lb"),
  19973. name: "Front (NSFW)",
  19974. image: {
  19975. source: "./media/characters/artemis/front-nsfw.svg",
  19976. extra: 1192 / 1075,
  19977. bottom: 0.07
  19978. }
  19979. },
  19980. frontNsfwer: {
  19981. height: math.unit(7.5, "feet"),
  19982. weight: math.unit(2, "lb"),
  19983. name: "Front (NSFW-er)",
  19984. image: {
  19985. source: "./media/characters/artemis/front-nsfwer.svg",
  19986. extra: 1192 / 1075,
  19987. bottom: 0.07
  19988. }
  19989. },
  19990. side: {
  19991. height: math.unit(7.5, "feet"),
  19992. weight: math.unit(2, "lb"),
  19993. name: "Side",
  19994. image: {
  19995. source: "./media/characters/artemis/side.svg",
  19996. extra: 1192 / 1075,
  19997. bottom: 0.07
  19998. }
  19999. },
  20000. sideNsfw: {
  20001. height: math.unit(7.5, "feet"),
  20002. weight: math.unit(2, "lb"),
  20003. name: "Side (NSFW)",
  20004. image: {
  20005. source: "./media/characters/artemis/side-nsfw.svg",
  20006. extra: 1192 / 1075,
  20007. bottom: 0.07
  20008. }
  20009. },
  20010. sideNsfwer: {
  20011. height: math.unit(7.5, "feet"),
  20012. weight: math.unit(2, "lb"),
  20013. name: "Side (NSFW-er)",
  20014. image: {
  20015. source: "./media/characters/artemis/side-nsfwer.svg",
  20016. extra: 1192 / 1075,
  20017. bottom: 0.07
  20018. }
  20019. },
  20020. maw: {
  20021. height: math.unit(1.1, "feet"),
  20022. name: "Maw",
  20023. image: {
  20024. source: "./media/characters/artemis/maw.svg"
  20025. }
  20026. },
  20027. stomach: {
  20028. height: math.unit(0.95, "feet"),
  20029. name: "Stomach",
  20030. image: {
  20031. source: "./media/characters/artemis/stomach.svg"
  20032. }
  20033. },
  20034. dickCanine: {
  20035. height: math.unit(1, "feet"),
  20036. name: "Dick (Canine)",
  20037. image: {
  20038. source: "./media/characters/artemis/dick-canine.svg"
  20039. }
  20040. },
  20041. dickEquine: {
  20042. height: math.unit(0.85, "feet"),
  20043. name: "Dick (Equine)",
  20044. image: {
  20045. source: "./media/characters/artemis/dick-equine.svg"
  20046. }
  20047. },
  20048. dickExotic: {
  20049. height: math.unit(0.85, "feet"),
  20050. name: "Dick (Exotic)",
  20051. image: {
  20052. source: "./media/characters/artemis/dick-exotic.svg"
  20053. }
  20054. },
  20055. },
  20056. [
  20057. {
  20058. name: "Normal",
  20059. height: math.unit(7.5, "feet"),
  20060. default: true
  20061. },
  20062. {
  20063. name: "Enlarged",
  20064. height: math.unit(12, "feet")
  20065. },
  20066. ]
  20067. ))
  20068. characterMakers.push(() => makeCharacter(
  20069. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20070. {
  20071. front: {
  20072. height: math.unit(5 + 3 / 12, "feet"),
  20073. weight: math.unit(160, "lb"),
  20074. name: "Front",
  20075. image: {
  20076. source: "./media/characters/kira/front.svg",
  20077. extra: 906 / 786,
  20078. bottom: 0.01
  20079. }
  20080. },
  20081. back: {
  20082. height: math.unit(5 + 3 / 12, "feet"),
  20083. weight: math.unit(160, "lb"),
  20084. name: "Back",
  20085. image: {
  20086. source: "./media/characters/kira/back.svg",
  20087. extra: 882 / 757,
  20088. bottom: 0.005
  20089. }
  20090. },
  20091. frontDressed: {
  20092. height: math.unit(5 + 3 / 12, "feet"),
  20093. weight: math.unit(160, "lb"),
  20094. name: "Front (Dressed)",
  20095. image: {
  20096. source: "./media/characters/kira/front-dressed.svg",
  20097. extra: 906 / 786,
  20098. bottom: 0.01
  20099. }
  20100. },
  20101. beans: {
  20102. height: math.unit(0.92, "feet"),
  20103. name: "Beans",
  20104. image: {
  20105. source: "./media/characters/kira/beans.svg"
  20106. }
  20107. },
  20108. },
  20109. [
  20110. {
  20111. name: "Normal",
  20112. height: math.unit(5 + 3 / 12, "feet"),
  20113. default: true
  20114. },
  20115. ]
  20116. ))
  20117. characterMakers.push(() => makeCharacter(
  20118. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20119. {
  20120. front: {
  20121. height: math.unit(5 + 4 / 12, "feet"),
  20122. weight: math.unit(145, "lb"),
  20123. name: "Front",
  20124. image: {
  20125. source: "./media/characters/scramble/front.svg",
  20126. extra: 763 / 727,
  20127. bottom: 0.05
  20128. }
  20129. },
  20130. back: {
  20131. height: math.unit(5 + 4 / 12, "feet"),
  20132. weight: math.unit(145, "lb"),
  20133. name: "Back",
  20134. image: {
  20135. source: "./media/characters/scramble/back.svg",
  20136. extra: 826 / 737,
  20137. bottom: 0.002
  20138. }
  20139. },
  20140. },
  20141. [
  20142. {
  20143. name: "Normal",
  20144. height: math.unit(5 + 4 / 12, "feet"),
  20145. default: true
  20146. },
  20147. ]
  20148. ))
  20149. characterMakers.push(() => makeCharacter(
  20150. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20151. {
  20152. side: {
  20153. height: math.unit(6 + 2 / 12, "feet"),
  20154. weight: math.unit(190, "lb"),
  20155. name: "Side",
  20156. image: {
  20157. source: "./media/characters/biscuit/side.svg",
  20158. extra: 858 / 791,
  20159. bottom: 0.044
  20160. }
  20161. },
  20162. },
  20163. [
  20164. {
  20165. name: "Normal",
  20166. height: math.unit(6 + 2 / 12, "feet"),
  20167. default: true
  20168. },
  20169. ]
  20170. ))
  20171. characterMakers.push(() => makeCharacter(
  20172. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20173. {
  20174. front: {
  20175. height: math.unit(5 + 2 / 12, "feet"),
  20176. weight: math.unit(120, "lb"),
  20177. name: "Front",
  20178. image: {
  20179. source: "./media/characters/poffin/front.svg",
  20180. extra: 786 / 680,
  20181. bottom: 0.005
  20182. }
  20183. },
  20184. },
  20185. [
  20186. {
  20187. name: "Normal",
  20188. height: math.unit(5 + 2 / 12, "feet"),
  20189. default: true
  20190. },
  20191. ]
  20192. ))
  20193. characterMakers.push(() => makeCharacter(
  20194. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20195. {
  20196. front: {
  20197. height: math.unit(6 + 3 / 12, "feet"),
  20198. weight: math.unit(519, "lb"),
  20199. name: "Front",
  20200. image: {
  20201. source: "./media/characters/dhari/front.svg",
  20202. extra: 1048 / 946,
  20203. bottom: 0.015
  20204. }
  20205. },
  20206. back: {
  20207. height: math.unit(6 + 3 / 12, "feet"),
  20208. weight: math.unit(519, "lb"),
  20209. name: "Back",
  20210. image: {
  20211. source: "./media/characters/dhari/back.svg",
  20212. extra: 1048 / 931,
  20213. bottom: 0.005
  20214. }
  20215. },
  20216. frontDressed: {
  20217. height: math.unit(6 + 3 / 12, "feet"),
  20218. weight: math.unit(519, "lb"),
  20219. name: "Front (Dressed)",
  20220. image: {
  20221. source: "./media/characters/dhari/front-dressed.svg",
  20222. extra: 1713 / 1546,
  20223. bottom: 0.02
  20224. }
  20225. },
  20226. backDressed: {
  20227. height: math.unit(6 + 3 / 12, "feet"),
  20228. weight: math.unit(519, "lb"),
  20229. name: "Back (Dressed)",
  20230. image: {
  20231. source: "./media/characters/dhari/back-dressed.svg",
  20232. extra: 1699 / 1537,
  20233. bottom: 0.01
  20234. }
  20235. },
  20236. maw: {
  20237. height: math.unit(0.95, "feet"),
  20238. name: "Maw",
  20239. image: {
  20240. source: "./media/characters/dhari/maw.svg"
  20241. }
  20242. },
  20243. wereFront: {
  20244. height: math.unit(12 + 8 / 12, "feet"),
  20245. weight: math.unit(4000, "lb"),
  20246. name: "Front (Were)",
  20247. image: {
  20248. source: "./media/characters/dhari/were-front.svg",
  20249. extra: 1065 / 969,
  20250. bottom: 0.015
  20251. }
  20252. },
  20253. wereBack: {
  20254. height: math.unit(12 + 8 / 12, "feet"),
  20255. weight: math.unit(4000, "lb"),
  20256. name: "Back (Were)",
  20257. image: {
  20258. source: "./media/characters/dhari/were-back.svg",
  20259. extra: 1065 / 969,
  20260. bottom: 0.012
  20261. }
  20262. },
  20263. wereMaw: {
  20264. height: math.unit(0.625, "meters"),
  20265. name: "Maw (Were)",
  20266. image: {
  20267. source: "./media/characters/dhari/were-maw.svg"
  20268. }
  20269. },
  20270. },
  20271. [
  20272. {
  20273. name: "Normal",
  20274. height: math.unit(6 + 3 / 12, "feet"),
  20275. default: true
  20276. },
  20277. ]
  20278. ))
  20279. characterMakers.push(() => makeCharacter(
  20280. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20281. {
  20282. anthro: {
  20283. height: math.unit(5 + 7 / 12, "feet"),
  20284. weight: math.unit(175, "lb"),
  20285. name: "Anthro",
  20286. image: {
  20287. source: "./media/characters/rena-dyne/anthro.svg",
  20288. extra: 1849 / 1785,
  20289. bottom: 0.005
  20290. }
  20291. },
  20292. taur: {
  20293. height: math.unit(15 + 6 / 12, "feet"),
  20294. weight: math.unit(8000, "lb"),
  20295. name: "Taur",
  20296. image: {
  20297. source: "./media/characters/rena-dyne/taur.svg",
  20298. extra: 2315 / 2234,
  20299. bottom: 0.033
  20300. }
  20301. },
  20302. },
  20303. [
  20304. {
  20305. name: "Normal",
  20306. height: math.unit(5 + 7 / 12, "feet"),
  20307. default: true
  20308. },
  20309. ]
  20310. ))
  20311. characterMakers.push(() => makeCharacter(
  20312. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20313. {
  20314. front: {
  20315. height: math.unit(8, "feet"),
  20316. weight: math.unit(600, "lb"),
  20317. name: "Front",
  20318. image: {
  20319. source: "./media/characters/weremeep/front.svg",
  20320. extra: 967 / 862,
  20321. bottom: 0.01
  20322. }
  20323. },
  20324. },
  20325. [
  20326. {
  20327. name: "Normal",
  20328. height: math.unit(8, "feet"),
  20329. default: true
  20330. },
  20331. {
  20332. name: "Lorg",
  20333. height: math.unit(12, "feet")
  20334. },
  20335. {
  20336. name: "Oh Lawd She Comin'",
  20337. height: math.unit(20, "feet")
  20338. },
  20339. ]
  20340. ))
  20341. characterMakers.push(() => makeCharacter(
  20342. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20343. {
  20344. front: {
  20345. height: math.unit(4, "feet"),
  20346. weight: math.unit(90, "lb"),
  20347. name: "Front",
  20348. image: {
  20349. source: "./media/characters/reza/front.svg",
  20350. extra: 1183 / 1111,
  20351. bottom: 0.017
  20352. }
  20353. },
  20354. back: {
  20355. height: math.unit(4, "feet"),
  20356. weight: math.unit(90, "lb"),
  20357. name: "Back",
  20358. image: {
  20359. source: "./media/characters/reza/back.svg",
  20360. extra: 1183 / 1111,
  20361. bottom: 0.01
  20362. }
  20363. },
  20364. drake: {
  20365. height: math.unit(30, "feet"),
  20366. weight: math.unit(246960, "lb"),
  20367. name: "Drake",
  20368. image: {
  20369. source: "./media/characters/reza/drake.svg",
  20370. extra: 2350 / 2024,
  20371. bottom: 60.7 / 2403
  20372. }
  20373. },
  20374. },
  20375. [
  20376. {
  20377. name: "Normal",
  20378. height: math.unit(4, "feet"),
  20379. default: true
  20380. },
  20381. ]
  20382. ))
  20383. characterMakers.push(() => makeCharacter(
  20384. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20385. {
  20386. side: {
  20387. height: math.unit(15, "feet"),
  20388. weight: math.unit(14, "tons"),
  20389. name: "Side",
  20390. image: {
  20391. source: "./media/characters/athea/side.svg",
  20392. extra: 960 / 540,
  20393. bottom: 0.003
  20394. }
  20395. },
  20396. sitting: {
  20397. height: math.unit(6 * 2.85, "feet"),
  20398. weight: math.unit(14, "tons"),
  20399. name: "Sitting",
  20400. image: {
  20401. source: "./media/characters/athea/sitting.svg",
  20402. extra: 621 / 581,
  20403. bottom: 0.075
  20404. }
  20405. },
  20406. maw: {
  20407. height: math.unit(7.59498031496063, "feet"),
  20408. name: "Maw",
  20409. image: {
  20410. source: "./media/characters/athea/maw.svg"
  20411. }
  20412. },
  20413. },
  20414. [
  20415. {
  20416. name: "Lap Cat",
  20417. height: math.unit(2.5, "feet")
  20418. },
  20419. {
  20420. name: "Minimacro",
  20421. height: math.unit(15, "feet"),
  20422. default: true
  20423. },
  20424. {
  20425. name: "Macro",
  20426. height: math.unit(120, "feet")
  20427. },
  20428. {
  20429. name: "Macro+",
  20430. height: math.unit(640, "feet")
  20431. },
  20432. {
  20433. name: "Colossus",
  20434. height: math.unit(2.2, "miles")
  20435. },
  20436. ]
  20437. ))
  20438. characterMakers.push(() => makeCharacter(
  20439. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20440. {
  20441. front: {
  20442. height: math.unit(8 + 8 / 12, "feet"),
  20443. weight: math.unit(130, "kg"),
  20444. name: "Front",
  20445. image: {
  20446. source: "./media/characters/seroko/front.svg",
  20447. extra: 1385 / 1280,
  20448. bottom: 0.025
  20449. }
  20450. },
  20451. back: {
  20452. height: math.unit(8 + 8 / 12, "feet"),
  20453. weight: math.unit(130, "kg"),
  20454. name: "Back",
  20455. image: {
  20456. source: "./media/characters/seroko/back.svg",
  20457. extra: 1369 / 1238,
  20458. bottom: 0.018
  20459. }
  20460. },
  20461. frontDressed: {
  20462. height: math.unit(8 + 8 / 12, "feet"),
  20463. weight: math.unit(130, "kg"),
  20464. name: "Front (Dressed)",
  20465. image: {
  20466. source: "./media/characters/seroko/front-dressed.svg",
  20467. extra: 1366 / 1275,
  20468. bottom: 0.03
  20469. }
  20470. },
  20471. },
  20472. [
  20473. {
  20474. name: "Normal",
  20475. height: math.unit(8 + 8 / 12, "feet"),
  20476. default: true
  20477. },
  20478. ]
  20479. ))
  20480. characterMakers.push(() => makeCharacter(
  20481. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20482. {
  20483. front: {
  20484. height: math.unit(5.5, "feet"),
  20485. weight: math.unit(160, "lb"),
  20486. name: "Front",
  20487. image: {
  20488. source: "./media/characters/quatzi/front.svg",
  20489. extra: 2346 / 2242,
  20490. bottom: 0.015
  20491. }
  20492. },
  20493. },
  20494. [
  20495. {
  20496. name: "Normal",
  20497. height: math.unit(5.5, "feet"),
  20498. default: true
  20499. },
  20500. {
  20501. name: "Big",
  20502. height: math.unit(7.7, "feet")
  20503. },
  20504. ]
  20505. ))
  20506. characterMakers.push(() => makeCharacter(
  20507. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20508. {
  20509. front: {
  20510. height: math.unit(5 + 11 / 12, "feet"),
  20511. weight: math.unit(180, "lb"),
  20512. name: "Front",
  20513. image: {
  20514. source: "./media/characters/sen/front.svg",
  20515. extra: 1321 / 1254,
  20516. bottom: 0.015
  20517. }
  20518. },
  20519. side: {
  20520. height: math.unit(5 + 11 / 12, "feet"),
  20521. weight: math.unit(180, "lb"),
  20522. name: "Side",
  20523. image: {
  20524. source: "./media/characters/sen/side.svg",
  20525. extra: 1321 / 1254,
  20526. bottom: 0.007
  20527. }
  20528. },
  20529. back: {
  20530. height: math.unit(5 + 11 / 12, "feet"),
  20531. weight: math.unit(180, "lb"),
  20532. name: "Back",
  20533. image: {
  20534. source: "./media/characters/sen/back.svg",
  20535. extra: 1321 / 1254
  20536. }
  20537. },
  20538. },
  20539. [
  20540. {
  20541. name: "Normal",
  20542. height: math.unit(5 + 11 / 12, "feet"),
  20543. default: true
  20544. },
  20545. ]
  20546. ))
  20547. characterMakers.push(() => makeCharacter(
  20548. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20549. {
  20550. front: {
  20551. height: math.unit(166.6, "cm"),
  20552. weight: math.unit(66.6, "kg"),
  20553. name: "Front",
  20554. image: {
  20555. source: "./media/characters/fruity/front.svg",
  20556. extra: 1510 / 1386,
  20557. bottom: 0.04
  20558. }
  20559. },
  20560. back: {
  20561. height: math.unit(166.6, "cm"),
  20562. weight: math.unit(66.6, "lb"),
  20563. name: "Back",
  20564. image: {
  20565. source: "./media/characters/fruity/back.svg",
  20566. extra: 1563 / 1435,
  20567. bottom: 0.005
  20568. }
  20569. },
  20570. },
  20571. [
  20572. {
  20573. name: "Normal",
  20574. height: math.unit(166.6, "cm"),
  20575. default: true
  20576. },
  20577. {
  20578. name: "Demonic",
  20579. height: math.unit(166.6, "feet")
  20580. },
  20581. ]
  20582. ))
  20583. characterMakers.push(() => makeCharacter(
  20584. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20585. {
  20586. side: {
  20587. height: math.unit(10, "feet"),
  20588. weight: math.unit(500, "lb"),
  20589. name: "Side",
  20590. image: {
  20591. source: "./media/characters/zost/side.svg",
  20592. extra: 966 / 880,
  20593. bottom: 0.075
  20594. }
  20595. },
  20596. mawFront: {
  20597. height: math.unit(1.08, "meters"),
  20598. name: "Maw (Front)",
  20599. image: {
  20600. source: "./media/characters/zost/maw-front.svg"
  20601. }
  20602. },
  20603. mawSide: {
  20604. height: math.unit(2.66, "feet"),
  20605. name: "Maw (Side)",
  20606. image: {
  20607. source: "./media/characters/zost/maw-side.svg"
  20608. }
  20609. },
  20610. },
  20611. [
  20612. {
  20613. name: "Normal",
  20614. height: math.unit(10, "feet"),
  20615. default: true
  20616. },
  20617. ]
  20618. ))
  20619. characterMakers.push(() => makeCharacter(
  20620. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20621. {
  20622. front: {
  20623. height: math.unit(5 + 4 / 12, "feet"),
  20624. weight: math.unit(120, "lb"),
  20625. name: "Front",
  20626. image: {
  20627. source: "./media/characters/luci/front.svg",
  20628. extra: 1985 / 1884,
  20629. bottom: 0.04
  20630. }
  20631. },
  20632. back: {
  20633. height: math.unit(5 + 4 / 12, "feet"),
  20634. weight: math.unit(120, "lb"),
  20635. name: "Back",
  20636. image: {
  20637. source: "./media/characters/luci/back.svg",
  20638. extra: 1892 / 1791,
  20639. bottom: 0.002
  20640. }
  20641. },
  20642. },
  20643. [
  20644. {
  20645. name: "Normal",
  20646. height: math.unit(5 + 4 / 12, "feet"),
  20647. default: true
  20648. },
  20649. ]
  20650. ))
  20651. characterMakers.push(() => makeCharacter(
  20652. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20653. {
  20654. front: {
  20655. height: math.unit(1500, "feet"),
  20656. weight: math.unit(3.8e6, "tons"),
  20657. name: "Front",
  20658. image: {
  20659. source: "./media/characters/2th/front.svg",
  20660. extra: 3489 / 3350,
  20661. bottom: 0.1
  20662. }
  20663. },
  20664. foot: {
  20665. height: math.unit(461, "feet"),
  20666. name: "Foot",
  20667. image: {
  20668. source: "./media/characters/2th/foot.svg"
  20669. }
  20670. },
  20671. },
  20672. [
  20673. {
  20674. name: "\"Micro\"",
  20675. height: math.unit(15 + 7 / 12, "feet")
  20676. },
  20677. {
  20678. name: "Normal",
  20679. height: math.unit(1500, "feet"),
  20680. default: true
  20681. },
  20682. {
  20683. name: "Macro",
  20684. height: math.unit(5000, "feet")
  20685. },
  20686. {
  20687. name: "Megamacro",
  20688. height: math.unit(15, "miles")
  20689. },
  20690. {
  20691. name: "Gigamacro",
  20692. height: math.unit(4000, "miles")
  20693. },
  20694. {
  20695. name: "Galactic",
  20696. height: math.unit(50, "AU")
  20697. },
  20698. ]
  20699. ))
  20700. characterMakers.push(() => makeCharacter(
  20701. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20702. {
  20703. front: {
  20704. height: math.unit(5 + 6 / 12, "feet"),
  20705. weight: math.unit(220, "lb"),
  20706. name: "Front",
  20707. image: {
  20708. source: "./media/characters/amethyst/front.svg",
  20709. extra: 2078 / 2040,
  20710. bottom: 0.045
  20711. }
  20712. },
  20713. back: {
  20714. height: math.unit(5 + 6 / 12, "feet"),
  20715. weight: math.unit(220, "lb"),
  20716. name: "Back",
  20717. image: {
  20718. source: "./media/characters/amethyst/back.svg",
  20719. extra: 2021 / 1989,
  20720. bottom: 0.02
  20721. }
  20722. },
  20723. },
  20724. [
  20725. {
  20726. name: "Normal",
  20727. height: math.unit(5 + 6 / 12, "feet"),
  20728. default: true
  20729. },
  20730. ]
  20731. ))
  20732. characterMakers.push(() => makeCharacter(
  20733. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20734. {
  20735. front: {
  20736. height: math.unit(4 + 11 / 12, "feet"),
  20737. weight: math.unit(120, "lb"),
  20738. name: "Front",
  20739. image: {
  20740. source: "./media/characters/yumi-akiyama/front.svg",
  20741. extra: 1327 / 1235,
  20742. bottom: 0.02
  20743. }
  20744. },
  20745. back: {
  20746. height: math.unit(4 + 11 / 12, "feet"),
  20747. weight: math.unit(120, "lb"),
  20748. name: "Back",
  20749. image: {
  20750. source: "./media/characters/yumi-akiyama/back.svg",
  20751. extra: 1287 / 1245,
  20752. bottom: 0.002
  20753. }
  20754. },
  20755. },
  20756. [
  20757. {
  20758. name: "Galactic",
  20759. height: math.unit(50, "galaxies"),
  20760. default: true
  20761. },
  20762. {
  20763. name: "Universal",
  20764. height: math.unit(100, "universes")
  20765. },
  20766. ]
  20767. ))
  20768. characterMakers.push(() => makeCharacter(
  20769. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20770. {
  20771. front: {
  20772. height: math.unit(8, "feet"),
  20773. weight: math.unit(500, "lb"),
  20774. name: "Front",
  20775. image: {
  20776. source: "./media/characters/rifter-yrmori/front.svg",
  20777. extra: 1180 / 1125,
  20778. bottom: 0.02
  20779. }
  20780. },
  20781. back: {
  20782. height: math.unit(8, "feet"),
  20783. weight: math.unit(500, "lb"),
  20784. name: "Back",
  20785. image: {
  20786. source: "./media/characters/rifter-yrmori/back.svg",
  20787. extra: 1190 / 1145,
  20788. bottom: 0.001
  20789. }
  20790. },
  20791. wings: {
  20792. height: math.unit(7.75, "feet"),
  20793. weight: math.unit(500, "lb"),
  20794. name: "Wings",
  20795. image: {
  20796. source: "./media/characters/rifter-yrmori/wings.svg",
  20797. extra: 1357 / 1285
  20798. }
  20799. },
  20800. maw: {
  20801. height: math.unit(0.8, "feet"),
  20802. name: "Maw",
  20803. image: {
  20804. source: "./media/characters/rifter-yrmori/maw.svg"
  20805. }
  20806. },
  20807. mawfront: {
  20808. height: math.unit(1.45, "feet"),
  20809. name: "Maw (Front)",
  20810. image: {
  20811. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20812. }
  20813. },
  20814. },
  20815. [
  20816. {
  20817. name: "Normal",
  20818. height: math.unit(8, "feet"),
  20819. default: true
  20820. },
  20821. {
  20822. name: "Macro",
  20823. height: math.unit(42, "meters")
  20824. },
  20825. ]
  20826. ))
  20827. characterMakers.push(() => makeCharacter(
  20828. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20829. {
  20830. were: {
  20831. height: math.unit(25 + 6 / 12, "feet"),
  20832. weight: math.unit(10000, "lb"),
  20833. name: "Were",
  20834. image: {
  20835. source: "./media/characters/tahajin/were.svg",
  20836. extra: 801 / 770,
  20837. bottom: 0.042
  20838. }
  20839. },
  20840. aquatic: {
  20841. height: math.unit(6 + 4 / 12, "feet"),
  20842. weight: math.unit(160, "lb"),
  20843. name: "Aquatic",
  20844. image: {
  20845. source: "./media/characters/tahajin/aquatic.svg",
  20846. extra: 572 / 542,
  20847. bottom: 0.04
  20848. }
  20849. },
  20850. chow: {
  20851. height: math.unit(8 + 11 / 12, "feet"),
  20852. weight: math.unit(450, "lb"),
  20853. name: "Chow",
  20854. image: {
  20855. source: "./media/characters/tahajin/chow.svg",
  20856. extra: 660 / 640,
  20857. bottom: 0.015
  20858. }
  20859. },
  20860. demiNaga: {
  20861. height: math.unit(6 + 8 / 12, "feet"),
  20862. weight: math.unit(300, "lb"),
  20863. name: "Demi Naga",
  20864. image: {
  20865. source: "./media/characters/tahajin/demi-naga.svg",
  20866. extra: 643 / 615,
  20867. bottom: 0.1
  20868. }
  20869. },
  20870. data: {
  20871. height: math.unit(5, "inches"),
  20872. weight: math.unit(0.1, "lb"),
  20873. name: "Data",
  20874. image: {
  20875. source: "./media/characters/tahajin/data.svg"
  20876. }
  20877. },
  20878. fluu: {
  20879. height: math.unit(5 + 7 / 12, "feet"),
  20880. weight: math.unit(140, "lb"),
  20881. name: "Fluu",
  20882. image: {
  20883. source: "./media/characters/tahajin/fluu.svg",
  20884. extra: 628 / 592,
  20885. bottom: 0.02
  20886. }
  20887. },
  20888. starWarrior: {
  20889. height: math.unit(4 + 5 / 12, "feet"),
  20890. weight: math.unit(50, "lb"),
  20891. name: "Star Warrior",
  20892. image: {
  20893. source: "./media/characters/tahajin/star-warrior.svg"
  20894. }
  20895. },
  20896. },
  20897. [
  20898. {
  20899. name: "Normal",
  20900. height: math.unit(25 + 6 / 12, "feet"),
  20901. default: true
  20902. },
  20903. ]
  20904. ))
  20905. characterMakers.push(() => makeCharacter(
  20906. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20907. {
  20908. front: {
  20909. height: math.unit(8, "feet"),
  20910. weight: math.unit(350, "lb"),
  20911. name: "Front",
  20912. image: {
  20913. source: "./media/characters/gabira/front.svg",
  20914. extra: 608 / 580,
  20915. bottom: 0.03
  20916. }
  20917. },
  20918. back: {
  20919. height: math.unit(8, "feet"),
  20920. weight: math.unit(350, "lb"),
  20921. name: "Back",
  20922. image: {
  20923. source: "./media/characters/gabira/back.svg",
  20924. extra: 608 / 580,
  20925. bottom: 0.03
  20926. }
  20927. },
  20928. },
  20929. [
  20930. {
  20931. name: "Normal",
  20932. height: math.unit(8, "feet"),
  20933. default: true
  20934. },
  20935. ]
  20936. ))
  20937. characterMakers.push(() => makeCharacter(
  20938. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20939. {
  20940. front: {
  20941. height: math.unit(5 + 3 / 12, "feet"),
  20942. weight: math.unit(137, "lb"),
  20943. name: "Front",
  20944. image: {
  20945. source: "./media/characters/sasha-katraine/front.svg",
  20946. bottom: 0.045
  20947. }
  20948. },
  20949. },
  20950. [
  20951. {
  20952. name: "Micro",
  20953. height: math.unit(5, "inches")
  20954. },
  20955. {
  20956. name: "Normal",
  20957. height: math.unit(5 + 3 / 12, "feet"),
  20958. default: true
  20959. },
  20960. ]
  20961. ))
  20962. characterMakers.push(() => makeCharacter(
  20963. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20964. {
  20965. side: {
  20966. height: math.unit(4, "inches"),
  20967. weight: math.unit(200, "grams"),
  20968. name: "Side",
  20969. image: {
  20970. source: "./media/characters/der/side.svg",
  20971. extra: 719 / 400,
  20972. bottom: 30.6 / 749.9187
  20973. }
  20974. },
  20975. },
  20976. [
  20977. {
  20978. name: "Micro",
  20979. height: math.unit(4, "inches"),
  20980. default: true
  20981. },
  20982. ]
  20983. ))
  20984. characterMakers.push(() => makeCharacter(
  20985. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20986. {
  20987. side: {
  20988. height: math.unit(30, "meters"),
  20989. weight: math.unit(700, "tonnes"),
  20990. name: "Side",
  20991. image: {
  20992. source: "./media/characters/fixerdragon/side.svg",
  20993. extra: (1293.0514 - 116.03) / 1106.86,
  20994. bottom: 116.03 / 1293.0514
  20995. }
  20996. },
  20997. },
  20998. [
  20999. {
  21000. name: "Planck",
  21001. height: math.unit(1.6e-35, "meters")
  21002. },
  21003. {
  21004. name: "Micro",
  21005. height: math.unit(0.4, "meters")
  21006. },
  21007. {
  21008. name: "Normal",
  21009. height: math.unit(30, "meters"),
  21010. default: true
  21011. },
  21012. {
  21013. name: "Megamacro",
  21014. height: math.unit(1.2, "megameters")
  21015. },
  21016. {
  21017. name: "Teramacro",
  21018. height: math.unit(130, "terameters")
  21019. },
  21020. {
  21021. name: "Yottamacro",
  21022. height: math.unit(6200, "yottameters")
  21023. },
  21024. ]
  21025. ));
  21026. characterMakers.push(() => makeCharacter(
  21027. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21028. {
  21029. front: {
  21030. height: math.unit(8, "feet"),
  21031. weight: math.unit(250, "lb"),
  21032. name: "Front",
  21033. image: {
  21034. source: "./media/characters/kite/front.svg",
  21035. extra: 2796 / 2659,
  21036. bottom: 0.002
  21037. }
  21038. },
  21039. },
  21040. [
  21041. {
  21042. name: "Normal",
  21043. height: math.unit(8, "feet"),
  21044. default: true
  21045. },
  21046. {
  21047. name: "Macro",
  21048. height: math.unit(360, "feet")
  21049. },
  21050. {
  21051. name: "Megamacro",
  21052. height: math.unit(1500, "feet")
  21053. },
  21054. ]
  21055. ))
  21056. characterMakers.push(() => makeCharacter(
  21057. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21058. {
  21059. front: {
  21060. height: math.unit(5 + 10 / 12, "feet"),
  21061. weight: math.unit(150, "lb"),
  21062. name: "Front",
  21063. image: {
  21064. source: "./media/characters/poojawa-vynar/front.svg",
  21065. extra: (1506.1547 - 55) / 1356.6,
  21066. bottom: 55 / 1506.1547
  21067. }
  21068. },
  21069. frontTailless: {
  21070. height: math.unit(5 + 10 / 12, "feet"),
  21071. weight: math.unit(150, "lb"),
  21072. name: "Front (Tailless)",
  21073. image: {
  21074. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21075. extra: (1506.1547 - 55) / 1356.6,
  21076. bottom: 55 / 1506.1547
  21077. }
  21078. },
  21079. },
  21080. [
  21081. {
  21082. name: "Normal",
  21083. height: math.unit(5 + 10 / 12, "feet"),
  21084. default: true
  21085. },
  21086. ]
  21087. ))
  21088. characterMakers.push(() => makeCharacter(
  21089. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21090. {
  21091. front: {
  21092. height: math.unit(293, "meters"),
  21093. weight: math.unit(70400, "tons"),
  21094. name: "Front",
  21095. image: {
  21096. source: "./media/characters/violette/front.svg",
  21097. extra: 1227 / 1180,
  21098. bottom: 0.005
  21099. }
  21100. },
  21101. back: {
  21102. height: math.unit(293, "meters"),
  21103. weight: math.unit(70400, "tons"),
  21104. name: "Back",
  21105. image: {
  21106. source: "./media/characters/violette/back.svg",
  21107. extra: 1227 / 1180,
  21108. bottom: 0.005
  21109. }
  21110. },
  21111. },
  21112. [
  21113. {
  21114. name: "Macro",
  21115. height: math.unit(293, "meters"),
  21116. default: true
  21117. },
  21118. ]
  21119. ))
  21120. characterMakers.push(() => makeCharacter(
  21121. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21122. {
  21123. front: {
  21124. height: math.unit(1050, "feet"),
  21125. weight: math.unit(200000, "tons"),
  21126. name: "Front",
  21127. image: {
  21128. source: "./media/characters/alessandra/front.svg",
  21129. extra: 960 / 912,
  21130. bottom: 0.06
  21131. }
  21132. },
  21133. },
  21134. [
  21135. {
  21136. name: "Macro",
  21137. height: math.unit(1050, "feet")
  21138. },
  21139. {
  21140. name: "Macro+",
  21141. height: math.unit(900, "meters"),
  21142. default: true
  21143. },
  21144. ]
  21145. ))
  21146. characterMakers.push(() => makeCharacter(
  21147. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21148. {
  21149. front: {
  21150. height: math.unit(5, "feet"),
  21151. weight: math.unit(187, "lb"),
  21152. name: "Front",
  21153. image: {
  21154. source: "./media/characters/person/front.svg",
  21155. extra: 3087 / 2945,
  21156. bottom: 91 / 3181
  21157. }
  21158. },
  21159. },
  21160. [
  21161. {
  21162. name: "Micro",
  21163. height: math.unit(3, "inches")
  21164. },
  21165. {
  21166. name: "Normal",
  21167. height: math.unit(5, "feet"),
  21168. default: true
  21169. },
  21170. {
  21171. name: "Macro",
  21172. height: math.unit(90, "feet")
  21173. },
  21174. {
  21175. name: "Max Size",
  21176. height: math.unit(280, "feet")
  21177. },
  21178. ]
  21179. ))
  21180. characterMakers.push(() => makeCharacter(
  21181. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21182. {
  21183. front: {
  21184. height: math.unit(4.5, "meters"),
  21185. weight: math.unit(3200, "lb"),
  21186. name: "Front",
  21187. image: {
  21188. source: "./media/characters/ty/front.svg",
  21189. extra: 1038 / 960,
  21190. bottom: 31.156 / 1068
  21191. }
  21192. },
  21193. back: {
  21194. height: math.unit(4.5, "meters"),
  21195. weight: math.unit(3200, "lb"),
  21196. name: "Back",
  21197. image: {
  21198. source: "./media/characters/ty/back.svg",
  21199. extra: 1044 / 966,
  21200. bottom: 7.48 / 1049
  21201. }
  21202. },
  21203. },
  21204. [
  21205. {
  21206. name: "Normal",
  21207. height: math.unit(4.5, "meters"),
  21208. default: true
  21209. },
  21210. ]
  21211. ))
  21212. characterMakers.push(() => makeCharacter(
  21213. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21214. {
  21215. front: {
  21216. height: math.unit(5 + 4 / 12, "feet"),
  21217. weight: math.unit(115, "lb"),
  21218. name: "Front",
  21219. image: {
  21220. source: "./media/characters/rocky/front.svg",
  21221. extra: 1012 / 975,
  21222. bottom: 54 / 1066
  21223. }
  21224. },
  21225. },
  21226. [
  21227. {
  21228. name: "Normal",
  21229. height: math.unit(5 + 4 / 12, "feet"),
  21230. default: true
  21231. },
  21232. ]
  21233. ))
  21234. characterMakers.push(() => makeCharacter(
  21235. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21236. {
  21237. upright: {
  21238. height: math.unit(6, "meters"),
  21239. weight: math.unit(4000, "kg"),
  21240. name: "Upright",
  21241. image: {
  21242. source: "./media/characters/ruin/upright.svg",
  21243. extra: 668 / 661,
  21244. bottom: 42 / 799.8396
  21245. }
  21246. },
  21247. },
  21248. [
  21249. {
  21250. name: "Normal",
  21251. height: math.unit(6, "meters"),
  21252. default: true
  21253. },
  21254. ]
  21255. ))
  21256. characterMakers.push(() => makeCharacter(
  21257. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21258. {
  21259. front: {
  21260. height: math.unit(5, "feet"),
  21261. weight: math.unit(106, "lb"),
  21262. name: "Front",
  21263. image: {
  21264. source: "./media/characters/robin/front.svg",
  21265. extra: 862 / 799,
  21266. bottom: 42.4 / 914.8856
  21267. }
  21268. },
  21269. },
  21270. [
  21271. {
  21272. name: "Normal",
  21273. height: math.unit(5, "feet"),
  21274. default: true
  21275. },
  21276. ]
  21277. ))
  21278. characterMakers.push(() => makeCharacter(
  21279. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21280. {
  21281. side: {
  21282. height: math.unit(3, "feet"),
  21283. weight: math.unit(225, "lb"),
  21284. name: "Side",
  21285. image: {
  21286. source: "./media/characters/saian/side.svg",
  21287. extra: 566 / 356,
  21288. bottom: 79.7 / 643
  21289. }
  21290. },
  21291. maw: {
  21292. height: math.unit(2.85, "feet"),
  21293. name: "Maw",
  21294. image: {
  21295. source: "./media/characters/saian/maw.svg"
  21296. }
  21297. },
  21298. },
  21299. [
  21300. {
  21301. name: "Normal",
  21302. height: math.unit(3, "feet"),
  21303. default: true
  21304. },
  21305. ]
  21306. ))
  21307. characterMakers.push(() => makeCharacter(
  21308. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21309. {
  21310. side: {
  21311. height: math.unit(8, "feet"),
  21312. weight: math.unit(300, "lb"),
  21313. name: "Side",
  21314. image: {
  21315. source: "./media/characters/equus-silvermane/side.svg",
  21316. extra: 2176 / 2050,
  21317. bottom: 65.7 / 2245
  21318. }
  21319. },
  21320. front: {
  21321. height: math.unit(8, "feet"),
  21322. weight: math.unit(300, "lb"),
  21323. name: "Front",
  21324. image: {
  21325. source: "./media/characters/equus-silvermane/front.svg",
  21326. extra: 4633 / 4400,
  21327. bottom: 71.3 / 4706.915
  21328. }
  21329. },
  21330. sideStepping: {
  21331. height: math.unit(8, "feet"),
  21332. weight: math.unit(300, "lb"),
  21333. name: "Side (Stepping)",
  21334. image: {
  21335. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21336. extra: 1968 / 1860,
  21337. bottom: 16.4 / 1989
  21338. }
  21339. },
  21340. },
  21341. [
  21342. {
  21343. name: "Normal",
  21344. height: math.unit(8, "feet")
  21345. },
  21346. {
  21347. name: "Minimacro",
  21348. height: math.unit(75, "feet"),
  21349. default: true
  21350. },
  21351. {
  21352. name: "Macro",
  21353. height: math.unit(150, "feet")
  21354. },
  21355. {
  21356. name: "Macro+",
  21357. height: math.unit(1000, "feet")
  21358. },
  21359. {
  21360. name: "Megamacro",
  21361. height: math.unit(1, "mile")
  21362. },
  21363. ]
  21364. ))
  21365. characterMakers.push(() => makeCharacter(
  21366. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21367. {
  21368. side: {
  21369. height: math.unit(20, "feet"),
  21370. weight: math.unit(30000, "kg"),
  21371. name: "Side",
  21372. image: {
  21373. source: "./media/characters/windar/side.svg",
  21374. extra: 1491 / 1248,
  21375. bottom: 82.56 / 1568
  21376. }
  21377. },
  21378. },
  21379. [
  21380. {
  21381. name: "Normal",
  21382. height: math.unit(20, "feet"),
  21383. default: true
  21384. },
  21385. ]
  21386. ))
  21387. characterMakers.push(() => makeCharacter(
  21388. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21389. {
  21390. side: {
  21391. height: math.unit(15.66, "feet"),
  21392. weight: math.unit(150, "lb"),
  21393. name: "Side",
  21394. image: {
  21395. source: "./media/characters/melody/side.svg",
  21396. extra: 1097 / 944,
  21397. bottom: 11.8 / 1109
  21398. }
  21399. },
  21400. sideOutfit: {
  21401. height: math.unit(15.66, "feet"),
  21402. weight: math.unit(150, "lb"),
  21403. name: "Side (Outfit)",
  21404. image: {
  21405. source: "./media/characters/melody/side-outfit.svg",
  21406. extra: 1097 / 944,
  21407. bottom: 11.8 / 1109
  21408. }
  21409. },
  21410. },
  21411. [
  21412. {
  21413. name: "Normal",
  21414. height: math.unit(15.66, "feet"),
  21415. default: true
  21416. },
  21417. ]
  21418. ))
  21419. characterMakers.push(() => makeCharacter(
  21420. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21421. {
  21422. front: {
  21423. height: math.unit(8, "feet"),
  21424. weight: math.unit(325, "lb"),
  21425. name: "Front",
  21426. image: {
  21427. source: "./media/characters/windera/front.svg",
  21428. extra: 3180 / 2845,
  21429. bottom: 178 / 3365
  21430. }
  21431. },
  21432. },
  21433. [
  21434. {
  21435. name: "Normal",
  21436. height: math.unit(8, "feet"),
  21437. default: true
  21438. },
  21439. ]
  21440. ))
  21441. characterMakers.push(() => makeCharacter(
  21442. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21443. {
  21444. front: {
  21445. height: math.unit(28.75, "feet"),
  21446. weight: math.unit(2000, "kg"),
  21447. name: "Front",
  21448. image: {
  21449. source: "./media/characters/sonear/front.svg",
  21450. extra: 1041.1 / 964.9,
  21451. bottom: 53.7 / 1096.6
  21452. }
  21453. },
  21454. },
  21455. [
  21456. {
  21457. name: "Normal",
  21458. height: math.unit(28.75, "feet"),
  21459. default: true
  21460. },
  21461. ]
  21462. ))
  21463. characterMakers.push(() => makeCharacter(
  21464. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21465. {
  21466. side: {
  21467. height: math.unit(25.5, "feet"),
  21468. weight: math.unit(23000, "kg"),
  21469. name: "Side",
  21470. image: {
  21471. source: "./media/characters/kanara/side.svg"
  21472. }
  21473. },
  21474. },
  21475. [
  21476. {
  21477. name: "Normal",
  21478. height: math.unit(25.5, "feet"),
  21479. default: true
  21480. },
  21481. ]
  21482. ))
  21483. characterMakers.push(() => makeCharacter(
  21484. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21485. {
  21486. side: {
  21487. height: math.unit(10, "feet"),
  21488. weight: math.unit(1000, "kg"),
  21489. name: "Side",
  21490. image: {
  21491. source: "./media/characters/ereus/side.svg",
  21492. extra: 1157 / 959,
  21493. bottom: 153 / 1312.5
  21494. }
  21495. },
  21496. },
  21497. [
  21498. {
  21499. name: "Normal",
  21500. height: math.unit(10, "feet"),
  21501. default: true
  21502. },
  21503. ]
  21504. ))
  21505. characterMakers.push(() => makeCharacter(
  21506. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21507. {
  21508. side: {
  21509. height: math.unit(4.5, "feet"),
  21510. weight: math.unit(500, "lb"),
  21511. name: "Side",
  21512. image: {
  21513. source: "./media/characters/e-ter/side.svg",
  21514. extra: 1550 / 1248,
  21515. bottom: 146 / 1694
  21516. }
  21517. },
  21518. },
  21519. [
  21520. {
  21521. name: "Normal",
  21522. height: math.unit(4.5, "feet"),
  21523. default: true
  21524. },
  21525. ]
  21526. ))
  21527. characterMakers.push(() => makeCharacter(
  21528. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21529. {
  21530. side: {
  21531. height: math.unit(9.7, "feet"),
  21532. weight: math.unit(4000, "kg"),
  21533. name: "Side",
  21534. image: {
  21535. source: "./media/characters/yamie/side.svg"
  21536. }
  21537. },
  21538. },
  21539. [
  21540. {
  21541. name: "Normal",
  21542. height: math.unit(9.7, "feet"),
  21543. default: true
  21544. },
  21545. ]
  21546. ))
  21547. characterMakers.push(() => makeCharacter(
  21548. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21549. {
  21550. front: {
  21551. height: math.unit(50, "feet"),
  21552. weight: math.unit(50000, "kg"),
  21553. name: "Front",
  21554. image: {
  21555. source: "./media/characters/anders/front.svg",
  21556. extra: 570 / 539,
  21557. bottom: 14.7 / 586.7
  21558. }
  21559. },
  21560. },
  21561. [
  21562. {
  21563. name: "Large",
  21564. height: math.unit(50, "feet")
  21565. },
  21566. {
  21567. name: "Macro",
  21568. height: math.unit(2000, "feet"),
  21569. default: true
  21570. },
  21571. {
  21572. name: "Megamacro",
  21573. height: math.unit(12, "miles")
  21574. },
  21575. ]
  21576. ))
  21577. characterMakers.push(() => makeCharacter(
  21578. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21579. {
  21580. front: {
  21581. height: math.unit(7 + 2 / 12, "feet"),
  21582. weight: math.unit(300, "lb"),
  21583. name: "Front",
  21584. image: {
  21585. source: "./media/characters/reban/front.svg",
  21586. extra: 516 / 487,
  21587. bottom: 42.82 / 558.356
  21588. }
  21589. },
  21590. dick: {
  21591. height: math.unit(7 / 5, "feet"),
  21592. name: "Dick",
  21593. image: {
  21594. source: "./media/characters/reban/dick.svg"
  21595. }
  21596. },
  21597. },
  21598. [
  21599. {
  21600. name: "Natural Height",
  21601. height: math.unit(7 + 2 / 12, "feet")
  21602. },
  21603. {
  21604. name: "Macro",
  21605. height: math.unit(500, "feet"),
  21606. default: true
  21607. },
  21608. {
  21609. name: "Canon Height",
  21610. height: math.unit(50, "AU")
  21611. },
  21612. ]
  21613. ))
  21614. characterMakers.push(() => makeCharacter(
  21615. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21616. {
  21617. front: {
  21618. height: math.unit(6, "feet"),
  21619. weight: math.unit(150, "lb"),
  21620. name: "Front",
  21621. image: {
  21622. source: "./media/characters/terrance-keayes/front.svg",
  21623. extra: 1.005,
  21624. bottom: 151 / 1615
  21625. }
  21626. },
  21627. side: {
  21628. height: math.unit(6, "feet"),
  21629. weight: math.unit(150, "lb"),
  21630. name: "Side",
  21631. image: {
  21632. source: "./media/characters/terrance-keayes/side.svg",
  21633. extra: 1.005,
  21634. bottom: 129.4 / 1544
  21635. }
  21636. },
  21637. back: {
  21638. height: math.unit(6, "feet"),
  21639. weight: math.unit(150, "lb"),
  21640. name: "Back",
  21641. image: {
  21642. source: "./media/characters/terrance-keayes/back.svg",
  21643. extra: 1.005,
  21644. bottom: 58.4 / 1557.3
  21645. }
  21646. },
  21647. dick: {
  21648. height: math.unit(6 * 0.208, "feet"),
  21649. name: "Dick",
  21650. image: {
  21651. source: "./media/characters/terrance-keayes/dick.svg"
  21652. }
  21653. },
  21654. },
  21655. [
  21656. {
  21657. name: "Canon Height",
  21658. height: math.unit(35, "miles"),
  21659. default: true
  21660. },
  21661. ]
  21662. ))
  21663. characterMakers.push(() => makeCharacter(
  21664. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21665. {
  21666. front: {
  21667. height: math.unit(6, "feet"),
  21668. weight: math.unit(150, "lb"),
  21669. name: "Front",
  21670. image: {
  21671. source: "./media/characters/ofelia/front.svg",
  21672. extra: 546 / 541,
  21673. bottom: 39 / 583
  21674. }
  21675. },
  21676. back: {
  21677. height: math.unit(6, "feet"),
  21678. weight: math.unit(150, "lb"),
  21679. name: "Back",
  21680. image: {
  21681. source: "./media/characters/ofelia/back.svg",
  21682. extra: 564 / 559.5,
  21683. bottom: 8.69 / 573.02
  21684. }
  21685. },
  21686. maw: {
  21687. height: math.unit(1, "feet"),
  21688. name: "Maw",
  21689. image: {
  21690. source: "./media/characters/ofelia/maw.svg"
  21691. }
  21692. },
  21693. foot: {
  21694. height: math.unit(1.949, "feet"),
  21695. name: "Foot",
  21696. image: {
  21697. source: "./media/characters/ofelia/foot.svg"
  21698. }
  21699. },
  21700. },
  21701. [
  21702. {
  21703. name: "Canon Height",
  21704. height: math.unit(2000, "miles"),
  21705. default: true
  21706. },
  21707. ]
  21708. ))
  21709. characterMakers.push(() => makeCharacter(
  21710. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21711. {
  21712. front: {
  21713. height: math.unit(6, "feet"),
  21714. weight: math.unit(150, "lb"),
  21715. name: "Front",
  21716. image: {
  21717. source: "./media/characters/samuel/front.svg",
  21718. extra: 265 / 258,
  21719. bottom: 2 / 266.1566
  21720. }
  21721. },
  21722. },
  21723. [
  21724. {
  21725. name: "Macro",
  21726. height: math.unit(100, "feet"),
  21727. default: true
  21728. },
  21729. {
  21730. name: "Full Size",
  21731. height: math.unit(1000, "miles")
  21732. },
  21733. ]
  21734. ))
  21735. characterMakers.push(() => makeCharacter(
  21736. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21737. {
  21738. front: {
  21739. height: math.unit(6, "feet"),
  21740. weight: math.unit(300, "lb"),
  21741. name: "Front",
  21742. image: {
  21743. source: "./media/characters/beishir-kiel/front.svg",
  21744. extra: 569 / 547,
  21745. bottom: 41.9 / 609
  21746. }
  21747. },
  21748. maw: {
  21749. height: math.unit(6 * 0.202, "feet"),
  21750. name: "Maw",
  21751. image: {
  21752. source: "./media/characters/beishir-kiel/maw.svg"
  21753. }
  21754. },
  21755. },
  21756. [
  21757. {
  21758. name: "Macro",
  21759. height: math.unit(300, "feet"),
  21760. default: true
  21761. },
  21762. ]
  21763. ))
  21764. characterMakers.push(() => makeCharacter(
  21765. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21766. {
  21767. front: {
  21768. height: math.unit(5 + 8 / 12, "feet"),
  21769. weight: math.unit(120, "lb"),
  21770. name: "Front",
  21771. image: {
  21772. source: "./media/characters/logan-grey/front.svg",
  21773. extra: 2539 / 2393,
  21774. bottom: 97.6 / 2636.37
  21775. }
  21776. },
  21777. frontAlt: {
  21778. height: math.unit(5 + 8 / 12, "feet"),
  21779. weight: math.unit(120, "lb"),
  21780. name: "Front (Alt)",
  21781. image: {
  21782. source: "./media/characters/logan-grey/front-alt.svg",
  21783. extra: 958 / 893,
  21784. bottom: 15 / 970.768
  21785. }
  21786. },
  21787. back: {
  21788. height: math.unit(5 + 8 / 12, "feet"),
  21789. weight: math.unit(120, "lb"),
  21790. name: "Back",
  21791. image: {
  21792. source: "./media/characters/logan-grey/back.svg",
  21793. extra: 958 / 893,
  21794. bottom: 2.1881 / 970.9788
  21795. }
  21796. },
  21797. dick: {
  21798. height: math.unit(1.437, "feet"),
  21799. name: "Dick",
  21800. image: {
  21801. source: "./media/characters/logan-grey/dick.svg"
  21802. }
  21803. },
  21804. },
  21805. [
  21806. {
  21807. name: "Normal",
  21808. height: math.unit(5 + 8 / 12, "feet")
  21809. },
  21810. {
  21811. name: "The 500 Foot Femboy",
  21812. height: math.unit(500, "feet"),
  21813. default: true
  21814. },
  21815. {
  21816. name: "Megmacro",
  21817. height: math.unit(20, "miles")
  21818. },
  21819. ]
  21820. ))
  21821. characterMakers.push(() => makeCharacter(
  21822. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21823. {
  21824. front: {
  21825. height: math.unit(8 + 2 / 12, "feet"),
  21826. weight: math.unit(275, "lb"),
  21827. name: "Front",
  21828. image: {
  21829. source: "./media/characters/draganta/front.svg",
  21830. extra: 1177 / 1135,
  21831. bottom: 33.46 / 1212.1
  21832. }
  21833. },
  21834. },
  21835. [
  21836. {
  21837. name: "Normal",
  21838. height: math.unit(8 + 6 / 12, "feet"),
  21839. default: true
  21840. },
  21841. {
  21842. name: "Macro",
  21843. height: math.unit(150, "feet")
  21844. },
  21845. {
  21846. name: "Megamacro",
  21847. height: math.unit(1000, "miles")
  21848. },
  21849. ]
  21850. ))
  21851. characterMakers.push(() => makeCharacter(
  21852. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21853. {
  21854. front: {
  21855. height: math.unit(1.72, "m"),
  21856. weight: math.unit(80, "lb"),
  21857. name: "Front",
  21858. image: {
  21859. source: "./media/characters/voski/front.svg",
  21860. extra: 2076.22 / 2022.4,
  21861. bottom: 102.7 / 2177.3866
  21862. }
  21863. },
  21864. frontNsfw: {
  21865. height: math.unit(1.72, "m"),
  21866. weight: math.unit(80, "lb"),
  21867. name: "Front (NSFW)",
  21868. image: {
  21869. source: "./media/characters/voski/front-nsfw.svg",
  21870. extra: 2076.22 / 2022.4,
  21871. bottom: 102.7 / 2177.3866
  21872. }
  21873. },
  21874. back: {
  21875. height: math.unit(1.72, "m"),
  21876. weight: math.unit(80, "lb"),
  21877. name: "Back",
  21878. image: {
  21879. source: "./media/characters/voski/back.svg",
  21880. extra: 2104 / 2051,
  21881. bottom: 10.45 / 2113.63
  21882. }
  21883. },
  21884. },
  21885. [
  21886. {
  21887. name: "Normal",
  21888. height: math.unit(1.72, "m")
  21889. },
  21890. {
  21891. name: "Macro",
  21892. height: math.unit(55, "m"),
  21893. default: true
  21894. },
  21895. {
  21896. name: "Macro+",
  21897. height: math.unit(300, "m")
  21898. },
  21899. {
  21900. name: "Macro++",
  21901. height: math.unit(700, "m")
  21902. },
  21903. {
  21904. name: "Macro+++",
  21905. height: math.unit(4500, "m")
  21906. },
  21907. {
  21908. name: "Macro++++",
  21909. height: math.unit(45, "km")
  21910. },
  21911. {
  21912. name: "Macro+++++",
  21913. height: math.unit(1220, "km")
  21914. },
  21915. ]
  21916. ))
  21917. characterMakers.push(() => makeCharacter(
  21918. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21919. {
  21920. front: {
  21921. height: math.unit(2.3, "m"),
  21922. weight: math.unit(304, "kg"),
  21923. name: "Front",
  21924. image: {
  21925. source: "./media/characters/icowom-lee/front.svg",
  21926. extra: 985 / 955,
  21927. bottom: 25.4 / 1012
  21928. }
  21929. },
  21930. fronttentacles: {
  21931. height: math.unit(2.3, "m"),
  21932. weight: math.unit(304, "kg"),
  21933. name: "Front-tentacles",
  21934. image: {
  21935. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21936. extra: 985 / 955,
  21937. bottom: 25.4 / 1012
  21938. }
  21939. },
  21940. back: {
  21941. height: math.unit(2.3, "m"),
  21942. weight: math.unit(304, "kg"),
  21943. name: "Back",
  21944. image: {
  21945. source: "./media/characters/icowom-lee/back.svg",
  21946. extra: 975 / 954,
  21947. bottom: 9.5 / 985
  21948. }
  21949. },
  21950. backtentacles: {
  21951. height: math.unit(2.3, "m"),
  21952. weight: math.unit(304, "kg"),
  21953. name: "Back-tentacles",
  21954. image: {
  21955. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21956. extra: 975 / 954,
  21957. bottom: 9.5 / 985
  21958. }
  21959. },
  21960. frontDressed: {
  21961. height: math.unit(2.3, "m"),
  21962. weight: math.unit(304, "kg"),
  21963. name: "Front (Dressed)",
  21964. image: {
  21965. source: "./media/characters/icowom-lee/front-dressed.svg",
  21966. extra: 3076 / 2933,
  21967. bottom: 51.4 / 3125.1889
  21968. }
  21969. },
  21970. rump: {
  21971. height: math.unit(0.776, "meters"),
  21972. name: "Rump",
  21973. image: {
  21974. source: "./media/characters/icowom-lee/rump.svg"
  21975. }
  21976. },
  21977. genitals: {
  21978. height: math.unit(0.78, "meters"),
  21979. name: "Genitals",
  21980. image: {
  21981. source: "./media/characters/icowom-lee/genitals.svg"
  21982. }
  21983. },
  21984. },
  21985. [
  21986. {
  21987. name: "Normal",
  21988. height: math.unit(2.3, "meters"),
  21989. default: true
  21990. },
  21991. {
  21992. name: "Macro",
  21993. height: math.unit(94, "meters"),
  21994. default: true
  21995. },
  21996. ]
  21997. ))
  21998. characterMakers.push(() => makeCharacter(
  21999. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22000. {
  22001. front: {
  22002. height: math.unit(22, "meters"),
  22003. weight: math.unit(21000, "kg"),
  22004. name: "Front",
  22005. image: {
  22006. source: "./media/characters/shock-diamond/front.svg",
  22007. extra: 2204 / 2053,
  22008. bottom: 65 / 2239.47
  22009. }
  22010. },
  22011. frontNude: {
  22012. height: math.unit(22, "meters"),
  22013. weight: math.unit(21000, "kg"),
  22014. name: "Front (Nude)",
  22015. image: {
  22016. source: "./media/characters/shock-diamond/front-nude.svg",
  22017. extra: 2514 / 2285,
  22018. bottom: 13 / 2527.56
  22019. }
  22020. },
  22021. },
  22022. [
  22023. {
  22024. name: "Normal",
  22025. height: math.unit(3, "meters")
  22026. },
  22027. {
  22028. name: "Macro",
  22029. height: math.unit(22, "meters"),
  22030. default: true
  22031. },
  22032. ]
  22033. ))
  22034. characterMakers.push(() => makeCharacter(
  22035. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22036. {
  22037. front: {
  22038. height: math.unit(5 + 4 / 12, "feet"),
  22039. weight: math.unit(120, "lb"),
  22040. name: "Front",
  22041. image: {
  22042. source: "./media/characters/rory/front.svg",
  22043. extra: 589 / 556,
  22044. bottom: 45.7 / 635.76
  22045. }
  22046. },
  22047. frontNude: {
  22048. height: math.unit(5 + 4 / 12, "feet"),
  22049. weight: math.unit(120, "lb"),
  22050. name: "Front (Nude)",
  22051. image: {
  22052. source: "./media/characters/rory/front-nude.svg",
  22053. extra: 589 / 556,
  22054. bottom: 45.7 / 635.76
  22055. }
  22056. },
  22057. side: {
  22058. height: math.unit(5 + 4 / 12, "feet"),
  22059. weight: math.unit(120, "lb"),
  22060. name: "Side",
  22061. image: {
  22062. source: "./media/characters/rory/side.svg",
  22063. extra: 597 / 564,
  22064. bottom: 55 / 653
  22065. }
  22066. },
  22067. back: {
  22068. height: math.unit(5 + 4 / 12, "feet"),
  22069. weight: math.unit(120, "lb"),
  22070. name: "Back",
  22071. image: {
  22072. source: "./media/characters/rory/back.svg",
  22073. extra: 620 / 585,
  22074. bottom: 8.86 / 630.43
  22075. }
  22076. },
  22077. dick: {
  22078. height: math.unit(0.86, "feet"),
  22079. name: "Dick",
  22080. image: {
  22081. source: "./media/characters/rory/dick.svg"
  22082. }
  22083. },
  22084. },
  22085. [
  22086. {
  22087. name: "Normal",
  22088. height: math.unit(5 + 4 / 12, "feet"),
  22089. default: true
  22090. },
  22091. {
  22092. name: "Macro",
  22093. height: math.unit(100, "feet")
  22094. },
  22095. {
  22096. name: "Macro+",
  22097. height: math.unit(140, "feet")
  22098. },
  22099. {
  22100. name: "Macro++",
  22101. height: math.unit(300, "feet")
  22102. },
  22103. ]
  22104. ))
  22105. characterMakers.push(() => makeCharacter(
  22106. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22107. {
  22108. front: {
  22109. height: math.unit(5 + 9 / 12, "feet"),
  22110. weight: math.unit(190, "lb"),
  22111. name: "Front",
  22112. image: {
  22113. source: "./media/characters/sprisk/front.svg",
  22114. extra: 1225 / 1180,
  22115. bottom: 42.7 / 1266.4
  22116. }
  22117. },
  22118. frontNsfw: {
  22119. height: math.unit(5 + 9 / 12, "feet"),
  22120. weight: math.unit(190, "lb"),
  22121. name: "Front (NSFW)",
  22122. image: {
  22123. source: "./media/characters/sprisk/front-nsfw.svg",
  22124. extra: 1225 / 1180,
  22125. bottom: 42.7 / 1266.4
  22126. }
  22127. },
  22128. back: {
  22129. height: math.unit(5 + 9 / 12, "feet"),
  22130. weight: math.unit(190, "lb"),
  22131. name: "Back",
  22132. image: {
  22133. source: "./media/characters/sprisk/back.svg",
  22134. extra: 1247 / 1200,
  22135. bottom: 5.6 / 1253.04
  22136. }
  22137. },
  22138. },
  22139. [
  22140. {
  22141. name: "Tiny",
  22142. height: math.unit(2, "inches")
  22143. },
  22144. {
  22145. name: "Normal",
  22146. height: math.unit(5 + 9 / 12, "feet"),
  22147. default: true
  22148. },
  22149. {
  22150. name: "Mini Macro",
  22151. height: math.unit(18, "feet")
  22152. },
  22153. {
  22154. name: "Macro",
  22155. height: math.unit(100, "feet")
  22156. },
  22157. {
  22158. name: "MACRO",
  22159. height: math.unit(50, "miles")
  22160. },
  22161. {
  22162. name: "M A C R O",
  22163. height: math.unit(300, "miles")
  22164. },
  22165. ]
  22166. ))
  22167. characterMakers.push(() => makeCharacter(
  22168. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22169. {
  22170. side: {
  22171. height: math.unit(15.6, "meters"),
  22172. weight: math.unit(700000, "kg"),
  22173. name: "Side",
  22174. image: {
  22175. source: "./media/characters/bunsen/side.svg",
  22176. extra: 1644 / 358
  22177. }
  22178. },
  22179. foot: {
  22180. height: math.unit(1.611 * 1644 / 358, "meter"),
  22181. name: "Foot",
  22182. image: {
  22183. source: "./media/characters/bunsen/foot.svg"
  22184. }
  22185. },
  22186. },
  22187. [
  22188. {
  22189. name: "Small",
  22190. height: math.unit(10, "feet")
  22191. },
  22192. {
  22193. name: "Normal",
  22194. height: math.unit(15.6, "meters"),
  22195. default: true
  22196. },
  22197. ]
  22198. ))
  22199. characterMakers.push(() => makeCharacter(
  22200. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22201. {
  22202. front: {
  22203. height: math.unit(4 + 11 / 12, "feet"),
  22204. weight: math.unit(140, "lb"),
  22205. name: "Front",
  22206. image: {
  22207. source: "./media/characters/sesh/front.svg",
  22208. extra: 3420 / 3231,
  22209. bottom: 72 / 3949.5
  22210. }
  22211. },
  22212. },
  22213. [
  22214. {
  22215. name: "Normal",
  22216. height: math.unit(4 + 11 / 12, "feet")
  22217. },
  22218. {
  22219. name: "Grown",
  22220. height: math.unit(15, "feet"),
  22221. default: true
  22222. },
  22223. {
  22224. name: "Macro",
  22225. height: math.unit(1500, "feet")
  22226. },
  22227. {
  22228. name: "Megamacro",
  22229. height: math.unit(30, "miles")
  22230. },
  22231. {
  22232. name: "Continental",
  22233. height: math.unit(3000, "miles")
  22234. },
  22235. {
  22236. name: "Gravity Mass",
  22237. height: math.unit(300000, "miles")
  22238. },
  22239. {
  22240. name: "Planet Buster",
  22241. height: math.unit(30000000, "miles")
  22242. },
  22243. {
  22244. name: "Big",
  22245. height: math.unit(3000000000, "miles")
  22246. },
  22247. ]
  22248. ))
  22249. characterMakers.push(() => makeCharacter(
  22250. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22251. {
  22252. front: {
  22253. height: math.unit(9, "feet"),
  22254. weight: math.unit(350, "lb"),
  22255. name: "Front",
  22256. image: {
  22257. source: "./media/characters/pepper/front.svg",
  22258. extra: 1448 / 1312,
  22259. bottom: 9.4 / 1457.88
  22260. }
  22261. },
  22262. back: {
  22263. height: math.unit(9, "feet"),
  22264. weight: math.unit(350, "lb"),
  22265. name: "Back",
  22266. image: {
  22267. source: "./media/characters/pepper/back.svg",
  22268. extra: 1423 / 1300,
  22269. bottom: 4.6 / 1429
  22270. }
  22271. },
  22272. maw: {
  22273. height: math.unit(0.932, "feet"),
  22274. name: "Maw",
  22275. image: {
  22276. source: "./media/characters/pepper/maw.svg"
  22277. }
  22278. },
  22279. },
  22280. [
  22281. {
  22282. name: "Normal",
  22283. height: math.unit(9, "feet"),
  22284. default: true
  22285. },
  22286. ]
  22287. ))
  22288. characterMakers.push(() => makeCharacter(
  22289. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22290. {
  22291. front: {
  22292. height: math.unit(6, "feet"),
  22293. weight: math.unit(150, "lb"),
  22294. name: "Front",
  22295. image: {
  22296. source: "./media/characters/maelstrom/front.svg",
  22297. extra: 2100 / 1883,
  22298. bottom: 94 / 2196.7
  22299. }
  22300. },
  22301. },
  22302. [
  22303. {
  22304. name: "Less Kaiju",
  22305. height: math.unit(200, "feet")
  22306. },
  22307. {
  22308. name: "Kaiju",
  22309. height: math.unit(400, "feet"),
  22310. default: true
  22311. },
  22312. {
  22313. name: "Kaiju-er",
  22314. height: math.unit(600, "feet")
  22315. },
  22316. ]
  22317. ))
  22318. characterMakers.push(() => makeCharacter(
  22319. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22320. {
  22321. front: {
  22322. height: math.unit(6 + 5 / 12, "feet"),
  22323. weight: math.unit(180, "lb"),
  22324. name: "Front",
  22325. image: {
  22326. source: "./media/characters/lexir/front.svg",
  22327. extra: 180 / 172,
  22328. bottom: 12 / 192
  22329. }
  22330. },
  22331. back: {
  22332. height: math.unit(6 + 5 / 12, "feet"),
  22333. weight: math.unit(180, "lb"),
  22334. name: "Back",
  22335. image: {
  22336. source: "./media/characters/lexir/back.svg",
  22337. extra: 183.84 / 175.5,
  22338. bottom: 3.1 / 187
  22339. }
  22340. },
  22341. },
  22342. [
  22343. {
  22344. name: "Very Smal",
  22345. height: math.unit(1, "nm")
  22346. },
  22347. {
  22348. name: "Normal",
  22349. height: math.unit(6 + 5 / 12, "feet"),
  22350. default: true
  22351. },
  22352. {
  22353. name: "Macro",
  22354. height: math.unit(1, "mile")
  22355. },
  22356. {
  22357. name: "Megamacro",
  22358. height: math.unit(50, "miles")
  22359. },
  22360. ]
  22361. ))
  22362. characterMakers.push(() => makeCharacter(
  22363. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22364. {
  22365. front: {
  22366. height: math.unit(1.5, "meters"),
  22367. weight: math.unit(100, "lb"),
  22368. name: "Front",
  22369. image: {
  22370. source: "./media/characters/maksio/front.svg",
  22371. extra: 1549 / 1531,
  22372. bottom: 123.7 / 1674.5429
  22373. }
  22374. },
  22375. back: {
  22376. height: math.unit(1.5, "meters"),
  22377. weight: math.unit(100, "lb"),
  22378. name: "Back",
  22379. image: {
  22380. source: "./media/characters/maksio/back.svg",
  22381. extra: 1541 / 1509,
  22382. bottom: 97 / 1639
  22383. }
  22384. },
  22385. hand: {
  22386. height: math.unit(0.621, "feet"),
  22387. name: "Hand",
  22388. image: {
  22389. source: "./media/characters/maksio/hand.svg"
  22390. }
  22391. },
  22392. foot: {
  22393. height: math.unit(1.611, "feet"),
  22394. name: "Foot",
  22395. image: {
  22396. source: "./media/characters/maksio/foot.svg"
  22397. }
  22398. },
  22399. },
  22400. [
  22401. {
  22402. name: "Shrunken",
  22403. height: math.unit(10, "cm")
  22404. },
  22405. {
  22406. name: "Normal",
  22407. height: math.unit(150, "cm"),
  22408. default: true
  22409. },
  22410. ]
  22411. ))
  22412. characterMakers.push(() => makeCharacter(
  22413. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22414. {
  22415. front: {
  22416. height: math.unit(100, "feet"),
  22417. name: "Front",
  22418. image: {
  22419. source: "./media/characters/erza-bear/front.svg",
  22420. extra: 2449 / 2390,
  22421. bottom: 46 / 2494
  22422. }
  22423. },
  22424. back: {
  22425. height: math.unit(100, "feet"),
  22426. name: "Back",
  22427. image: {
  22428. source: "./media/characters/erza-bear/back.svg",
  22429. extra: 2489 / 2430,
  22430. bottom: 85.4 / 2480
  22431. }
  22432. },
  22433. tail: {
  22434. height: math.unit(42, "feet"),
  22435. name: "Tail",
  22436. image: {
  22437. source: "./media/characters/erza-bear/tail.svg"
  22438. }
  22439. },
  22440. tongue: {
  22441. height: math.unit(8, "feet"),
  22442. name: "Tongue",
  22443. image: {
  22444. source: "./media/characters/erza-bear/tongue.svg"
  22445. }
  22446. },
  22447. dick: {
  22448. height: math.unit(10.5, "feet"),
  22449. name: "Dick",
  22450. image: {
  22451. source: "./media/characters/erza-bear/dick.svg"
  22452. }
  22453. },
  22454. dickVertical: {
  22455. height: math.unit(16.9, "feet"),
  22456. name: "Dick (Vertical)",
  22457. image: {
  22458. source: "./media/characters/erza-bear/dick-vertical.svg"
  22459. }
  22460. },
  22461. },
  22462. [
  22463. {
  22464. name: "Macro",
  22465. height: math.unit(100, "feet"),
  22466. default: true
  22467. },
  22468. ]
  22469. ))
  22470. characterMakers.push(() => makeCharacter(
  22471. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22472. {
  22473. front: {
  22474. height: math.unit(172, "cm"),
  22475. weight: math.unit(73, "kg"),
  22476. name: "Front",
  22477. image: {
  22478. source: "./media/characters/violet-flor/front.svg",
  22479. extra: 1530 / 1442,
  22480. bottom: 61.9 / 1588.8
  22481. }
  22482. },
  22483. back: {
  22484. height: math.unit(180, "cm"),
  22485. weight: math.unit(73, "kg"),
  22486. name: "Back",
  22487. image: {
  22488. source: "./media/characters/violet-flor/back.svg",
  22489. extra: 1692 / 1630,
  22490. bottom: 20 / 1712
  22491. }
  22492. },
  22493. },
  22494. [
  22495. {
  22496. name: "Normal",
  22497. height: math.unit(172, "cm"),
  22498. default: true
  22499. },
  22500. ]
  22501. ))
  22502. characterMakers.push(() => makeCharacter(
  22503. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22504. {
  22505. front: {
  22506. height: math.unit(6, "feet"),
  22507. weight: math.unit(220, "lb"),
  22508. name: "Front",
  22509. image: {
  22510. source: "./media/characters/lynn-rhea/front.svg",
  22511. extra: 310 / 273
  22512. }
  22513. },
  22514. back: {
  22515. height: math.unit(6, "feet"),
  22516. weight: math.unit(220, "lb"),
  22517. name: "Back",
  22518. image: {
  22519. source: "./media/characters/lynn-rhea/back.svg",
  22520. extra: 310 / 273
  22521. }
  22522. },
  22523. dicks: {
  22524. height: math.unit(0.9, "feet"),
  22525. name: "Dicks",
  22526. image: {
  22527. source: "./media/characters/lynn-rhea/dicks.svg"
  22528. }
  22529. },
  22530. slit: {
  22531. height: math.unit(0.4, "feet"),
  22532. name: "Slit",
  22533. image: {
  22534. source: "./media/characters/lynn-rhea/slit.svg"
  22535. }
  22536. },
  22537. },
  22538. [
  22539. {
  22540. name: "Micro",
  22541. height: math.unit(1, "inch")
  22542. },
  22543. {
  22544. name: "Macro",
  22545. height: math.unit(60, "feet"),
  22546. default: true
  22547. },
  22548. {
  22549. name: "Megamacro",
  22550. height: math.unit(2, "miles")
  22551. },
  22552. {
  22553. name: "Gigamacro",
  22554. height: math.unit(3, "earths")
  22555. },
  22556. {
  22557. name: "Galactic",
  22558. height: math.unit(0.8, "galaxies")
  22559. },
  22560. ]
  22561. ))
  22562. characterMakers.push(() => makeCharacter(
  22563. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22564. {
  22565. front: {
  22566. height: math.unit(1600, "feet"),
  22567. weight: math.unit(85758785169, "kg"),
  22568. name: "Front",
  22569. image: {
  22570. source: "./media/characters/valathos/front.svg",
  22571. extra: 1451 / 1339
  22572. }
  22573. },
  22574. },
  22575. [
  22576. {
  22577. name: "Macro",
  22578. height: math.unit(1600, "feet"),
  22579. default: true
  22580. },
  22581. ]
  22582. ))
  22583. characterMakers.push(() => makeCharacter(
  22584. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22585. {
  22586. front: {
  22587. height: math.unit(7 + 5 / 12, "feet"),
  22588. weight: math.unit(300, "lb"),
  22589. name: "Front",
  22590. image: {
  22591. source: "./media/characters/azula/front.svg",
  22592. extra: 3208 / 2880,
  22593. bottom: 80.2 / 3277
  22594. }
  22595. },
  22596. back: {
  22597. height: math.unit(7 + 5 / 12, "feet"),
  22598. weight: math.unit(300, "lb"),
  22599. name: "Back",
  22600. image: {
  22601. source: "./media/characters/azula/back.svg",
  22602. extra: 3169 / 2822,
  22603. bottom: 150.6 / 3321
  22604. }
  22605. },
  22606. },
  22607. [
  22608. {
  22609. name: "Normal",
  22610. height: math.unit(7 + 5 / 12, "feet"),
  22611. default: true
  22612. },
  22613. {
  22614. name: "Big",
  22615. height: math.unit(20, "feet")
  22616. },
  22617. ]
  22618. ))
  22619. characterMakers.push(() => makeCharacter(
  22620. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22621. {
  22622. front: {
  22623. height: math.unit(5 + 1 / 12, "feet"),
  22624. weight: math.unit(110, "lb"),
  22625. name: "Front",
  22626. image: {
  22627. source: "./media/characters/rupert/front.svg",
  22628. extra: 1549 / 1495,
  22629. bottom: 54.2 / 1604.4
  22630. }
  22631. },
  22632. },
  22633. [
  22634. {
  22635. name: "Normal",
  22636. height: math.unit(5 + 1 / 12, "feet"),
  22637. default: true
  22638. },
  22639. ]
  22640. ))
  22641. characterMakers.push(() => makeCharacter(
  22642. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22643. {
  22644. front: {
  22645. height: math.unit(8 + 4 / 12, "feet"),
  22646. weight: math.unit(350, "lb"),
  22647. name: "Front",
  22648. image: {
  22649. source: "./media/characters/sheera-castellar/front.svg",
  22650. extra: 1957 / 1894,
  22651. bottom: 26.97 / 1975.017
  22652. }
  22653. },
  22654. side: {
  22655. height: math.unit(8 + 4 / 12, "feet"),
  22656. weight: math.unit(350, "lb"),
  22657. name: "Side",
  22658. image: {
  22659. source: "./media/characters/sheera-castellar/side.svg",
  22660. extra: 1957 / 1894
  22661. }
  22662. },
  22663. back: {
  22664. height: math.unit(8 + 4 / 12, "feet"),
  22665. weight: math.unit(350, "lb"),
  22666. name: "Back",
  22667. image: {
  22668. source: "./media/characters/sheera-castellar/back.svg",
  22669. extra: 1957 / 1894
  22670. }
  22671. },
  22672. angled: {
  22673. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22674. weight: math.unit(350, "lb"),
  22675. name: "Angled",
  22676. image: {
  22677. source: "./media/characters/sheera-castellar/angled.svg",
  22678. extra: 1807 / 1707,
  22679. bottom: 68 / 1875
  22680. }
  22681. },
  22682. genitals: {
  22683. height: math.unit(2.2, "feet"),
  22684. name: "Genitals",
  22685. image: {
  22686. source: "./media/characters/sheera-castellar/genitals.svg"
  22687. }
  22688. },
  22689. taur: {
  22690. height: math.unit(10 + 6/12, "feet"),
  22691. name: "Taur",
  22692. image: {
  22693. source: "./media/characters/sheera-castellar/taur.svg",
  22694. extra: 2017/1909,
  22695. bottom: 185/2202
  22696. }
  22697. },
  22698. },
  22699. [
  22700. {
  22701. name: "Normal",
  22702. height: math.unit(8 + 4 / 12, "feet")
  22703. },
  22704. {
  22705. name: "Macro",
  22706. height: math.unit(150, "feet"),
  22707. default: true
  22708. },
  22709. {
  22710. name: "Macro+",
  22711. height: math.unit(800, "feet")
  22712. },
  22713. ]
  22714. ))
  22715. characterMakers.push(() => makeCharacter(
  22716. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22717. {
  22718. front: {
  22719. height: math.unit(6, "feet"),
  22720. weight: math.unit(150, "lb"),
  22721. name: "Front",
  22722. image: {
  22723. source: "./media/characters/jaipur/front.svg",
  22724. extra: 3860 / 3731,
  22725. bottom: 287 / 4140
  22726. }
  22727. },
  22728. back: {
  22729. height: math.unit(6, "feet"),
  22730. weight: math.unit(150, "lb"),
  22731. name: "Back",
  22732. image: {
  22733. source: "./media/characters/jaipur/back.svg",
  22734. extra: 4060 / 3930,
  22735. bottom: 151 / 4200
  22736. }
  22737. },
  22738. },
  22739. [
  22740. {
  22741. name: "Normal",
  22742. height: math.unit(1.85, "meters"),
  22743. default: true
  22744. },
  22745. {
  22746. name: "Macro",
  22747. height: math.unit(150, "meters")
  22748. },
  22749. {
  22750. name: "Macro+",
  22751. height: math.unit(0.5, "miles")
  22752. },
  22753. {
  22754. name: "Macro++",
  22755. height: math.unit(2.5, "miles")
  22756. },
  22757. {
  22758. name: "Macro+++",
  22759. height: math.unit(12, "miles")
  22760. },
  22761. {
  22762. name: "Macro++++",
  22763. height: math.unit(120, "miles")
  22764. },
  22765. {
  22766. name: "Macro+++++",
  22767. height: math.unit(1200, "miles")
  22768. },
  22769. ]
  22770. ))
  22771. characterMakers.push(() => makeCharacter(
  22772. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22773. {
  22774. front: {
  22775. height: math.unit(6, "feet"),
  22776. weight: math.unit(150, "lb"),
  22777. name: "Front",
  22778. image: {
  22779. source: "./media/characters/sheila-wolf/front.svg",
  22780. extra: 1931 / 1808,
  22781. bottom: 29.5 / 1960
  22782. }
  22783. },
  22784. dick: {
  22785. height: math.unit(1.464, "feet"),
  22786. name: "Dick",
  22787. image: {
  22788. source: "./media/characters/sheila-wolf/dick.svg"
  22789. }
  22790. },
  22791. muzzle: {
  22792. height: math.unit(0.513, "feet"),
  22793. name: "Muzzle",
  22794. image: {
  22795. source: "./media/characters/sheila-wolf/muzzle.svg"
  22796. }
  22797. },
  22798. },
  22799. [
  22800. {
  22801. name: "Macro",
  22802. height: math.unit(70, "feet"),
  22803. default: true
  22804. },
  22805. ]
  22806. ))
  22807. characterMakers.push(() => makeCharacter(
  22808. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22809. {
  22810. front: {
  22811. height: math.unit(32, "meters"),
  22812. weight: math.unit(300000, "kg"),
  22813. name: "Front",
  22814. image: {
  22815. source: "./media/characters/almor/front.svg",
  22816. extra: 1408 / 1322,
  22817. bottom: 94.6 / 1506.5
  22818. }
  22819. },
  22820. },
  22821. [
  22822. {
  22823. name: "Macro",
  22824. height: math.unit(32, "meters"),
  22825. default: true
  22826. },
  22827. ]
  22828. ))
  22829. characterMakers.push(() => makeCharacter(
  22830. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22831. {
  22832. front: {
  22833. height: math.unit(7, "feet"),
  22834. weight: math.unit(200, "lb"),
  22835. name: "Front",
  22836. image: {
  22837. source: "./media/characters/silver/front.svg",
  22838. extra: 472.1 / 450.5,
  22839. bottom: 26.5 / 499.424
  22840. }
  22841. },
  22842. },
  22843. [
  22844. {
  22845. name: "Normal",
  22846. height: math.unit(7, "feet"),
  22847. default: true
  22848. },
  22849. {
  22850. name: "Macro",
  22851. height: math.unit(800, "feet")
  22852. },
  22853. {
  22854. name: "Megamacro",
  22855. height: math.unit(250, "miles")
  22856. },
  22857. ]
  22858. ))
  22859. characterMakers.push(() => makeCharacter(
  22860. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22861. {
  22862. front: {
  22863. height: math.unit(6, "feet"),
  22864. weight: math.unit(150, "lb"),
  22865. name: "Front",
  22866. image: {
  22867. source: "./media/characters/pliskin/front.svg",
  22868. extra: 1469 / 1359,
  22869. bottom: 70 / 1540
  22870. }
  22871. },
  22872. },
  22873. [
  22874. {
  22875. name: "Micro",
  22876. height: math.unit(3, "inches")
  22877. },
  22878. {
  22879. name: "Normal",
  22880. height: math.unit(5 + 11 / 12, "feet"),
  22881. default: true
  22882. },
  22883. {
  22884. name: "Macro",
  22885. height: math.unit(120, "feet")
  22886. },
  22887. ]
  22888. ))
  22889. characterMakers.push(() => makeCharacter(
  22890. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22891. {
  22892. front: {
  22893. height: math.unit(6, "feet"),
  22894. weight: math.unit(150, "lb"),
  22895. name: "Front",
  22896. image: {
  22897. source: "./media/characters/sammy/front.svg",
  22898. extra: 1193 / 1089,
  22899. bottom: 30.5 / 1226
  22900. }
  22901. },
  22902. },
  22903. [
  22904. {
  22905. name: "Macro",
  22906. height: math.unit(1700, "feet"),
  22907. default: true
  22908. },
  22909. {
  22910. name: "Examacro",
  22911. height: math.unit(2.5e9, "lightyears")
  22912. },
  22913. ]
  22914. ))
  22915. characterMakers.push(() => makeCharacter(
  22916. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22917. {
  22918. front: {
  22919. height: math.unit(21, "meters"),
  22920. weight: math.unit(12, "tonnes"),
  22921. name: "Front",
  22922. image: {
  22923. source: "./media/characters/kuru/front.svg",
  22924. extra: 4301 / 3785,
  22925. bottom: 371.3 / 4691
  22926. }
  22927. },
  22928. },
  22929. [
  22930. {
  22931. name: "Macro",
  22932. height: math.unit(21, "meters"),
  22933. default: true
  22934. },
  22935. ]
  22936. ))
  22937. characterMakers.push(() => makeCharacter(
  22938. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22939. {
  22940. front: {
  22941. height: math.unit(23, "meters"),
  22942. weight: math.unit(12.2, "tonnes"),
  22943. name: "Front",
  22944. image: {
  22945. source: "./media/characters/rakka/front.svg",
  22946. extra: 4670 / 4169,
  22947. bottom: 301 / 4968.7
  22948. }
  22949. },
  22950. },
  22951. [
  22952. {
  22953. name: "Macro",
  22954. height: math.unit(23, "meters"),
  22955. default: true
  22956. },
  22957. ]
  22958. ))
  22959. characterMakers.push(() => makeCharacter(
  22960. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22961. {
  22962. front: {
  22963. height: math.unit(6, "feet"),
  22964. weight: math.unit(150, "lb"),
  22965. name: "Front",
  22966. image: {
  22967. source: "./media/characters/rhys-feline/front.svg",
  22968. extra: 2488 / 2308,
  22969. bottom: 35.67 / 2519.19
  22970. }
  22971. },
  22972. },
  22973. [
  22974. {
  22975. name: "Really Small",
  22976. height: math.unit(1, "nm")
  22977. },
  22978. {
  22979. name: "Micro",
  22980. height: math.unit(4, "inches")
  22981. },
  22982. {
  22983. name: "Normal",
  22984. height: math.unit(4 + 10 / 12, "feet"),
  22985. default: true
  22986. },
  22987. {
  22988. name: "Macro",
  22989. height: math.unit(100, "feet")
  22990. },
  22991. {
  22992. name: "Megamacto",
  22993. height: math.unit(50, "miles")
  22994. },
  22995. ]
  22996. ))
  22997. characterMakers.push(() => makeCharacter(
  22998. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22999. {
  23000. side: {
  23001. height: math.unit(30, "feet"),
  23002. weight: math.unit(35000, "kg"),
  23003. name: "Side",
  23004. image: {
  23005. source: "./media/characters/alydar/side.svg",
  23006. extra: 234 / 222,
  23007. bottom: 6.5 / 241
  23008. }
  23009. },
  23010. front: {
  23011. height: math.unit(30, "feet"),
  23012. weight: math.unit(35000, "kg"),
  23013. name: "Front",
  23014. image: {
  23015. source: "./media/characters/alydar/front.svg",
  23016. extra: 223.37 / 210.2,
  23017. bottom: 22.3 / 246.76
  23018. }
  23019. },
  23020. top: {
  23021. height: math.unit(64.54, "feet"),
  23022. weight: math.unit(35000, "kg"),
  23023. name: "Top",
  23024. image: {
  23025. source: "./media/characters/alydar/top.svg"
  23026. }
  23027. },
  23028. anthro: {
  23029. height: math.unit(30, "feet"),
  23030. weight: math.unit(9000, "kg"),
  23031. name: "Anthro",
  23032. image: {
  23033. source: "./media/characters/alydar/anthro.svg",
  23034. extra: 432 / 421,
  23035. bottom: 7.18 / 440
  23036. }
  23037. },
  23038. maw: {
  23039. height: math.unit(11.693, "feet"),
  23040. name: "Maw",
  23041. image: {
  23042. source: "./media/characters/alydar/maw.svg"
  23043. }
  23044. },
  23045. head: {
  23046. height: math.unit(11.693, "feet"),
  23047. name: "Head",
  23048. image: {
  23049. source: "./media/characters/alydar/head.svg"
  23050. }
  23051. },
  23052. headAlt: {
  23053. height: math.unit(12.861, "feet"),
  23054. name: "Head (Alt)",
  23055. image: {
  23056. source: "./media/characters/alydar/head-alt.svg"
  23057. }
  23058. },
  23059. wing: {
  23060. height: math.unit(20.712, "feet"),
  23061. name: "Wing",
  23062. image: {
  23063. source: "./media/characters/alydar/wing.svg"
  23064. }
  23065. },
  23066. wingFeather: {
  23067. height: math.unit(9.662, "feet"),
  23068. name: "Wing Feather",
  23069. image: {
  23070. source: "./media/characters/alydar/wing-feather.svg"
  23071. }
  23072. },
  23073. countourFeather: {
  23074. height: math.unit(4.154, "feet"),
  23075. name: "Contour Feather",
  23076. image: {
  23077. source: "./media/characters/alydar/contour-feather.svg"
  23078. }
  23079. },
  23080. },
  23081. [
  23082. {
  23083. name: "Diplomatic",
  23084. height: math.unit(13, "feet"),
  23085. default: true
  23086. },
  23087. {
  23088. name: "Small",
  23089. height: math.unit(30, "feet")
  23090. },
  23091. {
  23092. name: "Normal",
  23093. height: math.unit(95, "feet"),
  23094. default: true
  23095. },
  23096. {
  23097. name: "Large",
  23098. height: math.unit(285, "feet")
  23099. },
  23100. {
  23101. name: "Incomprehensible",
  23102. height: math.unit(450, "megameters")
  23103. },
  23104. ]
  23105. ))
  23106. characterMakers.push(() => makeCharacter(
  23107. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23108. {
  23109. side: {
  23110. height: math.unit(11, "feet"),
  23111. weight: math.unit(1750, "kg"),
  23112. name: "Side",
  23113. image: {
  23114. source: "./media/characters/selicia/side.svg",
  23115. extra: 440 / 396,
  23116. bottom: 24.8 / 465.979
  23117. }
  23118. },
  23119. maw: {
  23120. height: math.unit(4.665, "feet"),
  23121. name: "Maw",
  23122. image: {
  23123. source: "./media/characters/selicia/maw.svg"
  23124. }
  23125. },
  23126. },
  23127. [
  23128. {
  23129. name: "Normal",
  23130. height: math.unit(11, "feet"),
  23131. default: true
  23132. },
  23133. ]
  23134. ))
  23135. characterMakers.push(() => makeCharacter(
  23136. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  23137. {
  23138. side: {
  23139. height: math.unit(2 + 6 / 12, "feet"),
  23140. weight: math.unit(30, "lb"),
  23141. name: "Side",
  23142. image: {
  23143. source: "./media/characters/layla/side.svg",
  23144. extra: 244 / 188,
  23145. bottom: 18.2 / 262.1
  23146. }
  23147. },
  23148. back: {
  23149. height: math.unit(2 + 6 / 12, "feet"),
  23150. weight: math.unit(30, "lb"),
  23151. name: "Back",
  23152. image: {
  23153. source: "./media/characters/layla/back.svg",
  23154. extra: 308 / 241.5,
  23155. bottom: 8.9 / 316.8
  23156. }
  23157. },
  23158. cumming: {
  23159. height: math.unit(2 + 6 / 12, "feet"),
  23160. weight: math.unit(30, "lb"),
  23161. name: "Cumming",
  23162. image: {
  23163. source: "./media/characters/layla/cumming.svg",
  23164. extra: 342 / 279,
  23165. bottom: 595 / 938
  23166. }
  23167. },
  23168. dickFlaccid: {
  23169. height: math.unit(2.595, "feet"),
  23170. name: "Flaccid Genitals",
  23171. image: {
  23172. source: "./media/characters/layla/dick-flaccid.svg"
  23173. }
  23174. },
  23175. dickErect: {
  23176. height: math.unit(2.359, "feet"),
  23177. name: "Erect Genitals",
  23178. image: {
  23179. source: "./media/characters/layla/dick-erect.svg"
  23180. }
  23181. },
  23182. },
  23183. [
  23184. {
  23185. name: "Micro",
  23186. height: math.unit(1, "inch")
  23187. },
  23188. {
  23189. name: "Small",
  23190. height: math.unit(1, "foot")
  23191. },
  23192. {
  23193. name: "Normal",
  23194. height: math.unit(2 + 6 / 12, "feet"),
  23195. default: true
  23196. },
  23197. {
  23198. name: "Macro",
  23199. height: math.unit(200, "feet")
  23200. },
  23201. {
  23202. name: "Megamacro",
  23203. height: math.unit(1000, "miles")
  23204. },
  23205. {
  23206. name: "Planetary",
  23207. height: math.unit(8000, "miles")
  23208. },
  23209. {
  23210. name: "True Layla",
  23211. height: math.unit(200000 * 7, "multiverses")
  23212. },
  23213. ]
  23214. ))
  23215. characterMakers.push(() => makeCharacter(
  23216. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23217. {
  23218. back: {
  23219. height: math.unit(10.5, "feet"),
  23220. weight: math.unit(800, "lb"),
  23221. name: "Back",
  23222. image: {
  23223. source: "./media/characters/knox/back.svg",
  23224. extra: 1486 / 1089,
  23225. bottom: 107 / 1601.4
  23226. }
  23227. },
  23228. side: {
  23229. height: math.unit(10.5, "feet"),
  23230. weight: math.unit(800, "lb"),
  23231. name: "Side",
  23232. image: {
  23233. source: "./media/characters/knox/side.svg",
  23234. extra: 244 / 218,
  23235. bottom: 14 / 260
  23236. }
  23237. },
  23238. },
  23239. [
  23240. {
  23241. name: "Compact",
  23242. height: math.unit(10.5, "feet"),
  23243. default: true
  23244. },
  23245. {
  23246. name: "Dynamax",
  23247. height: math.unit(210, "feet")
  23248. },
  23249. {
  23250. name: "Full Macro",
  23251. height: math.unit(850, "feet")
  23252. },
  23253. ]
  23254. ))
  23255. characterMakers.push(() => makeCharacter(
  23256. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23257. {
  23258. front: {
  23259. height: math.unit(6, "feet"),
  23260. weight: math.unit(152, "lb"),
  23261. name: "Front",
  23262. image: {
  23263. source: "./media/characters/shin-pikachu/front.svg",
  23264. extra: 1574 / 1480,
  23265. bottom: 53.3 / 1626
  23266. }
  23267. },
  23268. hand: {
  23269. height: math.unit(1.055, "feet"),
  23270. name: "Hand",
  23271. image: {
  23272. source: "./media/characters/shin-pikachu/hand.svg"
  23273. }
  23274. },
  23275. foot: {
  23276. height: math.unit(1.1, "feet"),
  23277. name: "Foot",
  23278. image: {
  23279. source: "./media/characters/shin-pikachu/foot.svg"
  23280. }
  23281. },
  23282. collar: {
  23283. height: math.unit(0.386, "feet"),
  23284. name: "Collar",
  23285. image: {
  23286. source: "./media/characters/shin-pikachu/collar.svg"
  23287. }
  23288. },
  23289. },
  23290. [
  23291. {
  23292. name: "Smallest",
  23293. height: math.unit(0.5, "inches")
  23294. },
  23295. {
  23296. name: "Micro",
  23297. height: math.unit(6, "inches")
  23298. },
  23299. {
  23300. name: "Normal",
  23301. height: math.unit(6, "feet"),
  23302. default: true
  23303. },
  23304. {
  23305. name: "Macro",
  23306. height: math.unit(150, "feet")
  23307. },
  23308. ]
  23309. ))
  23310. characterMakers.push(() => makeCharacter(
  23311. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23312. {
  23313. front: {
  23314. height: math.unit(28, "feet"),
  23315. weight: math.unit(10500, "lb"),
  23316. name: "Front",
  23317. image: {
  23318. source: "./media/characters/kayda/front.svg",
  23319. extra: 1536 / 1428,
  23320. bottom: 68.7 / 1603
  23321. }
  23322. },
  23323. back: {
  23324. height: math.unit(28, "feet"),
  23325. weight: math.unit(10500, "lb"),
  23326. name: "Back",
  23327. image: {
  23328. source: "./media/characters/kayda/back.svg",
  23329. extra: 1557 / 1464,
  23330. bottom: 39.5 / 1597.49
  23331. }
  23332. },
  23333. dick: {
  23334. height: math.unit(3.858, "feet"),
  23335. name: "Dick",
  23336. image: {
  23337. source: "./media/characters/kayda/dick.svg"
  23338. }
  23339. },
  23340. },
  23341. [
  23342. {
  23343. name: "Macro",
  23344. height: math.unit(28, "feet"),
  23345. default: true
  23346. },
  23347. ]
  23348. ))
  23349. characterMakers.push(() => makeCharacter(
  23350. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23351. {
  23352. front: {
  23353. height: math.unit(10 + 11 / 12, "feet"),
  23354. weight: math.unit(1400, "lb"),
  23355. name: "Front",
  23356. image: {
  23357. source: "./media/characters/brian/front.svg",
  23358. extra: 737 / 692,
  23359. bottom: 55.4 / 785
  23360. }
  23361. },
  23362. },
  23363. [
  23364. {
  23365. name: "Normal",
  23366. height: math.unit(10 + 11 / 12, "feet"),
  23367. default: true
  23368. },
  23369. ]
  23370. ))
  23371. characterMakers.push(() => makeCharacter(
  23372. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23373. {
  23374. front: {
  23375. height: math.unit(5 + 8 / 12, "feet"),
  23376. weight: math.unit(140, "lb"),
  23377. name: "Front",
  23378. image: {
  23379. source: "./media/characters/khemri/front.svg",
  23380. extra: 4780 / 4059,
  23381. bottom: 80.1 / 4859.25
  23382. }
  23383. },
  23384. },
  23385. [
  23386. {
  23387. name: "Micro",
  23388. height: math.unit(6, "inches")
  23389. },
  23390. {
  23391. name: "Normal",
  23392. height: math.unit(5 + 8 / 12, "feet"),
  23393. default: true
  23394. },
  23395. ]
  23396. ))
  23397. characterMakers.push(() => makeCharacter(
  23398. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23399. {
  23400. front: {
  23401. height: math.unit(13, "feet"),
  23402. weight: math.unit(1700, "lb"),
  23403. name: "Front",
  23404. image: {
  23405. source: "./media/characters/felix-braveheart/front.svg",
  23406. extra: 1222 / 1157,
  23407. bottom: 53.2 / 1280
  23408. }
  23409. },
  23410. back: {
  23411. height: math.unit(13, "feet"),
  23412. weight: math.unit(1700, "lb"),
  23413. name: "Back",
  23414. image: {
  23415. source: "./media/characters/felix-braveheart/back.svg",
  23416. extra: 1277 / 1203,
  23417. bottom: 50.2 / 1327
  23418. }
  23419. },
  23420. feral: {
  23421. height: math.unit(6, "feet"),
  23422. weight: math.unit(400, "lb"),
  23423. name: "Feral",
  23424. image: {
  23425. source: "./media/characters/felix-braveheart/feral.svg",
  23426. extra: 682 / 625,
  23427. bottom: 6.9 / 688
  23428. }
  23429. },
  23430. },
  23431. [
  23432. {
  23433. name: "Normal",
  23434. height: math.unit(13, "feet"),
  23435. default: true
  23436. },
  23437. ]
  23438. ))
  23439. characterMakers.push(() => makeCharacter(
  23440. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23441. {
  23442. side: {
  23443. height: math.unit(5 + 11 / 12, "feet"),
  23444. weight: math.unit(1400, "lb"),
  23445. name: "Side",
  23446. image: {
  23447. source: "./media/characters/shadow-blade/side.svg",
  23448. extra: 1726 / 1267,
  23449. bottom: 58.4 / 1785
  23450. }
  23451. },
  23452. },
  23453. [
  23454. {
  23455. name: "Normal",
  23456. height: math.unit(5 + 11 / 12, "feet"),
  23457. default: true
  23458. },
  23459. ]
  23460. ))
  23461. characterMakers.push(() => makeCharacter(
  23462. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23463. {
  23464. front: {
  23465. height: math.unit(1 + 6 / 12, "feet"),
  23466. weight: math.unit(25, "lb"),
  23467. name: "Front",
  23468. image: {
  23469. source: "./media/characters/karla-halldor/front.svg",
  23470. extra: 1459 / 1383,
  23471. bottom: 12 / 1472
  23472. }
  23473. },
  23474. },
  23475. [
  23476. {
  23477. name: "Normal",
  23478. height: math.unit(1 + 6 / 12, "feet"),
  23479. default: true
  23480. },
  23481. ]
  23482. ))
  23483. characterMakers.push(() => makeCharacter(
  23484. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23485. {
  23486. front: {
  23487. height: math.unit(6 + 2 / 12, "feet"),
  23488. weight: math.unit(160, "lb"),
  23489. name: "Front",
  23490. image: {
  23491. source: "./media/characters/ariam/front.svg",
  23492. extra: 714 / 617,
  23493. bottom: 23.4 / 737,
  23494. }
  23495. },
  23496. squatting: {
  23497. height: math.unit(4.1, "feet"),
  23498. weight: math.unit(160, "lb"),
  23499. name: "Squatting",
  23500. image: {
  23501. source: "./media/characters/ariam/squatting.svg",
  23502. extra: 2617 / 2112,
  23503. bottom: 61.2 / 2681,
  23504. }
  23505. },
  23506. },
  23507. [
  23508. {
  23509. name: "Normal",
  23510. height: math.unit(6 + 2 / 12, "feet"),
  23511. default: true
  23512. },
  23513. {
  23514. name: "Normal+",
  23515. height: math.unit(4, "meters")
  23516. },
  23517. {
  23518. name: "Macro",
  23519. height: math.unit(50, "meters")
  23520. },
  23521. {
  23522. name: "Macro+",
  23523. height: math.unit(100, "meters")
  23524. },
  23525. {
  23526. name: "Megamacro",
  23527. height: math.unit(20, "km")
  23528. },
  23529. ]
  23530. ))
  23531. characterMakers.push(() => makeCharacter(
  23532. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23533. {
  23534. front: {
  23535. height: math.unit(1.67, "meters"),
  23536. weight: math.unit(140, "lb"),
  23537. name: "Front",
  23538. image: {
  23539. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23540. extra: 438 / 410,
  23541. bottom: 0.75 / 439
  23542. }
  23543. },
  23544. },
  23545. [
  23546. {
  23547. name: "Shrunken",
  23548. height: math.unit(7.6, "cm")
  23549. },
  23550. {
  23551. name: "Human Scale",
  23552. height: math.unit(1.67, "meters")
  23553. },
  23554. {
  23555. name: "Wolxi Scale",
  23556. height: math.unit(36.7, "meters"),
  23557. default: true
  23558. },
  23559. ]
  23560. ))
  23561. characterMakers.push(() => makeCharacter(
  23562. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23563. {
  23564. front: {
  23565. height: math.unit(1.73, "meters"),
  23566. weight: math.unit(240, "lb"),
  23567. name: "Front",
  23568. image: {
  23569. source: "./media/characters/izue-two-mothers/front.svg",
  23570. extra: 469 / 437,
  23571. bottom: 1.24 / 470.6
  23572. }
  23573. },
  23574. },
  23575. [
  23576. {
  23577. name: "Shrunken",
  23578. height: math.unit(7.86, "cm")
  23579. },
  23580. {
  23581. name: "Human Scale",
  23582. height: math.unit(1.73, "meters")
  23583. },
  23584. {
  23585. name: "Wolxi Scale",
  23586. height: math.unit(38, "meters"),
  23587. default: true
  23588. },
  23589. ]
  23590. ))
  23591. characterMakers.push(() => makeCharacter(
  23592. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23593. {
  23594. front: {
  23595. height: math.unit(1.55, "meters"),
  23596. weight: math.unit(120, "lb"),
  23597. name: "Front",
  23598. image: {
  23599. source: "./media/characters/teeku-love-shack/front.svg",
  23600. extra: 387 / 362,
  23601. bottom: 1.51 / 388
  23602. }
  23603. },
  23604. },
  23605. [
  23606. {
  23607. name: "Shrunken",
  23608. height: math.unit(7, "cm")
  23609. },
  23610. {
  23611. name: "Human Scale",
  23612. height: math.unit(1.55, "meters")
  23613. },
  23614. {
  23615. name: "Wolxi Scale",
  23616. height: math.unit(34.1, "meters"),
  23617. default: true
  23618. },
  23619. ]
  23620. ))
  23621. characterMakers.push(() => makeCharacter(
  23622. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23623. {
  23624. front: {
  23625. height: math.unit(1.83, "meters"),
  23626. weight: math.unit(135, "lb"),
  23627. name: "Front",
  23628. image: {
  23629. source: "./media/characters/dejma-the-red/front.svg",
  23630. extra: 480 / 458,
  23631. bottom: 1.8 / 482
  23632. }
  23633. },
  23634. },
  23635. [
  23636. {
  23637. name: "Shrunken",
  23638. height: math.unit(8.3, "cm")
  23639. },
  23640. {
  23641. name: "Human Scale",
  23642. height: math.unit(1.83, "meters")
  23643. },
  23644. {
  23645. name: "Wolxi Scale",
  23646. height: math.unit(40, "meters"),
  23647. default: true
  23648. },
  23649. ]
  23650. ))
  23651. characterMakers.push(() => makeCharacter(
  23652. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23653. {
  23654. front: {
  23655. height: math.unit(1.78, "meters"),
  23656. weight: math.unit(65, "kg"),
  23657. name: "Front",
  23658. image: {
  23659. source: "./media/characters/aki/front.svg",
  23660. extra: 452 / 415
  23661. }
  23662. },
  23663. frontNsfw: {
  23664. height: math.unit(1.78, "meters"),
  23665. weight: math.unit(65, "kg"),
  23666. name: "Front (NSFW)",
  23667. image: {
  23668. source: "./media/characters/aki/front-nsfw.svg",
  23669. extra: 452 / 415
  23670. }
  23671. },
  23672. back: {
  23673. height: math.unit(1.78, "meters"),
  23674. weight: math.unit(65, "kg"),
  23675. name: "Back",
  23676. image: {
  23677. source: "./media/characters/aki/back.svg",
  23678. extra: 452 / 415
  23679. }
  23680. },
  23681. rump: {
  23682. height: math.unit(2.05, "feet"),
  23683. name: "Rump",
  23684. image: {
  23685. source: "./media/characters/aki/rump.svg"
  23686. }
  23687. },
  23688. dick: {
  23689. height: math.unit(0.95, "feet"),
  23690. name: "Dick",
  23691. image: {
  23692. source: "./media/characters/aki/dick.svg"
  23693. }
  23694. },
  23695. },
  23696. [
  23697. {
  23698. name: "Micro",
  23699. height: math.unit(15, "cm")
  23700. },
  23701. {
  23702. name: "Normal",
  23703. height: math.unit(178, "cm"),
  23704. default: true
  23705. },
  23706. {
  23707. name: "Macro",
  23708. height: math.unit(214, "m")
  23709. },
  23710. {
  23711. name: "Macro+",
  23712. height: math.unit(534, "m")
  23713. },
  23714. ]
  23715. ))
  23716. characterMakers.push(() => makeCharacter(
  23717. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23718. {
  23719. front: {
  23720. height: math.unit(5 + 5 / 12, "feet"),
  23721. weight: math.unit(120, "lb"),
  23722. name: "Front",
  23723. image: {
  23724. source: "./media/characters/ari/front.svg",
  23725. extra: 714.5 / 682,
  23726. bottom: 8 / 722.5
  23727. }
  23728. },
  23729. },
  23730. [
  23731. {
  23732. name: "Normal",
  23733. height: math.unit(5 + 5 / 12, "feet")
  23734. },
  23735. {
  23736. name: "Macro",
  23737. height: math.unit(100, "feet"),
  23738. default: true
  23739. },
  23740. {
  23741. name: "Megamacro",
  23742. height: math.unit(100, "miles")
  23743. },
  23744. {
  23745. name: "Gigamacro",
  23746. height: math.unit(80000, "miles")
  23747. },
  23748. ]
  23749. ))
  23750. characterMakers.push(() => makeCharacter(
  23751. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23752. {
  23753. side: {
  23754. height: math.unit(9, "feet"),
  23755. weight: math.unit(400, "kg"),
  23756. name: "Side",
  23757. image: {
  23758. source: "./media/characters/bolt/side.svg",
  23759. extra: 1126 / 896,
  23760. bottom: 60 / 1187.3,
  23761. }
  23762. },
  23763. },
  23764. [
  23765. {
  23766. name: "Micro",
  23767. height: math.unit(5, "inches")
  23768. },
  23769. {
  23770. name: "Normal",
  23771. height: math.unit(9, "feet"),
  23772. default: true
  23773. },
  23774. {
  23775. name: "Macro",
  23776. height: math.unit(700, "feet")
  23777. },
  23778. {
  23779. name: "Max Size",
  23780. height: math.unit(1.52e22, "yottameters")
  23781. },
  23782. ]
  23783. ))
  23784. characterMakers.push(() => makeCharacter(
  23785. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23786. {
  23787. front: {
  23788. height: math.unit(4.53, "meters"),
  23789. weight: math.unit(3, "tons"),
  23790. name: "Front",
  23791. image: {
  23792. source: "./media/characters/draekon-sylviar/front.svg",
  23793. extra: 1228 / 1068,
  23794. bottom: 41 / 1270
  23795. }
  23796. },
  23797. tail: {
  23798. height: math.unit(1.772, "meter"),
  23799. name: "Tail",
  23800. image: {
  23801. source: "./media/characters/draekon-sylviar/tail.svg"
  23802. }
  23803. },
  23804. head: {
  23805. height: math.unit(1.331, "meter"),
  23806. name: "Head",
  23807. image: {
  23808. source: "./media/characters/draekon-sylviar/head.svg"
  23809. }
  23810. },
  23811. hand: {
  23812. height: math.unit(0.564, "meter"),
  23813. name: "Hand",
  23814. image: {
  23815. source: "./media/characters/draekon-sylviar/hand.svg"
  23816. }
  23817. },
  23818. foot: {
  23819. height: math.unit(0.621, "meter"),
  23820. name: "Foot",
  23821. image: {
  23822. source: "./media/characters/draekon-sylviar/foot.svg",
  23823. bottom: 32 / 324
  23824. }
  23825. },
  23826. dick: {
  23827. height: math.unit(61, "cm"),
  23828. name: "Dick",
  23829. image: {
  23830. source: "./media/characters/draekon-sylviar/dick.svg"
  23831. }
  23832. },
  23833. dickseparated: {
  23834. height: math.unit(61, "cm"),
  23835. name: "Dick-separated",
  23836. image: {
  23837. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23838. }
  23839. },
  23840. },
  23841. [
  23842. {
  23843. name: "Small",
  23844. height: math.unit(4.53 / 2, "meters"),
  23845. default: true
  23846. },
  23847. {
  23848. name: "Normal",
  23849. height: math.unit(4.53, "meters"),
  23850. default: true
  23851. },
  23852. {
  23853. name: "Large",
  23854. height: math.unit(4.53 * 2, "meters"),
  23855. },
  23856. ]
  23857. ))
  23858. characterMakers.push(() => makeCharacter(
  23859. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23860. {
  23861. front: {
  23862. height: math.unit(6 + 2 / 12, "feet"),
  23863. weight: math.unit(180, "lb"),
  23864. name: "Front",
  23865. image: {
  23866. source: "./media/characters/brawler/front.svg",
  23867. extra: 3301 / 3027,
  23868. bottom: 138 / 3439
  23869. }
  23870. },
  23871. },
  23872. [
  23873. {
  23874. name: "Normal",
  23875. height: math.unit(6 + 2 / 12, "feet"),
  23876. default: true
  23877. },
  23878. ]
  23879. ))
  23880. characterMakers.push(() => makeCharacter(
  23881. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23882. {
  23883. front: {
  23884. height: math.unit(11, "feet"),
  23885. weight: math.unit(1000, "lb"),
  23886. name: "Front",
  23887. image: {
  23888. source: "./media/characters/alex/front.svg",
  23889. bottom: 44.5 / 620
  23890. }
  23891. },
  23892. },
  23893. [
  23894. {
  23895. name: "Micro",
  23896. height: math.unit(5, "inches")
  23897. },
  23898. {
  23899. name: "Normal",
  23900. height: math.unit(11, "feet"),
  23901. default: true
  23902. },
  23903. {
  23904. name: "Macro",
  23905. height: math.unit(9.5e9, "feet")
  23906. },
  23907. {
  23908. name: "Max Size",
  23909. height: math.unit(1.4e283, "yottameters")
  23910. },
  23911. ]
  23912. ))
  23913. characterMakers.push(() => makeCharacter(
  23914. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23915. {
  23916. female: {
  23917. height: math.unit(29.9, "m"),
  23918. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23919. name: "Female",
  23920. image: {
  23921. source: "./media/characters/zenari/female.svg",
  23922. extra: 3281.6 / 3217,
  23923. bottom: 72.2 / 3353
  23924. }
  23925. },
  23926. male: {
  23927. height: math.unit(27.7, "m"),
  23928. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23929. name: "Male",
  23930. image: {
  23931. source: "./media/characters/zenari/male.svg",
  23932. extra: 3008 / 2991,
  23933. bottom: 54.6 / 3069
  23934. }
  23935. },
  23936. },
  23937. [
  23938. {
  23939. name: "Macro",
  23940. height: math.unit(29.7, "meters"),
  23941. default: true
  23942. },
  23943. ]
  23944. ))
  23945. characterMakers.push(() => makeCharacter(
  23946. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23947. {
  23948. female: {
  23949. height: math.unit(23.8, "m"),
  23950. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23951. name: "Female",
  23952. image: {
  23953. source: "./media/characters/mactarian/female.svg",
  23954. extra: 2662 / 2569,
  23955. bottom: 73 / 2736
  23956. }
  23957. },
  23958. male: {
  23959. height: math.unit(23.8, "m"),
  23960. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23961. name: "Male",
  23962. image: {
  23963. source: "./media/characters/mactarian/male.svg",
  23964. extra: 2673 / 2600,
  23965. bottom: 76 / 2750
  23966. }
  23967. },
  23968. },
  23969. [
  23970. {
  23971. name: "Macro",
  23972. height: math.unit(23.8, "meters"),
  23973. default: true
  23974. },
  23975. ]
  23976. ))
  23977. characterMakers.push(() => makeCharacter(
  23978. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23979. {
  23980. female: {
  23981. height: math.unit(19.3, "m"),
  23982. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23983. name: "Female",
  23984. image: {
  23985. source: "./media/characters/umok/female.svg",
  23986. extra: 2186 / 2078,
  23987. bottom: 87 / 2277
  23988. }
  23989. },
  23990. male: {
  23991. height: math.unit(19.5, "m"),
  23992. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23993. name: "Male",
  23994. image: {
  23995. source: "./media/characters/umok/male.svg",
  23996. extra: 2233 / 2140,
  23997. bottom: 24.4 / 2258
  23998. }
  23999. },
  24000. },
  24001. [
  24002. {
  24003. name: "Macro",
  24004. height: math.unit(19.3, "meters"),
  24005. default: true
  24006. },
  24007. ]
  24008. ))
  24009. characterMakers.push(() => makeCharacter(
  24010. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24011. {
  24012. female: {
  24013. height: math.unit(26.15, "m"),
  24014. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24015. name: "Female",
  24016. image: {
  24017. source: "./media/characters/joraxian/female.svg",
  24018. extra: 2912 / 2824,
  24019. bottom: 36 / 2956
  24020. }
  24021. },
  24022. male: {
  24023. height: math.unit(25.4, "m"),
  24024. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24025. name: "Male",
  24026. image: {
  24027. source: "./media/characters/joraxian/male.svg",
  24028. extra: 2877 / 2721,
  24029. bottom: 82 / 2967
  24030. }
  24031. },
  24032. },
  24033. [
  24034. {
  24035. name: "Macro",
  24036. height: math.unit(26.15, "meters"),
  24037. default: true
  24038. },
  24039. ]
  24040. ))
  24041. characterMakers.push(() => makeCharacter(
  24042. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24043. {
  24044. female: {
  24045. height: math.unit(21.6, "m"),
  24046. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24047. name: "Female",
  24048. image: {
  24049. source: "./media/characters/sthara/female.svg",
  24050. extra: 2516 / 2347,
  24051. bottom: 21.5 / 2537
  24052. }
  24053. },
  24054. male: {
  24055. height: math.unit(24, "m"),
  24056. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24057. name: "Male",
  24058. image: {
  24059. source: "./media/characters/sthara/male.svg",
  24060. extra: 2732 / 2607,
  24061. bottom: 23 / 2732
  24062. }
  24063. },
  24064. },
  24065. [
  24066. {
  24067. name: "Macro",
  24068. height: math.unit(21.6, "meters"),
  24069. default: true
  24070. },
  24071. ]
  24072. ))
  24073. characterMakers.push(() => makeCharacter(
  24074. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24075. {
  24076. front: {
  24077. height: math.unit(6 + 4 / 12, "feet"),
  24078. weight: math.unit(175, "lb"),
  24079. name: "Front",
  24080. image: {
  24081. source: "./media/characters/luka-bryzant/front.svg",
  24082. extra: 311 / 289,
  24083. bottom: 4 / 315
  24084. }
  24085. },
  24086. back: {
  24087. height: math.unit(6 + 4 / 12, "feet"),
  24088. weight: math.unit(175, "lb"),
  24089. name: "Back",
  24090. image: {
  24091. source: "./media/characters/luka-bryzant/back.svg",
  24092. extra: 311 / 289,
  24093. bottom: 3.8 / 313.7
  24094. }
  24095. },
  24096. },
  24097. [
  24098. {
  24099. name: "Micro",
  24100. height: math.unit(10, "inches")
  24101. },
  24102. {
  24103. name: "Normal",
  24104. height: math.unit(6 + 4 / 12, "feet"),
  24105. default: true
  24106. },
  24107. {
  24108. name: "Large",
  24109. height: math.unit(12, "feet")
  24110. },
  24111. ]
  24112. ))
  24113. characterMakers.push(() => makeCharacter(
  24114. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24115. {
  24116. front: {
  24117. height: math.unit(5 + 7 / 12, "feet"),
  24118. weight: math.unit(185, "lb"),
  24119. name: "Front",
  24120. image: {
  24121. source: "./media/characters/aman-aquila/front.svg",
  24122. extra: 1013 / 976,
  24123. bottom: 45.6 / 1057
  24124. }
  24125. },
  24126. side: {
  24127. height: math.unit(5 + 7 / 12, "feet"),
  24128. weight: math.unit(185, "lb"),
  24129. name: "Side",
  24130. image: {
  24131. source: "./media/characters/aman-aquila/side.svg",
  24132. extra: 1054 / 1011,
  24133. bottom: 15 / 1070
  24134. }
  24135. },
  24136. back: {
  24137. height: math.unit(5 + 7 / 12, "feet"),
  24138. weight: math.unit(185, "lb"),
  24139. name: "Back",
  24140. image: {
  24141. source: "./media/characters/aman-aquila/back.svg",
  24142. extra: 1026 / 970,
  24143. bottom: 12 / 1039
  24144. }
  24145. },
  24146. head: {
  24147. height: math.unit(1.211, "feet"),
  24148. name: "Head",
  24149. image: {
  24150. source: "./media/characters/aman-aquila/head.svg",
  24151. }
  24152. },
  24153. },
  24154. [
  24155. {
  24156. name: "Minimicro",
  24157. height: math.unit(0.057, "inches")
  24158. },
  24159. {
  24160. name: "Micro",
  24161. height: math.unit(7, "inches")
  24162. },
  24163. {
  24164. name: "Mini",
  24165. height: math.unit(3 + 7 / 12, "feet")
  24166. },
  24167. {
  24168. name: "Normal",
  24169. height: math.unit(5 + 7 / 12, "feet"),
  24170. default: true
  24171. },
  24172. {
  24173. name: "Macro",
  24174. height: math.unit(157 + 7 / 12, "feet")
  24175. },
  24176. {
  24177. name: "Megamacro",
  24178. height: math.unit(1557 + 7 / 12, "feet")
  24179. },
  24180. {
  24181. name: "Gigamacro",
  24182. height: math.unit(15557 + 7 / 12, "feet")
  24183. },
  24184. ]
  24185. ))
  24186. characterMakers.push(() => makeCharacter(
  24187. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24188. {
  24189. front: {
  24190. height: math.unit(3 + 2 / 12, "inches"),
  24191. weight: math.unit(0.3, "ounces"),
  24192. name: "Front",
  24193. image: {
  24194. source: "./media/characters/hiphae/front.svg",
  24195. extra: 1931 / 1683,
  24196. bottom: 24 / 1955
  24197. }
  24198. },
  24199. },
  24200. [
  24201. {
  24202. name: "Normal",
  24203. height: math.unit(3 + 1 / 2, "inches"),
  24204. default: true
  24205. },
  24206. ]
  24207. ))
  24208. characterMakers.push(() => makeCharacter(
  24209. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24210. {
  24211. front: {
  24212. height: math.unit(5 + 10 / 12, "feet"),
  24213. weight: math.unit(165, "lb"),
  24214. name: "Front",
  24215. image: {
  24216. source: "./media/characters/nicky/front.svg",
  24217. extra: 3144 / 2886,
  24218. bottom: 45.6 / 3192
  24219. }
  24220. },
  24221. back: {
  24222. height: math.unit(5 + 10 / 12, "feet"),
  24223. weight: math.unit(165, "lb"),
  24224. name: "Back",
  24225. image: {
  24226. source: "./media/characters/nicky/back.svg",
  24227. extra: 3055 / 2804,
  24228. bottom: 28.4 / 3087
  24229. }
  24230. },
  24231. frontclothed: {
  24232. height: math.unit(5 + 10 / 12, "feet"),
  24233. weight: math.unit(165, "lb"),
  24234. name: "Front-clothed",
  24235. image: {
  24236. source: "./media/characters/nicky/front-clothed.svg",
  24237. extra: 3184.9 / 2926.9,
  24238. bottom: 86.5 / 3239.9
  24239. }
  24240. },
  24241. foot: {
  24242. height: math.unit(1.16, "feet"),
  24243. name: "Foot",
  24244. image: {
  24245. source: "./media/characters/nicky/foot.svg"
  24246. }
  24247. },
  24248. feet: {
  24249. height: math.unit(1.34, "feet"),
  24250. name: "Feet",
  24251. image: {
  24252. source: "./media/characters/nicky/feet.svg"
  24253. }
  24254. },
  24255. maw: {
  24256. height: math.unit(0.9, "feet"),
  24257. name: "Maw",
  24258. image: {
  24259. source: "./media/characters/nicky/maw.svg"
  24260. }
  24261. },
  24262. },
  24263. [
  24264. {
  24265. name: "Normal",
  24266. height: math.unit(5 + 10 / 12, "feet"),
  24267. default: true
  24268. },
  24269. {
  24270. name: "Macro",
  24271. height: math.unit(60, "feet")
  24272. },
  24273. {
  24274. name: "Megamacro",
  24275. height: math.unit(1, "mile")
  24276. },
  24277. ]
  24278. ))
  24279. characterMakers.push(() => makeCharacter(
  24280. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24281. {
  24282. side: {
  24283. height: math.unit(10, "feet"),
  24284. weight: math.unit(600, "lb"),
  24285. name: "Side",
  24286. image: {
  24287. source: "./media/characters/blair/side.svg",
  24288. bottom: 16.6 / 475,
  24289. extra: 458 / 431
  24290. }
  24291. },
  24292. },
  24293. [
  24294. {
  24295. name: "Micro",
  24296. height: math.unit(8, "inches")
  24297. },
  24298. {
  24299. name: "Normal",
  24300. height: math.unit(10, "feet"),
  24301. default: true
  24302. },
  24303. {
  24304. name: "Macro",
  24305. height: math.unit(180, "feet")
  24306. },
  24307. ]
  24308. ))
  24309. characterMakers.push(() => makeCharacter(
  24310. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24311. {
  24312. front: {
  24313. height: math.unit(5 + 4 / 12, "feet"),
  24314. weight: math.unit(125, "lb"),
  24315. name: "Front",
  24316. image: {
  24317. source: "./media/characters/fisher/front.svg",
  24318. extra: 444 / 390,
  24319. bottom: 2 / 444.8
  24320. }
  24321. },
  24322. },
  24323. [
  24324. {
  24325. name: "Micro",
  24326. height: math.unit(4, "inches")
  24327. },
  24328. {
  24329. name: "Normal",
  24330. height: math.unit(5 + 4 / 12, "feet"),
  24331. default: true
  24332. },
  24333. {
  24334. name: "Macro",
  24335. height: math.unit(100, "feet")
  24336. },
  24337. ]
  24338. ))
  24339. characterMakers.push(() => makeCharacter(
  24340. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24341. {
  24342. front: {
  24343. height: math.unit(6.71, "feet"),
  24344. weight: math.unit(200, "lb"),
  24345. capacity: math.unit(1000000, "people"),
  24346. name: "Front",
  24347. image: {
  24348. source: "./media/characters/gliss/front.svg",
  24349. extra: 2347 / 2231,
  24350. bottom: 113 / 2462
  24351. }
  24352. },
  24353. hammerspaceSize: {
  24354. height: math.unit(6.71 * 717, "feet"),
  24355. weight: math.unit(200, "lb"),
  24356. capacity: math.unit(1000000, "people"),
  24357. name: "Hammerspace Size",
  24358. image: {
  24359. source: "./media/characters/gliss/front.svg",
  24360. extra: 2347 / 2231,
  24361. bottom: 113 / 2462
  24362. }
  24363. },
  24364. },
  24365. [
  24366. {
  24367. name: "Normal",
  24368. height: math.unit(6.71, "feet"),
  24369. default: true
  24370. },
  24371. ]
  24372. ))
  24373. characterMakers.push(() => makeCharacter(
  24374. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24375. {
  24376. side: {
  24377. height: math.unit(1.44, "m"),
  24378. weight: math.unit(80, "kg"),
  24379. name: "Side",
  24380. image: {
  24381. source: "./media/characters/dune-anderson/side.svg",
  24382. bottom: 49 / 1426
  24383. }
  24384. },
  24385. },
  24386. [
  24387. {
  24388. name: "Wolf-sized",
  24389. height: math.unit(1.44, "meters")
  24390. },
  24391. {
  24392. name: "Normal",
  24393. height: math.unit(5.05, "meters"),
  24394. default: true
  24395. },
  24396. {
  24397. name: "Big",
  24398. height: math.unit(14.4, "meters")
  24399. },
  24400. {
  24401. name: "Huge",
  24402. height: math.unit(144, "meters")
  24403. },
  24404. ]
  24405. ))
  24406. characterMakers.push(() => makeCharacter(
  24407. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24408. {
  24409. front: {
  24410. height: math.unit(7, "feet"),
  24411. weight: math.unit(425, "lb"),
  24412. name: "Front",
  24413. image: {
  24414. source: "./media/characters/hind/front.svg",
  24415. extra: 2091 / 1860,
  24416. bottom: 129 / 2220
  24417. }
  24418. },
  24419. back: {
  24420. height: math.unit(7, "feet"),
  24421. weight: math.unit(425, "lb"),
  24422. name: "Back",
  24423. image: {
  24424. source: "./media/characters/hind/back.svg",
  24425. extra: 2091 / 1860,
  24426. bottom: 24.6 / 2309
  24427. }
  24428. },
  24429. tail: {
  24430. height: math.unit(2.8, "feet"),
  24431. name: "Tail",
  24432. image: {
  24433. source: "./media/characters/hind/tail.svg"
  24434. }
  24435. },
  24436. head: {
  24437. height: math.unit(2.55, "feet"),
  24438. name: "Head",
  24439. image: {
  24440. source: "./media/characters/hind/head.svg"
  24441. }
  24442. },
  24443. },
  24444. [
  24445. {
  24446. name: "XS",
  24447. height: math.unit(0.7, "feet")
  24448. },
  24449. {
  24450. name: "Normal",
  24451. height: math.unit(7, "feet"),
  24452. default: true
  24453. },
  24454. {
  24455. name: "XL",
  24456. height: math.unit(70, "feet")
  24457. },
  24458. ]
  24459. ))
  24460. characterMakers.push(() => makeCharacter(
  24461. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24462. {
  24463. front: {
  24464. height: math.unit(6, "feet"),
  24465. weight: math.unit(150, "lb"),
  24466. name: "Front",
  24467. image: {
  24468. source: "./media/characters/dylan-skaven/front.svg",
  24469. extra: 2318 / 2063,
  24470. bottom: 93.4 / 2410
  24471. }
  24472. },
  24473. },
  24474. [
  24475. {
  24476. name: "Nano",
  24477. height: math.unit(1, "mm")
  24478. },
  24479. {
  24480. name: "Micro",
  24481. height: math.unit(1, "cm")
  24482. },
  24483. {
  24484. name: "Normal",
  24485. height: math.unit(2.1, "meters"),
  24486. default: true
  24487. },
  24488. ]
  24489. ))
  24490. characterMakers.push(() => makeCharacter(
  24491. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24492. {
  24493. front: {
  24494. height: math.unit(7 + 5 / 12, "feet"),
  24495. weight: math.unit(357, "lb"),
  24496. name: "Front",
  24497. image: {
  24498. source: "./media/characters/solex-draconov/front.svg",
  24499. extra: 1993 / 1865,
  24500. bottom: 117 / 2111
  24501. }
  24502. },
  24503. },
  24504. [
  24505. {
  24506. name: "Natural Height",
  24507. height: math.unit(7 + 5 / 12, "feet"),
  24508. default: true
  24509. },
  24510. {
  24511. name: "Macro",
  24512. height: math.unit(350, "feet")
  24513. },
  24514. {
  24515. name: "Macro+",
  24516. height: math.unit(1000, "feet")
  24517. },
  24518. {
  24519. name: "Megamacro",
  24520. height: math.unit(20, "km")
  24521. },
  24522. {
  24523. name: "Megamacro+",
  24524. height: math.unit(1000, "km")
  24525. },
  24526. {
  24527. name: "Gigamacro",
  24528. height: math.unit(2.5, "Gm")
  24529. },
  24530. {
  24531. name: "Teramacro",
  24532. height: math.unit(15, "Tm")
  24533. },
  24534. {
  24535. name: "Galactic",
  24536. height: math.unit(30, "Zm")
  24537. },
  24538. {
  24539. name: "Universal",
  24540. height: math.unit(21000, "Ym")
  24541. },
  24542. {
  24543. name: "Omniversal",
  24544. height: math.unit(9.861e50, "Ym")
  24545. },
  24546. {
  24547. name: "Existential",
  24548. height: math.unit(1e300, "meters")
  24549. },
  24550. ]
  24551. ))
  24552. characterMakers.push(() => makeCharacter(
  24553. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24554. {
  24555. side: {
  24556. height: math.unit(25, "feet"),
  24557. weight: math.unit(90000, "lb"),
  24558. name: "Side",
  24559. image: {
  24560. source: "./media/characters/mandarax/side.svg",
  24561. extra: 614 / 332,
  24562. bottom: 55 / 630
  24563. }
  24564. },
  24565. head: {
  24566. height: math.unit(11.4, "feet"),
  24567. name: "Head",
  24568. image: {
  24569. source: "./media/characters/mandarax/head.svg"
  24570. }
  24571. },
  24572. belly: {
  24573. height: math.unit(33, "feet"),
  24574. name: "Belly",
  24575. capacity: math.unit(500, "people"),
  24576. image: {
  24577. source: "./media/characters/mandarax/belly.svg"
  24578. }
  24579. },
  24580. dick: {
  24581. height: math.unit(8.46, "feet"),
  24582. name: "Dick",
  24583. image: {
  24584. source: "./media/characters/mandarax/dick.svg"
  24585. }
  24586. },
  24587. top: {
  24588. height: math.unit(28, "meters"),
  24589. name: "Top",
  24590. image: {
  24591. source: "./media/characters/mandarax/top.svg"
  24592. }
  24593. },
  24594. },
  24595. [
  24596. {
  24597. name: "Normal",
  24598. height: math.unit(25, "feet"),
  24599. default: true
  24600. },
  24601. ]
  24602. ))
  24603. characterMakers.push(() => makeCharacter(
  24604. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24605. {
  24606. front: {
  24607. height: math.unit(5, "feet"),
  24608. weight: math.unit(90, "lb"),
  24609. name: "Front",
  24610. image: {
  24611. source: "./media/characters/pixil/front.svg",
  24612. extra: 2000 / 1618,
  24613. bottom: 12.3 / 2011
  24614. }
  24615. },
  24616. },
  24617. [
  24618. {
  24619. name: "Normal",
  24620. height: math.unit(5, "feet"),
  24621. default: true
  24622. },
  24623. {
  24624. name: "Megamacro",
  24625. height: math.unit(10, "miles"),
  24626. },
  24627. ]
  24628. ))
  24629. characterMakers.push(() => makeCharacter(
  24630. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24631. {
  24632. front: {
  24633. height: math.unit(7 + 2 / 12, "feet"),
  24634. weight: math.unit(200, "lb"),
  24635. name: "Front",
  24636. image: {
  24637. source: "./media/characters/angel/front.svg",
  24638. extra: 1830 / 1737,
  24639. bottom: 22.6 / 1854,
  24640. }
  24641. },
  24642. },
  24643. [
  24644. {
  24645. name: "Normal",
  24646. height: math.unit(7 + 2 / 12, "feet"),
  24647. default: true
  24648. },
  24649. {
  24650. name: "Macro",
  24651. height: math.unit(1000, "feet")
  24652. },
  24653. {
  24654. name: "Megamacro",
  24655. height: math.unit(2, "miles")
  24656. },
  24657. {
  24658. name: "Gigamacro",
  24659. height: math.unit(20, "earths")
  24660. },
  24661. ]
  24662. ))
  24663. characterMakers.push(() => makeCharacter(
  24664. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24665. {
  24666. front: {
  24667. height: math.unit(5, "feet"),
  24668. weight: math.unit(180, "lb"),
  24669. name: "Front",
  24670. image: {
  24671. source: "./media/characters/mekana/front.svg",
  24672. extra: 1671 / 1605,
  24673. bottom: 3.5 / 1691
  24674. }
  24675. },
  24676. side: {
  24677. height: math.unit(5, "feet"),
  24678. weight: math.unit(180, "lb"),
  24679. name: "Side",
  24680. image: {
  24681. source: "./media/characters/mekana/side.svg",
  24682. extra: 1671 / 1605,
  24683. bottom: 3.5 / 1691
  24684. }
  24685. },
  24686. back: {
  24687. height: math.unit(5, "feet"),
  24688. weight: math.unit(180, "lb"),
  24689. name: "Back",
  24690. image: {
  24691. source: "./media/characters/mekana/back.svg",
  24692. extra: 1671 / 1605,
  24693. bottom: 3.5 / 1691
  24694. }
  24695. },
  24696. },
  24697. [
  24698. {
  24699. name: "Normal",
  24700. height: math.unit(5, "feet"),
  24701. default: true
  24702. },
  24703. ]
  24704. ))
  24705. characterMakers.push(() => makeCharacter(
  24706. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24707. {
  24708. front: {
  24709. height: math.unit(4 + 6 / 12, "feet"),
  24710. weight: math.unit(80, "lb"),
  24711. name: "Front",
  24712. image: {
  24713. source: "./media/characters/pixie/front.svg",
  24714. extra: 1924 / 1825,
  24715. bottom: 22.4 / 1946
  24716. }
  24717. },
  24718. },
  24719. [
  24720. {
  24721. name: "Normal",
  24722. height: math.unit(4 + 6 / 12, "feet"),
  24723. default: true
  24724. },
  24725. {
  24726. name: "Macro",
  24727. height: math.unit(40, "feet")
  24728. },
  24729. ]
  24730. ))
  24731. characterMakers.push(() => makeCharacter(
  24732. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24733. {
  24734. front: {
  24735. height: math.unit(2.1, "meters"),
  24736. weight: math.unit(200, "lb"),
  24737. name: "Front",
  24738. image: {
  24739. source: "./media/characters/the-lascivious/front.svg",
  24740. extra: 1 / 0.893,
  24741. bottom: 3.5 / 573.7
  24742. }
  24743. },
  24744. },
  24745. [
  24746. {
  24747. name: "Human Scale",
  24748. height: math.unit(2.1, "meters")
  24749. },
  24750. {
  24751. name: "Wolxi Scale",
  24752. height: math.unit(46.2, "m"),
  24753. default: true
  24754. },
  24755. {
  24756. name: "Boinker of Buildings",
  24757. height: math.unit(10, "km")
  24758. },
  24759. {
  24760. name: "Shagger of Skyscrapers",
  24761. height: math.unit(40, "km")
  24762. },
  24763. {
  24764. name: "Banger of Boroughs",
  24765. height: math.unit(4000, "km")
  24766. },
  24767. {
  24768. name: "Screwer of States",
  24769. height: math.unit(100000, "km")
  24770. },
  24771. {
  24772. name: "Pounder of Planets",
  24773. height: math.unit(2000000, "km")
  24774. },
  24775. ]
  24776. ))
  24777. characterMakers.push(() => makeCharacter(
  24778. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24779. {
  24780. front: {
  24781. height: math.unit(6, "feet"),
  24782. weight: math.unit(150, "lb"),
  24783. name: "Front",
  24784. image: {
  24785. source: "./media/characters/aj/front.svg",
  24786. extra: 2039 / 1562,
  24787. bottom: 40 / 2079
  24788. }
  24789. },
  24790. },
  24791. [
  24792. {
  24793. name: "Normal",
  24794. height: math.unit(11 + 6 / 12, "feet"),
  24795. default: true
  24796. },
  24797. {
  24798. name: "Megamacro",
  24799. height: math.unit(60, "megameters")
  24800. },
  24801. ]
  24802. ))
  24803. characterMakers.push(() => makeCharacter(
  24804. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24805. {
  24806. side: {
  24807. height: math.unit(31 + 8 / 12, "feet"),
  24808. weight: math.unit(75000, "kg"),
  24809. name: "Side",
  24810. image: {
  24811. source: "./media/characters/koros/side.svg",
  24812. extra: 1442 / 1297,
  24813. bottom: 122.7 / 1562
  24814. }
  24815. },
  24816. dicksKingsCrown: {
  24817. height: math.unit(6, "feet"),
  24818. name: "Dicks (King's Crown)",
  24819. image: {
  24820. source: "./media/characters/koros/dicks-kings-crown.svg"
  24821. }
  24822. },
  24823. dicksTailSet: {
  24824. height: math.unit(3, "feet"),
  24825. name: "Dicks (Tail Set)",
  24826. image: {
  24827. source: "./media/characters/koros/dicks-tail-set.svg"
  24828. }
  24829. },
  24830. dickCumming: {
  24831. height: math.unit(7.98, "feet"),
  24832. name: "Dick (Cumming)",
  24833. image: {
  24834. source: "./media/characters/koros/dick-cumming.svg"
  24835. }
  24836. },
  24837. dicksBack: {
  24838. height: math.unit(5.9, "feet"),
  24839. name: "Dicks (Back)",
  24840. image: {
  24841. source: "./media/characters/koros/dicks-back.svg"
  24842. }
  24843. },
  24844. dicksFront: {
  24845. height: math.unit(3.72, "feet"),
  24846. name: "Dicks (Front)",
  24847. image: {
  24848. source: "./media/characters/koros/dicks-front.svg"
  24849. }
  24850. },
  24851. dicksPeeking: {
  24852. height: math.unit(3.0, "feet"),
  24853. name: "Dicks (Peeking)",
  24854. image: {
  24855. source: "./media/characters/koros/dicks-peeking.svg"
  24856. }
  24857. },
  24858. eye: {
  24859. height: math.unit(1.7, "feet"),
  24860. name: "Eye",
  24861. image: {
  24862. source: "./media/characters/koros/eye.svg"
  24863. }
  24864. },
  24865. headFront: {
  24866. height: math.unit(11.69, "feet"),
  24867. name: "Head (Front)",
  24868. image: {
  24869. source: "./media/characters/koros/head-front.svg"
  24870. }
  24871. },
  24872. headSide: {
  24873. height: math.unit(14, "feet"),
  24874. name: "Head (Side)",
  24875. image: {
  24876. source: "./media/characters/koros/head-side.svg"
  24877. }
  24878. },
  24879. leg: {
  24880. height: math.unit(17, "feet"),
  24881. name: "Leg",
  24882. image: {
  24883. source: "./media/characters/koros/leg.svg"
  24884. }
  24885. },
  24886. mawSide: {
  24887. height: math.unit(12.8, "feet"),
  24888. name: "Maw (Side)",
  24889. image: {
  24890. source: "./media/characters/koros/maw-side.svg"
  24891. }
  24892. },
  24893. mawSpitting: {
  24894. height: math.unit(17, "feet"),
  24895. name: "Maw (Spitting)",
  24896. image: {
  24897. source: "./media/characters/koros/maw-spitting.svg"
  24898. }
  24899. },
  24900. slit: {
  24901. height: math.unit(2.8, "feet"),
  24902. name: "Slit",
  24903. image: {
  24904. source: "./media/characters/koros/slit.svg"
  24905. }
  24906. },
  24907. stomach: {
  24908. height: math.unit(6.8, "feet"),
  24909. capacity: math.unit(20, "people"),
  24910. name: "Stomach",
  24911. image: {
  24912. source: "./media/characters/koros/stomach.svg"
  24913. }
  24914. },
  24915. wingspanBottom: {
  24916. height: math.unit(114, "feet"),
  24917. name: "Wingspan (Bottom)",
  24918. image: {
  24919. source: "./media/characters/koros/wingspan-bottom.svg"
  24920. }
  24921. },
  24922. wingspanTop: {
  24923. height: math.unit(104, "feet"),
  24924. name: "Wingspan (Top)",
  24925. image: {
  24926. source: "./media/characters/koros/wingspan-top.svg"
  24927. }
  24928. },
  24929. },
  24930. [
  24931. {
  24932. name: "Normal",
  24933. height: math.unit(31 + 8 / 12, "feet"),
  24934. default: true
  24935. },
  24936. ]
  24937. ))
  24938. characterMakers.push(() => makeCharacter(
  24939. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24940. {
  24941. front: {
  24942. height: math.unit(18 + 5 / 12, "feet"),
  24943. weight: math.unit(3750, "kg"),
  24944. name: "Front",
  24945. image: {
  24946. source: "./media/characters/vexx/front.svg",
  24947. extra: 426 / 396,
  24948. bottom: 31.5 / 458
  24949. }
  24950. },
  24951. maw: {
  24952. height: math.unit(6, "feet"),
  24953. name: "Maw",
  24954. image: {
  24955. source: "./media/characters/vexx/maw.svg"
  24956. }
  24957. },
  24958. },
  24959. [
  24960. {
  24961. name: "Normal",
  24962. height: math.unit(18 + 5 / 12, "feet"),
  24963. default: true
  24964. },
  24965. ]
  24966. ))
  24967. characterMakers.push(() => makeCharacter(
  24968. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24969. {
  24970. front: {
  24971. height: math.unit(17 + 6 / 12, "feet"),
  24972. weight: math.unit(150, "lb"),
  24973. name: "Front",
  24974. image: {
  24975. source: "./media/characters/baadra/front.svg",
  24976. extra: 3137 / 2890,
  24977. bottom: 168.4 / 3305
  24978. }
  24979. },
  24980. back: {
  24981. height: math.unit(17 + 6 / 12, "feet"),
  24982. weight: math.unit(150, "lb"),
  24983. name: "Back",
  24984. image: {
  24985. source: "./media/characters/baadra/back.svg",
  24986. extra: 3142 / 2890,
  24987. bottom: 220 / 3371
  24988. }
  24989. },
  24990. head: {
  24991. height: math.unit(5.45, "feet"),
  24992. name: "Head",
  24993. image: {
  24994. source: "./media/characters/baadra/head.svg"
  24995. }
  24996. },
  24997. headAngry: {
  24998. height: math.unit(4.95, "feet"),
  24999. name: "Head (Angry)",
  25000. image: {
  25001. source: "./media/characters/baadra/head-angry.svg"
  25002. }
  25003. },
  25004. headOpen: {
  25005. height: math.unit(6, "feet"),
  25006. name: "Head (Open)",
  25007. image: {
  25008. source: "./media/characters/baadra/head-open.svg"
  25009. }
  25010. },
  25011. },
  25012. [
  25013. {
  25014. name: "Normal",
  25015. height: math.unit(17 + 6 / 12, "feet"),
  25016. default: true
  25017. },
  25018. ]
  25019. ))
  25020. characterMakers.push(() => makeCharacter(
  25021. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25022. {
  25023. front: {
  25024. height: math.unit(7 + 3 / 12, "feet"),
  25025. weight: math.unit(180, "lb"),
  25026. name: "Front",
  25027. image: {
  25028. source: "./media/characters/juri/front.svg",
  25029. extra: 1401 / 1237,
  25030. bottom: 18.5 / 1418
  25031. }
  25032. },
  25033. side: {
  25034. height: math.unit(7 + 3 / 12, "feet"),
  25035. weight: math.unit(180, "lb"),
  25036. name: "Side",
  25037. image: {
  25038. source: "./media/characters/juri/side.svg",
  25039. extra: 1424 / 1242,
  25040. bottom: 18.5 / 1447
  25041. }
  25042. },
  25043. sitting: {
  25044. height: math.unit(6, "feet"),
  25045. weight: math.unit(180, "lb"),
  25046. name: "Sitting",
  25047. image: {
  25048. source: "./media/characters/juri/sitting.svg",
  25049. extra: 1270 / 1143,
  25050. bottom: 100 / 1343
  25051. }
  25052. },
  25053. back: {
  25054. height: math.unit(7 + 3 / 12, "feet"),
  25055. weight: math.unit(180, "lb"),
  25056. name: "Back",
  25057. image: {
  25058. source: "./media/characters/juri/back.svg",
  25059. extra: 1377 / 1240,
  25060. bottom: 23.7 / 1405
  25061. }
  25062. },
  25063. maw: {
  25064. height: math.unit(2.8, "feet"),
  25065. name: "Maw",
  25066. image: {
  25067. source: "./media/characters/juri/maw.svg"
  25068. }
  25069. },
  25070. stomach: {
  25071. height: math.unit(0.89, "feet"),
  25072. capacity: math.unit(4, "liters"),
  25073. name: "Stomach",
  25074. image: {
  25075. source: "./media/characters/juri/stomach.svg"
  25076. }
  25077. },
  25078. },
  25079. [
  25080. {
  25081. name: "Normal",
  25082. height: math.unit(7 + 3 / 12, "feet"),
  25083. default: true
  25084. },
  25085. ]
  25086. ))
  25087. characterMakers.push(() => makeCharacter(
  25088. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25089. {
  25090. fox: {
  25091. height: math.unit(5 + 6 / 12, "feet"),
  25092. weight: math.unit(140, "lb"),
  25093. name: "Fox",
  25094. image: {
  25095. source: "./media/characters/maxene-sita/fox.svg",
  25096. extra: 146 / 138,
  25097. bottom: 2.1 / 148.19
  25098. }
  25099. },
  25100. foxLaying: {
  25101. height: math.unit(1.70, "feet"),
  25102. weight: math.unit(140, "lb"),
  25103. name: "Fox (Laying)",
  25104. image: {
  25105. source: "./media/characters/maxene-sita/fox-laying.svg",
  25106. extra: 910 / 572,
  25107. bottom: 71 / 981
  25108. }
  25109. },
  25110. kitsune: {
  25111. height: math.unit(10, "feet"),
  25112. weight: math.unit(800, "lb"),
  25113. name: "Kitsune",
  25114. image: {
  25115. source: "./media/characters/maxene-sita/kitsune.svg",
  25116. extra: 185 / 176,
  25117. bottom: 4.7 / 189.9
  25118. }
  25119. },
  25120. hellhound: {
  25121. height: math.unit(10, "feet"),
  25122. weight: math.unit(700, "lb"),
  25123. name: "Hellhound",
  25124. image: {
  25125. source: "./media/characters/maxene-sita/hellhound.svg",
  25126. extra: 1600 / 1545,
  25127. bottom: 81 / 1681
  25128. }
  25129. },
  25130. },
  25131. [
  25132. {
  25133. name: "Normal",
  25134. height: math.unit(5 + 6 / 12, "feet"),
  25135. default: true
  25136. },
  25137. ]
  25138. ))
  25139. characterMakers.push(() => makeCharacter(
  25140. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25141. {
  25142. front: {
  25143. height: math.unit(3 + 4 / 12, "feet"),
  25144. weight: math.unit(70, "lb"),
  25145. name: "Front",
  25146. image: {
  25147. source: "./media/characters/maia/front.svg",
  25148. extra: 227 / 219.5,
  25149. bottom: 40 / 267
  25150. }
  25151. },
  25152. back: {
  25153. height: math.unit(3 + 4 / 12, "feet"),
  25154. weight: math.unit(70, "lb"),
  25155. name: "Back",
  25156. image: {
  25157. source: "./media/characters/maia/back.svg",
  25158. extra: 237 / 225
  25159. }
  25160. },
  25161. },
  25162. [
  25163. {
  25164. name: "Normal",
  25165. height: math.unit(3 + 4 / 12, "feet"),
  25166. default: true
  25167. },
  25168. ]
  25169. ))
  25170. characterMakers.push(() => makeCharacter(
  25171. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25172. {
  25173. front: {
  25174. height: math.unit(5 + 10 / 12, "feet"),
  25175. weight: math.unit(197, "lb"),
  25176. name: "Front",
  25177. image: {
  25178. source: "./media/characters/jabaro/front.svg",
  25179. extra: 225 / 216,
  25180. bottom: 5.06 / 230
  25181. }
  25182. },
  25183. back: {
  25184. height: math.unit(5 + 10 / 12, "feet"),
  25185. weight: math.unit(197, "lb"),
  25186. name: "Back",
  25187. image: {
  25188. source: "./media/characters/jabaro/back.svg",
  25189. extra: 225 / 219,
  25190. bottom: 1.9 / 227
  25191. }
  25192. },
  25193. },
  25194. [
  25195. {
  25196. name: "Normal",
  25197. height: math.unit(5 + 10 / 12, "feet"),
  25198. default: true
  25199. },
  25200. ]
  25201. ))
  25202. characterMakers.push(() => makeCharacter(
  25203. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25204. {
  25205. front: {
  25206. height: math.unit(5 + 8 / 12, "feet"),
  25207. weight: math.unit(139, "lb"),
  25208. name: "Front",
  25209. image: {
  25210. source: "./media/characters/risa/front.svg",
  25211. extra: 270 / 260,
  25212. bottom: 11.2 / 282
  25213. }
  25214. },
  25215. back: {
  25216. height: math.unit(5 + 8 / 12, "feet"),
  25217. weight: math.unit(139, "lb"),
  25218. name: "Back",
  25219. image: {
  25220. source: "./media/characters/risa/back.svg",
  25221. extra: 264 / 255,
  25222. bottom: 4 / 268
  25223. }
  25224. },
  25225. },
  25226. [
  25227. {
  25228. name: "Normal",
  25229. height: math.unit(5 + 8 / 12, "feet"),
  25230. default: true
  25231. },
  25232. ]
  25233. ))
  25234. characterMakers.push(() => makeCharacter(
  25235. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25236. {
  25237. front: {
  25238. height: math.unit(2 + 11 / 12, "feet"),
  25239. weight: math.unit(30, "lb"),
  25240. name: "Front",
  25241. image: {
  25242. source: "./media/characters/weatley/front.svg",
  25243. bottom: 10.7 / 414,
  25244. extra: 403.5 / 362
  25245. }
  25246. },
  25247. back: {
  25248. height: math.unit(2 + 11 / 12, "feet"),
  25249. weight: math.unit(30, "lb"),
  25250. name: "Back",
  25251. image: {
  25252. source: "./media/characters/weatley/back.svg",
  25253. bottom: 10.7 / 414,
  25254. extra: 403.5 / 362
  25255. }
  25256. },
  25257. },
  25258. [
  25259. {
  25260. name: "Normal",
  25261. height: math.unit(2 + 11 / 12, "feet"),
  25262. default: true
  25263. },
  25264. ]
  25265. ))
  25266. characterMakers.push(() => makeCharacter(
  25267. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25268. {
  25269. front: {
  25270. height: math.unit(5 + 2 / 12, "feet"),
  25271. weight: math.unit(50, "kg"),
  25272. name: "Front",
  25273. image: {
  25274. source: "./media/characters/mercury-crescent/front.svg",
  25275. extra: 1088 / 1033,
  25276. bottom: 18.9 / 1109
  25277. }
  25278. },
  25279. },
  25280. [
  25281. {
  25282. name: "Normal",
  25283. height: math.unit(5 + 2 / 12, "feet"),
  25284. default: true
  25285. },
  25286. ]
  25287. ))
  25288. characterMakers.push(() => makeCharacter(
  25289. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25290. {
  25291. front: {
  25292. height: math.unit(2, "feet"),
  25293. weight: math.unit(15, "kg"),
  25294. name: "Front",
  25295. image: {
  25296. source: "./media/characters/diamond-jones/front.svg",
  25297. bottom: 16 / 568
  25298. }
  25299. },
  25300. },
  25301. [
  25302. {
  25303. name: "Normal",
  25304. height: math.unit(2, "feet"),
  25305. default: true
  25306. },
  25307. ]
  25308. ))
  25309. characterMakers.push(() => makeCharacter(
  25310. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25311. {
  25312. front: {
  25313. height: math.unit(3, "feet"),
  25314. weight: math.unit(30, "kg"),
  25315. name: "Front",
  25316. image: {
  25317. source: "./media/characters/sweet-bit/front.svg",
  25318. extra: 675 / 567,
  25319. bottom: 27.7 / 703
  25320. }
  25321. },
  25322. },
  25323. [
  25324. {
  25325. name: "Normal",
  25326. height: math.unit(3, "feet"),
  25327. default: true
  25328. },
  25329. ]
  25330. ))
  25331. characterMakers.push(() => makeCharacter(
  25332. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25333. {
  25334. side: {
  25335. height: math.unit(9.178, "feet"),
  25336. weight: math.unit(500, "lb"),
  25337. name: "Side",
  25338. image: {
  25339. source: "./media/characters/umbrazen/side.svg",
  25340. extra: 1730 / 1473,
  25341. bottom: 34.6 / 1765
  25342. }
  25343. },
  25344. },
  25345. [
  25346. {
  25347. name: "Normal",
  25348. height: math.unit(9.178, "feet"),
  25349. default: true
  25350. },
  25351. ]
  25352. ))
  25353. characterMakers.push(() => makeCharacter(
  25354. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25355. {
  25356. front: {
  25357. height: math.unit(10, "feet"),
  25358. weight: math.unit(750, "lb"),
  25359. name: "Front",
  25360. image: {
  25361. source: "./media/characters/arlist/front.svg",
  25362. extra: 961 / 778,
  25363. bottom: 6.2 / 986
  25364. }
  25365. },
  25366. },
  25367. [
  25368. {
  25369. name: "Normal",
  25370. height: math.unit(10, "feet"),
  25371. default: true
  25372. },
  25373. ]
  25374. ))
  25375. characterMakers.push(() => makeCharacter(
  25376. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25377. {
  25378. front: {
  25379. height: math.unit(5 + 1 / 12, "feet"),
  25380. weight: math.unit(110, "lb"),
  25381. name: "Front",
  25382. image: {
  25383. source: "./media/characters/aradel/front.svg",
  25384. extra: 324 / 303,
  25385. bottom: 3.6 / 329.4
  25386. }
  25387. },
  25388. },
  25389. [
  25390. {
  25391. name: "Normal",
  25392. height: math.unit(5 + 1 / 12, "feet"),
  25393. default: true
  25394. },
  25395. ]
  25396. ))
  25397. characterMakers.push(() => makeCharacter(
  25398. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25399. {
  25400. front: {
  25401. height: math.unit(3 + 8 / 12, "feet"),
  25402. weight: math.unit(50, "lb"),
  25403. name: "Front",
  25404. image: {
  25405. source: "./media/characters/serryn/front.svg",
  25406. extra: 1792 / 1656,
  25407. bottom: 43.5 / 1840
  25408. }
  25409. },
  25410. },
  25411. [
  25412. {
  25413. name: "Normal",
  25414. height: math.unit(3 + 8 / 12, "feet"),
  25415. default: true
  25416. },
  25417. ]
  25418. ))
  25419. characterMakers.push(() => makeCharacter(
  25420. { name: "Xavier Thyme" },
  25421. {
  25422. front: {
  25423. height: math.unit(7 + 10 / 12, "feet"),
  25424. weight: math.unit(255, "lb"),
  25425. name: "Front",
  25426. image: {
  25427. source: "./media/characters/xavier-thyme/front.svg",
  25428. extra: 3733 / 3642,
  25429. bottom: 131 / 3869
  25430. }
  25431. },
  25432. frontRaven: {
  25433. height: math.unit(7 + 10 / 12, "feet"),
  25434. weight: math.unit(255, "lb"),
  25435. name: "Front (Raven)",
  25436. image: {
  25437. source: "./media/characters/xavier-thyme/front-raven.svg",
  25438. extra: 4385 / 3642,
  25439. bottom: 131 / 4517
  25440. }
  25441. },
  25442. },
  25443. [
  25444. {
  25445. name: "Normal",
  25446. height: math.unit(7 + 10 / 12, "feet"),
  25447. default: true
  25448. },
  25449. ]
  25450. ))
  25451. characterMakers.push(() => makeCharacter(
  25452. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25453. {
  25454. front: {
  25455. height: math.unit(1.6, "m"),
  25456. weight: math.unit(50, "kg"),
  25457. name: "Front",
  25458. image: {
  25459. source: "./media/characters/kiki/front.svg",
  25460. extra: 4682 / 3610,
  25461. bottom: 115 / 4777
  25462. }
  25463. },
  25464. },
  25465. [
  25466. {
  25467. name: "Normal",
  25468. height: math.unit(1.6, "meters"),
  25469. default: true
  25470. },
  25471. ]
  25472. ))
  25473. characterMakers.push(() => makeCharacter(
  25474. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25475. {
  25476. front: {
  25477. height: math.unit(50, "m"),
  25478. weight: math.unit(500, "tonnes"),
  25479. name: "Front",
  25480. image: {
  25481. source: "./media/characters/ryoko/front.svg",
  25482. extra: 4632 / 3926,
  25483. bottom: 193 / 4823
  25484. }
  25485. },
  25486. },
  25487. [
  25488. {
  25489. name: "Normal",
  25490. height: math.unit(50, "meters"),
  25491. default: true
  25492. },
  25493. ]
  25494. ))
  25495. characterMakers.push(() => makeCharacter(
  25496. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25497. {
  25498. front: {
  25499. height: math.unit(30, "m"),
  25500. weight: math.unit(22, "tonnes"),
  25501. name: "Front",
  25502. image: {
  25503. source: "./media/characters/elio/front.svg",
  25504. extra: 4582 / 3720,
  25505. bottom: 236 / 4828
  25506. }
  25507. },
  25508. },
  25509. [
  25510. {
  25511. name: "Normal",
  25512. height: math.unit(30, "meters"),
  25513. default: true
  25514. },
  25515. ]
  25516. ))
  25517. characterMakers.push(() => makeCharacter(
  25518. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25519. {
  25520. front: {
  25521. height: math.unit(6 + 3 / 12, "feet"),
  25522. weight: math.unit(120, "lb"),
  25523. name: "Front",
  25524. image: {
  25525. source: "./media/characters/azura/front.svg",
  25526. extra: 1149 / 1135,
  25527. bottom: 45 / 1194
  25528. }
  25529. },
  25530. frontClothed: {
  25531. height: math.unit(6 + 3 / 12, "feet"),
  25532. weight: math.unit(120, "lb"),
  25533. name: "Front (Clothed)",
  25534. image: {
  25535. source: "./media/characters/azura/front-clothed.svg",
  25536. extra: 1149 / 1135,
  25537. bottom: 45 / 1194
  25538. }
  25539. },
  25540. },
  25541. [
  25542. {
  25543. name: "Normal",
  25544. height: math.unit(6 + 3 / 12, "feet"),
  25545. default: true
  25546. },
  25547. {
  25548. name: "Macro",
  25549. height: math.unit(20 + 6 / 12, "feet")
  25550. },
  25551. {
  25552. name: "Megamacro",
  25553. height: math.unit(12, "miles")
  25554. },
  25555. {
  25556. name: "Gigamacro",
  25557. height: math.unit(10000, "miles")
  25558. },
  25559. {
  25560. name: "Teramacro",
  25561. height: math.unit(900000, "miles")
  25562. },
  25563. ]
  25564. ))
  25565. characterMakers.push(() => makeCharacter(
  25566. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25567. {
  25568. front: {
  25569. height: math.unit(12, "feet"),
  25570. weight: math.unit(1, "ton"),
  25571. capacity: math.unit(660000, "gallons"),
  25572. name: "Front",
  25573. image: {
  25574. source: "./media/characters/zeus/front.svg",
  25575. extra: 5005 / 4717,
  25576. bottom: 363 / 5388
  25577. }
  25578. },
  25579. },
  25580. [
  25581. {
  25582. name: "Normal",
  25583. height: math.unit(12, "feet")
  25584. },
  25585. {
  25586. name: "Preferred Size",
  25587. height: math.unit(0.5, "miles"),
  25588. default: true
  25589. },
  25590. {
  25591. name: "Giga Horse",
  25592. height: math.unit(300, "miles")
  25593. },
  25594. {
  25595. name: "Riding Planets",
  25596. height: math.unit(30, "megameters")
  25597. },
  25598. {
  25599. name: "Cosmic Giant",
  25600. height: math.unit(3, "zettameters")
  25601. },
  25602. {
  25603. name: "Breeding God",
  25604. height: math.unit(9.92e22, "yottameters")
  25605. },
  25606. ]
  25607. ))
  25608. characterMakers.push(() => makeCharacter(
  25609. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25610. {
  25611. side: {
  25612. height: math.unit(9, "feet"),
  25613. weight: math.unit(1500, "kg"),
  25614. name: "Side",
  25615. image: {
  25616. source: "./media/characters/fang/side.svg",
  25617. extra: 924 / 866,
  25618. bottom: 47.5 / 972.3
  25619. }
  25620. },
  25621. },
  25622. [
  25623. {
  25624. name: "Normal",
  25625. height: math.unit(9, "feet"),
  25626. default: true
  25627. },
  25628. {
  25629. name: "Macro",
  25630. height: math.unit(75 + 6 / 12, "feet")
  25631. },
  25632. {
  25633. name: "Teramacro",
  25634. height: math.unit(50000, "miles")
  25635. },
  25636. ]
  25637. ))
  25638. characterMakers.push(() => makeCharacter(
  25639. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25640. {
  25641. front: {
  25642. height: math.unit(10, "feet"),
  25643. weight: math.unit(2, "tons"),
  25644. name: "Front",
  25645. image: {
  25646. source: "./media/characters/rekhit/front.svg",
  25647. extra: 2796 / 2590,
  25648. bottom: 225 / 3022
  25649. }
  25650. },
  25651. },
  25652. [
  25653. {
  25654. name: "Normal",
  25655. height: math.unit(10, "feet"),
  25656. default: true
  25657. },
  25658. {
  25659. name: "Macro",
  25660. height: math.unit(500, "feet")
  25661. },
  25662. ]
  25663. ))
  25664. characterMakers.push(() => makeCharacter(
  25665. { name: "Dahlia Verrick" },
  25666. {
  25667. front: {
  25668. height: math.unit(7 + 6.451 / 12, "feet"),
  25669. weight: math.unit(310, "lb"),
  25670. name: "Front",
  25671. image: {
  25672. source: "./media/characters/dahlia-verrick/front.svg",
  25673. extra: 1488 / 1365,
  25674. bottom: 6.2 / 1495
  25675. }
  25676. },
  25677. back: {
  25678. height: math.unit(7 + 6.451 / 12, "feet"),
  25679. weight: math.unit(310, "lb"),
  25680. name: "Back",
  25681. image: {
  25682. source: "./media/characters/dahlia-verrick/back.svg",
  25683. extra: 1472 / 1351,
  25684. bottom: 5.28 / 1477
  25685. }
  25686. },
  25687. frontBusiness: {
  25688. height: math.unit(7 + 6.451 / 12, "feet"),
  25689. weight: math.unit(200, "lb"),
  25690. name: "Front (Business)",
  25691. image: {
  25692. source: "./media/characters/dahlia-verrick/front-business.svg",
  25693. extra: 1478 / 1381,
  25694. bottom: 5.5 / 1484
  25695. }
  25696. },
  25697. frontCasual: {
  25698. height: math.unit(7 + 6.451 / 12, "feet"),
  25699. weight: math.unit(200, "lb"),
  25700. name: "Front (Casual)",
  25701. image: {
  25702. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25703. extra: 1478 / 1381,
  25704. bottom: 5.5 / 1484
  25705. }
  25706. },
  25707. },
  25708. [
  25709. {
  25710. name: "Travel-Sized",
  25711. height: math.unit(7.45, "inches")
  25712. },
  25713. {
  25714. name: "Normal",
  25715. height: math.unit(7 + 6.451 / 12, "feet"),
  25716. default: true
  25717. },
  25718. {
  25719. name: "Hitting the Town",
  25720. height: math.unit(37 + 8 / 12, "feet")
  25721. },
  25722. {
  25723. name: "Stomp in the Suburbs",
  25724. height: math.unit(964 + 9.728 / 12, "feet")
  25725. },
  25726. {
  25727. name: "Sit on the City",
  25728. height: math.unit(61747 + 10.592 / 12, "feet")
  25729. },
  25730. {
  25731. name: "Glomp the Globe",
  25732. height: math.unit(252919327 + 4.832 / 12, "feet")
  25733. },
  25734. ]
  25735. ))
  25736. characterMakers.push(() => makeCharacter(
  25737. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25738. {
  25739. front: {
  25740. height: math.unit(6 + 4 / 12, "feet"),
  25741. weight: math.unit(320, "lb"),
  25742. name: "Front",
  25743. image: {
  25744. source: "./media/characters/balina-mahigan/front.svg",
  25745. extra: 447 / 428,
  25746. bottom: 18 / 466
  25747. }
  25748. },
  25749. back: {
  25750. height: math.unit(6 + 4 / 12, "feet"),
  25751. weight: math.unit(320, "lb"),
  25752. name: "Back",
  25753. image: {
  25754. source: "./media/characters/balina-mahigan/back.svg",
  25755. extra: 445 / 428,
  25756. bottom: 4.07 / 448
  25757. }
  25758. },
  25759. arm: {
  25760. height: math.unit(1.88, "feet"),
  25761. name: "Arm",
  25762. image: {
  25763. source: "./media/characters/balina-mahigan/arm.svg"
  25764. }
  25765. },
  25766. backPort: {
  25767. height: math.unit(0.685, "feet"),
  25768. name: "Back Port",
  25769. image: {
  25770. source: "./media/characters/balina-mahigan/back-port.svg"
  25771. }
  25772. },
  25773. hoofpaw: {
  25774. height: math.unit(1.41, "feet"),
  25775. name: "Hoofpaw",
  25776. image: {
  25777. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25778. }
  25779. },
  25780. leftHandBack: {
  25781. height: math.unit(0.938, "feet"),
  25782. name: "Left Hand (Back)",
  25783. image: {
  25784. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25785. }
  25786. },
  25787. leftHandFront: {
  25788. height: math.unit(0.938, "feet"),
  25789. name: "Left Hand (Front)",
  25790. image: {
  25791. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25792. }
  25793. },
  25794. rightHandBack: {
  25795. height: math.unit(0.95, "feet"),
  25796. name: "Right Hand (Back)",
  25797. image: {
  25798. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25799. }
  25800. },
  25801. rightHandFront: {
  25802. height: math.unit(0.95, "feet"),
  25803. name: "Right Hand (Front)",
  25804. image: {
  25805. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25806. }
  25807. },
  25808. },
  25809. [
  25810. {
  25811. name: "Normal",
  25812. height: math.unit(6 + 4 / 12, "feet"),
  25813. default: true
  25814. },
  25815. ]
  25816. ))
  25817. characterMakers.push(() => makeCharacter(
  25818. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25819. {
  25820. front: {
  25821. height: math.unit(6, "feet"),
  25822. weight: math.unit(320, "lb"),
  25823. name: "Front",
  25824. image: {
  25825. source: "./media/characters/balina-mejeri/front.svg",
  25826. extra: 517 / 488,
  25827. bottom: 44.2 / 561
  25828. }
  25829. },
  25830. },
  25831. [
  25832. {
  25833. name: "Normal",
  25834. height: math.unit(6 + 4 / 12, "feet")
  25835. },
  25836. {
  25837. name: "Business",
  25838. height: math.unit(155, "feet"),
  25839. default: true
  25840. },
  25841. ]
  25842. ))
  25843. characterMakers.push(() => makeCharacter(
  25844. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25845. {
  25846. kneeling: {
  25847. height: math.unit(6 + 4 / 12, "feet"),
  25848. weight: math.unit(300 * 20, "lb"),
  25849. name: "Kneeling",
  25850. image: {
  25851. source: "./media/characters/balbarian/kneeling.svg",
  25852. extra: 922 / 862,
  25853. bottom: 42.4 / 965
  25854. }
  25855. },
  25856. },
  25857. [
  25858. {
  25859. name: "Normal",
  25860. height: math.unit(6 + 4 / 12, "feet")
  25861. },
  25862. {
  25863. name: "Treasured",
  25864. height: math.unit(18 + 9 / 12, "feet"),
  25865. default: true
  25866. },
  25867. {
  25868. name: "Macro",
  25869. height: math.unit(900, "feet")
  25870. },
  25871. ]
  25872. ))
  25873. characterMakers.push(() => makeCharacter(
  25874. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25875. {
  25876. front: {
  25877. height: math.unit(6 + 4 / 12, "feet"),
  25878. weight: math.unit(325, "lb"),
  25879. name: "Front",
  25880. image: {
  25881. source: "./media/characters/balina-amarini/front.svg",
  25882. extra: 415 / 403,
  25883. bottom: 19 / 433.4
  25884. }
  25885. },
  25886. back: {
  25887. height: math.unit(6 + 4 / 12, "feet"),
  25888. weight: math.unit(325, "lb"),
  25889. name: "Back",
  25890. image: {
  25891. source: "./media/characters/balina-amarini/back.svg",
  25892. extra: 415 / 403,
  25893. bottom: 13.5 / 432
  25894. }
  25895. },
  25896. overdrive: {
  25897. height: math.unit(6 + 4 / 12, "feet"),
  25898. weight: math.unit(400, "lb"),
  25899. name: "Overdrive",
  25900. image: {
  25901. source: "./media/characters/balina-amarini/overdrive.svg",
  25902. extra: 269 / 259,
  25903. bottom: 12 / 282
  25904. }
  25905. },
  25906. },
  25907. [
  25908. {
  25909. name: "Boom",
  25910. height: math.unit(9 + 10 / 12, "feet"),
  25911. default: true
  25912. },
  25913. {
  25914. name: "Macro",
  25915. height: math.unit(280, "feet")
  25916. },
  25917. ]
  25918. ))
  25919. characterMakers.push(() => makeCharacter(
  25920. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25921. {
  25922. goddess: {
  25923. height: math.unit(600, "feet"),
  25924. weight: math.unit(2000000, "tons"),
  25925. name: "Goddess",
  25926. image: {
  25927. source: "./media/characters/lady-kubwa/goddess.svg",
  25928. extra: 1240.5 / 1223,
  25929. bottom: 22 / 1263
  25930. }
  25931. },
  25932. goddesser: {
  25933. height: math.unit(900, "feet"),
  25934. weight: math.unit(20000000, "lb"),
  25935. name: "Goddess-er",
  25936. image: {
  25937. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25938. extra: 899 / 888,
  25939. bottom: 12.6 / 912
  25940. }
  25941. },
  25942. },
  25943. [
  25944. {
  25945. name: "Macro",
  25946. height: math.unit(600, "feet"),
  25947. default: true
  25948. },
  25949. {
  25950. name: "Megamacro",
  25951. height: math.unit(250, "miles")
  25952. },
  25953. ]
  25954. ))
  25955. characterMakers.push(() => makeCharacter(
  25956. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25957. {
  25958. front: {
  25959. height: math.unit(7 + 7 / 12, "feet"),
  25960. weight: math.unit(250, "lb"),
  25961. name: "Front",
  25962. image: {
  25963. source: "./media/characters/tala-grovehorn/front.svg",
  25964. extra: 2636 / 2525,
  25965. bottom: 147 / 2781
  25966. }
  25967. },
  25968. back: {
  25969. height: math.unit(7 + 7 / 12, "feet"),
  25970. weight: math.unit(250, "lb"),
  25971. name: "Back",
  25972. image: {
  25973. source: "./media/characters/tala-grovehorn/back.svg",
  25974. extra: 2635 / 2539,
  25975. bottom: 100 / 2732.8
  25976. }
  25977. },
  25978. mouth: {
  25979. height: math.unit(1.15, "feet"),
  25980. name: "Mouth",
  25981. image: {
  25982. source: "./media/characters/tala-grovehorn/mouth.svg"
  25983. }
  25984. },
  25985. dick: {
  25986. height: math.unit(2.36, "feet"),
  25987. name: "Dick",
  25988. image: {
  25989. source: "./media/characters/tala-grovehorn/dick.svg"
  25990. }
  25991. },
  25992. slit: {
  25993. height: math.unit(0.61, "feet"),
  25994. name: "Slit",
  25995. image: {
  25996. source: "./media/characters/tala-grovehorn/slit.svg"
  25997. }
  25998. },
  25999. },
  26000. [
  26001. ]
  26002. ))
  26003. characterMakers.push(() => makeCharacter(
  26004. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26005. {
  26006. front: {
  26007. height: math.unit(7 + 7 / 12, "feet"),
  26008. weight: math.unit(225, "lb"),
  26009. name: "Front",
  26010. image: {
  26011. source: "./media/characters/epona/front.svg",
  26012. extra: 2445 / 2290,
  26013. bottom: 251 / 2696
  26014. }
  26015. },
  26016. back: {
  26017. height: math.unit(7 + 7 / 12, "feet"),
  26018. weight: math.unit(225, "lb"),
  26019. name: "Back",
  26020. image: {
  26021. source: "./media/characters/epona/back.svg",
  26022. extra: 2546 / 2408,
  26023. bottom: 44 / 2589
  26024. }
  26025. },
  26026. genitals: {
  26027. height: math.unit(1.5, "feet"),
  26028. name: "Genitals",
  26029. image: {
  26030. source: "./media/characters/epona/genitals.svg"
  26031. }
  26032. },
  26033. },
  26034. [
  26035. {
  26036. name: "Normal",
  26037. height: math.unit(7 + 7 / 12, "feet"),
  26038. default: true
  26039. },
  26040. ]
  26041. ))
  26042. characterMakers.push(() => makeCharacter(
  26043. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26044. {
  26045. front: {
  26046. height: math.unit(7, "feet"),
  26047. weight: math.unit(518, "lb"),
  26048. name: "Front",
  26049. image: {
  26050. source: "./media/characters/avia-bloodbourn/front.svg",
  26051. extra: 1466 / 1350,
  26052. bottom: 65 / 1527
  26053. }
  26054. },
  26055. },
  26056. [
  26057. ]
  26058. ))
  26059. characterMakers.push(() => makeCharacter(
  26060. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26061. {
  26062. front: {
  26063. height: math.unit(9.35, "feet"),
  26064. weight: math.unit(600, "lb"),
  26065. name: "Front",
  26066. image: {
  26067. source: "./media/characters/amera/front.svg",
  26068. extra: 891 / 818,
  26069. bottom: 30 / 922.7
  26070. }
  26071. },
  26072. back: {
  26073. height: math.unit(9.35, "feet"),
  26074. weight: math.unit(600, "lb"),
  26075. name: "Back",
  26076. image: {
  26077. source: "./media/characters/amera/back.svg",
  26078. extra: 876 / 824,
  26079. bottom: 6.8 / 884
  26080. }
  26081. },
  26082. dick: {
  26083. height: math.unit(2.14, "feet"),
  26084. name: "Dick",
  26085. image: {
  26086. source: "./media/characters/amera/dick.svg"
  26087. }
  26088. },
  26089. },
  26090. [
  26091. {
  26092. name: "Normal",
  26093. height: math.unit(9.35, "feet"),
  26094. default: true
  26095. },
  26096. ]
  26097. ))
  26098. characterMakers.push(() => makeCharacter(
  26099. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26100. {
  26101. kneeling: {
  26102. height: math.unit(3 + 4 / 12, "feet"),
  26103. weight: math.unit(90, "lb"),
  26104. name: "Kneeling",
  26105. image: {
  26106. source: "./media/characters/rosewen/kneeling.svg",
  26107. extra: 1835 / 1571,
  26108. bottom: 27.7 / 1862
  26109. }
  26110. },
  26111. },
  26112. [
  26113. {
  26114. name: "Normal",
  26115. height: math.unit(3 + 4 / 12, "feet"),
  26116. default: true
  26117. },
  26118. ]
  26119. ))
  26120. characterMakers.push(() => makeCharacter(
  26121. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26122. {
  26123. front: {
  26124. height: math.unit(5 + 10 / 12, "feet"),
  26125. weight: math.unit(200, "lb"),
  26126. name: "Front",
  26127. image: {
  26128. source: "./media/characters/sabah/front.svg",
  26129. extra: 849 / 763,
  26130. bottom: 33.9 / 881
  26131. }
  26132. },
  26133. },
  26134. [
  26135. {
  26136. name: "Normal",
  26137. height: math.unit(5 + 10 / 12, "feet"),
  26138. default: true
  26139. },
  26140. ]
  26141. ))
  26142. characterMakers.push(() => makeCharacter(
  26143. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26144. {
  26145. front: {
  26146. height: math.unit(3 + 5 / 12, "feet"),
  26147. weight: math.unit(40, "kg"),
  26148. name: "Front",
  26149. image: {
  26150. source: "./media/characters/purple-flame/front.svg",
  26151. extra: 1577 / 1412,
  26152. bottom: 97 / 1694
  26153. }
  26154. },
  26155. frontDressed: {
  26156. height: math.unit(3 + 5 / 12, "feet"),
  26157. weight: math.unit(40, "kg"),
  26158. name: "Front (Dressed)",
  26159. image: {
  26160. source: "./media/characters/purple-flame/front-dressed.svg",
  26161. extra: 1577 / 1412,
  26162. bottom: 97 / 1694
  26163. }
  26164. },
  26165. headphones: {
  26166. height: math.unit(0.85, "feet"),
  26167. name: "Headphones",
  26168. image: {
  26169. source: "./media/characters/purple-flame/headphones.svg"
  26170. }
  26171. },
  26172. },
  26173. [
  26174. {
  26175. name: "Really Small",
  26176. height: math.unit(5, "cm")
  26177. },
  26178. {
  26179. name: "Micro",
  26180. height: math.unit(1 + 5 / 12, "feet")
  26181. },
  26182. {
  26183. name: "Normal",
  26184. height: math.unit(3 + 5 / 12, "feet"),
  26185. default: true
  26186. },
  26187. {
  26188. name: "Minimacro",
  26189. height: math.unit(125, "feet")
  26190. },
  26191. {
  26192. name: "Macro",
  26193. height: math.unit(0.5, "miles")
  26194. },
  26195. {
  26196. name: "Megamacro",
  26197. height: math.unit(50, "miles")
  26198. },
  26199. {
  26200. name: "Gigantic",
  26201. height: math.unit(750, "miles")
  26202. },
  26203. {
  26204. name: "Planetary",
  26205. height: math.unit(15000, "miles")
  26206. },
  26207. ]
  26208. ))
  26209. characterMakers.push(() => makeCharacter(
  26210. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26211. {
  26212. front: {
  26213. height: math.unit(14, "feet"),
  26214. weight: math.unit(959, "lb"),
  26215. name: "Front",
  26216. image: {
  26217. source: "./media/characters/arsenal/front.svg",
  26218. extra: 2357 / 2157,
  26219. bottom: 93 / 2458
  26220. }
  26221. },
  26222. },
  26223. [
  26224. {
  26225. name: "Normal",
  26226. height: math.unit(14, "feet"),
  26227. default: true
  26228. },
  26229. ]
  26230. ))
  26231. characterMakers.push(() => makeCharacter(
  26232. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26233. {
  26234. front: {
  26235. height: math.unit(6, "feet"),
  26236. weight: math.unit(150, "lb"),
  26237. name: "Front",
  26238. image: {
  26239. source: "./media/characters/adira/front.svg",
  26240. extra: 1078 / 1029,
  26241. bottom: 87 / 1166
  26242. }
  26243. },
  26244. },
  26245. [
  26246. {
  26247. name: "Micro",
  26248. height: math.unit(4, "inches"),
  26249. default: true
  26250. },
  26251. {
  26252. name: "Macro",
  26253. height: math.unit(50, "feet")
  26254. },
  26255. ]
  26256. ))
  26257. characterMakers.push(() => makeCharacter(
  26258. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26259. {
  26260. front: {
  26261. height: math.unit(16, "feet"),
  26262. weight: math.unit(1000, "lb"),
  26263. name: "Front",
  26264. image: {
  26265. source: "./media/characters/grim/front.svg",
  26266. extra: 622 / 614,
  26267. bottom: 18.1 / 642
  26268. }
  26269. },
  26270. back: {
  26271. height: math.unit(16, "feet"),
  26272. weight: math.unit(1000, "lb"),
  26273. name: "Back",
  26274. image: {
  26275. source: "./media/characters/grim/back.svg",
  26276. extra: 610.6 / 602,
  26277. bottom: 40.8 / 652
  26278. }
  26279. },
  26280. hunched: {
  26281. height: math.unit(9.75, "feet"),
  26282. weight: math.unit(1000, "lb"),
  26283. name: "Hunched",
  26284. image: {
  26285. source: "./media/characters/grim/hunched.svg",
  26286. extra: 304 / 297,
  26287. bottom: 35.4 / 394
  26288. }
  26289. },
  26290. },
  26291. [
  26292. {
  26293. name: "Normal",
  26294. height: math.unit(16, "feet"),
  26295. default: true
  26296. },
  26297. ]
  26298. ))
  26299. characterMakers.push(() => makeCharacter(
  26300. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26301. {
  26302. front: {
  26303. height: math.unit(2.3, "meters"),
  26304. weight: math.unit(300, "lb"),
  26305. name: "Front",
  26306. image: {
  26307. source: "./media/characters/sinja/front-sfw.svg",
  26308. extra: 1393 / 1294,
  26309. bottom: 70 / 1463
  26310. }
  26311. },
  26312. frontNsfw: {
  26313. height: math.unit(2.3, "meters"),
  26314. weight: math.unit(300, "lb"),
  26315. name: "Front (NSFW)",
  26316. image: {
  26317. source: "./media/characters/sinja/front-nsfw.svg",
  26318. extra: 1393 / 1294,
  26319. bottom: 70 / 1463
  26320. }
  26321. },
  26322. back: {
  26323. height: math.unit(2.3, "meters"),
  26324. weight: math.unit(300, "lb"),
  26325. name: "Back",
  26326. image: {
  26327. source: "./media/characters/sinja/back.svg",
  26328. extra: 1393 / 1294,
  26329. bottom: 70 / 1463
  26330. }
  26331. },
  26332. head: {
  26333. height: math.unit(1.771, "feet"),
  26334. name: "Head",
  26335. image: {
  26336. source: "./media/characters/sinja/head.svg"
  26337. }
  26338. },
  26339. slit: {
  26340. height: math.unit(0.8, "feet"),
  26341. name: "Slit",
  26342. image: {
  26343. source: "./media/characters/sinja/slit.svg"
  26344. }
  26345. },
  26346. },
  26347. [
  26348. {
  26349. name: "Normal",
  26350. height: math.unit(2.3, "meters")
  26351. },
  26352. {
  26353. name: "Macro",
  26354. height: math.unit(91, "meters"),
  26355. default: true
  26356. },
  26357. {
  26358. name: "Megamacro",
  26359. height: math.unit(91440, "meters")
  26360. },
  26361. {
  26362. name: "Gigamacro",
  26363. height: math.unit(60960000, "meters")
  26364. },
  26365. {
  26366. name: "Teramacro",
  26367. height: math.unit(9144000000, "meters")
  26368. },
  26369. ]
  26370. ))
  26371. characterMakers.push(() => makeCharacter(
  26372. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26373. {
  26374. front: {
  26375. height: math.unit(1.7, "meters"),
  26376. weight: math.unit(130, "lb"),
  26377. name: "Front",
  26378. image: {
  26379. source: "./media/characters/kyu/front.svg",
  26380. extra: 415 / 395,
  26381. bottom: 5 / 420
  26382. }
  26383. },
  26384. head: {
  26385. height: math.unit(1.75, "feet"),
  26386. name: "Head",
  26387. image: {
  26388. source: "./media/characters/kyu/head.svg"
  26389. }
  26390. },
  26391. foot: {
  26392. height: math.unit(0.81, "feet"),
  26393. name: "Foot",
  26394. image: {
  26395. source: "./media/characters/kyu/foot.svg"
  26396. }
  26397. },
  26398. },
  26399. [
  26400. {
  26401. name: "Normal",
  26402. height: math.unit(1.7, "meters")
  26403. },
  26404. {
  26405. name: "Macro",
  26406. height: math.unit(131, "feet"),
  26407. default: true
  26408. },
  26409. {
  26410. name: "Megamacro",
  26411. height: math.unit(91440, "meters")
  26412. },
  26413. {
  26414. name: "Gigamacro",
  26415. height: math.unit(60960000, "meters")
  26416. },
  26417. {
  26418. name: "Teramacro",
  26419. height: math.unit(9144000000, "meters")
  26420. },
  26421. ]
  26422. ))
  26423. characterMakers.push(() => makeCharacter(
  26424. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26425. {
  26426. front: {
  26427. height: math.unit(7 + 1 / 12, "feet"),
  26428. weight: math.unit(250, "lb"),
  26429. name: "Front",
  26430. image: {
  26431. source: "./media/characters/joey/front.svg",
  26432. extra: 1791 / 1537,
  26433. bottom: 28 / 1816
  26434. }
  26435. },
  26436. },
  26437. [
  26438. {
  26439. name: "Micro",
  26440. height: math.unit(3, "inches")
  26441. },
  26442. {
  26443. name: "Normal",
  26444. height: math.unit(7 + 1 / 12, "feet"),
  26445. default: true
  26446. },
  26447. ]
  26448. ))
  26449. characterMakers.push(() => makeCharacter(
  26450. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26451. {
  26452. front: {
  26453. height: math.unit(165, "cm"),
  26454. weight: math.unit(140, "lb"),
  26455. name: "Front",
  26456. image: {
  26457. source: "./media/characters/sam-evans/front.svg",
  26458. extra: 3417 / 3230,
  26459. bottom: 41.3 / 3417
  26460. }
  26461. },
  26462. frontSixTails: {
  26463. height: math.unit(165, "cm"),
  26464. weight: math.unit(140, "lb"),
  26465. name: "Front-six-tails",
  26466. image: {
  26467. source: "./media/characters/sam-evans/front-six-tails.svg",
  26468. extra: 3417 / 3230,
  26469. bottom: 41.3 / 3417
  26470. }
  26471. },
  26472. back: {
  26473. height: math.unit(165, "cm"),
  26474. weight: math.unit(140, "lb"),
  26475. name: "Back",
  26476. image: {
  26477. source: "./media/characters/sam-evans/back.svg",
  26478. extra: 3227 / 3032,
  26479. bottom: 6.8 / 3234
  26480. }
  26481. },
  26482. face: {
  26483. height: math.unit(0.68, "feet"),
  26484. name: "Face",
  26485. image: {
  26486. source: "./media/characters/sam-evans/face.svg"
  26487. }
  26488. },
  26489. },
  26490. [
  26491. {
  26492. name: "Normal",
  26493. height: math.unit(165, "cm"),
  26494. default: true
  26495. },
  26496. {
  26497. name: "Macro",
  26498. height: math.unit(100, "meters")
  26499. },
  26500. {
  26501. name: "Macro+",
  26502. height: math.unit(800, "meters")
  26503. },
  26504. {
  26505. name: "Macro++",
  26506. height: math.unit(3, "km")
  26507. },
  26508. {
  26509. name: "Macro+++",
  26510. height: math.unit(30, "km")
  26511. },
  26512. ]
  26513. ))
  26514. characterMakers.push(() => makeCharacter(
  26515. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26516. {
  26517. front: {
  26518. height: math.unit(10, "feet"),
  26519. weight: math.unit(750, "lb"),
  26520. name: "Front",
  26521. image: {
  26522. source: "./media/characters/juliet-a/front.svg",
  26523. extra: 1766 / 1720,
  26524. bottom: 43 / 1809
  26525. }
  26526. },
  26527. back: {
  26528. height: math.unit(10, "feet"),
  26529. weight: math.unit(750, "lb"),
  26530. name: "Back",
  26531. image: {
  26532. source: "./media/characters/juliet-a/back.svg",
  26533. extra: 1781 / 1734,
  26534. bottom: 35 / 1810,
  26535. }
  26536. },
  26537. },
  26538. [
  26539. {
  26540. name: "Normal",
  26541. height: math.unit(10, "feet"),
  26542. default: true
  26543. },
  26544. {
  26545. name: "Dragon Form",
  26546. height: math.unit(250, "feet")
  26547. },
  26548. {
  26549. name: "Macro",
  26550. height: math.unit(1000, "feet")
  26551. },
  26552. {
  26553. name: "Megamacro",
  26554. height: math.unit(10000, "feet")
  26555. }
  26556. ]
  26557. ))
  26558. characterMakers.push(() => makeCharacter(
  26559. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26560. {
  26561. regular: {
  26562. height: math.unit(7 + 3 / 12, "feet"),
  26563. weight: math.unit(260, "lb"),
  26564. name: "Regular",
  26565. image: {
  26566. source: "./media/characters/wild/regular.svg",
  26567. extra: 97.45 / 92,
  26568. bottom: 6.8 / 104.3
  26569. }
  26570. },
  26571. biggums: {
  26572. height: math.unit(8 + 6 / 12, "feet"),
  26573. weight: math.unit(425, "lb"),
  26574. name: "Biggums",
  26575. image: {
  26576. source: "./media/characters/wild/biggums.svg",
  26577. extra: 97.45 / 92,
  26578. bottom: 7.5 / 132.34
  26579. }
  26580. },
  26581. mawRegular: {
  26582. height: math.unit(1.24, "feet"),
  26583. name: "Maw (Regular)",
  26584. image: {
  26585. source: "./media/characters/wild/maw.svg"
  26586. }
  26587. },
  26588. mawBiggums: {
  26589. height: math.unit(1.47, "feet"),
  26590. name: "Maw (Biggums)",
  26591. image: {
  26592. source: "./media/characters/wild/maw.svg"
  26593. }
  26594. },
  26595. },
  26596. [
  26597. {
  26598. name: "Normal",
  26599. height: math.unit(7 + 3 / 12, "feet"),
  26600. default: true
  26601. },
  26602. ]
  26603. ))
  26604. characterMakers.push(() => makeCharacter(
  26605. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26606. {
  26607. front: {
  26608. height: math.unit(2.5, "meters"),
  26609. weight: math.unit(200, "kg"),
  26610. name: "Front",
  26611. image: {
  26612. source: "./media/characters/vidar/front.svg",
  26613. extra: 2994 / 2795,
  26614. bottom: 56 / 3061
  26615. }
  26616. },
  26617. back: {
  26618. height: math.unit(2.5, "meters"),
  26619. weight: math.unit(200, "kg"),
  26620. name: "Back",
  26621. image: {
  26622. source: "./media/characters/vidar/back.svg",
  26623. extra: 3131 / 2928,
  26624. bottom: 13.5 / 3141.5
  26625. }
  26626. },
  26627. feral: {
  26628. height: math.unit(2.5, "meters"),
  26629. weight: math.unit(2000, "kg"),
  26630. name: "Feral",
  26631. image: {
  26632. source: "./media/characters/vidar/feral.svg",
  26633. extra: 2790 / 1765,
  26634. bottom: 6 / 2796
  26635. }
  26636. },
  26637. },
  26638. [
  26639. {
  26640. name: "Normal",
  26641. height: math.unit(2.5, "meters"),
  26642. default: true
  26643. },
  26644. {
  26645. name: "Macro",
  26646. height: math.unit(100, "meters")
  26647. },
  26648. ]
  26649. ))
  26650. characterMakers.push(() => makeCharacter(
  26651. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26652. {
  26653. front: {
  26654. height: math.unit(5 + 9 / 12, "feet"),
  26655. weight: math.unit(120, "lb"),
  26656. name: "Front",
  26657. image: {
  26658. source: "./media/characters/ash/front.svg",
  26659. extra: 2189 / 1961,
  26660. bottom: 5.2 / 2194
  26661. }
  26662. },
  26663. },
  26664. [
  26665. {
  26666. name: "Normal",
  26667. height: math.unit(5 + 9 / 12, "feet"),
  26668. default: true
  26669. },
  26670. ]
  26671. ))
  26672. characterMakers.push(() => makeCharacter(
  26673. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26674. {
  26675. front: {
  26676. height: math.unit(9, "feet"),
  26677. weight: math.unit(10000, "lb"),
  26678. name: "Front",
  26679. image: {
  26680. source: "./media/characters/gygabite/front.svg",
  26681. bottom: 31.7 / 537.8,
  26682. extra: 505 / 370
  26683. }
  26684. },
  26685. },
  26686. [
  26687. {
  26688. name: "Normal",
  26689. height: math.unit(9, "feet"),
  26690. default: true
  26691. },
  26692. ]
  26693. ))
  26694. characterMakers.push(() => makeCharacter(
  26695. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26696. {
  26697. front: {
  26698. height: math.unit(12, "feet"),
  26699. weight: math.unit(35000, "lb"),
  26700. name: "Front",
  26701. image: {
  26702. source: "./media/characters/p0tat0/front.svg",
  26703. extra: 1065 / 921,
  26704. bottom: 55.7 / 1121.25
  26705. }
  26706. },
  26707. },
  26708. [
  26709. {
  26710. name: "Normal",
  26711. height: math.unit(12, "feet"),
  26712. default: true
  26713. },
  26714. ]
  26715. ))
  26716. characterMakers.push(() => makeCharacter(
  26717. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26718. {
  26719. side: {
  26720. height: math.unit(6.5, "feet"),
  26721. weight: math.unit(800, "lb"),
  26722. name: "Side",
  26723. image: {
  26724. source: "./media/characters/dusk/side.svg",
  26725. extra: 615 / 373,
  26726. bottom: 53 / 664
  26727. }
  26728. },
  26729. sitting: {
  26730. height: math.unit(7, "feet"),
  26731. weight: math.unit(800, "lb"),
  26732. name: "Sitting",
  26733. image: {
  26734. source: "./media/characters/dusk/sitting.svg",
  26735. extra: 753 / 425,
  26736. bottom: 33 / 774
  26737. }
  26738. },
  26739. head: {
  26740. height: math.unit(6.1, "feet"),
  26741. name: "Head",
  26742. image: {
  26743. source: "./media/characters/dusk/head.svg"
  26744. }
  26745. },
  26746. },
  26747. [
  26748. {
  26749. name: "Normal",
  26750. height: math.unit(7, "feet"),
  26751. default: true
  26752. },
  26753. ]
  26754. ))
  26755. characterMakers.push(() => makeCharacter(
  26756. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26757. {
  26758. front: {
  26759. height: math.unit(15, "feet"),
  26760. weight: math.unit(7000, "lb"),
  26761. name: "Front",
  26762. image: {
  26763. source: "./media/characters/jay-direwolf/front.svg",
  26764. extra: 1810 / 1732,
  26765. bottom: 66 / 1892
  26766. }
  26767. },
  26768. },
  26769. [
  26770. {
  26771. name: "Normal",
  26772. height: math.unit(15, "feet"),
  26773. default: true
  26774. },
  26775. ]
  26776. ))
  26777. characterMakers.push(() => makeCharacter(
  26778. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26779. {
  26780. front: {
  26781. height: math.unit(4 + 9 / 12, "feet"),
  26782. weight: math.unit(130, "lb"),
  26783. name: "Front",
  26784. image: {
  26785. source: "./media/characters/anchovie/front.svg",
  26786. extra: 382 / 350,
  26787. bottom: 25 / 409
  26788. }
  26789. },
  26790. back: {
  26791. height: math.unit(4 + 9 / 12, "feet"),
  26792. weight: math.unit(130, "lb"),
  26793. name: "Back",
  26794. image: {
  26795. source: "./media/characters/anchovie/back.svg",
  26796. extra: 385 / 352,
  26797. bottom: 16.6 / 402
  26798. }
  26799. },
  26800. frontDressed: {
  26801. height: math.unit(4 + 9 / 12, "feet"),
  26802. weight: math.unit(130, "lb"),
  26803. name: "Front (Dressed)",
  26804. image: {
  26805. source: "./media/characters/anchovie/front-dressed.svg",
  26806. extra: 382 / 350,
  26807. bottom: 25 / 409
  26808. }
  26809. },
  26810. backDressed: {
  26811. height: math.unit(4 + 9 / 12, "feet"),
  26812. weight: math.unit(130, "lb"),
  26813. name: "Back (Dressed)",
  26814. image: {
  26815. source: "./media/characters/anchovie/back-dressed.svg",
  26816. extra: 385 / 352,
  26817. bottom: 16.6 / 402
  26818. }
  26819. },
  26820. },
  26821. [
  26822. {
  26823. name: "Micro",
  26824. height: math.unit(6.4, "inches")
  26825. },
  26826. {
  26827. name: "Normal",
  26828. height: math.unit(4 + 9 / 12, "feet"),
  26829. default: true
  26830. },
  26831. ]
  26832. ))
  26833. characterMakers.push(() => makeCharacter(
  26834. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26835. {
  26836. front: {
  26837. height: math.unit(2, "meters"),
  26838. weight: math.unit(180, "lb"),
  26839. name: "Front",
  26840. image: {
  26841. source: "./media/characters/acidrenamon/front.svg",
  26842. extra: 987 / 890,
  26843. bottom: 22.8 / 1009
  26844. }
  26845. },
  26846. back: {
  26847. height: math.unit(2, "meters"),
  26848. weight: math.unit(180, "lb"),
  26849. name: "Back",
  26850. image: {
  26851. source: "./media/characters/acidrenamon/back.svg",
  26852. extra: 983 / 891,
  26853. bottom: 8.4 / 992
  26854. }
  26855. },
  26856. head: {
  26857. height: math.unit(1.92, "feet"),
  26858. name: "Head",
  26859. image: {
  26860. source: "./media/characters/acidrenamon/head.svg"
  26861. }
  26862. },
  26863. rump: {
  26864. height: math.unit(1.72, "feet"),
  26865. name: "Rump",
  26866. image: {
  26867. source: "./media/characters/acidrenamon/rump.svg"
  26868. }
  26869. },
  26870. tail: {
  26871. height: math.unit(4.2, "feet"),
  26872. name: "Tail",
  26873. image: {
  26874. source: "./media/characters/acidrenamon/tail.svg"
  26875. }
  26876. },
  26877. },
  26878. [
  26879. {
  26880. name: "Normal",
  26881. height: math.unit(2, "meters"),
  26882. default: true
  26883. },
  26884. {
  26885. name: "Minimacro",
  26886. height: math.unit(7, "meters")
  26887. },
  26888. {
  26889. name: "Macro",
  26890. height: math.unit(200, "meters")
  26891. },
  26892. {
  26893. name: "Gigamacro",
  26894. height: math.unit(0.2, "earths")
  26895. },
  26896. ]
  26897. ))
  26898. characterMakers.push(() => makeCharacter(
  26899. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26900. {
  26901. front: {
  26902. height: math.unit(6, "feet"),
  26903. weight: math.unit(150, "lb"),
  26904. name: "Front",
  26905. image: {
  26906. source: "./media/characters/kenzie-lee/front.svg",
  26907. extra: 1525 / 1465,
  26908. bottom: 45 / 1570
  26909. }
  26910. },
  26911. side: {
  26912. height: math.unit(6, "feet"),
  26913. weight: math.unit(150, "lb"),
  26914. name: "Side",
  26915. image: {
  26916. source: "./media/characters/kenzie-lee/side.svg",
  26917. extra: 5505 / 5383,
  26918. bottom: 60 / 5573
  26919. }
  26920. },
  26921. paw: {
  26922. height: math.unit(0.57, "feet"),
  26923. name: "Paw",
  26924. image: {
  26925. source: "./media/characters/kenzie-lee/paw.svg"
  26926. }
  26927. },
  26928. },
  26929. [
  26930. {
  26931. name: "Normal",
  26932. height: math.unit(152, "feet"),
  26933. default: true
  26934. },
  26935. {
  26936. name: "Megamacro",
  26937. height: math.unit(7, "miles")
  26938. },
  26939. {
  26940. name: "Gigamacro",
  26941. height: math.unit(8000, "miles")
  26942. },
  26943. ]
  26944. ))
  26945. characterMakers.push(() => makeCharacter(
  26946. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26947. {
  26948. side: {
  26949. height: math.unit(6, "feet"),
  26950. weight: math.unit(150, "lb"),
  26951. name: "Side",
  26952. image: {
  26953. source: "./media/characters/withers/side.svg",
  26954. extra: 1830 / 1728,
  26955. bottom: 96 / 1927
  26956. }
  26957. },
  26958. front: {
  26959. height: math.unit(6, "feet"),
  26960. weight: math.unit(150, "lb"),
  26961. name: "Front",
  26962. image: {
  26963. source: "./media/characters/withers/front.svg",
  26964. extra: 1514 / 1438,
  26965. bottom: 118 / 1632
  26966. }
  26967. },
  26968. },
  26969. [
  26970. {
  26971. name: "Macro",
  26972. height: math.unit(168, "feet"),
  26973. default: true
  26974. },
  26975. {
  26976. name: "Megamacro",
  26977. height: math.unit(15, "miles")
  26978. }
  26979. ]
  26980. ))
  26981. characterMakers.push(() => makeCharacter(
  26982. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26983. {
  26984. front: {
  26985. height: math.unit(6 + 7 / 12, "feet"),
  26986. weight: math.unit(250, "lb"),
  26987. name: "Front",
  26988. image: {
  26989. source: "./media/characters/nemoskii/front.svg",
  26990. extra: 2270 / 1734,
  26991. bottom: 86 / 2354
  26992. }
  26993. },
  26994. back: {
  26995. height: math.unit(6 + 7 / 12, "feet"),
  26996. weight: math.unit(250, "lb"),
  26997. name: "Back",
  26998. image: {
  26999. source: "./media/characters/nemoskii/back.svg",
  27000. extra: 1845 / 1788,
  27001. bottom: 10.5 / 1852
  27002. }
  27003. },
  27004. head: {
  27005. height: math.unit(1.31, "feet"),
  27006. name: "Head",
  27007. image: {
  27008. source: "./media/characters/nemoskii/head.svg"
  27009. }
  27010. },
  27011. },
  27012. [
  27013. {
  27014. name: "Micro",
  27015. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27016. },
  27017. {
  27018. name: "Normal",
  27019. height: math.unit(6 + 7 / 12, "feet"),
  27020. default: true
  27021. },
  27022. {
  27023. name: "Macro",
  27024. height: math.unit((6 + 7 / 12) * 150, "feet")
  27025. },
  27026. {
  27027. name: "Macro+",
  27028. height: math.unit((6 + 7 / 12) * 500, "feet")
  27029. },
  27030. {
  27031. name: "Megamacro",
  27032. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27033. },
  27034. ]
  27035. ))
  27036. characterMakers.push(() => makeCharacter(
  27037. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27038. {
  27039. front: {
  27040. height: math.unit(1, "mile"),
  27041. weight: math.unit(265261.9, "lb"),
  27042. name: "Front",
  27043. image: {
  27044. source: "./media/characters/shui/front.svg",
  27045. extra: 1633 / 1564,
  27046. bottom: 91.5 / 1726
  27047. }
  27048. },
  27049. },
  27050. [
  27051. {
  27052. name: "Macro",
  27053. height: math.unit(1, "mile"),
  27054. default: true
  27055. },
  27056. ]
  27057. ))
  27058. characterMakers.push(() => makeCharacter(
  27059. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27060. {
  27061. front: {
  27062. height: math.unit(12 + 6 / 12, "feet"),
  27063. weight: math.unit(1342, "lb"),
  27064. name: "Front",
  27065. image: {
  27066. source: "./media/characters/arokh-takakura/front.svg",
  27067. extra: 1089 / 1043,
  27068. bottom: 77.4 / 1176.7
  27069. }
  27070. },
  27071. back: {
  27072. height: math.unit(12 + 6 / 12, "feet"),
  27073. weight: math.unit(1342, "lb"),
  27074. name: "Back",
  27075. image: {
  27076. source: "./media/characters/arokh-takakura/back.svg",
  27077. extra: 1046 / 1019,
  27078. bottom: 102 / 1150
  27079. }
  27080. },
  27081. },
  27082. [
  27083. {
  27084. name: "Big",
  27085. height: math.unit(12 + 6 / 12, "feet"),
  27086. default: true
  27087. },
  27088. ]
  27089. ))
  27090. characterMakers.push(() => makeCharacter(
  27091. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27092. {
  27093. front: {
  27094. height: math.unit(5 + 6 / 12, "feet"),
  27095. weight: math.unit(150, "lb"),
  27096. name: "Front",
  27097. image: {
  27098. source: "./media/characters/theo/front.svg",
  27099. extra: 1184 / 1131,
  27100. bottom: 7.4 / 1191
  27101. }
  27102. },
  27103. },
  27104. [
  27105. {
  27106. name: "Micro",
  27107. height: math.unit(5, "inches")
  27108. },
  27109. {
  27110. name: "Normal",
  27111. height: math.unit(5 + 6 / 12, "feet"),
  27112. default: true
  27113. },
  27114. ]
  27115. ))
  27116. characterMakers.push(() => makeCharacter(
  27117. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27118. {
  27119. front: {
  27120. height: math.unit(5 + 9 / 12, "feet"),
  27121. weight: math.unit(130, "lb"),
  27122. name: "Front",
  27123. image: {
  27124. source: "./media/characters/cecelia-swift/front.svg",
  27125. extra: 502 / 484,
  27126. bottom: 23 / 523
  27127. }
  27128. },
  27129. back: {
  27130. height: math.unit(5 + 9 / 12, "feet"),
  27131. weight: math.unit(130, "lb"),
  27132. name: "Back",
  27133. image: {
  27134. source: "./media/characters/cecelia-swift/back.svg",
  27135. extra: 499 / 485,
  27136. bottom: 12 / 511
  27137. }
  27138. },
  27139. head: {
  27140. height: math.unit(0.90, "feet"),
  27141. name: "Head",
  27142. image: {
  27143. source: "./media/characters/cecelia-swift/head.svg"
  27144. }
  27145. },
  27146. rump: {
  27147. height: math.unit(1.75, "feet"),
  27148. name: "Rump",
  27149. image: {
  27150. source: "./media/characters/cecelia-swift/rump.svg"
  27151. }
  27152. },
  27153. },
  27154. [
  27155. {
  27156. name: "Normal",
  27157. height: math.unit(5 + 9 / 12, "feet"),
  27158. default: true
  27159. },
  27160. {
  27161. name: "Big",
  27162. height: math.unit(50, "feet")
  27163. },
  27164. {
  27165. name: "Macro",
  27166. height: math.unit(100, "feet")
  27167. },
  27168. {
  27169. name: "Macro+",
  27170. height: math.unit(500, "feet")
  27171. },
  27172. {
  27173. name: "Macro++",
  27174. height: math.unit(1000, "feet")
  27175. },
  27176. ]
  27177. ))
  27178. characterMakers.push(() => makeCharacter(
  27179. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27180. {
  27181. front: {
  27182. height: math.unit(6, "feet"),
  27183. weight: math.unit(150, "lb"),
  27184. name: "Front",
  27185. image: {
  27186. source: "./media/characters/kaunan/front.svg",
  27187. extra: 2890 / 2523,
  27188. bottom: 49 / 2939
  27189. }
  27190. },
  27191. },
  27192. [
  27193. {
  27194. name: "Macro",
  27195. height: math.unit(150, "feet"),
  27196. default: true
  27197. },
  27198. ]
  27199. ))
  27200. characterMakers.push(() => makeCharacter(
  27201. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27202. {
  27203. front: {
  27204. height: math.unit(175, "cm"),
  27205. weight: math.unit(60, "kg"),
  27206. name: "Front",
  27207. image: {
  27208. source: "./media/characters/fei/front.svg",
  27209. extra: 2581 / 2400,
  27210. bottom: 82.2 / 2663
  27211. }
  27212. },
  27213. },
  27214. [
  27215. {
  27216. name: "Mortal",
  27217. height: math.unit(175, "cm")
  27218. },
  27219. {
  27220. name: "Normal",
  27221. height: math.unit(3500, "m"),
  27222. default: true
  27223. },
  27224. {
  27225. name: "Stroll",
  27226. height: math.unit(17.5, "km")
  27227. },
  27228. {
  27229. name: "Showoff",
  27230. height: math.unit(175, "km")
  27231. },
  27232. ]
  27233. ))
  27234. characterMakers.push(() => makeCharacter(
  27235. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27236. {
  27237. front: {
  27238. height: math.unit(7, "feet"),
  27239. weight: math.unit(1000, "kg"),
  27240. name: "Front",
  27241. image: {
  27242. source: "./media/characters/edrax/front.svg",
  27243. extra: 2838 / 2550,
  27244. bottom: 130 / 2968
  27245. }
  27246. },
  27247. },
  27248. [
  27249. {
  27250. name: "Small",
  27251. height: math.unit(7, "feet")
  27252. },
  27253. {
  27254. name: "Normal",
  27255. height: math.unit(1500, "meters")
  27256. },
  27257. {
  27258. name: "Mega",
  27259. height: math.unit(12000000, "km"),
  27260. default: true
  27261. },
  27262. {
  27263. name: "Megamacro",
  27264. height: math.unit(10600000, "lightyears")
  27265. },
  27266. {
  27267. name: "Hypermacro",
  27268. height: math.unit(256, "yottameters")
  27269. },
  27270. ]
  27271. ))
  27272. characterMakers.push(() => makeCharacter(
  27273. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27274. {
  27275. front: {
  27276. height: math.unit(10, "feet"),
  27277. weight: math.unit(750, "lb"),
  27278. name: "Front",
  27279. image: {
  27280. source: "./media/characters/clove/front.svg",
  27281. extra: 2031 / 1860,
  27282. bottom: 47.8 / 2080
  27283. }
  27284. },
  27285. back: {
  27286. height: math.unit(10, "feet"),
  27287. weight: math.unit(750, "lb"),
  27288. name: "Back",
  27289. image: {
  27290. source: "./media/characters/clove/back.svg",
  27291. extra: 2025 / 1859,
  27292. bottom: 46 / 2071
  27293. }
  27294. },
  27295. },
  27296. [
  27297. {
  27298. name: "Normal",
  27299. height: math.unit(10, "feet"),
  27300. default: true
  27301. },
  27302. ]
  27303. ))
  27304. characterMakers.push(() => makeCharacter(
  27305. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27306. {
  27307. front: {
  27308. height: math.unit(4, "feet"),
  27309. weight: math.unit(50, "lb"),
  27310. name: "Front",
  27311. image: {
  27312. source: "./media/characters/alex-rabbit/front.svg",
  27313. extra: 507 / 458,
  27314. bottom: 18.5 / 527
  27315. }
  27316. },
  27317. back: {
  27318. height: math.unit(4, "feet"),
  27319. weight: math.unit(50, "lb"),
  27320. name: "Back",
  27321. image: {
  27322. source: "./media/characters/alex-rabbit/back.svg",
  27323. extra: 502 / 460,
  27324. bottom: 18.9 / 521
  27325. }
  27326. },
  27327. },
  27328. [
  27329. {
  27330. name: "Normal",
  27331. height: math.unit(4, "feet"),
  27332. default: true
  27333. },
  27334. ]
  27335. ))
  27336. characterMakers.push(() => makeCharacter(
  27337. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27338. {
  27339. front: {
  27340. height: math.unit(1 + 3 / 12, "feet"),
  27341. weight: math.unit(80, "lb"),
  27342. name: "Front",
  27343. image: {
  27344. source: "./media/characters/zander-rose/front.svg",
  27345. extra: 916 / 797,
  27346. bottom: 17 / 933
  27347. }
  27348. },
  27349. back: {
  27350. height: math.unit(1 + 3 / 12, "feet"),
  27351. weight: math.unit(80, "lb"),
  27352. name: "Back",
  27353. image: {
  27354. source: "./media/characters/zander-rose/back.svg",
  27355. extra: 903 / 779,
  27356. bottom: 31 / 934
  27357. }
  27358. },
  27359. },
  27360. [
  27361. {
  27362. name: "Normal",
  27363. height: math.unit(1 + 3 / 12, "feet"),
  27364. default: true
  27365. },
  27366. ]
  27367. ))
  27368. characterMakers.push(() => makeCharacter(
  27369. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27370. {
  27371. anthro: {
  27372. height: math.unit(6, "feet"),
  27373. weight: math.unit(150, "lb"),
  27374. name: "Anthro",
  27375. image: {
  27376. source: "./media/characters/razz/anthro.svg",
  27377. extra: 1437 / 1343,
  27378. bottom: 48 / 1485
  27379. }
  27380. },
  27381. feral: {
  27382. height: math.unit(6, "feet"),
  27383. weight: math.unit(150, "lb"),
  27384. name: "Feral",
  27385. image: {
  27386. source: "./media/characters/razz/feral.svg",
  27387. extra: 2569 / 1385,
  27388. bottom: 95 / 2664
  27389. }
  27390. },
  27391. },
  27392. [
  27393. {
  27394. name: "Normal",
  27395. height: math.unit(6, "feet"),
  27396. default: true
  27397. },
  27398. ]
  27399. ))
  27400. characterMakers.push(() => makeCharacter(
  27401. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27402. {
  27403. front: {
  27404. height: math.unit(9 + 4 / 12, "feet"),
  27405. weight: math.unit(500, "lb"),
  27406. name: "Front",
  27407. image: {
  27408. source: "./media/characters/morrigan/front.svg",
  27409. extra: 2707 / 2579,
  27410. bottom: 156 / 2863
  27411. }
  27412. },
  27413. },
  27414. [
  27415. {
  27416. name: "Normal",
  27417. height: math.unit(9 + 4 / 12, "feet"),
  27418. default: true
  27419. },
  27420. ]
  27421. ))
  27422. characterMakers.push(() => makeCharacter(
  27423. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27424. {
  27425. front: {
  27426. height: math.unit(5, "stories"),
  27427. weight: math.unit(4000, "lb"),
  27428. name: "Front",
  27429. image: {
  27430. source: "./media/characters/jenene/front.svg",
  27431. extra: 1780 / 1710,
  27432. bottom: 57 / 1837
  27433. }
  27434. },
  27435. },
  27436. [
  27437. {
  27438. name: "Normal",
  27439. height: math.unit(5, "stories"),
  27440. default: true
  27441. },
  27442. ]
  27443. ))
  27444. characterMakers.push(() => makeCharacter(
  27445. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27446. {
  27447. front: {
  27448. height: math.unit(6, "feet"),
  27449. weight: math.unit(150, "lb"),
  27450. name: "Front",
  27451. image: {
  27452. source: "./media/characters/vix-archaser/front.svg",
  27453. extra: 2767 / 2562,
  27454. bottom: 36 / 2803
  27455. }
  27456. },
  27457. },
  27458. [
  27459. {
  27460. name: "Micro",
  27461. height: math.unit(1, "foot")
  27462. },
  27463. {
  27464. name: "Normal",
  27465. height: math.unit(6 + 5 / 12, "feet")
  27466. },
  27467. {
  27468. name: "Minimacro",
  27469. height: math.unit(500, "feet")
  27470. },
  27471. {
  27472. name: "Macro",
  27473. height: math.unit(4, "miles")
  27474. },
  27475. {
  27476. name: "Megamacro",
  27477. height: math.unit(250, "miles"),
  27478. default: true
  27479. },
  27480. {
  27481. name: "Gigamacro",
  27482. height: math.unit(1, "universe")
  27483. },
  27484. {
  27485. name: "Endgame",
  27486. height: math.unit(100, "multiverses")
  27487. }
  27488. ]
  27489. ))
  27490. characterMakers.push(() => makeCharacter(
  27491. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27492. {
  27493. taurSfw: {
  27494. height: math.unit(10, "meters"),
  27495. weight: math.unit(17500, "kg"),
  27496. name: "Taur",
  27497. image: {
  27498. source: "./media/characters/faey/taur-sfw.svg",
  27499. extra: 1200 / 968,
  27500. bottom: 41 / 1241
  27501. }
  27502. },
  27503. chestmaw: {
  27504. height: math.unit(2.01, "meters"),
  27505. name: "Chestmaw",
  27506. image: {
  27507. source: "./media/characters/faey/chestmaw.svg"
  27508. }
  27509. },
  27510. foot: {
  27511. height: math.unit(2.43, "meters"),
  27512. name: "Foot",
  27513. image: {
  27514. source: "./media/characters/faey/foot.svg"
  27515. }
  27516. },
  27517. jaws: {
  27518. height: math.unit(1.66, "meters"),
  27519. name: "Jaws",
  27520. image: {
  27521. source: "./media/characters/faey/jaws.svg"
  27522. }
  27523. },
  27524. tongues: {
  27525. height: math.unit(2.01, "meters"),
  27526. name: "Tongues",
  27527. image: {
  27528. source: "./media/characters/faey/tongues.svg"
  27529. }
  27530. },
  27531. },
  27532. [
  27533. {
  27534. name: "Small",
  27535. height: math.unit(10, "meters"),
  27536. default: true
  27537. },
  27538. {
  27539. name: "Big",
  27540. height: math.unit(500000, "km")
  27541. },
  27542. ]
  27543. ))
  27544. characterMakers.push(() => makeCharacter(
  27545. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27546. {
  27547. front: {
  27548. height: math.unit(7, "feet"),
  27549. weight: math.unit(275, "lb"),
  27550. name: "Front",
  27551. image: {
  27552. source: "./media/characters/roku/front.svg",
  27553. extra: 903 / 878,
  27554. bottom: 37 / 940
  27555. }
  27556. },
  27557. },
  27558. [
  27559. {
  27560. name: "Normal",
  27561. height: math.unit(7, "feet"),
  27562. default: true
  27563. },
  27564. {
  27565. name: "Macro",
  27566. height: math.unit(500, "feet")
  27567. },
  27568. {
  27569. name: "Megamacro",
  27570. height: math.unit(200, "miles")
  27571. },
  27572. ]
  27573. ))
  27574. characterMakers.push(() => makeCharacter(
  27575. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27576. {
  27577. front: {
  27578. height: math.unit(6 + 2 / 12, "feet"),
  27579. weight: math.unit(150, "lb"),
  27580. name: "Front",
  27581. image: {
  27582. source: "./media/characters/lira/front.svg",
  27583. extra: 1727 / 1605,
  27584. bottom: 26 / 1753
  27585. }
  27586. },
  27587. back: {
  27588. height: math.unit(6 + 2 / 12, "feet"),
  27589. weight: math.unit(150, "lb"),
  27590. name: "Back",
  27591. image: {
  27592. source: "./media/characters/lira/back.svg",
  27593. extra: 1713 / 159,
  27594. bottom: 20 / 1733
  27595. }
  27596. },
  27597. hand: {
  27598. height: math.unit(0.75, "feet"),
  27599. name: "Hand",
  27600. image: {
  27601. source: "./media/characters/lira/hand.svg"
  27602. }
  27603. },
  27604. maw: {
  27605. height: math.unit(0.65, "feet"),
  27606. name: "Maw",
  27607. image: {
  27608. source: "./media/characters/lira/maw.svg"
  27609. }
  27610. },
  27611. pawDigi: {
  27612. height: math.unit(1.6, "feet"),
  27613. name: "Paw Digi",
  27614. image: {
  27615. source: "./media/characters/lira/paw-digi.svg"
  27616. }
  27617. },
  27618. pawPlanti: {
  27619. height: math.unit(1.4, "feet"),
  27620. name: "Paw Planti",
  27621. image: {
  27622. source: "./media/characters/lira/paw-planti.svg"
  27623. }
  27624. },
  27625. },
  27626. [
  27627. {
  27628. name: "Normal",
  27629. height: math.unit(6 + 2 / 12, "feet"),
  27630. default: true
  27631. },
  27632. {
  27633. name: "Macro",
  27634. height: math.unit(100, "feet")
  27635. },
  27636. {
  27637. name: "Macro²",
  27638. height: math.unit(1600, "feet")
  27639. },
  27640. {
  27641. name: "Planetary",
  27642. height: math.unit(20, "earths")
  27643. },
  27644. ]
  27645. ))
  27646. characterMakers.push(() => makeCharacter(
  27647. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27648. {
  27649. front: {
  27650. height: math.unit(6, "feet"),
  27651. weight: math.unit(150, "lb"),
  27652. name: "Front",
  27653. image: {
  27654. source: "./media/characters/hadjet/front.svg",
  27655. extra: 1480 / 1346,
  27656. bottom: 26 / 1506
  27657. }
  27658. },
  27659. frontNsfw: {
  27660. height: math.unit(6, "feet"),
  27661. weight: math.unit(150, "lb"),
  27662. name: "Front (NSFW)",
  27663. image: {
  27664. source: "./media/characters/hadjet/front-nsfw.svg",
  27665. extra: 1440 / 1358,
  27666. bottom: 52 / 1492
  27667. }
  27668. },
  27669. },
  27670. [
  27671. {
  27672. name: "Macro",
  27673. height: math.unit(10, "stories"),
  27674. default: true
  27675. },
  27676. {
  27677. name: "Megamacro",
  27678. height: math.unit(1.5, "miles")
  27679. },
  27680. {
  27681. name: "Megamacro+",
  27682. height: math.unit(5, "miles")
  27683. },
  27684. ]
  27685. ))
  27686. characterMakers.push(() => makeCharacter(
  27687. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27688. {
  27689. side: {
  27690. height: math.unit(106, "feet"),
  27691. weight: math.unit(500, "tonnes"),
  27692. name: "Side",
  27693. image: {
  27694. source: "./media/characters/kodran/side.svg",
  27695. extra: 553 / 480,
  27696. bottom: 33 / 586
  27697. }
  27698. },
  27699. front: {
  27700. height: math.unit(132, "feet"),
  27701. weight: math.unit(500, "tonnes"),
  27702. name: "Front",
  27703. image: {
  27704. source: "./media/characters/kodran/front.svg",
  27705. extra: 667 / 643,
  27706. bottom: 42 / 709
  27707. }
  27708. },
  27709. flying: {
  27710. height: math.unit(350, "feet"),
  27711. weight: math.unit(500, "tonnes"),
  27712. name: "Flying",
  27713. image: {
  27714. source: "./media/characters/kodran/flying.svg"
  27715. }
  27716. },
  27717. foot: {
  27718. height: math.unit(33, "feet"),
  27719. name: "Foot",
  27720. image: {
  27721. source: "./media/characters/kodran/foot.svg"
  27722. }
  27723. },
  27724. footFront: {
  27725. height: math.unit(19, "feet"),
  27726. name: "Foot (Front)",
  27727. image: {
  27728. source: "./media/characters/kodran/foot-front.svg",
  27729. extra: 261 / 261,
  27730. bottom: 91 / 352
  27731. }
  27732. },
  27733. headFront: {
  27734. height: math.unit(53, "feet"),
  27735. name: "Head (Front)",
  27736. image: {
  27737. source: "./media/characters/kodran/head-front.svg"
  27738. }
  27739. },
  27740. headSide: {
  27741. height: math.unit(65, "feet"),
  27742. name: "Head (Side)",
  27743. image: {
  27744. source: "./media/characters/kodran/head-side.svg"
  27745. }
  27746. },
  27747. throat: {
  27748. height: math.unit(79, "feet"),
  27749. name: "Throat",
  27750. image: {
  27751. source: "./media/characters/kodran/throat.svg"
  27752. }
  27753. },
  27754. },
  27755. [
  27756. {
  27757. name: "Large",
  27758. height: math.unit(106, "feet"),
  27759. default: true
  27760. },
  27761. ]
  27762. ))
  27763. characterMakers.push(() => makeCharacter(
  27764. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27765. {
  27766. side: {
  27767. height: math.unit(11, "feet"),
  27768. weight: math.unit(150, "lb"),
  27769. name: "Side",
  27770. image: {
  27771. source: "./media/characters/pyxaron/side.svg",
  27772. extra: 305 / 195,
  27773. bottom: 17 / 322
  27774. }
  27775. },
  27776. },
  27777. [
  27778. {
  27779. name: "Normal",
  27780. height: math.unit(11, "feet"),
  27781. default: true
  27782. },
  27783. ]
  27784. ))
  27785. characterMakers.push(() => makeCharacter(
  27786. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27787. {
  27788. front: {
  27789. height: math.unit(6, "feet"),
  27790. weight: math.unit(150, "lb"),
  27791. name: "Front",
  27792. image: {
  27793. source: "./media/characters/meep/front.svg",
  27794. extra: 88 / 80,
  27795. bottom: 6 / 94
  27796. }
  27797. },
  27798. },
  27799. [
  27800. {
  27801. name: "Fun Sized",
  27802. height: math.unit(2, "inches"),
  27803. default: true
  27804. },
  27805. {
  27806. name: "Friend Sized",
  27807. height: math.unit(8, "inches")
  27808. },
  27809. ]
  27810. ))
  27811. characterMakers.push(() => makeCharacter(
  27812. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27813. {
  27814. front: {
  27815. height: math.unit(15, "feet"),
  27816. weight: math.unit(2500, "lb"),
  27817. name: "Front",
  27818. image: {
  27819. source: "./media/characters/holly-rabbit/front.svg",
  27820. extra: 1433 / 1233,
  27821. bottom: 125 / 1558
  27822. }
  27823. },
  27824. dick: {
  27825. height: math.unit(4.6, "feet"),
  27826. name: "Dick",
  27827. image: {
  27828. source: "./media/characters/holly-rabbit/dick.svg"
  27829. }
  27830. },
  27831. },
  27832. [
  27833. {
  27834. name: "Normal",
  27835. height: math.unit(15, "feet"),
  27836. default: true
  27837. },
  27838. {
  27839. name: "Macro",
  27840. height: math.unit(250, "feet")
  27841. },
  27842. {
  27843. name: "Macro+",
  27844. height: math.unit(2500, "feet")
  27845. },
  27846. ]
  27847. ))
  27848. characterMakers.push(() => makeCharacter(
  27849. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27850. {
  27851. front: {
  27852. height: math.unit(3.02, "meters"),
  27853. weight: math.unit(500, "kg"),
  27854. name: "Front",
  27855. image: {
  27856. source: "./media/characters/drena/front.svg",
  27857. extra: 282 / 243,
  27858. bottom: 8 / 290
  27859. }
  27860. },
  27861. side: {
  27862. height: math.unit(3.02, "meters"),
  27863. weight: math.unit(500, "kg"),
  27864. name: "Side",
  27865. image: {
  27866. source: "./media/characters/drena/side.svg",
  27867. extra: 280 / 245,
  27868. bottom: 10 / 290
  27869. }
  27870. },
  27871. back: {
  27872. height: math.unit(3.02, "meters"),
  27873. weight: math.unit(500, "kg"),
  27874. name: "Back",
  27875. image: {
  27876. source: "./media/characters/drena/back.svg",
  27877. extra: 278 / 243,
  27878. bottom: 2 / 280
  27879. }
  27880. },
  27881. foot: {
  27882. height: math.unit(0.75, "meters"),
  27883. name: "Foot",
  27884. image: {
  27885. source: "./media/characters/drena/foot.svg"
  27886. }
  27887. },
  27888. maw: {
  27889. height: math.unit(0.82, "meters"),
  27890. name: "Maw",
  27891. image: {
  27892. source: "./media/characters/drena/maw.svg"
  27893. }
  27894. },
  27895. rump: {
  27896. height: math.unit(0.93, "meters"),
  27897. name: "Rump",
  27898. image: {
  27899. source: "./media/characters/drena/rump.svg"
  27900. }
  27901. },
  27902. },
  27903. [
  27904. {
  27905. name: "Normal",
  27906. height: math.unit(3.02, "meters"),
  27907. default: true
  27908. },
  27909. ]
  27910. ))
  27911. characterMakers.push(() => makeCharacter(
  27912. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27913. {
  27914. front: {
  27915. height: math.unit(6 + 4 / 12, "feet"),
  27916. weight: math.unit(250, "lb"),
  27917. name: "Front",
  27918. image: {
  27919. source: "./media/characters/remmyzilla/front.svg",
  27920. extra: 4033 / 3588,
  27921. bottom: 123 / 4156
  27922. }
  27923. },
  27924. back: {
  27925. height: math.unit(6 + 4 / 12, "feet"),
  27926. weight: math.unit(250, "lb"),
  27927. name: "Back",
  27928. image: {
  27929. source: "./media/characters/remmyzilla/back.svg",
  27930. extra: 2687 / 2555,
  27931. bottom: 48 / 2735
  27932. }
  27933. },
  27934. frontFancy: {
  27935. height: math.unit(6 + 4 / 12, "feet"),
  27936. weight: math.unit(250, "lb"),
  27937. name: "Front (Fancy)",
  27938. image: {
  27939. source: "./media/characters/remmyzilla/front-fancy.svg",
  27940. extra: 4119 / 3419,
  27941. bottom: 237 / 4356
  27942. }
  27943. },
  27944. paw: {
  27945. height: math.unit(1.73, "feet"),
  27946. name: "Paw",
  27947. image: {
  27948. source: "./media/characters/remmyzilla/paw.svg"
  27949. }
  27950. },
  27951. maw: {
  27952. height: math.unit(1.73, "feet"),
  27953. name: "Maw",
  27954. image: {
  27955. source: "./media/characters/remmyzilla/maw.svg"
  27956. }
  27957. },
  27958. },
  27959. [
  27960. {
  27961. name: "Normal",
  27962. height: math.unit(6 + 4 / 12, "feet")
  27963. },
  27964. {
  27965. name: "Minimacro",
  27966. height: math.unit(12 + 8 / 12, "feet")
  27967. },
  27968. {
  27969. name: "Normal",
  27970. height: math.unit(640, "feet"),
  27971. default: true
  27972. },
  27973. {
  27974. name: "Megamacro",
  27975. height: math.unit(6400, "feet")
  27976. },
  27977. {
  27978. name: "Gigamacro",
  27979. height: math.unit(64000, "miles")
  27980. },
  27981. ]
  27982. ))
  27983. characterMakers.push(() => makeCharacter(
  27984. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27985. {
  27986. front: {
  27987. height: math.unit(2.5, "meters"),
  27988. weight: math.unit(300, "lb"),
  27989. name: "Front",
  27990. image: {
  27991. source: "./media/characters/lawrence/front.svg",
  27992. extra: 357 / 335,
  27993. bottom: 30 / 387
  27994. }
  27995. },
  27996. back: {
  27997. height: math.unit(2.5, "meters"),
  27998. weight: math.unit(300, "lb"),
  27999. name: "Back",
  28000. image: {
  28001. source: "./media/characters/lawrence/back.svg",
  28002. extra: 357 / 338,
  28003. bottom: 16 / 373
  28004. }
  28005. },
  28006. head: {
  28007. height: math.unit(0.9, "meter"),
  28008. name: "Head",
  28009. image: {
  28010. source: "./media/characters/lawrence/head.svg"
  28011. }
  28012. },
  28013. maw: {
  28014. height: math.unit(0.7, "meter"),
  28015. name: "Maw",
  28016. image: {
  28017. source: "./media/characters/lawrence/maw.svg"
  28018. }
  28019. },
  28020. footBottom: {
  28021. height: math.unit(0.5, "meter"),
  28022. name: "Foot (Bottom)",
  28023. image: {
  28024. source: "./media/characters/lawrence/foot-bottom.svg"
  28025. }
  28026. },
  28027. footTop: {
  28028. height: math.unit(0.5, "meter"),
  28029. name: "Foot (Top)",
  28030. image: {
  28031. source: "./media/characters/lawrence/foot-top.svg"
  28032. }
  28033. },
  28034. },
  28035. [
  28036. {
  28037. name: "Normal",
  28038. height: math.unit(2.5, "meters"),
  28039. default: true
  28040. },
  28041. {
  28042. name: "Macro",
  28043. height: math.unit(95, "meters")
  28044. },
  28045. {
  28046. name: "Megamacro",
  28047. height: math.unit(150, "km")
  28048. },
  28049. ]
  28050. ))
  28051. characterMakers.push(() => makeCharacter(
  28052. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28053. {
  28054. front: {
  28055. height: math.unit(4.2, "meters"),
  28056. name: "Front",
  28057. image: {
  28058. source: "./media/characters/sydney/front.svg",
  28059. extra: 1323 / 1277,
  28060. bottom: 111 / 1434
  28061. }
  28062. },
  28063. },
  28064. [
  28065. {
  28066. name: "Normal",
  28067. height: math.unit(4.2, "meters"),
  28068. default: true
  28069. },
  28070. ]
  28071. ))
  28072. characterMakers.push(() => makeCharacter(
  28073. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28074. {
  28075. back: {
  28076. height: math.unit(201, "feet"),
  28077. name: "Back",
  28078. image: {
  28079. source: "./media/characters/jessica/back.svg",
  28080. extra: 273 / 259,
  28081. bottom: 7 / 280
  28082. }
  28083. },
  28084. },
  28085. [
  28086. {
  28087. name: "Normal",
  28088. height: math.unit(201, "feet"),
  28089. default: true
  28090. },
  28091. {
  28092. name: "Megamacro",
  28093. height: math.unit(8, "miles")
  28094. },
  28095. ]
  28096. ))
  28097. characterMakers.push(() => makeCharacter(
  28098. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28099. {
  28100. side: {
  28101. height: math.unit(320, "cm"),
  28102. name: "Side",
  28103. image: {
  28104. source: "./media/characters/victoria/side.svg",
  28105. extra: 778 / 346,
  28106. bottom: 56 / 834
  28107. }
  28108. },
  28109. maw: {
  28110. height: math.unit(5.9, "feet"),
  28111. name: "Maw",
  28112. image: {
  28113. source: "./media/characters/victoria/maw.svg"
  28114. }
  28115. },
  28116. },
  28117. [
  28118. {
  28119. name: "Normal",
  28120. height: math.unit(320, "cm"),
  28121. default: true
  28122. },
  28123. ]
  28124. ))
  28125. characterMakers.push(() => makeCharacter(
  28126. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28127. {
  28128. front: {
  28129. height: math.unit(5 + 6 / 12, "feet"),
  28130. name: "Front",
  28131. image: {
  28132. source: "./media/characters/cat/front.svg",
  28133. extra: 1374 / 1257,
  28134. bottom: 59 / 1433
  28135. }
  28136. },
  28137. back: {
  28138. height: math.unit(5 + 6 / 12, "feet"),
  28139. name: "Back",
  28140. image: {
  28141. source: "./media/characters/cat/back.svg",
  28142. extra: 1337 / 1226,
  28143. bottom: 34 / 1371
  28144. }
  28145. },
  28146. taur: {
  28147. height: math.unit(7, "feet"),
  28148. name: "Taur",
  28149. image: {
  28150. source: "./media/characters/cat/taur.svg",
  28151. extra: 1345 / 1231,
  28152. bottom: 66 / 1411
  28153. }
  28154. },
  28155. lucario: {
  28156. height: math.unit(4, "feet"),
  28157. name: "Lucario",
  28158. image: {
  28159. source: "./media/characters/cat/lucario.svg",
  28160. extra: 1470 / 1318,
  28161. bottom: 65 / 1535
  28162. }
  28163. },
  28164. megaLucario: {
  28165. height: math.unit(4, "feet"),
  28166. name: "Mega Lucario",
  28167. image: {
  28168. source: "./media/characters/cat/mega-lucario.svg",
  28169. extra: 1515 / 1319,
  28170. bottom: 63 / 1578
  28171. }
  28172. },
  28173. nickit: {
  28174. height: math.unit(2, "feet"),
  28175. name: "Nickit",
  28176. image: {
  28177. source: "./media/characters/cat/nickit.svg",
  28178. extra: 1980 / 1585,
  28179. bottom: 102 / 2082
  28180. }
  28181. },
  28182. lopunnyFront: {
  28183. height: math.unit(5, "feet"),
  28184. name: "Lopunny (Front)",
  28185. image: {
  28186. source: "./media/characters/cat/lopunny-front.svg",
  28187. extra: 1782 / 1469,
  28188. bottom: 38 / 1820
  28189. }
  28190. },
  28191. lopunnyBack: {
  28192. height: math.unit(5, "feet"),
  28193. name: "Lopunny (Back)",
  28194. image: {
  28195. source: "./media/characters/cat/lopunny-back.svg",
  28196. extra: 1660 / 1490,
  28197. bottom: 25 / 1685
  28198. }
  28199. },
  28200. },
  28201. [
  28202. {
  28203. name: "Really small",
  28204. height: math.unit(1, "nm")
  28205. },
  28206. {
  28207. name: "Micro",
  28208. height: math.unit(5, "inches")
  28209. },
  28210. {
  28211. name: "Normal",
  28212. height: math.unit(5 + 6 / 12, "feet"),
  28213. default: true
  28214. },
  28215. {
  28216. name: "Macro",
  28217. height: math.unit(50, "feet")
  28218. },
  28219. {
  28220. name: "Macro+",
  28221. height: math.unit(150, "feet")
  28222. },
  28223. {
  28224. name: "Megamacro",
  28225. height: math.unit(100, "miles")
  28226. },
  28227. ]
  28228. ))
  28229. characterMakers.push(() => makeCharacter(
  28230. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28231. {
  28232. front: {
  28233. height: math.unit(63.4, "meters"),
  28234. weight: math.unit(3.28349e+6, "kilograms"),
  28235. name: "Front",
  28236. image: {
  28237. source: "./media/characters/kirina-violet/front.svg",
  28238. extra: 2812 / 2725,
  28239. bottom: 0 / 2812
  28240. }
  28241. },
  28242. back: {
  28243. height: math.unit(63.4, "meters"),
  28244. weight: math.unit(3.28349e+6, "kilograms"),
  28245. name: "Back",
  28246. image: {
  28247. source: "./media/characters/kirina-violet/back.svg",
  28248. extra: 2812 / 2725,
  28249. bottom: 0 / 2812
  28250. }
  28251. },
  28252. mouth: {
  28253. height: math.unit(4.35, "meters"),
  28254. name: "Mouth",
  28255. image: {
  28256. source: "./media/characters/kirina-violet/mouth.svg"
  28257. }
  28258. },
  28259. paw: {
  28260. height: math.unit(5.6, "meters"),
  28261. name: "Paw",
  28262. image: {
  28263. source: "./media/characters/kirina-violet/paw.svg"
  28264. }
  28265. },
  28266. tail: {
  28267. height: math.unit(18, "meters"),
  28268. name: "Tail",
  28269. image: {
  28270. source: "./media/characters/kirina-violet/tail.svg"
  28271. }
  28272. },
  28273. },
  28274. [
  28275. {
  28276. name: "Macro",
  28277. height: math.unit(63.4, "meters"),
  28278. default: true
  28279. },
  28280. ]
  28281. ))
  28282. characterMakers.push(() => makeCharacter(
  28283. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28284. {
  28285. front: {
  28286. height: math.unit(60, "feet"),
  28287. name: "Front",
  28288. image: {
  28289. source: "./media/characters/cat-gigachu/front.svg",
  28290. extra: 1024 / 780,
  28291. bottom: 23 / 1047
  28292. }
  28293. },
  28294. back: {
  28295. height: math.unit(60, "feet"),
  28296. name: "Back",
  28297. image: {
  28298. source: "./media/characters/cat-gigachu/back.svg",
  28299. extra: 1024 / 780,
  28300. bottom: 23 / 1047
  28301. }
  28302. },
  28303. },
  28304. [
  28305. {
  28306. name: "Dynamax",
  28307. height: math.unit(60, "feet"),
  28308. default: true
  28309. },
  28310. ]
  28311. ))
  28312. characterMakers.push(() => makeCharacter(
  28313. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28314. {
  28315. front: {
  28316. height: math.unit(6, "feet"),
  28317. weight: math.unit(150, "lb"),
  28318. name: "Front",
  28319. image: {
  28320. source: "./media/characters/sfaiyan/front.svg",
  28321. extra: 999 / 978,
  28322. bottom: 5 / 1004
  28323. }
  28324. },
  28325. },
  28326. [
  28327. {
  28328. name: "Normal",
  28329. height: math.unit(1.82, "meters")
  28330. },
  28331. {
  28332. name: "Giant",
  28333. height: math.unit(2.27, "km"),
  28334. default: true
  28335. },
  28336. ]
  28337. ))
  28338. characterMakers.push(() => makeCharacter(
  28339. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28340. {
  28341. front: {
  28342. height: math.unit(179, "cm"),
  28343. weight: math.unit(100, "kg"),
  28344. name: "Front",
  28345. image: {
  28346. source: "./media/characters/raunehkeli/front.svg",
  28347. extra: 1934 / 1926,
  28348. bottom: 0 / 1934
  28349. }
  28350. },
  28351. },
  28352. [
  28353. {
  28354. name: "Normal",
  28355. height: math.unit(179, "cm")
  28356. },
  28357. {
  28358. name: "Maximum",
  28359. height: math.unit(575, "meters"),
  28360. default: true
  28361. },
  28362. ]
  28363. ))
  28364. characterMakers.push(() => makeCharacter(
  28365. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28366. {
  28367. front: {
  28368. height: math.unit(6, "feet"),
  28369. weight: math.unit(150, "lb"),
  28370. name: "Front",
  28371. image: {
  28372. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28373. extra: 2625 / 2518,
  28374. bottom: 60 / 2685
  28375. }
  28376. },
  28377. },
  28378. [
  28379. {
  28380. name: "Normal",
  28381. height: math.unit(6 + 2 / 12, "feet")
  28382. },
  28383. {
  28384. name: "Macro",
  28385. height: math.unit(1180, "feet"),
  28386. default: true
  28387. },
  28388. ]
  28389. ))
  28390. characterMakers.push(() => makeCharacter(
  28391. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28392. {
  28393. front: {
  28394. height: math.unit(5 + 6 / 12, "feet"),
  28395. weight: math.unit(108, "lb"),
  28396. name: "Front",
  28397. image: {
  28398. source: "./media/characters/lilith-zott/front.svg",
  28399. extra: 2510 / 2238,
  28400. bottom: 100 / 2610
  28401. }
  28402. },
  28403. frontDressed: {
  28404. height: math.unit(5 + 6 / 12, "feet"),
  28405. weight: math.unit(108, "lb"),
  28406. name: "Front (Dressed)",
  28407. image: {
  28408. source: "./media/characters/lilith-zott/front-dressed.svg",
  28409. extra: 2510 / 2238,
  28410. bottom: 100 / 2610
  28411. }
  28412. },
  28413. },
  28414. [
  28415. {
  28416. name: "Normal",
  28417. height: math.unit(5 + 6 / 12, "feet")
  28418. },
  28419. {
  28420. name: "Macro",
  28421. height: math.unit(1030, "feet"),
  28422. default: true
  28423. },
  28424. ]
  28425. ))
  28426. characterMakers.push(() => makeCharacter(
  28427. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28428. {
  28429. front: {
  28430. height: math.unit(6, "feet"),
  28431. weight: math.unit(150, "lb"),
  28432. name: "Front",
  28433. image: {
  28434. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28435. extra: 2567 / 2435,
  28436. bottom: 39 / 2606
  28437. }
  28438. },
  28439. frontSuper: {
  28440. height: math.unit(6, "feet"),
  28441. name: "Front (Super)",
  28442. image: {
  28443. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28444. extra: 2567 / 2435,
  28445. bottom: 39 / 2606
  28446. }
  28447. },
  28448. },
  28449. [
  28450. {
  28451. name: "Normal",
  28452. height: math.unit(5 + 10 / 12, "feet")
  28453. },
  28454. {
  28455. name: "Macro",
  28456. height: math.unit(1100, "feet"),
  28457. default: true
  28458. },
  28459. ]
  28460. ))
  28461. characterMakers.push(() => makeCharacter(
  28462. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28463. {
  28464. front: {
  28465. height: math.unit(100, "miles"),
  28466. name: "Front",
  28467. image: {
  28468. source: "./media/characters/sona/front.svg",
  28469. extra: 2433 / 2201,
  28470. bottom: 53 / 2486
  28471. }
  28472. },
  28473. foot: {
  28474. height: math.unit(16.1, "miles"),
  28475. name: "Foot",
  28476. image: {
  28477. source: "./media/characters/sona/foot.svg"
  28478. }
  28479. },
  28480. },
  28481. [
  28482. {
  28483. name: "Macro",
  28484. height: math.unit(100, "miles"),
  28485. default: true
  28486. },
  28487. ]
  28488. ))
  28489. characterMakers.push(() => makeCharacter(
  28490. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28491. {
  28492. front: {
  28493. height: math.unit(6, "feet"),
  28494. weight: math.unit(150, "lb"),
  28495. name: "Front",
  28496. image: {
  28497. source: "./media/characters/bailey/front.svg",
  28498. extra: 1778 / 1724,
  28499. bottom: 30 / 1808
  28500. }
  28501. },
  28502. },
  28503. [
  28504. {
  28505. name: "Micro",
  28506. height: math.unit(4, "inches")
  28507. },
  28508. {
  28509. name: "Normal",
  28510. height: math.unit(5 + 5 / 12, "feet"),
  28511. default: true
  28512. },
  28513. {
  28514. name: "Macro",
  28515. height: math.unit(250, "feet")
  28516. },
  28517. {
  28518. name: "Megamacro",
  28519. height: math.unit(100, "miles")
  28520. },
  28521. ]
  28522. ))
  28523. characterMakers.push(() => makeCharacter(
  28524. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28525. {
  28526. front: {
  28527. height: math.unit(5 + 2 / 12, "feet"),
  28528. weight: math.unit(120, "lb"),
  28529. name: "Front",
  28530. image: {
  28531. source: "./media/characters/snaps/front.svg",
  28532. extra: 2370 / 2177,
  28533. bottom: 48 / 2418
  28534. }
  28535. },
  28536. back: {
  28537. height: math.unit(5 + 2 / 12, "feet"),
  28538. weight: math.unit(120, "lb"),
  28539. name: "Back",
  28540. image: {
  28541. source: "./media/characters/snaps/back.svg",
  28542. extra: 2408 / 2258,
  28543. bottom: 15 / 2423
  28544. }
  28545. },
  28546. },
  28547. [
  28548. {
  28549. name: "Micro",
  28550. height: math.unit(9, "inches")
  28551. },
  28552. {
  28553. name: "Normal",
  28554. height: math.unit(5 + 2 / 12, "feet"),
  28555. default: true
  28556. },
  28557. {
  28558. name: "Mini Macro",
  28559. height: math.unit(10, "feet")
  28560. },
  28561. ]
  28562. ))
  28563. characterMakers.push(() => makeCharacter(
  28564. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28565. {
  28566. front: {
  28567. height: math.unit(1.8, "meters"),
  28568. weight: math.unit(85, "kg"),
  28569. name: "Front",
  28570. image: {
  28571. source: "./media/characters/azteck/front.svg",
  28572. extra: 2815 / 2625,
  28573. bottom: 89 / 2904
  28574. }
  28575. },
  28576. back: {
  28577. height: math.unit(1.8, "meters"),
  28578. weight: math.unit(85, "kg"),
  28579. name: "Back",
  28580. image: {
  28581. source: "./media/characters/azteck/back.svg",
  28582. extra: 2856 / 2648,
  28583. bottom: 85 / 2941
  28584. }
  28585. },
  28586. frontDressed: {
  28587. height: math.unit(1.8, "meters"),
  28588. weight: math.unit(85, "kg"),
  28589. name: "Front (Dressed)",
  28590. image: {
  28591. source: "./media/characters/azteck/front-dressed.svg",
  28592. extra: 2147 / 2003,
  28593. bottom: 68 / 2215
  28594. }
  28595. },
  28596. head: {
  28597. height: math.unit(0.47, "meters"),
  28598. weight: math.unit(85, "kg"),
  28599. name: "Head",
  28600. image: {
  28601. source: "./media/characters/azteck/head.svg"
  28602. }
  28603. },
  28604. },
  28605. [
  28606. {
  28607. name: "Bite sized",
  28608. height: math.unit(16, "cm")
  28609. },
  28610. {
  28611. name: "Normal",
  28612. height: math.unit(1.8, "meters"),
  28613. default: true
  28614. },
  28615. ]
  28616. ))
  28617. characterMakers.push(() => makeCharacter(
  28618. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28619. {
  28620. front: {
  28621. height: math.unit(6, "feet"),
  28622. weight: math.unit(150, "lb"),
  28623. name: "Front",
  28624. image: {
  28625. source: "./media/characters/pidge/front.svg",
  28626. extra: 620 / 588,
  28627. bottom: 9 / 629
  28628. }
  28629. },
  28630. back: {
  28631. height: math.unit(6, "feet"),
  28632. weight: math.unit(150, "lb"),
  28633. name: "Back",
  28634. image: {
  28635. source: "./media/characters/pidge/back.svg",
  28636. extra: 620 / 588,
  28637. bottom: 9 / 629
  28638. }
  28639. },
  28640. },
  28641. [
  28642. {
  28643. name: "Macro",
  28644. height: math.unit(1, "mile"),
  28645. default: true
  28646. },
  28647. ]
  28648. ))
  28649. characterMakers.push(() => makeCharacter(
  28650. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28651. {
  28652. front: {
  28653. height: math.unit(6, "feet"),
  28654. weight: math.unit(150, "lb"),
  28655. name: "Front",
  28656. image: {
  28657. source: "./media/characters/en/front.svg",
  28658. extra: 1697 / 1563,
  28659. bottom: 103 / 1800
  28660. }
  28661. },
  28662. back: {
  28663. height: math.unit(6, "feet"),
  28664. weight: math.unit(150, "lb"),
  28665. name: "Back",
  28666. image: {
  28667. source: "./media/characters/en/back.svg",
  28668. extra: 1700 / 1570,
  28669. bottom: 51 / 1751
  28670. }
  28671. },
  28672. frontDressed: {
  28673. height: math.unit(6, "feet"),
  28674. weight: math.unit(150, "lb"),
  28675. name: "Front (Dressed)",
  28676. image: {
  28677. source: "./media/characters/en/front-dressed.svg",
  28678. extra: 1697 / 1563,
  28679. bottom: 103 / 1800
  28680. }
  28681. },
  28682. backDressed: {
  28683. height: math.unit(6, "feet"),
  28684. weight: math.unit(150, "lb"),
  28685. name: "Back (Dressed)",
  28686. image: {
  28687. source: "./media/characters/en/back-dressed.svg",
  28688. extra: 1700 / 1570,
  28689. bottom: 51 / 1751
  28690. }
  28691. },
  28692. },
  28693. [
  28694. {
  28695. name: "Macro",
  28696. height: math.unit(210, "feet"),
  28697. default: true
  28698. },
  28699. ]
  28700. ))
  28701. characterMakers.push(() => makeCharacter(
  28702. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28703. {
  28704. front: {
  28705. height: math.unit(6, "feet"),
  28706. weight: math.unit(150, "lb"),
  28707. name: "Front",
  28708. image: {
  28709. source: "./media/characters/haze-orris/front.svg",
  28710. extra: 3975 / 3525,
  28711. bottom: 137 / 4112
  28712. }
  28713. },
  28714. },
  28715. [
  28716. {
  28717. name: "Micro",
  28718. height: math.unit(150, "mm"),
  28719. default: true
  28720. },
  28721. ]
  28722. ))
  28723. characterMakers.push(() => makeCharacter(
  28724. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28725. {
  28726. front: {
  28727. height: math.unit(6, "feet"),
  28728. weight: math.unit(150, "lb"),
  28729. name: "Front",
  28730. image: {
  28731. source: "./media/characters/casselene-yaro/front.svg",
  28732. extra: 4721 / 4541,
  28733. bottom: 82 / 4803
  28734. }
  28735. },
  28736. back: {
  28737. height: math.unit(6, "feet"),
  28738. weight: math.unit(150, "lb"),
  28739. name: "Back",
  28740. image: {
  28741. source: "./media/characters/casselene-yaro/back.svg",
  28742. extra: 4569 / 4377,
  28743. bottom: 69 / 4638
  28744. }
  28745. },
  28746. frontDressed: {
  28747. height: math.unit(6, "feet"),
  28748. weight: math.unit(150, "lb"),
  28749. name: "Front-dressed",
  28750. image: {
  28751. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28752. extra: 4721 / 4541,
  28753. bottom: 82 / 4803
  28754. }
  28755. },
  28756. },
  28757. [
  28758. {
  28759. name: "Macro",
  28760. height: math.unit(190, "feet"),
  28761. default: true
  28762. },
  28763. ]
  28764. ))
  28765. characterMakers.push(() => makeCharacter(
  28766. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28767. {
  28768. front: {
  28769. height: math.unit(6, "feet"),
  28770. weight: math.unit(150, "lb"),
  28771. name: "Front",
  28772. image: {
  28773. source: "./media/characters/myra-rue-delore/front.svg",
  28774. extra: 1340 / 1308,
  28775. bottom: 67 / 1407
  28776. }
  28777. },
  28778. back: {
  28779. height: math.unit(6, "feet"),
  28780. weight: math.unit(150, "lb"),
  28781. name: "Back",
  28782. image: {
  28783. source: "./media/characters/myra-rue-delore/back.svg",
  28784. extra: 1341 / 1310,
  28785. bottom: 40 / 1381
  28786. }
  28787. },
  28788. frontDressed: {
  28789. height: math.unit(6, "feet"),
  28790. weight: math.unit(150, "lb"),
  28791. name: "Front (Dressed)",
  28792. image: {
  28793. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28794. extra: 1340 / 1308,
  28795. bottom: 67 / 1407
  28796. }
  28797. },
  28798. },
  28799. [
  28800. {
  28801. name: "Macro",
  28802. height: math.unit(150, "feet"),
  28803. default: true
  28804. },
  28805. ]
  28806. ))
  28807. characterMakers.push(() => makeCharacter(
  28808. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28809. {
  28810. front: {
  28811. height: math.unit(10, "feet"),
  28812. weight: math.unit(15015, "lb"),
  28813. name: "Front",
  28814. image: {
  28815. source: "./media/characters/fem!plat/front.svg",
  28816. extra: 2799 / 2604,
  28817. bottom: 149 / 2948
  28818. }
  28819. },
  28820. },
  28821. [
  28822. {
  28823. name: "Normal",
  28824. height: math.unit(10, "feet"),
  28825. default: true
  28826. },
  28827. {
  28828. name: "Macro",
  28829. height: math.unit(100, "feet")
  28830. },
  28831. {
  28832. name: "Megamacro",
  28833. height: math.unit(1000, "feet")
  28834. },
  28835. ]
  28836. ))
  28837. characterMakers.push(() => makeCharacter(
  28838. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28839. {
  28840. front: {
  28841. height: math.unit(15 + 5 / 12, "feet"),
  28842. weight: math.unit(4600, "lb"),
  28843. name: "Front",
  28844. image: {
  28845. source: "./media/characters/neapolitan-ananassa/front.svg",
  28846. extra: 2903 / 2736,
  28847. bottom: 0 / 2903
  28848. }
  28849. },
  28850. side: {
  28851. height: math.unit(15 + 5 / 12, "feet"),
  28852. weight: math.unit(4600, "lb"),
  28853. name: "Side",
  28854. image: {
  28855. source: "./media/characters/neapolitan-ananassa/side.svg",
  28856. extra: 2925 / 2719,
  28857. bottom: 0 / 2925
  28858. }
  28859. },
  28860. back: {
  28861. height: math.unit(15 + 5 / 12, "feet"),
  28862. weight: math.unit(4600, "lb"),
  28863. name: "Back",
  28864. image: {
  28865. source: "./media/characters/neapolitan-ananassa/back.svg",
  28866. extra: 2903 / 2736,
  28867. bottom: 0 / 2903
  28868. }
  28869. },
  28870. },
  28871. [
  28872. {
  28873. name: "Normal",
  28874. height: math.unit(15 + 5 / 12, "feet"),
  28875. default: true
  28876. },
  28877. {
  28878. name: "Post-Millenium",
  28879. height: math.unit(35 + 5 / 12, "feet")
  28880. },
  28881. {
  28882. name: "Post-Era",
  28883. height: math.unit(450 + 5 / 12, "feet")
  28884. },
  28885. ]
  28886. ))
  28887. characterMakers.push(() => makeCharacter(
  28888. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28889. {
  28890. front: {
  28891. height: math.unit(300, "meters"),
  28892. weight: math.unit(125000, "tonnes"),
  28893. name: "Front",
  28894. image: {
  28895. source: "./media/characters/pazuzu/front.svg",
  28896. extra: 877 / 794,
  28897. bottom: 47 / 924
  28898. }
  28899. },
  28900. },
  28901. [
  28902. {
  28903. name: "Macro",
  28904. height: math.unit(300, "meters"),
  28905. default: true
  28906. },
  28907. ]
  28908. ))
  28909. characterMakers.push(() => makeCharacter(
  28910. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28911. {
  28912. side: {
  28913. height: math.unit(10 + 7 / 12, "feet"),
  28914. weight: math.unit(2.5, "tons"),
  28915. name: "Side",
  28916. image: {
  28917. source: "./media/characters/aasha/side.svg",
  28918. extra: 1345 / 1245,
  28919. bottom: 111 / 1456
  28920. }
  28921. },
  28922. back: {
  28923. height: math.unit(10 + 7 / 12, "feet"),
  28924. weight: math.unit(2.5, "tons"),
  28925. name: "Back",
  28926. image: {
  28927. source: "./media/characters/aasha/back.svg",
  28928. extra: 1133 / 1057,
  28929. bottom: 257 / 1390
  28930. }
  28931. },
  28932. },
  28933. [
  28934. {
  28935. name: "Normal",
  28936. height: math.unit(10 + 7 / 12, "feet"),
  28937. default: true
  28938. },
  28939. ]
  28940. ))
  28941. characterMakers.push(() => makeCharacter(
  28942. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28943. {
  28944. front: {
  28945. height: math.unit(6 + 3 / 12, "feet"),
  28946. name: "Front",
  28947. image: {
  28948. source: "./media/characters/nevan/front.svg",
  28949. extra: 704 / 704,
  28950. bottom: 28 / 732
  28951. }
  28952. },
  28953. back: {
  28954. height: math.unit(6 + 3 / 12, "feet"),
  28955. name: "Back",
  28956. image: {
  28957. source: "./media/characters/nevan/back.svg",
  28958. extra: 714 / 714,
  28959. bottom: 21 / 735
  28960. }
  28961. },
  28962. frontFlaccid: {
  28963. height: math.unit(6 + 3 / 12, "feet"),
  28964. name: "Front (Flaccid)",
  28965. image: {
  28966. source: "./media/characters/nevan/front-flaccid.svg",
  28967. extra: 704 / 704,
  28968. bottom: 28 / 732
  28969. }
  28970. },
  28971. frontErect: {
  28972. height: math.unit(6 + 3 / 12, "feet"),
  28973. name: "Front (Erect)",
  28974. image: {
  28975. source: "./media/characters/nevan/front-erect.svg",
  28976. extra: 704 / 704,
  28977. bottom: 28 / 732
  28978. }
  28979. },
  28980. backFlaccid: {
  28981. height: math.unit(6 + 3 / 12, "feet"),
  28982. name: "Back (Flaccid)",
  28983. image: {
  28984. source: "./media/characters/nevan/back-flaccid.svg",
  28985. extra: 714 / 714,
  28986. bottom: 21 / 735
  28987. }
  28988. },
  28989. },
  28990. [
  28991. {
  28992. name: "Normal",
  28993. height: math.unit(6 + 3 / 12, "feet"),
  28994. default: true
  28995. },
  28996. ]
  28997. ))
  28998. characterMakers.push(() => makeCharacter(
  28999. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29000. {
  29001. front: {
  29002. height: math.unit(4, "feet"),
  29003. name: "Front",
  29004. image: {
  29005. source: "./media/characters/arhan/front.svg",
  29006. extra: 3368 / 3133,
  29007. bottom: 0 / 3368
  29008. }
  29009. },
  29010. side: {
  29011. height: math.unit(4, "feet"),
  29012. name: "Side",
  29013. image: {
  29014. source: "./media/characters/arhan/side.svg",
  29015. extra: 3347 / 3105,
  29016. bottom: 0 / 3347
  29017. }
  29018. },
  29019. tongue: {
  29020. height: math.unit(1.42, "feet"),
  29021. name: "Tongue",
  29022. image: {
  29023. source: "./media/characters/arhan/tongue.svg"
  29024. }
  29025. },
  29026. head: {
  29027. height: math.unit(0.85, "feet"),
  29028. name: "Head",
  29029. image: {
  29030. source: "./media/characters/arhan/head.svg"
  29031. }
  29032. },
  29033. },
  29034. [
  29035. {
  29036. name: "Normal",
  29037. height: math.unit(4, "feet"),
  29038. default: true
  29039. },
  29040. ]
  29041. ))
  29042. characterMakers.push(() => makeCharacter(
  29043. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29044. {
  29045. front: {
  29046. height: math.unit(5 + 7.5 / 12, "feet"),
  29047. weight: math.unit(120, "lb"),
  29048. name: "Front",
  29049. image: {
  29050. source: "./media/characters/digi-duncan/front.svg",
  29051. extra: 330 / 326,
  29052. bottom: 16 / 346
  29053. }
  29054. },
  29055. side: {
  29056. height: math.unit(5 + 7.5 / 12, "feet"),
  29057. weight: math.unit(120, "lb"),
  29058. name: "Side",
  29059. image: {
  29060. source: "./media/characters/digi-duncan/side.svg",
  29061. extra: 341 / 337,
  29062. bottom: 1 / 342
  29063. }
  29064. },
  29065. back: {
  29066. height: math.unit(5 + 7.5 / 12, "feet"),
  29067. weight: math.unit(120, "lb"),
  29068. name: "Back",
  29069. image: {
  29070. source: "./media/characters/digi-duncan/back.svg",
  29071. extra: 330 / 326,
  29072. bottom: 12 / 342
  29073. }
  29074. },
  29075. },
  29076. [
  29077. {
  29078. name: "Speck",
  29079. height: math.unit(0.25, "mm")
  29080. },
  29081. {
  29082. name: "Micro",
  29083. height: math.unit(5, "mm")
  29084. },
  29085. {
  29086. name: "Tiny",
  29087. height: math.unit(0.5, "inches"),
  29088. default: true
  29089. },
  29090. {
  29091. name: "Human",
  29092. height: math.unit(5 + 7.5 / 12, "feet")
  29093. },
  29094. {
  29095. name: "Minigiant",
  29096. height: math.unit(8 + 5.25, "feet")
  29097. },
  29098. {
  29099. name: "Giant",
  29100. height: math.unit(2000, "feet")
  29101. },
  29102. {
  29103. name: "Mega",
  29104. height: math.unit(371.1, "miles")
  29105. },
  29106. ]
  29107. ))
  29108. characterMakers.push(() => makeCharacter(
  29109. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29110. {
  29111. front: {
  29112. height: math.unit(2, "meters"),
  29113. weight: math.unit(350, "kg"),
  29114. name: "Front",
  29115. image: {
  29116. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29117. extra: 898 / 838,
  29118. bottom: 9 / 907
  29119. }
  29120. },
  29121. },
  29122. [
  29123. {
  29124. name: "Micro",
  29125. height: math.unit(8, "meters")
  29126. },
  29127. {
  29128. name: "Normal",
  29129. height: math.unit(50, "meters"),
  29130. default: true
  29131. },
  29132. {
  29133. name: "Macro",
  29134. height: math.unit(500, "meters")
  29135. },
  29136. ]
  29137. ))
  29138. characterMakers.push(() => makeCharacter(
  29139. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29140. {
  29141. front: {
  29142. height: math.unit(6 + 6 / 12, "feet"),
  29143. name: "Front",
  29144. image: {
  29145. source: "./media/characters/khardesh/front.svg",
  29146. extra: 888 / 797,
  29147. bottom: 25 / 913
  29148. }
  29149. },
  29150. },
  29151. [
  29152. {
  29153. name: "Normal",
  29154. height: math.unit(6 + 6 / 12, "feet"),
  29155. default: true
  29156. },
  29157. {
  29158. name: "Normal+",
  29159. height: math.unit(4, "meters")
  29160. },
  29161. {
  29162. name: "Macro",
  29163. height: math.unit(50, "meters")
  29164. },
  29165. {
  29166. name: "Macro+",
  29167. height: math.unit(100, "meters")
  29168. },
  29169. {
  29170. name: "Megamacro",
  29171. height: math.unit(20, "km")
  29172. },
  29173. ]
  29174. ))
  29175. characterMakers.push(() => makeCharacter(
  29176. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29177. {
  29178. front: {
  29179. height: math.unit(6, "feet"),
  29180. weight: math.unit(150, "lb"),
  29181. name: "Front",
  29182. image: {
  29183. source: "./media/characters/kosho/front.svg",
  29184. extra: 1847 / 1847,
  29185. bottom: 86 / 1933
  29186. }
  29187. },
  29188. },
  29189. [
  29190. {
  29191. name: "Second-stage micro",
  29192. height: math.unit(0.5, "inches")
  29193. },
  29194. {
  29195. name: "First-stage micro",
  29196. height: math.unit(6, "inches")
  29197. },
  29198. {
  29199. name: "Normal",
  29200. height: math.unit(6, "feet"),
  29201. default: true
  29202. },
  29203. {
  29204. name: "First-stage macro",
  29205. height: math.unit(72, "feet")
  29206. },
  29207. {
  29208. name: "Second-stage macro",
  29209. height: math.unit(864, "feet")
  29210. },
  29211. ]
  29212. ))
  29213. characterMakers.push(() => makeCharacter(
  29214. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29215. {
  29216. normal: {
  29217. height: math.unit(4 + 6 / 12, "feet"),
  29218. name: "Normal",
  29219. image: {
  29220. source: "./media/characters/hydra/normal.svg",
  29221. extra: 2833 / 2634,
  29222. bottom: 68 / 2901
  29223. }
  29224. },
  29225. smol: {
  29226. height: math.unit(0.705, "inches"),
  29227. name: "Smol",
  29228. image: {
  29229. source: "./media/characters/hydra/smol.svg",
  29230. extra: 2715 / 2540,
  29231. bottom: 0 / 2715
  29232. }
  29233. },
  29234. },
  29235. [
  29236. {
  29237. name: "Normal",
  29238. height: math.unit(4 + 6 / 12, "feet"),
  29239. default: true
  29240. }
  29241. ]
  29242. ))
  29243. characterMakers.push(() => makeCharacter(
  29244. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29245. {
  29246. front: {
  29247. height: math.unit(0.6, "cm"),
  29248. name: "Front",
  29249. image: {
  29250. source: "./media/characters/daz/front.svg",
  29251. extra: 1682 / 1164,
  29252. bottom: 42 / 1724
  29253. }
  29254. },
  29255. },
  29256. [
  29257. {
  29258. name: "Normal",
  29259. height: math.unit(0.6, "cm"),
  29260. default: true
  29261. },
  29262. ]
  29263. ))
  29264. characterMakers.push(() => makeCharacter(
  29265. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29266. {
  29267. front: {
  29268. height: math.unit(6, "feet"),
  29269. weight: math.unit(235, "lb"),
  29270. name: "Front",
  29271. image: {
  29272. source: "./media/characters/theo-pangolin/front.svg",
  29273. extra: 1996 / 1969,
  29274. bottom: 115 / 2111
  29275. }
  29276. },
  29277. back: {
  29278. height: math.unit(6, "feet"),
  29279. weight: math.unit(235, "lb"),
  29280. name: "Back",
  29281. image: {
  29282. source: "./media/characters/theo-pangolin/back.svg",
  29283. extra: 1979 / 1979,
  29284. bottom: 40 / 2019
  29285. }
  29286. },
  29287. feral: {
  29288. height: math.unit(2, "feet"),
  29289. weight: math.unit(30, "lb"),
  29290. name: "Feral",
  29291. image: {
  29292. source: "./media/characters/theo-pangolin/feral.svg",
  29293. extra: 803 / 791,
  29294. bottom: 181 / 984
  29295. }
  29296. },
  29297. footFive: {
  29298. height: math.unit(1.43, "feet"),
  29299. name: "Foot (Five Toes)",
  29300. image: {
  29301. source: "./media/characters/theo-pangolin/foot-five.svg"
  29302. }
  29303. },
  29304. footFour: {
  29305. height: math.unit(1.43, "feet"),
  29306. name: "Foot (Four Toes)",
  29307. image: {
  29308. source: "./media/characters/theo-pangolin/foot-four.svg"
  29309. }
  29310. },
  29311. handFour: {
  29312. height: math.unit(0.81, "feet"),
  29313. name: "Hand (Four Fingers)",
  29314. image: {
  29315. source: "./media/characters/theo-pangolin/hand-four.svg"
  29316. }
  29317. },
  29318. handThree: {
  29319. height: math.unit(0.81, "feet"),
  29320. name: "Hand (Three Fingers)",
  29321. image: {
  29322. source: "./media/characters/theo-pangolin/hand-three.svg"
  29323. }
  29324. },
  29325. headFront: {
  29326. height: math.unit(1.37, "feet"),
  29327. name: "Head (Front)",
  29328. image: {
  29329. source: "./media/characters/theo-pangolin/head-front.svg"
  29330. }
  29331. },
  29332. headSide: {
  29333. height: math.unit(1.43, "feet"),
  29334. name: "Head (Side)",
  29335. image: {
  29336. source: "./media/characters/theo-pangolin/head-side.svg"
  29337. }
  29338. },
  29339. tongue: {
  29340. height: math.unit(2.29, "feet"),
  29341. name: "Tongue",
  29342. image: {
  29343. source: "./media/characters/theo-pangolin/tongue.svg"
  29344. }
  29345. },
  29346. },
  29347. [
  29348. {
  29349. name: "Normal",
  29350. height: math.unit(6, "feet")
  29351. },
  29352. {
  29353. name: "Macro",
  29354. height: math.unit(400, "feet"),
  29355. default: true
  29356. },
  29357. ]
  29358. ))
  29359. characterMakers.push(() => makeCharacter(
  29360. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29361. {
  29362. front: {
  29363. height: math.unit(6, "inches"),
  29364. weight: math.unit(0.036, "kg"),
  29365. name: "Front",
  29366. image: {
  29367. source: "./media/characters/renée/front.svg",
  29368. extra: 900 / 886,
  29369. bottom: 8 / 908
  29370. }
  29371. },
  29372. },
  29373. [
  29374. {
  29375. name: "Nano",
  29376. height: math.unit(1, "nm")
  29377. },
  29378. {
  29379. name: "Micro",
  29380. height: math.unit(1, "mm")
  29381. },
  29382. {
  29383. name: "Normal",
  29384. height: math.unit(6, "inches")
  29385. },
  29386. {
  29387. name: "Macro",
  29388. height: math.unit(2000, "feet"),
  29389. default: true
  29390. },
  29391. {
  29392. name: "Megamacro",
  29393. height: math.unit(2, "km")
  29394. },
  29395. {
  29396. name: "Gigamacro",
  29397. height: math.unit(2000, "km")
  29398. },
  29399. {
  29400. name: "Teramacro",
  29401. height: math.unit(250000, "km")
  29402. },
  29403. ]
  29404. ))
  29405. characterMakers.push(() => makeCharacter(
  29406. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29407. {
  29408. front: {
  29409. height: math.unit(4, "meters"),
  29410. weight: math.unit(150, "kg"),
  29411. name: "Front",
  29412. image: {
  29413. source: "./media/characters/caledvwlch/front.svg",
  29414. extra: 1760 / 1551,
  29415. bottom: 28 / 1788
  29416. }
  29417. },
  29418. side: {
  29419. height: math.unit(4, "meters"),
  29420. weight: math.unit(150, "kg"),
  29421. name: "Side",
  29422. image: {
  29423. source: "./media/characters/caledvwlch/side.svg",
  29424. extra: 1605 / 1536,
  29425. bottom: 31 / 1636
  29426. }
  29427. },
  29428. back: {
  29429. height: math.unit(4, "meters"),
  29430. weight: math.unit(150, "kg"),
  29431. name: "Back",
  29432. image: {
  29433. source: "./media/characters/caledvwlch/back.svg",
  29434. extra: 1635 / 1565,
  29435. bottom: 27 / 1662
  29436. }
  29437. },
  29438. },
  29439. [
  29440. {
  29441. name: "\"Incognito\"",
  29442. height: math.unit(4, "meters")
  29443. },
  29444. {
  29445. name: "Small rampage",
  29446. height: math.unit(600, "meters")
  29447. },
  29448. {
  29449. name: "Mega",
  29450. height: math.unit(30, "km")
  29451. },
  29452. {
  29453. name: "Home-size",
  29454. height: math.unit(50, "km"),
  29455. default: true
  29456. },
  29457. {
  29458. name: "Giga",
  29459. height: math.unit(300, "km")
  29460. },
  29461. {
  29462. name: "Lounging",
  29463. height: math.unit(11000, "km")
  29464. },
  29465. {
  29466. name: "Planet snacking",
  29467. height: math.unit(2000000, "km")
  29468. },
  29469. ]
  29470. ))
  29471. characterMakers.push(() => makeCharacter(
  29472. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29473. {
  29474. front: {
  29475. height: math.unit(6, "feet"),
  29476. weight: math.unit(215, "lb"),
  29477. name: "Front",
  29478. image: {
  29479. source: "./media/characters/sapphire-svell/front.svg",
  29480. extra: 495 / 455,
  29481. bottom: 20 / 515
  29482. }
  29483. },
  29484. back: {
  29485. height: math.unit(6, "feet"),
  29486. weight: math.unit(216, "lb"),
  29487. name: "Back",
  29488. image: {
  29489. source: "./media/characters/sapphire-svell/back.svg",
  29490. extra: 497 / 477,
  29491. bottom: 7 / 504
  29492. }
  29493. },
  29494. maw: {
  29495. height: math.unit(1.57, "feet"),
  29496. name: "Maw",
  29497. image: {
  29498. source: "./media/characters/sapphire-svell/maw.svg"
  29499. }
  29500. },
  29501. foot: {
  29502. height: math.unit(1.07, "feet"),
  29503. name: "Foot",
  29504. image: {
  29505. source: "./media/characters/sapphire-svell/foot.svg"
  29506. }
  29507. },
  29508. toering: {
  29509. height: math.unit(1.7, "inch"),
  29510. name: "Toering",
  29511. image: {
  29512. source: "./media/characters/sapphire-svell/toering.svg"
  29513. }
  29514. },
  29515. },
  29516. [
  29517. {
  29518. name: "Normal",
  29519. height: math.unit(300, "feet"),
  29520. default: true
  29521. },
  29522. {
  29523. name: "Augmented",
  29524. height: math.unit(1250, "feet")
  29525. },
  29526. {
  29527. name: "Unleashed",
  29528. height: math.unit(3000, "feet")
  29529. },
  29530. ]
  29531. ))
  29532. characterMakers.push(() => makeCharacter(
  29533. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29534. {
  29535. side: {
  29536. height: math.unit(2 + 3 / 12, "feet"),
  29537. weight: math.unit(110, "lb"),
  29538. name: "Side",
  29539. image: {
  29540. source: "./media/characters/glitch-flux/side.svg",
  29541. extra: 997 / 805,
  29542. bottom: 20 / 1017
  29543. }
  29544. },
  29545. },
  29546. [
  29547. {
  29548. name: "Normal",
  29549. height: math.unit(2 + 3 / 12, "feet"),
  29550. default: true
  29551. },
  29552. ]
  29553. ))
  29554. characterMakers.push(() => makeCharacter(
  29555. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29556. {
  29557. front: {
  29558. height: math.unit(4, "meters"),
  29559. name: "Front",
  29560. image: {
  29561. source: "./media/characters/mid/front.svg",
  29562. extra: 507 / 476,
  29563. bottom: 17 / 524
  29564. }
  29565. },
  29566. back: {
  29567. height: math.unit(4, "meters"),
  29568. name: "Back",
  29569. image: {
  29570. source: "./media/characters/mid/back.svg",
  29571. extra: 519 / 487,
  29572. bottom: 7 / 526
  29573. }
  29574. },
  29575. stuck: {
  29576. height: math.unit(2.2, "meters"),
  29577. name: "Stuck",
  29578. image: {
  29579. source: "./media/characters/mid/stuck.svg",
  29580. extra: 1951 / 1869,
  29581. bottom: 88 / 2039
  29582. }
  29583. }
  29584. },
  29585. [
  29586. {
  29587. name: "Normal",
  29588. height: math.unit(4, "meters"),
  29589. default: true
  29590. },
  29591. {
  29592. name: "Big",
  29593. height: math.unit(10, "meters")
  29594. },
  29595. {
  29596. name: "Macro",
  29597. height: math.unit(800, "meters")
  29598. },
  29599. {
  29600. name: "Megamacro",
  29601. height: math.unit(100, "km")
  29602. },
  29603. {
  29604. name: "Overgrown",
  29605. height: math.unit(1, "parsec")
  29606. },
  29607. ]
  29608. ))
  29609. characterMakers.push(() => makeCharacter(
  29610. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29611. {
  29612. front: {
  29613. height: math.unit(2.5, "meters"),
  29614. weight: math.unit(225, "kg"),
  29615. name: "Front",
  29616. image: {
  29617. source: "./media/characters/iris/front.svg",
  29618. extra: 3348 / 3251,
  29619. bottom: 205 / 3553
  29620. }
  29621. },
  29622. maw: {
  29623. height: math.unit(0.56, "meter"),
  29624. name: "Maw",
  29625. image: {
  29626. source: "./media/characters/iris/maw.svg"
  29627. }
  29628. },
  29629. },
  29630. [
  29631. {
  29632. name: "Mewter cat",
  29633. height: math.unit(1.2, "meters")
  29634. },
  29635. {
  29636. name: "Minimacro",
  29637. height: math.unit(2.5, "meters"),
  29638. default: true
  29639. },
  29640. {
  29641. name: "Macro",
  29642. height: math.unit(180, "meters")
  29643. },
  29644. {
  29645. name: "Megamacro",
  29646. height: math.unit(2746, "meters")
  29647. },
  29648. ]
  29649. ))
  29650. characterMakers.push(() => makeCharacter(
  29651. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29652. {
  29653. front: {
  29654. height: math.unit(6, "feet"),
  29655. weight: math.unit(135, "lb"),
  29656. name: "Front",
  29657. image: {
  29658. source: "./media/characters/axel/front.svg",
  29659. extra: 908 / 908,
  29660. bottom: 58 / 966
  29661. }
  29662. },
  29663. side: {
  29664. height: math.unit(6, "feet"),
  29665. weight: math.unit(135, "lb"),
  29666. name: "Side",
  29667. image: {
  29668. source: "./media/characters/axel/side.svg",
  29669. extra: 958 / 958,
  29670. bottom: 11 / 969
  29671. }
  29672. },
  29673. back: {
  29674. height: math.unit(6, "feet"),
  29675. weight: math.unit(135, "lb"),
  29676. name: "Back",
  29677. image: {
  29678. source: "./media/characters/axel/back.svg",
  29679. extra: 887 / 887,
  29680. bottom: 34 / 921
  29681. }
  29682. },
  29683. head: {
  29684. height: math.unit(1.07, "feet"),
  29685. name: "Head",
  29686. image: {
  29687. source: "./media/characters/axel/head.svg"
  29688. }
  29689. },
  29690. beak: {
  29691. height: math.unit(1.4, "feet"),
  29692. name: "Beak",
  29693. image: {
  29694. source: "./media/characters/axel/beak.svg"
  29695. }
  29696. },
  29697. beakSide: {
  29698. height: math.unit(1.4, "feet"),
  29699. name: "Beak Side",
  29700. image: {
  29701. source: "./media/characters/axel/beak-side.svg"
  29702. }
  29703. },
  29704. sheath: {
  29705. height: math.unit(0.5, "feet"),
  29706. name: "Sheath",
  29707. image: {
  29708. source: "./media/characters/axel/sheath.svg"
  29709. }
  29710. },
  29711. dick: {
  29712. height: math.unit(0.98, "feet"),
  29713. name: "Dick",
  29714. image: {
  29715. source: "./media/characters/axel/dick.svg"
  29716. }
  29717. },
  29718. },
  29719. [
  29720. {
  29721. name: "Macro",
  29722. height: math.unit(68, "meters"),
  29723. default: true
  29724. },
  29725. ]
  29726. ))
  29727. characterMakers.push(() => makeCharacter(
  29728. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29729. {
  29730. front: {
  29731. height: math.unit(3.5, "meters"),
  29732. weight: math.unit(1200, "kg"),
  29733. name: "Front",
  29734. image: {
  29735. source: "./media/characters/joanna/front.svg",
  29736. extra: 1596 / 1488,
  29737. bottom: 29 / 1625
  29738. }
  29739. },
  29740. back: {
  29741. height: math.unit(3.5, "meters"),
  29742. weight: math.unit(1200, "kg"),
  29743. name: "Back",
  29744. image: {
  29745. source: "./media/characters/joanna/back.svg",
  29746. extra: 1594 / 1495,
  29747. bottom: 26 / 1620
  29748. }
  29749. },
  29750. frontShorts: {
  29751. height: math.unit(3.5, "meters"),
  29752. weight: math.unit(1200, "kg"),
  29753. name: "Front (Shorts)",
  29754. image: {
  29755. source: "./media/characters/joanna/front-shorts.svg",
  29756. extra: 1596 / 1488,
  29757. bottom: 29 / 1625
  29758. }
  29759. },
  29760. frontBiker: {
  29761. height: math.unit(3.5, "meters"),
  29762. weight: math.unit(1200, "kg"),
  29763. name: "Front (Biker)",
  29764. image: {
  29765. source: "./media/characters/joanna/front-biker.svg",
  29766. extra: 1596 / 1488,
  29767. bottom: 29 / 1625
  29768. }
  29769. },
  29770. backBiker: {
  29771. height: math.unit(3.5, "meters"),
  29772. weight: math.unit(1200, "kg"),
  29773. name: "Back (Biker)",
  29774. image: {
  29775. source: "./media/characters/joanna/back-biker.svg",
  29776. extra: 1594 / 1495,
  29777. bottom: 88 / 1682
  29778. }
  29779. },
  29780. bikeLeft: {
  29781. height: math.unit(2.4, "meters"),
  29782. weight: math.unit(1600, "kg"),
  29783. name: "Bike (Left)",
  29784. image: {
  29785. source: "./media/characters/joanna/bike-left.svg",
  29786. extra: 720 / 720,
  29787. bottom: 8 / 728
  29788. }
  29789. },
  29790. bikeRight: {
  29791. height: math.unit(2.4, "meters"),
  29792. weight: math.unit(1600, "kg"),
  29793. name: "Bike (Right)",
  29794. image: {
  29795. source: "./media/characters/joanna/bike-right.svg",
  29796. extra: 720 / 720,
  29797. bottom: 8 / 728
  29798. }
  29799. },
  29800. },
  29801. [
  29802. {
  29803. name: "Incognito",
  29804. height: math.unit(3.5, "meters")
  29805. },
  29806. {
  29807. name: "Casual Big",
  29808. height: math.unit(200, "meters")
  29809. },
  29810. {
  29811. name: "Macro",
  29812. height: math.unit(600, "meters")
  29813. },
  29814. {
  29815. name: "Original",
  29816. height: math.unit(20, "km"),
  29817. default: true
  29818. },
  29819. {
  29820. name: "Giga",
  29821. height: math.unit(400, "km")
  29822. },
  29823. {
  29824. name: "Lounging",
  29825. height: math.unit(1500, "km")
  29826. },
  29827. {
  29828. name: "Planetary",
  29829. height: math.unit(200000, "km")
  29830. },
  29831. ]
  29832. ))
  29833. characterMakers.push(() => makeCharacter(
  29834. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29835. {
  29836. front: {
  29837. height: math.unit(6, "feet"),
  29838. weight: math.unit(150, "lb"),
  29839. name: "Front",
  29840. image: {
  29841. source: "./media/characters/hugo-sigil/front.svg",
  29842. extra: 522 / 500,
  29843. bottom: 2 / 524
  29844. }
  29845. },
  29846. back: {
  29847. height: math.unit(6, "feet"),
  29848. weight: math.unit(150, "lb"),
  29849. name: "Back",
  29850. image: {
  29851. source: "./media/characters/hugo-sigil/back.svg",
  29852. extra: 519 / 495,
  29853. bottom: 5 / 524
  29854. }
  29855. },
  29856. maw: {
  29857. height: math.unit(1.4, "feet"),
  29858. weight: math.unit(150, "lb"),
  29859. name: "Maw",
  29860. image: {
  29861. source: "./media/characters/hugo-sigil/maw.svg"
  29862. }
  29863. },
  29864. feet: {
  29865. height: math.unit(1.56, "feet"),
  29866. weight: math.unit(150, "lb"),
  29867. name: "Feet",
  29868. image: {
  29869. source: "./media/characters/hugo-sigil/feet.svg",
  29870. extra: 177 / 177,
  29871. bottom: 12 / 189
  29872. }
  29873. },
  29874. },
  29875. [
  29876. {
  29877. name: "Normal",
  29878. height: math.unit(6, "feet")
  29879. },
  29880. {
  29881. name: "Macro",
  29882. height: math.unit(200, "feet"),
  29883. default: true
  29884. },
  29885. ]
  29886. ))
  29887. characterMakers.push(() => makeCharacter(
  29888. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29889. {
  29890. front: {
  29891. height: math.unit(6, "feet"),
  29892. weight: math.unit(150, "lb"),
  29893. name: "Front",
  29894. image: {
  29895. source: "./media/characters/peri/front.svg",
  29896. extra: 2354 / 2233,
  29897. bottom: 49 / 2403
  29898. }
  29899. },
  29900. },
  29901. [
  29902. {
  29903. name: "Really Small",
  29904. height: math.unit(1, "nm")
  29905. },
  29906. {
  29907. name: "Micro",
  29908. height: math.unit(4, "inches")
  29909. },
  29910. {
  29911. name: "Normal",
  29912. height: math.unit(7, "inches"),
  29913. default: true
  29914. },
  29915. {
  29916. name: "Macro",
  29917. height: math.unit(400, "feet")
  29918. },
  29919. {
  29920. name: "Megamacro",
  29921. height: math.unit(100, "miles")
  29922. },
  29923. ]
  29924. ))
  29925. characterMakers.push(() => makeCharacter(
  29926. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  29927. {
  29928. frontSlim: {
  29929. height: math.unit(7, "feet"),
  29930. name: "Front (Slim)",
  29931. image: {
  29932. source: "./media/characters/issilora/front-slim.svg",
  29933. extra: 529 / 449,
  29934. bottom: 53 / 582
  29935. }
  29936. },
  29937. sideSlim: {
  29938. height: math.unit(7, "feet"),
  29939. name: "Side (Slim)",
  29940. image: {
  29941. source: "./media/characters/issilora/side-slim.svg",
  29942. extra: 570 / 480,
  29943. bottom: 30 / 600
  29944. }
  29945. },
  29946. backSlim: {
  29947. height: math.unit(7, "feet"),
  29948. name: "Back (Slim)",
  29949. image: {
  29950. source: "./media/characters/issilora/back-slim.svg",
  29951. extra: 537 / 455,
  29952. bottom: 46 / 583
  29953. }
  29954. },
  29955. frontBuff: {
  29956. height: math.unit(7, "feet"),
  29957. name: "Front (Buff)",
  29958. image: {
  29959. source: "./media/characters/issilora/front-buff.svg",
  29960. extra: 2310 / 2035,
  29961. bottom: 335 / 2645
  29962. }
  29963. },
  29964. head: {
  29965. height: math.unit(1.94, "feet"),
  29966. name: "Head",
  29967. image: {
  29968. source: "./media/characters/issilora/head.svg"
  29969. }
  29970. },
  29971. },
  29972. [
  29973. {
  29974. name: "Minimum",
  29975. height: math.unit(7, "feet")
  29976. },
  29977. {
  29978. name: "Comfortable",
  29979. height: math.unit(17, "feet")
  29980. },
  29981. {
  29982. name: "Fun Size",
  29983. height: math.unit(47, "feet")
  29984. },
  29985. {
  29986. name: "Natural Macro",
  29987. height: math.unit(137, "feet"),
  29988. default: true
  29989. },
  29990. {
  29991. name: "Maximum Kaiju",
  29992. height: math.unit(397, "feet")
  29993. },
  29994. ]
  29995. ))
  29996. characterMakers.push(() => makeCharacter(
  29997. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  29998. {
  29999. front: {
  30000. height: math.unit(50 + 9/12, "feet"),
  30001. weight: math.unit(32.8, "tons"),
  30002. name: "Front",
  30003. image: {
  30004. source: "./media/characters/irb'iiritaahn/front.svg",
  30005. extra: 1878/1826,
  30006. bottom: 326/2204
  30007. }
  30008. },
  30009. back: {
  30010. height: math.unit(50 + 9/12, "feet"),
  30011. weight: math.unit(32.8, "tons"),
  30012. name: "Back",
  30013. image: {
  30014. source: "./media/characters/irb'iiritaahn/back.svg",
  30015. extra: 2052/2018,
  30016. bottom: 152/2204
  30017. }
  30018. },
  30019. head: {
  30020. height: math.unit(12.86, "feet"),
  30021. name: "Head",
  30022. image: {
  30023. source: "./media/characters/irb'iiritaahn/head.svg"
  30024. }
  30025. },
  30026. maw: {
  30027. height: math.unit(9.66, "feet"),
  30028. name: "Maw",
  30029. image: {
  30030. source: "./media/characters/irb'iiritaahn/maw.svg"
  30031. }
  30032. },
  30033. frontDick: {
  30034. height: math.unit(8.78461, "feet"),
  30035. name: "Front Dick",
  30036. image: {
  30037. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30038. }
  30039. },
  30040. rearDick: {
  30041. height: math.unit(8.78461, "feet"),
  30042. name: "Rear Dick",
  30043. image: {
  30044. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30045. }
  30046. },
  30047. rearDickUnfolded: {
  30048. height: math.unit(8.78, "feet"),
  30049. name: "Rear Dick (Unfolded)",
  30050. image: {
  30051. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30052. }
  30053. },
  30054. wings: {
  30055. height: math.unit(43, "feet"),
  30056. name: "Wings",
  30057. image: {
  30058. source: "./media/characters/irb'iiritaahn/wings.svg"
  30059. }
  30060. },
  30061. },
  30062. [
  30063. {
  30064. name: "Macro",
  30065. height: math.unit(50 + 9/12, "feet"),
  30066. default: true
  30067. },
  30068. ]
  30069. ))
  30070. characterMakers.push(() => makeCharacter(
  30071. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30072. {
  30073. front: {
  30074. height: math.unit(205, "cm"),
  30075. weight: math.unit(102, "kg"),
  30076. name: "Front",
  30077. image: {
  30078. source: "./media/characters/irbisgreif/front.svg",
  30079. extra: 785/706,
  30080. bottom: 13/798
  30081. }
  30082. },
  30083. back: {
  30084. height: math.unit(205, "cm"),
  30085. weight: math.unit(102, "kg"),
  30086. name: "Back",
  30087. image: {
  30088. source: "./media/characters/irbisgreif/back.svg",
  30089. extra: 713/701,
  30090. bottom: 26/739
  30091. }
  30092. },
  30093. frontDressed: {
  30094. height: math.unit(216, "cm"),
  30095. weight: math.unit(102, "kg"),
  30096. name: "Front-dressed",
  30097. image: {
  30098. source: "./media/characters/irbisgreif/front-dressed.svg",
  30099. extra: 902/776,
  30100. bottom: 14/916
  30101. }
  30102. },
  30103. sideDressed: {
  30104. height: math.unit(195, "cm"),
  30105. weight: math.unit(102, "kg"),
  30106. name: "Side-dressed",
  30107. image: {
  30108. source: "./media/characters/irbisgreif/side-dressed.svg",
  30109. extra: 788/688,
  30110. bottom: 21/809
  30111. }
  30112. },
  30113. backDressed: {
  30114. height: math.unit(216, "cm"),
  30115. weight: math.unit(102, "kg"),
  30116. name: "Back-dressed",
  30117. image: {
  30118. source: "./media/characters/irbisgreif/back-dressed.svg",
  30119. extra: 901/783,
  30120. bottom: 10/911
  30121. }
  30122. },
  30123. dick: {
  30124. height: math.unit(0.49, "feet"),
  30125. name: "Dick",
  30126. image: {
  30127. source: "./media/characters/irbisgreif/dick.svg"
  30128. }
  30129. },
  30130. wingTop: {
  30131. height: math.unit(1.93 , "feet"),
  30132. name: "Wing-top",
  30133. image: {
  30134. source: "./media/characters/irbisgreif/wing-top.svg"
  30135. }
  30136. },
  30137. wingBottom: {
  30138. height: math.unit(1.93 , "feet"),
  30139. name: "Wing-bottom",
  30140. image: {
  30141. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30142. }
  30143. },
  30144. },
  30145. [
  30146. {
  30147. name: "Normal",
  30148. height: math.unit(216, "cm"),
  30149. default: true
  30150. },
  30151. ]
  30152. ))
  30153. characterMakers.push(() => makeCharacter(
  30154. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30155. {
  30156. front: {
  30157. height: math.unit(6, "feet"),
  30158. weight: math.unit(150, "lb"),
  30159. name: "Front",
  30160. image: {
  30161. source: "./media/characters/pride/front.svg",
  30162. extra: 1299/1230,
  30163. bottom: 18/1317
  30164. }
  30165. },
  30166. },
  30167. [
  30168. {
  30169. name: "Normal",
  30170. height: math.unit(7, "feet")
  30171. },
  30172. {
  30173. name: "Mini-macro",
  30174. height: math.unit(11, "feet")
  30175. },
  30176. {
  30177. name: "Macro",
  30178. height: math.unit(15, "meters"),
  30179. default: true
  30180. },
  30181. {
  30182. name: "Macro+",
  30183. height: math.unit(40, "meters")
  30184. },
  30185. ]
  30186. ))
  30187. characterMakers.push(() => makeCharacter(
  30188. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30189. {
  30190. front: {
  30191. height: math.unit(4 + 2 / 12, "feet"),
  30192. weight: math.unit(95, "lb"),
  30193. name: "Front",
  30194. image: {
  30195. source: "./media/characters/vaelophis-nyx/front.svg",
  30196. extra: 2532/2330,
  30197. bottom: 0/2532
  30198. }
  30199. },
  30200. back: {
  30201. height: math.unit(4 + 2 / 12, "feet"),
  30202. weight: math.unit(95, "lb"),
  30203. name: "Back",
  30204. image: {
  30205. source: "./media/characters/vaelophis-nyx/back.svg",
  30206. extra: 2484/2361,
  30207. bottom: 0/2484
  30208. }
  30209. },
  30210. feralSide: {
  30211. height: math.unit(2 + 1/12, "feet"),
  30212. weight: math.unit(20, "lb"),
  30213. name: "Feral (Side)",
  30214. image: {
  30215. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30216. extra: 1721/1581,
  30217. bottom: 70/1791
  30218. }
  30219. },
  30220. feralLazing: {
  30221. height: math.unit(1.08, "feet"),
  30222. weight: math.unit(20, "lb"),
  30223. name: "Feral (Lazing)",
  30224. image: {
  30225. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30226. extra: 822/822,
  30227. bottom: 248/1070
  30228. }
  30229. },
  30230. ear: {
  30231. height: math.unit(0.416, "feet"),
  30232. name: "Ear",
  30233. image: {
  30234. source: "./media/characters/vaelophis-nyx/ear.svg"
  30235. }
  30236. },
  30237. eye: {
  30238. height: math.unit(0.0748, "feet"),
  30239. name: "Eye",
  30240. image: {
  30241. source: "./media/characters/vaelophis-nyx/eye.svg"
  30242. }
  30243. },
  30244. mouth: {
  30245. height: math.unit(0.378, "feet"),
  30246. name: "Mouth",
  30247. image: {
  30248. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30249. }
  30250. },
  30251. spade: {
  30252. height: math.unit(0.55, "feet"),
  30253. name: "Spade",
  30254. image: {
  30255. source: "./media/characters/vaelophis-nyx/spade.svg"
  30256. }
  30257. },
  30258. },
  30259. [
  30260. {
  30261. name: "Normal",
  30262. height: math.unit(4 + 2/12, "feet"),
  30263. default: true
  30264. },
  30265. ]
  30266. ))
  30267. characterMakers.push(() => makeCharacter(
  30268. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30269. {
  30270. front: {
  30271. height: math.unit(7, "feet"),
  30272. weight: math.unit(231, "lb"),
  30273. name: "Front",
  30274. image: {
  30275. source: "./media/characters/flux/front.svg",
  30276. extra: 919/871,
  30277. bottom: 0/919
  30278. }
  30279. },
  30280. back: {
  30281. height: math.unit(7, "feet"),
  30282. weight: math.unit(231, "lb"),
  30283. name: "Back",
  30284. image: {
  30285. source: "./media/characters/flux/back.svg",
  30286. extra: 1040/992,
  30287. bottom: 0/1040
  30288. }
  30289. },
  30290. frontDressed: {
  30291. height: math.unit(7, "feet"),
  30292. weight: math.unit(231, "lb"),
  30293. name: "Front (Dressed)",
  30294. image: {
  30295. source: "./media/characters/flux/front-dressed.svg",
  30296. extra: 919/871,
  30297. bottom: 0/919
  30298. }
  30299. },
  30300. feralSide: {
  30301. height: math.unit(5, "feet"),
  30302. weight: math.unit(150, "lb"),
  30303. name: "Feral (Side)",
  30304. image: {
  30305. source: "./media/characters/flux/feral-side.svg",
  30306. extra: 598/528,
  30307. bottom: 28/626
  30308. }
  30309. },
  30310. head: {
  30311. height: math.unit(1.585, "feet"),
  30312. name: "Head",
  30313. image: {
  30314. source: "./media/characters/flux/head.svg"
  30315. }
  30316. },
  30317. headSide: {
  30318. height: math.unit(1.74, "feet"),
  30319. name: "Head (Side)",
  30320. image: {
  30321. source: "./media/characters/flux/head-side.svg"
  30322. }
  30323. },
  30324. headSideFire: {
  30325. height: math.unit(1.76, "feet"),
  30326. name: "Head (Side, Fire)",
  30327. image: {
  30328. source: "./media/characters/flux/head-side-fire.svg"
  30329. }
  30330. },
  30331. },
  30332. [
  30333. {
  30334. name: "Normal",
  30335. height: math.unit(7, "feet"),
  30336. default: true
  30337. },
  30338. ]
  30339. ))
  30340. characterMakers.push(() => makeCharacter(
  30341. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30342. {
  30343. front: {
  30344. height: math.unit(9, "feet"),
  30345. weight: math.unit(1012, "lb"),
  30346. name: "Front",
  30347. image: {
  30348. source: "./media/characters/ulfra-lupae/front.svg",
  30349. extra: 1083/1011,
  30350. bottom: 67/1150
  30351. }
  30352. },
  30353. },
  30354. [
  30355. {
  30356. name: "Micro",
  30357. height: math.unit(6, "inches")
  30358. },
  30359. {
  30360. name: "Socializing",
  30361. height: math.unit(6 + 5/12, "feet")
  30362. },
  30363. {
  30364. name: "Normal",
  30365. height: math.unit(9, "feet"),
  30366. default: true
  30367. },
  30368. {
  30369. name: "Macro",
  30370. height: math.unit(150, "feet")
  30371. },
  30372. ]
  30373. ))
  30374. characterMakers.push(() => makeCharacter(
  30375. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30376. {
  30377. front: {
  30378. height: math.unit(5 + 2/12, "feet"),
  30379. weight: math.unit(120, "lb"),
  30380. name: "Front",
  30381. image: {
  30382. source: "./media/characters/timber/front.svg",
  30383. extra: 2814/2705,
  30384. bottom: 181/2995
  30385. }
  30386. },
  30387. },
  30388. [
  30389. {
  30390. name: "Normal",
  30391. height: math.unit(5 + 2/12, "feet"),
  30392. default: true
  30393. },
  30394. ]
  30395. ))
  30396. characterMakers.push(() => makeCharacter(
  30397. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30398. {
  30399. front: {
  30400. height: math.unit(5 + 7/12, "feet"),
  30401. weight: math.unit(220, "lb"),
  30402. name: "Front",
  30403. image: {
  30404. source: "./media/characters/nicki/front.svg",
  30405. extra: 453/419,
  30406. bottom: 7/460
  30407. }
  30408. },
  30409. frontAlt: {
  30410. height: math.unit(5 + 7/12, "feet"),
  30411. weight: math.unit(220, "lb"),
  30412. name: "Front-alt",
  30413. image: {
  30414. source: "./media/characters/nicki/front-alt.svg",
  30415. extra: 435/411,
  30416. bottom: 12/447
  30417. }
  30418. },
  30419. back: {
  30420. height: math.unit(5 + 7/12, "feet"),
  30421. weight: math.unit(220, "lb"),
  30422. name: "Back",
  30423. image: {
  30424. source: "./media/characters/nicki/back.svg",
  30425. extra: 440/413,
  30426. bottom: 19/459
  30427. }
  30428. },
  30429. taur: {
  30430. height: math.unit(7 + 6/12, "feet"),
  30431. weight: math.unit(700, "lb"),
  30432. name: "Taur",
  30433. image: {
  30434. source: "./media/characters/nicki/taur.svg",
  30435. extra: 975/773,
  30436. bottom: 0/975
  30437. }
  30438. },
  30439. frontNsfw: {
  30440. height: math.unit(5 + 7/12, "feet"),
  30441. weight: math.unit(220, "lb"),
  30442. name: "Front (NSFW)",
  30443. image: {
  30444. source: "./media/characters/nicki/front-nsfw.svg",
  30445. extra: 453/419,
  30446. bottom: 7/460
  30447. }
  30448. },
  30449. frontNsfwAlt: {
  30450. height: math.unit(5 + 7/12, "feet"),
  30451. weight: math.unit(220, "lb"),
  30452. name: "Front (Alt, NSFW)",
  30453. image: {
  30454. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30455. extra: 435/411,
  30456. bottom: 12/447
  30457. }
  30458. },
  30459. backNsfw: {
  30460. height: math.unit(5 + 7/12, "feet"),
  30461. weight: math.unit(220, "lb"),
  30462. name: "Back (NSFW)",
  30463. image: {
  30464. source: "./media/characters/nicki/back-nsfw.svg",
  30465. extra: 440/413,
  30466. bottom: 19/459
  30467. }
  30468. },
  30469. head: {
  30470. height: math.unit(2.1, "feet"),
  30471. name: "Head",
  30472. image: {
  30473. source: "./media/characters/nicki/head.svg"
  30474. }
  30475. },
  30476. paw: {
  30477. height: math.unit(1.88, "feet"),
  30478. name: "Paw",
  30479. image: {
  30480. source: "./media/characters/nicki/paw.svg"
  30481. }
  30482. },
  30483. },
  30484. [
  30485. {
  30486. name: "Normal",
  30487. height: math.unit(5 + 7/12, "feet"),
  30488. default: true
  30489. },
  30490. ]
  30491. ))
  30492. characterMakers.push(() => makeCharacter(
  30493. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30494. {
  30495. front: {
  30496. height: math.unit(7 + 10/12, "feet"),
  30497. weight: math.unit(3.5, "tons"),
  30498. name: "Front",
  30499. image: {
  30500. source: "./media/characters/lee/front.svg",
  30501. extra: 1773/1615,
  30502. bottom: 86/1859
  30503. }
  30504. },
  30505. hand: {
  30506. height: math.unit(1.78, "feet"),
  30507. name: "Hand",
  30508. image: {
  30509. source: "./media/characters/lee/hand.svg"
  30510. }
  30511. },
  30512. maw: {
  30513. height: math.unit(1.18, "feet"),
  30514. name: "Maw",
  30515. image: {
  30516. source: "./media/characters/lee/maw.svg"
  30517. }
  30518. },
  30519. },
  30520. [
  30521. {
  30522. name: "Normal",
  30523. height: math.unit(7 + 10/12, "feet"),
  30524. default: true
  30525. },
  30526. ]
  30527. ))
  30528. characterMakers.push(() => makeCharacter(
  30529. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30530. {
  30531. front: {
  30532. height: math.unit(9, "feet"),
  30533. name: "Front",
  30534. image: {
  30535. source: "./media/characters/guti/front.svg",
  30536. extra: 4551/4355,
  30537. bottom: 123/4674
  30538. }
  30539. },
  30540. tongue: {
  30541. height: math.unit(1, "feet"),
  30542. name: "Tongue",
  30543. image: {
  30544. source: "./media/characters/guti/tongue.svg"
  30545. }
  30546. },
  30547. paw: {
  30548. height: math.unit(1.18, "feet"),
  30549. name: "Paw",
  30550. image: {
  30551. source: "./media/characters/guti/paw.svg"
  30552. }
  30553. },
  30554. },
  30555. [
  30556. {
  30557. name: "Normal",
  30558. height: math.unit(9, "feet"),
  30559. default: true
  30560. },
  30561. ]
  30562. ))
  30563. characterMakers.push(() => makeCharacter(
  30564. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30565. {
  30566. side: {
  30567. height: math.unit(5, "meters"),
  30568. name: "Side",
  30569. image: {
  30570. source: "./media/characters/vesper/side.svg",
  30571. extra: 1605/1518,
  30572. bottom: 0/1605
  30573. }
  30574. },
  30575. },
  30576. [
  30577. {
  30578. name: "Small",
  30579. height: math.unit(5, "meters")
  30580. },
  30581. {
  30582. name: "Sage",
  30583. height: math.unit(100, "meters"),
  30584. default: true
  30585. },
  30586. {
  30587. name: "Fun Size",
  30588. height: math.unit(600, "meters")
  30589. },
  30590. {
  30591. name: "Goddess",
  30592. height: math.unit(20000, "km")
  30593. },
  30594. {
  30595. name: "Maximum",
  30596. height: math.unit(5, "galaxies")
  30597. },
  30598. ]
  30599. ))
  30600. characterMakers.push(() => makeCharacter(
  30601. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30602. {
  30603. front: {
  30604. height: math.unit(6 + 3/12, "feet"),
  30605. weight: math.unit(190, "lb"),
  30606. name: "Front",
  30607. image: {
  30608. source: "./media/characters/gawain/front.svg",
  30609. extra: 2222/2139,
  30610. bottom: 90/2312
  30611. }
  30612. },
  30613. back: {
  30614. height: math.unit(6 + 3/12, "feet"),
  30615. weight: math.unit(190, "lb"),
  30616. name: "Back",
  30617. image: {
  30618. source: "./media/characters/gawain/back.svg",
  30619. extra: 2199/2111,
  30620. bottom: 73/2272
  30621. }
  30622. },
  30623. },
  30624. [
  30625. {
  30626. name: "Normal",
  30627. height: math.unit(6 + 3/12, "feet"),
  30628. default: true
  30629. },
  30630. ]
  30631. ))
  30632. characterMakers.push(() => makeCharacter(
  30633. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30634. {
  30635. side: {
  30636. height: math.unit(3.5, "meters"),
  30637. weight: math.unit(16000, "lb"),
  30638. name: "Side",
  30639. image: {
  30640. source: "./media/characters/dascalti/side.svg",
  30641. extra: 392/273,
  30642. bottom: 47/439
  30643. }
  30644. },
  30645. breath: {
  30646. height: math.unit(7.4, "feet"),
  30647. name: "Breath",
  30648. image: {
  30649. source: "./media/characters/dascalti/breath.svg"
  30650. }
  30651. },
  30652. fed: {
  30653. height: math.unit(3.6, "meters"),
  30654. weight: math.unit(16000, "lb"),
  30655. name: "Fed",
  30656. image: {
  30657. source: "./media/characters/dascalti/fed.svg",
  30658. extra: 1419/820,
  30659. bottom: 95/1514
  30660. }
  30661. },
  30662. },
  30663. [
  30664. {
  30665. name: "Normal",
  30666. height: math.unit(3.5, "meters"),
  30667. default: true
  30668. },
  30669. ]
  30670. ))
  30671. characterMakers.push(() => makeCharacter(
  30672. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30673. {
  30674. front: {
  30675. height: math.unit(3 + 5/12, "feet"),
  30676. name: "Front",
  30677. image: {
  30678. source: "./media/characters/mauve/front.svg",
  30679. extra: 1126/1033,
  30680. bottom: 65/1191
  30681. }
  30682. },
  30683. side: {
  30684. height: math.unit(3 + 5/12, "feet"),
  30685. name: "Side",
  30686. image: {
  30687. source: "./media/characters/mauve/side.svg",
  30688. extra: 1089/1001,
  30689. bottom: 29/1118
  30690. }
  30691. },
  30692. back: {
  30693. height: math.unit(3 + 5/12, "feet"),
  30694. name: "Back",
  30695. image: {
  30696. source: "./media/characters/mauve/back.svg",
  30697. extra: 1173/1053,
  30698. bottom: 109/1282
  30699. }
  30700. },
  30701. },
  30702. [
  30703. {
  30704. name: "Normal",
  30705. height: math.unit(3 + 5/12, "feet"),
  30706. default: true
  30707. },
  30708. ]
  30709. ))
  30710. characterMakers.push(() => makeCharacter(
  30711. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30712. {
  30713. front: {
  30714. height: math.unit(6 + 3/12, "feet"),
  30715. weight: math.unit(430, "lb"),
  30716. name: "Front",
  30717. image: {
  30718. source: "./media/characters/carlos/front.svg",
  30719. extra: 1964/1913,
  30720. bottom: 70/2034
  30721. }
  30722. },
  30723. },
  30724. [
  30725. {
  30726. name: "Normal",
  30727. height: math.unit(6 + 3/12, "feet"),
  30728. default: true
  30729. },
  30730. ]
  30731. ))
  30732. characterMakers.push(() => makeCharacter(
  30733. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30734. {
  30735. back: {
  30736. height: math.unit(5 + 10/12, "feet"),
  30737. weight: math.unit(200, "lb"),
  30738. name: "Back",
  30739. image: {
  30740. source: "./media/characters/jax/back.svg",
  30741. extra: 764/739,
  30742. bottom: 25/789
  30743. }
  30744. },
  30745. },
  30746. [
  30747. {
  30748. name: "Normal",
  30749. height: math.unit(5 + 10/12, "feet"),
  30750. default: true
  30751. },
  30752. ]
  30753. ))
  30754. characterMakers.push(() => makeCharacter(
  30755. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30756. {
  30757. front: {
  30758. height: math.unit(8, "feet"),
  30759. weight: math.unit(250, "lb"),
  30760. name: "Front",
  30761. image: {
  30762. source: "./media/characters/eikthynir/front.svg",
  30763. extra: 1332/1166,
  30764. bottom: 82/1414
  30765. }
  30766. },
  30767. back: {
  30768. height: math.unit(8, "feet"),
  30769. weight: math.unit(250, "lb"),
  30770. name: "Back",
  30771. image: {
  30772. source: "./media/characters/eikthynir/back.svg",
  30773. extra: 1342/1190,
  30774. bottom: 19/1361
  30775. }
  30776. },
  30777. dick: {
  30778. height: math.unit(2.35, "feet"),
  30779. name: "Dick",
  30780. image: {
  30781. source: "./media/characters/eikthynir/dick.svg"
  30782. }
  30783. },
  30784. },
  30785. [
  30786. {
  30787. name: "Normal",
  30788. height: math.unit(8, "feet"),
  30789. default: true
  30790. },
  30791. ]
  30792. ))
  30793. characterMakers.push(() => makeCharacter(
  30794. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30795. {
  30796. front: {
  30797. height: math.unit(99, "meters"),
  30798. weight: math.unit(13000, "tons"),
  30799. name: "Front",
  30800. image: {
  30801. source: "./media/characters/zlmos/front.svg",
  30802. extra: 2202/1992,
  30803. bottom: 315/2517
  30804. }
  30805. },
  30806. },
  30807. [
  30808. {
  30809. name: "Macro",
  30810. height: math.unit(99, "meters"),
  30811. default: true
  30812. },
  30813. ]
  30814. ))
  30815. characterMakers.push(() => makeCharacter(
  30816. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30817. {
  30818. front: {
  30819. height: math.unit(6 + 5/12, "feet"),
  30820. name: "Front",
  30821. image: {
  30822. source: "./media/characters/purri/front.svg",
  30823. extra: 1698/1610,
  30824. bottom: 32/1730
  30825. }
  30826. },
  30827. frontAlt: {
  30828. height: math.unit(6 + 5/12, "feet"),
  30829. name: "Front (Alt)",
  30830. image: {
  30831. source: "./media/characters/purri/front-alt.svg",
  30832. extra: 450/420,
  30833. bottom: 26/476
  30834. }
  30835. },
  30836. boots: {
  30837. height: math.unit(5.5, "feet"),
  30838. name: "Boots",
  30839. image: {
  30840. source: "./media/characters/purri/boots.svg",
  30841. extra: 905/853,
  30842. bottom: 18/923
  30843. }
  30844. },
  30845. lying: {
  30846. height: math.unit(2, "feet"),
  30847. name: "Lying",
  30848. image: {
  30849. source: "./media/characters/purri/lying.svg",
  30850. extra: 940/843,
  30851. bottom: 146/1086
  30852. }
  30853. },
  30854. devious: {
  30855. height: math.unit(1.77, "feet"),
  30856. name: "Devious",
  30857. image: {
  30858. source: "./media/characters/purri/devious.svg",
  30859. extra: 1440/1155,
  30860. bottom: 147/1587
  30861. }
  30862. },
  30863. bean: {
  30864. height: math.unit(1.94, "feet"),
  30865. name: "Bean",
  30866. image: {
  30867. source: "./media/characters/purri/bean.svg"
  30868. }
  30869. },
  30870. },
  30871. [
  30872. {
  30873. name: "Micro",
  30874. height: math.unit(1, "mm")
  30875. },
  30876. {
  30877. name: "Normal",
  30878. height: math.unit(6 + 5/12, "feet"),
  30879. default: true
  30880. },
  30881. {
  30882. name: "Macro :3c",
  30883. height: math.unit(2, "miles")
  30884. },
  30885. ]
  30886. ))
  30887. characterMakers.push(() => makeCharacter(
  30888. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30889. {
  30890. front: {
  30891. height: math.unit(6 + 2/12, "feet"),
  30892. weight: math.unit(250, "lb"),
  30893. name: "Front",
  30894. image: {
  30895. source: "./media/characters/moonlight/front.svg",
  30896. extra: 1044/908,
  30897. bottom: 56/1100
  30898. }
  30899. },
  30900. feral: {
  30901. height: math.unit(3 + 1/12, "feet"),
  30902. weight: math.unit(50, "kg"),
  30903. name: "Feral",
  30904. image: {
  30905. source: "./media/characters/moonlight/feral.svg",
  30906. extra: 3705/2791,
  30907. bottom: 145/3850
  30908. }
  30909. },
  30910. paw: {
  30911. height: math.unit(1, "feet"),
  30912. name: "Paw",
  30913. image: {
  30914. source: "./media/characters/moonlight/paw.svg"
  30915. }
  30916. },
  30917. paws: {
  30918. height: math.unit(0.98, "feet"),
  30919. name: "Paws",
  30920. image: {
  30921. source: "./media/characters/moonlight/paws.svg",
  30922. extra: 939/939,
  30923. bottom: 50/989
  30924. }
  30925. },
  30926. mouth: {
  30927. height: math.unit(0.48, "feet"),
  30928. name: "Mouth",
  30929. image: {
  30930. source: "./media/characters/moonlight/mouth.svg"
  30931. }
  30932. },
  30933. dick: {
  30934. height: math.unit(1.46, "feet"),
  30935. name: "Dick",
  30936. image: {
  30937. source: "./media/characters/moonlight/dick.svg"
  30938. }
  30939. },
  30940. },
  30941. [
  30942. {
  30943. name: "Normal",
  30944. height: math.unit(6 + 2/12, "feet"),
  30945. default: true
  30946. },
  30947. {
  30948. name: "Macro",
  30949. height: math.unit(300, "feet")
  30950. },
  30951. {
  30952. name: "Macro+",
  30953. height: math.unit(1, "mile")
  30954. },
  30955. {
  30956. name: "Mt. Moon",
  30957. height: math.unit(5, "miles")
  30958. },
  30959. {
  30960. name: "Megamacro",
  30961. height: math.unit(15, "miles")
  30962. },
  30963. ]
  30964. ))
  30965. characterMakers.push(() => makeCharacter(
  30966. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  30967. {
  30968. back: {
  30969. height: math.unit(6, "feet"),
  30970. weight: math.unit(150, "lb"),
  30971. name: "Back",
  30972. image: {
  30973. source: "./media/characters/sylen/back.svg",
  30974. extra: 1335/1273,
  30975. bottom: 107/1442
  30976. }
  30977. },
  30978. },
  30979. [
  30980. {
  30981. name: "Normal",
  30982. height: math.unit(5 + 5/12, "feet")
  30983. },
  30984. {
  30985. name: "Megamacro",
  30986. height: math.unit(3, "miles"),
  30987. default: true
  30988. },
  30989. ]
  30990. ))
  30991. characterMakers.push(() => makeCharacter(
  30992. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  30993. {
  30994. front: {
  30995. height: math.unit(6, "feet"),
  30996. weight: math.unit(190, "lb"),
  30997. name: "Front",
  30998. image: {
  30999. source: "./media/characters/huttser/front.svg",
  31000. extra: 1152/1058,
  31001. bottom: 23/1175
  31002. }
  31003. },
  31004. side: {
  31005. height: math.unit(6, "feet"),
  31006. weight: math.unit(190, "lb"),
  31007. name: "Side",
  31008. image: {
  31009. source: "./media/characters/huttser/side.svg",
  31010. extra: 1174/1065,
  31011. bottom: 18/1192
  31012. }
  31013. },
  31014. back: {
  31015. height: math.unit(6, "feet"),
  31016. weight: math.unit(190, "lb"),
  31017. name: "Back",
  31018. image: {
  31019. source: "./media/characters/huttser/back.svg",
  31020. extra: 1158/1056,
  31021. bottom: 12/1170
  31022. }
  31023. },
  31024. },
  31025. [
  31026. ]
  31027. ))
  31028. characterMakers.push(() => makeCharacter(
  31029. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31030. {
  31031. side: {
  31032. height: math.unit(12 + 9/12, "feet"),
  31033. weight: math.unit(15000, "lb"),
  31034. name: "Side",
  31035. image: {
  31036. source: "./media/characters/faan/side.svg",
  31037. extra: 2747/2697,
  31038. bottom: 0/2747
  31039. }
  31040. },
  31041. front: {
  31042. height: math.unit(12 + 9/12, "feet"),
  31043. weight: math.unit(15000, "lb"),
  31044. name: "Front",
  31045. image: {
  31046. source: "./media/characters/faan/front.svg",
  31047. extra: 607/571,
  31048. bottom: 24/631
  31049. }
  31050. },
  31051. head: {
  31052. height: math.unit(2.85, "feet"),
  31053. name: "Head",
  31054. image: {
  31055. source: "./media/characters/faan/head.svg"
  31056. }
  31057. },
  31058. headAlt: {
  31059. height: math.unit(3.13, "feet"),
  31060. name: "Head-alt",
  31061. image: {
  31062. source: "./media/characters/faan/head-alt.svg"
  31063. }
  31064. },
  31065. },
  31066. [
  31067. {
  31068. name: "Normal",
  31069. height: math.unit(12 + 9/12, "feet"),
  31070. default: true
  31071. },
  31072. ]
  31073. ))
  31074. characterMakers.push(() => makeCharacter(
  31075. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31076. {
  31077. front: {
  31078. height: math.unit(6, "feet"),
  31079. weight: math.unit(300, "lb"),
  31080. name: "Front",
  31081. image: {
  31082. source: "./media/characters/tanio/front.svg",
  31083. extra: 711/673,
  31084. bottom: 25/736
  31085. }
  31086. },
  31087. },
  31088. [
  31089. {
  31090. name: "Normal",
  31091. height: math.unit(6, "feet"),
  31092. default: true
  31093. },
  31094. ]
  31095. ))
  31096. characterMakers.push(() => makeCharacter(
  31097. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31098. {
  31099. front: {
  31100. height: math.unit(3, "inches"),
  31101. name: "Front",
  31102. image: {
  31103. source: "./media/characters/noboru/front.svg",
  31104. extra: 1039/932,
  31105. bottom: 18/1057
  31106. }
  31107. },
  31108. },
  31109. [
  31110. {
  31111. name: "Micro",
  31112. height: math.unit(3, "inches"),
  31113. default: true
  31114. },
  31115. ]
  31116. ))
  31117. characterMakers.push(() => makeCharacter(
  31118. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31119. {
  31120. front: {
  31121. height: math.unit(1.85, "meters"),
  31122. weight: math.unit(80, "kg"),
  31123. name: "Front",
  31124. image: {
  31125. source: "./media/characters/daniel-barrett/front.svg",
  31126. extra: 355/337,
  31127. bottom: 9/364
  31128. }
  31129. },
  31130. },
  31131. [
  31132. {
  31133. name: "Pico",
  31134. height: math.unit(0.0433, "mm")
  31135. },
  31136. {
  31137. name: "Nano",
  31138. height: math.unit(1.5, "mm")
  31139. },
  31140. {
  31141. name: "Micro",
  31142. height: math.unit(5.3, "cm"),
  31143. default: true
  31144. },
  31145. {
  31146. name: "Normal",
  31147. height: math.unit(1.85, "meters")
  31148. },
  31149. {
  31150. name: "Macro",
  31151. height: math.unit(64.7, "meters")
  31152. },
  31153. {
  31154. name: "Megamacro",
  31155. height: math.unit(2.26, "km")
  31156. },
  31157. {
  31158. name: "Gigamacro",
  31159. height: math.unit(79, "km")
  31160. },
  31161. {
  31162. name: "Teramacro",
  31163. height: math.unit(2765, "km")
  31164. },
  31165. {
  31166. name: "Petamacro",
  31167. height: math.unit(96678, "km")
  31168. },
  31169. ]
  31170. ))
  31171. characterMakers.push(() => makeCharacter(
  31172. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31173. {
  31174. front: {
  31175. height: math.unit(30, "meters"),
  31176. weight: math.unit(400, "tons"),
  31177. name: "Front",
  31178. image: {
  31179. source: "./media/characters/zeel/front.svg",
  31180. extra: 2599/2599,
  31181. bottom: 226/2825
  31182. }
  31183. },
  31184. },
  31185. [
  31186. {
  31187. name: "Macro",
  31188. height: math.unit(30, "meters"),
  31189. default: true
  31190. },
  31191. ]
  31192. ))
  31193. characterMakers.push(() => makeCharacter(
  31194. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31195. {
  31196. front: {
  31197. height: math.unit(6 + 7/12, "feet"),
  31198. weight: math.unit(210, "lb"),
  31199. name: "Front",
  31200. image: {
  31201. source: "./media/characters/tarn/front.svg",
  31202. extra: 3517/3220,
  31203. bottom: 91/3608
  31204. }
  31205. },
  31206. back: {
  31207. height: math.unit(6 + 7/12, "feet"),
  31208. weight: math.unit(210, "lb"),
  31209. name: "Back",
  31210. image: {
  31211. source: "./media/characters/tarn/back.svg",
  31212. extra: 3566/3241,
  31213. bottom: 34/3600
  31214. }
  31215. },
  31216. dick: {
  31217. height: math.unit(1.65, "feet"),
  31218. name: "Dick",
  31219. image: {
  31220. source: "./media/characters/tarn/dick.svg"
  31221. }
  31222. },
  31223. paw: {
  31224. height: math.unit(1.80, "feet"),
  31225. name: "Paw",
  31226. image: {
  31227. source: "./media/characters/tarn/paw.svg"
  31228. }
  31229. },
  31230. tongue: {
  31231. height: math.unit(0.97, "feet"),
  31232. name: "Tongue",
  31233. image: {
  31234. source: "./media/characters/tarn/tongue.svg"
  31235. }
  31236. },
  31237. },
  31238. [
  31239. {
  31240. name: "Micro",
  31241. height: math.unit(4, "inches")
  31242. },
  31243. {
  31244. name: "Normal",
  31245. height: math.unit(6 + 7/12, "feet"),
  31246. default: true
  31247. },
  31248. {
  31249. name: "Macro",
  31250. height: math.unit(300, "feet")
  31251. },
  31252. ]
  31253. ))
  31254. characterMakers.push(() => makeCharacter(
  31255. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31256. {
  31257. front: {
  31258. height: math.unit(5 + 7/12, "feet"),
  31259. weight: math.unit(80, "kg"),
  31260. name: "Front",
  31261. image: {
  31262. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31263. extra: 3023/2865,
  31264. bottom: 33/3056
  31265. }
  31266. },
  31267. back: {
  31268. height: math.unit(5 + 7/12, "feet"),
  31269. weight: math.unit(80, "kg"),
  31270. name: "Back",
  31271. image: {
  31272. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31273. extra: 3020/2886,
  31274. bottom: 30/3050
  31275. }
  31276. },
  31277. dick: {
  31278. height: math.unit(0.98, "feet"),
  31279. name: "Dick",
  31280. image: {
  31281. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31282. }
  31283. },
  31284. anatomy: {
  31285. height: math.unit(2.86, "feet"),
  31286. name: "Anatomy",
  31287. image: {
  31288. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31289. }
  31290. },
  31291. },
  31292. [
  31293. {
  31294. name: "Really Small",
  31295. height: math.unit(2, "inches")
  31296. },
  31297. {
  31298. name: "Micro",
  31299. height: math.unit(5.583, "inches")
  31300. },
  31301. {
  31302. name: "Normal",
  31303. height: math.unit(5 + 7/12, "feet"),
  31304. default: true
  31305. },
  31306. {
  31307. name: "Macro",
  31308. height: math.unit(67, "feet")
  31309. },
  31310. {
  31311. name: "Megamacro",
  31312. height: math.unit(134, "feet")
  31313. },
  31314. ]
  31315. ))
  31316. characterMakers.push(() => makeCharacter(
  31317. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31318. {
  31319. front: {
  31320. height: math.unit(9, "feet"),
  31321. weight: math.unit(120, "lb"),
  31322. name: "Front",
  31323. image: {
  31324. source: "./media/characters/sally/front.svg",
  31325. extra: 1506/1349,
  31326. bottom: 66/1572
  31327. }
  31328. },
  31329. },
  31330. [
  31331. {
  31332. name: "Normal",
  31333. height: math.unit(9, "feet"),
  31334. default: true
  31335. },
  31336. ]
  31337. ))
  31338. characterMakers.push(() => makeCharacter(
  31339. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31340. {
  31341. front: {
  31342. height: math.unit(8, "feet"),
  31343. weight: math.unit(900, "lb"),
  31344. name: "Front",
  31345. image: {
  31346. source: "./media/characters/owen/front.svg",
  31347. extra: 1761/1657,
  31348. bottom: 74/1835
  31349. }
  31350. },
  31351. side: {
  31352. height: math.unit(8, "feet"),
  31353. weight: math.unit(900, "lb"),
  31354. name: "Side",
  31355. image: {
  31356. source: "./media/characters/owen/side.svg",
  31357. extra: 1797/1734,
  31358. bottom: 30/1827
  31359. }
  31360. },
  31361. back: {
  31362. height: math.unit(8, "feet"),
  31363. weight: math.unit(900, "lb"),
  31364. name: "Back",
  31365. image: {
  31366. source: "./media/characters/owen/back.svg",
  31367. extra: 1796/1706,
  31368. bottom: 59/1855
  31369. }
  31370. },
  31371. maw: {
  31372. height: math.unit(1.76, "feet"),
  31373. name: "Maw",
  31374. image: {
  31375. source: "./media/characters/owen/maw.svg"
  31376. }
  31377. },
  31378. },
  31379. [
  31380. {
  31381. name: "Normal",
  31382. height: math.unit(8, "feet"),
  31383. default: true
  31384. },
  31385. ]
  31386. ))
  31387. characterMakers.push(() => makeCharacter(
  31388. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31389. {
  31390. front: {
  31391. height: math.unit(4, "feet"),
  31392. weight: math.unit(400, "lb"),
  31393. name: "Front",
  31394. image: {
  31395. source: "./media/characters/ryth/front.svg",
  31396. extra: 876/691,
  31397. bottom: 25/901
  31398. }
  31399. },
  31400. goia: {
  31401. height: math.unit(12, "feet"),
  31402. weight: math.unit(10800, "lb"),
  31403. name: "Goia",
  31404. image: {
  31405. source: "./media/characters/ryth/goia.svg",
  31406. extra: 3450/3198,
  31407. bottom: 61/3511
  31408. }
  31409. },
  31410. },
  31411. [
  31412. {
  31413. name: "Normal",
  31414. height: math.unit(4, "feet"),
  31415. default: true
  31416. },
  31417. ]
  31418. ))
  31419. characterMakers.push(() => makeCharacter(
  31420. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31421. {
  31422. front: {
  31423. height: math.unit(7, "feet"),
  31424. weight: math.unit(180, "lb"),
  31425. name: "Front",
  31426. image: {
  31427. source: "./media/characters/necrolance/front.svg",
  31428. extra: 1062/947,
  31429. bottom: 41/1103
  31430. }
  31431. },
  31432. back: {
  31433. height: math.unit(7, "feet"),
  31434. weight: math.unit(180, "lb"),
  31435. name: "Back",
  31436. image: {
  31437. source: "./media/characters/necrolance/back.svg",
  31438. extra: 1045/984,
  31439. bottom: 14/1059
  31440. }
  31441. },
  31442. wing: {
  31443. height: math.unit(2.67, "feet"),
  31444. name: "Wing",
  31445. image: {
  31446. source: "./media/characters/necrolance/wing.svg"
  31447. }
  31448. },
  31449. },
  31450. [
  31451. {
  31452. name: "Normal",
  31453. height: math.unit(7, "feet"),
  31454. default: true
  31455. },
  31456. ]
  31457. ))
  31458. characterMakers.push(() => makeCharacter(
  31459. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31460. {
  31461. front: {
  31462. height: math.unit(76, "meters"),
  31463. weight: math.unit(30000, "tons"),
  31464. name: "Front",
  31465. image: {
  31466. source: "./media/characters/tyler/front.svg",
  31467. extra: 1640/1640,
  31468. bottom: 114/1754
  31469. }
  31470. },
  31471. },
  31472. [
  31473. {
  31474. name: "Macro",
  31475. height: math.unit(76, "meters"),
  31476. default: true
  31477. },
  31478. ]
  31479. ))
  31480. characterMakers.push(() => makeCharacter(
  31481. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31482. {
  31483. front: {
  31484. height: math.unit(4 + 11/12, "feet"),
  31485. weight: math.unit(132, "lb"),
  31486. name: "Front",
  31487. image: {
  31488. source: "./media/characters/icey/front.svg",
  31489. extra: 2750/2550,
  31490. bottom: 33/2783
  31491. }
  31492. },
  31493. back: {
  31494. height: math.unit(4 + 11/12, "feet"),
  31495. weight: math.unit(132, "lb"),
  31496. name: "Back",
  31497. image: {
  31498. source: "./media/characters/icey/back.svg",
  31499. extra: 2624/2481,
  31500. bottom: 35/2659
  31501. }
  31502. },
  31503. },
  31504. [
  31505. {
  31506. name: "Normal",
  31507. height: math.unit(4 + 11/12, "feet"),
  31508. default: true
  31509. },
  31510. ]
  31511. ))
  31512. characterMakers.push(() => makeCharacter(
  31513. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31514. {
  31515. front: {
  31516. height: math.unit(100, "feet"),
  31517. weight: math.unit(0, "lb"),
  31518. name: "Front",
  31519. image: {
  31520. source: "./media/characters/smile/front.svg",
  31521. extra: 2983/2912,
  31522. bottom: 162/3145
  31523. }
  31524. },
  31525. back: {
  31526. height: math.unit(100, "feet"),
  31527. weight: math.unit(0, "lb"),
  31528. name: "Back",
  31529. image: {
  31530. source: "./media/characters/smile/back.svg",
  31531. extra: 3143/3031,
  31532. bottom: 91/3234
  31533. }
  31534. },
  31535. head: {
  31536. height: math.unit(26.3, "feet"),
  31537. weight: math.unit(0, "lb"),
  31538. name: "Head",
  31539. image: {
  31540. source: "./media/characters/smile/head.svg"
  31541. }
  31542. },
  31543. collar: {
  31544. height: math.unit(5.3, "feet"),
  31545. weight: math.unit(0, "lb"),
  31546. name: "Collar",
  31547. image: {
  31548. source: "./media/characters/smile/collar.svg"
  31549. }
  31550. },
  31551. },
  31552. [
  31553. {
  31554. name: "Macro",
  31555. height: math.unit(100, "feet"),
  31556. default: true
  31557. },
  31558. ]
  31559. ))
  31560. characterMakers.push(() => makeCharacter(
  31561. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31562. {
  31563. dragon: {
  31564. height: math.unit(26, "feet"),
  31565. weight: math.unit(36, "tons"),
  31566. name: "Dragon",
  31567. image: {
  31568. source: "./media/characters/arimphae/dragon.svg",
  31569. extra: 1574/983,
  31570. bottom: 357/1931
  31571. }
  31572. },
  31573. drake: {
  31574. height: math.unit(9, "feet"),
  31575. weight: math.unit(1.5, "tons"),
  31576. name: "Drake",
  31577. image: {
  31578. source: "./media/characters/arimphae/drake.svg",
  31579. extra: 1120/925,
  31580. bottom: 435/1555
  31581. }
  31582. },
  31583. },
  31584. [
  31585. {
  31586. name: "Small",
  31587. height: math.unit(26*5/9, "feet")
  31588. },
  31589. {
  31590. name: "Normal",
  31591. height: math.unit(26, "feet"),
  31592. default: true
  31593. },
  31594. ]
  31595. ))
  31596. characterMakers.push(() => makeCharacter(
  31597. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31598. {
  31599. front: {
  31600. height: math.unit(8 + 9/12, "feet"),
  31601. name: "Front",
  31602. image: {
  31603. source: "./media/characters/xander/front.svg",
  31604. extra: 848/673,
  31605. bottom: 62/910
  31606. }
  31607. },
  31608. },
  31609. [
  31610. {
  31611. name: "Normal",
  31612. height: math.unit(8 + 9/12, "feet"),
  31613. default: true
  31614. },
  31615. {
  31616. name: "Gaze Grabber",
  31617. height: math.unit(13 + 8/12, "feet")
  31618. },
  31619. {
  31620. name: "Jaw Dropper",
  31621. height: math.unit(27, "feet")
  31622. },
  31623. {
  31624. name: "Show Stopper",
  31625. height: math.unit(136, "feet")
  31626. },
  31627. {
  31628. name: "Superstar",
  31629. height: math.unit(1.9e6, "miles")
  31630. },
  31631. ]
  31632. ))
  31633. characterMakers.push(() => makeCharacter(
  31634. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31635. {
  31636. side: {
  31637. height: math.unit(2100, "feet"),
  31638. name: "Side",
  31639. image: {
  31640. source: "./media/characters/osiris/side.svg",
  31641. extra: 1105/939,
  31642. bottom: 167/1272
  31643. }
  31644. },
  31645. },
  31646. [
  31647. {
  31648. name: "Macro",
  31649. height: math.unit(2100, "feet"),
  31650. default: true
  31651. },
  31652. ]
  31653. ))
  31654. characterMakers.push(() => makeCharacter(
  31655. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31656. {
  31657. front: {
  31658. height: math.unit(6 + 8/12, "feet"),
  31659. weight: math.unit(225, "lb"),
  31660. name: "Front",
  31661. image: {
  31662. source: "./media/characters/rhys-londe/front.svg",
  31663. extra: 2258/2141,
  31664. bottom: 188/2446
  31665. }
  31666. },
  31667. back: {
  31668. height: math.unit(6 + 8/12, "feet"),
  31669. weight: math.unit(225, "lb"),
  31670. name: "Back",
  31671. image: {
  31672. source: "./media/characters/rhys-londe/back.svg",
  31673. extra: 2237/2137,
  31674. bottom: 63/2300
  31675. }
  31676. },
  31677. frontNsfw: {
  31678. height: math.unit(6 + 8/12, "feet"),
  31679. weight: math.unit(225, "lb"),
  31680. name: "Front (NSFW)",
  31681. image: {
  31682. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31683. extra: 2258/2141,
  31684. bottom: 188/2446
  31685. }
  31686. },
  31687. backNsfw: {
  31688. height: math.unit(6 + 8/12, "feet"),
  31689. weight: math.unit(225, "lb"),
  31690. name: "Back (NSFW)",
  31691. image: {
  31692. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31693. extra: 2237/2137,
  31694. bottom: 63/2300
  31695. }
  31696. },
  31697. dick: {
  31698. height: math.unit(30, "inches"),
  31699. name: "Dick",
  31700. image: {
  31701. source: "./media/characters/rhys-londe/dick.svg"
  31702. }
  31703. },
  31704. maw: {
  31705. height: math.unit(1.6, "feet"),
  31706. name: "Maw",
  31707. image: {
  31708. source: "./media/characters/rhys-londe/maw.svg"
  31709. }
  31710. },
  31711. },
  31712. [
  31713. {
  31714. name: "Normal",
  31715. height: math.unit(6 + 8/12, "feet"),
  31716. default: true
  31717. },
  31718. ]
  31719. ))
  31720. characterMakers.push(() => makeCharacter(
  31721. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31722. {
  31723. front: {
  31724. height: math.unit(3 + 10/12, "feet"),
  31725. weight: math.unit(90, "lb"),
  31726. name: "Front",
  31727. image: {
  31728. source: "./media/characters/taivas-ensim/front.svg",
  31729. extra: 1327/1216,
  31730. bottom: 96/1423
  31731. }
  31732. },
  31733. back: {
  31734. height: math.unit(3 + 10/12, "feet"),
  31735. weight: math.unit(90, "lb"),
  31736. name: "Back",
  31737. image: {
  31738. source: "./media/characters/taivas-ensim/back.svg",
  31739. extra: 1355/1247,
  31740. bottom: 11/1366
  31741. }
  31742. },
  31743. frontNsfw: {
  31744. height: math.unit(3 + 10/12, "feet"),
  31745. weight: math.unit(90, "lb"),
  31746. name: "Front (NSFW)",
  31747. image: {
  31748. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31749. extra: 1327/1216,
  31750. bottom: 96/1423
  31751. }
  31752. },
  31753. backNsfw: {
  31754. height: math.unit(3 + 10/12, "feet"),
  31755. weight: math.unit(90, "lb"),
  31756. name: "Back (NSFW)",
  31757. image: {
  31758. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31759. extra: 1355/1247,
  31760. bottom: 11/1366
  31761. }
  31762. },
  31763. },
  31764. [
  31765. {
  31766. name: "Normal",
  31767. height: math.unit(3 + 10/12, "feet"),
  31768. default: true
  31769. },
  31770. ]
  31771. ))
  31772. characterMakers.push(() => makeCharacter(
  31773. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31774. {
  31775. front: {
  31776. height: math.unit(9 + 6/12, "feet"),
  31777. weight: math.unit(940, "lb"),
  31778. name: "Front",
  31779. image: {
  31780. source: "./media/characters/byliss/front.svg",
  31781. extra: 1327/1290,
  31782. bottom: 82/1409
  31783. }
  31784. },
  31785. back: {
  31786. height: math.unit(9 + 6/12, "feet"),
  31787. weight: math.unit(940, "lb"),
  31788. name: "Back",
  31789. image: {
  31790. source: "./media/characters/byliss/back.svg",
  31791. extra: 1376/1349,
  31792. bottom: 9/1385
  31793. }
  31794. },
  31795. frontNsfw: {
  31796. height: math.unit(9 + 6/12, "feet"),
  31797. weight: math.unit(940, "lb"),
  31798. name: "Front (NSFW)",
  31799. image: {
  31800. source: "./media/characters/byliss/front-nsfw.svg",
  31801. extra: 1327/1290,
  31802. bottom: 82/1409
  31803. }
  31804. },
  31805. backNsfw: {
  31806. height: math.unit(9 + 6/12, "feet"),
  31807. weight: math.unit(940, "lb"),
  31808. name: "Back (NSFW)",
  31809. image: {
  31810. source: "./media/characters/byliss/back-nsfw.svg",
  31811. extra: 1376/1349,
  31812. bottom: 9/1385
  31813. }
  31814. },
  31815. },
  31816. [
  31817. {
  31818. name: "Normal",
  31819. height: math.unit(9 + 6/12, "feet"),
  31820. default: true
  31821. },
  31822. ]
  31823. ))
  31824. characterMakers.push(() => makeCharacter(
  31825. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31826. {
  31827. front: {
  31828. height: math.unit(5 + 2/12, "feet"),
  31829. weight: math.unit(200, "lb"),
  31830. name: "Front",
  31831. image: {
  31832. source: "./media/characters/noraly/front.svg",
  31833. extra: 4985/4773,
  31834. bottom: 150/5135
  31835. }
  31836. },
  31837. full: {
  31838. height: math.unit(5 + 2/12, "feet"),
  31839. weight: math.unit(164, "lb"),
  31840. name: "Full",
  31841. image: {
  31842. source: "./media/characters/noraly/full.svg",
  31843. extra: 1114/1059,
  31844. bottom: 35/1149
  31845. }
  31846. },
  31847. fuller: {
  31848. height: math.unit(5 + 2/12, "feet"),
  31849. weight: math.unit(230, "lb"),
  31850. name: "Fuller",
  31851. image: {
  31852. source: "./media/characters/noraly/fuller.svg",
  31853. extra: 1114/1059,
  31854. bottom: 35/1149
  31855. }
  31856. },
  31857. fullest: {
  31858. height: math.unit(5 + 2/12, "feet"),
  31859. weight: math.unit(300, "lb"),
  31860. name: "Fullest",
  31861. image: {
  31862. source: "./media/characters/noraly/fullest.svg",
  31863. extra: 1114/1059,
  31864. bottom: 35/1149
  31865. }
  31866. },
  31867. },
  31868. [
  31869. {
  31870. name: "Normal",
  31871. height: math.unit(5 + 2/12, "feet"),
  31872. default: true
  31873. },
  31874. ]
  31875. ))
  31876. characterMakers.push(() => makeCharacter(
  31877. { name: "Pera", species: ["snake"], tags: ["naga"] },
  31878. {
  31879. front: {
  31880. height: math.unit(5 + 2/12, "feet"),
  31881. weight: math.unit(210, "lb"),
  31882. name: "Front",
  31883. image: {
  31884. source: "./media/characters/pera/front.svg",
  31885. extra: 1560/1531,
  31886. bottom: 165/1725
  31887. }
  31888. },
  31889. back: {
  31890. height: math.unit(5 + 2/12, "feet"),
  31891. weight: math.unit(210, "lb"),
  31892. name: "Back",
  31893. image: {
  31894. source: "./media/characters/pera/back.svg",
  31895. extra: 1523/1493,
  31896. bottom: 152/1675
  31897. }
  31898. },
  31899. dick: {
  31900. height: math.unit(2.4, "feet"),
  31901. name: "Dick",
  31902. image: {
  31903. source: "./media/characters/pera/dick.svg"
  31904. }
  31905. },
  31906. },
  31907. [
  31908. {
  31909. name: "Normal",
  31910. height: math.unit(5 + 2/12, "feet"),
  31911. default: true
  31912. },
  31913. ]
  31914. ))
  31915. characterMakers.push(() => makeCharacter(
  31916. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  31917. {
  31918. front: {
  31919. height: math.unit(12, "feet"),
  31920. weight: math.unit(3200, "lb"),
  31921. name: "Front",
  31922. image: {
  31923. source: "./media/characters/julian/front.svg",
  31924. extra: 2962/2701,
  31925. bottom: 184/3146
  31926. }
  31927. },
  31928. maw: {
  31929. height: math.unit(5.35, "feet"),
  31930. name: "Maw",
  31931. image: {
  31932. source: "./media/characters/julian/maw.svg"
  31933. }
  31934. },
  31935. paw: {
  31936. height: math.unit(3.07, "feet"),
  31937. name: "Paw",
  31938. image: {
  31939. source: "./media/characters/julian/paw.svg"
  31940. }
  31941. },
  31942. },
  31943. [
  31944. {
  31945. name: "Default",
  31946. height: math.unit(12, "feet"),
  31947. default: true
  31948. },
  31949. {
  31950. name: "Big",
  31951. height: math.unit(50, "feet")
  31952. },
  31953. {
  31954. name: "Really Big",
  31955. height: math.unit(1, "mile")
  31956. },
  31957. {
  31958. name: "Extremely Big",
  31959. height: math.unit(100, "miles")
  31960. },
  31961. {
  31962. name: "Planet Hugger",
  31963. height: math.unit(200, "megameters")
  31964. },
  31965. {
  31966. name: "Unreasonably Big",
  31967. height: math.unit(1e300, "meters")
  31968. },
  31969. ]
  31970. ))
  31971. characterMakers.push(() => makeCharacter(
  31972. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  31973. {
  31974. solgooleo: {
  31975. height: math.unit(4, "meters"),
  31976. weight: math.unit(6000*1.5, "kg"),
  31977. volume: math.unit(6000, "liters"),
  31978. name: "Solgooleo",
  31979. image: {
  31980. source: "./media/characters/pi/solgooleo.svg",
  31981. extra: 388/331,
  31982. bottom: 29/417
  31983. }
  31984. },
  31985. },
  31986. [
  31987. {
  31988. name: "Normal",
  31989. height: math.unit(4, "meters"),
  31990. default: true
  31991. },
  31992. ]
  31993. ))
  31994. characterMakers.push(() => makeCharacter(
  31995. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  31996. {
  31997. front: {
  31998. height: math.unit(8 + 2/12, "feet"),
  31999. weight: math.unit(4, "tons"),
  32000. name: "Front",
  32001. image: {
  32002. source: "./media/characters/shaun/front.svg",
  32003. extra: 1550/1505,
  32004. bottom: 353/1903
  32005. }
  32006. },
  32007. },
  32008. [
  32009. {
  32010. name: "Lorg",
  32011. height: math.unit(8 + 2/12, "feet"),
  32012. default: true
  32013. },
  32014. ]
  32015. ))
  32016. characterMakers.push(() => makeCharacter(
  32017. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32018. {
  32019. front: {
  32020. height: math.unit(7, "feet"),
  32021. name: "Front",
  32022. image: {
  32023. source: "./media/characters/sini/front.svg",
  32024. extra: 726/678,
  32025. bottom: 35/761
  32026. }
  32027. },
  32028. back: {
  32029. height: math.unit(7, "feet"),
  32030. name: "Back",
  32031. image: {
  32032. source: "./media/characters/sini/back.svg",
  32033. extra: 743/701,
  32034. bottom: 12/755
  32035. }
  32036. },
  32037. mawAnthro: {
  32038. height: math.unit(2.14, "feet"),
  32039. name: "Maw (Anthro)",
  32040. image: {
  32041. source: "./media/characters/sini/maw-anthro.svg"
  32042. }
  32043. },
  32044. dick: {
  32045. height: math.unit(1.45, "feet"),
  32046. name: "Dick (Anthro)",
  32047. image: {
  32048. source: "./media/characters/sini/dick-anthro.svg"
  32049. }
  32050. },
  32051. feral: {
  32052. height: math.unit(13, "feet"),
  32053. name: "Feral",
  32054. image: {
  32055. source: "./media/characters/sini/feral.svg",
  32056. extra: 814/605,
  32057. bottom: 11/825
  32058. }
  32059. },
  32060. mawFeral: {
  32061. height: math.unit(4.6, "feet"),
  32062. name: "Maw-feral",
  32063. image: {
  32064. source: "./media/characters/sini/maw-feral.svg"
  32065. }
  32066. },
  32067. footFeral: {
  32068. height: math.unit(4.2, "feet"),
  32069. name: "Foot-feral",
  32070. image: {
  32071. source: "./media/characters/sini/foot-feral.svg"
  32072. }
  32073. },
  32074. },
  32075. [
  32076. {
  32077. name: "Normal",
  32078. height: math.unit(7, "feet"),
  32079. default: true
  32080. },
  32081. ]
  32082. ))
  32083. characterMakers.push(() => makeCharacter(
  32084. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32085. {
  32086. side: {
  32087. height: math.unit(13, "meters"),
  32088. weight: math.unit(9072, "kg"),
  32089. name: "Side",
  32090. image: {
  32091. source: "./media/characters/raylldo/side.svg",
  32092. extra: 403/344,
  32093. bottom: 42/445
  32094. }
  32095. },
  32096. leaping: {
  32097. height: math.unit(12.3, "meters"),
  32098. weight: math.unit(9072, "kg"),
  32099. name: "Leaping",
  32100. image: {
  32101. source: "./media/characters/raylldo/leaping.svg",
  32102. extra: 470/249,
  32103. bottom: 13/483
  32104. }
  32105. },
  32106. flying: {
  32107. height: math.unit(18, "meters"),
  32108. weight: math.unit(9072, "kg"),
  32109. name: "Flying",
  32110. image: {
  32111. source: "./media/characters/raylldo/flying.svg"
  32112. }
  32113. },
  32114. head: {
  32115. height: math.unit(5.85, "meters"),
  32116. name: "Head",
  32117. image: {
  32118. source: "./media/characters/raylldo/head.svg"
  32119. }
  32120. },
  32121. maw: {
  32122. height: math.unit(5.32, "meters"),
  32123. name: "Maw",
  32124. image: {
  32125. source: "./media/characters/raylldo/maw.svg"
  32126. }
  32127. },
  32128. eye: {
  32129. height: math.unit(0.54, "meters"),
  32130. name: "Eye",
  32131. image: {
  32132. source: "./media/characters/raylldo/eye.svg"
  32133. }
  32134. },
  32135. },
  32136. [
  32137. {
  32138. name: "Normal",
  32139. height: math.unit(13, "meters"),
  32140. default: true
  32141. },
  32142. ]
  32143. ))
  32144. characterMakers.push(() => makeCharacter(
  32145. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32146. {
  32147. anthroFront: {
  32148. height: math.unit(9, "feet"),
  32149. weight: math.unit(600, "lb"),
  32150. name: "Anthro (Front)",
  32151. image: {
  32152. source: "./media/characters/glint/anthro-front.svg",
  32153. extra: 1097/1018,
  32154. bottom: 28/1125
  32155. }
  32156. },
  32157. anthroBack: {
  32158. height: math.unit(9, "feet"),
  32159. weight: math.unit(600, "lb"),
  32160. name: "Anthro (Back)",
  32161. image: {
  32162. source: "./media/characters/glint/anthro-back.svg",
  32163. extra: 1154/997,
  32164. bottom: 36/1190
  32165. }
  32166. },
  32167. feral: {
  32168. height: math.unit(11, "feet"),
  32169. weight: math.unit(50000, "lb"),
  32170. name: "Feral",
  32171. image: {
  32172. source: "./media/characters/glint/feral.svg",
  32173. extra: 3035/1585,
  32174. bottom: 1169/4204
  32175. }
  32176. },
  32177. dickAnthro: {
  32178. height: math.unit(0.7, "meters"),
  32179. name: "Dick (Anthro)",
  32180. image: {
  32181. source: "./media/characters/glint/dick-anthro.svg"
  32182. }
  32183. },
  32184. dickFeral: {
  32185. height: math.unit(2.65, "meters"),
  32186. name: "Dick (Feral)",
  32187. image: {
  32188. source: "./media/characters/glint/dick-feral.svg"
  32189. }
  32190. },
  32191. slitHidden: {
  32192. height: math.unit(5.85, "meters"),
  32193. name: "Slit (Hidden)",
  32194. image: {
  32195. source: "./media/characters/glint/slit-hidden.svg"
  32196. }
  32197. },
  32198. slitErect: {
  32199. height: math.unit(5.85, "meters"),
  32200. name: "Slit (Erect)",
  32201. image: {
  32202. source: "./media/characters/glint/slit-erect.svg"
  32203. }
  32204. },
  32205. mawAnthro: {
  32206. height: math.unit(0.63, "meters"),
  32207. name: "Maw (Anthro)",
  32208. image: {
  32209. source: "./media/characters/glint/maw.svg"
  32210. }
  32211. },
  32212. mawFeral: {
  32213. height: math.unit(2.89, "meters"),
  32214. name: "Maw (Feral)",
  32215. image: {
  32216. source: "./media/characters/glint/maw.svg"
  32217. }
  32218. },
  32219. },
  32220. [
  32221. {
  32222. name: "Normal",
  32223. height: math.unit(9, "feet"),
  32224. default: true
  32225. },
  32226. ]
  32227. ))
  32228. characterMakers.push(() => makeCharacter(
  32229. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32230. {
  32231. side: {
  32232. height: math.unit(15, "feet"),
  32233. weight: math.unit(5000, "kg"),
  32234. name: "Side",
  32235. image: {
  32236. source: "./media/characters/kairne/side.svg",
  32237. extra: 979/811,
  32238. bottom: 13/992
  32239. }
  32240. },
  32241. front: {
  32242. height: math.unit(15, "feet"),
  32243. weight: math.unit(5000, "kg"),
  32244. name: "Front",
  32245. image: {
  32246. source: "./media/characters/kairne/front.svg",
  32247. extra: 908/814,
  32248. bottom: 26/934
  32249. }
  32250. },
  32251. sideNsfw: {
  32252. height: math.unit(15, "feet"),
  32253. weight: math.unit(5000, "kg"),
  32254. name: "Side (NSFW)",
  32255. image: {
  32256. source: "./media/characters/kairne/side-nsfw.svg",
  32257. extra: 979/811,
  32258. bottom: 13/992
  32259. }
  32260. },
  32261. frontNsfw: {
  32262. height: math.unit(15, "feet"),
  32263. weight: math.unit(5000, "kg"),
  32264. name: "Front (NSFW)",
  32265. image: {
  32266. source: "./media/characters/kairne/front-nsfw.svg",
  32267. extra: 908/814,
  32268. bottom: 26/934
  32269. }
  32270. },
  32271. dickCaged: {
  32272. height: math.unit(0.65, "meters"),
  32273. name: "Dick-caged",
  32274. image: {
  32275. source: "./media/characters/kairne/dick-caged.svg"
  32276. }
  32277. },
  32278. dick: {
  32279. height: math.unit(0.79, "meters"),
  32280. name: "Dick",
  32281. image: {
  32282. source: "./media/characters/kairne/dick.svg"
  32283. }
  32284. },
  32285. genitals: {
  32286. height: math.unit(1.29, "meters"),
  32287. name: "Genitals",
  32288. image: {
  32289. source: "./media/characters/kairne/genitals.svg"
  32290. }
  32291. },
  32292. maw: {
  32293. height: math.unit(1.73, "meters"),
  32294. name: "Maw",
  32295. image: {
  32296. source: "./media/characters/kairne/maw.svg"
  32297. }
  32298. },
  32299. },
  32300. [
  32301. {
  32302. name: "Normal",
  32303. height: math.unit(15, "feet"),
  32304. default: true
  32305. },
  32306. ]
  32307. ))
  32308. characterMakers.push(() => makeCharacter(
  32309. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32310. {
  32311. front: {
  32312. height: math.unit(5 + 8/12, "feet"),
  32313. weight: math.unit(139, "lb"),
  32314. name: "Front",
  32315. image: {
  32316. source: "./media/characters/biscuit-jackal/front.svg",
  32317. extra: 2106/1961,
  32318. bottom: 58/2164
  32319. }
  32320. },
  32321. back: {
  32322. height: math.unit(5 + 8/12, "feet"),
  32323. weight: math.unit(139, "lb"),
  32324. name: "Back",
  32325. image: {
  32326. source: "./media/characters/biscuit-jackal/back.svg",
  32327. extra: 2132/1976,
  32328. bottom: 57/2189
  32329. }
  32330. },
  32331. werejackal: {
  32332. height: math.unit(6 + 3/12, "feet"),
  32333. weight: math.unit(188, "lb"),
  32334. name: "Werejackal",
  32335. image: {
  32336. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32337. extra: 2373/2178,
  32338. bottom: 53/2426
  32339. }
  32340. },
  32341. },
  32342. [
  32343. {
  32344. name: "Normal",
  32345. height: math.unit(5 + 8/12, "feet"),
  32346. default: true
  32347. },
  32348. ]
  32349. ))
  32350. characterMakers.push(() => makeCharacter(
  32351. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32352. {
  32353. front: {
  32354. height: math.unit(140, "cm"),
  32355. weight: math.unit(45, "kg"),
  32356. name: "Front",
  32357. image: {
  32358. source: "./media/characters/tayra-white/front.svg",
  32359. extra: 2229/2192,
  32360. bottom: 75/2304
  32361. }
  32362. },
  32363. },
  32364. [
  32365. {
  32366. name: "Normal",
  32367. height: math.unit(140, "cm"),
  32368. default: true
  32369. },
  32370. ]
  32371. ))
  32372. characterMakers.push(() => makeCharacter(
  32373. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32374. {
  32375. front: {
  32376. height: math.unit(4 + 5/12, "feet"),
  32377. name: "Front",
  32378. image: {
  32379. source: "./media/characters/scoop/front.svg",
  32380. extra: 1257/1136,
  32381. bottom: 69/1326
  32382. }
  32383. },
  32384. back: {
  32385. height: math.unit(4 + 5/12, "feet"),
  32386. name: "Back",
  32387. image: {
  32388. source: "./media/characters/scoop/back.svg",
  32389. extra: 1321/1152,
  32390. bottom: 32/1353
  32391. }
  32392. },
  32393. maw: {
  32394. height: math.unit(0.68, "feet"),
  32395. name: "Maw",
  32396. image: {
  32397. source: "./media/characters/scoop/maw.svg"
  32398. }
  32399. },
  32400. },
  32401. [
  32402. {
  32403. name: "Really Small",
  32404. height: math.unit(1, "mm")
  32405. },
  32406. {
  32407. name: "Micro",
  32408. height: math.unit(1, "inch")
  32409. },
  32410. {
  32411. name: "Normal",
  32412. height: math.unit(4 + 5/12, "feet"),
  32413. default: true
  32414. },
  32415. {
  32416. name: "Macro",
  32417. height: math.unit(200, "feet")
  32418. },
  32419. {
  32420. name: "Megamacro",
  32421. height: math.unit(3240, "feet")
  32422. },
  32423. {
  32424. name: "Teramacro",
  32425. height: math.unit(2500, "miles")
  32426. },
  32427. ]
  32428. ))
  32429. characterMakers.push(() => makeCharacter(
  32430. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32431. {
  32432. front: {
  32433. height: math.unit(15 + 7/12, "feet"),
  32434. name: "Front",
  32435. image: {
  32436. source: "./media/characters/saphinara/front.svg",
  32437. extra: 604/546,
  32438. bottom: 19/623
  32439. }
  32440. },
  32441. side: {
  32442. height: math.unit(15 + 7/12, "feet"),
  32443. name: "Side",
  32444. image: {
  32445. source: "./media/characters/saphinara/side.svg",
  32446. extra: 605/547,
  32447. bottom: 6/611
  32448. }
  32449. },
  32450. back: {
  32451. height: math.unit(15 + 7/12, "feet"),
  32452. name: "Back",
  32453. image: {
  32454. source: "./media/characters/saphinara/back.svg",
  32455. extra: 591/531,
  32456. bottom: 13/604
  32457. }
  32458. },
  32459. frontTail: {
  32460. height: math.unit(15 + 7/12, "feet"),
  32461. name: "Front (Full Tail)",
  32462. image: {
  32463. source: "./media/characters/saphinara/front-tail.svg",
  32464. extra: 748/547,
  32465. bottom: 66/814
  32466. }
  32467. },
  32468. },
  32469. [
  32470. {
  32471. name: "Normal",
  32472. height: math.unit(15 + 7/12, "feet"),
  32473. default: true
  32474. },
  32475. {
  32476. name: "Angry",
  32477. height: math.unit(30 + 6/12, "feet")
  32478. },
  32479. {
  32480. name: "Enraged",
  32481. height: math.unit(102 + 1/12, "feet")
  32482. },
  32483. ]
  32484. ))
  32485. characterMakers.push(() => makeCharacter(
  32486. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32487. {
  32488. front: {
  32489. height: math.unit(6 + 8/12, "feet"),
  32490. weight: math.unit(300, "lb"),
  32491. name: "Front",
  32492. image: {
  32493. source: "./media/characters/jrain/front.svg",
  32494. extra: 3039/2865,
  32495. bottom: 399/3438
  32496. }
  32497. },
  32498. back: {
  32499. height: math.unit(6 + 8/12, "feet"),
  32500. weight: math.unit(300, "lb"),
  32501. name: "Back",
  32502. image: {
  32503. source: "./media/characters/jrain/back.svg",
  32504. extra: 3089/2938,
  32505. bottom: 172/3261
  32506. }
  32507. },
  32508. head: {
  32509. height: math.unit(2.14, "feet"),
  32510. name: "Head",
  32511. image: {
  32512. source: "./media/characters/jrain/head.svg"
  32513. }
  32514. },
  32515. maw: {
  32516. height: math.unit(1.77, "feet"),
  32517. name: "Maw",
  32518. image: {
  32519. source: "./media/characters/jrain/maw.svg"
  32520. }
  32521. },
  32522. leftHand: {
  32523. height: math.unit(1.1, "feet"),
  32524. name: "Left Hand",
  32525. image: {
  32526. source: "./media/characters/jrain/left-hand.svg"
  32527. }
  32528. },
  32529. rightHand: {
  32530. height: math.unit(1.1, "feet"),
  32531. name: "Right Hand",
  32532. image: {
  32533. source: "./media/characters/jrain/right-hand.svg"
  32534. }
  32535. },
  32536. eye: {
  32537. height: math.unit(0.35, "feet"),
  32538. name: "Eye",
  32539. image: {
  32540. source: "./media/characters/jrain/eye.svg"
  32541. }
  32542. },
  32543. },
  32544. [
  32545. {
  32546. name: "Normal",
  32547. height: math.unit(6 + 8/12, "feet"),
  32548. default: true
  32549. },
  32550. {
  32551. name: "Casually Large",
  32552. height: math.unit(25, "feet")
  32553. },
  32554. {
  32555. name: "Giant",
  32556. height: math.unit(100, "feet")
  32557. },
  32558. {
  32559. name: "Kaiju",
  32560. height: math.unit(300, "feet")
  32561. },
  32562. ]
  32563. ))
  32564. characterMakers.push(() => makeCharacter(
  32565. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32566. {
  32567. dragon: {
  32568. height: math.unit(5, "meters"),
  32569. name: "Dragon",
  32570. image: {
  32571. source: "./media/characters/sabrina/dragon.svg",
  32572. extra: 3670 / 2365,
  32573. bottom: 333 / 4003
  32574. }
  32575. },
  32576. gryphon: {
  32577. height: math.unit(3, "meters"),
  32578. name: "Gryphon",
  32579. image: {
  32580. source: "./media/characters/sabrina/gryphon.svg",
  32581. extra: 1576 / 945,
  32582. bottom: 71 / 1647
  32583. }
  32584. },
  32585. snake: {
  32586. height: math.unit(12, "meters"),
  32587. name: "Snake",
  32588. image: {
  32589. source: "./media/characters/sabrina/snake.svg",
  32590. extra: 1758 / 1320,
  32591. bottom: 186 / 1944
  32592. }
  32593. },
  32594. collar: {
  32595. height: math.unit(1.86, "meters"),
  32596. name: "Collar",
  32597. image: {
  32598. source: "./media/characters/sabrina/collar.svg"
  32599. }
  32600. },
  32601. eye: {
  32602. height: math.unit(0.53, "meters"),
  32603. name: "Eye",
  32604. image: {
  32605. source: "./media/characters/sabrina/eye.svg"
  32606. }
  32607. },
  32608. foot: {
  32609. height: math.unit(1.86, "meters"),
  32610. name: "Foot",
  32611. image: {
  32612. source: "./media/characters/sabrina/foot.svg"
  32613. }
  32614. },
  32615. hand: {
  32616. height: math.unit(1.32, "meters"),
  32617. name: "Hand",
  32618. image: {
  32619. source: "./media/characters/sabrina/hand.svg"
  32620. }
  32621. },
  32622. head: {
  32623. height: math.unit(2.44, "meters"),
  32624. name: "Head",
  32625. image: {
  32626. source: "./media/characters/sabrina/head.svg"
  32627. }
  32628. },
  32629. headAngry: {
  32630. height: math.unit(2.44, "meters"),
  32631. name: "Head (Angry))",
  32632. image: {
  32633. source: "./media/characters/sabrina/head-angry.svg"
  32634. }
  32635. },
  32636. maw: {
  32637. height: math.unit(1.65, "meters"),
  32638. name: "Maw",
  32639. image: {
  32640. source: "./media/characters/sabrina/maw.svg"
  32641. }
  32642. },
  32643. spikes: {
  32644. height: math.unit(1.69, "meters"),
  32645. name: "Spikes",
  32646. image: {
  32647. source: "./media/characters/sabrina/spikes.svg"
  32648. }
  32649. },
  32650. stomach: {
  32651. height: math.unit(1.15, "meters"),
  32652. name: "Stomach",
  32653. image: {
  32654. source: "./media/characters/sabrina/stomach.svg"
  32655. }
  32656. },
  32657. tongue: {
  32658. height: math.unit(1.27, "meters"),
  32659. name: "Tongue",
  32660. image: {
  32661. source: "./media/characters/sabrina/tongue.svg"
  32662. }
  32663. },
  32664. wingDorsal: {
  32665. height: math.unit(4.85, "meters"),
  32666. name: "Wing (Dorsal)",
  32667. image: {
  32668. source: "./media/characters/sabrina/wing-dorsal.svg"
  32669. }
  32670. },
  32671. wingVentral: {
  32672. height: math.unit(4.85, "meters"),
  32673. name: "Wing (Ventral)",
  32674. image: {
  32675. source: "./media/characters/sabrina/wing-ventral.svg"
  32676. }
  32677. },
  32678. },
  32679. [
  32680. {
  32681. name: "Normal",
  32682. height: math.unit(5, "meters"),
  32683. default: true
  32684. },
  32685. ]
  32686. ))
  32687. characterMakers.push(() => makeCharacter(
  32688. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32689. {
  32690. frontMaid: {
  32691. height: math.unit(5 + 5/12, "feet"),
  32692. weight: math.unit(130, "lb"),
  32693. name: "Front (Maid)",
  32694. image: {
  32695. source: "./media/characters/midnight-tales/front-maid.svg",
  32696. extra: 489/454,
  32697. bottom: 61/550
  32698. }
  32699. },
  32700. frontFormal: {
  32701. height: math.unit(5 + 5/12, "feet"),
  32702. weight: math.unit(130, "lb"),
  32703. name: "Front (Formal)",
  32704. image: {
  32705. source: "./media/characters/midnight-tales/front-formal.svg",
  32706. extra: 489/454,
  32707. bottom: 61/550
  32708. }
  32709. },
  32710. back: {
  32711. height: math.unit(5 + 5/12, "feet"),
  32712. weight: math.unit(130, "lb"),
  32713. name: "Back",
  32714. image: {
  32715. source: "./media/characters/midnight-tales/back.svg",
  32716. extra: 498/456,
  32717. bottom: 33/531
  32718. }
  32719. },
  32720. frontBeast: {
  32721. height: math.unit(40, "feet"),
  32722. weight: math.unit(64000, "lb"),
  32723. name: "Front (Beast)",
  32724. image: {
  32725. source: "./media/characters/midnight-tales/front-beast.svg",
  32726. extra: 927/860,
  32727. bottom: 53/980
  32728. }
  32729. },
  32730. backBeast: {
  32731. height: math.unit(40, "feet"),
  32732. weight: math.unit(64000, "lb"),
  32733. name: "Back (Beast)",
  32734. image: {
  32735. source: "./media/characters/midnight-tales/back-beast.svg",
  32736. extra: 929/855,
  32737. bottom: 16/945
  32738. }
  32739. },
  32740. footBeast: {
  32741. height: math.unit(6.7, "feet"),
  32742. name: "Foot (Beast)",
  32743. image: {
  32744. source: "./media/characters/midnight-tales/foot-beast.svg"
  32745. }
  32746. },
  32747. headBeast: {
  32748. height: math.unit(8, "feet"),
  32749. name: "Head (Beast)",
  32750. image: {
  32751. source: "./media/characters/midnight-tales/head-beast.svg"
  32752. }
  32753. },
  32754. },
  32755. [
  32756. {
  32757. name: "Normal",
  32758. height: math.unit(5 + 5 / 12, "feet"),
  32759. default: true
  32760. },
  32761. {
  32762. name: "Macro",
  32763. height: math.unit(25, "feet")
  32764. },
  32765. ]
  32766. ))
  32767. characterMakers.push(() => makeCharacter(
  32768. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  32769. {
  32770. front: {
  32771. height: math.unit(5 + 10/12, "feet"),
  32772. name: "Front",
  32773. image: {
  32774. source: "./media/characters/argon/front.svg",
  32775. extra: 2009/1935,
  32776. bottom: 118/2127
  32777. }
  32778. },
  32779. back: {
  32780. height: math.unit(5 + 10/12, "feet"),
  32781. name: "Back",
  32782. image: {
  32783. source: "./media/characters/argon/back.svg",
  32784. extra: 2047/1992,
  32785. bottom: 20/2067
  32786. }
  32787. },
  32788. frontDressed: {
  32789. height: math.unit(5 + 10/12, "feet"),
  32790. name: "Front (Dressed)",
  32791. image: {
  32792. source: "./media/characters/argon/front-dressed.svg",
  32793. extra: 2009/1935,
  32794. bottom: 118/2127
  32795. }
  32796. },
  32797. },
  32798. [
  32799. {
  32800. name: "Normal",
  32801. height: math.unit(5 + 10/12, "feet"),
  32802. default: true
  32803. },
  32804. ]
  32805. ))
  32806. characterMakers.push(() => makeCharacter(
  32807. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  32808. {
  32809. front: {
  32810. height: math.unit(8 + 6/12, "feet"),
  32811. weight: math.unit(1150, "lb"),
  32812. name: "Front",
  32813. image: {
  32814. source: "./media/characters/kichi/front.svg",
  32815. extra: 1267/1164,
  32816. bottom: 61/1328
  32817. }
  32818. },
  32819. back: {
  32820. height: math.unit(8 + 6/12, "feet"),
  32821. weight: math.unit(1150, "lb"),
  32822. name: "Back",
  32823. image: {
  32824. source: "./media/characters/kichi/back.svg",
  32825. extra: 1273/1166,
  32826. bottom: 33/1306
  32827. }
  32828. },
  32829. },
  32830. [
  32831. {
  32832. name: "Normal",
  32833. height: math.unit(8 + 6/12, "feet"),
  32834. default: true
  32835. },
  32836. ]
  32837. ))
  32838. characterMakers.push(() => makeCharacter(
  32839. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  32840. {
  32841. front: {
  32842. height: math.unit(6, "feet"),
  32843. weight: math.unit(210, "lb"),
  32844. name: "Front",
  32845. image: {
  32846. source: "./media/characters/manetel-greyscale/front.svg",
  32847. extra: 350/312,
  32848. bottom: 8/358
  32849. }
  32850. },
  32851. },
  32852. [
  32853. {
  32854. name: "Micro",
  32855. height: math.unit(2, "inches")
  32856. },
  32857. {
  32858. name: "Normal",
  32859. height: math.unit(6, "feet"),
  32860. default: true
  32861. },
  32862. {
  32863. name: "Minimacro",
  32864. height: math.unit(17, "feet")
  32865. },
  32866. {
  32867. name: "Macro",
  32868. height: math.unit(117, "feet")
  32869. },
  32870. ]
  32871. ))
  32872. characterMakers.push(() => makeCharacter(
  32873. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  32874. {
  32875. side: {
  32876. height: math.unit(5 + 1/12, "feet"),
  32877. weight: math.unit(418, "lb"),
  32878. name: "Side",
  32879. image: {
  32880. source: "./media/characters/softpurr/side.svg",
  32881. extra: 1993/1945,
  32882. bottom: 134/2127
  32883. }
  32884. },
  32885. front: {
  32886. height: math.unit(5 + 1/12, "feet"),
  32887. weight: math.unit(418, "lb"),
  32888. name: "Front",
  32889. image: {
  32890. source: "./media/characters/softpurr/front.svg",
  32891. extra: 1950/1856,
  32892. bottom: 174/2124
  32893. }
  32894. },
  32895. paw: {
  32896. height: math.unit(1, "feet"),
  32897. name: "Paw",
  32898. image: {
  32899. source: "./media/characters/softpurr/paw.svg"
  32900. }
  32901. },
  32902. },
  32903. [
  32904. {
  32905. name: "Normal",
  32906. height: math.unit(5 + 1/12, "feet"),
  32907. default: true
  32908. },
  32909. ]
  32910. ))
  32911. characterMakers.push(() => makeCharacter(
  32912. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  32913. {
  32914. front: {
  32915. height: math.unit(260, "meters"),
  32916. name: "Front",
  32917. image: {
  32918. source: "./media/characters/anahita/front.svg",
  32919. extra: 665/635,
  32920. bottom: 89/754
  32921. }
  32922. },
  32923. },
  32924. [
  32925. {
  32926. name: "Macro",
  32927. height: math.unit(260, "meters"),
  32928. default: true
  32929. },
  32930. ]
  32931. ))
  32932. characterMakers.push(() => makeCharacter(
  32933. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  32934. {
  32935. front: {
  32936. height: math.unit(4 + 10/12, "feet"),
  32937. weight: math.unit(160, "lb"),
  32938. name: "Front",
  32939. image: {
  32940. source: "./media/characters/chip-mouse/front.svg",
  32941. extra: 3528/3408,
  32942. bottom: 0/3528
  32943. }
  32944. },
  32945. frontNsfw: {
  32946. height: math.unit(4 + 10/12, "feet"),
  32947. weight: math.unit(160, "lb"),
  32948. name: "Front (NSFW)",
  32949. image: {
  32950. source: "./media/characters/chip-mouse/front-nsfw.svg",
  32951. extra: 3528/3408,
  32952. bottom: 0/3528
  32953. }
  32954. },
  32955. },
  32956. [
  32957. {
  32958. name: "Normal",
  32959. height: math.unit(4 + 10/12, "feet"),
  32960. default: true
  32961. },
  32962. ]
  32963. ))
  32964. characterMakers.push(() => makeCharacter(
  32965. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  32966. {
  32967. side: {
  32968. height: math.unit(10, "feet"),
  32969. weight: math.unit(14000, "lb"),
  32970. name: "Side",
  32971. image: {
  32972. source: "./media/characters/kremm/side.svg",
  32973. extra: 1390/1053,
  32974. bottom: 90/1480
  32975. }
  32976. },
  32977. gut: {
  32978. height: math.unit(5.8, "feet"),
  32979. name: "Gut",
  32980. image: {
  32981. source: "./media/characters/kremm/gut.svg"
  32982. }
  32983. },
  32984. ass: {
  32985. height: math.unit(6.1, "feet"),
  32986. name: "Ass",
  32987. image: {
  32988. source: "./media/characters/kremm/ass.svg"
  32989. }
  32990. },
  32991. jaws: {
  32992. height: math.unit(2.2, "feet"),
  32993. name: "Jaws",
  32994. image: {
  32995. source: "./media/characters/kremm/jaws.svg"
  32996. }
  32997. },
  32998. dick: {
  32999. height: math.unit(4.26, "feet"),
  33000. name: "Dick",
  33001. image: {
  33002. source: "./media/characters/kremm/dick.svg"
  33003. }
  33004. },
  33005. },
  33006. [
  33007. {
  33008. name: "Normal",
  33009. height: math.unit(10, "feet"),
  33010. default: true
  33011. },
  33012. ]
  33013. ))
  33014. characterMakers.push(() => makeCharacter(
  33015. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33016. {
  33017. front: {
  33018. height: math.unit(30, "stories"),
  33019. name: "Front",
  33020. image: {
  33021. source: "./media/characters/kai/front.svg",
  33022. extra: 1892/1718,
  33023. bottom: 162/2054
  33024. }
  33025. },
  33026. },
  33027. [
  33028. {
  33029. name: "Macro",
  33030. height: math.unit(30, "stories"),
  33031. default: true
  33032. },
  33033. ]
  33034. ))
  33035. characterMakers.push(() => makeCharacter(
  33036. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33037. {
  33038. front: {
  33039. height: math.unit(6 + 4/12, "feet"),
  33040. weight: math.unit(145, "lb"),
  33041. name: "Front",
  33042. image: {
  33043. source: "./media/characters/sykes/front.svg",
  33044. extra: 1321 / 1187,
  33045. bottom: 66 / 1387
  33046. }
  33047. },
  33048. back: {
  33049. height: math.unit(6 + 4/12, "feet"),
  33050. weight: math.unit(145, "lb"),
  33051. name: "Back",
  33052. image: {
  33053. source: "./media/characters/sykes/back.svg",
  33054. extra: 1326/1181,
  33055. bottom: 31/1357
  33056. }
  33057. },
  33058. handBack: {
  33059. height: math.unit(0.9, "feet"),
  33060. name: "Hand (Back)",
  33061. image: {
  33062. source: "./media/characters/sykes/hand-back.svg"
  33063. }
  33064. },
  33065. handFront: {
  33066. height: math.unit(0.839, "feet"),
  33067. name: "Hand (Front)",
  33068. image: {
  33069. source: "./media/characters/sykes/hand-front.svg"
  33070. }
  33071. },
  33072. leftFoot: {
  33073. height: math.unit(1.2, "feet"),
  33074. name: "Foot (Left)",
  33075. image: {
  33076. source: "./media/characters/sykes/foot-left.svg"
  33077. }
  33078. },
  33079. rightFoot: {
  33080. height: math.unit(1.2, "feet"),
  33081. name: "Foot (Right)",
  33082. image: {
  33083. source: "./media/characters/sykes/foot-right.svg"
  33084. }
  33085. },
  33086. maw: {
  33087. height: math.unit(1.93, "feet"),
  33088. name: "Maw",
  33089. image: {
  33090. source: "./media/characters/sykes/maw.svg"
  33091. }
  33092. },
  33093. teeth: {
  33094. height: math.unit(0.51, "feet"),
  33095. name: "Teeth",
  33096. image: {
  33097. source: "./media/characters/sykes/teeth.svg"
  33098. }
  33099. },
  33100. tongue: {
  33101. height: math.unit(2.13, "feet"),
  33102. name: "Tongue",
  33103. image: {
  33104. source: "./media/characters/sykes/tongue.svg"
  33105. }
  33106. },
  33107. uvula: {
  33108. height: math.unit(0.16, "feet"),
  33109. name: "Uvula",
  33110. image: {
  33111. source: "./media/characters/sykes/uvula.svg"
  33112. }
  33113. },
  33114. collar: {
  33115. height: math.unit(0.287, "feet"),
  33116. name: "Collar",
  33117. image: {
  33118. source: "./media/characters/sykes/collar.svg"
  33119. }
  33120. },
  33121. },
  33122. [
  33123. {
  33124. name: "Shrunken",
  33125. height: math.unit(5, "inches")
  33126. },
  33127. {
  33128. name: "Normal",
  33129. height: math.unit(6 + 4 / 12, "feet"),
  33130. default: true
  33131. },
  33132. {
  33133. name: "Big",
  33134. height: math.unit(15, "feet")
  33135. },
  33136. ]
  33137. ))
  33138. characterMakers.push(() => makeCharacter(
  33139. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33140. {
  33141. front: {
  33142. height: math.unit(5 + 8/12, "feet"),
  33143. weight: math.unit(190, "lb"),
  33144. name: "Front",
  33145. image: {
  33146. source: "./media/characters/oven-otter/front.svg",
  33147. extra: 1809/1740,
  33148. bottom: 181/1990
  33149. }
  33150. },
  33151. back: {
  33152. height: math.unit(5 + 8/12, "feet"),
  33153. weight: math.unit(190, "lb"),
  33154. name: "Back",
  33155. image: {
  33156. source: "./media/characters/oven-otter/back.svg",
  33157. extra: 1709/1635,
  33158. bottom: 118/1827
  33159. }
  33160. },
  33161. hand: {
  33162. height: math.unit(1.07, "feet"),
  33163. name: "Hand",
  33164. image: {
  33165. source: "./media/characters/oven-otter/hand.svg"
  33166. }
  33167. },
  33168. beans: {
  33169. height: math.unit(1.74, "feet"),
  33170. name: "Beans",
  33171. image: {
  33172. source: "./media/characters/oven-otter/beans.svg"
  33173. }
  33174. },
  33175. },
  33176. [
  33177. {
  33178. name: "Micro",
  33179. height: math.unit(0.5, "inches")
  33180. },
  33181. {
  33182. name: "Normal",
  33183. height: math.unit(5 + 8/12, "feet"),
  33184. default: true
  33185. },
  33186. {
  33187. name: "Macro",
  33188. height: math.unit(250, "feet")
  33189. },
  33190. {
  33191. name: "Really High",
  33192. height: math.unit(420, "feet")
  33193. },
  33194. ]
  33195. ))
  33196. characterMakers.push(() => makeCharacter(
  33197. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33198. {
  33199. front: {
  33200. height: math.unit(5, "meters"),
  33201. weight: math.unit(292000000000000, "kg"),
  33202. name: "Front",
  33203. image: {
  33204. source: "./media/characters/devourer/front.svg",
  33205. extra: 1800/1733,
  33206. bottom: 211/2011
  33207. }
  33208. },
  33209. maw: {
  33210. height: math.unit(1.1, "meter"),
  33211. name: "Maw",
  33212. image: {
  33213. source: "./media/characters/devourer/maw.svg"
  33214. }
  33215. },
  33216. },
  33217. [
  33218. {
  33219. name: "Small",
  33220. height: math.unit(3, "meters")
  33221. },
  33222. {
  33223. name: "Large",
  33224. height: math.unit(5, "meters"),
  33225. default: true
  33226. },
  33227. ]
  33228. ))
  33229. characterMakers.push(() => makeCharacter(
  33230. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33231. {
  33232. front: {
  33233. height: math.unit(6, "feet"),
  33234. weight: math.unit(400, "lb"),
  33235. name: "Front",
  33236. image: {
  33237. source: "./media/characters/ellarby/front.svg",
  33238. extra: 1909/1763,
  33239. bottom: 80/1989
  33240. }
  33241. },
  33242. back: {
  33243. height: math.unit(6, "feet"),
  33244. weight: math.unit(400, "lb"),
  33245. name: "Back",
  33246. image: {
  33247. source: "./media/characters/ellarby/back.svg",
  33248. extra: 1914/1784,
  33249. bottom: 172/2086
  33250. }
  33251. },
  33252. },
  33253. [
  33254. {
  33255. name: "Mischief",
  33256. height: math.unit(18, "inches")
  33257. },
  33258. {
  33259. name: "Trouble",
  33260. height: math.unit(12, "feet")
  33261. },
  33262. {
  33263. name: "Havoc",
  33264. height: math.unit(200, "feet"),
  33265. default: true
  33266. },
  33267. {
  33268. name: "Pandemonium",
  33269. height: math.unit(1, "mile")
  33270. },
  33271. {
  33272. name: "Catastrophe",
  33273. height: math.unit(100, "miles")
  33274. },
  33275. ]
  33276. ))
  33277. characterMakers.push(() => makeCharacter(
  33278. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33279. {
  33280. front: {
  33281. height: math.unit(4.7, "meters"),
  33282. weight: math.unit(6500, "kg"),
  33283. name: "Front",
  33284. image: {
  33285. source: "./media/characters/vex/front.svg",
  33286. extra: 1288/1140,
  33287. bottom: 100/1388
  33288. }
  33289. },
  33290. },
  33291. [
  33292. {
  33293. name: "Normal",
  33294. height: math.unit(4.7, "meters"),
  33295. default: true
  33296. },
  33297. ]
  33298. ))
  33299. characterMakers.push(() => makeCharacter(
  33300. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33301. {
  33302. normal: {
  33303. height: math.unit(6, "feet"),
  33304. weight: math.unit(350, "lb"),
  33305. name: "Normal",
  33306. image: {
  33307. source: "./media/characters/teshy/normal.svg",
  33308. extra: 1795/1735,
  33309. bottom: 16/1811
  33310. }
  33311. },
  33312. monsterFront: {
  33313. height: math.unit(12, "feet"),
  33314. weight: math.unit(4700, "lb"),
  33315. name: "Monster (Front)",
  33316. image: {
  33317. source: "./media/characters/teshy/monster-front.svg",
  33318. extra: 2042/2034,
  33319. bottom: 128/2170
  33320. }
  33321. },
  33322. monsterSide: {
  33323. height: math.unit(12, "feet"),
  33324. weight: math.unit(4700, "lb"),
  33325. name: "Monster (Side)",
  33326. image: {
  33327. source: "./media/characters/teshy/monster-side.svg",
  33328. extra: 2067/2056,
  33329. bottom: 70/2137
  33330. }
  33331. },
  33332. monsterBack: {
  33333. height: math.unit(12, "feet"),
  33334. weight: math.unit(4700, "lb"),
  33335. name: "Monster (Back)",
  33336. image: {
  33337. source: "./media/characters/teshy/monster-back.svg",
  33338. extra: 1921/1914,
  33339. bottom: 171/2092
  33340. }
  33341. },
  33342. },
  33343. [
  33344. {
  33345. name: "Normal",
  33346. height: math.unit(6, "feet"),
  33347. default: true
  33348. },
  33349. ]
  33350. ))
  33351. characterMakers.push(() => makeCharacter(
  33352. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33353. {
  33354. front: {
  33355. height: math.unit(6, "feet"),
  33356. name: "Front",
  33357. image: {
  33358. source: "./media/characters/ramey/front.svg",
  33359. extra: 790/787,
  33360. bottom: 27/817
  33361. }
  33362. },
  33363. },
  33364. [
  33365. {
  33366. name: "Normal",
  33367. height: math.unit(6, "feet"),
  33368. default: true
  33369. },
  33370. ]
  33371. ))
  33372. characterMakers.push(() => makeCharacter(
  33373. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33374. {
  33375. front: {
  33376. height: math.unit(5 + 5/12, "feet"),
  33377. weight: math.unit(120, "lb"),
  33378. name: "Front",
  33379. image: {
  33380. source: "./media/characters/phirae/front.svg",
  33381. extra: 2491/2436,
  33382. bottom: 38/2529
  33383. }
  33384. },
  33385. },
  33386. [
  33387. {
  33388. name: "Normal",
  33389. height: math.unit(5 + 5/12, "feet"),
  33390. default: true
  33391. },
  33392. ]
  33393. ))
  33394. characterMakers.push(() => makeCharacter(
  33395. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33396. {
  33397. front: {
  33398. height: math.unit(6, "feet"),
  33399. weight: math.unit(150, "lb"),
  33400. name: "Front",
  33401. image: {
  33402. source: "./media/characters/stagglas/front.svg",
  33403. extra: 962/882,
  33404. bottom: 53/1015
  33405. }
  33406. },
  33407. },
  33408. [
  33409. {
  33410. name: "Normal",
  33411. height: math.unit(5 + 3/12, "feet"),
  33412. default: true
  33413. },
  33414. ]
  33415. ))
  33416. characterMakers.push(() => makeCharacter(
  33417. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33418. {
  33419. front: {
  33420. height: math.unit(5 + 4/12, "feet"),
  33421. weight: math.unit(145, "lb"),
  33422. name: "Front",
  33423. image: {
  33424. source: "./media/characters/starra/front.svg",
  33425. extra: 1790/1691,
  33426. bottom: 91/1881
  33427. }
  33428. },
  33429. },
  33430. [
  33431. {
  33432. name: "Normal",
  33433. height: math.unit(5 + 4/12, "feet"),
  33434. default: true
  33435. },
  33436. ]
  33437. ))
  33438. characterMakers.push(() => makeCharacter(
  33439. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33440. {
  33441. front: {
  33442. height: math.unit(2.2, "meters"),
  33443. name: "Front",
  33444. image: {
  33445. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33446. extra: 1194/1005,
  33447. bottom: 25/1219
  33448. }
  33449. },
  33450. },
  33451. [
  33452. {
  33453. name: "Normal",
  33454. height: math.unit(2.2, "meters"),
  33455. default: true
  33456. },
  33457. ]
  33458. ))
  33459. characterMakers.push(() => makeCharacter(
  33460. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33461. {
  33462. side: {
  33463. height: math.unit(8 + 2/12, "feet"),
  33464. weight: math.unit(1240, "lb"),
  33465. name: "Side",
  33466. image: {
  33467. source: "./media/characters/mika-valentine/side.svg",
  33468. extra: 2670/2501,
  33469. bottom: 250/2920
  33470. }
  33471. },
  33472. },
  33473. [
  33474. {
  33475. name: "Normal",
  33476. height: math.unit(8 + 2/12, "feet"),
  33477. default: true
  33478. },
  33479. ]
  33480. ))
  33481. characterMakers.push(() => makeCharacter(
  33482. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33483. {
  33484. front: {
  33485. height: math.unit(7 + 2/12, "feet"),
  33486. name: "Front",
  33487. image: {
  33488. source: "./media/characters/xoltol/front.svg",
  33489. extra: 2212/2124,
  33490. bottom: 84/2296
  33491. }
  33492. },
  33493. side: {
  33494. height: math.unit(7 + 2/12, "feet"),
  33495. name: "Side",
  33496. image: {
  33497. source: "./media/characters/xoltol/side.svg",
  33498. extra: 2273/2197,
  33499. bottom: 26/2299
  33500. }
  33501. },
  33502. hand: {
  33503. height: math.unit(2.5, "feet"),
  33504. name: "Hand",
  33505. image: {
  33506. source: "./media/characters/xoltol/hand.svg"
  33507. }
  33508. },
  33509. },
  33510. [
  33511. {
  33512. name: "Small-ish",
  33513. height: math.unit(5 + 11/12, "feet")
  33514. },
  33515. {
  33516. name: "Normal",
  33517. height: math.unit(7 + 2/12, "feet")
  33518. },
  33519. {
  33520. name: "\"Macro\"",
  33521. height: math.unit(14 + 9/12, "feet"),
  33522. default: true
  33523. },
  33524. {
  33525. name: "Alternate Height",
  33526. height: math.unit(20, "feet")
  33527. },
  33528. {
  33529. name: "Actually Macro",
  33530. height: math.unit(100, "feet")
  33531. },
  33532. ]
  33533. ))
  33534. characterMakers.push(() => makeCharacter(
  33535. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33536. {
  33537. front: {
  33538. height: math.unit(5 + 2/12, "feet"),
  33539. name: "Front",
  33540. image: {
  33541. source: "./media/characters/kotetsu-redwood/front.svg",
  33542. extra: 1053/942,
  33543. bottom: 60/1113
  33544. }
  33545. },
  33546. },
  33547. [
  33548. {
  33549. name: "Normal",
  33550. height: math.unit(5 + 2/12, "feet"),
  33551. default: true
  33552. },
  33553. ]
  33554. ))
  33555. characterMakers.push(() => makeCharacter(
  33556. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33557. {
  33558. front: {
  33559. height: math.unit(2.4, "meters"),
  33560. weight: math.unit(125, "kg"),
  33561. name: "Front",
  33562. image: {
  33563. source: "./media/characters/lilith/front.svg",
  33564. extra: 1590/1513,
  33565. bottom: 203/1793
  33566. }
  33567. },
  33568. },
  33569. [
  33570. {
  33571. name: "Humanoid",
  33572. height: math.unit(2.4, "meters")
  33573. },
  33574. {
  33575. name: "Normal",
  33576. height: math.unit(6, "meters"),
  33577. default: true
  33578. },
  33579. {
  33580. name: "Largest",
  33581. height: math.unit(55, "meters")
  33582. },
  33583. ]
  33584. ))
  33585. characterMakers.push(() => makeCharacter(
  33586. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33587. {
  33588. front: {
  33589. height: math.unit(8 + 4/12, "feet"),
  33590. weight: math.unit(535, "lb"),
  33591. name: "Front",
  33592. image: {
  33593. source: "./media/characters/beh'kah-bolger/front.svg",
  33594. extra: 1660/1603,
  33595. bottom: 37/1697
  33596. }
  33597. },
  33598. },
  33599. [
  33600. {
  33601. name: "Normal",
  33602. height: math.unit(8 + 4/12, "feet"),
  33603. default: true
  33604. },
  33605. {
  33606. name: "Kaiju",
  33607. height: math.unit(250, "feet")
  33608. },
  33609. {
  33610. name: "Still Growing",
  33611. height: math.unit(10, "miles")
  33612. },
  33613. {
  33614. name: "Continental",
  33615. height: math.unit(5000, "miles")
  33616. },
  33617. {
  33618. name: "Final Form",
  33619. height: math.unit(2500000, "miles")
  33620. },
  33621. ]
  33622. ))
  33623. characterMakers.push(() => makeCharacter(
  33624. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33625. {
  33626. front: {
  33627. height: math.unit(7 + 2/12, "feet"),
  33628. weight: math.unit(230, "kg"),
  33629. name: "Front",
  33630. image: {
  33631. source: "./media/characters/tatyana-milewska/front.svg",
  33632. extra: 1199/1150,
  33633. bottom: 86/1285
  33634. }
  33635. },
  33636. },
  33637. [
  33638. {
  33639. name: "Normal",
  33640. height: math.unit(7 + 2/12, "feet"),
  33641. default: true
  33642. },
  33643. {
  33644. name: "Big",
  33645. height: math.unit(12, "feet")
  33646. },
  33647. {
  33648. name: "Minimacro",
  33649. height: math.unit(20, "feet")
  33650. },
  33651. {
  33652. name: "Macro",
  33653. height: math.unit(120, "feet")
  33654. },
  33655. ]
  33656. ))
  33657. characterMakers.push(() => makeCharacter(
  33658. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33659. {
  33660. front: {
  33661. height: math.unit(7 + 8/12, "feet"),
  33662. weight: math.unit(152, "kg"),
  33663. name: "Front",
  33664. image: {
  33665. source: "./media/characters/helen-arri/front.svg",
  33666. extra: 440/423,
  33667. bottom: 14/454
  33668. }
  33669. },
  33670. back: {
  33671. height: math.unit(7 + 8/12, "feet"),
  33672. weight: math.unit(152, "kg"),
  33673. name: "Back",
  33674. image: {
  33675. source: "./media/characters/helen-arri/back.svg",
  33676. extra: 443/426,
  33677. bottom: 8/451
  33678. }
  33679. },
  33680. },
  33681. [
  33682. {
  33683. name: "Normal",
  33684. height: math.unit(7 + 8/12, "feet"),
  33685. default: true
  33686. },
  33687. {
  33688. name: "Big",
  33689. height: math.unit(14, "feet")
  33690. },
  33691. {
  33692. name: "Minimacro",
  33693. height: math.unit(24, "feet")
  33694. },
  33695. {
  33696. name: "Macro",
  33697. height: math.unit(140, "feet")
  33698. },
  33699. ]
  33700. ))
  33701. characterMakers.push(() => makeCharacter(
  33702. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33703. {
  33704. front: {
  33705. height: math.unit(6, "meters"),
  33706. name: "Front",
  33707. image: {
  33708. source: "./media/characters/ehanu-rehu/front.svg",
  33709. extra: 1800/1800,
  33710. bottom: 59/1859
  33711. }
  33712. },
  33713. },
  33714. [
  33715. {
  33716. name: "Normal",
  33717. height: math.unit(6, "meters"),
  33718. default: true
  33719. },
  33720. ]
  33721. ))
  33722. characterMakers.push(() => makeCharacter(
  33723. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33724. {
  33725. front: {
  33726. height: math.unit(7 + 3/12, "feet"),
  33727. name: "Front",
  33728. image: {
  33729. source: "./media/characters/renholder/front.svg",
  33730. extra: 3096/2960,
  33731. bottom: 250/3346
  33732. }
  33733. },
  33734. },
  33735. [
  33736. {
  33737. name: "Normal Bat",
  33738. height: math.unit(7 + 3/12, "feet"),
  33739. default: true
  33740. },
  33741. {
  33742. name: "Slightly Tall Bat",
  33743. height: math.unit(100, "feet")
  33744. },
  33745. {
  33746. name: "Big Bat",
  33747. height: math.unit(1000, "feet")
  33748. },
  33749. {
  33750. name: "City-Sized Bat",
  33751. height: math.unit(200000, "feet")
  33752. },
  33753. {
  33754. name: "Bigger Bat",
  33755. height: math.unit(10000, "miles")
  33756. },
  33757. {
  33758. name: "Solar Sized Bat",
  33759. height: math.unit(100, "AU")
  33760. },
  33761. {
  33762. name: "Galactic Bat",
  33763. height: math.unit(200000, "lightyears")
  33764. },
  33765. {
  33766. name: "Universally Known Bat",
  33767. height: math.unit(1, "universe")
  33768. },
  33769. ]
  33770. ))
  33771. characterMakers.push(() => makeCharacter(
  33772. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  33773. {
  33774. front: {
  33775. height: math.unit(6 + 11/12, "feet"),
  33776. weight: math.unit(250, "lb"),
  33777. name: "Front",
  33778. image: {
  33779. source: "./media/characters/cookiecat/front.svg",
  33780. extra: 893/827,
  33781. bottom: 14/907
  33782. }
  33783. },
  33784. },
  33785. [
  33786. {
  33787. name: "Micro",
  33788. height: math.unit(3, "inches")
  33789. },
  33790. {
  33791. name: "Normal",
  33792. height: math.unit(6 + 11/12, "feet"),
  33793. default: true
  33794. },
  33795. {
  33796. name: "Macro",
  33797. height: math.unit(100, "feet")
  33798. },
  33799. {
  33800. name: "Macro+",
  33801. height: math.unit(404, "feet")
  33802. },
  33803. {
  33804. name: "Megamacro",
  33805. height: math.unit(165, "miles")
  33806. },
  33807. {
  33808. name: "Planetary",
  33809. height: math.unit(4600, "miles")
  33810. },
  33811. ]
  33812. ))
  33813. characterMakers.push(() => makeCharacter(
  33814. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  33815. {
  33816. front: {
  33817. height: math.unit(10 + 3/12, "feet"),
  33818. weight: math.unit(1500, "lb"),
  33819. name: "Front",
  33820. image: {
  33821. source: "./media/characters/tux-kusanagi/front.svg",
  33822. extra: 944/840,
  33823. bottom: 39/983
  33824. }
  33825. },
  33826. back: {
  33827. height: math.unit(10 + 3/12, "feet"),
  33828. weight: math.unit(1500, "lb"),
  33829. name: "Back",
  33830. image: {
  33831. source: "./media/characters/tux-kusanagi/back.svg",
  33832. extra: 941/842,
  33833. bottom: 28/969
  33834. }
  33835. },
  33836. rump: {
  33837. height: math.unit(5.25, "feet"),
  33838. name: "Rump",
  33839. image: {
  33840. source: "./media/characters/tux-kusanagi/rump.svg"
  33841. }
  33842. },
  33843. beak: {
  33844. height: math.unit(1.54, "feet"),
  33845. name: "Beak",
  33846. image: {
  33847. source: "./media/characters/tux-kusanagi/beak.svg"
  33848. }
  33849. },
  33850. },
  33851. [
  33852. {
  33853. name: "Normal",
  33854. height: math.unit(10 + 3/12, "feet"),
  33855. default: true
  33856. },
  33857. ]
  33858. ))
  33859. characterMakers.push(() => makeCharacter(
  33860. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  33861. {
  33862. front: {
  33863. height: math.unit(58, "feet"),
  33864. weight: math.unit(200, "tons"),
  33865. name: "Front",
  33866. image: {
  33867. source: "./media/characters/uzarmazari/front.svg",
  33868. extra: 1575/1455,
  33869. bottom: 152/1727
  33870. }
  33871. },
  33872. back: {
  33873. height: math.unit(58, "feet"),
  33874. weight: math.unit(200, "tons"),
  33875. name: "Back",
  33876. image: {
  33877. source: "./media/characters/uzarmazari/back.svg",
  33878. extra: 1585/1510,
  33879. bottom: 157/1742
  33880. }
  33881. },
  33882. head: {
  33883. height: math.unit(26, "feet"),
  33884. name: "Head",
  33885. image: {
  33886. source: "./media/characters/uzarmazari/head.svg"
  33887. }
  33888. },
  33889. },
  33890. [
  33891. {
  33892. name: "Normal",
  33893. height: math.unit(58, "feet"),
  33894. default: true
  33895. },
  33896. ]
  33897. ))
  33898. characterMakers.push(() => makeCharacter(
  33899. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  33900. {
  33901. side: {
  33902. height: math.unit(15, "feet"),
  33903. name: "Side",
  33904. image: {
  33905. source: "./media/characters/akitu/side.svg",
  33906. extra: 1421/1321,
  33907. bottom: 157/1578
  33908. }
  33909. },
  33910. front: {
  33911. height: math.unit(15, "feet"),
  33912. name: "Front",
  33913. image: {
  33914. source: "./media/characters/akitu/front.svg",
  33915. extra: 1435/1326,
  33916. bottom: 232/1667
  33917. }
  33918. },
  33919. },
  33920. [
  33921. {
  33922. name: "Normal",
  33923. height: math.unit(15, "feet"),
  33924. default: true
  33925. },
  33926. ]
  33927. ))
  33928. characterMakers.push(() => makeCharacter(
  33929. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  33930. {
  33931. front: {
  33932. height: math.unit(10 + 8/12, "feet"),
  33933. name: "Front",
  33934. image: {
  33935. source: "./media/characters/azalie-croixland/front.svg",
  33936. extra: 1972/1856,
  33937. bottom: 31/2003
  33938. }
  33939. },
  33940. },
  33941. [
  33942. {
  33943. name: "Original Height",
  33944. height: math.unit(5 + 4/12, "feet")
  33945. },
  33946. {
  33947. name: "Normal Height",
  33948. height: math.unit(10 + 8/12, "feet"),
  33949. default: true
  33950. },
  33951. ]
  33952. ))
  33953. characterMakers.push(() => makeCharacter(
  33954. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  33955. {
  33956. side: {
  33957. height: math.unit(7 + 1/12, "feet"),
  33958. weight: math.unit(245, "lb"),
  33959. name: "Side",
  33960. image: {
  33961. source: "./media/characters/kavus-kazian/side.svg",
  33962. extra: 349/342,
  33963. bottom: 15/364
  33964. }
  33965. },
  33966. },
  33967. [
  33968. {
  33969. name: "Normal",
  33970. height: math.unit(7 + 1/12, "feet"),
  33971. default: true
  33972. },
  33973. ]
  33974. ))
  33975. characterMakers.push(() => makeCharacter(
  33976. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  33977. {
  33978. normal: {
  33979. height: math.unit(5 + 11/12, "feet"),
  33980. name: "Normal",
  33981. image: {
  33982. source: "./media/characters/moonlight-rose/normal.svg",
  33983. extra: 1979/1835,
  33984. bottom: 14/1993
  33985. }
  33986. },
  33987. demon: {
  33988. height: math.unit(5, "km"),
  33989. name: "Demon",
  33990. image: {
  33991. source: "./media/characters/moonlight-rose/demon.svg",
  33992. extra: 986/916,
  33993. bottom: 28/1014
  33994. }
  33995. },
  33996. },
  33997. [
  33998. {
  33999. name: "\"Natural\" height",
  34000. height: math.unit(5 + 11/12, "feet")
  34001. },
  34002. {
  34003. name: "Comfortable Size",
  34004. height: math.unit(40, "meters")
  34005. },
  34006. {
  34007. name: "Common Size",
  34008. height: math.unit(50, "km"),
  34009. default: true
  34010. },
  34011. {
  34012. name: "Demonic",
  34013. height: math.unit(1.24415e+21, "meters")
  34014. },
  34015. ]
  34016. ))
  34017. characterMakers.push(() => makeCharacter(
  34018. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34019. {
  34020. front: {
  34021. height: math.unit(16, "feet"),
  34022. weight: math.unit(610, "kg"),
  34023. name: "Front",
  34024. image: {
  34025. source: "./media/characters/huckle/front.svg",
  34026. extra: 1731/1625,
  34027. bottom: 33/1764
  34028. }
  34029. },
  34030. back: {
  34031. height: math.unit(16, "feet"),
  34032. weight: math.unit(610, "kg"),
  34033. name: "Back",
  34034. image: {
  34035. source: "./media/characters/huckle/back.svg",
  34036. extra: 1738/1651,
  34037. bottom: 37/1775
  34038. }
  34039. },
  34040. laughing: {
  34041. height: math.unit(3.75, "feet"),
  34042. name: "Laughing",
  34043. image: {
  34044. source: "./media/characters/huckle/laughing.svg"
  34045. }
  34046. },
  34047. angry: {
  34048. height: math.unit(4.15, "feet"),
  34049. name: "Angry",
  34050. image: {
  34051. source: "./media/characters/huckle/angry.svg"
  34052. }
  34053. },
  34054. },
  34055. [
  34056. {
  34057. name: "Normal",
  34058. height: math.unit(16, "feet"),
  34059. default: true
  34060. },
  34061. {
  34062. name: "Mini Macro",
  34063. height: math.unit(463, "feet")
  34064. },
  34065. {
  34066. name: "Macro",
  34067. height: math.unit(1680, "meters")
  34068. },
  34069. {
  34070. name: "Mega Macro",
  34071. height: math.unit(175, "km")
  34072. },
  34073. {
  34074. name: "Terra Macro",
  34075. height: math.unit(32, "gigameters")
  34076. },
  34077. {
  34078. name: "Multiverse+",
  34079. height: math.unit(2.56e23, "yottameters")
  34080. },
  34081. ]
  34082. ))
  34083. characterMakers.push(() => makeCharacter(
  34084. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34085. {
  34086. front: {
  34087. height: math.unit(6 + 9/12, "feet"),
  34088. weight: math.unit(280, "lb"),
  34089. name: "Front",
  34090. image: {
  34091. source: "./media/characters/candy/front.svg",
  34092. extra: 234/217,
  34093. bottom: 11/245
  34094. }
  34095. },
  34096. },
  34097. [
  34098. {
  34099. name: "Really Small",
  34100. height: math.unit(0.1, "nm")
  34101. },
  34102. {
  34103. name: "Micro",
  34104. height: math.unit(2, "inches")
  34105. },
  34106. {
  34107. name: "Normal",
  34108. height: math.unit(6 + 9/12, "feet"),
  34109. default: true
  34110. },
  34111. {
  34112. name: "Small Macro",
  34113. height: math.unit(69, "feet")
  34114. },
  34115. {
  34116. name: "Macro",
  34117. height: math.unit(160, "feet")
  34118. },
  34119. {
  34120. name: "Megamacro",
  34121. height: math.unit(22000, "miles")
  34122. },
  34123. {
  34124. name: "Gigamacro",
  34125. height: math.unit(50000, "miles")
  34126. },
  34127. ]
  34128. ))
  34129. characterMakers.push(() => makeCharacter(
  34130. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34131. {
  34132. front: {
  34133. height: math.unit(4, "feet"),
  34134. weight: math.unit(90, "lb"),
  34135. name: "Front",
  34136. image: {
  34137. source: "./media/characters/joey-mcdonald/front.svg",
  34138. extra: 1059/852,
  34139. bottom: 33/1092
  34140. }
  34141. },
  34142. back: {
  34143. height: math.unit(4, "feet"),
  34144. weight: math.unit(90, "lb"),
  34145. name: "Back",
  34146. image: {
  34147. source: "./media/characters/joey-mcdonald/back.svg",
  34148. extra: 1077/879,
  34149. bottom: 5/1082
  34150. }
  34151. },
  34152. },
  34153. [
  34154. {
  34155. name: "Normal",
  34156. height: math.unit(4, "feet"),
  34157. default: true
  34158. },
  34159. ]
  34160. ))
  34161. characterMakers.push(() => makeCharacter(
  34162. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34163. {
  34164. front: {
  34165. height: math.unit(12 + 6/12, "feet"),
  34166. name: "Front",
  34167. image: {
  34168. source: "./media/characters/kass-lockheed/front.svg",
  34169. extra: 354/343,
  34170. bottom: 9/363
  34171. }
  34172. },
  34173. back: {
  34174. height: math.unit(12 + 6/12, "feet"),
  34175. name: "Back",
  34176. image: {
  34177. source: "./media/characters/kass-lockheed/back.svg",
  34178. extra: 364/352,
  34179. bottom: 3/367
  34180. }
  34181. },
  34182. dick: {
  34183. height: math.unit(3.12, "feet"),
  34184. name: "Dick",
  34185. image: {
  34186. source: "./media/characters/kass-lockheed/dick.svg"
  34187. }
  34188. },
  34189. head: {
  34190. height: math.unit(2.6, "feet"),
  34191. name: "Head",
  34192. image: {
  34193. source: "./media/characters/kass-lockheed/head.svg"
  34194. }
  34195. },
  34196. bleh: {
  34197. height: math.unit(2.85, "feet"),
  34198. name: "Bleh",
  34199. image: {
  34200. source: "./media/characters/kass-lockheed/bleh.svg"
  34201. }
  34202. },
  34203. smug: {
  34204. height: math.unit(2.85, "feet"),
  34205. name: "Smug",
  34206. image: {
  34207. source: "./media/characters/kass-lockheed/smug.svg"
  34208. }
  34209. },
  34210. },
  34211. [
  34212. {
  34213. name: "Normal",
  34214. height: math.unit(12 + 6/12, "feet"),
  34215. default: true
  34216. },
  34217. ]
  34218. ))
  34219. characterMakers.push(() => makeCharacter(
  34220. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34221. {
  34222. front: {
  34223. height: math.unit(6 + 2/12, "feet"),
  34224. name: "Front",
  34225. image: {
  34226. source: "./media/characters/taylor/front.svg",
  34227. extra: 639/495,
  34228. bottom: 12/651
  34229. }
  34230. },
  34231. },
  34232. [
  34233. {
  34234. name: "Normal",
  34235. height: math.unit(6 + 2/12, "feet"),
  34236. default: true
  34237. },
  34238. {
  34239. name: "Big",
  34240. height: math.unit(15, "feet")
  34241. },
  34242. {
  34243. name: "Lorg",
  34244. height: math.unit(80, "feet")
  34245. },
  34246. {
  34247. name: "Too Lorg",
  34248. height: math.unit(120, "feet")
  34249. },
  34250. ]
  34251. ))
  34252. characterMakers.push(() => makeCharacter(
  34253. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34254. {
  34255. front: {
  34256. height: math.unit(15, "feet"),
  34257. name: "Front",
  34258. image: {
  34259. source: "./media/characters/kaizer/front.svg",
  34260. extra: 1612/1436,
  34261. bottom: 43/1655
  34262. }
  34263. },
  34264. },
  34265. [
  34266. {
  34267. name: "Normal",
  34268. height: math.unit(15, "feet"),
  34269. default: true
  34270. },
  34271. ]
  34272. ))
  34273. characterMakers.push(() => makeCharacter(
  34274. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34275. {
  34276. front: {
  34277. height: math.unit(2, "feet"),
  34278. weight: math.unit(30, "lb"),
  34279. name: "Front",
  34280. image: {
  34281. source: "./media/characters/sandy/front.svg",
  34282. extra: 1439/1307,
  34283. bottom: 194/1633
  34284. }
  34285. },
  34286. },
  34287. [
  34288. {
  34289. name: "Normal",
  34290. height: math.unit(2, "feet"),
  34291. default: true
  34292. },
  34293. ]
  34294. ))
  34295. characterMakers.push(() => makeCharacter(
  34296. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34297. {
  34298. front: {
  34299. height: math.unit(3, "feet"),
  34300. name: "Front",
  34301. image: {
  34302. source: "./media/characters/mellvi/front.svg",
  34303. extra: 1831/1630,
  34304. bottom: 58/1889
  34305. }
  34306. },
  34307. },
  34308. [
  34309. {
  34310. name: "Normal",
  34311. height: math.unit(3, "feet"),
  34312. default: true
  34313. },
  34314. ]
  34315. ))
  34316. characterMakers.push(() => makeCharacter(
  34317. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34318. {
  34319. front: {
  34320. height: math.unit(5 + 11/12, "feet"),
  34321. weight: math.unit(200, "lb"),
  34322. name: "Front",
  34323. image: {
  34324. source: "./media/characters/shirou/front.svg",
  34325. extra: 2491/2383,
  34326. bottom: 189/2680
  34327. }
  34328. },
  34329. back: {
  34330. height: math.unit(5 + 11/12, "feet"),
  34331. weight: math.unit(200, "lb"),
  34332. name: "Back",
  34333. image: {
  34334. source: "./media/characters/shirou/back.svg",
  34335. extra: 2554/2450,
  34336. bottom: 76/2630
  34337. }
  34338. },
  34339. },
  34340. [
  34341. {
  34342. name: "Normal",
  34343. height: math.unit(5 + 11/12, "feet"),
  34344. default: true
  34345. },
  34346. ]
  34347. ))
  34348. characterMakers.push(() => makeCharacter(
  34349. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34350. {
  34351. front: {
  34352. height: math.unit(6 + 3/12, "feet"),
  34353. weight: math.unit(177, "lb"),
  34354. name: "Front",
  34355. image: {
  34356. source: "./media/characters/noryu/front.svg",
  34357. extra: 973/885,
  34358. bottom: 10/983
  34359. }
  34360. },
  34361. },
  34362. [
  34363. {
  34364. name: "Normal",
  34365. height: math.unit(6 + 3/12, "feet"),
  34366. default: true
  34367. },
  34368. ]
  34369. ))
  34370. characterMakers.push(() => makeCharacter(
  34371. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34372. {
  34373. front: {
  34374. height: math.unit(5 + 6/12, "feet"),
  34375. weight: math.unit(170, "lb"),
  34376. name: "Front",
  34377. image: {
  34378. source: "./media/characters/mevolas-rubenido/front.svg",
  34379. extra: 2109/1901,
  34380. bottom: 96/2205
  34381. }
  34382. },
  34383. },
  34384. [
  34385. {
  34386. name: "Normal",
  34387. height: math.unit(5 + 6/12, "feet"),
  34388. default: true
  34389. },
  34390. ]
  34391. ))
  34392. characterMakers.push(() => makeCharacter(
  34393. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34394. {
  34395. front: {
  34396. height: math.unit(100, "feet"),
  34397. name: "Front",
  34398. image: {
  34399. source: "./media/characters/dee/front.svg",
  34400. extra: 2153/2036,
  34401. bottom: 59/2212
  34402. }
  34403. },
  34404. back: {
  34405. height: math.unit(100, "feet"),
  34406. name: "Back",
  34407. image: {
  34408. source: "./media/characters/dee/back.svg",
  34409. extra: 2183/2058,
  34410. bottom: 75/2258
  34411. }
  34412. },
  34413. foot: {
  34414. height: math.unit(19.43, "feet"),
  34415. name: "Foot",
  34416. image: {
  34417. source: "./media/characters/dee/foot.svg"
  34418. }
  34419. },
  34420. hoof: {
  34421. height: math.unit(20.6, "feet"),
  34422. name: "Hoof",
  34423. image: {
  34424. source: "./media/characters/dee/hoof.svg"
  34425. }
  34426. },
  34427. },
  34428. [
  34429. {
  34430. name: "Macro",
  34431. height: math.unit(100, "feet"),
  34432. default: true
  34433. },
  34434. ]
  34435. ))
  34436. characterMakers.push(() => makeCharacter(
  34437. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34438. {
  34439. front: {
  34440. height: math.unit(5 + 6/12, "feet"),
  34441. name: "Front",
  34442. image: {
  34443. source: "./media/characters/teh/front.svg",
  34444. extra: 1002/847,
  34445. bottom: 62/1064
  34446. }
  34447. },
  34448. },
  34449. [
  34450. {
  34451. name: "Normal",
  34452. height: math.unit(5 + 6/12, "feet"),
  34453. default: true
  34454. },
  34455. ]
  34456. ))
  34457. characterMakers.push(() => makeCharacter(
  34458. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34459. {
  34460. side: {
  34461. height: math.unit(6 + 1/12, "feet"),
  34462. weight: math.unit(204, "lb"),
  34463. name: "Side",
  34464. image: {
  34465. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34466. extra: 974/775,
  34467. bottom: 169/1143
  34468. }
  34469. },
  34470. sitting: {
  34471. height: math.unit(6 + 2/12, "feet"),
  34472. weight: math.unit(204, "lb"),
  34473. name: "Sitting",
  34474. image: {
  34475. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34476. extra: 1175/964,
  34477. bottom: 378/1553
  34478. }
  34479. },
  34480. },
  34481. [
  34482. {
  34483. name: "Normal",
  34484. height: math.unit(6 + 1/12, "feet"),
  34485. default: true
  34486. },
  34487. ]
  34488. ))
  34489. characterMakers.push(() => makeCharacter(
  34490. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34491. {
  34492. front: {
  34493. height: math.unit(6, "inches"),
  34494. name: "Front",
  34495. image: {
  34496. source: "./media/characters/tululi/front.svg",
  34497. extra: 1997/1876,
  34498. bottom: 20/2017
  34499. }
  34500. },
  34501. },
  34502. [
  34503. {
  34504. name: "Normal",
  34505. height: math.unit(6, "inches"),
  34506. default: true
  34507. },
  34508. ]
  34509. ))
  34510. characterMakers.push(() => makeCharacter(
  34511. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34512. {
  34513. front: {
  34514. height: math.unit(4 + 1/12, "feet"),
  34515. name: "Front",
  34516. image: {
  34517. source: "./media/characters/star/front.svg",
  34518. extra: 1493/1189,
  34519. bottom: 48/1541
  34520. }
  34521. },
  34522. },
  34523. [
  34524. {
  34525. name: "Normal",
  34526. height: math.unit(4 + 1/12, "feet"),
  34527. default: true
  34528. },
  34529. ]
  34530. ))
  34531. characterMakers.push(() => makeCharacter(
  34532. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34533. {
  34534. front: {
  34535. height: math.unit(6 + 3/12, "feet"),
  34536. name: "Front",
  34537. image: {
  34538. source: "./media/characters/comet/front.svg",
  34539. extra: 1681/1462,
  34540. bottom: 26/1707
  34541. }
  34542. },
  34543. },
  34544. [
  34545. {
  34546. name: "Normal",
  34547. height: math.unit(6 + 3/12, "feet"),
  34548. default: true
  34549. },
  34550. ]
  34551. ))
  34552. characterMakers.push(() => makeCharacter(
  34553. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34554. {
  34555. front: {
  34556. height: math.unit(950, "feet"),
  34557. name: "Front",
  34558. image: {
  34559. source: "./media/characters/vortex/front.svg",
  34560. extra: 1497/1434,
  34561. bottom: 56/1553
  34562. }
  34563. },
  34564. maw: {
  34565. height: math.unit(285, "feet"),
  34566. name: "Maw",
  34567. image: {
  34568. source: "./media/characters/vortex/maw.svg"
  34569. }
  34570. },
  34571. },
  34572. [
  34573. {
  34574. name: "Macro",
  34575. height: math.unit(950, "feet"),
  34576. default: true
  34577. },
  34578. ]
  34579. ))
  34580. characterMakers.push(() => makeCharacter(
  34581. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34582. {
  34583. front: {
  34584. height: math.unit(600, "feet"),
  34585. weight: math.unit(0.02, "grams"),
  34586. name: "Front",
  34587. image: {
  34588. source: "./media/characters/doodle/front.svg",
  34589. extra: 1578/1413,
  34590. bottom: 37/1615
  34591. }
  34592. },
  34593. },
  34594. [
  34595. {
  34596. name: "Macro",
  34597. height: math.unit(600, "feet"),
  34598. default: true
  34599. },
  34600. ]
  34601. ))
  34602. characterMakers.push(() => makeCharacter(
  34603. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34604. {
  34605. front: {
  34606. height: math.unit(6 + 6/12, "feet"),
  34607. name: "Front",
  34608. image: {
  34609. source: "./media/characters/jai/front.svg",
  34610. extra: 1645/1534,
  34611. bottom: 115/1760
  34612. }
  34613. },
  34614. },
  34615. [
  34616. {
  34617. name: "Normal",
  34618. height: math.unit(6 + 6/12, "feet"),
  34619. default: true
  34620. },
  34621. ]
  34622. ))
  34623. characterMakers.push(() => makeCharacter(
  34624. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34625. {
  34626. front: {
  34627. height: math.unit(6 + 8/12, "feet"),
  34628. name: "Front",
  34629. image: {
  34630. source: "./media/characters/pixel/front.svg",
  34631. extra: 1900/1735,
  34632. bottom: 63/1963
  34633. }
  34634. },
  34635. },
  34636. [
  34637. {
  34638. name: "Normal",
  34639. height: math.unit(6 + 8/12, "feet"),
  34640. default: true
  34641. },
  34642. ]
  34643. ))
  34644. characterMakers.push(() => makeCharacter(
  34645. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  34646. {
  34647. front: {
  34648. height: math.unit(4 + 11/12, "feet"),
  34649. weight: math.unit(111, "lb"),
  34650. name: "Front",
  34651. image: {
  34652. source: "./media/characters/rhett/front.svg",
  34653. extra: 1682/1586,
  34654. bottom: 92/1774
  34655. }
  34656. },
  34657. },
  34658. [
  34659. {
  34660. name: "Mini",
  34661. height: math.unit(1 + 1/12, "feet")
  34662. },
  34663. {
  34664. name: "Normal",
  34665. height: math.unit(4 + 11/12, "feet"),
  34666. default: true
  34667. },
  34668. ]
  34669. ))
  34670. characterMakers.push(() => makeCharacter(
  34671. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  34672. {
  34673. front: {
  34674. height: math.unit(3 + 3/12, "feet"),
  34675. name: "Front",
  34676. image: {
  34677. source: "./media/characters/penny/front.svg",
  34678. extra: 1406/1311,
  34679. bottom: 26/1432
  34680. }
  34681. },
  34682. },
  34683. [
  34684. {
  34685. name: "Normal",
  34686. height: math.unit(3 + 3/12, "feet"),
  34687. default: true
  34688. },
  34689. ]
  34690. ))
  34691. characterMakers.push(() => makeCharacter(
  34692. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  34693. {
  34694. front: {
  34695. height: math.unit(4 + 11/12, "feet"),
  34696. name: "Front",
  34697. image: {
  34698. source: "./media/characters/monty/front.svg",
  34699. extra: 1479/1209,
  34700. bottom: 0/1479
  34701. }
  34702. },
  34703. },
  34704. [
  34705. {
  34706. name: "Normal",
  34707. height: math.unit(4 + 11/12, "feet"),
  34708. default: true
  34709. },
  34710. ]
  34711. ))
  34712. characterMakers.push(() => makeCharacter(
  34713. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  34714. {
  34715. front: {
  34716. height: math.unit(8 + 4/12, "feet"),
  34717. name: "Front",
  34718. image: {
  34719. source: "./media/characters/sterling/front.svg",
  34720. extra: 1420/1236,
  34721. bottom: 27/1447
  34722. }
  34723. },
  34724. },
  34725. [
  34726. {
  34727. name: "Normal",
  34728. height: math.unit(8 + 4/12, "feet"),
  34729. default: true
  34730. },
  34731. ]
  34732. ))
  34733. characterMakers.push(() => makeCharacter(
  34734. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  34735. {
  34736. front: {
  34737. height: math.unit(15, "feet"),
  34738. name: "Front",
  34739. image: {
  34740. source: "./media/characters/marble/front.svg",
  34741. extra: 973/937,
  34742. bottom: 32/1005
  34743. }
  34744. },
  34745. },
  34746. [
  34747. {
  34748. name: "Normal",
  34749. height: math.unit(15, "feet"),
  34750. default: true
  34751. },
  34752. ]
  34753. ))
  34754. characterMakers.push(() => makeCharacter(
  34755. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  34756. {
  34757. front: {
  34758. height: math.unit(3, "inches"),
  34759. name: "Front",
  34760. image: {
  34761. source: "./media/characters/powder/front.svg",
  34762. extra: 1504/1334,
  34763. bottom: 518/2022
  34764. }
  34765. },
  34766. },
  34767. [
  34768. {
  34769. name: "Normal",
  34770. height: math.unit(3, "inches"),
  34771. default: true
  34772. },
  34773. ]
  34774. ))
  34775. characterMakers.push(() => makeCharacter(
  34776. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  34777. {
  34778. front: {
  34779. height: math.unit(4 + 5/12, "feet"),
  34780. name: "Front",
  34781. image: {
  34782. source: "./media/characters/joey-raccoon/front.svg",
  34783. extra: 1273/1197,
  34784. bottom: 0/1273
  34785. }
  34786. },
  34787. },
  34788. [
  34789. {
  34790. name: "Normal",
  34791. height: math.unit(4 + 5/12, "feet"),
  34792. default: true
  34793. },
  34794. ]
  34795. ))
  34796. characterMakers.push(() => makeCharacter(
  34797. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  34798. {
  34799. front: {
  34800. height: math.unit(8 + 4/12, "feet"),
  34801. name: "Front",
  34802. image: {
  34803. source: "./media/characters/vick/front.svg",
  34804. extra: 2187/2118,
  34805. bottom: 47/2234
  34806. }
  34807. },
  34808. },
  34809. [
  34810. {
  34811. name: "Normal",
  34812. height: math.unit(8 + 4/12, "feet"),
  34813. default: true
  34814. },
  34815. ]
  34816. ))
  34817. characterMakers.push(() => makeCharacter(
  34818. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  34819. {
  34820. front: {
  34821. height: math.unit(5 + 5/12, "feet"),
  34822. name: "Front",
  34823. image: {
  34824. source: "./media/characters/mitsy/front.svg",
  34825. extra: 1842/1695,
  34826. bottom: 0/1842
  34827. }
  34828. },
  34829. },
  34830. [
  34831. {
  34832. name: "Normal",
  34833. height: math.unit(5 + 5/12, "feet"),
  34834. default: true
  34835. },
  34836. ]
  34837. ))
  34838. characterMakers.push(() => makeCharacter(
  34839. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  34840. {
  34841. front: {
  34842. height: math.unit(6 + 3/12, "feet"),
  34843. name: "Front",
  34844. image: {
  34845. source: "./media/characters/silvy/front.svg",
  34846. extra: 1995/1836,
  34847. bottom: 225/2220
  34848. }
  34849. },
  34850. },
  34851. [
  34852. {
  34853. name: "Normal",
  34854. height: math.unit(6 + 3/12, "feet"),
  34855. default: true
  34856. },
  34857. ]
  34858. ))
  34859. characterMakers.push(() => makeCharacter(
  34860. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  34861. {
  34862. front: {
  34863. height: math.unit(3 + 8/12, "feet"),
  34864. name: "Front",
  34865. image: {
  34866. source: "./media/characters/rodney/front.svg",
  34867. extra: 1956/1747,
  34868. bottom: 31/1987
  34869. }
  34870. },
  34871. frontDressed: {
  34872. height: math.unit(2.9, "feet"),
  34873. name: "Front (Dressed)",
  34874. image: {
  34875. source: "./media/characters/rodney/front-dressed.svg",
  34876. extra: 1382/1241,
  34877. bottom: 385/1767
  34878. }
  34879. },
  34880. },
  34881. [
  34882. {
  34883. name: "Normal",
  34884. height: math.unit(3 + 8/12, "feet"),
  34885. default: true
  34886. },
  34887. ]
  34888. ))
  34889. characterMakers.push(() => makeCharacter(
  34890. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  34891. {
  34892. front: {
  34893. height: math.unit(5 + 9/12, "feet"),
  34894. weight: math.unit(194, "lbs"),
  34895. name: "Front",
  34896. image: {
  34897. source: "./media/characters/zakail-sudekai/front.svg",
  34898. extra: 2696/2533,
  34899. bottom: 248/2944
  34900. }
  34901. },
  34902. maw: {
  34903. height: math.unit(1.35, "feet"),
  34904. name: "Maw",
  34905. image: {
  34906. source: "./media/characters/zakail-sudekai/maw.svg"
  34907. }
  34908. },
  34909. },
  34910. [
  34911. {
  34912. name: "Normal",
  34913. height: math.unit(5 + 9/12, "feet"),
  34914. default: true
  34915. },
  34916. ]
  34917. ))
  34918. characterMakers.push(() => makeCharacter(
  34919. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  34920. {
  34921. front: {
  34922. height: math.unit(8 + 4/12, "feet"),
  34923. weight: math.unit(1200, "lb"),
  34924. name: "Front",
  34925. image: {
  34926. source: "./media/characters/eleanor/front.svg",
  34927. extra: 1226/1192,
  34928. bottom: 52/1278
  34929. }
  34930. },
  34931. back: {
  34932. height: math.unit(8 + 4/12, "feet"),
  34933. weight: math.unit(1200, "lb"),
  34934. name: "Back",
  34935. image: {
  34936. source: "./media/characters/eleanor/back.svg",
  34937. extra: 1242/1184,
  34938. bottom: 60/1302
  34939. }
  34940. },
  34941. head: {
  34942. height: math.unit(2.62, "feet"),
  34943. name: "Head",
  34944. image: {
  34945. source: "./media/characters/eleanor/head.svg"
  34946. }
  34947. },
  34948. },
  34949. [
  34950. {
  34951. name: "Normal",
  34952. height: math.unit(8 + 4/12, "feet"),
  34953. default: true
  34954. },
  34955. ]
  34956. ))
  34957. characterMakers.push(() => makeCharacter(
  34958. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  34959. {
  34960. front: {
  34961. height: math.unit(8 + 4/12, "feet"),
  34962. weight: math.unit(750, "lb"),
  34963. name: "Front",
  34964. image: {
  34965. source: "./media/characters/tanya/front.svg",
  34966. extra: 1749/1615,
  34967. bottom: 33/1782
  34968. }
  34969. },
  34970. },
  34971. [
  34972. {
  34973. name: "Normal",
  34974. height: math.unit(8 + 4/12, "feet"),
  34975. default: true
  34976. },
  34977. ]
  34978. ))
  34979. characterMakers.push(() => makeCharacter(
  34980. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  34981. {
  34982. front: {
  34983. height: math.unit(5, "feet"),
  34984. weight: math.unit(225, "lb"),
  34985. name: "Front",
  34986. image: {
  34987. source: "./media/characters/cindy/front.svg",
  34988. extra: 1320/1250,
  34989. bottom: 42/1362
  34990. }
  34991. },
  34992. frontDressed: {
  34993. height: math.unit(5, "feet"),
  34994. weight: math.unit(225, "lb"),
  34995. name: "Front (Dressed)",
  34996. image: {
  34997. source: "./media/characters/cindy/front-dressed.svg",
  34998. extra: 1320/1250,
  34999. bottom: 42/1362
  35000. }
  35001. },
  35002. back: {
  35003. height: math.unit(5, "feet"),
  35004. weight: math.unit(225, "lb"),
  35005. name: "Back",
  35006. image: {
  35007. source: "./media/characters/cindy/back.svg",
  35008. extra: 1384/1346,
  35009. bottom: 14/1398
  35010. }
  35011. },
  35012. },
  35013. [
  35014. {
  35015. name: "Normal",
  35016. height: math.unit(5, "feet"),
  35017. default: true
  35018. },
  35019. ]
  35020. ))
  35021. characterMakers.push(() => makeCharacter(
  35022. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35023. {
  35024. front: {
  35025. height: math.unit(6 + 9/12, "feet"),
  35026. weight: math.unit(440, "lb"),
  35027. name: "Front",
  35028. image: {
  35029. source: "./media/characters/wilbur-owen/front.svg",
  35030. extra: 1575/1448,
  35031. bottom: 72/1647
  35032. }
  35033. },
  35034. back: {
  35035. height: math.unit(6 + 9/12, "feet"),
  35036. weight: math.unit(440, "lb"),
  35037. name: "Back",
  35038. image: {
  35039. source: "./media/characters/wilbur-owen/back.svg",
  35040. extra: 1578/1445,
  35041. bottom: 36/1614
  35042. }
  35043. },
  35044. },
  35045. [
  35046. {
  35047. name: "Normal",
  35048. height: math.unit(6 + 9/12, "feet"),
  35049. default: true
  35050. },
  35051. ]
  35052. ))
  35053. characterMakers.push(() => makeCharacter(
  35054. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35055. {
  35056. front: {
  35057. height: math.unit(6 + 5/12, "feet"),
  35058. weight: math.unit(650, "lb"),
  35059. name: "Front",
  35060. image: {
  35061. source: "./media/characters/keegan/front.svg",
  35062. extra: 2387/2198,
  35063. bottom: 33/2420
  35064. }
  35065. },
  35066. side: {
  35067. height: math.unit(6 + 5/12, "feet"),
  35068. weight: math.unit(650, "lb"),
  35069. name: "Side",
  35070. image: {
  35071. source: "./media/characters/keegan/side.svg",
  35072. extra: 2390/2202,
  35073. bottom: 47/2437
  35074. }
  35075. },
  35076. back: {
  35077. height: math.unit(6 + 5/12, "feet"),
  35078. weight: math.unit(650, "lb"),
  35079. name: "Back",
  35080. image: {
  35081. source: "./media/characters/keegan/back.svg",
  35082. extra: 2418/2268,
  35083. bottom: 15/2433
  35084. }
  35085. },
  35086. frontSfw: {
  35087. height: math.unit(6 + 5/12, "feet"),
  35088. weight: math.unit(650, "lb"),
  35089. name: "Front (SFW)",
  35090. image: {
  35091. source: "./media/characters/keegan/front-sfw.svg",
  35092. extra: 2387/2198,
  35093. bottom: 33/2420
  35094. }
  35095. },
  35096. beans: {
  35097. height: math.unit(1.85, "feet"),
  35098. name: "Beans",
  35099. image: {
  35100. source: "./media/characters/keegan/beans.svg"
  35101. }
  35102. },
  35103. },
  35104. [
  35105. {
  35106. name: "Normal",
  35107. height: math.unit(6 + 5/12, "feet"),
  35108. default: true
  35109. },
  35110. ]
  35111. ))
  35112. characterMakers.push(() => makeCharacter(
  35113. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35114. {
  35115. front: {
  35116. height: math.unit(9, "feet"),
  35117. name: "Front",
  35118. image: {
  35119. source: "./media/characters/colton/front.svg",
  35120. extra: 1589/1326,
  35121. bottom: 139/1728
  35122. }
  35123. },
  35124. },
  35125. [
  35126. {
  35127. name: "Normal",
  35128. height: math.unit(9, "feet"),
  35129. default: true
  35130. },
  35131. ]
  35132. ))
  35133. characterMakers.push(() => makeCharacter(
  35134. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35135. {
  35136. front: {
  35137. height: math.unit(2 + 9/12, "feet"),
  35138. name: "Front",
  35139. image: {
  35140. source: "./media/characters/bora/front.svg",
  35141. extra: 1265/1250,
  35142. bottom: 24/1289
  35143. }
  35144. },
  35145. },
  35146. [
  35147. {
  35148. name: "Normal",
  35149. height: math.unit(2 + 9/12, "feet"),
  35150. default: true
  35151. },
  35152. ]
  35153. ))
  35154. characterMakers.push(() => makeCharacter(
  35155. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35156. {
  35157. front: {
  35158. height: math.unit(8, "feet"),
  35159. name: "Front",
  35160. image: {
  35161. source: "./media/characters/myu-myu/front.svg",
  35162. extra: 1949/1857,
  35163. bottom: 90/2039
  35164. }
  35165. },
  35166. },
  35167. [
  35168. {
  35169. name: "Normal",
  35170. height: math.unit(8, "feet"),
  35171. default: true
  35172. },
  35173. {
  35174. name: "Big",
  35175. height: math.unit(15, "feet")
  35176. },
  35177. {
  35178. name: "BIG",
  35179. height: math.unit(25, "feet")
  35180. },
  35181. ]
  35182. ))
  35183. characterMakers.push(() => makeCharacter(
  35184. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35185. {
  35186. side: {
  35187. height: math.unit(7 + 5/12, "feet"),
  35188. weight: math.unit(2800, "lb"),
  35189. name: "Side",
  35190. image: {
  35191. source: "./media/characters/haloren/side.svg",
  35192. extra: 1793/409,
  35193. bottom: 59/1852
  35194. }
  35195. },
  35196. frontPaw: {
  35197. height: math.unit(2.36, "feet"),
  35198. name: "Front paw",
  35199. image: {
  35200. source: "./media/characters/haloren/front-paw.svg"
  35201. }
  35202. },
  35203. hindPaw: {
  35204. height: math.unit(3.18, "feet"),
  35205. name: "Hind paw",
  35206. image: {
  35207. source: "./media/characters/haloren/hind-paw.svg"
  35208. }
  35209. },
  35210. maw: {
  35211. height: math.unit(5.05, "feet"),
  35212. name: "Maw",
  35213. image: {
  35214. source: "./media/characters/haloren/maw.svg"
  35215. }
  35216. },
  35217. dick: {
  35218. height: math.unit(2.90, "feet"),
  35219. name: "Dick",
  35220. image: {
  35221. source: "./media/characters/haloren/dick.svg"
  35222. }
  35223. },
  35224. },
  35225. [
  35226. {
  35227. name: "Normal",
  35228. height: math.unit(7 + 5/12, "feet"),
  35229. default: true
  35230. },
  35231. {
  35232. name: "Enhanced",
  35233. height: math.unit(14 + 3/12, "feet")
  35234. },
  35235. ]
  35236. ))
  35237. characterMakers.push(() => makeCharacter(
  35238. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35239. {
  35240. front: {
  35241. height: math.unit(171, "cm"),
  35242. name: "Front",
  35243. image: {
  35244. source: "./media/characters/kimmy/front.svg",
  35245. extra: 1491/1435,
  35246. bottom: 53/1544
  35247. }
  35248. },
  35249. },
  35250. [
  35251. {
  35252. name: "Small",
  35253. height: math.unit(9, "cm")
  35254. },
  35255. {
  35256. name: "Normal",
  35257. height: math.unit(171, "cm"),
  35258. default: true
  35259. },
  35260. ]
  35261. ))
  35262. characterMakers.push(() => makeCharacter(
  35263. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35264. {
  35265. front: {
  35266. height: math.unit(8, "feet"),
  35267. weight: math.unit(300, "lb"),
  35268. name: "Front",
  35269. image: {
  35270. source: "./media/characters/galeboomer/front.svg",
  35271. extra: 4651/4415,
  35272. bottom: 162/4813
  35273. }
  35274. },
  35275. back: {
  35276. height: math.unit(8, "feet"),
  35277. weight: math.unit(300, "lb"),
  35278. name: "Back",
  35279. image: {
  35280. source: "./media/characters/galeboomer/back.svg",
  35281. extra: 4544/4314,
  35282. bottom: 16/4560
  35283. }
  35284. },
  35285. frontAlt: {
  35286. height: math.unit(8, "feet"),
  35287. weight: math.unit(300, "lb"),
  35288. name: "Front (Alt)",
  35289. image: {
  35290. source: "./media/characters/galeboomer/front-alt.svg",
  35291. extra: 4458/4228,
  35292. bottom: 68/4526
  35293. }
  35294. },
  35295. maw: {
  35296. height: math.unit(1.2, "feet"),
  35297. name: "Maw",
  35298. image: {
  35299. source: "./media/characters/galeboomer/maw.svg"
  35300. }
  35301. },
  35302. },
  35303. [
  35304. {
  35305. name: "Normal",
  35306. height: math.unit(8, "feet"),
  35307. default: true
  35308. },
  35309. ]
  35310. ))
  35311. characterMakers.push(() => makeCharacter(
  35312. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35313. {
  35314. front: {
  35315. height: math.unit(5 + 9/12, "feet"),
  35316. weight: math.unit(120, "lb"),
  35317. name: "Front",
  35318. image: {
  35319. source: "./media/characters/chyr/front.svg",
  35320. extra: 1323/1254,
  35321. bottom: 63/1386
  35322. }
  35323. },
  35324. back: {
  35325. height: math.unit(5 + 9/12, "feet"),
  35326. weight: math.unit(120, "lb"),
  35327. name: "Back",
  35328. image: {
  35329. source: "./media/characters/chyr/back.svg",
  35330. extra: 1323/1252,
  35331. bottom: 48/1371
  35332. }
  35333. },
  35334. },
  35335. [
  35336. {
  35337. name: "Normal",
  35338. height: math.unit(5 + 9/12, "feet"),
  35339. default: true
  35340. },
  35341. ]
  35342. ))
  35343. characterMakers.push(() => makeCharacter(
  35344. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35345. {
  35346. front: {
  35347. height: math.unit(7, "feet"),
  35348. weight: math.unit(310, "lb"),
  35349. name: "Front",
  35350. image: {
  35351. source: "./media/characters/solarus/front.svg",
  35352. extra: 2415/2021,
  35353. bottom: 103/2518
  35354. }
  35355. },
  35356. back: {
  35357. height: math.unit(7, "feet"),
  35358. weight: math.unit(310, "lb"),
  35359. name: "Back",
  35360. image: {
  35361. source: "./media/characters/solarus/back.svg",
  35362. extra: 2463/2089,
  35363. bottom: 79/2542
  35364. }
  35365. },
  35366. },
  35367. [
  35368. {
  35369. name: "Normal",
  35370. height: math.unit(7, "feet"),
  35371. default: true
  35372. },
  35373. ]
  35374. ))
  35375. //characters
  35376. function makeCharacters() {
  35377. const results = [];
  35378. characterMakers.forEach(character => {
  35379. results.push(character());
  35380. });
  35381. return results;
  35382. }