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.
 
 
 

46156 lines
1.1 MiB

  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. if (value.energyNeed) {
  45. views[key].attributes.capacity = {
  46. name: "Food Intake",
  47. power: 3,
  48. type: "energy",
  49. base: value.energyNeed
  50. }
  51. }
  52. });
  53. return createEntityMaker(info, views, defaultSizes);
  54. }
  55. const speciesData = {
  56. animal: {
  57. name: "Animal"
  58. },
  59. dog: {
  60. name: "Dog",
  61. parents: [
  62. "canine"
  63. ]
  64. },
  65. canine: {
  66. name: "Canine",
  67. parents: [
  68. "mammal"
  69. ]
  70. },
  71. crux: {
  72. name: "Crux",
  73. parents: [
  74. "mammal"
  75. ]
  76. },
  77. mammal: {
  78. name: "Mammal",
  79. parents: [
  80. "animal"
  81. ]
  82. },
  83. "rough-collie": {
  84. name: "Rough Collie",
  85. parents: [
  86. "dog"
  87. ]
  88. },
  89. dragon: {
  90. name: "Dragon",
  91. parents: [
  92. "reptile"
  93. ]
  94. },
  95. reptile: {
  96. name: "Reptile",
  97. parents: [
  98. "animal"
  99. ]
  100. },
  101. woodpecker: {
  102. name: "Woodpecker",
  103. parents: [
  104. "avian"
  105. ]
  106. },
  107. avian: {
  108. name: "Avian",
  109. parents: [
  110. "animal"
  111. ]
  112. },
  113. kitsune: {
  114. name: "Kitsune",
  115. parents: [
  116. "fox"
  117. ]
  118. },
  119. fox: {
  120. name: "Fox",
  121. parents: [
  122. "mammal"
  123. ]
  124. },
  125. pokemon: {
  126. name: "Pokemon"
  127. },
  128. tiger: {
  129. name: "Tiger",
  130. parents: [
  131. "cat"
  132. ]
  133. },
  134. cat: {
  135. name: "Cat",
  136. parents: [
  137. "feliform"
  138. ]
  139. },
  140. "blue-jay": {
  141. name: "Blue Jay",
  142. parents: [
  143. "avian"
  144. ]
  145. },
  146. wolf: {
  147. name: "Wolf",
  148. parents: [
  149. "mammal"
  150. ]
  151. },
  152. coyote: {
  153. name: "Coyote",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. raccoon: {
  159. name: "Raccoon",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. weasel: {
  165. name: "Weasel",
  166. parents: [
  167. "mustelid"
  168. ]
  169. },
  170. "red-panda": {
  171. name: "Red Panda",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. dolphin: {
  177. name: "Dolphin",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. "african-wild-dog": {
  183. name: "African Wild Dog",
  184. parents: [
  185. "canine"
  186. ]
  187. },
  188. "hyena": {
  189. name: "Hyena",
  190. parents: [
  191. "feliform"
  192. ]
  193. },
  194. "carbuncle": {
  195. name: "Carbuncle",
  196. parents: [
  197. "animal"
  198. ]
  199. },
  200. bat: {
  201. name: "Bat",
  202. parents: [
  203. "mammal"
  204. ]
  205. },
  206. "leaf-nosed-bat": {
  207. name: "Leaf-Nosed Bat",
  208. parents: [
  209. "bat"
  210. ]
  211. },
  212. "fish": {
  213. name: "Fish",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. "ram": {
  219. name: "Ram",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "demon": {
  225. name: "Demon",
  226. parents: [
  227. "supernatural"
  228. ]
  229. },
  230. "cougar": {
  231. name: "Cougar",
  232. parents: [
  233. "cat"
  234. ]
  235. },
  236. "goat": {
  237. name: "Goat",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "lion": {
  243. name: "Lion",
  244. parents: [
  245. "cat"
  246. ]
  247. },
  248. "harpy-eager": {
  249. name: "Harpy Eagle",
  250. parents: [
  251. "avian"
  252. ]
  253. },
  254. "deer": {
  255. name: "Deer",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "phoenix": {
  261. name: "Phoenix",
  262. parents: [
  263. "avian"
  264. ]
  265. },
  266. "aeromorph": {
  267. name: "Aeromorph",
  268. parents: [
  269. "machine"
  270. ]
  271. },
  272. "machine": {
  273. name: "Machine",
  274. },
  275. "android": {
  276. name: "Android",
  277. parents: [
  278. "machine"
  279. ]
  280. },
  281. "jackal": {
  282. name: "Jackal",
  283. parents: [
  284. "canine"
  285. ]
  286. },
  287. "corvid": {
  288. name: "Corvid",
  289. parents: [
  290. "avian"
  291. ]
  292. },
  293. "pharaoh-hound": {
  294. name: "Pharaoh Hound",
  295. parents: [
  296. "dog"
  297. ]
  298. },
  299. "skunk": {
  300. name: "Skunk",
  301. parents: [
  302. "mammal"
  303. ]
  304. },
  305. "shark": {
  306. name: "Shark",
  307. parents: [
  308. "fish"
  309. ]
  310. },
  311. "black-panther": {
  312. name: "Black Panther",
  313. parents: [
  314. "cat"
  315. ]
  316. },
  317. "umbra": {
  318. name: "Umbra",
  319. parents: [
  320. "animal"
  321. ]
  322. },
  323. "raven": {
  324. name: "Raven",
  325. parents: [
  326. "corvid"
  327. ]
  328. },
  329. "snow-leopard": {
  330. name: "Snow Leopard",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "barbary-lion": {
  336. name: "Barbary Lion",
  337. parents: [
  338. "lion"
  339. ]
  340. },
  341. "dra'gal": {
  342. name: "Dra'Gal",
  343. parents: [
  344. "mammal"
  345. ]
  346. },
  347. "german-shepherd": {
  348. name: "German Shepherd",
  349. parents: [
  350. "dog"
  351. ]
  352. },
  353. "bayleef": {
  354. name: "Bayleef",
  355. parents: [
  356. "pokemon"
  357. ]
  358. },
  359. "mouse": {
  360. name: "Mouse",
  361. parents: [
  362. "rodent"
  363. ]
  364. },
  365. "rat": {
  366. name: "Rat",
  367. parents: [
  368. "mammal"
  369. ]
  370. },
  371. "hoshiko-beast": {
  372. name: "Hoshiko Beast",
  373. parents: ["animal"]
  374. },
  375. "snow-jugani": {
  376. name: "Snow Jugani",
  377. parents: ["cat"]
  378. },
  379. "patamon": {
  380. name: "Patamon",
  381. parents: ["digimon"]
  382. },
  383. "digimon": {
  384. name: "Digimon",
  385. },
  386. "jugani": {
  387. name: "Jugani",
  388. parents: ["cat"]
  389. },
  390. "luxray": {
  391. name: "Luxray",
  392. parents: ["pokemon"]
  393. },
  394. "mech": {
  395. name: "Mech",
  396. parents: ["machine"]
  397. },
  398. "zoid": {
  399. name: "Zoid",
  400. parents: ["mech"]
  401. },
  402. "monster": {
  403. name: "Monster",
  404. parents: ["animal"]
  405. },
  406. "foo-dog": {
  407. name: "Foo Dog",
  408. parents: ["mammal"]
  409. },
  410. "elephant": {
  411. name: "Elephant",
  412. parents: ["mammal"]
  413. },
  414. "eagle": {
  415. name: "Eagle",
  416. parents: ["avian"]
  417. },
  418. "cow": {
  419. name: "Cow",
  420. parents: ["mammal"]
  421. },
  422. "crocodile": {
  423. name: "Crocodile",
  424. parents: ["reptile"]
  425. },
  426. "borzoi": {
  427. name: "Borzoi",
  428. parents: ["dog"]
  429. },
  430. "snake": {
  431. name: "Snake",
  432. parents: ["reptile"]
  433. },
  434. "horned-bush-viper": {
  435. name: "Horned Bush Viper",
  436. parents: ["snake"]
  437. },
  438. "cobra": {
  439. name: "Cobra",
  440. parents: ["snake"]
  441. },
  442. "harpy-eagle": {
  443. name: "Harpy Eagle",
  444. parents: ["eagle"]
  445. },
  446. "raptor": {
  447. name: "Raptor",
  448. parents: ["dinosaur"]
  449. },
  450. "dinosaur": {
  451. name: "Dinosaur",
  452. parents: ["reptile"]
  453. },
  454. "veilhound": {
  455. name: "Veilhound",
  456. parents: ["hellhound"]
  457. },
  458. "hellhound": {
  459. name: "Hellhound",
  460. parents: ["canine", "demon"]
  461. },
  462. "insect": {
  463. name: "Insect",
  464. parents: ["animal"]
  465. },
  466. "beetle": {
  467. name: "Beetle",
  468. parents: ["insect"]
  469. },
  470. "moth": {
  471. name: "Moth",
  472. parents: ["insect"]
  473. },
  474. "eastern-dragon": {
  475. name: "Eastern Dragon",
  476. parents: ["dragon"]
  477. },
  478. "jaguar": {
  479. name: "Jaguar",
  480. parents: ["cat"]
  481. },
  482. "horse": {
  483. name: "Horse",
  484. parents: ["mammal"]
  485. },
  486. "sergal": {
  487. name: "Sergal",
  488. parents: ["mammal"]
  489. },
  490. "gryphon": {
  491. name: "Gryphon",
  492. parents: ["lion", "eagle"]
  493. },
  494. "robot": {
  495. name: "Robot",
  496. parents: ["machine"]
  497. },
  498. "medihound": {
  499. name: "Medihound",
  500. parents: ["robot", "dog"]
  501. },
  502. "sylveon": {
  503. name: "Sylveon",
  504. parents: ["pokemon"]
  505. },
  506. "catgirl": {
  507. name: "Catgirl",
  508. parents: ["mammal"]
  509. },
  510. "cowgirl": {
  511. name: "Cowgirl",
  512. parents: ["mammal"]
  513. },
  514. "pony": {
  515. name: "Pony",
  516. parents: ["horse"]
  517. },
  518. "rabbit": {
  519. name: "Rabbit",
  520. parents: ["mammal"]
  521. },
  522. "fennec-fox": {
  523. name: "Fennec Fox",
  524. parents: ["fox"]
  525. },
  526. "azodian": {
  527. name: "Azodian",
  528. parents: ["mouse"]
  529. },
  530. "shiba-inu": {
  531. name: "Shiba Inu",
  532. parents: ["dog"]
  533. },
  534. "changeling": {
  535. name: "Changeling",
  536. parents: ["insect"]
  537. },
  538. "cheetah": {
  539. name: "Cheetah",
  540. parents: ["cat"]
  541. },
  542. "golden-jackal": {
  543. name: "Golden Jackal",
  544. parents: ["jackal"]
  545. },
  546. "manectric": {
  547. name: "Manectric",
  548. parents: ["pokemon"]
  549. },
  550. "rat": {
  551. name: "Rat",
  552. parents: ["rodent"]
  553. },
  554. "rodent": {
  555. name: "Rodent",
  556. parents: ["mammal"]
  557. },
  558. "octocoon": {
  559. name: "Octocoon",
  560. parents: ["raccoon", "octopus"]
  561. },
  562. "octopus": {
  563. name: "Octopus",
  564. parents: ["fish"]
  565. },
  566. "werewolf": {
  567. name: "Werewolf",
  568. parents: ["wolf", "werebeast"]
  569. },
  570. "werebeast": {
  571. name: "Werebeast",
  572. parents: ["monster"]
  573. },
  574. "meerkat": {
  575. name: "Meerkat",
  576. parents: ["mammal"]
  577. },
  578. "human": {
  579. name: "Human",
  580. parents: ["mammal"]
  581. },
  582. "geth": {
  583. name: "Geth",
  584. parents: ["android"]
  585. },
  586. "husky": {
  587. name: "Husky",
  588. parents: ["dog"]
  589. },
  590. "long-eared-bat": {
  591. name: "Long Eared Bat",
  592. parents: ["bat"]
  593. },
  594. "lizard": {
  595. name: "Lizard",
  596. parents: ["reptile"]
  597. },
  598. "salamander": {
  599. name: "Salamander",
  600. parents: ["lizard"]
  601. },
  602. "chameleon": {
  603. name: "Chameleon",
  604. parents: ["lizard"]
  605. },
  606. "gecko": {
  607. name: "Gecko",
  608. parents: ["lizard"]
  609. },
  610. "kobold": {
  611. name: "Kobold",
  612. parents: ["reptile"]
  613. },
  614. "charizard": {
  615. name: "Charizard",
  616. parents: ["pokemon"]
  617. },
  618. "lugia": {
  619. name: "Lugia",
  620. parents: ["pokemon"]
  621. },
  622. "cerberus": {
  623. name: "Cerberus",
  624. parents: ["dog"]
  625. },
  626. "tyrantrum": {
  627. name: "Tyrantrum",
  628. parents: ["pokemon"]
  629. },
  630. "lemur": {
  631. name: "Lemur",
  632. parents: ["mammal"]
  633. },
  634. "kelpie": {
  635. name: "Kelpie",
  636. parents: ["horse", "monster"]
  637. },
  638. "labrador": {
  639. name: "Labrador",
  640. parents: ["dog"]
  641. },
  642. "sylveon": {
  643. name: "Sylveon",
  644. parents: ["eeveelution"]
  645. },
  646. "eeveelution": {
  647. name: "Eeveelution",
  648. parents: ["pokemon"]
  649. },
  650. "polar-bear": {
  651. name: "Polar Bear",
  652. parents: ["bear"]
  653. },
  654. "bear": {
  655. name: "Bear",
  656. parents: ["mammal"]
  657. },
  658. "absol": {
  659. name: "Absol",
  660. parents: ["pokemon"]
  661. },
  662. "wolver": {
  663. name: "Wolver",
  664. parents: ["mammal"]
  665. },
  666. "rottweiler": {
  667. name: "Rottweiler",
  668. parents: ["dog"]
  669. },
  670. "zebra": {
  671. name: "Zebra",
  672. parents: ["horse"]
  673. },
  674. "yoshi": {
  675. name: "Yoshi",
  676. parents: ["lizard"]
  677. },
  678. "lynx": {
  679. name: "Lynx",
  680. parents: ["cat"]
  681. },
  682. "unknown": {
  683. name: "Unknown",
  684. parents: []
  685. },
  686. "thylacine": {
  687. name: "Thylacine",
  688. parents: ["mammal"]
  689. },
  690. "gabumon": {
  691. name: "Gabumon",
  692. parents: ["digimon"]
  693. },
  694. "border-collie": {
  695. name: "Border Collie",
  696. parents: ["dog"]
  697. },
  698. "imp": {
  699. name: "Imp",
  700. parents: ["demon"]
  701. },
  702. "kangaroo": {
  703. name: "Kangaroo",
  704. parents: ["marsupial"]
  705. },
  706. "renamon": {
  707. name: "Renamon",
  708. parents: ["digimon"]
  709. },
  710. "candy-orca-dragon": {
  711. name: "Candy Orca Dragon",
  712. parents: ["fish", "dragon", "candy"]
  713. },
  714. "sabertooth-tiger": {
  715. name: "Sabertooth Tiger",
  716. parents: ["cat"]
  717. },
  718. "espurr": {
  719. name: "Espurr",
  720. parents: ["pokemon"]
  721. },
  722. "otter": {
  723. name: "Otter",
  724. parents: ["mustelid"]
  725. },
  726. "elemental": {
  727. name: "Elemental",
  728. parents: ["mammal"]
  729. },
  730. "mew": {
  731. name: "Mew",
  732. parents: ["pokemon"]
  733. },
  734. "goodra": {
  735. name: "Goodra",
  736. parents: ["pokemon"]
  737. },
  738. "fairy": {
  739. name: "Fairy",
  740. parents: ["magical"]
  741. },
  742. "typhlosion": {
  743. name: "Typhlosion",
  744. parents: ["pokemon"]
  745. },
  746. "magical": {
  747. name: "Magical",
  748. parents: []
  749. },
  750. "xenomorph": {
  751. name: "Xenomorph",
  752. parents: ["monster", "alien"]
  753. },
  754. "charr": {
  755. name: "Charr",
  756. parents: ["cat"]
  757. },
  758. "siberian-husky": {
  759. name: "Siberian Husky",
  760. parents: ["husky"]
  761. },
  762. "alligator": {
  763. name: "Alligator",
  764. parents: ["reptile"]
  765. },
  766. "bernese-mountain-dog": {
  767. name: "Bernese Mountain Dog",
  768. parents: ["dog"]
  769. },
  770. "reshiram": {
  771. name: "Reshiram",
  772. parents: ["pokemon"]
  773. },
  774. "grizzly-bear": {
  775. name: "Grizzly Bear",
  776. parents: ["bear"]
  777. },
  778. "water-monitor": {
  779. name: "Water Monitor",
  780. parents: ["lizard"]
  781. },
  782. "banchofossa": {
  783. name: "Banchofossa",
  784. parents: ["mammal"]
  785. },
  786. "kirin": {
  787. name: "Kirin",
  788. parents: ["monster"]
  789. },
  790. "quilava": {
  791. name: "Quilava",
  792. parents: ["pokemon"]
  793. },
  794. "seviper": {
  795. name: "Seviper",
  796. parents: ["pokemon"]
  797. },
  798. "flying-fox": {
  799. name: "Flying Fox",
  800. parents: ["bat"]
  801. },
  802. "keynain": {
  803. name: "Keynain",
  804. parents: ["avian"]
  805. },
  806. "lucario": {
  807. name: "Lucario",
  808. parents: ["pokemon"]
  809. },
  810. "siamese-cat": {
  811. name: "Siamese Cat",
  812. parents: ["cat"]
  813. },
  814. "spider": {
  815. name: "Spider",
  816. parents: ["insect"]
  817. },
  818. "samurott": {
  819. name: "Samurott",
  820. parents: ["pokemon"]
  821. },
  822. "megalodon": {
  823. name: "Megalodon",
  824. parents: ["shark"]
  825. },
  826. "unicorn": {
  827. name: "Unicorn",
  828. parents: ["horse"]
  829. },
  830. "greninja": {
  831. name: "Greninja",
  832. parents: ["pokemon"]
  833. },
  834. "water-dragon": {
  835. name: "Water Dragon",
  836. parents: ["dragon"]
  837. },
  838. "cross-fox": {
  839. name: "Cross Fox",
  840. parents: ["fox"]
  841. },
  842. "synth": {
  843. name: "Synth",
  844. parents: ["machine"]
  845. },
  846. "construct": {
  847. name: "Construct",
  848. parents: []
  849. },
  850. "mexican-wolf": {
  851. name: "Mexican Wolf",
  852. parents: ["wolf"]
  853. },
  854. "leopard": {
  855. name: "Leopard",
  856. parents: ["cat"]
  857. },
  858. "pig": {
  859. name: "Pig",
  860. parents: ["mammal"]
  861. },
  862. "ampharos": {
  863. name: "Ampharos",
  864. parents: ["pokemon"]
  865. },
  866. "orca": {
  867. name: "Orca",
  868. parents: ["fish"]
  869. },
  870. "lycanroc": {
  871. name: "Lycanroc",
  872. parents: ["pokemon"]
  873. },
  874. "surkanu": {
  875. name: "Surkanu",
  876. parents: ["monster"]
  877. },
  878. "seal": {
  879. name: "Seal",
  880. parents: ["mammal"]
  881. },
  882. "keldeo": {
  883. name: "Keldeo",
  884. parents: ["pokemon"]
  885. },
  886. "great-dane": {
  887. name: "Great Dane",
  888. parents: ["dog"]
  889. },
  890. "black-backed-jackal": {
  891. name: "Black Backed Jackal",
  892. parents: ["jackal"]
  893. },
  894. "sheep": {
  895. name: "Sheep",
  896. parents: ["mammal"]
  897. },
  898. "leopard-seal": {
  899. name: "Leopard Seal",
  900. parents: ["seal"]
  901. },
  902. "zoroark": {
  903. name: "Zoroark",
  904. parents: ["pokemon"]
  905. },
  906. "maned-wolf": {
  907. name: "Maned Wolf",
  908. parents: ["canine"]
  909. },
  910. "dracha": {
  911. name: "Dracha",
  912. parents: ["dragon"]
  913. },
  914. "wolxi": {
  915. name: "Wolxi",
  916. parents: ["mammal", "alien"]
  917. },
  918. "dratini": {
  919. name: "Dratini",
  920. parents: ["pokemon", "dragon"]
  921. },
  922. "skaven": {
  923. name: "Skaven",
  924. parents: ["rat"]
  925. },
  926. "mongoose": {
  927. name: "Mongoose",
  928. parents: ["mammal"]
  929. },
  930. "lopunny": {
  931. name: "Lopunny",
  932. parents: ["pokemon", "rabbit"]
  933. },
  934. "feraligatr": {
  935. name: "Feraligatr",
  936. parents: ["pokemon", "alligator"]
  937. },
  938. "houndoom": {
  939. name: "Houndoom",
  940. parents: ["pokemon", "dog"]
  941. },
  942. "protogen": {
  943. name: "Protogen",
  944. parents: ["machine"]
  945. },
  946. "saint-bernard": {
  947. name: "Saint Bernard",
  948. parents: ["dog"]
  949. },
  950. "crow": {
  951. name: "Crow",
  952. parents: ["corvid"]
  953. },
  954. "delphox": {
  955. name: "Delphox",
  956. parents: ["pokemon", "fox"]
  957. },
  958. "moose": {
  959. name: "Moose",
  960. parents: ["mammal"]
  961. },
  962. "joraxian": {
  963. name: "Joraxian",
  964. parents: ["monster", "canine", "demon"]
  965. },
  966. "nimbat": {
  967. name: "Nimbat",
  968. parents: ["mammal"]
  969. },
  970. "aardwolf": {
  971. name: "Aardwolf",
  972. parents: ["canine"]
  973. },
  974. "fluudrani": {
  975. name: "Fluudrani",
  976. parents: ["animal"]
  977. },
  978. "arcanine": {
  979. name: "Arcanine",
  980. parents: ["pokemon", "dog"]
  981. },
  982. "inteleon": {
  983. name: "Inteleon",
  984. parents: ["pokemon", "fish"]
  985. },
  986. "ninetales": {
  987. name: "Ninetales",
  988. parents: ["pokemon", "kitsune"]
  989. },
  990. "tigrex": {
  991. name: "Tigrex",
  992. parents: ["tiger"]
  993. },
  994. "zorua": {
  995. name: "Zorua",
  996. parents: ["pokemon", "fox"]
  997. },
  998. "vulpix": {
  999. name: "Vulpix",
  1000. parents: ["pokemon", "fox"]
  1001. },
  1002. "barghest": {
  1003. name: "Barghest",
  1004. parents: ["monster"]
  1005. },
  1006. "gray-wolf": {
  1007. name: "Gray Wolf",
  1008. parents: ["wolf"]
  1009. },
  1010. "ruppells-fox": {
  1011. name: "Rüppell's Fox",
  1012. parents: ["fox"]
  1013. },
  1014. "bull-terrier": {
  1015. name: "Bull Terrier",
  1016. parents: ["dog"]
  1017. },
  1018. "european-honey-buzzard": {
  1019. name: "European Honey Buzzard",
  1020. parents: ["avian"]
  1021. },
  1022. "t-rex": {
  1023. name: "Tyrannosaurus Rex",
  1024. parents: ["dinosaur"]
  1025. },
  1026. "mactarian": {
  1027. name: "Mactarian",
  1028. parents: ["shark", "monster"]
  1029. },
  1030. "mewtwo-y": {
  1031. name: "Mewtwo Y",
  1032. parents: ["mewtwo"]
  1033. },
  1034. "mewtwo": {
  1035. name: "Mewtwo",
  1036. parents: ["pokemon"]
  1037. },
  1038. "mew": {
  1039. name: "Mew",
  1040. parents: ["pokemon"]
  1041. },
  1042. "eevee": {
  1043. name: "Eevee",
  1044. parents: ["eeveelution"]
  1045. },
  1046. "mienshao": {
  1047. name: "Mienshao",
  1048. parents: ["pokemon"]
  1049. },
  1050. "sugar-glider": {
  1051. name: "Sugar Glider",
  1052. parents: ["opossum"]
  1053. },
  1054. "spectral-bat": {
  1055. name: "Spectral Bat",
  1056. parents: ["bat"]
  1057. },
  1058. "scolipede": {
  1059. name: "Scolipede",
  1060. parents: ["pokemon", "insect"]
  1061. },
  1062. "jackalope": {
  1063. name: "Jackalope",
  1064. parents: ["rabbit", "antelope"]
  1065. },
  1066. "caracal": {
  1067. name: "Caracal",
  1068. parents: ["cat"]
  1069. },
  1070. "stoat": {
  1071. name: "Stoat",
  1072. parents: ["mammal"]
  1073. },
  1074. "african-golden-cat": {
  1075. name: "African Golden Cat",
  1076. parents: ["cat"]
  1077. },
  1078. "gigantosaurus": {
  1079. name: "Gigantosaurus",
  1080. parents: ["dinosaur"]
  1081. },
  1082. "zorgoia": {
  1083. name: "Zorgoia",
  1084. parents: ["mammal"]
  1085. },
  1086. "monitor-lizard": {
  1087. name: "Monitor Lizard",
  1088. parents: ["lizard"]
  1089. },
  1090. "ziralkia": {
  1091. name: "Ziralkia",
  1092. parents: ["mammal"]
  1093. },
  1094. "kiiasi": {
  1095. name: "Kiiasi",
  1096. parents: ["animal"]
  1097. },
  1098. "synx": {
  1099. name: "Synx",
  1100. parents: ["monster"]
  1101. },
  1102. "panther": {
  1103. name: "Panther",
  1104. parents: ["cat"]
  1105. },
  1106. "azumarill": {
  1107. name: "Azumarill",
  1108. parents: ["pokemon"]
  1109. },
  1110. "river-snaptail": {
  1111. name: "River Snaptail",
  1112. parents: ["otter", "crocodile"]
  1113. },
  1114. "great-blue-heron": {
  1115. name: "Great Blue Heron",
  1116. parents: ["avian"]
  1117. },
  1118. "smeargle": {
  1119. name: "Smeargle",
  1120. parents: ["pokemon"]
  1121. },
  1122. "vendeilen": {
  1123. name: "Vendeilen",
  1124. parents: ["monster"]
  1125. },
  1126. "ventura": {
  1127. name: "Ventura",
  1128. parents: ["canine"]
  1129. },
  1130. "clouded-leopard": {
  1131. name: "Clouded Leopard",
  1132. parents: ["leopard"]
  1133. },
  1134. "argonian": {
  1135. name: "Argonian",
  1136. parents: ["lizard"]
  1137. },
  1138. "salazzle": {
  1139. name: "Salazzle",
  1140. parents: ["pokemon", "lizard"]
  1141. },
  1142. "je-stoff-drachen": {
  1143. name: "Je-Stoff Drachen",
  1144. parents: ["dragon"]
  1145. },
  1146. "finnish-spitz-dog": {
  1147. name: "Finnish Spitz Dog",
  1148. parents: ["dog"]
  1149. },
  1150. "gray-fox": {
  1151. name: "Gray Fox",
  1152. parents: ["fox"]
  1153. },
  1154. "opossum": {
  1155. name: "opossum",
  1156. parents: ["mammal"]
  1157. },
  1158. "antelope": {
  1159. name: "Antelope",
  1160. parents: ["mammal"]
  1161. },
  1162. "weavile": {
  1163. name: "Weavile",
  1164. parents: ["pokemon"]
  1165. },
  1166. "pikachu": {
  1167. name: "Pikachu",
  1168. parents: ["pokemon", "mouse"]
  1169. },
  1170. "grovyle": {
  1171. name: "Grovyle",
  1172. parents: ["pokemon", "plant"]
  1173. },
  1174. "sthara": {
  1175. name: "Sthara",
  1176. parents: ["snow-leopard", "reptile"]
  1177. },
  1178. "star-warrior": {
  1179. name: "Star Warrior",
  1180. parents: ["magical"]
  1181. },
  1182. "dragonoid": {
  1183. name: "Dragonoid",
  1184. parents: ["dragon"]
  1185. },
  1186. "suicune": {
  1187. name: "Suicune",
  1188. parents: ["pokemon"]
  1189. },
  1190. "vole": {
  1191. name: "Vole",
  1192. parents: ["mammal"]
  1193. },
  1194. "blaziken": {
  1195. name: "Blaziken",
  1196. parents: ["pokemon", "avian"]
  1197. },
  1198. "buizel": {
  1199. name: "Buizel",
  1200. parents: ["pokemon", "fish"]
  1201. },
  1202. "floatzel": {
  1203. name: "Floatzel",
  1204. parents: ["pokemon", "fish"]
  1205. },
  1206. "umok": {
  1207. name: "Umok",
  1208. parents: ["avian"]
  1209. },
  1210. "sea-monster": {
  1211. name: "Sea Monster",
  1212. parents: ["monster", "fish"]
  1213. },
  1214. "egyptian-vulture": {
  1215. name: "Egyptian Vulture",
  1216. parents: ["avian"]
  1217. },
  1218. "doberman": {
  1219. name: "Doberman",
  1220. parents: ["dog"]
  1221. },
  1222. "zangoose": {
  1223. name: "Zangoose",
  1224. parents: ["pokemon", "mongoose"]
  1225. },
  1226. "mongoose": {
  1227. name: "Mongoose",
  1228. parents: ["mammal"]
  1229. },
  1230. "wickerbeast": {
  1231. name: "Wickerbeast",
  1232. parents: ["monster"]
  1233. },
  1234. "zenari": {
  1235. name: "Zenari",
  1236. parents: ["lizard"]
  1237. },
  1238. "plant": {
  1239. name: "Plant",
  1240. parents: []
  1241. },
  1242. "raskatox": {
  1243. name: "Raskatox",
  1244. parents: ["raccoon", "skunk", "cat", "fox"]
  1245. },
  1246. "mikromare": {
  1247. name: "mikromare",
  1248. parents: ["alien"]
  1249. },
  1250. "alien": {
  1251. name: "Alien",
  1252. parents: ["animal"]
  1253. },
  1254. "deity": {
  1255. name: "Deity",
  1256. parents: []
  1257. },
  1258. "skarlan": {
  1259. name: "Skarlan",
  1260. parents: ["slug", "dragon"]
  1261. },
  1262. "slug": {
  1263. name: "Slug",
  1264. parents: ["mollusk"]
  1265. },
  1266. "mollusk": {
  1267. name: "Mollusk",
  1268. parents: ["animal"]
  1269. },
  1270. "chimera": {
  1271. name: "Chimera",
  1272. parents: ["monster"]
  1273. },
  1274. "gestalt": {
  1275. name: "Gestalt",
  1276. parents: ["construct"]
  1277. },
  1278. "mimic": {
  1279. name: "Mimic",
  1280. parents: ["monster"]
  1281. },
  1282. "calico-rat": {
  1283. name: "Calico Rat",
  1284. parents: ["rat"]
  1285. },
  1286. "panda": {
  1287. name: "Panda",
  1288. parents: ["mammal"]
  1289. },
  1290. "oni": {
  1291. name: "Oni",
  1292. parents: ["monster"]
  1293. },
  1294. "pegasus": {
  1295. name: "Pegasus",
  1296. parents: ["horse"]
  1297. },
  1298. "vulpera": {
  1299. name: "Vulpera",
  1300. parents: ["fennec-fox"]
  1301. },
  1302. "ceratosaurus": {
  1303. name: "Ceratosaurus",
  1304. parents: ["dinosaur"]
  1305. },
  1306. "nykur": {
  1307. name: "Nykur",
  1308. parents: ["horse", "monster"]
  1309. },
  1310. "giraffe": {
  1311. name: "Giraffe",
  1312. parents: ["mammal"]
  1313. },
  1314. "tauren": {
  1315. name: "Tauren",
  1316. parents: ["cow"]
  1317. },
  1318. "draconi": {
  1319. name: "Draconi",
  1320. parents: ["alien", "cat", "cyborg"]
  1321. },
  1322. "dire-wolf": {
  1323. name: "Dire Wolf",
  1324. parents: ["wolf"]
  1325. },
  1326. "ferromorph": {
  1327. name: "Ferromorph",
  1328. parents: ["construct"]
  1329. },
  1330. "meowth": {
  1331. name: "Meowth",
  1332. parents: ["cat", "pokemon"]
  1333. },
  1334. "pavodragon": {
  1335. name: "Pavodragon",
  1336. parents: ["dragon"]
  1337. },
  1338. "aaltranae": {
  1339. name: "Aaltranae",
  1340. parents: ["dragon"]
  1341. },
  1342. "cyborg": {
  1343. name: "Cyborg",
  1344. parents: ["machine"]
  1345. },
  1346. "draptor": {
  1347. name: "Draptor",
  1348. parents: ["dragon"]
  1349. },
  1350. "candy": {
  1351. name: "Candy",
  1352. parents: []
  1353. },
  1354. "drenath": {
  1355. name: "Drenath",
  1356. parents: ["dragon", "snake", "rabbit"]
  1357. },
  1358. "coyju": {
  1359. name: "Coyju",
  1360. parents: ["coyote", "kaiju"]
  1361. },
  1362. "kaiju": {
  1363. name: "Kaiju",
  1364. parents: ["monster"]
  1365. },
  1366. "nickit": {
  1367. name: "Nickit",
  1368. parents: ["pokemon", "cat"]
  1369. },
  1370. "lopunny": {
  1371. name: "Lopunny",
  1372. parents: ["pokemon", "rabbit"]
  1373. },
  1374. "korean-jindo-dog": {
  1375. name: "Korean Jindo Dog",
  1376. parents: ["dog"]
  1377. },
  1378. "naga": {
  1379. name: "Naga",
  1380. parents: ["snake", "monster"]
  1381. },
  1382. "undead": {
  1383. name: "Undead",
  1384. parents: ["monster"]
  1385. },
  1386. "whale": {
  1387. name: "Whale",
  1388. parents: ["fish"]
  1389. },
  1390. "gelato-bee": {
  1391. name: "Gelato Bee",
  1392. parents: ["bee"]
  1393. },
  1394. "bee": {
  1395. name: "Bee",
  1396. parents: ["insect"]
  1397. },
  1398. "gardevoir": {
  1399. name: "Gardevoir",
  1400. parents: ["pokemon"]
  1401. },
  1402. "ant": {
  1403. name: "Ant",
  1404. parents: ["insect"]
  1405. },
  1406. "frog": {
  1407. name: "Frog",
  1408. parents: ["amphibian"]
  1409. },
  1410. "amphibian": {
  1411. name: "Amphibian",
  1412. parents: ["animal"]
  1413. },
  1414. "pangolin": {
  1415. name: "Pangolin",
  1416. parents: ["mammal"]
  1417. },
  1418. "uragi'viidorn": {
  1419. name: "Uragi'viidorn",
  1420. parents: ["avian", "bear"]
  1421. },
  1422. "gryphdelphais": {
  1423. name: "Gryphdelphais",
  1424. parents: ["dolphin", "gryphon"]
  1425. },
  1426. "plush": {
  1427. name: "Plush",
  1428. parents: ["construct"]
  1429. },
  1430. "draiger": {
  1431. name: "Draiger",
  1432. parents: ["dragon","tiger"]
  1433. },
  1434. "foxsky": {
  1435. name: "Foxsky",
  1436. parents: ["fox", "husky"]
  1437. },
  1438. "umbreon": {
  1439. name: "Umbreon",
  1440. parents: ["eeveelution"]
  1441. },
  1442. "slime-dragon": {
  1443. name: "Slime Dragon",
  1444. parents: ["dragon", "goo"]
  1445. },
  1446. "enderman": {
  1447. name: "Enderman",
  1448. parents: ["monster"]
  1449. },
  1450. "gremlin": {
  1451. name: "Gremlin",
  1452. parents: ["monster"]
  1453. },
  1454. "dragonsune": {
  1455. name: "Dragonsune",
  1456. parents: ["dragon", "kitsune"]
  1457. },
  1458. "ghost": {
  1459. name: "Ghost",
  1460. parents: ["supernatural"]
  1461. },
  1462. "false-vampire-bat": {
  1463. name: "False Vampire Bat",
  1464. parents: ["bat"]
  1465. },
  1466. "succubus": {
  1467. name: "Succubus",
  1468. parents: ["demon"]
  1469. },
  1470. "mia": {
  1471. name: "Mia",
  1472. parents: ["canine"]
  1473. },
  1474. "rainbow": {
  1475. name: "Rainbow",
  1476. parents: ["monster"]
  1477. },
  1478. "solgaleo": {
  1479. name: "Solgaleo",
  1480. parents: ["pokemon"]
  1481. },
  1482. "lucent-nargacuga": {
  1483. name: "Lucent Nargacuga",
  1484. parents: ["monster-hunter"]
  1485. },
  1486. "monster-hunter": {
  1487. name: "Monster Hunter",
  1488. parents: ["monster"]
  1489. },
  1490. "leviathan": {
  1491. "name": "Leviathan",
  1492. "url": "sea-monster"
  1493. },
  1494. "bull": {
  1495. name: "Bull",
  1496. parents: ["mammal"]
  1497. },
  1498. "tanuki": {
  1499. name: "Tanuki",
  1500. parents: ["monster"]
  1501. },
  1502. "chakat": {
  1503. name: "Chakat",
  1504. parents: ["cat"]
  1505. },
  1506. "hydra": {
  1507. name: "Hydra",
  1508. parents: ["monster"]
  1509. },
  1510. "zigzagoon": {
  1511. name: "Zigzagoon",
  1512. parents: ["raccoon", "pokemon"]
  1513. },
  1514. "vulture": {
  1515. name: "Vulture",
  1516. parents: ["avian"]
  1517. },
  1518. "eastern-dragon": {
  1519. name: "Eastern Dragon",
  1520. parents: ["dragon"]
  1521. },
  1522. "gryffon": {
  1523. name: "Gryffon",
  1524. parents: ["phoenix", "red-panda"]
  1525. },
  1526. "amtsvane": {
  1527. name: "Amtsvane",
  1528. parents: ["reptile"]
  1529. },
  1530. "kigavi": {
  1531. name: "Kigavi",
  1532. parents: ["avian"]
  1533. },
  1534. "turian": {
  1535. name: "Turian",
  1536. parents: ["avian"]
  1537. },
  1538. "zeraora": {
  1539. name: "Zeraora",
  1540. parents: ["pokemon"]
  1541. },
  1542. "sandshrew": {
  1543. name: "Sandshrew",
  1544. parents: ["pokemon", "pangolin"]
  1545. },
  1546. "valais-blacknose-sheep": {
  1547. name: "Valais Blacknose Sheep",
  1548. parents: ["sheep"]
  1549. },
  1550. "novaleit": {
  1551. name: "Novaleit",
  1552. parents: ["mammal"]
  1553. },
  1554. "dunnoh": {
  1555. name: "Dunnoh",
  1556. parents: ["mammal"]
  1557. },
  1558. "lunaral-dragon": {
  1559. name: "Lunaral Dragon",
  1560. parents: ["dragon"]
  1561. },
  1562. "arctic-wolf": {
  1563. name: "Arctic Wolf",
  1564. parents: ["wolf"]
  1565. },
  1566. "donkey": {
  1567. name: "Donkey",
  1568. parents: ["horse"]
  1569. },
  1570. "chinchilla": {
  1571. name: "Chinchilla",
  1572. parents: ["rodent"]
  1573. },
  1574. "felkin": {
  1575. name: "Felkin",
  1576. parents: ["dragon"]
  1577. },
  1578. "tykeriel": {
  1579. name: "Tykeriel",
  1580. parents: ["avian"]
  1581. },
  1582. "folf": {
  1583. name: "Folf",
  1584. parents: ["fox", "wolf"]
  1585. },
  1586. "pooltoy": {
  1587. name: "Pooltoy",
  1588. parents: ["construct"]
  1589. },
  1590. "demi": {
  1591. name: "Demi",
  1592. parents: ["human"]
  1593. },
  1594. "stegosaurus": {
  1595. name: "Stegosaurus",
  1596. parents: ["dinosaur"]
  1597. },
  1598. "computer-virus": {
  1599. name: "Computer Virus",
  1600. parents: ["program"]
  1601. },
  1602. "program": {
  1603. name: "Program",
  1604. parents: ["construct"]
  1605. },
  1606. "space-springhare": {
  1607. name: "Space Springhare",
  1608. parents: ["rabbit"]
  1609. },
  1610. "river-drake": {
  1611. name: "River Drake",
  1612. parents: ["dragon"]
  1613. },
  1614. "djinn": {
  1615. "name": "Djinn",
  1616. "url": "supernatural"
  1617. },
  1618. "supernatural": {
  1619. name: "Supernatural",
  1620. parents: ["monster"]
  1621. },
  1622. "grasshopper-mouse": {
  1623. name: "Grasshopper Mouse",
  1624. parents: ["mouse"]
  1625. },
  1626. "somali-cat": {
  1627. name: "Somali Cat",
  1628. parents: ["cat"]
  1629. },
  1630. "minccino": {
  1631. name: "Minccino",
  1632. parents: ["pokemon", "chinchilla"]
  1633. },
  1634. "pine-marten": {
  1635. name: "Pine Marten",
  1636. parents: ["marten"]
  1637. },
  1638. "marten": {
  1639. name: "Marten",
  1640. parents: ["mustelid"]
  1641. },
  1642. "mustelid": {
  1643. name: "Mustelid",
  1644. parents: ["mammal"]
  1645. },
  1646. "caribou": {
  1647. name: "Caribou",
  1648. parents: ["deer"]
  1649. },
  1650. "gnoll": {
  1651. name: "Gnoll",
  1652. parents: ["hyena", "monster"]
  1653. },
  1654. "peacekeeper": {
  1655. name: "Peacekeeper",
  1656. parents: ["human"]
  1657. },
  1658. "river-otter": {
  1659. name: "River Otter",
  1660. parents: ["otter"]
  1661. },
  1662. "dhole": {
  1663. name: "Dhole",
  1664. parents: ["canine"]
  1665. },
  1666. "springbok": {
  1667. name: "Springbok",
  1668. parents: ["antelope"]
  1669. },
  1670. "marsupial": {
  1671. name: "Marsupial",
  1672. parents: ["mammal"]
  1673. },
  1674. "townsend-big-eared-bat": {
  1675. name: "Townsend Big-eared Bat",
  1676. parents: ["bat"]
  1677. },
  1678. "squirrel": {
  1679. name: "Squirrel",
  1680. parents: ["rodent"]
  1681. },
  1682. "magpie": {
  1683. name: "Magpie",
  1684. parents: ["corvid"]
  1685. },
  1686. "civet": {
  1687. name: "Civet",
  1688. parents: ["feliform"]
  1689. },
  1690. "feliform": {
  1691. name: "Feliform",
  1692. parents: ["mammal"]
  1693. },
  1694. "tiefling": {
  1695. name: "Tiefling",
  1696. parents: ["devil"]
  1697. },
  1698. "devil": {
  1699. name: "Devil",
  1700. parents: ["supernatural"]
  1701. },
  1702. "sika-deer": {
  1703. name: "Sika Deer",
  1704. parents: ["deer"]
  1705. },
  1706. "vaporeon": {
  1707. name: "Vaporeon",
  1708. parents: ["eeveelution"]
  1709. },
  1710. "leafeon": {
  1711. name: "Leafeon",
  1712. parents: ["eeveelution"]
  1713. },
  1714. "jolteon": {
  1715. name: "Jolteon",
  1716. parents: ["eeveelution"]
  1717. },
  1718. "spireborn": {
  1719. name: "Spireborn",
  1720. parents: ["zorgoia"]
  1721. },
  1722. "vampire": {
  1723. name: "Vampire",
  1724. parents: ["monster"]
  1725. },
  1726. "extraplanar": {
  1727. name: "Extraplanar",
  1728. parents: []
  1729. },
  1730. "goo": {
  1731. name: "Goo",
  1732. parents: []
  1733. },
  1734. "skink": {
  1735. name: "Skink",
  1736. parents: ["lizard"]
  1737. },
  1738. "bat-eared-fox": {
  1739. name: "Bat-eared Fox",
  1740. parents: ["fox"]
  1741. },
  1742. "belted-kingfisher": {
  1743. name: "Belted Kingfisher",
  1744. parents: ["avian"]
  1745. },
  1746. "omnifalcon": {
  1747. name: "Omnifalcon",
  1748. parents: ["gryphon", "falcon", "harpy-eagle"]
  1749. },
  1750. "falcon": {
  1751. name: "Falcon",
  1752. parents: ["avian"]
  1753. },
  1754. "avali": {
  1755. name: "Avali",
  1756. parents: ["avian", "alien"]
  1757. },
  1758. "arctic-fox": {
  1759. name: "Arctic Fox",
  1760. parents: ["fox"]
  1761. },
  1762. "snow-tiger": {
  1763. name: "Snow Tiger",
  1764. parents: ["tiger"]
  1765. },
  1766. "marble-fox": {
  1767. name: "Marble Fox",
  1768. parents: ["fox"]
  1769. },
  1770. "king-wickerbeast": {
  1771. name: "King Wickerbeast",
  1772. parents: ["wickerbeast"]
  1773. },
  1774. "wickerbeast": {
  1775. name: "Wickerbeast",
  1776. parents: ["mammal"]
  1777. },
  1778. "european-polecat": {
  1779. name: "European Polecat",
  1780. parents: ["mustelid"]
  1781. },
  1782. "teshari": {
  1783. name: "Teshari",
  1784. parents: ["avian", "raptor"]
  1785. },
  1786. "alicorn": {
  1787. name: "Alicorn",
  1788. parents: ["horse"]
  1789. },
  1790. "atlas-moth": {
  1791. name: "Atlas Moth",
  1792. parents: ["moth"]
  1793. },
  1794. "owlbear": {
  1795. name: "Owlbear",
  1796. parents: ["owl", "bear", "monster"]
  1797. },
  1798. "owl": {
  1799. name: "Owl",
  1800. parents: ["avian"]
  1801. },
  1802. "silvertongue": {
  1803. name: "Silvertongue",
  1804. parents: ["reptile"]
  1805. },
  1806. "ahuizotl": {
  1807. name: "Ahuizotl",
  1808. parents: ["monster"]
  1809. },
  1810. }
  1811. //species
  1812. function getSpeciesInfo(speciesList) {
  1813. let result = new Set();
  1814. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1815. result.add(entry)
  1816. });
  1817. return Array.from(result);
  1818. };
  1819. function getSpeciesInfoHelper(species) {
  1820. if (!speciesData[species]) {
  1821. console.warn(species + " doesn't exist");
  1822. return [];
  1823. }
  1824. if (speciesData[species].parents) {
  1825. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1826. } else {
  1827. return [species];
  1828. }
  1829. }
  1830. characterMakers.push(() => makeCharacter(
  1831. {
  1832. name: "Fen",
  1833. species: ["crux"],
  1834. description: {
  1835. title: "Bio",
  1836. text: "Very furry. Sheds on everything."
  1837. },
  1838. tags: [
  1839. "anthro",
  1840. "goo"
  1841. ]
  1842. },
  1843. {
  1844. front: {
  1845. height: math.unit(2.2428, "meter"),
  1846. weight: math.unit(124.738, "kg"),
  1847. name: "Front",
  1848. image: {
  1849. source: "./media/characters/fen/front.svg",
  1850. extra: 1804/1562,
  1851. bottom: 205/2009
  1852. }
  1853. },
  1854. diving: {
  1855. height: math.unit(3.3, "meters"),
  1856. weight: math.unit(124.738, "kg"),
  1857. name: "Diving",
  1858. image: {
  1859. source: "./media/characters/fen/diving.svg"
  1860. }
  1861. },
  1862. maw: {
  1863. height: math.unit(2.83, "feet"),
  1864. name: "Maw",
  1865. image: {
  1866. source: "./media/characters/fen/maw.svg"
  1867. }
  1868. },
  1869. back: {
  1870. height: math.unit(2.2428, "meter"),
  1871. weight: math.unit(124.738, "kg"),
  1872. name: "Back",
  1873. image: {
  1874. source: "./media/characters/fen/back.svg",
  1875. },
  1876. info: {
  1877. description: {
  1878. mode: "append",
  1879. text: "\n\nHe is not currently looking at you."
  1880. }
  1881. }
  1882. },
  1883. full: {
  1884. height: math.unit(0.91, "meter"),
  1885. weight: math.unit(225, "kg"),
  1886. name: "Full",
  1887. image: {
  1888. source: "./media/characters/fen/full.svg",
  1889. extra: 1133/859,
  1890. bottom: 145/1278
  1891. },
  1892. info: {
  1893. description: {
  1894. mode: "append",
  1895. text: "\n\nMunch."
  1896. }
  1897. }
  1898. },
  1899. kneeling: {
  1900. height: math.unit(5.4, "feet"),
  1901. weight: math.unit(124.738, "kg"),
  1902. name: "Kneeling",
  1903. image: {
  1904. source: "./media/characters/fen/kneeling.svg",
  1905. extra: 563 / 507
  1906. }
  1907. },
  1908. goo: {
  1909. height: math.unit(2.8, "feet"),
  1910. weight: math.unit(125, "kg"),
  1911. capacity: math.unit(1, "people"),
  1912. name: "Goo",
  1913. image: {
  1914. source: "./media/characters/fen/goo.svg",
  1915. bottom: 116 / 613
  1916. }
  1917. },
  1918. lounging: {
  1919. height: math.unit(6.5, "feet"),
  1920. weight: math.unit(125, "kg"),
  1921. name: "Lounging",
  1922. image: {
  1923. source: "./media/characters/fen/lounging.svg"
  1924. }
  1925. },
  1926. },
  1927. [
  1928. {
  1929. name: "Small",
  1930. height: math.unit(2.2428, "meter")
  1931. },
  1932. {
  1933. name: "Normal",
  1934. height: math.unit(12, "feet"),
  1935. default: true,
  1936. },
  1937. {
  1938. name: "Big",
  1939. height: math.unit(20, "feet")
  1940. },
  1941. {
  1942. name: "Minimacro",
  1943. height: math.unit(40, "feet"),
  1944. info: {
  1945. description: {
  1946. mode: "append",
  1947. text: "\n\nTOO DAMN BIG"
  1948. }
  1949. }
  1950. },
  1951. {
  1952. name: "Macro",
  1953. height: math.unit(100, "feet"),
  1954. info: {
  1955. description: {
  1956. mode: "append",
  1957. text: "\n\nTOO DAMN BIG"
  1958. }
  1959. }
  1960. },
  1961. {
  1962. name: "Megamacro",
  1963. height: math.unit(2, "miles")
  1964. },
  1965. {
  1966. name: "Gigamacro",
  1967. height: math.unit(10, "earths")
  1968. },
  1969. ]
  1970. ))
  1971. characterMakers.push(() => makeCharacter(
  1972. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1973. {
  1974. front: {
  1975. height: math.unit(183, "cm"),
  1976. weight: math.unit(80, "kg"),
  1977. name: "Front",
  1978. image: {
  1979. source: "./media/characters/sofia-fluttertail/front.svg",
  1980. bottom: 0.01,
  1981. extra: 2154 / 2081
  1982. }
  1983. },
  1984. frontAlt: {
  1985. height: math.unit(183, "cm"),
  1986. weight: math.unit(80, "kg"),
  1987. name: "Front (alt)",
  1988. image: {
  1989. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1990. }
  1991. },
  1992. back: {
  1993. height: math.unit(183, "cm"),
  1994. weight: math.unit(80, "kg"),
  1995. name: "Back",
  1996. image: {
  1997. source: "./media/characters/sofia-fluttertail/back.svg"
  1998. }
  1999. },
  2000. kneeling: {
  2001. height: math.unit(125, "cm"),
  2002. weight: math.unit(80, "kg"),
  2003. name: "Kneeling",
  2004. image: {
  2005. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2006. extra: 1033 / 977,
  2007. bottom: 23.7 / 1057
  2008. }
  2009. },
  2010. maw: {
  2011. height: math.unit(183 / 5, "cm"),
  2012. name: "Maw",
  2013. image: {
  2014. source: "./media/characters/sofia-fluttertail/maw.svg"
  2015. }
  2016. },
  2017. mawcloseup: {
  2018. height: math.unit(183 / 5 * 0.41, "cm"),
  2019. name: "Maw (Closeup)",
  2020. image: {
  2021. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2022. }
  2023. },
  2024. paws: {
  2025. height: math.unit(1.17, "feet"),
  2026. name: "Paws",
  2027. image: {
  2028. source: "./media/characters/sofia-fluttertail/paws.svg",
  2029. extra: 851 / 851,
  2030. bottom: 17 / 868
  2031. }
  2032. },
  2033. },
  2034. [
  2035. {
  2036. name: "Normal",
  2037. height: math.unit(1.83, "meter")
  2038. },
  2039. {
  2040. name: "Size Thief",
  2041. height: math.unit(18, "feet")
  2042. },
  2043. {
  2044. name: "50 Foot Collie",
  2045. height: math.unit(50, "feet")
  2046. },
  2047. {
  2048. name: "Macro",
  2049. height: math.unit(96, "feet"),
  2050. default: true
  2051. },
  2052. {
  2053. name: "Megamerger",
  2054. height: math.unit(650, "feet")
  2055. },
  2056. ]
  2057. ))
  2058. characterMakers.push(() => makeCharacter(
  2059. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2060. {
  2061. front: {
  2062. height: math.unit(7, "feet"),
  2063. weight: math.unit(100, "kg"),
  2064. name: "Front",
  2065. image: {
  2066. source: "./media/characters/march/front.svg",
  2067. extra: 1992/1851,
  2068. bottom: 39/2031
  2069. }
  2070. },
  2071. foot: {
  2072. height: math.unit(0.9, "feet"),
  2073. name: "Foot",
  2074. image: {
  2075. source: "./media/characters/march/foot.svg"
  2076. }
  2077. },
  2078. },
  2079. [
  2080. {
  2081. name: "Normal",
  2082. height: math.unit(7.9, "feet")
  2083. },
  2084. {
  2085. name: "Macro",
  2086. height: math.unit(220, "meters")
  2087. },
  2088. {
  2089. name: "Megamacro",
  2090. height: math.unit(2.98, "km"),
  2091. default: true
  2092. },
  2093. {
  2094. name: "Gigamacro",
  2095. height: math.unit(15963, "km")
  2096. },
  2097. {
  2098. name: "Teramacro",
  2099. height: math.unit(2980000000, "km")
  2100. },
  2101. {
  2102. name: "Examacro",
  2103. height: math.unit(250, "parsecs")
  2104. },
  2105. ]
  2106. ))
  2107. characterMakers.push(() => makeCharacter(
  2108. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2109. {
  2110. front: {
  2111. height: math.unit(6, "feet"),
  2112. weight: math.unit(60, "kg"),
  2113. name: "Front",
  2114. image: {
  2115. source: "./media/characters/noir/front.svg",
  2116. extra: 1,
  2117. bottom: 0.032
  2118. }
  2119. },
  2120. },
  2121. [
  2122. {
  2123. name: "Normal",
  2124. height: math.unit(6.6, "feet")
  2125. },
  2126. {
  2127. name: "Macro",
  2128. height: math.unit(500, "feet")
  2129. },
  2130. {
  2131. name: "Megamacro",
  2132. height: math.unit(2.5, "km"),
  2133. default: true
  2134. },
  2135. {
  2136. name: "Gigamacro",
  2137. height: math.unit(22500, "km")
  2138. },
  2139. {
  2140. name: "Teramacro",
  2141. height: math.unit(2500000000, "km")
  2142. },
  2143. {
  2144. name: "Examacro",
  2145. height: math.unit(200, "parsecs")
  2146. },
  2147. ]
  2148. ))
  2149. characterMakers.push(() => makeCharacter(
  2150. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2151. {
  2152. front: {
  2153. height: math.unit(7, "feet"),
  2154. weight: math.unit(100, "kg"),
  2155. name: "Front",
  2156. image: {
  2157. source: "./media/characters/okuri/front.svg",
  2158. extra: 1,
  2159. bottom: 0.037
  2160. }
  2161. },
  2162. back: {
  2163. height: math.unit(7, "feet"),
  2164. weight: math.unit(100, "kg"),
  2165. name: "Back",
  2166. image: {
  2167. source: "./media/characters/okuri/back.svg",
  2168. extra: 1,
  2169. bottom: 0.007
  2170. }
  2171. },
  2172. },
  2173. [
  2174. {
  2175. name: "Megamacro",
  2176. height: math.unit(100, "miles"),
  2177. default: true
  2178. },
  2179. ]
  2180. ))
  2181. characterMakers.push(() => makeCharacter(
  2182. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2183. {
  2184. front: {
  2185. height: math.unit(7, "feet"),
  2186. weight: math.unit(100, "kg"),
  2187. name: "Front",
  2188. image: {
  2189. source: "./media/characters/manny/front.svg",
  2190. extra: 1,
  2191. bottom: 0.06
  2192. }
  2193. },
  2194. back: {
  2195. height: math.unit(7, "feet"),
  2196. weight: math.unit(100, "kg"),
  2197. name: "Back",
  2198. image: {
  2199. source: "./media/characters/manny/back.svg",
  2200. extra: 1,
  2201. bottom: 0.014
  2202. }
  2203. },
  2204. },
  2205. [
  2206. {
  2207. name: "Normal",
  2208. height: math.unit(7, "feet"),
  2209. },
  2210. {
  2211. name: "Macro",
  2212. height: math.unit(78, "feet"),
  2213. default: true
  2214. },
  2215. {
  2216. name: "Macro+",
  2217. height: math.unit(300, "meters")
  2218. },
  2219. {
  2220. name: "Macro++",
  2221. height: math.unit(2400, "meters")
  2222. },
  2223. {
  2224. name: "Megamacro",
  2225. height: math.unit(5167, "meters")
  2226. },
  2227. {
  2228. name: "Gigamacro",
  2229. height: math.unit(41769, "miles")
  2230. },
  2231. ]
  2232. ))
  2233. characterMakers.push(() => makeCharacter(
  2234. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2235. {
  2236. front: {
  2237. height: math.unit(7, "feet"),
  2238. weight: math.unit(100, "kg"),
  2239. name: "Front",
  2240. image: {
  2241. source: "./media/characters/adake/front-1.svg"
  2242. }
  2243. },
  2244. frontAlt: {
  2245. height: math.unit(7, "feet"),
  2246. weight: math.unit(100, "kg"),
  2247. name: "Front (Alt)",
  2248. image: {
  2249. source: "./media/characters/adake/front-2.svg",
  2250. extra: 1,
  2251. bottom: 0.01
  2252. }
  2253. },
  2254. back: {
  2255. height: math.unit(7, "feet"),
  2256. weight: math.unit(100, "kg"),
  2257. name: "Back",
  2258. image: {
  2259. source: "./media/characters/adake/back.svg",
  2260. }
  2261. },
  2262. kneel: {
  2263. height: math.unit(5.385, "feet"),
  2264. weight: math.unit(100, "kg"),
  2265. name: "Kneeling",
  2266. image: {
  2267. source: "./media/characters/adake/kneel.svg",
  2268. bottom: 0.052
  2269. }
  2270. },
  2271. },
  2272. [
  2273. {
  2274. name: "Normal",
  2275. height: math.unit(7, "feet"),
  2276. },
  2277. {
  2278. name: "Macro",
  2279. height: math.unit(78, "feet"),
  2280. default: true
  2281. },
  2282. {
  2283. name: "Macro+",
  2284. height: math.unit(300, "meters")
  2285. },
  2286. {
  2287. name: "Macro++",
  2288. height: math.unit(2400, "meters")
  2289. },
  2290. {
  2291. name: "Megamacro",
  2292. height: math.unit(5167, "meters")
  2293. },
  2294. {
  2295. name: "Gigamacro",
  2296. height: math.unit(41769, "miles")
  2297. },
  2298. ]
  2299. ))
  2300. characterMakers.push(() => makeCharacter(
  2301. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2302. {
  2303. front: {
  2304. height: math.unit(1.65, "meters"),
  2305. weight: math.unit(50, "kg"),
  2306. name: "Front",
  2307. image: {
  2308. source: "./media/characters/elijah/front.svg",
  2309. extra: 858 / 830,
  2310. bottom: 95.5 / 953.8559
  2311. }
  2312. },
  2313. back: {
  2314. height: math.unit(1.65, "meters"),
  2315. weight: math.unit(50, "kg"),
  2316. name: "Back",
  2317. image: {
  2318. source: "./media/characters/elijah/back.svg",
  2319. extra: 895 / 850,
  2320. bottom: 5.3 / 897.956
  2321. }
  2322. },
  2323. frontNsfw: {
  2324. height: math.unit(1.65, "meters"),
  2325. weight: math.unit(50, "kg"),
  2326. name: "Front (NSFW)",
  2327. image: {
  2328. source: "./media/characters/elijah/front-nsfw.svg",
  2329. extra: 858 / 830,
  2330. bottom: 95.5 / 953.8559
  2331. }
  2332. },
  2333. backNsfw: {
  2334. height: math.unit(1.65, "meters"),
  2335. weight: math.unit(50, "kg"),
  2336. name: "Back (NSFW)",
  2337. image: {
  2338. source: "./media/characters/elijah/back-nsfw.svg",
  2339. extra: 895 / 850,
  2340. bottom: 5.3 / 897.956
  2341. }
  2342. },
  2343. dick: {
  2344. height: math.unit(1, "feet"),
  2345. name: "Dick",
  2346. image: {
  2347. source: "./media/characters/elijah/dick.svg"
  2348. }
  2349. },
  2350. beakOpen: {
  2351. height: math.unit(1.25, "feet"),
  2352. name: "Beak (Open)",
  2353. image: {
  2354. source: "./media/characters/elijah/beak-open.svg"
  2355. }
  2356. },
  2357. beakShut: {
  2358. height: math.unit(1.25, "feet"),
  2359. name: "Beak (Shut)",
  2360. image: {
  2361. source: "./media/characters/elijah/beak-shut.svg"
  2362. }
  2363. },
  2364. footFlexing: {
  2365. height: math.unit(1.61, "feet"),
  2366. name: "Foot (Flexing)",
  2367. image: {
  2368. source: "./media/characters/elijah/foot-flexing.svg"
  2369. }
  2370. },
  2371. footStepping: {
  2372. height: math.unit(1.44, "feet"),
  2373. name: "Foot (Stepping)",
  2374. image: {
  2375. source: "./media/characters/elijah/foot-stepping.svg"
  2376. }
  2377. },
  2378. plantigradeLeg: {
  2379. height: math.unit(2.34, "feet"),
  2380. name: "Plantigrade Leg",
  2381. image: {
  2382. source: "./media/characters/elijah/plantigrade-leg.svg"
  2383. }
  2384. },
  2385. plantigradeFootLeft: {
  2386. height: math.unit(0.9, "feet"),
  2387. name: "Plantigrade Foot (Left)",
  2388. image: {
  2389. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2390. }
  2391. },
  2392. plantigradeFootRight: {
  2393. height: math.unit(0.9, "feet"),
  2394. name: "Plantigrade Foot (Right)",
  2395. image: {
  2396. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2397. }
  2398. },
  2399. },
  2400. [
  2401. {
  2402. name: "Normal",
  2403. height: math.unit(1.65, "meters")
  2404. },
  2405. {
  2406. name: "Macro",
  2407. height: math.unit(55, "meters"),
  2408. default: true
  2409. },
  2410. {
  2411. name: "Macro+",
  2412. height: math.unit(105, "meters")
  2413. },
  2414. ]
  2415. ))
  2416. characterMakers.push(() => makeCharacter(
  2417. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2418. {
  2419. front: {
  2420. height: math.unit(7 + 2/12, "feet"),
  2421. weight: math.unit(320, "kg"),
  2422. name: "Front",
  2423. image: {
  2424. source: "./media/characters/rai/front.svg",
  2425. extra: 1802/1696,
  2426. bottom: 68/1870
  2427. }
  2428. },
  2429. frontDressed: {
  2430. height: math.unit(7 + 2/12, "feet"),
  2431. weight: math.unit(320, "kg"),
  2432. name: "Front (Dressed)",
  2433. image: {
  2434. source: "./media/characters/rai/front-dressed.svg",
  2435. extra: 1802/1696,
  2436. bottom: 68/1870
  2437. }
  2438. },
  2439. side: {
  2440. height: math.unit(7 + 2/12, "feet"),
  2441. weight: math.unit(320, "kg"),
  2442. name: "Side",
  2443. image: {
  2444. source: "./media/characters/rai/side.svg",
  2445. extra: 1789/1710,
  2446. bottom: 115/1904
  2447. }
  2448. },
  2449. back: {
  2450. height: math.unit(7 + 2/12, "feet"),
  2451. weight: math.unit(320, "kg"),
  2452. name: "Back",
  2453. image: {
  2454. source: "./media/characters/rai/back.svg",
  2455. extra: 1770/1707,
  2456. bottom: 28/1798
  2457. }
  2458. },
  2459. feral: {
  2460. height: math.unit(9.5, "feet"),
  2461. weight: math.unit(640, "kg"),
  2462. name: "Feral",
  2463. image: {
  2464. source: "./media/characters/rai/feral.svg",
  2465. extra: 945/553,
  2466. bottom: 176/1121
  2467. }
  2468. },
  2469. dragon: {
  2470. height: math.unit(23, "feet"),
  2471. weight: math.unit(50000, "lb"),
  2472. name: "Dragon",
  2473. image: {
  2474. source: "./media/characters/rai/dragon.svg",
  2475. extra: 2498 / 2030,
  2476. bottom: 85.2 / 2584
  2477. }
  2478. },
  2479. maw: {
  2480. height: math.unit(1.69, "feet"),
  2481. name: "Maw",
  2482. image: {
  2483. source: "./media/characters/rai/maw.svg"
  2484. }
  2485. },
  2486. },
  2487. [
  2488. {
  2489. name: "Normal",
  2490. height: math.unit(7 + 2/12, "feet")
  2491. },
  2492. {
  2493. name: "Big",
  2494. height: math.unit(11, "feet")
  2495. },
  2496. {
  2497. name: "Macro",
  2498. height: math.unit(302, "feet"),
  2499. default: true
  2500. },
  2501. ]
  2502. ))
  2503. characterMakers.push(() => makeCharacter(
  2504. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2505. {
  2506. frontDressed: {
  2507. height: math.unit(216, "feet"),
  2508. weight: math.unit(7000000, "lb"),
  2509. name: "Front (Dressed)",
  2510. image: {
  2511. source: "./media/characters/jazzy/front-dressed.svg",
  2512. extra: 2738 / 2651,
  2513. bottom: 41.8 / 2786
  2514. }
  2515. },
  2516. backDressed: {
  2517. height: math.unit(216, "feet"),
  2518. weight: math.unit(7000000, "lb"),
  2519. name: "Back (Dressed)",
  2520. image: {
  2521. source: "./media/characters/jazzy/back-dressed.svg",
  2522. extra: 2775 / 2673,
  2523. bottom: 36.8 / 2817
  2524. }
  2525. },
  2526. front: {
  2527. height: math.unit(216, "feet"),
  2528. weight: math.unit(7000000, "lb"),
  2529. name: "Front",
  2530. image: {
  2531. source: "./media/characters/jazzy/front.svg",
  2532. extra: 2738 / 2651,
  2533. bottom: 41.8 / 2786
  2534. }
  2535. },
  2536. back: {
  2537. height: math.unit(216, "feet"),
  2538. weight: math.unit(7000000, "lb"),
  2539. name: "Back",
  2540. image: {
  2541. source: "./media/characters/jazzy/back.svg",
  2542. extra: 2775 / 2673,
  2543. bottom: 36.8 / 2817
  2544. }
  2545. },
  2546. maw: {
  2547. height: math.unit(20, "feet"),
  2548. name: "Maw",
  2549. image: {
  2550. source: "./media/characters/jazzy/maw.svg"
  2551. }
  2552. },
  2553. paws: {
  2554. height: math.unit(27.5, "feet"),
  2555. name: "Paws",
  2556. image: {
  2557. source: "./media/characters/jazzy/paws.svg"
  2558. }
  2559. },
  2560. eye: {
  2561. height: math.unit(4.4, "feet"),
  2562. name: "Eye",
  2563. image: {
  2564. source: "./media/characters/jazzy/eye.svg"
  2565. }
  2566. },
  2567. droneOffense: {
  2568. height: math.unit(9.5, "inches"),
  2569. name: "Drone (Offense)",
  2570. image: {
  2571. source: "./media/characters/jazzy/drone-offense.svg"
  2572. }
  2573. },
  2574. droneRecon: {
  2575. height: math.unit(9.5, "inches"),
  2576. name: "Drone (Recon)",
  2577. image: {
  2578. source: "./media/characters/jazzy/drone-recon.svg"
  2579. }
  2580. },
  2581. droneDefense: {
  2582. height: math.unit(9.5, "inches"),
  2583. name: "Drone (Defense)",
  2584. image: {
  2585. source: "./media/characters/jazzy/drone-defense.svg"
  2586. }
  2587. },
  2588. },
  2589. [
  2590. {
  2591. name: "Macro",
  2592. height: math.unit(216, "feet"),
  2593. default: true
  2594. },
  2595. ]
  2596. ))
  2597. characterMakers.push(() => makeCharacter(
  2598. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2599. {
  2600. front: {
  2601. height: math.unit(9 + 6/12, "feet"),
  2602. weight: math.unit(700, "lb"),
  2603. name: "Front",
  2604. image: {
  2605. source: "./media/characters/flamm/front.svg",
  2606. extra: 1751/1632,
  2607. bottom: 46/1797
  2608. }
  2609. },
  2610. buff: {
  2611. height: math.unit(9 + 6/12, "feet"),
  2612. weight: math.unit(950, "lb"),
  2613. name: "Buff",
  2614. image: {
  2615. source: "./media/characters/flamm/buff.svg",
  2616. extra: 3018/2874,
  2617. bottom: 221/3239
  2618. }
  2619. },
  2620. },
  2621. [
  2622. {
  2623. name: "Normal",
  2624. height: math.unit(9.5, "feet")
  2625. },
  2626. {
  2627. name: "Macro",
  2628. height: math.unit(200, "feet"),
  2629. default: true
  2630. },
  2631. ]
  2632. ))
  2633. characterMakers.push(() => makeCharacter(
  2634. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2635. {
  2636. front: {
  2637. height: math.unit(5 + 3/12, "feet"),
  2638. weight: math.unit(60, "kg"),
  2639. name: "Front",
  2640. image: {
  2641. source: "./media/characters/zephiro/front.svg",
  2642. extra: 2309 / 2162,
  2643. bottom: 0.069
  2644. }
  2645. },
  2646. side: {
  2647. height: math.unit(5 + 3/12, "feet"),
  2648. weight: math.unit(60, "kg"),
  2649. name: "Side",
  2650. image: {
  2651. source: "./media/characters/zephiro/side.svg",
  2652. extra: 2403 / 2279,
  2653. bottom: 0.015
  2654. }
  2655. },
  2656. back: {
  2657. height: math.unit(5 + 3/12, "feet"),
  2658. weight: math.unit(60, "kg"),
  2659. name: "Back",
  2660. image: {
  2661. source: "./media/characters/zephiro/back.svg",
  2662. extra: 2373 / 2244,
  2663. bottom: 0.013
  2664. }
  2665. },
  2666. hand: {
  2667. height: math.unit(0.68, "feet"),
  2668. name: "Hand",
  2669. image: {
  2670. source: "./media/characters/zephiro/hand.svg"
  2671. }
  2672. },
  2673. paw: {
  2674. height: math.unit(1, "feet"),
  2675. name: "Paw",
  2676. image: {
  2677. source: "./media/characters/zephiro/paw.svg"
  2678. }
  2679. },
  2680. beans: {
  2681. height: math.unit(0.93, "feet"),
  2682. name: "Beans",
  2683. image: {
  2684. source: "./media/characters/zephiro/beans.svg"
  2685. }
  2686. },
  2687. },
  2688. [
  2689. {
  2690. name: "Micro",
  2691. height: math.unit(3, "inches")
  2692. },
  2693. {
  2694. name: "Normal",
  2695. height: math.unit(5 + 3 / 12, "feet"),
  2696. default: true
  2697. },
  2698. {
  2699. name: "Macro",
  2700. height: math.unit(118, "feet")
  2701. },
  2702. ]
  2703. ))
  2704. characterMakers.push(() => makeCharacter(
  2705. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2706. {
  2707. front: {
  2708. height: math.unit(5, "feet"),
  2709. weight: math.unit(90, "kg"),
  2710. name: "Front",
  2711. image: {
  2712. source: "./media/characters/fory/front.svg",
  2713. extra: 2862 / 2674,
  2714. bottom: 180 / 3043.8
  2715. }
  2716. },
  2717. back: {
  2718. height: math.unit(5, "feet"),
  2719. weight: math.unit(90, "kg"),
  2720. name: "Back",
  2721. image: {
  2722. source: "./media/characters/fory/back.svg",
  2723. extra: 2962 / 2791,
  2724. bottom: 106 / 3071.8
  2725. }
  2726. },
  2727. foot: {
  2728. height: math.unit(2.14, "feet"),
  2729. name: "Foot",
  2730. image: {
  2731. source: "./media/characters/fory/foot.svg"
  2732. }
  2733. },
  2734. },
  2735. [
  2736. {
  2737. name: "Normal",
  2738. height: math.unit(5, "feet")
  2739. },
  2740. {
  2741. name: "Macro",
  2742. height: math.unit(50, "feet"),
  2743. default: true
  2744. },
  2745. {
  2746. name: "Megamacro",
  2747. height: math.unit(10, "miles")
  2748. },
  2749. {
  2750. name: "Gigamacro",
  2751. height: math.unit(5, "earths")
  2752. },
  2753. ]
  2754. ))
  2755. characterMakers.push(() => makeCharacter(
  2756. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2757. {
  2758. front: {
  2759. height: math.unit(7, "feet"),
  2760. weight: math.unit(90, "kg"),
  2761. name: "Front",
  2762. image: {
  2763. source: "./media/characters/kurrikage/front.svg",
  2764. extra: 1845/1733,
  2765. bottom: 119/1964
  2766. }
  2767. },
  2768. back: {
  2769. height: math.unit(7, "feet"),
  2770. weight: math.unit(90, "kg"),
  2771. name: "Back",
  2772. image: {
  2773. source: "./media/characters/kurrikage/back.svg",
  2774. extra: 1790/1677,
  2775. bottom: 61/1851
  2776. }
  2777. },
  2778. dressed: {
  2779. height: math.unit(7, "feet"),
  2780. weight: math.unit(90, "kg"),
  2781. name: "Dressed",
  2782. image: {
  2783. source: "./media/characters/kurrikage/dressed.svg",
  2784. extra: 1845/1733,
  2785. bottom: 119/1964
  2786. }
  2787. },
  2788. foot: {
  2789. height: math.unit(1.5, "feet"),
  2790. name: "Foot",
  2791. image: {
  2792. source: "./media/characters/kurrikage/foot.svg"
  2793. }
  2794. },
  2795. staff: {
  2796. height: math.unit(6.7, "feet"),
  2797. name: "Staff",
  2798. image: {
  2799. source: "./media/characters/kurrikage/staff.svg"
  2800. }
  2801. },
  2802. peek: {
  2803. height: math.unit(1.05, "feet"),
  2804. name: "Peeking",
  2805. image: {
  2806. source: "./media/characters/kurrikage/peek.svg",
  2807. bottom: 0.08
  2808. }
  2809. },
  2810. },
  2811. [
  2812. {
  2813. name: "Normal",
  2814. height: math.unit(12, "feet"),
  2815. default: true
  2816. },
  2817. {
  2818. name: "Big",
  2819. height: math.unit(20, "feet")
  2820. },
  2821. {
  2822. name: "Macro",
  2823. height: math.unit(500, "feet")
  2824. },
  2825. {
  2826. name: "Megamacro",
  2827. height: math.unit(20, "miles")
  2828. },
  2829. ]
  2830. ))
  2831. characterMakers.push(() => makeCharacter(
  2832. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2833. {
  2834. front: {
  2835. height: math.unit(6, "feet"),
  2836. weight: math.unit(75, "kg"),
  2837. name: "Front",
  2838. image: {
  2839. source: "./media/characters/shingo/front.svg",
  2840. extra: 1900/1825,
  2841. bottom: 82/1982
  2842. }
  2843. },
  2844. side: {
  2845. height: math.unit(6, "feet"),
  2846. weight: math.unit(75, "kg"),
  2847. name: "Side",
  2848. image: {
  2849. source: "./media/characters/shingo/side.svg",
  2850. extra: 1930/1865,
  2851. bottom: 16/1946
  2852. }
  2853. },
  2854. back: {
  2855. height: math.unit(6, "feet"),
  2856. weight: math.unit(75, "kg"),
  2857. name: "Back",
  2858. image: {
  2859. source: "./media/characters/shingo/back.svg",
  2860. extra: 1922/1852,
  2861. bottom: 16/1938
  2862. }
  2863. },
  2864. frontDressed: {
  2865. height: math.unit(6, "feet"),
  2866. weight: math.unit(150, "lb"),
  2867. name: "Front-dressed",
  2868. image: {
  2869. source: "./media/characters/shingo/front-dressed.svg",
  2870. extra: 1900/1825,
  2871. bottom: 82/1982
  2872. }
  2873. },
  2874. paw: {
  2875. height: math.unit(1.29, "feet"),
  2876. name: "Paw",
  2877. image: {
  2878. source: "./media/characters/shingo/paw.svg"
  2879. }
  2880. },
  2881. hand: {
  2882. height: math.unit(1.07, "feet"),
  2883. name: "Hand",
  2884. image: {
  2885. source: "./media/characters/shingo/hand.svg"
  2886. }
  2887. },
  2888. frontAlt: {
  2889. height: math.unit(6, "feet"),
  2890. weight: math.unit(75, "kg"),
  2891. name: "Front (Alt)",
  2892. image: {
  2893. source: "./media/characters/shingo/front-alt.svg",
  2894. extra: 3511 / 3338,
  2895. bottom: 0.005
  2896. }
  2897. },
  2898. frontAlt2: {
  2899. height: math.unit(6, "feet"),
  2900. weight: math.unit(75, "kg"),
  2901. name: "Front (Alt 2)",
  2902. image: {
  2903. source: "./media/characters/shingo/front-alt-2.svg",
  2904. extra: 706/681,
  2905. bottom: 11/717
  2906. }
  2907. },
  2908. pawAlt: {
  2909. height: math.unit(1, "feet"),
  2910. name: "Paw (Alt)",
  2911. image: {
  2912. source: "./media/characters/shingo/paw-alt.svg"
  2913. }
  2914. },
  2915. },
  2916. [
  2917. {
  2918. name: "Micro",
  2919. height: math.unit(4, "inches")
  2920. },
  2921. {
  2922. name: "Normal",
  2923. height: math.unit(6, "feet"),
  2924. default: true
  2925. },
  2926. {
  2927. name: "Macro",
  2928. height: math.unit(108, "feet")
  2929. },
  2930. {
  2931. name: "Macro+",
  2932. height: math.unit(1500, "feet")
  2933. },
  2934. ]
  2935. ))
  2936. characterMakers.push(() => makeCharacter(
  2937. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2938. {
  2939. side: {
  2940. height: math.unit(6, "feet"),
  2941. weight: math.unit(75, "kg"),
  2942. name: "Side",
  2943. image: {
  2944. source: "./media/characters/aigey/side.svg"
  2945. }
  2946. },
  2947. },
  2948. [
  2949. {
  2950. name: "Macro",
  2951. height: math.unit(200, "feet"),
  2952. default: true
  2953. },
  2954. {
  2955. name: "Megamacro",
  2956. height: math.unit(100, "miles")
  2957. },
  2958. ]
  2959. )
  2960. )
  2961. characterMakers.push(() => makeCharacter(
  2962. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2963. {
  2964. front: {
  2965. height: math.unit(5 + 5 / 12, "feet"),
  2966. weight: math.unit(75, "kg"),
  2967. name: "Front",
  2968. image: {
  2969. source: "./media/characters/natasha/front.svg",
  2970. extra: 859 / 824,
  2971. bottom: 23 / 879.6
  2972. }
  2973. },
  2974. frontNsfw: {
  2975. height: math.unit(5 + 5 / 12, "feet"),
  2976. weight: math.unit(75, "kg"),
  2977. name: "Front (NSFW)",
  2978. image: {
  2979. source: "./media/characters/natasha/front-nsfw.svg",
  2980. extra: 859 / 824,
  2981. bottom: 23 / 879.6
  2982. }
  2983. },
  2984. frontErect: {
  2985. height: math.unit(5 + 5 / 12, "feet"),
  2986. weight: math.unit(75, "kg"),
  2987. name: "Front (Erect)",
  2988. image: {
  2989. source: "./media/characters/natasha/front-erect.svg",
  2990. extra: 859 / 824,
  2991. bottom: 23 / 879.6
  2992. }
  2993. },
  2994. back: {
  2995. height: math.unit(5 + 5 / 12, "feet"),
  2996. weight: math.unit(75, "kg"),
  2997. name: "Back",
  2998. image: {
  2999. source: "./media/characters/natasha/back.svg",
  3000. extra: 887.9 / 852.6,
  3001. bottom: 9.7 / 896.4
  3002. }
  3003. },
  3004. backAlt: {
  3005. height: math.unit(5 + 5 / 12, "feet"),
  3006. weight: math.unit(75, "kg"),
  3007. name: "Back (Alt)",
  3008. image: {
  3009. source: "./media/characters/natasha/back-alt.svg",
  3010. extra: 1236.7 / 1192,
  3011. bottom: 22.3 / 1258.2
  3012. }
  3013. },
  3014. dick: {
  3015. height: math.unit(1.772, "feet"),
  3016. name: "Dick",
  3017. image: {
  3018. source: "./media/characters/natasha/dick.svg"
  3019. }
  3020. },
  3021. paw: {
  3022. height: math.unit(0.250, "meters"),
  3023. name: "Paw",
  3024. image: {
  3025. source: "./media/characters/natasha/paw.svg"
  3026. }
  3027. },
  3028. },
  3029. [
  3030. {
  3031. name: "Normal",
  3032. height: math.unit(5 + 5 / 12, "feet")
  3033. },
  3034. {
  3035. name: "Large",
  3036. height: math.unit(12, "feet")
  3037. },
  3038. {
  3039. name: "Macro",
  3040. height: math.unit(100, "feet"),
  3041. default: true
  3042. },
  3043. {
  3044. name: "Macro+",
  3045. height: math.unit(260, "feet")
  3046. },
  3047. {
  3048. name: "Macro++",
  3049. height: math.unit(1, "mile")
  3050. },
  3051. ]
  3052. ))
  3053. characterMakers.push(() => makeCharacter(
  3054. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3055. {
  3056. front: {
  3057. height: math.unit(6, "feet"),
  3058. weight: math.unit(75, "kg"),
  3059. name: "Front",
  3060. image: {
  3061. source: "./media/characters/malik/front.svg"
  3062. }
  3063. },
  3064. side: {
  3065. height: math.unit(6, "feet"),
  3066. weight: math.unit(75, "kg"),
  3067. name: "Side",
  3068. image: {
  3069. source: "./media/characters/malik/side.svg",
  3070. extra: 1.1539
  3071. }
  3072. },
  3073. back: {
  3074. height: math.unit(6, "feet"),
  3075. weight: math.unit(75, "kg"),
  3076. name: "Back",
  3077. image: {
  3078. source: "./media/characters/malik/back.svg"
  3079. }
  3080. },
  3081. },
  3082. [
  3083. {
  3084. name: "Macro",
  3085. height: math.unit(156, "feet"),
  3086. default: true
  3087. },
  3088. {
  3089. name: "Macro+",
  3090. height: math.unit(1188, "feet")
  3091. },
  3092. ]
  3093. ))
  3094. characterMakers.push(() => makeCharacter(
  3095. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3096. {
  3097. front: {
  3098. height: math.unit(6, "feet"),
  3099. weight: math.unit(75, "kg"),
  3100. name: "Front",
  3101. image: {
  3102. source: "./media/characters/sefer/front.svg",
  3103. extra: 848 / 659,
  3104. bottom: 28.3 / 876.442
  3105. }
  3106. },
  3107. back: {
  3108. height: math.unit(6, "feet"),
  3109. weight: math.unit(75, "kg"),
  3110. name: "Back",
  3111. image: {
  3112. source: "./media/characters/sefer/back.svg",
  3113. extra: 864 / 695,
  3114. bottom: 10 / 871
  3115. }
  3116. },
  3117. frontDressed: {
  3118. height: math.unit(6, "feet"),
  3119. weight: math.unit(75, "kg"),
  3120. name: "Front (Dressed)",
  3121. image: {
  3122. source: "./media/characters/sefer/front-dressed.svg",
  3123. extra: 839 / 653,
  3124. bottom: 37.6 / 878
  3125. }
  3126. },
  3127. },
  3128. [
  3129. {
  3130. name: "Normal",
  3131. height: math.unit(6, "feet"),
  3132. default: true
  3133. },
  3134. ]
  3135. ))
  3136. characterMakers.push(() => makeCharacter(
  3137. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3138. {
  3139. body: {
  3140. height: math.unit(2.2428, "meter"),
  3141. weight: math.unit(124.738, "kg"),
  3142. name: "Body",
  3143. image: {
  3144. extra: 1225 / 1050,
  3145. source: "./media/characters/north/front.svg"
  3146. }
  3147. }
  3148. },
  3149. [
  3150. {
  3151. name: "Micro",
  3152. height: math.unit(4, "inches")
  3153. },
  3154. {
  3155. name: "Macro",
  3156. height: math.unit(63, "meters")
  3157. },
  3158. {
  3159. name: "Megamacro",
  3160. height: math.unit(101, "miles"),
  3161. default: true
  3162. }
  3163. ]
  3164. ))
  3165. characterMakers.push(() => makeCharacter(
  3166. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3167. {
  3168. angled: {
  3169. height: math.unit(4, "meter"),
  3170. weight: math.unit(150, "kg"),
  3171. name: "Angled",
  3172. image: {
  3173. source: "./media/characters/talan/angled-sfw.svg",
  3174. bottom: 29 / 3734
  3175. }
  3176. },
  3177. angledNsfw: {
  3178. height: math.unit(4, "meter"),
  3179. weight: math.unit(150, "kg"),
  3180. name: "Angled (NSFW)",
  3181. image: {
  3182. source: "./media/characters/talan/angled-nsfw.svg",
  3183. bottom: 29 / 3734
  3184. }
  3185. },
  3186. frontNsfw: {
  3187. height: math.unit(4, "meter"),
  3188. weight: math.unit(150, "kg"),
  3189. name: "Front (NSFW)",
  3190. image: {
  3191. source: "./media/characters/talan/front-nsfw.svg",
  3192. bottom: 29 / 3734
  3193. }
  3194. },
  3195. sideNsfw: {
  3196. height: math.unit(4, "meter"),
  3197. weight: math.unit(150, "kg"),
  3198. name: "Side (NSFW)",
  3199. image: {
  3200. source: "./media/characters/talan/side-nsfw.svg",
  3201. bottom: 29 / 3734
  3202. }
  3203. },
  3204. back: {
  3205. height: math.unit(4, "meter"),
  3206. weight: math.unit(150, "kg"),
  3207. name: "Back",
  3208. image: {
  3209. source: "./media/characters/talan/back.svg"
  3210. }
  3211. },
  3212. dickBottom: {
  3213. height: math.unit(0.621, "meter"),
  3214. name: "Dick (Bottom)",
  3215. image: {
  3216. source: "./media/characters/talan/dick-bottom.svg"
  3217. }
  3218. },
  3219. dickTop: {
  3220. height: math.unit(0.621, "meter"),
  3221. name: "Dick (Top)",
  3222. image: {
  3223. source: "./media/characters/talan/dick-top.svg"
  3224. }
  3225. },
  3226. dickSide: {
  3227. height: math.unit(0.305, "meter"),
  3228. name: "Dick (Side)",
  3229. image: {
  3230. source: "./media/characters/talan/dick-side.svg"
  3231. }
  3232. },
  3233. dickFront: {
  3234. height: math.unit(0.305, "meter"),
  3235. name: "Dick (Front)",
  3236. image: {
  3237. source: "./media/characters/talan/dick-front.svg"
  3238. }
  3239. },
  3240. },
  3241. [
  3242. {
  3243. name: "Normal",
  3244. height: math.unit(4, "meters")
  3245. },
  3246. {
  3247. name: "Macro",
  3248. height: math.unit(100, "meters")
  3249. },
  3250. {
  3251. name: "Megamacro",
  3252. height: math.unit(2, "miles"),
  3253. default: true
  3254. },
  3255. {
  3256. name: "Gigamacro",
  3257. height: math.unit(5000, "miles")
  3258. },
  3259. {
  3260. name: "Teramacro",
  3261. height: math.unit(100, "parsecs")
  3262. }
  3263. ]
  3264. ))
  3265. characterMakers.push(() => makeCharacter(
  3266. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3267. {
  3268. front: {
  3269. height: math.unit(2, "meter"),
  3270. weight: math.unit(90, "kg"),
  3271. name: "Front",
  3272. image: {
  3273. source: "./media/characters/gael'rathus/front.svg"
  3274. }
  3275. },
  3276. frontAlt: {
  3277. height: math.unit(2, "meter"),
  3278. weight: math.unit(90, "kg"),
  3279. name: "Front (alt)",
  3280. image: {
  3281. source: "./media/characters/gael'rathus/front-alt.svg"
  3282. }
  3283. },
  3284. frontAlt2: {
  3285. height: math.unit(2, "meter"),
  3286. weight: math.unit(90, "kg"),
  3287. name: "Front (alt 2)",
  3288. image: {
  3289. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3290. }
  3291. }
  3292. },
  3293. [
  3294. {
  3295. name: "Normal",
  3296. height: math.unit(9, "feet"),
  3297. default: true
  3298. },
  3299. {
  3300. name: "Large",
  3301. height: math.unit(25, "feet")
  3302. },
  3303. {
  3304. name: "Macro",
  3305. height: math.unit(0.25, "miles")
  3306. },
  3307. {
  3308. name: "Megamacro",
  3309. height: math.unit(10, "miles")
  3310. }
  3311. ]
  3312. ))
  3313. characterMakers.push(() => makeCharacter(
  3314. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3315. {
  3316. side: {
  3317. height: math.unit(2, "meter"),
  3318. weight: math.unit(140, "kg"),
  3319. name: "Side",
  3320. image: {
  3321. source: "./media/characters/sosha/side.svg",
  3322. bottom: 0.042
  3323. }
  3324. },
  3325. },
  3326. [
  3327. {
  3328. name: "Normal",
  3329. height: math.unit(12, "feet"),
  3330. default: true
  3331. }
  3332. ]
  3333. ))
  3334. characterMakers.push(() => makeCharacter(
  3335. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3336. {
  3337. side: {
  3338. height: math.unit(5 + 5 / 12, "feet"),
  3339. weight: math.unit(170, "kg"),
  3340. name: "Side",
  3341. image: {
  3342. source: "./media/characters/runnola/side.svg",
  3343. extra: 741 / 448,
  3344. bottom: 0.05
  3345. }
  3346. },
  3347. },
  3348. [
  3349. {
  3350. name: "Small",
  3351. height: math.unit(3, "feet")
  3352. },
  3353. {
  3354. name: "Normal",
  3355. height: math.unit(5 + 5 / 12, "feet"),
  3356. default: true
  3357. },
  3358. {
  3359. name: "Big",
  3360. height: math.unit(10, "feet")
  3361. },
  3362. ]
  3363. ))
  3364. characterMakers.push(() => makeCharacter(
  3365. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3366. {
  3367. front: {
  3368. height: math.unit(2, "meter"),
  3369. weight: math.unit(50, "kg"),
  3370. name: "Front",
  3371. image: {
  3372. source: "./media/characters/kurribird/front.svg",
  3373. bottom: 0.015
  3374. }
  3375. },
  3376. frontAlt: {
  3377. height: math.unit(1.5, "meter"),
  3378. weight: math.unit(50, "kg"),
  3379. name: "Front (Alt)",
  3380. image: {
  3381. source: "./media/characters/kurribird/front-alt.svg",
  3382. extra: 1.45
  3383. }
  3384. },
  3385. },
  3386. [
  3387. {
  3388. name: "Normal",
  3389. height: math.unit(7, "feet")
  3390. },
  3391. {
  3392. name: "Big",
  3393. height: math.unit(12, "feet"),
  3394. default: true
  3395. },
  3396. {
  3397. name: "Macro",
  3398. height: math.unit(1500, "feet")
  3399. },
  3400. {
  3401. name: "Megamacro",
  3402. height: math.unit(2, "miles")
  3403. }
  3404. ]
  3405. ))
  3406. characterMakers.push(() => makeCharacter(
  3407. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3408. {
  3409. front: {
  3410. height: math.unit(2, "meter"),
  3411. weight: math.unit(80, "kg"),
  3412. name: "Front",
  3413. image: {
  3414. source: "./media/characters/elbial/front.svg",
  3415. extra: 1643 / 1556,
  3416. bottom: 60.2 / 1696
  3417. }
  3418. },
  3419. side: {
  3420. height: math.unit(2, "meter"),
  3421. weight: math.unit(80, "kg"),
  3422. name: "Side",
  3423. image: {
  3424. source: "./media/characters/elbial/side.svg",
  3425. extra: 1630 / 1565,
  3426. bottom: 71.5 / 1697
  3427. }
  3428. },
  3429. back: {
  3430. height: math.unit(2, "meter"),
  3431. weight: math.unit(80, "kg"),
  3432. name: "Back",
  3433. image: {
  3434. source: "./media/characters/elbial/back.svg",
  3435. extra: 1668 / 1595,
  3436. bottom: 5.6 / 1672
  3437. }
  3438. },
  3439. frontDressed: {
  3440. height: math.unit(2, "meter"),
  3441. weight: math.unit(80, "kg"),
  3442. name: "Front (Dressed)",
  3443. image: {
  3444. source: "./media/characters/elbial/front-dressed.svg",
  3445. extra: 1653 / 1584,
  3446. bottom: 57 / 1708
  3447. }
  3448. },
  3449. genitals: {
  3450. height: math.unit(2 / 3.367, "meter"),
  3451. name: "Genitals",
  3452. image: {
  3453. source: "./media/characters/elbial/genitals.svg"
  3454. }
  3455. },
  3456. },
  3457. [
  3458. {
  3459. name: "Large",
  3460. height: math.unit(100, "feet")
  3461. },
  3462. {
  3463. name: "Macro",
  3464. height: math.unit(500, "feet"),
  3465. default: true
  3466. },
  3467. {
  3468. name: "Megamacro",
  3469. height: math.unit(10, "miles")
  3470. },
  3471. {
  3472. name: "Gigamacro",
  3473. height: math.unit(25000, "miles")
  3474. },
  3475. {
  3476. name: "Full-Size",
  3477. height: math.unit(8000000, "gigaparsecs")
  3478. }
  3479. ]
  3480. ))
  3481. characterMakers.push(() => makeCharacter(
  3482. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3483. {
  3484. front: {
  3485. height: math.unit(2, "meter"),
  3486. weight: math.unit(60, "kg"),
  3487. name: "Front",
  3488. image: {
  3489. source: "./media/characters/noah/front.svg"
  3490. }
  3491. },
  3492. talons: {
  3493. height: math.unit(0.315, "meter"),
  3494. name: "Talons",
  3495. image: {
  3496. source: "./media/characters/noah/talons.svg"
  3497. }
  3498. }
  3499. },
  3500. [
  3501. {
  3502. name: "Large",
  3503. height: math.unit(50, "feet")
  3504. },
  3505. {
  3506. name: "Macro",
  3507. height: math.unit(750, "feet"),
  3508. default: true
  3509. },
  3510. {
  3511. name: "Megamacro",
  3512. height: math.unit(50, "miles")
  3513. },
  3514. {
  3515. name: "Gigamacro",
  3516. height: math.unit(100000, "miles")
  3517. },
  3518. {
  3519. name: "Full-Size",
  3520. height: math.unit(3000000000, "miles")
  3521. }
  3522. ]
  3523. ))
  3524. characterMakers.push(() => makeCharacter(
  3525. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3526. {
  3527. front: {
  3528. height: math.unit(2, "meter"),
  3529. weight: math.unit(80, "kg"),
  3530. name: "Front",
  3531. image: {
  3532. source: "./media/characters/natalya/front.svg"
  3533. }
  3534. },
  3535. back: {
  3536. height: math.unit(2, "meter"),
  3537. weight: math.unit(80, "kg"),
  3538. name: "Back",
  3539. image: {
  3540. source: "./media/characters/natalya/back.svg"
  3541. }
  3542. }
  3543. },
  3544. [
  3545. {
  3546. name: "Normal",
  3547. height: math.unit(150, "feet"),
  3548. default: true
  3549. },
  3550. {
  3551. name: "Megamacro",
  3552. height: math.unit(5, "miles")
  3553. },
  3554. {
  3555. name: "Full-Size",
  3556. height: math.unit(600, "kiloparsecs")
  3557. }
  3558. ]
  3559. ))
  3560. characterMakers.push(() => makeCharacter(
  3561. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3562. {
  3563. front: {
  3564. height: math.unit(2, "meter"),
  3565. weight: math.unit(50, "kg"),
  3566. name: "Front",
  3567. image: {
  3568. source: "./media/characters/erestrebah/front.svg",
  3569. extra: 1262/1162,
  3570. bottom: 96/1358
  3571. }
  3572. },
  3573. back: {
  3574. height: math.unit(2, "meter"),
  3575. weight: math.unit(50, "kg"),
  3576. name: "Back",
  3577. image: {
  3578. source: "./media/characters/erestrebah/back.svg",
  3579. extra: 1257/1139,
  3580. bottom: 13/1270
  3581. }
  3582. },
  3583. wing: {
  3584. height: math.unit(2, "meter"),
  3585. weight: math.unit(50, "kg"),
  3586. name: "Wing",
  3587. image: {
  3588. source: "./media/characters/erestrebah/wing.svg",
  3589. extra: 1262/1162,
  3590. bottom: 96/1358
  3591. }
  3592. },
  3593. mouth: {
  3594. height: math.unit(0.39, "feet"),
  3595. name: "Mouth",
  3596. image: {
  3597. source: "./media/characters/erestrebah/mouth.svg"
  3598. }
  3599. }
  3600. },
  3601. [
  3602. {
  3603. name: "Normal",
  3604. height: math.unit(10, "feet")
  3605. },
  3606. {
  3607. name: "Large",
  3608. height: math.unit(50, "feet"),
  3609. default: true
  3610. },
  3611. {
  3612. name: "Macro",
  3613. height: math.unit(300, "feet")
  3614. },
  3615. {
  3616. name: "Macro+",
  3617. height: math.unit(750, "feet")
  3618. },
  3619. {
  3620. name: "Megamacro",
  3621. height: math.unit(3, "miles")
  3622. }
  3623. ]
  3624. ))
  3625. characterMakers.push(() => makeCharacter(
  3626. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3627. {
  3628. front: {
  3629. height: math.unit(2, "meter"),
  3630. weight: math.unit(80, "kg"),
  3631. name: "Front",
  3632. image: {
  3633. source: "./media/characters/jennifer/front.svg",
  3634. bottom: 0.11,
  3635. extra: 1.16
  3636. }
  3637. },
  3638. frontAlt: {
  3639. height: math.unit(2, "meter"),
  3640. weight: math.unit(80, "kg"),
  3641. name: "Front (Alt)",
  3642. image: {
  3643. source: "./media/characters/jennifer/front-alt.svg"
  3644. }
  3645. }
  3646. },
  3647. [
  3648. {
  3649. name: "Canon Height",
  3650. height: math.unit(120, "feet"),
  3651. default: true
  3652. },
  3653. {
  3654. name: "Macro+",
  3655. height: math.unit(300, "feet")
  3656. },
  3657. {
  3658. name: "Megamacro",
  3659. height: math.unit(20000, "feet")
  3660. }
  3661. ]
  3662. ))
  3663. characterMakers.push(() => makeCharacter(
  3664. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3665. {
  3666. front: {
  3667. height: math.unit(2, "meter"),
  3668. weight: math.unit(50, "kg"),
  3669. name: "Front",
  3670. image: {
  3671. source: "./media/characters/kalista/front.svg",
  3672. extra: 1947 / 1700,
  3673. bottom: 76.6 / 1412.98
  3674. }
  3675. },
  3676. back: {
  3677. height: math.unit(2, "meter"),
  3678. weight: math.unit(50, "kg"),
  3679. name: "Back",
  3680. image: {
  3681. source: "./media/characters/kalista/back.svg",
  3682. extra: 1366 / 1156,
  3683. bottom: 33.9 / 1362.78
  3684. }
  3685. }
  3686. },
  3687. [
  3688. {
  3689. name: "Uncomfortably Small",
  3690. height: math.unit(10, "feet")
  3691. },
  3692. {
  3693. name: "Small",
  3694. height: math.unit(30, "feet")
  3695. },
  3696. {
  3697. name: "Macro",
  3698. height: math.unit(100, "feet"),
  3699. default: true
  3700. },
  3701. {
  3702. name: "Macro+",
  3703. height: math.unit(2000, "feet")
  3704. },
  3705. {
  3706. name: "True Form",
  3707. height: math.unit(8924, "miles")
  3708. }
  3709. ]
  3710. ))
  3711. characterMakers.push(() => makeCharacter(
  3712. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3713. {
  3714. front: {
  3715. height: math.unit(2, "meter"),
  3716. weight: math.unit(120, "kg"),
  3717. name: "Front",
  3718. image: {
  3719. source: "./media/characters/ggv/front.svg"
  3720. }
  3721. },
  3722. side: {
  3723. height: math.unit(2, "meter"),
  3724. weight: math.unit(120, "kg"),
  3725. name: "Side",
  3726. image: {
  3727. source: "./media/characters/ggv/side.svg"
  3728. }
  3729. }
  3730. },
  3731. [
  3732. {
  3733. name: "Extremely Puny",
  3734. height: math.unit(9 + 5 / 12, "feet")
  3735. },
  3736. {
  3737. name: "Horribly Small",
  3738. height: math.unit(47.7, "miles"),
  3739. default: true
  3740. },
  3741. {
  3742. name: "Reasonably Sized",
  3743. height: math.unit(25000, "parsecs")
  3744. },
  3745. {
  3746. name: "Slightly Uncompressed",
  3747. height: math.unit(7.77e31, "parsecs")
  3748. },
  3749. {
  3750. name: "Omniversal",
  3751. height: math.unit(1e300, "meters")
  3752. },
  3753. ]
  3754. ))
  3755. characterMakers.push(() => makeCharacter(
  3756. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3757. {
  3758. front: {
  3759. height: math.unit(2, "meter"),
  3760. weight: math.unit(75, "lb"),
  3761. name: "Front",
  3762. image: {
  3763. source: "./media/characters/napalm/front.svg"
  3764. }
  3765. },
  3766. back: {
  3767. height: math.unit(2, "meter"),
  3768. weight: math.unit(75, "lb"),
  3769. name: "Back",
  3770. image: {
  3771. source: "./media/characters/napalm/back.svg"
  3772. }
  3773. }
  3774. },
  3775. [
  3776. {
  3777. name: "Standard",
  3778. height: math.unit(55, "feet"),
  3779. default: true
  3780. }
  3781. ]
  3782. ))
  3783. characterMakers.push(() => makeCharacter(
  3784. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3785. {
  3786. front: {
  3787. height: math.unit(7 + 5 / 6, "feet"),
  3788. weight: math.unit(325, "lb"),
  3789. name: "Front",
  3790. image: {
  3791. source: "./media/characters/asana/front.svg",
  3792. extra: 1133 / 1060,
  3793. bottom: 15.2 / 1148.6
  3794. }
  3795. },
  3796. back: {
  3797. height: math.unit(7 + 5 / 6, "feet"),
  3798. weight: math.unit(325, "lb"),
  3799. name: "Back",
  3800. image: {
  3801. source: "./media/characters/asana/back.svg",
  3802. extra: 1114 / 1043,
  3803. bottom: 5 / 1120
  3804. }
  3805. },
  3806. dressedDark: {
  3807. height: math.unit(7 + 5 / 6, "feet"),
  3808. weight: math.unit(325, "lb"),
  3809. name: "Dressed (Dark)",
  3810. image: {
  3811. source: "./media/characters/asana/dressed-dark.svg",
  3812. extra: 1133 / 1060,
  3813. bottom: 15.2 / 1148.6
  3814. }
  3815. },
  3816. dressedLight: {
  3817. height: math.unit(7 + 5 / 6, "feet"),
  3818. weight: math.unit(325, "lb"),
  3819. name: "Dressed (Light)",
  3820. image: {
  3821. source: "./media/characters/asana/dressed-light.svg",
  3822. extra: 1133 / 1060,
  3823. bottom: 15.2 / 1148.6
  3824. }
  3825. },
  3826. },
  3827. [
  3828. {
  3829. name: "Standard",
  3830. height: math.unit(7 + 5 / 6, "feet"),
  3831. default: true
  3832. },
  3833. {
  3834. name: "Large",
  3835. height: math.unit(10, "meters")
  3836. },
  3837. {
  3838. name: "Macro",
  3839. height: math.unit(2500, "meters")
  3840. },
  3841. {
  3842. name: "Megamacro",
  3843. height: math.unit(5e6, "meters")
  3844. },
  3845. {
  3846. name: "Examacro",
  3847. height: math.unit(5e12, "lightyears")
  3848. },
  3849. {
  3850. name: "Max Size",
  3851. height: math.unit(1e31, "lightyears")
  3852. }
  3853. ]
  3854. ))
  3855. characterMakers.push(() => makeCharacter(
  3856. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3857. {
  3858. front: {
  3859. height: math.unit(2, "meter"),
  3860. weight: math.unit(60, "kg"),
  3861. name: "Front",
  3862. image: {
  3863. source: "./media/characters/ebony/front.svg",
  3864. bottom: 0.03,
  3865. extra: 1045 / 810 + 0.03
  3866. }
  3867. },
  3868. side: {
  3869. height: math.unit(2, "meter"),
  3870. weight: math.unit(60, "kg"),
  3871. name: "Side",
  3872. image: {
  3873. source: "./media/characters/ebony/side.svg",
  3874. bottom: 0.03,
  3875. extra: 1045 / 810 + 0.03
  3876. }
  3877. },
  3878. back: {
  3879. height: math.unit(2, "meter"),
  3880. weight: math.unit(60, "kg"),
  3881. name: "Back",
  3882. image: {
  3883. source: "./media/characters/ebony/back.svg",
  3884. bottom: 0.01,
  3885. extra: 1045 / 810 + 0.01
  3886. }
  3887. },
  3888. },
  3889. [
  3890. // TODO check why I did this lol
  3891. {
  3892. name: "Standard",
  3893. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3894. default: true
  3895. },
  3896. {
  3897. name: "Macro",
  3898. height: math.unit(200, "feet")
  3899. },
  3900. {
  3901. name: "Gigamacro",
  3902. height: math.unit(13000, "km")
  3903. }
  3904. ]
  3905. ))
  3906. characterMakers.push(() => makeCharacter(
  3907. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3908. {
  3909. front: {
  3910. height: math.unit(6, "feet"),
  3911. weight: math.unit(175, "lb"),
  3912. name: "Front",
  3913. image: {
  3914. source: "./media/characters/mountain/front.svg",
  3915. extra: 972 / 955,
  3916. bottom: 64 / 1036.6
  3917. }
  3918. },
  3919. back: {
  3920. height: math.unit(6, "feet"),
  3921. weight: math.unit(175, "lb"),
  3922. name: "Back",
  3923. image: {
  3924. source: "./media/characters/mountain/back.svg",
  3925. extra: 970 / 950,
  3926. bottom: 28.25 / 999
  3927. }
  3928. },
  3929. },
  3930. [
  3931. {
  3932. name: "Large",
  3933. height: math.unit(20, "meters")
  3934. },
  3935. {
  3936. name: "Macro",
  3937. height: math.unit(300, "meters")
  3938. },
  3939. {
  3940. name: "Gigamacro",
  3941. height: math.unit(10000, "km"),
  3942. default: true
  3943. },
  3944. {
  3945. name: "Examacro",
  3946. height: math.unit(10e9, "lightyears")
  3947. }
  3948. ]
  3949. ))
  3950. characterMakers.push(() => makeCharacter(
  3951. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3952. {
  3953. front: {
  3954. height: math.unit(8, "feet"),
  3955. weight: math.unit(500, "lb"),
  3956. name: "Front",
  3957. image: {
  3958. source: "./media/characters/rick/front.svg"
  3959. }
  3960. }
  3961. },
  3962. [
  3963. {
  3964. name: "Normal",
  3965. height: math.unit(8, "feet"),
  3966. default: true
  3967. },
  3968. {
  3969. name: "Macro",
  3970. height: math.unit(5, "km")
  3971. }
  3972. ]
  3973. ))
  3974. characterMakers.push(() => makeCharacter(
  3975. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3976. {
  3977. front: {
  3978. height: math.unit(8, "feet"),
  3979. weight: math.unit(120, "lb"),
  3980. name: "Front",
  3981. image: {
  3982. source: "./media/characters/ona/front.svg"
  3983. }
  3984. },
  3985. frontAlt: {
  3986. height: math.unit(8, "feet"),
  3987. weight: math.unit(120, "lb"),
  3988. name: "Front (Alt)",
  3989. image: {
  3990. source: "./media/characters/ona/front-alt.svg"
  3991. }
  3992. },
  3993. back: {
  3994. height: math.unit(8, "feet"),
  3995. weight: math.unit(120, "lb"),
  3996. name: "Back",
  3997. image: {
  3998. source: "./media/characters/ona/back.svg"
  3999. }
  4000. },
  4001. foot: {
  4002. height: math.unit(1.1, "feet"),
  4003. name: "Foot",
  4004. image: {
  4005. source: "./media/characters/ona/foot.svg"
  4006. }
  4007. }
  4008. },
  4009. [
  4010. {
  4011. name: "Megamacro",
  4012. height: math.unit(70, "km"),
  4013. default: true
  4014. },
  4015. {
  4016. name: "Gigamacro",
  4017. height: math.unit(681818, "miles")
  4018. },
  4019. {
  4020. name: "Examacro",
  4021. height: math.unit(3800000, "lightyears")
  4022. },
  4023. ]
  4024. ))
  4025. characterMakers.push(() => makeCharacter(
  4026. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4027. {
  4028. front: {
  4029. height: math.unit(12, "feet"),
  4030. weight: math.unit(3000, "lb"),
  4031. name: "Front",
  4032. image: {
  4033. source: "./media/characters/mech/front.svg",
  4034. extra: 2900 / 2770,
  4035. bottom: 110 / 3010
  4036. }
  4037. },
  4038. back: {
  4039. height: math.unit(12, "feet"),
  4040. weight: math.unit(3000, "lb"),
  4041. name: "Back",
  4042. image: {
  4043. source: "./media/characters/mech/back.svg",
  4044. extra: 3011 / 2890,
  4045. bottom: 94 / 3105
  4046. }
  4047. },
  4048. maw: {
  4049. height: math.unit(3.07, "feet"),
  4050. name: "Maw",
  4051. image: {
  4052. source: "./media/characters/mech/maw.svg"
  4053. }
  4054. },
  4055. head: {
  4056. height: math.unit(2.82, "feet"),
  4057. name: "Head",
  4058. image: {
  4059. source: "./media/characters/mech/head.svg"
  4060. }
  4061. },
  4062. dick: {
  4063. height: math.unit(1.43, "feet"),
  4064. name: "Dick",
  4065. image: {
  4066. source: "./media/characters/mech/dick.svg"
  4067. }
  4068. },
  4069. },
  4070. [
  4071. {
  4072. name: "Normal",
  4073. height: math.unit(12, "feet")
  4074. },
  4075. {
  4076. name: "Macro",
  4077. height: math.unit(300, "feet"),
  4078. default: true
  4079. },
  4080. {
  4081. name: "Macro+",
  4082. height: math.unit(1500, "feet")
  4083. },
  4084. ]
  4085. ))
  4086. characterMakers.push(() => makeCharacter(
  4087. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4088. {
  4089. front: {
  4090. height: math.unit(1.3, "meter"),
  4091. weight: math.unit(30, "kg"),
  4092. name: "Front",
  4093. image: {
  4094. source: "./media/characters/gregory/front.svg",
  4095. }
  4096. }
  4097. },
  4098. [
  4099. {
  4100. name: "Normal",
  4101. height: math.unit(1.3, "meter"),
  4102. default: true
  4103. },
  4104. {
  4105. name: "Macro",
  4106. height: math.unit(20, "meter")
  4107. }
  4108. ]
  4109. ))
  4110. characterMakers.push(() => makeCharacter(
  4111. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4112. {
  4113. front: {
  4114. height: math.unit(2.8, "meter"),
  4115. weight: math.unit(200, "kg"),
  4116. name: "Front",
  4117. image: {
  4118. source: "./media/characters/elory/front.svg",
  4119. }
  4120. }
  4121. },
  4122. [
  4123. {
  4124. name: "Normal",
  4125. height: math.unit(2.8, "meter"),
  4126. default: true
  4127. },
  4128. {
  4129. name: "Macro",
  4130. height: math.unit(38, "meter")
  4131. }
  4132. ]
  4133. ))
  4134. characterMakers.push(() => makeCharacter(
  4135. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4136. {
  4137. front: {
  4138. height: math.unit(470, "feet"),
  4139. weight: math.unit(924, "tons"),
  4140. name: "Front",
  4141. image: {
  4142. source: "./media/characters/angelpatamon/front.svg",
  4143. }
  4144. }
  4145. },
  4146. [
  4147. {
  4148. name: "Normal",
  4149. height: math.unit(470, "feet"),
  4150. default: true
  4151. },
  4152. {
  4153. name: "Deity Size I",
  4154. height: math.unit(28651.2, "km")
  4155. },
  4156. {
  4157. name: "Deity Size II",
  4158. height: math.unit(171907.2, "km")
  4159. }
  4160. ]
  4161. ))
  4162. characterMakers.push(() => makeCharacter(
  4163. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4164. {
  4165. side: {
  4166. height: math.unit(7.2, "meter"),
  4167. weight: math.unit(8.2, "tons"),
  4168. name: "Side",
  4169. image: {
  4170. source: "./media/characters/cryae/side.svg",
  4171. extra: 3500 / 1500
  4172. }
  4173. }
  4174. },
  4175. [
  4176. {
  4177. name: "Normal",
  4178. height: math.unit(7.2, "meter"),
  4179. default: true
  4180. }
  4181. ]
  4182. ))
  4183. characterMakers.push(() => makeCharacter(
  4184. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4185. {
  4186. front: {
  4187. height: math.unit(6, "feet"),
  4188. weight: math.unit(175, "lb"),
  4189. name: "Front",
  4190. image: {
  4191. source: "./media/characters/xera/front.svg",
  4192. extra: 2377 / 1972,
  4193. bottom: 75.5 / 2452
  4194. }
  4195. },
  4196. side: {
  4197. height: math.unit(6, "feet"),
  4198. weight: math.unit(175, "lb"),
  4199. name: "Side",
  4200. image: {
  4201. source: "./media/characters/xera/side.svg",
  4202. extra: 2345 / 2019,
  4203. bottom: 39.7 / 2384
  4204. }
  4205. },
  4206. back: {
  4207. height: math.unit(6, "feet"),
  4208. weight: math.unit(175, "lb"),
  4209. name: "Back",
  4210. image: {
  4211. source: "./media/characters/xera/back.svg",
  4212. extra: 2095 / 1984,
  4213. bottom: 67 / 2166
  4214. }
  4215. },
  4216. },
  4217. [
  4218. {
  4219. name: "Small",
  4220. height: math.unit(10, "feet")
  4221. },
  4222. {
  4223. name: "Macro",
  4224. height: math.unit(500, "meters"),
  4225. default: true
  4226. },
  4227. {
  4228. name: "Macro+",
  4229. height: math.unit(10, "km")
  4230. },
  4231. {
  4232. name: "Gigamacro",
  4233. height: math.unit(25000, "km")
  4234. },
  4235. {
  4236. name: "Teramacro",
  4237. height: math.unit(3e6, "km")
  4238. }
  4239. ]
  4240. ))
  4241. characterMakers.push(() => makeCharacter(
  4242. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4243. {
  4244. front: {
  4245. height: math.unit(6, "feet"),
  4246. weight: math.unit(175, "lb"),
  4247. name: "Front",
  4248. image: {
  4249. source: "./media/characters/nebula/front.svg",
  4250. extra: 2566 / 2362,
  4251. bottom: 81 / 2644
  4252. }
  4253. }
  4254. },
  4255. [
  4256. {
  4257. name: "Small",
  4258. height: math.unit(4.5, "meters")
  4259. },
  4260. {
  4261. name: "Macro",
  4262. height: math.unit(1500, "meters"),
  4263. default: true
  4264. },
  4265. {
  4266. name: "Megamacro",
  4267. height: math.unit(150, "km")
  4268. },
  4269. {
  4270. name: "Gigamacro",
  4271. height: math.unit(27000, "km")
  4272. }
  4273. ]
  4274. ))
  4275. characterMakers.push(() => makeCharacter(
  4276. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4277. {
  4278. front: {
  4279. height: math.unit(6, "feet"),
  4280. weight: math.unit(225, "lb"),
  4281. name: "Front",
  4282. image: {
  4283. source: "./media/characters/abysgar/front.svg"
  4284. }
  4285. }
  4286. },
  4287. [
  4288. {
  4289. name: "Small",
  4290. height: math.unit(4.5, "meters")
  4291. },
  4292. {
  4293. name: "Macro",
  4294. height: math.unit(1250, "meters"),
  4295. default: true
  4296. },
  4297. {
  4298. name: "Megamacro",
  4299. height: math.unit(125, "km")
  4300. },
  4301. {
  4302. name: "Gigamacro",
  4303. height: math.unit(26000, "km")
  4304. }
  4305. ]
  4306. ))
  4307. characterMakers.push(() => makeCharacter(
  4308. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4309. {
  4310. front: {
  4311. height: math.unit(6, "feet"),
  4312. weight: math.unit(180, "lb"),
  4313. name: "Front",
  4314. image: {
  4315. source: "./media/characters/yakuz/front.svg"
  4316. }
  4317. }
  4318. },
  4319. [
  4320. {
  4321. name: "Small",
  4322. height: math.unit(5, "meters")
  4323. },
  4324. {
  4325. name: "Macro",
  4326. height: math.unit(1500, "meters"),
  4327. default: true
  4328. },
  4329. {
  4330. name: "Megamacro",
  4331. height: math.unit(200, "km")
  4332. },
  4333. {
  4334. name: "Gigamacro",
  4335. height: math.unit(100000, "km")
  4336. }
  4337. ]
  4338. ))
  4339. characterMakers.push(() => makeCharacter(
  4340. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4341. {
  4342. front: {
  4343. height: math.unit(6, "feet"),
  4344. weight: math.unit(175, "lb"),
  4345. name: "Front",
  4346. image: {
  4347. source: "./media/characters/mirova/front.svg",
  4348. extra: 3334 / 3071,
  4349. bottom: 42 / 3375.6
  4350. }
  4351. }
  4352. },
  4353. [
  4354. {
  4355. name: "Small",
  4356. height: math.unit(5, "meters")
  4357. },
  4358. {
  4359. name: "Macro",
  4360. height: math.unit(900, "meters"),
  4361. default: true
  4362. },
  4363. {
  4364. name: "Megamacro",
  4365. height: math.unit(135, "km")
  4366. },
  4367. {
  4368. name: "Gigamacro",
  4369. height: math.unit(20000, "km")
  4370. }
  4371. ]
  4372. ))
  4373. characterMakers.push(() => makeCharacter(
  4374. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4375. {
  4376. side: {
  4377. height: math.unit(28.35, "feet"),
  4378. weight: math.unit(99.75, "tons"),
  4379. name: "Side",
  4380. image: {
  4381. source: "./media/characters/asana-mech/side.svg",
  4382. extra: 923 / 699,
  4383. bottom: 50 / 975
  4384. }
  4385. },
  4386. chaingun: {
  4387. height: math.unit(7, "feet"),
  4388. weight: math.unit(2400, "lb"),
  4389. name: "Chaingun",
  4390. image: {
  4391. source: "./media/characters/asana-mech/chaingun.svg"
  4392. }
  4393. },
  4394. laser: {
  4395. height: math.unit(7.12, "feet"),
  4396. weight: math.unit(2000, "lb"),
  4397. name: "Laser",
  4398. image: {
  4399. source: "./media/characters/asana-mech/laser.svg"
  4400. }
  4401. },
  4402. },
  4403. [
  4404. {
  4405. name: "Normal",
  4406. height: math.unit(28.35, "feet"),
  4407. default: true
  4408. },
  4409. {
  4410. name: "Macro",
  4411. height: math.unit(2500, "feet")
  4412. },
  4413. {
  4414. name: "Megamacro",
  4415. height: math.unit(25, "miles")
  4416. },
  4417. {
  4418. name: "Examacro",
  4419. height: math.unit(6e8, "lightyears")
  4420. },
  4421. ]
  4422. ))
  4423. characterMakers.push(() => makeCharacter(
  4424. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4425. {
  4426. front: {
  4427. height: math.unit(5, "meters"),
  4428. weight: math.unit(1000, "kg"),
  4429. name: "Front",
  4430. image: {
  4431. source: "./media/characters/asche/front.svg",
  4432. extra: 1258 / 1190,
  4433. bottom: 47 / 1305
  4434. }
  4435. },
  4436. frontUnderwear: {
  4437. height: math.unit(5, "meters"),
  4438. weight: math.unit(1000, "kg"),
  4439. name: "Front (Underwear)",
  4440. image: {
  4441. source: "./media/characters/asche/front-underwear.svg",
  4442. extra: 1258 / 1190,
  4443. bottom: 47 / 1305
  4444. }
  4445. },
  4446. frontDressed: {
  4447. height: math.unit(5, "meters"),
  4448. weight: math.unit(1000, "kg"),
  4449. name: "Front (Dressed)",
  4450. image: {
  4451. source: "./media/characters/asche/front-dressed.svg",
  4452. extra: 1258 / 1190,
  4453. bottom: 47 / 1305
  4454. }
  4455. },
  4456. frontArmor: {
  4457. height: math.unit(5, "meters"),
  4458. weight: math.unit(1000, "kg"),
  4459. name: "Front (Armored)",
  4460. image: {
  4461. source: "./media/characters/asche/front-armored.svg",
  4462. extra: 1374 / 1308,
  4463. bottom: 23 / 1397
  4464. }
  4465. },
  4466. mp724: {
  4467. height: math.unit(0.96, "meters"),
  4468. weight: math.unit(38, "kg"),
  4469. name: "H&K MP724",
  4470. image: {
  4471. source: "./media/characters/asche/h&k-mp724.svg"
  4472. }
  4473. },
  4474. side: {
  4475. height: math.unit(5, "meters"),
  4476. weight: math.unit(1000, "kg"),
  4477. name: "Side",
  4478. image: {
  4479. source: "./media/characters/asche/side.svg",
  4480. extra: 1717 / 1609,
  4481. bottom: 0.005
  4482. }
  4483. },
  4484. back: {
  4485. height: math.unit(5, "meters"),
  4486. weight: math.unit(1000, "kg"),
  4487. name: "Back",
  4488. image: {
  4489. source: "./media/characters/asche/back.svg",
  4490. extra: 1570 / 1501
  4491. }
  4492. },
  4493. },
  4494. [
  4495. {
  4496. name: "DEFCON 5",
  4497. height: math.unit(5, "meters")
  4498. },
  4499. {
  4500. name: "DEFCON 4",
  4501. height: math.unit(500, "meters"),
  4502. default: true
  4503. },
  4504. {
  4505. name: "DEFCON 3",
  4506. height: math.unit(5, "km")
  4507. },
  4508. {
  4509. name: "DEFCON 2",
  4510. height: math.unit(500, "km")
  4511. },
  4512. {
  4513. name: "DEFCON 1",
  4514. height: math.unit(500000, "km")
  4515. },
  4516. {
  4517. name: "DEFCON 0",
  4518. height: math.unit(3, "gigaparsecs")
  4519. },
  4520. ]
  4521. ))
  4522. characterMakers.push(() => makeCharacter(
  4523. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4524. {
  4525. front: {
  4526. height: math.unit(2, "meters"),
  4527. weight: math.unit(76, "kg"),
  4528. name: "Front",
  4529. image: {
  4530. source: "./media/characters/gale/front.svg"
  4531. }
  4532. },
  4533. frontAlt1: {
  4534. height: math.unit(2, "meters"),
  4535. weight: math.unit(76, "kg"),
  4536. name: "Front (Alt 1)",
  4537. image: {
  4538. source: "./media/characters/gale/front-alt-1.svg"
  4539. }
  4540. },
  4541. frontAlt2: {
  4542. height: math.unit(2, "meters"),
  4543. weight: math.unit(76, "kg"),
  4544. name: "Front (Alt 2)",
  4545. image: {
  4546. source: "./media/characters/gale/front-alt-2.svg"
  4547. }
  4548. },
  4549. },
  4550. [
  4551. {
  4552. name: "Normal",
  4553. height: math.unit(7, "feet")
  4554. },
  4555. {
  4556. name: "Macro",
  4557. height: math.unit(150, "feet"),
  4558. default: true
  4559. },
  4560. {
  4561. name: "Macro+",
  4562. height: math.unit(300, "feet")
  4563. },
  4564. ]
  4565. ))
  4566. characterMakers.push(() => makeCharacter(
  4567. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4568. {
  4569. front: {
  4570. height: math.unit(5 + 10/12, "feet"),
  4571. weight: math.unit(67, "kg"),
  4572. name: "Front",
  4573. image: {
  4574. source: "./media/characters/draylen/front.svg",
  4575. extra: 832/777,
  4576. bottom: 85/917
  4577. }
  4578. }
  4579. },
  4580. [
  4581. {
  4582. name: "Normal",
  4583. height: math.unit(5 + 10/12, "feet")
  4584. },
  4585. {
  4586. name: "Macro",
  4587. height: math.unit(150, "feet"),
  4588. default: true
  4589. }
  4590. ]
  4591. ))
  4592. characterMakers.push(() => makeCharacter(
  4593. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4594. {
  4595. front: {
  4596. height: math.unit(7 + 9 / 12, "feet"),
  4597. weight: math.unit(379, "lbs"),
  4598. name: "Front",
  4599. image: {
  4600. source: "./media/characters/chez/front.svg"
  4601. }
  4602. },
  4603. side: {
  4604. height: math.unit(7 + 9 / 12, "feet"),
  4605. weight: math.unit(379, "lbs"),
  4606. name: "Side",
  4607. image: {
  4608. source: "./media/characters/chez/side.svg"
  4609. }
  4610. }
  4611. },
  4612. [
  4613. {
  4614. name: "Normal",
  4615. height: math.unit(7 + 9 / 12, "feet"),
  4616. default: true
  4617. },
  4618. {
  4619. name: "God King",
  4620. height: math.unit(9750000, "meters")
  4621. }
  4622. ]
  4623. ))
  4624. characterMakers.push(() => makeCharacter(
  4625. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4626. {
  4627. front: {
  4628. height: math.unit(6, "feet"),
  4629. weight: math.unit(275, "lbs"),
  4630. name: "Front",
  4631. image: {
  4632. source: "./media/characters/kaylum/front.svg",
  4633. bottom: 0.01,
  4634. extra: 1166 / 1031
  4635. }
  4636. },
  4637. frontWingless: {
  4638. height: math.unit(6, "feet"),
  4639. weight: math.unit(275, "lbs"),
  4640. name: "Front (Wingless)",
  4641. image: {
  4642. source: "./media/characters/kaylum/front-wingless.svg",
  4643. bottom: 0.01,
  4644. extra: 1117 / 1031
  4645. }
  4646. }
  4647. },
  4648. [
  4649. {
  4650. name: "Normal",
  4651. height: math.unit(3.05, "meters")
  4652. },
  4653. {
  4654. name: "Master",
  4655. height: math.unit(5.5, "meters")
  4656. },
  4657. {
  4658. name: "Rampage",
  4659. height: math.unit(19, "meters")
  4660. },
  4661. {
  4662. name: "Macro Lite",
  4663. height: math.unit(37, "meters")
  4664. },
  4665. {
  4666. name: "Hyper Predator",
  4667. height: math.unit(61, "meters")
  4668. },
  4669. {
  4670. name: "Macro",
  4671. height: math.unit(138, "meters"),
  4672. default: true
  4673. }
  4674. ]
  4675. ))
  4676. characterMakers.push(() => makeCharacter(
  4677. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4678. {
  4679. front: {
  4680. height: math.unit(6, "feet"),
  4681. weight: math.unit(150, "lbs"),
  4682. name: "Front",
  4683. image: {
  4684. source: "./media/characters/geta/front.svg"
  4685. }
  4686. }
  4687. },
  4688. [
  4689. {
  4690. name: "Micro",
  4691. height: math.unit(3, "inches"),
  4692. default: true
  4693. },
  4694. {
  4695. name: "Normal",
  4696. height: math.unit(5 + 5 / 12, "feet")
  4697. }
  4698. ]
  4699. ))
  4700. characterMakers.push(() => makeCharacter(
  4701. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4702. {
  4703. front: {
  4704. height: math.unit(6, "feet"),
  4705. weight: math.unit(300, "lbs"),
  4706. name: "Front",
  4707. image: {
  4708. source: "./media/characters/tyrnn/front.svg"
  4709. }
  4710. }
  4711. },
  4712. [
  4713. {
  4714. name: "Main Height",
  4715. height: math.unit(355, "feet"),
  4716. default: true
  4717. },
  4718. {
  4719. name: "Fave. Height",
  4720. height: math.unit(2400, "feet")
  4721. }
  4722. ]
  4723. ))
  4724. characterMakers.push(() => makeCharacter(
  4725. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4726. {
  4727. front: {
  4728. height: math.unit(6, "feet"),
  4729. weight: math.unit(300, "lbs"),
  4730. name: "Front",
  4731. image: {
  4732. source: "./media/characters/appledectomy/front.svg"
  4733. }
  4734. }
  4735. },
  4736. [
  4737. {
  4738. name: "Macro",
  4739. height: math.unit(2500, "feet")
  4740. },
  4741. {
  4742. name: "Megamacro",
  4743. height: math.unit(50, "miles"),
  4744. default: true
  4745. },
  4746. {
  4747. name: "Gigamacro",
  4748. height: math.unit(5000, "miles")
  4749. },
  4750. {
  4751. name: "Teramacro",
  4752. height: math.unit(250000, "miles")
  4753. },
  4754. ]
  4755. ))
  4756. characterMakers.push(() => makeCharacter(
  4757. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4758. {
  4759. front: {
  4760. height: math.unit(6, "feet"),
  4761. weight: math.unit(200, "lbs"),
  4762. name: "Front",
  4763. image: {
  4764. source: "./media/characters/vulpes/front.svg",
  4765. extra: 573 / 543,
  4766. bottom: 0.033
  4767. }
  4768. },
  4769. side: {
  4770. height: math.unit(6, "feet"),
  4771. weight: math.unit(200, "lbs"),
  4772. name: "Side",
  4773. image: {
  4774. source: "./media/characters/vulpes/side.svg",
  4775. extra: 577 / 549,
  4776. bottom: 11 / 588
  4777. }
  4778. },
  4779. back: {
  4780. height: math.unit(6, "feet"),
  4781. weight: math.unit(200, "lbs"),
  4782. name: "Back",
  4783. image: {
  4784. source: "./media/characters/vulpes/back.svg",
  4785. extra: 573 / 549,
  4786. bottom: 20 / 593
  4787. }
  4788. },
  4789. feet: {
  4790. height: math.unit(1.276, "feet"),
  4791. name: "Feet",
  4792. image: {
  4793. source: "./media/characters/vulpes/feet.svg"
  4794. }
  4795. },
  4796. maw: {
  4797. height: math.unit(1.18, "feet"),
  4798. name: "Maw",
  4799. image: {
  4800. source: "./media/characters/vulpes/maw.svg"
  4801. }
  4802. },
  4803. },
  4804. [
  4805. {
  4806. name: "Micro",
  4807. height: math.unit(2, "inches")
  4808. },
  4809. {
  4810. name: "Normal",
  4811. height: math.unit(6.3, "feet")
  4812. },
  4813. {
  4814. name: "Macro",
  4815. height: math.unit(850, "feet")
  4816. },
  4817. {
  4818. name: "Megamacro",
  4819. height: math.unit(7500, "feet"),
  4820. default: true
  4821. },
  4822. {
  4823. name: "Gigamacro",
  4824. height: math.unit(570000, "miles")
  4825. }
  4826. ]
  4827. ))
  4828. characterMakers.push(() => makeCharacter(
  4829. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4830. {
  4831. front: {
  4832. height: math.unit(6, "feet"),
  4833. weight: math.unit(210, "lbs"),
  4834. name: "Front",
  4835. image: {
  4836. source: "./media/characters/rain-fallen/front.svg"
  4837. }
  4838. },
  4839. side: {
  4840. height: math.unit(6, "feet"),
  4841. weight: math.unit(210, "lbs"),
  4842. name: "Side",
  4843. image: {
  4844. source: "./media/characters/rain-fallen/side.svg"
  4845. }
  4846. },
  4847. back: {
  4848. height: math.unit(6, "feet"),
  4849. weight: math.unit(210, "lbs"),
  4850. name: "Back",
  4851. image: {
  4852. source: "./media/characters/rain-fallen/back.svg"
  4853. }
  4854. },
  4855. feral: {
  4856. height: math.unit(9, "feet"),
  4857. weight: math.unit(700, "lbs"),
  4858. name: "Feral",
  4859. image: {
  4860. source: "./media/characters/rain-fallen/feral.svg"
  4861. }
  4862. },
  4863. },
  4864. [
  4865. {
  4866. name: "Meddling with Mortals",
  4867. height: math.unit(8 + 8/12, "feet")
  4868. },
  4869. {
  4870. name: "Normal",
  4871. height: math.unit(5, "meter")
  4872. },
  4873. {
  4874. name: "Macro",
  4875. height: math.unit(150, "meter"),
  4876. default: true
  4877. },
  4878. {
  4879. name: "Megamacro",
  4880. height: math.unit(278e6, "meter")
  4881. },
  4882. {
  4883. name: "Gigamacro",
  4884. height: math.unit(2e9, "meter")
  4885. },
  4886. {
  4887. name: "Teramacro",
  4888. height: math.unit(8e12, "meter")
  4889. },
  4890. {
  4891. name: "Devourer",
  4892. height: math.unit(14, "zettameters")
  4893. },
  4894. {
  4895. name: "Scarlet King",
  4896. height: math.unit(18, "yottameters")
  4897. },
  4898. {
  4899. name: "Void",
  4900. height: math.unit(1e88, "yottameters")
  4901. }
  4902. ]
  4903. ))
  4904. characterMakers.push(() => makeCharacter(
  4905. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4906. {
  4907. standing: {
  4908. height: math.unit(6, "feet"),
  4909. weight: math.unit(180, "lbs"),
  4910. name: "Standing",
  4911. image: {
  4912. source: "./media/characters/zaakira/standing.svg",
  4913. extra: 1599/1504,
  4914. bottom: 39/1638
  4915. }
  4916. },
  4917. laying: {
  4918. height: math.unit(3, "feet"),
  4919. weight: math.unit(180, "lbs"),
  4920. name: "Laying",
  4921. image: {
  4922. source: "./media/characters/zaakira/laying.svg"
  4923. }
  4924. },
  4925. },
  4926. [
  4927. {
  4928. name: "Normal",
  4929. height: math.unit(12, "feet")
  4930. },
  4931. {
  4932. name: "Macro",
  4933. height: math.unit(279, "feet"),
  4934. default: true
  4935. }
  4936. ]
  4937. ))
  4938. characterMakers.push(() => makeCharacter(
  4939. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4940. {
  4941. femSfw: {
  4942. height: math.unit(8, "feet"),
  4943. weight: math.unit(350, "lb"),
  4944. name: "Fem",
  4945. image: {
  4946. source: "./media/characters/sigvald/fem-sfw.svg",
  4947. extra: 182 / 164,
  4948. bottom: 8.7 / 190.5
  4949. }
  4950. },
  4951. femNsfw: {
  4952. height: math.unit(8, "feet"),
  4953. weight: math.unit(350, "lb"),
  4954. name: "Fem (NSFW)",
  4955. image: {
  4956. source: "./media/characters/sigvald/fem-nsfw.svg",
  4957. extra: 182 / 164,
  4958. bottom: 8.7 / 190.5
  4959. }
  4960. },
  4961. maleNsfw: {
  4962. height: math.unit(8, "feet"),
  4963. weight: math.unit(350, "lb"),
  4964. name: "Male (NSFW)",
  4965. image: {
  4966. source: "./media/characters/sigvald/male-nsfw.svg",
  4967. extra: 182 / 164,
  4968. bottom: 8.7 / 190.5
  4969. }
  4970. },
  4971. hermNsfw: {
  4972. height: math.unit(8, "feet"),
  4973. weight: math.unit(350, "lb"),
  4974. name: "Herm (NSFW)",
  4975. image: {
  4976. source: "./media/characters/sigvald/herm-nsfw.svg",
  4977. extra: 182 / 164,
  4978. bottom: 8.7 / 190.5
  4979. }
  4980. },
  4981. dick: {
  4982. height: math.unit(2.36, "feet"),
  4983. name: "Dick",
  4984. image: {
  4985. source: "./media/characters/sigvald/dick.svg"
  4986. }
  4987. },
  4988. eye: {
  4989. height: math.unit(0.31, "feet"),
  4990. name: "Eye",
  4991. image: {
  4992. source: "./media/characters/sigvald/eye.svg"
  4993. }
  4994. },
  4995. mouth: {
  4996. height: math.unit(0.92, "feet"),
  4997. name: "Mouth",
  4998. image: {
  4999. source: "./media/characters/sigvald/mouth.svg"
  5000. }
  5001. },
  5002. paws: {
  5003. height: math.unit(2.2, "feet"),
  5004. name: "Paws",
  5005. image: {
  5006. source: "./media/characters/sigvald/paws.svg"
  5007. }
  5008. }
  5009. },
  5010. [
  5011. {
  5012. name: "Normal",
  5013. height: math.unit(8, "feet")
  5014. },
  5015. {
  5016. name: "Large",
  5017. height: math.unit(12, "feet")
  5018. },
  5019. {
  5020. name: "Larger",
  5021. height: math.unit(20, "feet")
  5022. },
  5023. {
  5024. name: "Macro",
  5025. height: math.unit(150, "feet")
  5026. },
  5027. {
  5028. name: "Macro+",
  5029. height: math.unit(200, "feet"),
  5030. default: true
  5031. },
  5032. ]
  5033. ))
  5034. characterMakers.push(() => makeCharacter(
  5035. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5036. {
  5037. side: {
  5038. height: math.unit(12, "feet"),
  5039. weight: math.unit(2000, "kg"),
  5040. name: "Side",
  5041. image: {
  5042. source: "./media/characters/scott/side.svg",
  5043. extra: 754 / 724,
  5044. bottom: 0.069
  5045. }
  5046. },
  5047. upright: {
  5048. height: math.unit(12, "feet"),
  5049. weight: math.unit(2000, "kg"),
  5050. name: "Upright",
  5051. image: {
  5052. source: "./media/characters/scott/upright.svg",
  5053. extra: 3881 / 3722,
  5054. bottom: 0.05
  5055. }
  5056. },
  5057. },
  5058. [
  5059. {
  5060. name: "Normal",
  5061. height: math.unit(12, "feet"),
  5062. default: true
  5063. },
  5064. ]
  5065. ))
  5066. characterMakers.push(() => makeCharacter(
  5067. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5068. {
  5069. side: {
  5070. height: math.unit(8, "meters"),
  5071. weight: math.unit(84755, "lbs"),
  5072. name: "Side",
  5073. image: {
  5074. source: "./media/characters/tobias/side.svg",
  5075. extra: 1474 / 1096,
  5076. bottom: 38.9 / 1513.1235
  5077. }
  5078. },
  5079. },
  5080. [
  5081. {
  5082. name: "Normal",
  5083. height: math.unit(8, "meters"),
  5084. default: true
  5085. },
  5086. ]
  5087. ))
  5088. characterMakers.push(() => makeCharacter(
  5089. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5090. {
  5091. front: {
  5092. height: math.unit(5.5, "feet"),
  5093. weight: math.unit(400, "lbs"),
  5094. name: "Front",
  5095. image: {
  5096. source: "./media/characters/kieran/front.svg",
  5097. extra: 2694 / 2364,
  5098. bottom: 217 / 2908
  5099. }
  5100. },
  5101. side: {
  5102. height: math.unit(5.5, "feet"),
  5103. weight: math.unit(400, "lbs"),
  5104. name: "Side",
  5105. image: {
  5106. source: "./media/characters/kieran/side.svg",
  5107. extra: 875 / 777,
  5108. bottom: 84.6 / 959
  5109. }
  5110. },
  5111. },
  5112. [
  5113. {
  5114. name: "Normal",
  5115. height: math.unit(5.5, "feet"),
  5116. default: true
  5117. },
  5118. ]
  5119. ))
  5120. characterMakers.push(() => makeCharacter(
  5121. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5122. {
  5123. side: {
  5124. height: math.unit(2, "meters"),
  5125. weight: math.unit(70, "kg"),
  5126. name: "Side",
  5127. image: {
  5128. source: "./media/characters/sanya/side.svg",
  5129. bottom: 0.02,
  5130. extra: 1.02
  5131. }
  5132. },
  5133. },
  5134. [
  5135. {
  5136. name: "Small",
  5137. height: math.unit(2, "meters")
  5138. },
  5139. {
  5140. name: "Normal",
  5141. height: math.unit(3, "meters")
  5142. },
  5143. {
  5144. name: "Macro",
  5145. height: math.unit(16, "meters"),
  5146. default: true
  5147. },
  5148. ]
  5149. ))
  5150. characterMakers.push(() => makeCharacter(
  5151. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5152. {
  5153. front: {
  5154. height: math.unit(2, "meters"),
  5155. weight: math.unit(120, "kg"),
  5156. name: "Front",
  5157. image: {
  5158. source: "./media/characters/miranda/front.svg",
  5159. extra: 195 / 185,
  5160. bottom: 10.9 / 206.5
  5161. }
  5162. },
  5163. back: {
  5164. height: math.unit(2, "meters"),
  5165. weight: math.unit(120, "kg"),
  5166. name: "Back",
  5167. image: {
  5168. source: "./media/characters/miranda/back.svg",
  5169. extra: 201 / 193,
  5170. bottom: 2.3 / 203.7
  5171. }
  5172. },
  5173. },
  5174. [
  5175. {
  5176. name: "Normal",
  5177. height: math.unit(10, "feet"),
  5178. default: true
  5179. }
  5180. ]
  5181. ))
  5182. characterMakers.push(() => makeCharacter(
  5183. { name: "James", species: ["deer"], tags: ["anthro"] },
  5184. {
  5185. side: {
  5186. height: math.unit(2, "meters"),
  5187. weight: math.unit(100, "kg"),
  5188. name: "Front",
  5189. image: {
  5190. source: "./media/characters/james/front.svg",
  5191. extra: 10 / 8.5
  5192. }
  5193. },
  5194. },
  5195. [
  5196. {
  5197. name: "Normal",
  5198. height: math.unit(8.5, "feet"),
  5199. default: true
  5200. }
  5201. ]
  5202. ))
  5203. characterMakers.push(() => makeCharacter(
  5204. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5205. {
  5206. side: {
  5207. height: math.unit(9.5, "feet"),
  5208. weight: math.unit(2500, "lbs"),
  5209. name: "Side",
  5210. image: {
  5211. source: "./media/characters/heather/side.svg"
  5212. }
  5213. },
  5214. },
  5215. [
  5216. {
  5217. name: "Normal",
  5218. height: math.unit(9.5, "feet"),
  5219. default: true
  5220. }
  5221. ]
  5222. ))
  5223. characterMakers.push(() => makeCharacter(
  5224. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5225. {
  5226. side: {
  5227. height: math.unit(6.5, "feet"),
  5228. weight: math.unit(400, "lbs"),
  5229. name: "Side",
  5230. image: {
  5231. source: "./media/characters/lukas/side.svg",
  5232. extra: 7.25 / 6.5
  5233. }
  5234. },
  5235. },
  5236. [
  5237. {
  5238. name: "Normal",
  5239. height: math.unit(6.5, "feet"),
  5240. default: true
  5241. }
  5242. ]
  5243. ))
  5244. characterMakers.push(() => makeCharacter(
  5245. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5246. {
  5247. side: {
  5248. height: math.unit(5, "feet"),
  5249. weight: math.unit(3000, "lbs"),
  5250. name: "Side",
  5251. image: {
  5252. source: "./media/characters/louise/side.svg"
  5253. }
  5254. },
  5255. },
  5256. [
  5257. {
  5258. name: "Normal",
  5259. height: math.unit(5, "feet"),
  5260. default: true
  5261. }
  5262. ]
  5263. ))
  5264. characterMakers.push(() => makeCharacter(
  5265. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5266. {
  5267. side: {
  5268. height: math.unit(6, "feet"),
  5269. weight: math.unit(150, "lbs"),
  5270. name: "Side",
  5271. image: {
  5272. source: "./media/characters/ramona/side.svg",
  5273. extra: 871/854,
  5274. bottom: 41/912
  5275. }
  5276. },
  5277. },
  5278. [
  5279. {
  5280. name: "Normal",
  5281. height: math.unit(5.3, "meters"),
  5282. default: true
  5283. },
  5284. {
  5285. name: "Macro",
  5286. height: math.unit(20, "stories")
  5287. },
  5288. {
  5289. name: "Macro+",
  5290. height: math.unit(50, "stories")
  5291. },
  5292. ]
  5293. ))
  5294. characterMakers.push(() => makeCharacter(
  5295. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5296. {
  5297. standing: {
  5298. height: math.unit(5.75, "feet"),
  5299. weight: math.unit(160, "lbs"),
  5300. name: "Standing",
  5301. image: {
  5302. source: "./media/characters/deerpuff/standing.svg",
  5303. extra: 682 / 624
  5304. }
  5305. },
  5306. sitting: {
  5307. height: math.unit(5.75 / 1.79, "feet"),
  5308. weight: math.unit(160, "lbs"),
  5309. name: "Sitting",
  5310. image: {
  5311. source: "./media/characters/deerpuff/sitting.svg",
  5312. bottom: 44 / 400,
  5313. extra: 1
  5314. }
  5315. },
  5316. taurLaying: {
  5317. height: math.unit(6, "feet"),
  5318. weight: math.unit(400, "lbs"),
  5319. name: "Taur (Laying)",
  5320. image: {
  5321. source: "./media/characters/deerpuff/taur-laying.svg"
  5322. }
  5323. },
  5324. },
  5325. [
  5326. {
  5327. name: "Puffball",
  5328. height: math.unit(6, "inches")
  5329. },
  5330. {
  5331. name: "Normalpuff",
  5332. height: math.unit(5.75, "feet")
  5333. },
  5334. {
  5335. name: "Macropuff",
  5336. height: math.unit(1500, "feet"),
  5337. default: true
  5338. },
  5339. {
  5340. name: "Megapuff",
  5341. height: math.unit(500, "miles")
  5342. },
  5343. {
  5344. name: "Gigapuff",
  5345. height: math.unit(250000, "miles")
  5346. },
  5347. {
  5348. name: "Omegapuff",
  5349. height: math.unit(1000, "lightyears")
  5350. },
  5351. ]
  5352. ))
  5353. characterMakers.push(() => makeCharacter(
  5354. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5355. {
  5356. stomping: {
  5357. height: math.unit(6, "feet"),
  5358. weight: math.unit(170, "lbs"),
  5359. name: "Stomping",
  5360. image: {
  5361. source: "./media/characters/vivian/stomping.svg"
  5362. }
  5363. },
  5364. sitting: {
  5365. height: math.unit(6 / 1.75, "feet"),
  5366. weight: math.unit(170, "lbs"),
  5367. name: "Sitting",
  5368. image: {
  5369. source: "./media/characters/vivian/sitting.svg",
  5370. bottom: 1 / 6.4,
  5371. extra: 1,
  5372. }
  5373. },
  5374. },
  5375. [
  5376. {
  5377. name: "Normal",
  5378. height: math.unit(7, "feet"),
  5379. default: true
  5380. },
  5381. {
  5382. name: "Macro",
  5383. height: math.unit(10, "stories")
  5384. },
  5385. {
  5386. name: "Macro+",
  5387. height: math.unit(30, "stories")
  5388. },
  5389. {
  5390. name: "Megamacro",
  5391. height: math.unit(10, "miles")
  5392. },
  5393. {
  5394. name: "Megamacro+",
  5395. height: math.unit(2750000, "meters")
  5396. },
  5397. ]
  5398. ))
  5399. characterMakers.push(() => makeCharacter(
  5400. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5401. {
  5402. front: {
  5403. height: math.unit(6, "feet"),
  5404. weight: math.unit(160, "lbs"),
  5405. name: "Front",
  5406. image: {
  5407. source: "./media/characters/prince/front.svg",
  5408. extra: 3400 / 3000
  5409. }
  5410. },
  5411. jumping: {
  5412. height: math.unit(6, "feet"),
  5413. weight: math.unit(160, "lbs"),
  5414. name: "Jumping",
  5415. image: {
  5416. source: "./media/characters/prince/jump.svg",
  5417. extra: 2555 / 2134
  5418. }
  5419. },
  5420. },
  5421. [
  5422. {
  5423. name: "Normal",
  5424. height: math.unit(7.75, "feet"),
  5425. default: true
  5426. },
  5427. {
  5428. name: "Not cute",
  5429. height: math.unit(17, "feet")
  5430. },
  5431. {
  5432. name: "I said NOT",
  5433. height: math.unit(91, "feet")
  5434. },
  5435. {
  5436. name: "Please stop",
  5437. height: math.unit(560, "feet")
  5438. },
  5439. {
  5440. name: "What have you done",
  5441. height: math.unit(2200, "feet")
  5442. },
  5443. {
  5444. name: "Deer God",
  5445. height: math.unit(3.6, "miles")
  5446. },
  5447. ]
  5448. ))
  5449. characterMakers.push(() => makeCharacter(
  5450. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5451. {
  5452. standing: {
  5453. height: math.unit(6, "feet"),
  5454. weight: math.unit(300, "lbs"),
  5455. name: "Standing",
  5456. image: {
  5457. source: "./media/characters/psymon/standing.svg",
  5458. extra: 1888 / 1810,
  5459. bottom: 0.05
  5460. }
  5461. },
  5462. slithering: {
  5463. height: math.unit(6, "feet"),
  5464. weight: math.unit(300, "lbs"),
  5465. name: "Slithering",
  5466. image: {
  5467. source: "./media/characters/psymon/slithering.svg",
  5468. extra: 1330 / 1224
  5469. }
  5470. },
  5471. slitheringAlt: {
  5472. height: math.unit(6, "feet"),
  5473. weight: math.unit(300, "lbs"),
  5474. name: "Slithering (Alt)",
  5475. image: {
  5476. source: "./media/characters/psymon/slithering-alt.svg",
  5477. extra: 1330 / 1224
  5478. }
  5479. },
  5480. },
  5481. [
  5482. {
  5483. name: "Normal",
  5484. height: math.unit(11.25, "feet"),
  5485. default: true
  5486. },
  5487. {
  5488. name: "Large",
  5489. height: math.unit(27, "feet")
  5490. },
  5491. {
  5492. name: "Giant",
  5493. height: math.unit(87, "feet")
  5494. },
  5495. {
  5496. name: "Macro",
  5497. height: math.unit(365, "feet")
  5498. },
  5499. {
  5500. name: "Megamacro",
  5501. height: math.unit(3, "miles")
  5502. },
  5503. {
  5504. name: "World Serpent",
  5505. height: math.unit(8000, "miles")
  5506. },
  5507. ]
  5508. ))
  5509. characterMakers.push(() => makeCharacter(
  5510. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5511. {
  5512. front: {
  5513. height: math.unit(6, "feet"),
  5514. weight: math.unit(180, "lbs"),
  5515. name: "Front",
  5516. image: {
  5517. source: "./media/characters/daimos/front.svg",
  5518. extra: 4160 / 3897,
  5519. bottom: 0.021
  5520. }
  5521. }
  5522. },
  5523. [
  5524. {
  5525. name: "Normal",
  5526. height: math.unit(8, "feet"),
  5527. default: true
  5528. },
  5529. {
  5530. name: "Big Dog",
  5531. height: math.unit(22, "feet")
  5532. },
  5533. {
  5534. name: "Macro",
  5535. height: math.unit(127, "feet")
  5536. },
  5537. {
  5538. name: "Megamacro",
  5539. height: math.unit(3600, "feet")
  5540. },
  5541. ]
  5542. ))
  5543. characterMakers.push(() => makeCharacter(
  5544. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5545. {
  5546. side: {
  5547. height: math.unit(6, "feet"),
  5548. weight: math.unit(180, "lbs"),
  5549. name: "Side",
  5550. image: {
  5551. source: "./media/characters/blake/side.svg",
  5552. extra: 1212 / 1120,
  5553. bottom: 0.05
  5554. }
  5555. },
  5556. crouched: {
  5557. height: math.unit(6 * 0.57, "feet"),
  5558. weight: math.unit(180, "lbs"),
  5559. name: "Crouched",
  5560. image: {
  5561. source: "./media/characters/blake/crouched.svg",
  5562. extra: 840 / 587,
  5563. bottom: 0.04
  5564. }
  5565. },
  5566. bent: {
  5567. height: math.unit(6 * 0.75, "feet"),
  5568. weight: math.unit(180, "lbs"),
  5569. name: "Bent",
  5570. image: {
  5571. source: "./media/characters/blake/bent.svg",
  5572. extra: 592 / 544,
  5573. bottom: 0.035
  5574. }
  5575. },
  5576. },
  5577. [
  5578. {
  5579. name: "Normal",
  5580. height: math.unit(8 + 1 / 6, "feet"),
  5581. default: true
  5582. },
  5583. {
  5584. name: "Big Backside",
  5585. height: math.unit(37, "feet")
  5586. },
  5587. {
  5588. name: "Subway Shredder",
  5589. height: math.unit(72, "feet")
  5590. },
  5591. {
  5592. name: "City Carver",
  5593. height: math.unit(1675, "feet")
  5594. },
  5595. {
  5596. name: "Tectonic Tweaker",
  5597. height: math.unit(2300, "miles")
  5598. },
  5599. ]
  5600. ))
  5601. characterMakers.push(() => makeCharacter(
  5602. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5603. {
  5604. front: {
  5605. height: math.unit(6, "feet"),
  5606. weight: math.unit(180, "lbs"),
  5607. name: "Front",
  5608. image: {
  5609. source: "./media/characters/guisetto/front.svg",
  5610. extra: 856 / 817,
  5611. bottom: 0.06
  5612. }
  5613. },
  5614. airborne: {
  5615. height: math.unit(6, "feet"),
  5616. weight: math.unit(180, "lbs"),
  5617. name: "Airborne",
  5618. image: {
  5619. source: "./media/characters/guisetto/airborne.svg",
  5620. extra: 584 / 525
  5621. }
  5622. },
  5623. },
  5624. [
  5625. {
  5626. name: "Normal",
  5627. height: math.unit(10 + 11 / 12, "feet"),
  5628. default: true
  5629. },
  5630. {
  5631. name: "Large",
  5632. height: math.unit(35, "feet")
  5633. },
  5634. {
  5635. name: "Macro",
  5636. height: math.unit(475, "feet")
  5637. },
  5638. ]
  5639. ))
  5640. characterMakers.push(() => makeCharacter(
  5641. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5642. {
  5643. front: {
  5644. height: math.unit(6, "feet"),
  5645. weight: math.unit(180, "lbs"),
  5646. name: "Front",
  5647. image: {
  5648. source: "./media/characters/luxor/front.svg",
  5649. extra: 2940 / 2152
  5650. }
  5651. },
  5652. back: {
  5653. height: math.unit(6, "feet"),
  5654. weight: math.unit(180, "lbs"),
  5655. name: "Back",
  5656. image: {
  5657. source: "./media/characters/luxor/back.svg",
  5658. extra: 1083 / 960
  5659. }
  5660. },
  5661. },
  5662. [
  5663. {
  5664. name: "Normal",
  5665. height: math.unit(5 + 5 / 6, "feet"),
  5666. default: true
  5667. },
  5668. {
  5669. name: "Lamp",
  5670. height: math.unit(50, "feet")
  5671. },
  5672. {
  5673. name: "Lämp",
  5674. height: math.unit(300, "feet")
  5675. },
  5676. {
  5677. name: "The sun is a lamp",
  5678. height: math.unit(250000, "miles")
  5679. },
  5680. ]
  5681. ))
  5682. characterMakers.push(() => makeCharacter(
  5683. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5684. {
  5685. front: {
  5686. height: math.unit(6, "feet"),
  5687. weight: math.unit(50, "lbs"),
  5688. name: "Front",
  5689. image: {
  5690. source: "./media/characters/huoyan/front.svg"
  5691. }
  5692. },
  5693. side: {
  5694. height: math.unit(6, "feet"),
  5695. weight: math.unit(180, "lbs"),
  5696. name: "Side",
  5697. image: {
  5698. source: "./media/characters/huoyan/side.svg"
  5699. }
  5700. },
  5701. },
  5702. [
  5703. {
  5704. name: "Chef",
  5705. height: math.unit(9, "feet")
  5706. },
  5707. {
  5708. name: "Normal",
  5709. height: math.unit(65, "feet"),
  5710. default: true
  5711. },
  5712. {
  5713. name: "Macro",
  5714. height: math.unit(780, "feet")
  5715. },
  5716. {
  5717. name: "Flaming Mountain",
  5718. height: math.unit(4.8, "miles")
  5719. },
  5720. {
  5721. name: "Celestial",
  5722. height: math.unit(765000, "miles")
  5723. },
  5724. ]
  5725. ))
  5726. characterMakers.push(() => makeCharacter(
  5727. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5728. {
  5729. front: {
  5730. height: math.unit(5 + 3 / 4, "feet"),
  5731. weight: math.unit(120, "lbs"),
  5732. name: "Front",
  5733. image: {
  5734. source: "./media/characters/tails/front.svg"
  5735. }
  5736. }
  5737. },
  5738. [
  5739. {
  5740. name: "Normal",
  5741. height: math.unit(5 + 3 / 4, "feet"),
  5742. default: true
  5743. }
  5744. ]
  5745. ))
  5746. characterMakers.push(() => makeCharacter(
  5747. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5748. {
  5749. front: {
  5750. height: math.unit(4, "feet"),
  5751. weight: math.unit(50, "lbs"),
  5752. name: "Front",
  5753. image: {
  5754. source: "./media/characters/rainy/front.svg"
  5755. }
  5756. }
  5757. },
  5758. [
  5759. {
  5760. name: "Macro",
  5761. height: math.unit(800, "feet"),
  5762. default: true
  5763. }
  5764. ]
  5765. ))
  5766. characterMakers.push(() => makeCharacter(
  5767. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5768. {
  5769. front: {
  5770. height: math.unit(6, "feet"),
  5771. weight: math.unit(150, "lbs"),
  5772. name: "Front",
  5773. image: {
  5774. source: "./media/characters/rainier/front.svg"
  5775. }
  5776. }
  5777. },
  5778. [
  5779. {
  5780. name: "Micro",
  5781. height: math.unit(2, "mm"),
  5782. default: true
  5783. }
  5784. ]
  5785. ))
  5786. characterMakers.push(() => makeCharacter(
  5787. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5788. {
  5789. front: {
  5790. height: math.unit(8 + 4/12, "feet"),
  5791. name: "Front",
  5792. image: {
  5793. source: "./media/characters/andy-renard/front.svg",
  5794. extra: 1839/1726,
  5795. bottom: 134/1973
  5796. }
  5797. },
  5798. back: {
  5799. height: math.unit(8 + 4/12, "feet"),
  5800. name: "Back",
  5801. image: {
  5802. source: "./media/characters/andy-renard/back.svg",
  5803. extra: 1838/1710,
  5804. bottom: 105/1943
  5805. }
  5806. },
  5807. },
  5808. [
  5809. {
  5810. name: "Tall",
  5811. height: math.unit(8 + 4/12, "feet")
  5812. },
  5813. {
  5814. name: "Mini Macro",
  5815. height: math.unit(15, "feet"),
  5816. default: true
  5817. },
  5818. {
  5819. name: "Macro",
  5820. height: math.unit(100, "feet")
  5821. },
  5822. {
  5823. name: "Mega Macro",
  5824. height: math.unit(1000, "feet")
  5825. },
  5826. {
  5827. name: "Giga Macro",
  5828. height: math.unit(10, "miles")
  5829. },
  5830. {
  5831. name: "God Macro",
  5832. height: math.unit(1, "multiverse")
  5833. },
  5834. ]
  5835. ))
  5836. characterMakers.push(() => makeCharacter(
  5837. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5838. {
  5839. front: {
  5840. height: math.unit(6, "feet"),
  5841. weight: math.unit(210, "lbs"),
  5842. name: "Front",
  5843. image: {
  5844. source: "./media/characters/cimmaron/front-sfw.svg",
  5845. extra: 701 / 676,
  5846. bottom: 0.046
  5847. }
  5848. },
  5849. back: {
  5850. height: math.unit(6, "feet"),
  5851. weight: math.unit(210, "lbs"),
  5852. name: "Back",
  5853. image: {
  5854. source: "./media/characters/cimmaron/back-sfw.svg",
  5855. extra: 701 / 676,
  5856. bottom: 0.046
  5857. }
  5858. },
  5859. frontNsfw: {
  5860. height: math.unit(6, "feet"),
  5861. weight: math.unit(210, "lbs"),
  5862. name: "Front (NSFW)",
  5863. image: {
  5864. source: "./media/characters/cimmaron/front-nsfw.svg",
  5865. extra: 701 / 676,
  5866. bottom: 0.046
  5867. }
  5868. },
  5869. backNsfw: {
  5870. height: math.unit(6, "feet"),
  5871. weight: math.unit(210, "lbs"),
  5872. name: "Back (NSFW)",
  5873. image: {
  5874. source: "./media/characters/cimmaron/back-nsfw.svg",
  5875. extra: 701 / 676,
  5876. bottom: 0.046
  5877. }
  5878. },
  5879. dick: {
  5880. height: math.unit(1.714, "feet"),
  5881. name: "Dick",
  5882. image: {
  5883. source: "./media/characters/cimmaron/dick.svg"
  5884. }
  5885. },
  5886. },
  5887. [
  5888. {
  5889. name: "Normal",
  5890. height: math.unit(6, "feet"),
  5891. default: true
  5892. },
  5893. {
  5894. name: "Macro Mayor",
  5895. height: math.unit(350, "meters")
  5896. },
  5897. ]
  5898. ))
  5899. characterMakers.push(() => makeCharacter(
  5900. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5901. {
  5902. front: {
  5903. height: math.unit(6, "feet"),
  5904. weight: math.unit(200, "lbs"),
  5905. name: "Front",
  5906. image: {
  5907. source: "./media/characters/akari/front.svg",
  5908. extra: 962 / 901,
  5909. bottom: 0.04
  5910. }
  5911. }
  5912. },
  5913. [
  5914. {
  5915. name: "Micro",
  5916. height: math.unit(5, "inches"),
  5917. default: true
  5918. },
  5919. {
  5920. name: "Normal",
  5921. height: math.unit(7, "feet")
  5922. },
  5923. ]
  5924. ))
  5925. characterMakers.push(() => makeCharacter(
  5926. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5927. {
  5928. front: {
  5929. height: math.unit(6, "feet"),
  5930. weight: math.unit(140, "lbs"),
  5931. name: "Front",
  5932. image: {
  5933. source: "./media/characters/cynosura/front.svg",
  5934. extra: 896 / 847
  5935. }
  5936. },
  5937. back: {
  5938. height: math.unit(6, "feet"),
  5939. weight: math.unit(140, "lbs"),
  5940. name: "Back",
  5941. image: {
  5942. source: "./media/characters/cynosura/back.svg",
  5943. extra: 1365 / 1250
  5944. }
  5945. },
  5946. },
  5947. [
  5948. {
  5949. name: "Micro",
  5950. height: math.unit(4, "inches")
  5951. },
  5952. {
  5953. name: "Normal",
  5954. height: math.unit(5.75, "feet"),
  5955. default: true
  5956. },
  5957. {
  5958. name: "Tall",
  5959. height: math.unit(10, "feet")
  5960. },
  5961. {
  5962. name: "Big",
  5963. height: math.unit(20, "feet")
  5964. },
  5965. {
  5966. name: "Macro",
  5967. height: math.unit(50, "feet")
  5968. },
  5969. ]
  5970. ))
  5971. characterMakers.push(() => makeCharacter(
  5972. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5973. {
  5974. front: {
  5975. height: math.unit(13 + 2/12, "feet"),
  5976. weight: math.unit(800, "kg"),
  5977. name: "Front",
  5978. image: {
  5979. source: "./media/characters/gin/front.svg",
  5980. extra: 1312/1191,
  5981. bottom: 45/1357
  5982. }
  5983. },
  5984. mouth: {
  5985. height: math.unit(2.39 * 1.8, "feet"),
  5986. name: "Mouth",
  5987. image: {
  5988. source: "./media/characters/gin/mouth.svg"
  5989. }
  5990. },
  5991. hand: {
  5992. height: math.unit(1.57 * 2.19, "feet"),
  5993. name: "Hand",
  5994. image: {
  5995. source: "./media/characters/gin/hand.svg"
  5996. }
  5997. },
  5998. foot: {
  5999. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6000. name: "Foot",
  6001. image: {
  6002. source: "./media/characters/gin/foot.svg"
  6003. }
  6004. },
  6005. sole: {
  6006. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6007. name: "Sole",
  6008. image: {
  6009. source: "./media/characters/gin/sole.svg"
  6010. }
  6011. },
  6012. },
  6013. [
  6014. {
  6015. name: "Very Small",
  6016. height: math.unit(13 + 2 / 12, "feet")
  6017. },
  6018. {
  6019. name: "Micro",
  6020. height: math.unit(600, "miles")
  6021. },
  6022. {
  6023. name: "Regular",
  6024. height: math.unit(20, "earths"),
  6025. default: true
  6026. },
  6027. {
  6028. name: "Macro",
  6029. height: math.unit(2.2, "solarradii")
  6030. },
  6031. {
  6032. name: "Teramacro",
  6033. height: math.unit(1.2, "galaxies")
  6034. },
  6035. {
  6036. name: "Omegamacro",
  6037. height: math.unit(200, "universes")
  6038. },
  6039. ]
  6040. ))
  6041. characterMakers.push(() => makeCharacter(
  6042. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6043. {
  6044. front: {
  6045. height: math.unit(6 + 1 / 6, "feet"),
  6046. weight: math.unit(178, "lbs"),
  6047. name: "Front",
  6048. image: {
  6049. source: "./media/characters/guy/front.svg"
  6050. }
  6051. }
  6052. },
  6053. [
  6054. {
  6055. name: "Normal",
  6056. height: math.unit(6 + 1 / 6, "feet"),
  6057. default: true
  6058. },
  6059. {
  6060. name: "Large",
  6061. height: math.unit(25 + 7 / 12, "feet")
  6062. },
  6063. {
  6064. name: "Macro",
  6065. height: math.unit(60 + 9 / 12, "feet")
  6066. },
  6067. {
  6068. name: "Macro+",
  6069. height: math.unit(246, "feet")
  6070. },
  6071. {
  6072. name: "Macro++",
  6073. height: math.unit(878, "feet")
  6074. }
  6075. ]
  6076. ))
  6077. characterMakers.push(() => makeCharacter(
  6078. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6079. {
  6080. front: {
  6081. height: math.unit(9, "feet"),
  6082. weight: math.unit(800, "lbs"),
  6083. name: "Front",
  6084. image: {
  6085. source: "./media/characters/tiberius/front.svg",
  6086. extra: 2295 / 2071
  6087. }
  6088. },
  6089. back: {
  6090. height: math.unit(9, "feet"),
  6091. weight: math.unit(800, "lbs"),
  6092. name: "Back",
  6093. image: {
  6094. source: "./media/characters/tiberius/back.svg",
  6095. extra: 2373 / 2160
  6096. }
  6097. },
  6098. },
  6099. [
  6100. {
  6101. name: "Normal",
  6102. height: math.unit(9, "feet"),
  6103. default: true
  6104. }
  6105. ]
  6106. ))
  6107. characterMakers.push(() => makeCharacter(
  6108. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6109. {
  6110. front: {
  6111. height: math.unit(6, "feet"),
  6112. weight: math.unit(600, "lbs"),
  6113. name: "Front",
  6114. image: {
  6115. source: "./media/characters/surgo/front.svg",
  6116. extra: 3591 / 2227
  6117. }
  6118. },
  6119. back: {
  6120. height: math.unit(6, "feet"),
  6121. weight: math.unit(600, "lbs"),
  6122. name: "Back",
  6123. image: {
  6124. source: "./media/characters/surgo/back.svg",
  6125. extra: 3557 / 2228
  6126. }
  6127. },
  6128. laying: {
  6129. height: math.unit(6 * 0.85, "feet"),
  6130. weight: math.unit(600, "lbs"),
  6131. name: "Laying",
  6132. image: {
  6133. source: "./media/characters/surgo/laying.svg"
  6134. }
  6135. },
  6136. },
  6137. [
  6138. {
  6139. name: "Normal",
  6140. height: math.unit(6, "feet"),
  6141. default: true
  6142. }
  6143. ]
  6144. ))
  6145. characterMakers.push(() => makeCharacter(
  6146. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6147. {
  6148. side: {
  6149. height: math.unit(6, "feet"),
  6150. weight: math.unit(150, "lbs"),
  6151. name: "Side",
  6152. image: {
  6153. source: "./media/characters/cibus/side.svg",
  6154. extra: 800 / 400
  6155. }
  6156. },
  6157. },
  6158. [
  6159. {
  6160. name: "Normal",
  6161. height: math.unit(6, "feet"),
  6162. default: true
  6163. }
  6164. ]
  6165. ))
  6166. characterMakers.push(() => makeCharacter(
  6167. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6168. {
  6169. front: {
  6170. height: math.unit(6, "feet"),
  6171. weight: math.unit(240, "lbs"),
  6172. name: "Front",
  6173. image: {
  6174. source: "./media/characters/nibbles/front.svg"
  6175. }
  6176. },
  6177. side: {
  6178. height: math.unit(6, "feet"),
  6179. weight: math.unit(240, "lbs"),
  6180. name: "Side",
  6181. image: {
  6182. source: "./media/characters/nibbles/side.svg"
  6183. }
  6184. },
  6185. },
  6186. [
  6187. {
  6188. name: "Normal",
  6189. height: math.unit(9, "feet"),
  6190. default: true
  6191. }
  6192. ]
  6193. ))
  6194. characterMakers.push(() => makeCharacter(
  6195. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6196. {
  6197. side: {
  6198. height: math.unit(5 + 1 / 6, "feet"),
  6199. weight: math.unit(130, "lbs"),
  6200. name: "Side",
  6201. image: {
  6202. source: "./media/characters/rikky/side.svg",
  6203. extra: 851 / 801
  6204. }
  6205. },
  6206. },
  6207. [
  6208. {
  6209. name: "Normal",
  6210. height: math.unit(5 + 1 / 6, "feet")
  6211. },
  6212. {
  6213. name: "Macro",
  6214. height: math.unit(152, "feet"),
  6215. default: true
  6216. },
  6217. {
  6218. name: "Megamacro",
  6219. height: math.unit(7, "miles")
  6220. }
  6221. ]
  6222. ))
  6223. characterMakers.push(() => makeCharacter(
  6224. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6225. {
  6226. side: {
  6227. height: math.unit(370, "cm"),
  6228. weight: math.unit(350, "lbs"),
  6229. name: "Side",
  6230. image: {
  6231. source: "./media/characters/malfressa/side.svg"
  6232. }
  6233. },
  6234. walking: {
  6235. height: math.unit(370, "cm"),
  6236. weight: math.unit(350, "lbs"),
  6237. name: "Walking",
  6238. image: {
  6239. source: "./media/characters/malfressa/walking.svg"
  6240. }
  6241. },
  6242. feral: {
  6243. height: math.unit(2500, "cm"),
  6244. weight: math.unit(100000, "lbs"),
  6245. name: "Feral",
  6246. image: {
  6247. source: "./media/characters/malfressa/feral.svg",
  6248. extra: 2108 / 837,
  6249. bottom: 0.02
  6250. }
  6251. },
  6252. },
  6253. [
  6254. {
  6255. name: "Normal",
  6256. height: math.unit(370, "cm")
  6257. },
  6258. {
  6259. name: "Macro",
  6260. height: math.unit(300, "meters"),
  6261. default: true
  6262. }
  6263. ]
  6264. ))
  6265. characterMakers.push(() => makeCharacter(
  6266. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6267. {
  6268. front: {
  6269. height: math.unit(6, "feet"),
  6270. weight: math.unit(60, "kg"),
  6271. name: "Front",
  6272. image: {
  6273. source: "./media/characters/jaro/front.svg"
  6274. }
  6275. },
  6276. back: {
  6277. height: math.unit(6, "feet"),
  6278. weight: math.unit(60, "kg"),
  6279. name: "Back",
  6280. image: {
  6281. source: "./media/characters/jaro/back.svg"
  6282. }
  6283. },
  6284. },
  6285. [
  6286. {
  6287. name: "Micro",
  6288. height: math.unit(7, "inches")
  6289. },
  6290. {
  6291. name: "Normal",
  6292. height: math.unit(5.5, "feet"),
  6293. default: true
  6294. },
  6295. {
  6296. name: "Minimacro",
  6297. height: math.unit(20, "feet")
  6298. },
  6299. {
  6300. name: "Macro",
  6301. height: math.unit(200, "meters")
  6302. }
  6303. ]
  6304. ))
  6305. characterMakers.push(() => makeCharacter(
  6306. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6307. {
  6308. front: {
  6309. height: math.unit(6, "feet"),
  6310. weight: math.unit(195, "lb"),
  6311. name: "Front",
  6312. image: {
  6313. source: "./media/characters/rogue/front.svg"
  6314. }
  6315. },
  6316. },
  6317. [
  6318. {
  6319. name: "Macro",
  6320. height: math.unit(90, "feet"),
  6321. default: true
  6322. },
  6323. ]
  6324. ))
  6325. characterMakers.push(() => makeCharacter(
  6326. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6327. {
  6328. front: {
  6329. height: math.unit(5 + 8 / 12, "feet"),
  6330. weight: math.unit(140, "lb"),
  6331. name: "Front",
  6332. image: {
  6333. source: "./media/characters/piper/front.svg",
  6334. extra: 3948/3655,
  6335. bottom: 0/3948
  6336. }
  6337. },
  6338. },
  6339. [
  6340. {
  6341. name: "Micro",
  6342. height: math.unit(2, "inches")
  6343. },
  6344. {
  6345. name: "Normal",
  6346. height: math.unit(5 + 8 / 12, "feet")
  6347. },
  6348. {
  6349. name: "Macro",
  6350. height: math.unit(250, "feet"),
  6351. default: true
  6352. },
  6353. {
  6354. name: "Megamacro",
  6355. height: math.unit(7, "miles")
  6356. },
  6357. ]
  6358. ))
  6359. characterMakers.push(() => makeCharacter(
  6360. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6361. {
  6362. front: {
  6363. height: math.unit(6, "feet"),
  6364. weight: math.unit(220, "lb"),
  6365. name: "Front",
  6366. image: {
  6367. source: "./media/characters/gemini/front.svg"
  6368. }
  6369. },
  6370. back: {
  6371. height: math.unit(6, "feet"),
  6372. weight: math.unit(220, "lb"),
  6373. name: "Back",
  6374. image: {
  6375. source: "./media/characters/gemini/back.svg"
  6376. }
  6377. },
  6378. kneeling: {
  6379. height: math.unit(6 / 1.5, "feet"),
  6380. weight: math.unit(220, "lb"),
  6381. name: "Kneeling",
  6382. image: {
  6383. source: "./media/characters/gemini/kneeling.svg",
  6384. bottom: 0.02
  6385. }
  6386. },
  6387. },
  6388. [
  6389. {
  6390. name: "Macro",
  6391. height: math.unit(300, "meters"),
  6392. default: true
  6393. },
  6394. {
  6395. name: "Megamacro",
  6396. height: math.unit(6900, "meters")
  6397. },
  6398. ]
  6399. ))
  6400. characterMakers.push(() => makeCharacter(
  6401. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6402. {
  6403. anthro: {
  6404. height: math.unit(2.35, "meters"),
  6405. weight: math.unit(73, "kg"),
  6406. name: "Anthro",
  6407. image: {
  6408. source: "./media/characters/alicia/anthro.svg",
  6409. extra: 2571 / 2385,
  6410. bottom: 75 / 2648
  6411. }
  6412. },
  6413. paw: {
  6414. height: math.unit(1.32, "feet"),
  6415. name: "Paw",
  6416. image: {
  6417. source: "./media/characters/alicia/paw.svg"
  6418. }
  6419. },
  6420. feral: {
  6421. height: math.unit(1.69, "meters"),
  6422. weight: math.unit(73, "kg"),
  6423. name: "Feral",
  6424. image: {
  6425. source: "./media/characters/alicia/feral.svg",
  6426. extra: 2123 / 1715,
  6427. bottom: 222 / 2349
  6428. }
  6429. },
  6430. },
  6431. [
  6432. {
  6433. name: "Normal",
  6434. height: math.unit(2.35, "meters")
  6435. },
  6436. {
  6437. name: "Macro",
  6438. height: math.unit(60, "meters"),
  6439. default: true
  6440. },
  6441. {
  6442. name: "Megamacro",
  6443. height: math.unit(10000, "kilometers")
  6444. },
  6445. ]
  6446. ))
  6447. characterMakers.push(() => makeCharacter(
  6448. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6449. {
  6450. front: {
  6451. height: math.unit(7, "feet"),
  6452. weight: math.unit(250, "lbs"),
  6453. name: "Front",
  6454. image: {
  6455. source: "./media/characters/archy/front.svg"
  6456. }
  6457. }
  6458. },
  6459. [
  6460. {
  6461. name: "Micro",
  6462. height: math.unit(1, "inch")
  6463. },
  6464. {
  6465. name: "Shorty",
  6466. height: math.unit(5, "feet")
  6467. },
  6468. {
  6469. name: "Normal",
  6470. height: math.unit(7, "feet")
  6471. },
  6472. {
  6473. name: "Macro",
  6474. height: math.unit(600, "meters"),
  6475. default: true
  6476. },
  6477. {
  6478. name: "Megamacro",
  6479. height: math.unit(1, "mile")
  6480. },
  6481. ]
  6482. ))
  6483. characterMakers.push(() => makeCharacter(
  6484. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6485. {
  6486. front: {
  6487. height: math.unit(1.65, "meters"),
  6488. weight: math.unit(74, "kg"),
  6489. name: "Front",
  6490. image: {
  6491. source: "./media/characters/berri/front.svg",
  6492. extra: 857 / 837,
  6493. bottom: 18 / 877
  6494. }
  6495. },
  6496. bum: {
  6497. height: math.unit(1.46, "feet"),
  6498. name: "Bum",
  6499. image: {
  6500. source: "./media/characters/berri/bum.svg"
  6501. }
  6502. },
  6503. mouth: {
  6504. height: math.unit(0.44, "feet"),
  6505. name: "Mouth",
  6506. image: {
  6507. source: "./media/characters/berri/mouth.svg"
  6508. }
  6509. },
  6510. paw: {
  6511. height: math.unit(0.826, "feet"),
  6512. name: "Paw",
  6513. image: {
  6514. source: "./media/characters/berri/paw.svg"
  6515. }
  6516. },
  6517. },
  6518. [
  6519. {
  6520. name: "Normal",
  6521. height: math.unit(1.65, "meters")
  6522. },
  6523. {
  6524. name: "Macro",
  6525. height: math.unit(60, "m"),
  6526. default: true
  6527. },
  6528. {
  6529. name: "Megamacro",
  6530. height: math.unit(9.213, "km")
  6531. },
  6532. {
  6533. name: "Planet Eater",
  6534. height: math.unit(489, "megameters")
  6535. },
  6536. {
  6537. name: "Teramacro",
  6538. height: math.unit(2471635000000, "meters")
  6539. },
  6540. {
  6541. name: "Examacro",
  6542. height: math.unit(8.0624e+26, "meters")
  6543. }
  6544. ]
  6545. ))
  6546. characterMakers.push(() => makeCharacter(
  6547. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6548. {
  6549. front: {
  6550. height: math.unit(1.72, "meters"),
  6551. weight: math.unit(68, "kg"),
  6552. name: "Front",
  6553. image: {
  6554. source: "./media/characters/lexi/front.svg"
  6555. }
  6556. }
  6557. },
  6558. [
  6559. {
  6560. name: "Very Smol",
  6561. height: math.unit(10, "mm")
  6562. },
  6563. {
  6564. name: "Micro",
  6565. height: math.unit(6.8, "cm"),
  6566. default: true
  6567. },
  6568. {
  6569. name: "Normal",
  6570. height: math.unit(1.72, "m")
  6571. }
  6572. ]
  6573. ))
  6574. characterMakers.push(() => makeCharacter(
  6575. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6576. {
  6577. front: {
  6578. height: math.unit(1.69, "meters"),
  6579. weight: math.unit(68, "kg"),
  6580. name: "Front",
  6581. image: {
  6582. source: "./media/characters/martin/front.svg",
  6583. extra: 596 / 581
  6584. }
  6585. }
  6586. },
  6587. [
  6588. {
  6589. name: "Micro",
  6590. height: math.unit(6.85, "cm"),
  6591. default: true
  6592. },
  6593. {
  6594. name: "Normal",
  6595. height: math.unit(1.69, "m")
  6596. }
  6597. ]
  6598. ))
  6599. characterMakers.push(() => makeCharacter(
  6600. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6601. {
  6602. front: {
  6603. height: math.unit(1.69, "meters"),
  6604. weight: math.unit(68, "kg"),
  6605. name: "Front",
  6606. image: {
  6607. source: "./media/characters/juno/front.svg"
  6608. }
  6609. }
  6610. },
  6611. [
  6612. {
  6613. name: "Micro",
  6614. height: math.unit(7, "cm")
  6615. },
  6616. {
  6617. name: "Normal",
  6618. height: math.unit(1.89, "m")
  6619. },
  6620. {
  6621. name: "Macro",
  6622. height: math.unit(353, "meters"),
  6623. default: true
  6624. }
  6625. ]
  6626. ))
  6627. characterMakers.push(() => makeCharacter(
  6628. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6629. {
  6630. front: {
  6631. height: math.unit(1.93, "meters"),
  6632. weight: math.unit(83, "kg"),
  6633. name: "Front",
  6634. image: {
  6635. source: "./media/characters/samantha/front.svg"
  6636. }
  6637. },
  6638. frontClothed: {
  6639. height: math.unit(1.93, "meters"),
  6640. weight: math.unit(83, "kg"),
  6641. name: "Front (Clothed)",
  6642. image: {
  6643. source: "./media/characters/samantha/front-clothed.svg"
  6644. }
  6645. },
  6646. back: {
  6647. height: math.unit(1.93, "meters"),
  6648. weight: math.unit(83, "kg"),
  6649. name: "Back",
  6650. image: {
  6651. source: "./media/characters/samantha/back.svg"
  6652. }
  6653. },
  6654. },
  6655. [
  6656. {
  6657. name: "Normal",
  6658. height: math.unit(1.93, "m")
  6659. },
  6660. {
  6661. name: "Macro",
  6662. height: math.unit(74, "meters"),
  6663. default: true
  6664. },
  6665. {
  6666. name: "Macro+",
  6667. height: math.unit(223, "meters"),
  6668. },
  6669. {
  6670. name: "Megamacro",
  6671. height: math.unit(8381, "meters"),
  6672. },
  6673. {
  6674. name: "Megamacro+",
  6675. height: math.unit(12000, "kilometers")
  6676. },
  6677. ]
  6678. ))
  6679. characterMakers.push(() => makeCharacter(
  6680. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6681. {
  6682. front: {
  6683. height: math.unit(1.92, "meters"),
  6684. weight: math.unit(80, "kg"),
  6685. name: "Front",
  6686. image: {
  6687. source: "./media/characters/dr-clay/front.svg"
  6688. }
  6689. },
  6690. frontClothed: {
  6691. height: math.unit(1.92, "meters"),
  6692. weight: math.unit(80, "kg"),
  6693. name: "Front (Clothed)",
  6694. image: {
  6695. source: "./media/characters/dr-clay/front-clothed.svg"
  6696. }
  6697. }
  6698. },
  6699. [
  6700. {
  6701. name: "Normal",
  6702. height: math.unit(1.92, "m")
  6703. },
  6704. {
  6705. name: "Macro",
  6706. height: math.unit(214, "meters"),
  6707. default: true
  6708. },
  6709. {
  6710. name: "Macro+",
  6711. height: math.unit(12.237, "meters"),
  6712. },
  6713. {
  6714. name: "Megamacro",
  6715. height: math.unit(557, "megameters"),
  6716. },
  6717. {
  6718. name: "Unimaginable",
  6719. height: math.unit(120e9, "lightyears")
  6720. },
  6721. ]
  6722. ))
  6723. characterMakers.push(() => makeCharacter(
  6724. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6725. {
  6726. front: {
  6727. height: math.unit(2, "meters"),
  6728. weight: math.unit(80, "kg"),
  6729. name: "Front",
  6730. image: {
  6731. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6732. }
  6733. }
  6734. },
  6735. [
  6736. {
  6737. name: "Teramacro",
  6738. height: math.unit(500000, "lightyears"),
  6739. default: true
  6740. },
  6741. ]
  6742. ))
  6743. characterMakers.push(() => makeCharacter(
  6744. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6745. {
  6746. crux: {
  6747. height: math.unit(2, "meters"),
  6748. weight: math.unit(150, "kg"),
  6749. name: "Crux",
  6750. image: {
  6751. source: "./media/characters/vemus/crux.svg",
  6752. extra: 1074/936,
  6753. bottom: 23/1097
  6754. }
  6755. },
  6756. skunkTanuki: {
  6757. height: math.unit(2, "meters"),
  6758. weight: math.unit(150, "kg"),
  6759. name: "Skunk-Tanuki",
  6760. image: {
  6761. source: "./media/characters/vemus/skunk-tanuki.svg",
  6762. extra: 926/893,
  6763. bottom: 20/946
  6764. }
  6765. },
  6766. },
  6767. [
  6768. {
  6769. name: "Normal",
  6770. height: math.unit(3.75, "meters"),
  6771. default: true
  6772. },
  6773. {
  6774. name: "Big",
  6775. height: math.unit(8, "meters")
  6776. },
  6777. {
  6778. name: "Macro",
  6779. height: math.unit(100, "meters")
  6780. },
  6781. {
  6782. name: "Macro+",
  6783. height: math.unit(1500, "meters")
  6784. },
  6785. {
  6786. name: "Stellar",
  6787. height: math.unit(14e8, "meters")
  6788. },
  6789. ]
  6790. ))
  6791. characterMakers.push(() => makeCharacter(
  6792. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6793. {
  6794. front: {
  6795. height: math.unit(2, "meters"),
  6796. weight: math.unit(70, "kg"),
  6797. name: "Front",
  6798. image: {
  6799. source: "./media/characters/beherit/front.svg",
  6800. extra: 1408 / 1242
  6801. }
  6802. }
  6803. },
  6804. [
  6805. {
  6806. name: "Normal",
  6807. height: math.unit(6, "feet")
  6808. },
  6809. {
  6810. name: "Lorg",
  6811. height: math.unit(25, "feet"),
  6812. default: true
  6813. },
  6814. {
  6815. name: "Lorger",
  6816. height: math.unit(75, "feet")
  6817. },
  6818. {
  6819. name: "Macro",
  6820. height: math.unit(200, "meters")
  6821. },
  6822. ]
  6823. ))
  6824. characterMakers.push(() => makeCharacter(
  6825. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6826. {
  6827. front: {
  6828. height: math.unit(2, "meters"),
  6829. weight: math.unit(150, "kg"),
  6830. name: "Front",
  6831. image: {
  6832. source: "./media/characters/everett/front.svg",
  6833. extra: 2038 / 1737,
  6834. bottom: 0.03
  6835. }
  6836. },
  6837. paw: {
  6838. height: math.unit(2 / 3.6, "meters"),
  6839. name: "Paw",
  6840. image: {
  6841. source: "./media/characters/everett/paw.svg"
  6842. }
  6843. },
  6844. },
  6845. [
  6846. {
  6847. name: "Normal",
  6848. height: math.unit(15, "feet"),
  6849. default: true
  6850. },
  6851. {
  6852. name: "Lorg",
  6853. height: math.unit(70, "feet"),
  6854. default: true
  6855. },
  6856. {
  6857. name: "Lorger",
  6858. height: math.unit(250, "feet")
  6859. },
  6860. {
  6861. name: "Macro",
  6862. height: math.unit(500, "meters")
  6863. },
  6864. ]
  6865. ))
  6866. characterMakers.push(() => makeCharacter(
  6867. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6868. {
  6869. front: {
  6870. height: math.unit(2, "meters"),
  6871. weight: math.unit(86, "kg"),
  6872. name: "Front",
  6873. image: {
  6874. source: "./media/characters/rose/front.svg",
  6875. extra: 1785/1636,
  6876. bottom: 30/1815
  6877. }
  6878. },
  6879. frontSporty: {
  6880. height: math.unit(2, "meters"),
  6881. weight: math.unit(86, "kg"),
  6882. name: "Front (Sporty)",
  6883. image: {
  6884. source: "./media/characters/rose/front-sporty.svg",
  6885. extra: 350/335,
  6886. bottom: 10/360
  6887. }
  6888. },
  6889. frontAlt: {
  6890. height: math.unit(1.6, "meters"),
  6891. weight: math.unit(86, "kg"),
  6892. name: "Front (Alt)",
  6893. image: {
  6894. source: "./media/characters/rose/front-alt.svg",
  6895. extra: 299/283,
  6896. bottom: 3/302
  6897. }
  6898. },
  6899. plush: {
  6900. height: math.unit(2, "meters"),
  6901. weight: math.unit(86/3, "kg"),
  6902. name: "Plush",
  6903. image: {
  6904. source: "./media/characters/rose/plush.svg",
  6905. extra: 361/337,
  6906. bottom: 11/372
  6907. }
  6908. },
  6909. },
  6910. [
  6911. {
  6912. name: "True Micro",
  6913. height: math.unit(9, "cm")
  6914. },
  6915. {
  6916. name: "Micro",
  6917. height: math.unit(16, "cm")
  6918. },
  6919. {
  6920. name: "Normal",
  6921. height: math.unit(1.85, "meters"),
  6922. default: true
  6923. },
  6924. {
  6925. name: "Mini-Macro",
  6926. height: math.unit(5, "meters")
  6927. },
  6928. {
  6929. name: "Macro",
  6930. height: math.unit(15, "meters")
  6931. },
  6932. {
  6933. name: "True Macro",
  6934. height: math.unit(40, "meters")
  6935. },
  6936. {
  6937. name: "City Scale",
  6938. height: math.unit(1, "km")
  6939. },
  6940. ]
  6941. ))
  6942. characterMakers.push(() => makeCharacter(
  6943. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6944. {
  6945. front: {
  6946. height: math.unit(2, "meters"),
  6947. weight: math.unit(350, "lbs"),
  6948. name: "Front",
  6949. image: {
  6950. source: "./media/characters/regal/front.svg"
  6951. }
  6952. },
  6953. back: {
  6954. height: math.unit(2, "meters"),
  6955. weight: math.unit(350, "lbs"),
  6956. name: "Back",
  6957. image: {
  6958. source: "./media/characters/regal/back.svg"
  6959. }
  6960. },
  6961. },
  6962. [
  6963. {
  6964. name: "Macro",
  6965. height: math.unit(350, "feet"),
  6966. default: true
  6967. }
  6968. ]
  6969. ))
  6970. characterMakers.push(() => makeCharacter(
  6971. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6972. {
  6973. front: {
  6974. height: math.unit(4 + 11 / 12, "feet"),
  6975. weight: math.unit(100, "lbs"),
  6976. name: "Front",
  6977. image: {
  6978. source: "./media/characters/opal/front.svg"
  6979. }
  6980. },
  6981. frontAlt: {
  6982. height: math.unit(4 + 11 / 12, "feet"),
  6983. weight: math.unit(100, "lbs"),
  6984. name: "Front (Alt)",
  6985. image: {
  6986. source: "./media/characters/opal/front-alt.svg"
  6987. }
  6988. },
  6989. },
  6990. [
  6991. {
  6992. name: "Small",
  6993. height: math.unit(4 + 11 / 12, "feet")
  6994. },
  6995. {
  6996. name: "Normal",
  6997. height: math.unit(20, "feet"),
  6998. default: true
  6999. },
  7000. {
  7001. name: "Macro",
  7002. height: math.unit(120, "feet")
  7003. },
  7004. {
  7005. name: "Megamacro",
  7006. height: math.unit(80, "miles")
  7007. },
  7008. {
  7009. name: "True Size",
  7010. height: math.unit(100000, "lightyears")
  7011. },
  7012. ]
  7013. ))
  7014. characterMakers.push(() => makeCharacter(
  7015. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7016. {
  7017. front: {
  7018. height: math.unit(6, "feet"),
  7019. weight: math.unit(200, "lbs"),
  7020. name: "Front",
  7021. image: {
  7022. source: "./media/characters/vector-wuff/front.svg"
  7023. }
  7024. }
  7025. },
  7026. [
  7027. {
  7028. name: "Normal",
  7029. height: math.unit(2.8, "meters")
  7030. },
  7031. {
  7032. name: "Macro",
  7033. height: math.unit(450, "meters"),
  7034. default: true
  7035. },
  7036. {
  7037. name: "Megamacro",
  7038. height: math.unit(15, "kilometers")
  7039. }
  7040. ]
  7041. ))
  7042. characterMakers.push(() => makeCharacter(
  7043. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7044. {
  7045. front: {
  7046. height: math.unit(6, "feet"),
  7047. weight: math.unit(256, "lbs"),
  7048. name: "Front",
  7049. image: {
  7050. source: "./media/characters/dannik/front.svg"
  7051. }
  7052. }
  7053. },
  7054. [
  7055. {
  7056. name: "Macro",
  7057. height: math.unit(69.57, "meters"),
  7058. default: true
  7059. },
  7060. ]
  7061. ))
  7062. characterMakers.push(() => makeCharacter(
  7063. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7064. {
  7065. front: {
  7066. height: math.unit(6, "feet"),
  7067. weight: math.unit(120, "lbs"),
  7068. name: "Front",
  7069. image: {
  7070. source: "./media/characters/azura-saharah/front.svg"
  7071. }
  7072. },
  7073. back: {
  7074. height: math.unit(6, "feet"),
  7075. weight: math.unit(120, "lbs"),
  7076. name: "Back",
  7077. image: {
  7078. source: "./media/characters/azura-saharah/back.svg"
  7079. }
  7080. },
  7081. },
  7082. [
  7083. {
  7084. name: "Macro",
  7085. height: math.unit(100, "feet"),
  7086. default: true
  7087. },
  7088. ]
  7089. ))
  7090. characterMakers.push(() => makeCharacter(
  7091. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7092. {
  7093. side: {
  7094. height: math.unit(5 + 4 / 12, "feet"),
  7095. weight: math.unit(163, "lbs"),
  7096. name: "Side",
  7097. image: {
  7098. source: "./media/characters/kennedy/side.svg"
  7099. }
  7100. }
  7101. },
  7102. [
  7103. {
  7104. name: "Standard Doggo",
  7105. height: math.unit(5 + 4 / 12, "feet")
  7106. },
  7107. {
  7108. name: "Big Doggo",
  7109. height: math.unit(25 + 3 / 12, "feet"),
  7110. default: true
  7111. },
  7112. ]
  7113. ))
  7114. characterMakers.push(() => makeCharacter(
  7115. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7116. {
  7117. front: {
  7118. height: math.unit(5 + 5/12, "feet"),
  7119. weight: math.unit(100, "lbs"),
  7120. name: "Front",
  7121. image: {
  7122. source: "./media/characters/odios-de-lunar/front.svg",
  7123. extra: 1468/1323,
  7124. bottom: 22/1490
  7125. }
  7126. }
  7127. },
  7128. [
  7129. {
  7130. name: "Micro",
  7131. height: math.unit(3, "inches")
  7132. },
  7133. {
  7134. name: "Normal",
  7135. height: math.unit(5.5, "feet"),
  7136. default: true
  7137. },
  7138. {
  7139. name: "Macro",
  7140. height: math.unit(100, "feet")
  7141. },
  7142. ]
  7143. ))
  7144. characterMakers.push(() => makeCharacter(
  7145. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7146. {
  7147. back: {
  7148. height: math.unit(6, "feet"),
  7149. weight: math.unit(220, "lbs"),
  7150. name: "Back",
  7151. image: {
  7152. source: "./media/characters/mandake/back.svg"
  7153. }
  7154. }
  7155. },
  7156. [
  7157. {
  7158. name: "Normal",
  7159. height: math.unit(7, "feet"),
  7160. default: true
  7161. },
  7162. {
  7163. name: "Macro",
  7164. height: math.unit(78, "feet")
  7165. },
  7166. {
  7167. name: "Macro+",
  7168. height: math.unit(300, "meters")
  7169. },
  7170. {
  7171. name: "Macro++",
  7172. height: math.unit(2400, "feet")
  7173. },
  7174. {
  7175. name: "Megamacro",
  7176. height: math.unit(5167, "meters")
  7177. },
  7178. {
  7179. name: "Gigamacro",
  7180. height: math.unit(41769, "miles")
  7181. },
  7182. ]
  7183. ))
  7184. characterMakers.push(() => makeCharacter(
  7185. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7186. {
  7187. front: {
  7188. height: math.unit(6, "feet"),
  7189. weight: math.unit(120, "lbs"),
  7190. name: "Front",
  7191. image: {
  7192. source: "./media/characters/yozey/front.svg"
  7193. }
  7194. },
  7195. frontAlt: {
  7196. height: math.unit(6, "feet"),
  7197. weight: math.unit(120, "lbs"),
  7198. name: "Front (Alt)",
  7199. image: {
  7200. source: "./media/characters/yozey/front-alt.svg"
  7201. }
  7202. },
  7203. side: {
  7204. height: math.unit(6, "feet"),
  7205. weight: math.unit(120, "lbs"),
  7206. name: "Side",
  7207. image: {
  7208. source: "./media/characters/yozey/side.svg"
  7209. }
  7210. },
  7211. },
  7212. [
  7213. {
  7214. name: "Micro",
  7215. height: math.unit(3, "inches"),
  7216. default: true
  7217. },
  7218. {
  7219. name: "Normal",
  7220. height: math.unit(6, "feet")
  7221. }
  7222. ]
  7223. ))
  7224. characterMakers.push(() => makeCharacter(
  7225. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7226. {
  7227. front: {
  7228. height: math.unit(6, "feet"),
  7229. weight: math.unit(103, "lbs"),
  7230. name: "Front",
  7231. image: {
  7232. source: "./media/characters/valeska-voss/front.svg"
  7233. }
  7234. }
  7235. },
  7236. [
  7237. {
  7238. name: "Mini-Sized Sub",
  7239. height: math.unit(3.1, "inches")
  7240. },
  7241. {
  7242. name: "Mid-Sized Sub",
  7243. height: math.unit(6.2, "inches")
  7244. },
  7245. {
  7246. name: "Full-Sized Sub",
  7247. height: math.unit(9.3, "inches")
  7248. },
  7249. {
  7250. name: "Normal",
  7251. height: math.unit(5 + 2 / 12, "foot"),
  7252. default: true
  7253. },
  7254. ]
  7255. ))
  7256. characterMakers.push(() => makeCharacter(
  7257. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7258. {
  7259. front: {
  7260. height: math.unit(6, "feet"),
  7261. weight: math.unit(160, "lbs"),
  7262. name: "Front",
  7263. image: {
  7264. source: "./media/characters/gene-zeta/front.svg",
  7265. extra: 3006 / 2826,
  7266. bottom: 182 / 3188
  7267. }
  7268. }
  7269. },
  7270. [
  7271. {
  7272. name: "Micro",
  7273. height: math.unit(6, "inches")
  7274. },
  7275. {
  7276. name: "Normal",
  7277. height: math.unit(5 + 11 / 12, "foot"),
  7278. default: true
  7279. },
  7280. {
  7281. name: "Macro",
  7282. height: math.unit(140, "feet")
  7283. },
  7284. {
  7285. name: "Supercharged",
  7286. height: math.unit(2500, "feet")
  7287. },
  7288. ]
  7289. ))
  7290. characterMakers.push(() => makeCharacter(
  7291. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7292. {
  7293. front: {
  7294. height: math.unit(6, "feet"),
  7295. weight: math.unit(350, "lbs"),
  7296. name: "Front",
  7297. image: {
  7298. source: "./media/characters/razinox/front.svg",
  7299. extra: 1686 / 1548,
  7300. bottom: 28.2 / 1868
  7301. }
  7302. },
  7303. back: {
  7304. height: math.unit(6, "feet"),
  7305. weight: math.unit(350, "lbs"),
  7306. name: "Back",
  7307. image: {
  7308. source: "./media/characters/razinox/back.svg",
  7309. extra: 1660 / 1590,
  7310. bottom: 15 / 1665
  7311. }
  7312. },
  7313. },
  7314. [
  7315. {
  7316. name: "Normal",
  7317. height: math.unit(10 + 8 / 12, "foot")
  7318. },
  7319. {
  7320. name: "Minimacro",
  7321. height: math.unit(15, "foot")
  7322. },
  7323. {
  7324. name: "Macro",
  7325. height: math.unit(60, "foot"),
  7326. default: true
  7327. },
  7328. {
  7329. name: "Megamacro",
  7330. height: math.unit(5, "miles")
  7331. },
  7332. {
  7333. name: "Gigamacro",
  7334. height: math.unit(6000, "miles")
  7335. },
  7336. ]
  7337. ))
  7338. characterMakers.push(() => makeCharacter(
  7339. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7340. {
  7341. front: {
  7342. height: math.unit(6, "feet"),
  7343. weight: math.unit(150, "lbs"),
  7344. name: "Front",
  7345. image: {
  7346. source: "./media/characters/cobalt/front.svg"
  7347. }
  7348. }
  7349. },
  7350. [
  7351. {
  7352. name: "Normal",
  7353. height: math.unit(8 + 1 / 12, "foot")
  7354. },
  7355. {
  7356. name: "Macro",
  7357. height: math.unit(111, "foot"),
  7358. default: true
  7359. },
  7360. {
  7361. name: "Supracosmic",
  7362. height: math.unit(1e42, "feet")
  7363. },
  7364. ]
  7365. ))
  7366. characterMakers.push(() => makeCharacter(
  7367. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7368. {
  7369. front: {
  7370. height: math.unit(6, "feet"),
  7371. weight: math.unit(140, "lbs"),
  7372. name: "Front",
  7373. image: {
  7374. source: "./media/characters/amanda/front.svg"
  7375. }
  7376. }
  7377. },
  7378. [
  7379. {
  7380. name: "Micro",
  7381. height: math.unit(5, "inches"),
  7382. default: true
  7383. },
  7384. ]
  7385. ))
  7386. characterMakers.push(() => makeCharacter(
  7387. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7388. {
  7389. front: {
  7390. height: math.unit(2.75, "meters"),
  7391. weight: math.unit(1200, "lb"),
  7392. name: "Front",
  7393. image: {
  7394. source: "./media/characters/teal/front.svg",
  7395. extra: 2463 / 2320,
  7396. bottom: 166 / 2629
  7397. }
  7398. },
  7399. back: {
  7400. height: math.unit(2.75, "meters"),
  7401. weight: math.unit(1200, "lb"),
  7402. name: "Back",
  7403. image: {
  7404. source: "./media/characters/teal/back.svg",
  7405. extra: 2580 / 2489,
  7406. bottom: 151 / 2731
  7407. }
  7408. },
  7409. sitting: {
  7410. height: math.unit(1.9, "meters"),
  7411. weight: math.unit(1200, "lb"),
  7412. name: "Sitting",
  7413. image: {
  7414. source: "./media/characters/teal/sitting.svg",
  7415. extra: 623 / 590,
  7416. bottom: 121 / 744
  7417. }
  7418. },
  7419. standing: {
  7420. height: math.unit(2.75, "meters"),
  7421. weight: math.unit(1200, "lb"),
  7422. name: "Standing",
  7423. image: {
  7424. source: "./media/characters/teal/standing.svg",
  7425. extra: 923 / 893,
  7426. bottom: 60 / 983
  7427. }
  7428. },
  7429. stretching: {
  7430. height: math.unit(3.65, "meters"),
  7431. weight: math.unit(1200, "lb"),
  7432. name: "Stretching",
  7433. image: {
  7434. source: "./media/characters/teal/stretching.svg",
  7435. extra: 1276 / 1244,
  7436. bottom: 0 / 1276
  7437. }
  7438. },
  7439. legged: {
  7440. height: math.unit(1.3, "meters"),
  7441. weight: math.unit(100, "lb"),
  7442. name: "Legged",
  7443. image: {
  7444. source: "./media/characters/teal/legged.svg",
  7445. extra: 462 / 437,
  7446. bottom: 24 / 486
  7447. }
  7448. },
  7449. naga: {
  7450. height: math.unit(5.4, "meters"),
  7451. weight: math.unit(4000, "lb"),
  7452. name: "Naga",
  7453. image: {
  7454. source: "./media/characters/teal/naga.svg",
  7455. extra: 1902 / 1858,
  7456. bottom: 0 / 1902
  7457. }
  7458. },
  7459. hand: {
  7460. height: math.unit(0.52, "meters"),
  7461. name: "Hand",
  7462. image: {
  7463. source: "./media/characters/teal/hand.svg"
  7464. }
  7465. },
  7466. maw: {
  7467. height: math.unit(0.43, "meters"),
  7468. name: "Maw",
  7469. image: {
  7470. source: "./media/characters/teal/maw.svg"
  7471. }
  7472. },
  7473. slit: {
  7474. height: math.unit(0.25, "meters"),
  7475. name: "Slit",
  7476. image: {
  7477. source: "./media/characters/teal/slit.svg"
  7478. }
  7479. },
  7480. },
  7481. [
  7482. {
  7483. name: "Normal",
  7484. height: math.unit(2.75, "meters"),
  7485. default: true
  7486. },
  7487. {
  7488. name: "Macro",
  7489. height: math.unit(300, "feet")
  7490. },
  7491. {
  7492. name: "Macro+",
  7493. height: math.unit(2000, "feet")
  7494. },
  7495. ]
  7496. ))
  7497. characterMakers.push(() => makeCharacter(
  7498. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7499. {
  7500. frontCat: {
  7501. height: math.unit(6, "feet"),
  7502. weight: math.unit(180, "lbs"),
  7503. name: "Front (Cat)",
  7504. image: {
  7505. source: "./media/characters/ravin-amulet/front-cat.svg"
  7506. }
  7507. },
  7508. frontCatAlt: {
  7509. height: math.unit(6, "feet"),
  7510. weight: math.unit(180, "lbs"),
  7511. name: "Front (Alt, Cat)",
  7512. image: {
  7513. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7514. }
  7515. },
  7516. frontWerewolf: {
  7517. height: math.unit(6 * 1.2, "feet"),
  7518. weight: math.unit(225, "lbs"),
  7519. name: "Front (Werewolf)",
  7520. image: {
  7521. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7522. }
  7523. },
  7524. backWerewolf: {
  7525. height: math.unit(6 * 1.2, "feet"),
  7526. weight: math.unit(225, "lbs"),
  7527. name: "Back (Werewolf)",
  7528. image: {
  7529. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7530. }
  7531. },
  7532. },
  7533. [
  7534. {
  7535. name: "Nano",
  7536. height: math.unit(1, "micrometer")
  7537. },
  7538. {
  7539. name: "Micro",
  7540. height: math.unit(1, "inch")
  7541. },
  7542. {
  7543. name: "Normal",
  7544. height: math.unit(6, "feet"),
  7545. default: true
  7546. },
  7547. {
  7548. name: "Macro",
  7549. height: math.unit(60, "feet")
  7550. }
  7551. ]
  7552. ))
  7553. characterMakers.push(() => makeCharacter(
  7554. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7555. {
  7556. front: {
  7557. height: math.unit(6, "feet"),
  7558. weight: math.unit(165, "lbs"),
  7559. name: "Front",
  7560. image: {
  7561. source: "./media/characters/fluoresce/front.svg"
  7562. }
  7563. }
  7564. },
  7565. [
  7566. {
  7567. name: "Micro",
  7568. height: math.unit(6, "cm")
  7569. },
  7570. {
  7571. name: "Normal",
  7572. height: math.unit(5 + 7 / 12, "feet"),
  7573. default: true
  7574. },
  7575. {
  7576. name: "Macro",
  7577. height: math.unit(56, "feet")
  7578. },
  7579. {
  7580. name: "Megamacro",
  7581. height: math.unit(1.9, "miles")
  7582. },
  7583. ]
  7584. ))
  7585. characterMakers.push(() => makeCharacter(
  7586. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7587. {
  7588. front: {
  7589. height: math.unit(9 + 6 / 12, "feet"),
  7590. weight: math.unit(523, "lbs"),
  7591. name: "Side",
  7592. image: {
  7593. source: "./media/characters/aurora/side.svg"
  7594. }
  7595. }
  7596. },
  7597. [
  7598. {
  7599. name: "Normal",
  7600. height: math.unit(9 + 6 / 12, "feet")
  7601. },
  7602. {
  7603. name: "Macro",
  7604. height: math.unit(96, "feet"),
  7605. default: true
  7606. },
  7607. {
  7608. name: "Macro+",
  7609. height: math.unit(243, "feet")
  7610. },
  7611. ]
  7612. ))
  7613. characterMakers.push(() => makeCharacter(
  7614. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7615. {
  7616. front: {
  7617. height: math.unit(194, "cm"),
  7618. weight: math.unit(90, "kg"),
  7619. name: "Front",
  7620. image: {
  7621. source: "./media/characters/ranek/front.svg"
  7622. }
  7623. },
  7624. side: {
  7625. height: math.unit(194, "cm"),
  7626. weight: math.unit(90, "kg"),
  7627. name: "Side",
  7628. image: {
  7629. source: "./media/characters/ranek/side.svg"
  7630. }
  7631. },
  7632. back: {
  7633. height: math.unit(194, "cm"),
  7634. weight: math.unit(90, "kg"),
  7635. name: "Back",
  7636. image: {
  7637. source: "./media/characters/ranek/back.svg"
  7638. }
  7639. },
  7640. feral: {
  7641. height: math.unit(30, "cm"),
  7642. weight: math.unit(1.6, "lbs"),
  7643. name: "Feral",
  7644. image: {
  7645. source: "./media/characters/ranek/feral.svg"
  7646. }
  7647. },
  7648. },
  7649. [
  7650. {
  7651. name: "Normal",
  7652. height: math.unit(194, "cm"),
  7653. default: true
  7654. },
  7655. {
  7656. name: "Macro",
  7657. height: math.unit(100, "meters")
  7658. },
  7659. ]
  7660. ))
  7661. characterMakers.push(() => makeCharacter(
  7662. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7663. {
  7664. front: {
  7665. height: math.unit(5 + 6 / 12, "feet"),
  7666. weight: math.unit(153, "lbs"),
  7667. name: "Front",
  7668. image: {
  7669. source: "./media/characters/andrew-cooper/front.svg"
  7670. }
  7671. },
  7672. },
  7673. [
  7674. {
  7675. name: "Nano",
  7676. height: math.unit(1, "mm")
  7677. },
  7678. {
  7679. name: "Micro",
  7680. height: math.unit(2, "inches")
  7681. },
  7682. {
  7683. name: "Normal",
  7684. height: math.unit(5 + 6 / 12, "feet"),
  7685. default: true
  7686. }
  7687. ]
  7688. ))
  7689. characterMakers.push(() => makeCharacter(
  7690. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7691. {
  7692. front: {
  7693. height: math.unit(6, "feet"),
  7694. weight: math.unit(180, "lbs"),
  7695. name: "Front",
  7696. image: {
  7697. source: "./media/characters/akane-sato/front.svg",
  7698. extra: 1219 / 1140
  7699. }
  7700. },
  7701. back: {
  7702. height: math.unit(6, "feet"),
  7703. weight: math.unit(180, "lbs"),
  7704. name: "Back",
  7705. image: {
  7706. source: "./media/characters/akane-sato/back.svg",
  7707. extra: 1219 / 1170
  7708. }
  7709. },
  7710. },
  7711. [
  7712. {
  7713. name: "Normal",
  7714. height: math.unit(2.5, "meters")
  7715. },
  7716. {
  7717. name: "Macro",
  7718. height: math.unit(250, "meters"),
  7719. default: true
  7720. },
  7721. {
  7722. name: "Megamacro",
  7723. height: math.unit(25, "km")
  7724. },
  7725. ]
  7726. ))
  7727. characterMakers.push(() => makeCharacter(
  7728. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7729. {
  7730. front: {
  7731. height: math.unit(6, "feet"),
  7732. weight: math.unit(65, "kg"),
  7733. name: "Front",
  7734. image: {
  7735. source: "./media/characters/rook/front.svg",
  7736. extra: 960 / 950
  7737. }
  7738. }
  7739. },
  7740. [
  7741. {
  7742. name: "Normal",
  7743. height: math.unit(8.8, "feet")
  7744. },
  7745. {
  7746. name: "Macro",
  7747. height: math.unit(88, "feet"),
  7748. default: true
  7749. },
  7750. {
  7751. name: "Megamacro",
  7752. height: math.unit(8, "miles")
  7753. },
  7754. ]
  7755. ))
  7756. characterMakers.push(() => makeCharacter(
  7757. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7758. {
  7759. front: {
  7760. height: math.unit(12 + 2 / 12, "feet"),
  7761. weight: math.unit(808, "lbs"),
  7762. name: "Front",
  7763. image: {
  7764. source: "./media/characters/prodigy/front.svg"
  7765. }
  7766. }
  7767. },
  7768. [
  7769. {
  7770. name: "Normal",
  7771. height: math.unit(12 + 2 / 12, "feet"),
  7772. default: true
  7773. },
  7774. {
  7775. name: "Macro",
  7776. height: math.unit(143, "feet")
  7777. },
  7778. {
  7779. name: "Macro+",
  7780. height: math.unit(400, "feet")
  7781. },
  7782. ]
  7783. ))
  7784. characterMakers.push(() => makeCharacter(
  7785. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7786. {
  7787. front: {
  7788. height: math.unit(6, "feet"),
  7789. weight: math.unit(225, "lbs"),
  7790. name: "Front",
  7791. image: {
  7792. source: "./media/characters/daniel/front.svg"
  7793. }
  7794. },
  7795. leaning: {
  7796. height: math.unit(6, "feet"),
  7797. weight: math.unit(225, "lbs"),
  7798. name: "Leaning",
  7799. image: {
  7800. source: "./media/characters/daniel/leaning.svg"
  7801. }
  7802. },
  7803. },
  7804. [
  7805. {
  7806. name: "Macro",
  7807. height: math.unit(1000, "feet"),
  7808. default: true
  7809. },
  7810. ]
  7811. ))
  7812. characterMakers.push(() => makeCharacter(
  7813. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7814. {
  7815. front: {
  7816. height: math.unit(6, "feet"),
  7817. weight: math.unit(88, "lbs"),
  7818. name: "Front",
  7819. image: {
  7820. source: "./media/characters/chiros/front.svg",
  7821. extra: 306 / 226
  7822. }
  7823. },
  7824. side: {
  7825. height: math.unit(6, "feet"),
  7826. weight: math.unit(88, "lbs"),
  7827. name: "Side",
  7828. image: {
  7829. source: "./media/characters/chiros/side.svg",
  7830. extra: 306 / 226
  7831. }
  7832. },
  7833. },
  7834. [
  7835. {
  7836. name: "Normal",
  7837. height: math.unit(6, "cm"),
  7838. default: true
  7839. },
  7840. ]
  7841. ))
  7842. characterMakers.push(() => makeCharacter(
  7843. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7844. {
  7845. front: {
  7846. height: math.unit(6, "feet"),
  7847. weight: math.unit(100, "lbs"),
  7848. name: "Front",
  7849. image: {
  7850. source: "./media/characters/selka/front.svg",
  7851. extra: 947 / 887
  7852. }
  7853. }
  7854. },
  7855. [
  7856. {
  7857. name: "Normal",
  7858. height: math.unit(5, "cm"),
  7859. default: true
  7860. },
  7861. ]
  7862. ))
  7863. characterMakers.push(() => makeCharacter(
  7864. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7865. {
  7866. front: {
  7867. height: math.unit(8 + 3 / 12, "feet"),
  7868. weight: math.unit(424, "lbs"),
  7869. name: "Front",
  7870. image: {
  7871. source: "./media/characters/verin/front.svg",
  7872. extra: 1845 / 1550
  7873. }
  7874. },
  7875. frontArmored: {
  7876. height: math.unit(8 + 3 / 12, "feet"),
  7877. weight: math.unit(424, "lbs"),
  7878. name: "Front (Armored)",
  7879. image: {
  7880. source: "./media/characters/verin/front-armor.svg",
  7881. extra: 1845 / 1550,
  7882. bottom: 0.01
  7883. }
  7884. },
  7885. back: {
  7886. height: math.unit(8 + 3 / 12, "feet"),
  7887. weight: math.unit(424, "lbs"),
  7888. name: "Back",
  7889. image: {
  7890. source: "./media/characters/verin/back.svg",
  7891. bottom: 0.1,
  7892. extra: 1
  7893. }
  7894. },
  7895. foot: {
  7896. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7897. name: "Foot",
  7898. image: {
  7899. source: "./media/characters/verin/foot.svg"
  7900. }
  7901. },
  7902. },
  7903. [
  7904. {
  7905. name: "Normal",
  7906. height: math.unit(8 + 3 / 12, "feet")
  7907. },
  7908. {
  7909. name: "Minimacro",
  7910. height: math.unit(21, "feet"),
  7911. default: true
  7912. },
  7913. {
  7914. name: "Macro",
  7915. height: math.unit(626, "feet")
  7916. },
  7917. ]
  7918. ))
  7919. characterMakers.push(() => makeCharacter(
  7920. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7921. {
  7922. front: {
  7923. height: math.unit(2.718, "meters"),
  7924. weight: math.unit(150, "lbs"),
  7925. name: "Front",
  7926. image: {
  7927. source: "./media/characters/sovrim-terraquian/front.svg"
  7928. }
  7929. },
  7930. back: {
  7931. height: math.unit(2.718, "meters"),
  7932. weight: math.unit(150, "lbs"),
  7933. name: "Back",
  7934. image: {
  7935. source: "./media/characters/sovrim-terraquian/back.svg"
  7936. }
  7937. }
  7938. },
  7939. [
  7940. {
  7941. name: "Micro",
  7942. height: math.unit(2, "inches")
  7943. },
  7944. {
  7945. name: "Small",
  7946. height: math.unit(1, "meter")
  7947. },
  7948. {
  7949. name: "Normal",
  7950. height: math.unit(Math.E, "meters"),
  7951. default: true
  7952. },
  7953. {
  7954. name: "Macro",
  7955. height: math.unit(20, "meters")
  7956. },
  7957. {
  7958. name: "Macro+",
  7959. height: math.unit(400, "meters")
  7960. },
  7961. ]
  7962. ))
  7963. characterMakers.push(() => makeCharacter(
  7964. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7965. {
  7966. front: {
  7967. height: math.unit(7, "feet"),
  7968. weight: math.unit(489, "lbs"),
  7969. name: "Front",
  7970. image: {
  7971. source: "./media/characters/reece-silvermane/front.svg",
  7972. bottom: 0.02,
  7973. extra: 1
  7974. }
  7975. },
  7976. },
  7977. [
  7978. {
  7979. name: "Macro",
  7980. height: math.unit(1.5, "miles"),
  7981. default: true
  7982. },
  7983. ]
  7984. ))
  7985. characterMakers.push(() => makeCharacter(
  7986. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7987. {
  7988. front: {
  7989. height: math.unit(6, "feet"),
  7990. weight: math.unit(78, "kg"),
  7991. name: "Front",
  7992. image: {
  7993. source: "./media/characters/kane/front.svg",
  7994. extra: 978 / 899
  7995. }
  7996. },
  7997. },
  7998. [
  7999. {
  8000. name: "Normal",
  8001. height: math.unit(2.1, "m"),
  8002. },
  8003. {
  8004. name: "Macro",
  8005. height: math.unit(1, "km"),
  8006. default: true
  8007. },
  8008. ]
  8009. ))
  8010. characterMakers.push(() => makeCharacter(
  8011. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8012. {
  8013. front: {
  8014. height: math.unit(6, "feet"),
  8015. weight: math.unit(200, "kg"),
  8016. name: "Front",
  8017. image: {
  8018. source: "./media/characters/tegon/front.svg",
  8019. bottom: 0.01,
  8020. extra: 1
  8021. }
  8022. },
  8023. },
  8024. [
  8025. {
  8026. name: "Micro",
  8027. height: math.unit(1, "inch")
  8028. },
  8029. {
  8030. name: "Normal",
  8031. height: math.unit(6 + 3 / 12, "feet"),
  8032. default: true
  8033. },
  8034. {
  8035. name: "Macro",
  8036. height: math.unit(300, "feet")
  8037. },
  8038. {
  8039. name: "Megamacro",
  8040. height: math.unit(69, "miles")
  8041. },
  8042. ]
  8043. ))
  8044. characterMakers.push(() => makeCharacter(
  8045. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8046. {
  8047. side: {
  8048. height: math.unit(6, "feet"),
  8049. weight: math.unit(2304, "lbs"),
  8050. name: "Side",
  8051. image: {
  8052. source: "./media/characters/arcturax/side.svg",
  8053. extra: 790 / 376,
  8054. bottom: 0.01
  8055. }
  8056. },
  8057. },
  8058. [
  8059. {
  8060. name: "Micro",
  8061. height: math.unit(2, "inch")
  8062. },
  8063. {
  8064. name: "Normal",
  8065. height: math.unit(6, "feet")
  8066. },
  8067. {
  8068. name: "Macro",
  8069. height: math.unit(39, "feet"),
  8070. default: true
  8071. },
  8072. {
  8073. name: "Megamacro",
  8074. height: math.unit(7, "miles")
  8075. },
  8076. ]
  8077. ))
  8078. characterMakers.push(() => makeCharacter(
  8079. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8080. {
  8081. front: {
  8082. height: math.unit(6, "feet"),
  8083. weight: math.unit(50, "lbs"),
  8084. name: "Front",
  8085. image: {
  8086. source: "./media/characters/sentri/front.svg",
  8087. extra: 1750 / 1570,
  8088. bottom: 0.025
  8089. }
  8090. },
  8091. frontAlt: {
  8092. height: math.unit(6, "feet"),
  8093. weight: math.unit(50, "lbs"),
  8094. name: "Front (Alt)",
  8095. image: {
  8096. source: "./media/characters/sentri/front-alt.svg",
  8097. extra: 1750 / 1570,
  8098. bottom: 0.025
  8099. }
  8100. },
  8101. },
  8102. [
  8103. {
  8104. name: "Normal",
  8105. height: math.unit(15, "feet"),
  8106. default: true
  8107. },
  8108. {
  8109. name: "Macro",
  8110. height: math.unit(2500, "feet")
  8111. }
  8112. ]
  8113. ))
  8114. characterMakers.push(() => makeCharacter(
  8115. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8116. {
  8117. front: {
  8118. height: math.unit(5 + 8 / 12, "feet"),
  8119. weight: math.unit(130, "lbs"),
  8120. name: "Front",
  8121. image: {
  8122. source: "./media/characters/corvin/front.svg",
  8123. extra: 1803 / 1629
  8124. }
  8125. },
  8126. frontShirt: {
  8127. height: math.unit(5 + 8 / 12, "feet"),
  8128. weight: math.unit(130, "lbs"),
  8129. name: "Front (Shirt)",
  8130. image: {
  8131. source: "./media/characters/corvin/front-shirt.svg",
  8132. extra: 1803 / 1629
  8133. }
  8134. },
  8135. frontPoncho: {
  8136. height: math.unit(5 + 8 / 12, "feet"),
  8137. weight: math.unit(130, "lbs"),
  8138. name: "Front (Poncho)",
  8139. image: {
  8140. source: "./media/characters/corvin/front-poncho.svg",
  8141. extra: 1803 / 1629
  8142. }
  8143. },
  8144. side: {
  8145. height: math.unit(5 + 8 / 12, "feet"),
  8146. weight: math.unit(130, "lbs"),
  8147. name: "Side",
  8148. image: {
  8149. source: "./media/characters/corvin/side.svg",
  8150. extra: 1012 / 945
  8151. }
  8152. },
  8153. back: {
  8154. height: math.unit(5 + 8 / 12, "feet"),
  8155. weight: math.unit(130, "lbs"),
  8156. name: "Back",
  8157. image: {
  8158. source: "./media/characters/corvin/back.svg",
  8159. extra: 1803 / 1629
  8160. }
  8161. },
  8162. },
  8163. [
  8164. {
  8165. name: "Micro",
  8166. height: math.unit(3, "inches")
  8167. },
  8168. {
  8169. name: "Normal",
  8170. height: math.unit(5 + 8 / 12, "feet")
  8171. },
  8172. {
  8173. name: "Macro",
  8174. height: math.unit(300, "feet"),
  8175. default: true
  8176. },
  8177. {
  8178. name: "Megamacro",
  8179. height: math.unit(500, "miles")
  8180. }
  8181. ]
  8182. ))
  8183. characterMakers.push(() => makeCharacter(
  8184. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8185. {
  8186. front: {
  8187. height: math.unit(6, "feet"),
  8188. weight: math.unit(135, "lbs"),
  8189. name: "Front",
  8190. image: {
  8191. source: "./media/characters/q/front.svg",
  8192. extra: 854 / 752,
  8193. bottom: 0.005
  8194. }
  8195. },
  8196. back: {
  8197. height: math.unit(6, "feet"),
  8198. weight: math.unit(130, "lbs"),
  8199. name: "Back",
  8200. image: {
  8201. source: "./media/characters/q/back.svg",
  8202. extra: 854 / 752
  8203. }
  8204. },
  8205. },
  8206. [
  8207. {
  8208. name: "Macro",
  8209. height: math.unit(90, "feet"),
  8210. default: true
  8211. },
  8212. {
  8213. name: "Extra Macro",
  8214. height: math.unit(300, "feet"),
  8215. },
  8216. {
  8217. name: "BIG WALF",
  8218. height: math.unit(750, "feet"),
  8219. },
  8220. ]
  8221. ))
  8222. characterMakers.push(() => makeCharacter(
  8223. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8224. {
  8225. front: {
  8226. height: math.unit(6, "feet"),
  8227. weight: math.unit(150, "lbs"),
  8228. name: "Front",
  8229. image: {
  8230. source: "./media/characters/carley/front.svg",
  8231. extra: 3927 / 3540,
  8232. bottom: 29.2 / 735
  8233. }
  8234. }
  8235. },
  8236. [
  8237. {
  8238. name: "Normal",
  8239. height: math.unit(6 + 3 / 12, "feet")
  8240. },
  8241. {
  8242. name: "Macro",
  8243. height: math.unit(185, "feet"),
  8244. default: true
  8245. },
  8246. {
  8247. name: "Megamacro",
  8248. height: math.unit(8, "miles"),
  8249. },
  8250. ]
  8251. ))
  8252. characterMakers.push(() => makeCharacter(
  8253. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8254. {
  8255. front: {
  8256. height: math.unit(3, "feet"),
  8257. weight: math.unit(28, "lbs"),
  8258. name: "Front",
  8259. image: {
  8260. source: "./media/characters/citrine/front.svg"
  8261. }
  8262. }
  8263. },
  8264. [
  8265. {
  8266. name: "Normal",
  8267. height: math.unit(3, "feet"),
  8268. default: true
  8269. }
  8270. ]
  8271. ))
  8272. characterMakers.push(() => makeCharacter(
  8273. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8274. {
  8275. front: {
  8276. height: math.unit(14, "feet"),
  8277. weight: math.unit(1450, "kg"),
  8278. capacity: math.unit(15, "people"),
  8279. name: "Front",
  8280. image: {
  8281. source: "./media/characters/aura-starwind/front.svg",
  8282. extra: 1440/1327,
  8283. bottom: 11/1451
  8284. }
  8285. },
  8286. side: {
  8287. height: math.unit(14, "feet"),
  8288. weight: math.unit(1450, "kg"),
  8289. capacity: math.unit(15, "people"),
  8290. name: "Side",
  8291. image: {
  8292. source: "./media/characters/aura-starwind/side.svg",
  8293. extra: 1654 / 1497
  8294. }
  8295. },
  8296. taur: {
  8297. height: math.unit(18, "feet"),
  8298. weight: math.unit(5500, "kg"),
  8299. capacity: math.unit(50, "people"),
  8300. name: "Taur",
  8301. image: {
  8302. source: "./media/characters/aura-starwind/taur.svg",
  8303. extra: 1760 / 1650
  8304. }
  8305. },
  8306. feral: {
  8307. height: math.unit(46, "feet"),
  8308. weight: math.unit(25000, "kg"),
  8309. capacity: math.unit(120, "people"),
  8310. name: "Feral",
  8311. image: {
  8312. source: "./media/characters/aura-starwind/feral.svg"
  8313. }
  8314. },
  8315. },
  8316. [
  8317. {
  8318. name: "Normal",
  8319. height: math.unit(14, "feet"),
  8320. default: true
  8321. },
  8322. {
  8323. name: "Macro",
  8324. height: math.unit(50, "meters")
  8325. },
  8326. {
  8327. name: "Megamacro",
  8328. height: math.unit(5000, "meters")
  8329. },
  8330. {
  8331. name: "Gigamacro",
  8332. height: math.unit(100000, "kilometers")
  8333. },
  8334. ]
  8335. ))
  8336. characterMakers.push(() => makeCharacter(
  8337. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8338. {
  8339. front: {
  8340. height: math.unit(2 + 7 / 12, "feet"),
  8341. weight: math.unit(32, "lbs"),
  8342. name: "Front",
  8343. image: {
  8344. source: "./media/characters/rivet/front.svg",
  8345. extra: 1716 / 1658,
  8346. bottom: 0.03
  8347. }
  8348. },
  8349. foot: {
  8350. height: math.unit(0.551, "feet"),
  8351. name: "Rivet's Foot",
  8352. image: {
  8353. source: "./media/characters/rivet/foot.svg"
  8354. },
  8355. rename: true
  8356. }
  8357. },
  8358. [
  8359. {
  8360. name: "Micro",
  8361. height: math.unit(1.5, "inches"),
  8362. },
  8363. {
  8364. name: "Normal",
  8365. height: math.unit(2 + 7 / 12, "feet"),
  8366. default: true
  8367. },
  8368. {
  8369. name: "Macro",
  8370. height: math.unit(85, "feet")
  8371. },
  8372. {
  8373. name: "Megamacro",
  8374. height: math.unit(2.2, "km")
  8375. }
  8376. ]
  8377. ))
  8378. characterMakers.push(() => makeCharacter(
  8379. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8380. {
  8381. front: {
  8382. height: math.unit(5 + 9 / 12, "feet"),
  8383. weight: math.unit(150, "lbs"),
  8384. name: "Front",
  8385. image: {
  8386. source: "./media/characters/coffee/front.svg",
  8387. extra: 3666 / 3032,
  8388. bottom: 0.04
  8389. }
  8390. },
  8391. foot: {
  8392. height: math.unit(1.29, "feet"),
  8393. name: "Foot",
  8394. image: {
  8395. source: "./media/characters/coffee/foot.svg"
  8396. }
  8397. },
  8398. },
  8399. [
  8400. {
  8401. name: "Micro",
  8402. height: math.unit(2, "inches"),
  8403. },
  8404. {
  8405. name: "Normal",
  8406. height: math.unit(5 + 9 / 12, "feet"),
  8407. default: true
  8408. },
  8409. {
  8410. name: "Macro",
  8411. height: math.unit(800, "feet")
  8412. },
  8413. {
  8414. name: "Megamacro",
  8415. height: math.unit(25, "miles")
  8416. }
  8417. ]
  8418. ))
  8419. characterMakers.push(() => makeCharacter(
  8420. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8421. {
  8422. front: {
  8423. height: math.unit(6, "feet"),
  8424. weight: math.unit(200, "lbs"),
  8425. name: "Front",
  8426. image: {
  8427. source: "./media/characters/chari-gal/front.svg",
  8428. extra: 1568 / 1385,
  8429. bottom: 0.047
  8430. }
  8431. },
  8432. gigantamax: {
  8433. height: math.unit(6 * 16, "feet"),
  8434. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8435. name: "Gigantamax",
  8436. image: {
  8437. source: "./media/characters/chari-gal/gigantamax.svg",
  8438. extra: 1124 / 888,
  8439. bottom: 0.03
  8440. }
  8441. },
  8442. },
  8443. [
  8444. {
  8445. name: "Normal",
  8446. height: math.unit(5 + 7 / 12, "feet")
  8447. },
  8448. {
  8449. name: "Macro",
  8450. height: math.unit(200, "feet"),
  8451. default: true
  8452. }
  8453. ]
  8454. ))
  8455. characterMakers.push(() => makeCharacter(
  8456. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8457. {
  8458. front: {
  8459. height: math.unit(6, "feet"),
  8460. weight: math.unit(150, "lbs"),
  8461. name: "Front",
  8462. image: {
  8463. source: "./media/characters/nova/front.svg",
  8464. extra: 5000 / 4722,
  8465. bottom: 0.02
  8466. }
  8467. }
  8468. },
  8469. [
  8470. {
  8471. name: "Micro-",
  8472. height: math.unit(0.8, "inches")
  8473. },
  8474. {
  8475. name: "Micro",
  8476. height: math.unit(2, "inches"),
  8477. default: true
  8478. },
  8479. ]
  8480. ))
  8481. characterMakers.push(() => makeCharacter(
  8482. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8483. {
  8484. front: {
  8485. height: math.unit(3 + 1 / 12, "feet"),
  8486. weight: math.unit(21.7, "lbs"),
  8487. name: "Front",
  8488. image: {
  8489. source: "./media/characters/argent/front.svg",
  8490. extra: 1471 / 1331,
  8491. bottom: 100.8 / 1575.5
  8492. }
  8493. }
  8494. },
  8495. [
  8496. {
  8497. name: "Micro",
  8498. height: math.unit(2, "inches")
  8499. },
  8500. {
  8501. name: "Normal",
  8502. height: math.unit(3 + 1 / 12, "feet"),
  8503. default: true
  8504. },
  8505. {
  8506. name: "Macro",
  8507. height: math.unit(120, "feet")
  8508. },
  8509. ]
  8510. ))
  8511. characterMakers.push(() => makeCharacter(
  8512. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8513. {
  8514. lamp: {
  8515. height: math.unit(7 * 1559 / 989, "feet"),
  8516. name: "Magic Lamp",
  8517. image: {
  8518. source: "./media/characters/mira-al-cul/lamp.svg",
  8519. extra: 1617 / 1559
  8520. }
  8521. },
  8522. front: {
  8523. height: math.unit(7, "feet"),
  8524. name: "Front",
  8525. image: {
  8526. source: "./media/characters/mira-al-cul/front.svg",
  8527. extra: 1044 / 990
  8528. }
  8529. },
  8530. },
  8531. [
  8532. {
  8533. name: "Heavily Restricted",
  8534. height: math.unit(7 * 1559 / 989, "feet")
  8535. },
  8536. {
  8537. name: "Freshly Freed",
  8538. height: math.unit(50 * 1559 / 989, "feet")
  8539. },
  8540. {
  8541. name: "World Encompassing",
  8542. height: math.unit(10000 * 1559 / 989, "miles")
  8543. },
  8544. {
  8545. name: "Galactic",
  8546. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8547. },
  8548. {
  8549. name: "Palmed Universe",
  8550. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8551. default: true
  8552. },
  8553. {
  8554. name: "Multiversal Matriarch",
  8555. height: math.unit(8.87e10, "yottameters")
  8556. },
  8557. {
  8558. name: "Void Mother",
  8559. height: math.unit(3.14e110, "yottaparsecs")
  8560. },
  8561. {
  8562. name: "Toying with Transcendence",
  8563. height: math.unit(1e307, "meters")
  8564. },
  8565. ]
  8566. ))
  8567. characterMakers.push(() => makeCharacter(
  8568. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8569. {
  8570. front: {
  8571. height: math.unit(17 + 1 / 12, "feet"),
  8572. weight: math.unit(476.2 * 5, "lbs"),
  8573. name: "Front",
  8574. image: {
  8575. source: "./media/characters/kuro-shi-uchū/front.svg",
  8576. extra: 2329 / 1835,
  8577. bottom: 0.02
  8578. }
  8579. },
  8580. },
  8581. [
  8582. {
  8583. name: "Micro",
  8584. height: math.unit(2, "inches")
  8585. },
  8586. {
  8587. name: "Normal",
  8588. height: math.unit(12, "meters")
  8589. },
  8590. {
  8591. name: "Planetary",
  8592. height: math.unit(0.00929, "AU"),
  8593. default: true
  8594. },
  8595. {
  8596. name: "Universal",
  8597. height: math.unit(20, "gigaparsecs")
  8598. },
  8599. ]
  8600. ))
  8601. characterMakers.push(() => makeCharacter(
  8602. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8603. {
  8604. front: {
  8605. height: math.unit(5 + 2 / 12, "feet"),
  8606. weight: math.unit(120, "lbs"),
  8607. name: "Front",
  8608. image: {
  8609. source: "./media/characters/katherine/front.svg",
  8610. extra: 2075 / 1969
  8611. }
  8612. },
  8613. dress: {
  8614. height: math.unit(5 + 2 / 12, "feet"),
  8615. weight: math.unit(120, "lbs"),
  8616. name: "Dress",
  8617. image: {
  8618. source: "./media/characters/katherine/dress.svg",
  8619. extra: 2258 / 2064
  8620. }
  8621. },
  8622. },
  8623. [
  8624. {
  8625. name: "Micro",
  8626. height: math.unit(1, "inches"),
  8627. default: true
  8628. },
  8629. {
  8630. name: "Normal",
  8631. height: math.unit(5 + 2 / 12, "feet")
  8632. },
  8633. {
  8634. name: "Macro",
  8635. height: math.unit(100, "meters")
  8636. },
  8637. {
  8638. name: "Megamacro",
  8639. height: math.unit(80, "miles")
  8640. },
  8641. ]
  8642. ))
  8643. characterMakers.push(() => makeCharacter(
  8644. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8645. {
  8646. front: {
  8647. height: math.unit(7 + 8 / 12, "feet"),
  8648. weight: math.unit(250, "lbs"),
  8649. name: "Front",
  8650. image: {
  8651. source: "./media/characters/yevis/front.svg",
  8652. extra: 1938 / 1755
  8653. }
  8654. }
  8655. },
  8656. [
  8657. {
  8658. name: "Mortal",
  8659. height: math.unit(7 + 8 / 12, "feet")
  8660. },
  8661. {
  8662. name: "Battle",
  8663. height: math.unit(25 + 11 / 12, "feet")
  8664. },
  8665. {
  8666. name: "Wrath",
  8667. height: math.unit(1654 + 11 / 12, "feet")
  8668. },
  8669. {
  8670. name: "Planet Destroyer",
  8671. height: math.unit(12000, "miles")
  8672. },
  8673. {
  8674. name: "Galaxy Conqueror",
  8675. height: math.unit(1.45, "zettameters"),
  8676. default: true
  8677. },
  8678. {
  8679. name: "Universal War",
  8680. height: math.unit(184, "gigaparsecs")
  8681. },
  8682. {
  8683. name: "Eternity War",
  8684. height: math.unit(1.98e55, "yottaparsecs")
  8685. },
  8686. ]
  8687. ))
  8688. characterMakers.push(() => makeCharacter(
  8689. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8690. {
  8691. front: {
  8692. height: math.unit(5 + 8 / 12, "feet"),
  8693. weight: math.unit(63, "kg"),
  8694. name: "Front",
  8695. image: {
  8696. source: "./media/characters/xavier/front.svg",
  8697. extra: 944 / 883
  8698. }
  8699. },
  8700. frontStretch: {
  8701. height: math.unit(5 + 8 / 12, "feet"),
  8702. weight: math.unit(63, "kg"),
  8703. name: "Stretching",
  8704. image: {
  8705. source: "./media/characters/xavier/front-stretch.svg",
  8706. extra: 962 / 820
  8707. }
  8708. },
  8709. },
  8710. [
  8711. {
  8712. name: "Normal",
  8713. height: math.unit(5 + 8 / 12, "feet")
  8714. },
  8715. {
  8716. name: "Macro",
  8717. height: math.unit(100, "meters"),
  8718. default: true
  8719. },
  8720. {
  8721. name: "McLargeHuge",
  8722. height: math.unit(10, "miles")
  8723. },
  8724. ]
  8725. ))
  8726. characterMakers.push(() => makeCharacter(
  8727. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8728. {
  8729. front: {
  8730. height: math.unit(5 + 5 / 12, "feet"),
  8731. weight: math.unit(150, "lb"),
  8732. name: "Front",
  8733. image: {
  8734. source: "./media/characters/joshii/front.svg",
  8735. extra: 765 / 653,
  8736. bottom: 51 / 816
  8737. }
  8738. },
  8739. foot: {
  8740. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8741. name: "Foot",
  8742. image: {
  8743. source: "./media/characters/joshii/foot.svg"
  8744. }
  8745. },
  8746. },
  8747. [
  8748. {
  8749. name: "Micro",
  8750. height: math.unit(2, "inches"),
  8751. default: true
  8752. },
  8753. {
  8754. name: "Normal",
  8755. height: math.unit(5 + 5 / 12, "feet")
  8756. },
  8757. {
  8758. name: "Macro",
  8759. height: math.unit(785, "feet")
  8760. },
  8761. {
  8762. name: "Megamacro",
  8763. height: math.unit(24.5, "miles")
  8764. },
  8765. ]
  8766. ))
  8767. characterMakers.push(() => makeCharacter(
  8768. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8769. {
  8770. front: {
  8771. height: math.unit(6, "feet"),
  8772. weight: math.unit(150, "lb"),
  8773. name: "Front",
  8774. image: {
  8775. source: "./media/characters/goddess-elizabeth/front.svg",
  8776. extra: 1800 / 1525,
  8777. bottom: 0.005
  8778. }
  8779. },
  8780. foot: {
  8781. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8782. name: "Foot",
  8783. image: {
  8784. source: "./media/characters/goddess-elizabeth/foot.svg"
  8785. }
  8786. },
  8787. mouth: {
  8788. height: math.unit(6, "feet"),
  8789. name: "Mouth",
  8790. image: {
  8791. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8792. }
  8793. },
  8794. },
  8795. [
  8796. {
  8797. name: "Micro",
  8798. height: math.unit(12, "feet")
  8799. },
  8800. {
  8801. name: "Normal",
  8802. height: math.unit(80, "miles"),
  8803. default: true
  8804. },
  8805. {
  8806. name: "Macro",
  8807. height: math.unit(15000, "parsecs")
  8808. },
  8809. ]
  8810. ))
  8811. characterMakers.push(() => makeCharacter(
  8812. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8813. {
  8814. front: {
  8815. height: math.unit(5 + 9 / 12, "feet"),
  8816. weight: math.unit(144, "lb"),
  8817. name: "Front",
  8818. image: {
  8819. source: "./media/characters/kara/front.svg"
  8820. }
  8821. },
  8822. feet: {
  8823. height: math.unit(6 / 6.765, "feet"),
  8824. name: "Kara's Feet",
  8825. rename: true,
  8826. image: {
  8827. source: "./media/characters/kara/feet.svg"
  8828. }
  8829. },
  8830. },
  8831. [
  8832. {
  8833. name: "Normal",
  8834. height: math.unit(5 + 9 / 12, "feet")
  8835. },
  8836. {
  8837. name: "Macro",
  8838. height: math.unit(174, "feet"),
  8839. default: true
  8840. },
  8841. ]
  8842. ))
  8843. characterMakers.push(() => makeCharacter(
  8844. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8845. {
  8846. front: {
  8847. height: math.unit(18, "feet"),
  8848. weight: math.unit(4050, "lb"),
  8849. name: "Front",
  8850. image: {
  8851. source: "./media/characters/tyrone/front.svg",
  8852. extra: 2405 / 2270,
  8853. bottom: 182 / 2587
  8854. }
  8855. },
  8856. },
  8857. [
  8858. {
  8859. name: "Normal",
  8860. height: math.unit(18, "feet"),
  8861. default: true
  8862. },
  8863. {
  8864. name: "Macro",
  8865. height: math.unit(300, "feet")
  8866. },
  8867. {
  8868. name: "Megamacro",
  8869. height: math.unit(15, "km")
  8870. },
  8871. {
  8872. name: "Gigamacro",
  8873. height: math.unit(500, "km")
  8874. },
  8875. {
  8876. name: "Teramacro",
  8877. height: math.unit(0.5, "gigameters")
  8878. },
  8879. {
  8880. name: "Omnimacro",
  8881. height: math.unit(1e252, "yottauniverse")
  8882. },
  8883. ]
  8884. ))
  8885. characterMakers.push(() => makeCharacter(
  8886. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8887. {
  8888. front: {
  8889. height: math.unit(7 + 8 / 12, "feet"),
  8890. weight: math.unit(120, "lb"),
  8891. name: "Front",
  8892. image: {
  8893. source: "./media/characters/danny/front.svg",
  8894. extra: 1490 / 1350
  8895. }
  8896. },
  8897. back: {
  8898. height: math.unit(7 + 8 / 12, "feet"),
  8899. weight: math.unit(120, "lb"),
  8900. name: "Back",
  8901. image: {
  8902. source: "./media/characters/danny/back.svg",
  8903. extra: 1490 / 1350
  8904. }
  8905. },
  8906. },
  8907. [
  8908. {
  8909. name: "Normal",
  8910. height: math.unit(7 + 8 / 12, "feet"),
  8911. default: true
  8912. },
  8913. ]
  8914. ))
  8915. characterMakers.push(() => makeCharacter(
  8916. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8917. {
  8918. front: {
  8919. height: math.unit(3.5, "inches"),
  8920. weight: math.unit(19, "grams"),
  8921. name: "Front",
  8922. image: {
  8923. source: "./media/characters/mallow/front.svg",
  8924. extra: 471 / 431
  8925. }
  8926. },
  8927. back: {
  8928. height: math.unit(3.5, "inches"),
  8929. weight: math.unit(19, "grams"),
  8930. name: "Back",
  8931. image: {
  8932. source: "./media/characters/mallow/back.svg",
  8933. extra: 471 / 431
  8934. }
  8935. },
  8936. },
  8937. [
  8938. {
  8939. name: "Normal",
  8940. height: math.unit(3.5, "inches"),
  8941. default: true
  8942. },
  8943. ]
  8944. ))
  8945. characterMakers.push(() => makeCharacter(
  8946. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8947. {
  8948. front: {
  8949. height: math.unit(9, "feet"),
  8950. weight: math.unit(230, "kg"),
  8951. name: "Front",
  8952. image: {
  8953. source: "./media/characters/starry-aqua/front.svg"
  8954. }
  8955. },
  8956. back: {
  8957. height: math.unit(9, "feet"),
  8958. weight: math.unit(230, "kg"),
  8959. name: "Back",
  8960. image: {
  8961. source: "./media/characters/starry-aqua/back.svg"
  8962. }
  8963. },
  8964. hand: {
  8965. height: math.unit(9 * 0.1168, "feet"),
  8966. name: "Hand",
  8967. image: {
  8968. source: "./media/characters/starry-aqua/hand.svg"
  8969. }
  8970. },
  8971. foot: {
  8972. height: math.unit(9 * 0.18, "feet"),
  8973. name: "Foot",
  8974. image: {
  8975. source: "./media/characters/starry-aqua/foot.svg"
  8976. }
  8977. }
  8978. },
  8979. [
  8980. {
  8981. name: "Micro",
  8982. height: math.unit(3, "inches")
  8983. },
  8984. {
  8985. name: "Normal",
  8986. height: math.unit(9, "feet")
  8987. },
  8988. {
  8989. name: "Macro",
  8990. height: math.unit(300, "feet"),
  8991. default: true
  8992. },
  8993. {
  8994. name: "Megamacro",
  8995. height: math.unit(3200, "feet")
  8996. }
  8997. ]
  8998. ))
  8999. characterMakers.push(() => makeCharacter(
  9000. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9001. {
  9002. front: {
  9003. height: math.unit(15, "feet"),
  9004. weight: math.unit(5026, "lb"),
  9005. name: "Front",
  9006. image: {
  9007. source: "./media/characters/luka-towers/front.svg",
  9008. extra: 1269/1133,
  9009. bottom: 51/1320
  9010. }
  9011. },
  9012. },
  9013. [
  9014. {
  9015. name: "Normal",
  9016. height: math.unit(15, "feet"),
  9017. default: true
  9018. },
  9019. {
  9020. name: "Minimacro",
  9021. height: math.unit(25, "feet")
  9022. },
  9023. {
  9024. name: "Macro",
  9025. height: math.unit(320, "feet")
  9026. },
  9027. {
  9028. name: "Megamacro",
  9029. height: math.unit(35000, "feet")
  9030. },
  9031. {
  9032. name: "Gigamacro",
  9033. height: math.unit(4000, "miles")
  9034. },
  9035. {
  9036. name: "Teramacro",
  9037. height: math.unit(15000, "miles")
  9038. },
  9039. ]
  9040. ))
  9041. characterMakers.push(() => makeCharacter(
  9042. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9043. {
  9044. front: {
  9045. height: math.unit(6, "feet"),
  9046. weight: math.unit(150, "lb"),
  9047. name: "Front",
  9048. image: {
  9049. source: "./media/characters/natalie-nightring/front.svg",
  9050. extra: 1,
  9051. bottom: 0.06
  9052. }
  9053. },
  9054. },
  9055. [
  9056. {
  9057. name: "Uh Oh",
  9058. height: math.unit(0.1, "mm")
  9059. },
  9060. {
  9061. name: "Small",
  9062. height: math.unit(3, "inches")
  9063. },
  9064. {
  9065. name: "Human Scale",
  9066. height: math.unit(6, "feet")
  9067. },
  9068. {
  9069. name: "Librarian",
  9070. height: math.unit(50, "feet"),
  9071. default: true
  9072. },
  9073. {
  9074. name: "Immense",
  9075. height: math.unit(200, "miles")
  9076. },
  9077. ]
  9078. ))
  9079. characterMakers.push(() => makeCharacter(
  9080. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9081. {
  9082. front: {
  9083. height: math.unit(6, "feet"),
  9084. weight: math.unit(180, "lbs"),
  9085. name: "Front",
  9086. image: {
  9087. source: "./media/characters/danni-rosie/front.svg",
  9088. extra: 1260 / 1128,
  9089. bottom: 0.022
  9090. }
  9091. },
  9092. },
  9093. [
  9094. {
  9095. name: "Micro",
  9096. height: math.unit(2, "inches"),
  9097. default: true
  9098. },
  9099. ]
  9100. ))
  9101. characterMakers.push(() => makeCharacter(
  9102. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9103. {
  9104. front: {
  9105. height: math.unit(5 + 9 / 12, "feet"),
  9106. weight: math.unit(220, "lb"),
  9107. name: "Front",
  9108. image: {
  9109. source: "./media/characters/samantha-kruse/front.svg",
  9110. extra: (985 / 935),
  9111. bottom: 0.03
  9112. }
  9113. },
  9114. frontUndressed: {
  9115. height: math.unit(5 + 9 / 12, "feet"),
  9116. weight: math.unit(220, "lb"),
  9117. name: "Front (Undressed)",
  9118. image: {
  9119. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9120. extra: (973 / 923),
  9121. bottom: 0.025
  9122. }
  9123. },
  9124. fat: {
  9125. height: math.unit(5 + 9 / 12, "feet"),
  9126. weight: math.unit(900, "lb"),
  9127. name: "Front (Fat)",
  9128. image: {
  9129. source: "./media/characters/samantha-kruse/fat.svg",
  9130. extra: 2688 / 2561
  9131. }
  9132. },
  9133. },
  9134. [
  9135. {
  9136. name: "Normal",
  9137. height: math.unit(5 + 9 / 12, "feet"),
  9138. default: true
  9139. }
  9140. ]
  9141. ))
  9142. characterMakers.push(() => makeCharacter(
  9143. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9144. {
  9145. back: {
  9146. height: math.unit(5 + 4 / 12, "feet"),
  9147. weight: math.unit(4963, "lb"),
  9148. name: "Back",
  9149. image: {
  9150. source: "./media/characters/amelia-rosie/back.svg",
  9151. extra: 1113 / 963,
  9152. bottom: 0.01
  9153. }
  9154. },
  9155. },
  9156. [
  9157. {
  9158. name: "Level 0",
  9159. height: math.unit(5 + 4 / 12, "feet")
  9160. },
  9161. {
  9162. name: "Level 1",
  9163. height: math.unit(164597, "feet"),
  9164. default: true
  9165. },
  9166. {
  9167. name: "Level 2",
  9168. height: math.unit(956243, "miles")
  9169. },
  9170. {
  9171. name: "Level 3",
  9172. height: math.unit(29421709423, "miles")
  9173. },
  9174. {
  9175. name: "Level 4",
  9176. height: math.unit(154, "lightyears")
  9177. },
  9178. {
  9179. name: "Level 5",
  9180. height: math.unit(4738272, "lightyears")
  9181. },
  9182. {
  9183. name: "Level 6",
  9184. height: math.unit(145787152896, "lightyears")
  9185. },
  9186. ]
  9187. ))
  9188. characterMakers.push(() => makeCharacter(
  9189. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9190. {
  9191. front: {
  9192. height: math.unit(5 + 11 / 12, "feet"),
  9193. weight: math.unit(65, "kg"),
  9194. name: "Front",
  9195. image: {
  9196. source: "./media/characters/rook-kitara/front.svg",
  9197. extra: 1347 / 1274,
  9198. bottom: 0.005
  9199. }
  9200. },
  9201. },
  9202. [
  9203. {
  9204. name: "Totally Unfair",
  9205. height: math.unit(1.8, "mm")
  9206. },
  9207. {
  9208. name: "Lap Rookie",
  9209. height: math.unit(1.4, "feet")
  9210. },
  9211. {
  9212. name: "Normal",
  9213. height: math.unit(5 + 11 / 12, "feet"),
  9214. default: true
  9215. },
  9216. {
  9217. name: "How Did This Happen",
  9218. height: math.unit(80, "miles")
  9219. }
  9220. ]
  9221. ))
  9222. characterMakers.push(() => makeCharacter(
  9223. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9224. {
  9225. front: {
  9226. height: math.unit(7, "feet"),
  9227. weight: math.unit(300, "lb"),
  9228. name: "Front",
  9229. image: {
  9230. source: "./media/characters/pisces/front.svg",
  9231. extra: 2255 / 2115,
  9232. bottom: 0.03
  9233. }
  9234. },
  9235. back: {
  9236. height: math.unit(7, "feet"),
  9237. weight: math.unit(300, "lb"),
  9238. name: "Back",
  9239. image: {
  9240. source: "./media/characters/pisces/back.svg",
  9241. extra: 2146 / 2055,
  9242. bottom: 0.04
  9243. }
  9244. },
  9245. },
  9246. [
  9247. {
  9248. name: "Normal",
  9249. height: math.unit(7, "feet"),
  9250. default: true
  9251. },
  9252. {
  9253. name: "Swimming Pool",
  9254. height: math.unit(12.2, "meters")
  9255. },
  9256. {
  9257. name: "Olympic Swimming Pool",
  9258. height: math.unit(56.3, "meters")
  9259. },
  9260. {
  9261. name: "Lake Superior",
  9262. height: math.unit(93900, "meters")
  9263. },
  9264. {
  9265. name: "Mediterranean Sea",
  9266. height: math.unit(644457, "meters")
  9267. },
  9268. {
  9269. name: "World's Oceans",
  9270. height: math.unit(4567491, "meters")
  9271. },
  9272. ]
  9273. ))
  9274. characterMakers.push(() => makeCharacter(
  9275. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9276. {
  9277. front: {
  9278. height: math.unit(2.3, "meters"),
  9279. weight: math.unit(120, "kg"),
  9280. name: "Front",
  9281. image: {
  9282. source: "./media/characters/zelas/front.svg"
  9283. }
  9284. },
  9285. side: {
  9286. height: math.unit(2.3, "meters"),
  9287. weight: math.unit(120, "kg"),
  9288. name: "Side",
  9289. image: {
  9290. source: "./media/characters/zelas/side.svg"
  9291. }
  9292. },
  9293. back: {
  9294. height: math.unit(2.3, "meters"),
  9295. weight: math.unit(120, "kg"),
  9296. name: "Back",
  9297. image: {
  9298. source: "./media/characters/zelas/back.svg"
  9299. }
  9300. },
  9301. foot: {
  9302. height: math.unit(1.116, "feet"),
  9303. name: "Foot",
  9304. image: {
  9305. source: "./media/characters/zelas/foot.svg"
  9306. }
  9307. },
  9308. },
  9309. [
  9310. {
  9311. name: "Normal",
  9312. height: math.unit(2.3, "meters")
  9313. },
  9314. {
  9315. name: "Macro",
  9316. height: math.unit(30, "meters"),
  9317. default: true
  9318. },
  9319. ]
  9320. ))
  9321. characterMakers.push(() => makeCharacter(
  9322. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9323. {
  9324. front: {
  9325. height: math.unit(1, "inch"),
  9326. weight: math.unit(0.21, "grams"),
  9327. name: "Front",
  9328. image: {
  9329. source: "./media/characters/talbot/front.svg",
  9330. extra: 594 / 544
  9331. }
  9332. },
  9333. },
  9334. [
  9335. {
  9336. name: "Micro",
  9337. height: math.unit(1, "inch"),
  9338. default: true
  9339. },
  9340. ]
  9341. ))
  9342. characterMakers.push(() => makeCharacter(
  9343. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9344. {
  9345. front: {
  9346. height: math.unit(3 + 3 / 12, "feet"),
  9347. weight: math.unit(51.8, "lb"),
  9348. name: "Front",
  9349. image: {
  9350. source: "./media/characters/fliss/front.svg",
  9351. extra: 840 / 640
  9352. }
  9353. },
  9354. },
  9355. [
  9356. {
  9357. name: "Teeny Tiny",
  9358. height: math.unit(1, "mm")
  9359. },
  9360. {
  9361. name: "Small",
  9362. height: math.unit(1, "inch"),
  9363. default: true
  9364. },
  9365. {
  9366. name: "Standard Sylveon",
  9367. height: math.unit(3 + 3 / 12, "feet")
  9368. },
  9369. {
  9370. name: "Large Nuisance",
  9371. height: math.unit(33, "feet")
  9372. },
  9373. {
  9374. name: "City Filler",
  9375. height: math.unit(3000, "feet")
  9376. },
  9377. {
  9378. name: "New Horizon",
  9379. height: math.unit(6000, "miles")
  9380. },
  9381. ]
  9382. ))
  9383. characterMakers.push(() => makeCharacter(
  9384. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9385. {
  9386. front: {
  9387. height: math.unit(5, "cm"),
  9388. weight: math.unit(1.94, "g"),
  9389. name: "Front",
  9390. image: {
  9391. source: "./media/characters/fleta/front.svg",
  9392. extra: 835 / 803
  9393. }
  9394. },
  9395. back: {
  9396. height: math.unit(5, "cm"),
  9397. weight: math.unit(1.94, "g"),
  9398. name: "Back",
  9399. image: {
  9400. source: "./media/characters/fleta/back.svg",
  9401. extra: 835 / 803
  9402. }
  9403. },
  9404. },
  9405. [
  9406. {
  9407. name: "Micro",
  9408. height: math.unit(5, "cm"),
  9409. default: true
  9410. },
  9411. ]
  9412. ))
  9413. characterMakers.push(() => makeCharacter(
  9414. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9415. {
  9416. front: {
  9417. height: math.unit(6, "feet"),
  9418. weight: math.unit(225, "lb"),
  9419. name: "Front",
  9420. image: {
  9421. source: "./media/characters/dominic/front.svg",
  9422. extra: 1770 / 1620,
  9423. bottom: 0.025
  9424. }
  9425. },
  9426. back: {
  9427. height: math.unit(6, "feet"),
  9428. weight: math.unit(225, "lb"),
  9429. name: "Back",
  9430. image: {
  9431. source: "./media/characters/dominic/back.svg",
  9432. extra: 1745 / 1620,
  9433. bottom: 0.065
  9434. }
  9435. },
  9436. },
  9437. [
  9438. {
  9439. name: "Nano",
  9440. height: math.unit(0.1, "mm")
  9441. },
  9442. {
  9443. name: "Micro-",
  9444. height: math.unit(1, "mm")
  9445. },
  9446. {
  9447. name: "Micro",
  9448. height: math.unit(4, "inches")
  9449. },
  9450. {
  9451. name: "Normal",
  9452. height: math.unit(6 + 4 / 12, "feet"),
  9453. default: true
  9454. },
  9455. {
  9456. name: "Macro",
  9457. height: math.unit(115, "feet")
  9458. },
  9459. {
  9460. name: "Macro+",
  9461. height: math.unit(955, "feet")
  9462. },
  9463. {
  9464. name: "Megamacro",
  9465. height: math.unit(8990, "feet")
  9466. },
  9467. {
  9468. name: "Gigmacro",
  9469. height: math.unit(9310, "miles")
  9470. },
  9471. {
  9472. name: "Teramacro",
  9473. height: math.unit(1567005010, "miles")
  9474. },
  9475. {
  9476. name: "Examacro",
  9477. height: math.unit(1425, "parsecs")
  9478. },
  9479. ]
  9480. ))
  9481. characterMakers.push(() => makeCharacter(
  9482. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9483. {
  9484. front: {
  9485. height: math.unit(400, "feet"),
  9486. weight: math.unit(44444444, "lb"),
  9487. name: "Front",
  9488. image: {
  9489. source: "./media/characters/major-colonel/front.svg"
  9490. }
  9491. },
  9492. back: {
  9493. height: math.unit(400, "feet"),
  9494. weight: math.unit(44444444, "lb"),
  9495. name: "Back",
  9496. image: {
  9497. source: "./media/characters/major-colonel/back.svg"
  9498. }
  9499. },
  9500. },
  9501. [
  9502. {
  9503. name: "Macro",
  9504. height: math.unit(400, "feet"),
  9505. default: true
  9506. },
  9507. ]
  9508. ))
  9509. characterMakers.push(() => makeCharacter(
  9510. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9511. {
  9512. catFront: {
  9513. height: math.unit(6, "feet"),
  9514. weight: math.unit(120, "lb"),
  9515. name: "Front (Cat Side)",
  9516. image: {
  9517. source: "./media/characters/axel-lycan/cat-front.svg",
  9518. extra: 430 / 402,
  9519. bottom: 43 / 472.35
  9520. }
  9521. },
  9522. catBack: {
  9523. height: math.unit(6, "feet"),
  9524. weight: math.unit(120, "lb"),
  9525. name: "Back (Cat Side)",
  9526. image: {
  9527. source: "./media/characters/axel-lycan/cat-back.svg",
  9528. extra: 447 / 419,
  9529. bottom: 23.3 / 469
  9530. }
  9531. },
  9532. wolfFront: {
  9533. height: math.unit(6, "feet"),
  9534. weight: math.unit(120, "lb"),
  9535. name: "Front (Wolf Side)",
  9536. image: {
  9537. source: "./media/characters/axel-lycan/wolf-front.svg",
  9538. extra: 485 / 456,
  9539. bottom: 19 / 504
  9540. }
  9541. },
  9542. wolfBack: {
  9543. height: math.unit(6, "feet"),
  9544. weight: math.unit(120, "lb"),
  9545. name: "Back (Wolf Side)",
  9546. image: {
  9547. source: "./media/characters/axel-lycan/wolf-back.svg",
  9548. extra: 475 / 438,
  9549. bottom: 39.2 / 514
  9550. }
  9551. },
  9552. },
  9553. [
  9554. {
  9555. name: "Macro",
  9556. height: math.unit(1, "km"),
  9557. default: true
  9558. },
  9559. ]
  9560. ))
  9561. characterMakers.push(() => makeCharacter(
  9562. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9563. {
  9564. front: {
  9565. height: math.unit(5 + 9 / 12, "feet"),
  9566. weight: math.unit(175, "lb"),
  9567. name: "Front",
  9568. image: {
  9569. source: "./media/characters/vanrel-hyena/front.svg",
  9570. extra: 1086 / 1010,
  9571. bottom: 0.04
  9572. }
  9573. },
  9574. },
  9575. [
  9576. {
  9577. name: "Normal",
  9578. height: math.unit(5 + 9 / 12, "feet"),
  9579. default: true
  9580. },
  9581. ]
  9582. ))
  9583. characterMakers.push(() => makeCharacter(
  9584. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9585. {
  9586. front: {
  9587. height: math.unit(6, "feet"),
  9588. weight: math.unit(103, "lb"),
  9589. name: "Front",
  9590. image: {
  9591. source: "./media/characters/abbott-absol/front.svg",
  9592. extra: 2010 / 1842
  9593. }
  9594. },
  9595. },
  9596. [
  9597. {
  9598. name: "Megamicro",
  9599. height: math.unit(0.1, "mm")
  9600. },
  9601. {
  9602. name: "Micro",
  9603. height: math.unit(1, "inch")
  9604. },
  9605. {
  9606. name: "Normal",
  9607. height: math.unit(6, "feet"),
  9608. default: true
  9609. },
  9610. ]
  9611. ))
  9612. characterMakers.push(() => makeCharacter(
  9613. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9614. {
  9615. front: {
  9616. height: math.unit(6, "feet"),
  9617. weight: math.unit(264, "lb"),
  9618. name: "Front",
  9619. image: {
  9620. source: "./media/characters/hector/front.svg",
  9621. extra: 2280 / 2130,
  9622. bottom: 0.07
  9623. }
  9624. },
  9625. },
  9626. [
  9627. {
  9628. name: "Normal",
  9629. height: math.unit(12.25, "foot"),
  9630. default: true
  9631. },
  9632. {
  9633. name: "Macro",
  9634. height: math.unit(160, "feet")
  9635. },
  9636. ]
  9637. ))
  9638. characterMakers.push(() => makeCharacter(
  9639. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9640. {
  9641. front: {
  9642. height: math.unit(6, "feet"),
  9643. weight: math.unit(150, "lb"),
  9644. name: "Front",
  9645. image: {
  9646. source: "./media/characters/sal/front.svg",
  9647. extra: 1846 / 1699,
  9648. bottom: 0.04
  9649. }
  9650. },
  9651. },
  9652. [
  9653. {
  9654. name: "Megamacro",
  9655. height: math.unit(10, "miles"),
  9656. default: true
  9657. },
  9658. ]
  9659. ))
  9660. characterMakers.push(() => makeCharacter(
  9661. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9662. {
  9663. front: {
  9664. height: math.unit(3, "meters"),
  9665. weight: math.unit(450, "kg"),
  9666. name: "front",
  9667. image: {
  9668. source: "./media/characters/ranger/front.svg",
  9669. extra: 2401 / 2243,
  9670. bottom: 0.05
  9671. }
  9672. },
  9673. },
  9674. [
  9675. {
  9676. name: "Normal",
  9677. height: math.unit(3, "meters"),
  9678. default: true
  9679. },
  9680. ]
  9681. ))
  9682. characterMakers.push(() => makeCharacter(
  9683. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9684. {
  9685. front: {
  9686. height: math.unit(14, "feet"),
  9687. weight: math.unit(800, "kg"),
  9688. name: "Front",
  9689. image: {
  9690. source: "./media/characters/theresa/front.svg",
  9691. extra: 3575 / 3346,
  9692. bottom: 0.03
  9693. }
  9694. },
  9695. },
  9696. [
  9697. {
  9698. name: "Normal",
  9699. height: math.unit(14, "feet"),
  9700. default: true
  9701. },
  9702. ]
  9703. ))
  9704. characterMakers.push(() => makeCharacter(
  9705. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9706. {
  9707. front: {
  9708. height: math.unit(6, "feet"),
  9709. weight: math.unit(3, "kg"),
  9710. name: "Front",
  9711. image: {
  9712. source: "./media/characters/ine/front.svg",
  9713. extra: 678 / 539,
  9714. bottom: 0.023
  9715. }
  9716. },
  9717. },
  9718. [
  9719. {
  9720. name: "Normal",
  9721. height: math.unit(2.265, "feet"),
  9722. default: true
  9723. },
  9724. ]
  9725. ))
  9726. characterMakers.push(() => makeCharacter(
  9727. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9728. {
  9729. front: {
  9730. height: math.unit(5, "feet"),
  9731. weight: math.unit(30, "kg"),
  9732. name: "Front",
  9733. image: {
  9734. source: "./media/characters/vial/front.svg",
  9735. extra: 1365 / 1277,
  9736. bottom: 0.04
  9737. }
  9738. },
  9739. },
  9740. [
  9741. {
  9742. name: "Normal",
  9743. height: math.unit(5, "feet"),
  9744. default: true
  9745. },
  9746. ]
  9747. ))
  9748. characterMakers.push(() => makeCharacter(
  9749. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9750. {
  9751. side: {
  9752. height: math.unit(3.4, "meters"),
  9753. weight: math.unit(1000, "lb"),
  9754. name: "Side",
  9755. image: {
  9756. source: "./media/characters/rovoska/side.svg",
  9757. extra: 4403 / 1515
  9758. }
  9759. },
  9760. },
  9761. [
  9762. {
  9763. name: "Normal",
  9764. height: math.unit(3.4, "meters"),
  9765. default: true
  9766. },
  9767. ]
  9768. ))
  9769. characterMakers.push(() => makeCharacter(
  9770. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9771. {
  9772. front: {
  9773. height: math.unit(8, "feet"),
  9774. weight: math.unit(315, "lb"),
  9775. name: "Front",
  9776. image: {
  9777. source: "./media/characters/gunner-rotthbauer/front.svg"
  9778. }
  9779. },
  9780. back: {
  9781. height: math.unit(8, "feet"),
  9782. weight: math.unit(315, "lb"),
  9783. name: "Back",
  9784. image: {
  9785. source: "./media/characters/gunner-rotthbauer/back.svg"
  9786. }
  9787. },
  9788. },
  9789. [
  9790. {
  9791. name: "Micro",
  9792. height: math.unit(3.5, "inches")
  9793. },
  9794. {
  9795. name: "Normal",
  9796. height: math.unit(8, "feet"),
  9797. default: true
  9798. },
  9799. {
  9800. name: "Macro",
  9801. height: math.unit(250, "feet")
  9802. },
  9803. {
  9804. name: "Megamacro",
  9805. height: math.unit(1, "AU")
  9806. },
  9807. ]
  9808. ))
  9809. characterMakers.push(() => makeCharacter(
  9810. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9811. {
  9812. front: {
  9813. height: math.unit(5 + 5 / 12, "feet"),
  9814. weight: math.unit(140, "lb"),
  9815. name: "Front",
  9816. image: {
  9817. source: "./media/characters/allatia/front.svg",
  9818. extra: 1227 / 1180,
  9819. bottom: 0.027
  9820. }
  9821. },
  9822. },
  9823. [
  9824. {
  9825. name: "Normal",
  9826. height: math.unit(5 + 5 / 12, "feet")
  9827. },
  9828. {
  9829. name: "Macro",
  9830. height: math.unit(250, "feet"),
  9831. default: true
  9832. },
  9833. {
  9834. name: "Megamacro",
  9835. height: math.unit(8, "miles")
  9836. }
  9837. ]
  9838. ))
  9839. characterMakers.push(() => makeCharacter(
  9840. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9841. {
  9842. front: {
  9843. height: math.unit(6, "feet"),
  9844. weight: math.unit(120, "lb"),
  9845. name: "Front",
  9846. image: {
  9847. source: "./media/characters/tene/front.svg",
  9848. extra: 1728 / 1578,
  9849. bottom: 0.022
  9850. }
  9851. },
  9852. stomping: {
  9853. height: math.unit(2.025, "meters"),
  9854. weight: math.unit(120, "lb"),
  9855. name: "Stomping",
  9856. image: {
  9857. source: "./media/characters/tene/stomping.svg",
  9858. extra: 938 / 873,
  9859. bottom: 0.01
  9860. }
  9861. },
  9862. sitting: {
  9863. height: math.unit(1, "meter"),
  9864. weight: math.unit(120, "lb"),
  9865. name: "Sitting",
  9866. image: {
  9867. source: "./media/characters/tene/sitting.svg",
  9868. extra: 437 / 415,
  9869. bottom: 0.1
  9870. }
  9871. },
  9872. feral: {
  9873. height: math.unit(3.9, "feet"),
  9874. weight: math.unit(250, "lb"),
  9875. name: "Feral",
  9876. image: {
  9877. source: "./media/characters/tene/feral.svg",
  9878. extra: 717 / 458,
  9879. bottom: 0.179
  9880. }
  9881. },
  9882. },
  9883. [
  9884. {
  9885. name: "Normal",
  9886. height: math.unit(6, "feet")
  9887. },
  9888. {
  9889. name: "Macro",
  9890. height: math.unit(300, "feet"),
  9891. default: true
  9892. },
  9893. {
  9894. name: "Megamacro",
  9895. height: math.unit(5, "miles")
  9896. },
  9897. ]
  9898. ))
  9899. characterMakers.push(() => makeCharacter(
  9900. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9901. {
  9902. side: {
  9903. height: math.unit(6, "feet"),
  9904. name: "Side",
  9905. image: {
  9906. source: "./media/characters/evander/side.svg",
  9907. extra: 877 / 477
  9908. }
  9909. },
  9910. },
  9911. [
  9912. {
  9913. name: "Normal",
  9914. height: math.unit(0.83, "meters"),
  9915. default: true
  9916. },
  9917. ]
  9918. ))
  9919. characterMakers.push(() => makeCharacter(
  9920. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9921. {
  9922. front: {
  9923. height: math.unit(12, "feet"),
  9924. weight: math.unit(1000, "lb"),
  9925. name: "Front",
  9926. image: {
  9927. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9928. extra: 1762 / 1611
  9929. }
  9930. },
  9931. back: {
  9932. height: math.unit(12, "feet"),
  9933. weight: math.unit(1000, "lb"),
  9934. name: "Back",
  9935. image: {
  9936. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9937. extra: 1762 / 1611
  9938. }
  9939. },
  9940. },
  9941. [
  9942. {
  9943. name: "Normal",
  9944. height: math.unit(12, "feet"),
  9945. default: true
  9946. },
  9947. {
  9948. name: "Kaiju",
  9949. height: math.unit(150, "feet")
  9950. },
  9951. ]
  9952. ))
  9953. characterMakers.push(() => makeCharacter(
  9954. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9955. {
  9956. front: {
  9957. height: math.unit(6, "feet"),
  9958. weight: math.unit(150, "lb"),
  9959. name: "Front",
  9960. image: {
  9961. source: "./media/characters/zero-alurus/front.svg"
  9962. }
  9963. },
  9964. back: {
  9965. height: math.unit(6, "feet"),
  9966. weight: math.unit(150, "lb"),
  9967. name: "Back",
  9968. image: {
  9969. source: "./media/characters/zero-alurus/back.svg"
  9970. }
  9971. },
  9972. },
  9973. [
  9974. {
  9975. name: "Normal",
  9976. height: math.unit(5 + 10 / 12, "feet")
  9977. },
  9978. {
  9979. name: "Macro",
  9980. height: math.unit(60, "feet"),
  9981. default: true
  9982. },
  9983. {
  9984. name: "Macro+",
  9985. height: math.unit(450, "feet")
  9986. },
  9987. ]
  9988. ))
  9989. characterMakers.push(() => makeCharacter(
  9990. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9991. {
  9992. front: {
  9993. height: math.unit(6, "feet"),
  9994. weight: math.unit(200, "lb"),
  9995. name: "Front",
  9996. image: {
  9997. source: "./media/characters/mega-shi/front.svg",
  9998. extra: 1279 / 1250,
  9999. bottom: 0.02
  10000. }
  10001. },
  10002. back: {
  10003. height: math.unit(6, "feet"),
  10004. weight: math.unit(200, "lb"),
  10005. name: "Back",
  10006. image: {
  10007. source: "./media/characters/mega-shi/back.svg",
  10008. extra: 1279 / 1250,
  10009. bottom: 0.02
  10010. }
  10011. },
  10012. },
  10013. [
  10014. {
  10015. name: "Micro",
  10016. height: math.unit(16 + 6 / 12, "feet")
  10017. },
  10018. {
  10019. name: "Third Dimension",
  10020. height: math.unit(40, "meters")
  10021. },
  10022. {
  10023. name: "Normal",
  10024. height: math.unit(660, "feet"),
  10025. default: true
  10026. },
  10027. {
  10028. name: "Megamacro",
  10029. height: math.unit(10, "miles")
  10030. },
  10031. {
  10032. name: "Planetary Launch",
  10033. height: math.unit(500, "miles")
  10034. },
  10035. {
  10036. name: "Interstellar",
  10037. height: math.unit(1e9, "miles")
  10038. },
  10039. {
  10040. name: "Leaving the Universe",
  10041. height: math.unit(1, "gigaparsec")
  10042. },
  10043. {
  10044. name: "Travelling Universes",
  10045. height: math.unit(30e15, "parsecs")
  10046. },
  10047. ]
  10048. ))
  10049. characterMakers.push(() => makeCharacter(
  10050. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10051. {
  10052. front: {
  10053. height: math.unit(6, "feet"),
  10054. weight: math.unit(150, "lb"),
  10055. name: "Front",
  10056. image: {
  10057. source: "./media/characters/odyssey/front.svg",
  10058. extra: 1782 / 1582,
  10059. bottom: 0.01
  10060. }
  10061. },
  10062. side: {
  10063. height: math.unit(5.7, "feet"),
  10064. weight: math.unit(140, "lb"),
  10065. name: "Side",
  10066. image: {
  10067. source: "./media/characters/odyssey/side.svg",
  10068. extra: 6462 / 5700
  10069. }
  10070. },
  10071. },
  10072. [
  10073. {
  10074. name: "Normal",
  10075. height: math.unit(5 + 4 / 12, "feet")
  10076. },
  10077. {
  10078. name: "Macro",
  10079. height: math.unit(1, "km")
  10080. },
  10081. {
  10082. name: "Megamacro",
  10083. height: math.unit(3000, "km")
  10084. },
  10085. {
  10086. name: "Gigamacro",
  10087. height: math.unit(1, "AU"),
  10088. default: true
  10089. },
  10090. {
  10091. name: "Omniversal",
  10092. height: math.unit(100e14, "lightyears")
  10093. },
  10094. ]
  10095. ))
  10096. characterMakers.push(() => makeCharacter(
  10097. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10098. {
  10099. front: {
  10100. height: math.unit(6, "feet"),
  10101. weight: math.unit(300, "lb"),
  10102. name: "Front",
  10103. image: {
  10104. source: "./media/characters/mekuto/front.svg",
  10105. extra: 921 / 832,
  10106. bottom: 0.03
  10107. }
  10108. },
  10109. hand: {
  10110. height: math.unit(6 / 10.24, "feet"),
  10111. name: "Hand",
  10112. image: {
  10113. source: "./media/characters/mekuto/hand.svg"
  10114. }
  10115. },
  10116. foot: {
  10117. height: math.unit(6 / 5.05, "feet"),
  10118. name: "Foot",
  10119. image: {
  10120. source: "./media/characters/mekuto/foot.svg"
  10121. }
  10122. },
  10123. },
  10124. [
  10125. {
  10126. name: "Minimicro",
  10127. height: math.unit(0.2, "inches")
  10128. },
  10129. {
  10130. name: "Micro",
  10131. height: math.unit(1.5, "inches")
  10132. },
  10133. {
  10134. name: "Normal",
  10135. height: math.unit(5 + 11 / 12, "feet"),
  10136. default: true
  10137. },
  10138. {
  10139. name: "Minimacro",
  10140. height: math.unit(17 + 9 / 12, "feet")
  10141. },
  10142. {
  10143. name: "Macro",
  10144. height: math.unit(177.5, "feet")
  10145. },
  10146. {
  10147. name: "Megamacro",
  10148. height: math.unit(152, "miles")
  10149. },
  10150. ]
  10151. ))
  10152. characterMakers.push(() => makeCharacter(
  10153. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10154. {
  10155. front: {
  10156. height: math.unit(6.5, "inches"),
  10157. weight: math.unit(13, "oz"),
  10158. name: "Front",
  10159. image: {
  10160. source: "./media/characters/dafydd-tomos/front.svg",
  10161. extra: 2990 / 2603,
  10162. bottom: 0.03
  10163. }
  10164. },
  10165. },
  10166. [
  10167. {
  10168. name: "Micro",
  10169. height: math.unit(6.5, "inches"),
  10170. default: true
  10171. },
  10172. ]
  10173. ))
  10174. characterMakers.push(() => makeCharacter(
  10175. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10176. {
  10177. front: {
  10178. height: math.unit(6, "feet"),
  10179. weight: math.unit(150, "lb"),
  10180. name: "Front",
  10181. image: {
  10182. source: "./media/characters/splinter/front.svg",
  10183. extra: 2990 / 2882,
  10184. bottom: 0.04
  10185. }
  10186. },
  10187. back: {
  10188. height: math.unit(6, "feet"),
  10189. weight: math.unit(150, "lb"),
  10190. name: "Back",
  10191. image: {
  10192. source: "./media/characters/splinter/back.svg",
  10193. extra: 2990 / 2882,
  10194. bottom: 0.04
  10195. }
  10196. },
  10197. },
  10198. [
  10199. {
  10200. name: "Normal",
  10201. height: math.unit(6, "feet")
  10202. },
  10203. {
  10204. name: "Macro",
  10205. height: math.unit(230, "meters"),
  10206. default: true
  10207. },
  10208. ]
  10209. ))
  10210. characterMakers.push(() => makeCharacter(
  10211. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10212. {
  10213. front: {
  10214. height: math.unit(4 + 10 / 12, "feet"),
  10215. weight: math.unit(480, "lb"),
  10216. name: "Front",
  10217. image: {
  10218. source: "./media/characters/snow-gabumon/front.svg",
  10219. extra: 1140 / 963,
  10220. bottom: 0.058
  10221. }
  10222. },
  10223. back: {
  10224. height: math.unit(4 + 10 / 12, "feet"),
  10225. weight: math.unit(480, "lb"),
  10226. name: "Back",
  10227. image: {
  10228. source: "./media/characters/snow-gabumon/back.svg",
  10229. extra: 1115 / 962,
  10230. bottom: 0.041
  10231. }
  10232. },
  10233. frontUndresed: {
  10234. height: math.unit(4 + 10 / 12, "feet"),
  10235. weight: math.unit(480, "lb"),
  10236. name: "Front (Undressed)",
  10237. image: {
  10238. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10239. extra: 1061 / 960,
  10240. bottom: 0.045
  10241. }
  10242. },
  10243. },
  10244. [
  10245. {
  10246. name: "Micro",
  10247. height: math.unit(1, "inch")
  10248. },
  10249. {
  10250. name: "Normal",
  10251. height: math.unit(4 + 10 / 12, "feet"),
  10252. default: true
  10253. },
  10254. {
  10255. name: "Macro",
  10256. height: math.unit(200, "feet")
  10257. },
  10258. {
  10259. name: "Megamacro",
  10260. height: math.unit(120, "miles")
  10261. },
  10262. {
  10263. name: "Gigamacro",
  10264. height: math.unit(9800, "miles")
  10265. },
  10266. ]
  10267. ))
  10268. characterMakers.push(() => makeCharacter(
  10269. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10270. {
  10271. front: {
  10272. height: math.unit(1.7, "meters"),
  10273. weight: math.unit(140, "lb"),
  10274. name: "Front",
  10275. image: {
  10276. source: "./media/characters/moody/front.svg",
  10277. extra: 3226 / 3007,
  10278. bottom: 0.087
  10279. }
  10280. },
  10281. },
  10282. [
  10283. {
  10284. name: "Micro",
  10285. height: math.unit(1, "mm")
  10286. },
  10287. {
  10288. name: "Normal",
  10289. height: math.unit(1.7, "meters"),
  10290. default: true
  10291. },
  10292. {
  10293. name: "Macro",
  10294. height: math.unit(80, "meters")
  10295. },
  10296. {
  10297. name: "Macro+",
  10298. height: math.unit(500, "meters")
  10299. },
  10300. ]
  10301. ))
  10302. characterMakers.push(() => makeCharacter(
  10303. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10304. {
  10305. front: {
  10306. height: math.unit(6, "feet"),
  10307. weight: math.unit(150, "lb"),
  10308. name: "Front",
  10309. image: {
  10310. source: "./media/characters/zyas/front.svg",
  10311. extra: 1180 / 1120,
  10312. bottom: 0.045
  10313. }
  10314. },
  10315. },
  10316. [
  10317. {
  10318. name: "Normal",
  10319. height: math.unit(10, "feet"),
  10320. default: true
  10321. },
  10322. {
  10323. name: "Macro",
  10324. height: math.unit(500, "feet")
  10325. },
  10326. {
  10327. name: "Megamacro",
  10328. height: math.unit(5, "miles")
  10329. },
  10330. {
  10331. name: "Teramacro",
  10332. height: math.unit(150000, "miles")
  10333. },
  10334. ]
  10335. ))
  10336. characterMakers.push(() => makeCharacter(
  10337. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10338. {
  10339. front: {
  10340. height: math.unit(6, "feet"),
  10341. weight: math.unit(150, "lb"),
  10342. name: "Front",
  10343. image: {
  10344. source: "./media/characters/cuon/front.svg",
  10345. extra: 1390 / 1320,
  10346. bottom: 0.008
  10347. }
  10348. },
  10349. },
  10350. [
  10351. {
  10352. name: "Micro",
  10353. height: math.unit(3, "inches")
  10354. },
  10355. {
  10356. name: "Normal",
  10357. height: math.unit(18 + 9 / 12, "feet"),
  10358. default: true
  10359. },
  10360. {
  10361. name: "Macro",
  10362. height: math.unit(360, "feet")
  10363. },
  10364. {
  10365. name: "Megamacro",
  10366. height: math.unit(360, "miles")
  10367. },
  10368. ]
  10369. ))
  10370. characterMakers.push(() => makeCharacter(
  10371. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10372. {
  10373. front: {
  10374. height: math.unit(2.4, "meters"),
  10375. weight: math.unit(70, "kg"),
  10376. name: "Front",
  10377. image: {
  10378. source: "./media/characters/nyanuxk/front.svg",
  10379. extra: 1172 / 1084,
  10380. bottom: 0.065
  10381. }
  10382. },
  10383. side: {
  10384. height: math.unit(2.4, "meters"),
  10385. weight: math.unit(70, "kg"),
  10386. name: "Side",
  10387. image: {
  10388. source: "./media/characters/nyanuxk/side.svg",
  10389. extra: 1190 / 1132,
  10390. bottom: 0.007
  10391. }
  10392. },
  10393. back: {
  10394. height: math.unit(2.4, "meters"),
  10395. weight: math.unit(70, "kg"),
  10396. name: "Back",
  10397. image: {
  10398. source: "./media/characters/nyanuxk/back.svg",
  10399. extra: 1200 / 1141,
  10400. bottom: 0.015
  10401. }
  10402. },
  10403. foot: {
  10404. height: math.unit(0.52, "meters"),
  10405. name: "Foot",
  10406. image: {
  10407. source: "./media/characters/nyanuxk/foot.svg"
  10408. }
  10409. },
  10410. },
  10411. [
  10412. {
  10413. name: "Micro",
  10414. height: math.unit(2, "cm")
  10415. },
  10416. {
  10417. name: "Normal",
  10418. height: math.unit(2.4, "meters"),
  10419. default: true
  10420. },
  10421. {
  10422. name: "Smaller Macro",
  10423. height: math.unit(120, "meters")
  10424. },
  10425. {
  10426. name: "Bigger Macro",
  10427. height: math.unit(1.2, "km")
  10428. },
  10429. {
  10430. name: "Megamacro",
  10431. height: math.unit(15, "kilometers")
  10432. },
  10433. {
  10434. name: "Gigamacro",
  10435. height: math.unit(2000, "km")
  10436. },
  10437. {
  10438. name: "Teramacro",
  10439. height: math.unit(500000, "km")
  10440. },
  10441. ]
  10442. ))
  10443. characterMakers.push(() => makeCharacter(
  10444. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10445. {
  10446. side: {
  10447. height: math.unit(6, "feet"),
  10448. name: "Side",
  10449. image: {
  10450. source: "./media/characters/ailbhe/side.svg",
  10451. extra: 757 / 464,
  10452. bottom: 0.041
  10453. }
  10454. },
  10455. },
  10456. [
  10457. {
  10458. name: "Normal",
  10459. height: math.unit(1.07, "meters"),
  10460. default: true
  10461. },
  10462. ]
  10463. ))
  10464. characterMakers.push(() => makeCharacter(
  10465. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10466. {
  10467. front: {
  10468. height: math.unit(6, "feet"),
  10469. weight: math.unit(120, "kg"),
  10470. name: "Front",
  10471. image: {
  10472. source: "./media/characters/zevulfius/front.svg",
  10473. extra: 965 / 903
  10474. }
  10475. },
  10476. side: {
  10477. height: math.unit(6, "feet"),
  10478. weight: math.unit(120, "kg"),
  10479. name: "Side",
  10480. image: {
  10481. source: "./media/characters/zevulfius/side.svg",
  10482. extra: 939 / 900
  10483. }
  10484. },
  10485. back: {
  10486. height: math.unit(6, "feet"),
  10487. weight: math.unit(120, "kg"),
  10488. name: "Back",
  10489. image: {
  10490. source: "./media/characters/zevulfius/back.svg",
  10491. extra: 918 / 854,
  10492. bottom: 0.005
  10493. }
  10494. },
  10495. foot: {
  10496. height: math.unit(6 / 3.72, "feet"),
  10497. name: "Foot",
  10498. image: {
  10499. source: "./media/characters/zevulfius/foot.svg"
  10500. }
  10501. },
  10502. },
  10503. [
  10504. {
  10505. name: "Macro",
  10506. height: math.unit(750, "meters")
  10507. },
  10508. {
  10509. name: "Megamacro",
  10510. height: math.unit(20, "km"),
  10511. default: true
  10512. },
  10513. {
  10514. name: "Gigamacro",
  10515. height: math.unit(2000, "km")
  10516. },
  10517. {
  10518. name: "Teramacro",
  10519. height: math.unit(250000, "km")
  10520. },
  10521. ]
  10522. ))
  10523. characterMakers.push(() => makeCharacter(
  10524. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10525. {
  10526. front: {
  10527. height: math.unit(100, "feet"),
  10528. weight: math.unit(350, "kg"),
  10529. name: "Front",
  10530. image: {
  10531. source: "./media/characters/rikes/front.svg",
  10532. extra: 1565 / 1483,
  10533. bottom: 0.017
  10534. }
  10535. },
  10536. },
  10537. [
  10538. {
  10539. name: "Macro",
  10540. height: math.unit(100, "feet"),
  10541. default: true
  10542. },
  10543. ]
  10544. ))
  10545. characterMakers.push(() => makeCharacter(
  10546. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10547. {
  10548. front: {
  10549. height: math.unit(8, "feet"),
  10550. weight: math.unit(356, "lb"),
  10551. name: "Front",
  10552. image: {
  10553. source: "./media/characters/adam-silver-mane/front.svg",
  10554. extra: 1036/937,
  10555. bottom: 63/1099
  10556. }
  10557. },
  10558. side: {
  10559. height: math.unit(8, "feet"),
  10560. weight: math.unit(356, "lb"),
  10561. name: "Side",
  10562. image: {
  10563. source: "./media/characters/adam-silver-mane/side.svg",
  10564. extra: 997/901,
  10565. bottom: 59/1056
  10566. }
  10567. },
  10568. frontNsfw: {
  10569. height: math.unit(8, "feet"),
  10570. weight: math.unit(356, "lb"),
  10571. name: "Front (NSFW)",
  10572. image: {
  10573. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10574. extra: 1036/937,
  10575. bottom: 63/1099
  10576. }
  10577. },
  10578. sideNsfw: {
  10579. height: math.unit(8, "feet"),
  10580. weight: math.unit(356, "lb"),
  10581. name: "Side (NSFW)",
  10582. image: {
  10583. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10584. extra: 997/901,
  10585. bottom: 59/1056
  10586. }
  10587. },
  10588. dick: {
  10589. height: math.unit(2.1, "feet"),
  10590. name: "Dick",
  10591. image: {
  10592. source: "./media/characters/adam-silver-mane/dick.svg"
  10593. }
  10594. },
  10595. taur: {
  10596. height: math.unit(16, "feet"),
  10597. weight: math.unit(1500, "kg"),
  10598. name: "Taur",
  10599. image: {
  10600. source: "./media/characters/adam-silver-mane/taur.svg",
  10601. extra: 1713 / 1571,
  10602. bottom: 0.01
  10603. }
  10604. },
  10605. },
  10606. [
  10607. {
  10608. name: "Normal",
  10609. height: math.unit(8, "feet")
  10610. },
  10611. {
  10612. name: "Minimacro",
  10613. height: math.unit(80, "feet")
  10614. },
  10615. {
  10616. name: "MDA",
  10617. height: math.unit(80, "meters")
  10618. },
  10619. {
  10620. name: "Macro",
  10621. height: math.unit(800, "feet"),
  10622. default: true
  10623. },
  10624. {
  10625. name: "Megamacro",
  10626. height: math.unit(8000, "feet")
  10627. },
  10628. {
  10629. name: "Gigamacro",
  10630. height: math.unit(800, "miles")
  10631. },
  10632. {
  10633. name: "Teramacro",
  10634. height: math.unit(80000, "miles")
  10635. },
  10636. {
  10637. name: "Celestial",
  10638. height: math.unit(8e6, "miles")
  10639. },
  10640. {
  10641. name: "Star Dragon",
  10642. height: math.unit(800000, "parsecs")
  10643. },
  10644. {
  10645. name: "Godly",
  10646. height: math.unit(800, "teraparsecs")
  10647. },
  10648. ]
  10649. ))
  10650. characterMakers.push(() => makeCharacter(
  10651. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10652. {
  10653. front: {
  10654. height: math.unit(6, "feet"),
  10655. weight: math.unit(150, "lb"),
  10656. name: "Front",
  10657. image: {
  10658. source: "./media/characters/ky'owin/front.svg",
  10659. extra: 3888 / 3068,
  10660. bottom: 0.015
  10661. }
  10662. },
  10663. },
  10664. [
  10665. {
  10666. name: "Normal",
  10667. height: math.unit(6 + 8 / 12, "feet")
  10668. },
  10669. {
  10670. name: "Large",
  10671. height: math.unit(68, "feet")
  10672. },
  10673. {
  10674. name: "Macro",
  10675. height: math.unit(132, "feet")
  10676. },
  10677. {
  10678. name: "Macro+",
  10679. height: math.unit(340, "feet")
  10680. },
  10681. {
  10682. name: "Macro++",
  10683. height: math.unit(680, "feet"),
  10684. default: true
  10685. },
  10686. {
  10687. name: "Megamacro",
  10688. height: math.unit(1, "mile")
  10689. },
  10690. {
  10691. name: "Megamacro+",
  10692. height: math.unit(10, "miles")
  10693. },
  10694. ]
  10695. ))
  10696. characterMakers.push(() => makeCharacter(
  10697. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10698. {
  10699. front: {
  10700. height: math.unit(4, "feet"),
  10701. weight: math.unit(50, "lb"),
  10702. name: "Front",
  10703. image: {
  10704. source: "./media/characters/mal/front.svg",
  10705. extra: 785 / 724,
  10706. bottom: 0.07
  10707. }
  10708. },
  10709. },
  10710. [
  10711. {
  10712. name: "Micro",
  10713. height: math.unit(4, "inches")
  10714. },
  10715. {
  10716. name: "Normal",
  10717. height: math.unit(4, "feet"),
  10718. default: true
  10719. },
  10720. {
  10721. name: "Macro",
  10722. height: math.unit(200, "feet")
  10723. },
  10724. ]
  10725. ))
  10726. characterMakers.push(() => makeCharacter(
  10727. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10728. {
  10729. front: {
  10730. height: math.unit(6, "feet"),
  10731. weight: math.unit(150, "lb"),
  10732. name: "Front",
  10733. image: {
  10734. source: "./media/characters/jordan-deware/front.svg",
  10735. extra: 1191 / 1012
  10736. }
  10737. },
  10738. },
  10739. [
  10740. {
  10741. name: "Nano",
  10742. height: math.unit(0.01, "mm")
  10743. },
  10744. {
  10745. name: "Minimicro",
  10746. height: math.unit(1, "mm")
  10747. },
  10748. {
  10749. name: "Micro",
  10750. height: math.unit(0.5, "inches")
  10751. },
  10752. {
  10753. name: "Normal",
  10754. height: math.unit(4, "feet"),
  10755. default: true
  10756. },
  10757. {
  10758. name: "Minimacro",
  10759. height: math.unit(40, "meters")
  10760. },
  10761. {
  10762. name: "Small Macro",
  10763. height: math.unit(400, "meters")
  10764. },
  10765. {
  10766. name: "Macro",
  10767. height: math.unit(4, "miles")
  10768. },
  10769. {
  10770. name: "Megamacro",
  10771. height: math.unit(40, "miles")
  10772. },
  10773. {
  10774. name: "Megamacro+",
  10775. height: math.unit(400, "miles")
  10776. },
  10777. {
  10778. name: "Gigamacro",
  10779. height: math.unit(400000, "miles")
  10780. },
  10781. ]
  10782. ))
  10783. characterMakers.push(() => makeCharacter(
  10784. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10785. {
  10786. side: {
  10787. height: math.unit(6, "feet"),
  10788. weight: math.unit(150, "lb"),
  10789. name: "Side",
  10790. image: {
  10791. source: "./media/characters/kimiko/side.svg",
  10792. extra: 600 / 358
  10793. }
  10794. },
  10795. },
  10796. [
  10797. {
  10798. name: "Normal",
  10799. height: math.unit(15, "feet"),
  10800. default: true
  10801. },
  10802. {
  10803. name: "Macro",
  10804. height: math.unit(220, "feet")
  10805. },
  10806. {
  10807. name: "Macro+",
  10808. height: math.unit(1450, "feet")
  10809. },
  10810. {
  10811. name: "Megamacro",
  10812. height: math.unit(11500, "feet")
  10813. },
  10814. {
  10815. name: "Gigamacro",
  10816. height: math.unit(9500, "miles")
  10817. },
  10818. {
  10819. name: "Teramacro",
  10820. height: math.unit(2208005005, "miles")
  10821. },
  10822. {
  10823. name: "Examacro",
  10824. height: math.unit(2750, "parsecs")
  10825. },
  10826. {
  10827. name: "Zettamacro",
  10828. height: math.unit(101500, "parsecs")
  10829. },
  10830. ]
  10831. ))
  10832. characterMakers.push(() => makeCharacter(
  10833. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10834. {
  10835. front: {
  10836. height: math.unit(6, "feet"),
  10837. weight: math.unit(70, "kg"),
  10838. name: "Front",
  10839. image: {
  10840. source: "./media/characters/andrew-sleepy/front.svg"
  10841. }
  10842. },
  10843. side: {
  10844. height: math.unit(6, "feet"),
  10845. weight: math.unit(70, "kg"),
  10846. name: "Side",
  10847. image: {
  10848. source: "./media/characters/andrew-sleepy/side.svg"
  10849. }
  10850. },
  10851. },
  10852. [
  10853. {
  10854. name: "Micro",
  10855. height: math.unit(1, "mm"),
  10856. default: true
  10857. },
  10858. ]
  10859. ))
  10860. characterMakers.push(() => makeCharacter(
  10861. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10862. {
  10863. front: {
  10864. height: math.unit(6, "feet"),
  10865. weight: math.unit(150, "lb"),
  10866. name: "Front",
  10867. image: {
  10868. source: "./media/characters/judio/front.svg",
  10869. extra: 1258 / 1110
  10870. }
  10871. },
  10872. },
  10873. [
  10874. {
  10875. name: "Normal",
  10876. height: math.unit(5 + 6 / 12, "feet")
  10877. },
  10878. {
  10879. name: "Macro",
  10880. height: math.unit(1000, "feet"),
  10881. default: true
  10882. },
  10883. {
  10884. name: "Megamacro",
  10885. height: math.unit(10, "miles")
  10886. },
  10887. ]
  10888. ))
  10889. characterMakers.push(() => makeCharacter(
  10890. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10891. {
  10892. front: {
  10893. height: math.unit(6, "feet"),
  10894. weight: math.unit(68, "kg"),
  10895. name: "Front",
  10896. image: {
  10897. source: "./media/characters/nomaxice/front.svg",
  10898. extra: 1498 / 1073,
  10899. bottom: 0.075
  10900. }
  10901. },
  10902. foot: {
  10903. height: math.unit(1.1, "feet"),
  10904. name: "Foot",
  10905. image: {
  10906. source: "./media/characters/nomaxice/foot.svg"
  10907. }
  10908. },
  10909. },
  10910. [
  10911. {
  10912. name: "Micro",
  10913. height: math.unit(8, "cm")
  10914. },
  10915. {
  10916. name: "Norm",
  10917. height: math.unit(1.82, "m")
  10918. },
  10919. {
  10920. name: "Norm+",
  10921. height: math.unit(8.8, "feet")
  10922. },
  10923. {
  10924. name: "Big",
  10925. height: math.unit(8, "meters"),
  10926. default: true
  10927. },
  10928. {
  10929. name: "Macro",
  10930. height: math.unit(18, "meters")
  10931. },
  10932. {
  10933. name: "Macro+",
  10934. height: math.unit(88, "meters")
  10935. },
  10936. ]
  10937. ))
  10938. characterMakers.push(() => makeCharacter(
  10939. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10940. {
  10941. front: {
  10942. height: math.unit(12, "feet"),
  10943. weight: math.unit(1.5, "tons"),
  10944. name: "Front",
  10945. image: {
  10946. source: "./media/characters/dydros/front.svg",
  10947. extra: 863 / 800,
  10948. bottom: 0.015
  10949. }
  10950. },
  10951. back: {
  10952. height: math.unit(12, "feet"),
  10953. weight: math.unit(1.5, "tons"),
  10954. name: "Back",
  10955. image: {
  10956. source: "./media/characters/dydros/back.svg",
  10957. extra: 900 / 843,
  10958. bottom: 0.005
  10959. }
  10960. },
  10961. },
  10962. [
  10963. {
  10964. name: "Normal",
  10965. height: math.unit(12, "feet"),
  10966. default: true
  10967. },
  10968. ]
  10969. ))
  10970. characterMakers.push(() => makeCharacter(
  10971. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10972. {
  10973. front: {
  10974. height: math.unit(6, "feet"),
  10975. weight: math.unit(100, "kg"),
  10976. name: "Front",
  10977. image: {
  10978. source: "./media/characters/riggi/front.svg",
  10979. extra: 5787 / 5303
  10980. }
  10981. },
  10982. hyper: {
  10983. height: math.unit(6 * 5 / 3, "feet"),
  10984. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10985. name: "Hyper",
  10986. image: {
  10987. source: "./media/characters/riggi/hyper.svg",
  10988. extra: 3595 / 3485
  10989. }
  10990. },
  10991. },
  10992. [
  10993. {
  10994. name: "Small Macro",
  10995. height: math.unit(50, "feet")
  10996. },
  10997. {
  10998. name: "Default",
  10999. height: math.unit(200, "feet"),
  11000. default: true
  11001. },
  11002. {
  11003. name: "Loom",
  11004. height: math.unit(10000, "feet")
  11005. },
  11006. {
  11007. name: "Cruising Altitude",
  11008. height: math.unit(30000, "feet")
  11009. },
  11010. {
  11011. name: "Megamacro",
  11012. height: math.unit(100, "miles")
  11013. },
  11014. {
  11015. name: "Continent Sized",
  11016. height: math.unit(2800, "miles")
  11017. },
  11018. {
  11019. name: "Earth Sized",
  11020. height: math.unit(8000, "miles")
  11021. },
  11022. ]
  11023. ))
  11024. characterMakers.push(() => makeCharacter(
  11025. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11026. {
  11027. front: {
  11028. height: math.unit(6, "feet"),
  11029. weight: math.unit(250, "lb"),
  11030. name: "Front",
  11031. image: {
  11032. source: "./media/characters/alexi/front.svg",
  11033. extra: 3483 / 3291,
  11034. bottom: 0.04
  11035. }
  11036. },
  11037. back: {
  11038. height: math.unit(6, "feet"),
  11039. weight: math.unit(250, "lb"),
  11040. name: "Back",
  11041. image: {
  11042. source: "./media/characters/alexi/back.svg",
  11043. extra: 3533 / 3356,
  11044. bottom: 0.021
  11045. }
  11046. },
  11047. frontTransforming: {
  11048. height: math.unit(8.58, "feet"),
  11049. weight: math.unit(1300, "lb"),
  11050. name: "Transforming",
  11051. image: {
  11052. source: "./media/characters/alexi/front-transforming.svg",
  11053. extra: 437 / 409,
  11054. bottom: 19 / 458.66
  11055. }
  11056. },
  11057. frontTransformed: {
  11058. height: math.unit(12.5, "feet"),
  11059. weight: math.unit(4000, "lb"),
  11060. name: "Transformed",
  11061. image: {
  11062. source: "./media/characters/alexi/front-transformed.svg",
  11063. extra: 639 / 614,
  11064. bottom: 30.55 / 671
  11065. }
  11066. },
  11067. },
  11068. [
  11069. {
  11070. name: "Normal",
  11071. height: math.unit(14, "feet"),
  11072. default: true
  11073. },
  11074. {
  11075. name: "Minimacro",
  11076. height: math.unit(30, "meters")
  11077. },
  11078. {
  11079. name: "Macro",
  11080. height: math.unit(500, "meters")
  11081. },
  11082. {
  11083. name: "Megamacro",
  11084. height: math.unit(9000, "km")
  11085. },
  11086. {
  11087. name: "Teramacro",
  11088. height: math.unit(384000, "km")
  11089. },
  11090. ]
  11091. ))
  11092. characterMakers.push(() => makeCharacter(
  11093. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11094. {
  11095. front: {
  11096. height: math.unit(6, "feet"),
  11097. weight: math.unit(150, "lb"),
  11098. name: "Front",
  11099. image: {
  11100. source: "./media/characters/kayroo/front.svg",
  11101. extra: 1153 / 1038,
  11102. bottom: 0.06
  11103. }
  11104. },
  11105. foot: {
  11106. height: math.unit(6, "feet"),
  11107. weight: math.unit(150, "lb"),
  11108. name: "Foot",
  11109. image: {
  11110. source: "./media/characters/kayroo/foot.svg"
  11111. }
  11112. },
  11113. },
  11114. [
  11115. {
  11116. name: "Normal",
  11117. height: math.unit(8, "feet"),
  11118. default: true
  11119. },
  11120. {
  11121. name: "Minimacro",
  11122. height: math.unit(250, "feet")
  11123. },
  11124. {
  11125. name: "Macro",
  11126. height: math.unit(2800, "feet")
  11127. },
  11128. {
  11129. name: "Megamacro",
  11130. height: math.unit(5200, "feet")
  11131. },
  11132. {
  11133. name: "Gigamacro",
  11134. height: math.unit(27000, "feet")
  11135. },
  11136. {
  11137. name: "Omega",
  11138. height: math.unit(45000, "feet")
  11139. },
  11140. ]
  11141. ))
  11142. characterMakers.push(() => makeCharacter(
  11143. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11144. {
  11145. front: {
  11146. height: math.unit(18, "feet"),
  11147. weight: math.unit(5800, "lb"),
  11148. name: "Front",
  11149. image: {
  11150. source: "./media/characters/rhys/front.svg",
  11151. extra: 3386 / 3090,
  11152. bottom: 0.07
  11153. }
  11154. },
  11155. },
  11156. [
  11157. {
  11158. name: "Normal",
  11159. height: math.unit(18, "feet"),
  11160. default: true
  11161. },
  11162. {
  11163. name: "Working Size",
  11164. height: math.unit(200, "feet")
  11165. },
  11166. {
  11167. name: "Demolition Size",
  11168. height: math.unit(2000, "feet")
  11169. },
  11170. {
  11171. name: "Maximum Licensed Size",
  11172. height: math.unit(5, "miles")
  11173. },
  11174. {
  11175. name: "Maximum Observed Size",
  11176. height: math.unit(10, "yottameters")
  11177. },
  11178. ]
  11179. ))
  11180. characterMakers.push(() => makeCharacter(
  11181. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11182. {
  11183. front: {
  11184. height: math.unit(6, "feet"),
  11185. weight: math.unit(250, "lb"),
  11186. name: "Front",
  11187. image: {
  11188. source: "./media/characters/toto/front.svg",
  11189. extra: 527 / 479,
  11190. bottom: 0.05
  11191. }
  11192. },
  11193. },
  11194. [
  11195. {
  11196. name: "Micro",
  11197. height: math.unit(3, "feet")
  11198. },
  11199. {
  11200. name: "Normal",
  11201. height: math.unit(10, "feet")
  11202. },
  11203. {
  11204. name: "Macro",
  11205. height: math.unit(150, "feet"),
  11206. default: true
  11207. },
  11208. {
  11209. name: "Megamacro",
  11210. height: math.unit(1200, "feet")
  11211. },
  11212. ]
  11213. ))
  11214. characterMakers.push(() => makeCharacter(
  11215. { name: "King", species: ["lion"], tags: ["anthro"] },
  11216. {
  11217. back: {
  11218. height: math.unit(6, "feet"),
  11219. weight: math.unit(150, "lb"),
  11220. name: "Back",
  11221. image: {
  11222. source: "./media/characters/king/back.svg"
  11223. }
  11224. },
  11225. },
  11226. [
  11227. {
  11228. name: "Micro",
  11229. height: math.unit(2, "inches")
  11230. },
  11231. {
  11232. name: "Normal",
  11233. height: math.unit(8, "feet")
  11234. },
  11235. {
  11236. name: "Macro",
  11237. height: math.unit(200, "feet"),
  11238. default: true
  11239. },
  11240. {
  11241. name: "Megamacro",
  11242. height: math.unit(50, "miles")
  11243. },
  11244. ]
  11245. ))
  11246. characterMakers.push(() => makeCharacter(
  11247. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11248. {
  11249. front: {
  11250. height: math.unit(11, "feet"),
  11251. weight: math.unit(1400, "lb"),
  11252. name: "Front",
  11253. image: {
  11254. source: "./media/characters/cordite/front.svg",
  11255. extra: 1919/1827,
  11256. bottom: 40/1959
  11257. }
  11258. },
  11259. side: {
  11260. height: math.unit(11, "feet"),
  11261. weight: math.unit(1400, "lb"),
  11262. name: "Side",
  11263. image: {
  11264. source: "./media/characters/cordite/side.svg",
  11265. extra: 1908/1793,
  11266. bottom: 38/1946
  11267. }
  11268. },
  11269. back: {
  11270. height: math.unit(11, "feet"),
  11271. weight: math.unit(1400, "lb"),
  11272. name: "Back",
  11273. image: {
  11274. source: "./media/characters/cordite/back.svg",
  11275. extra: 1938/1837,
  11276. bottom: 10/1948
  11277. }
  11278. },
  11279. feral: {
  11280. height: math.unit(2, "feet"),
  11281. weight: math.unit(90, "lb"),
  11282. name: "Feral",
  11283. image: {
  11284. source: "./media/characters/cordite/feral.svg",
  11285. extra: 1260 / 755,
  11286. bottom: 0.05
  11287. }
  11288. },
  11289. },
  11290. [
  11291. {
  11292. name: "Normal",
  11293. height: math.unit(11, "feet"),
  11294. default: true
  11295. },
  11296. ]
  11297. ))
  11298. characterMakers.push(() => makeCharacter(
  11299. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11300. {
  11301. front: {
  11302. height: math.unit(6, "feet"),
  11303. weight: math.unit(150, "lb"),
  11304. name: "Front",
  11305. image: {
  11306. source: "./media/characters/pianostrong/front.svg",
  11307. extra: 6577 / 6254,
  11308. bottom: 0.02
  11309. }
  11310. },
  11311. side: {
  11312. height: math.unit(6, "feet"),
  11313. weight: math.unit(150, "lb"),
  11314. name: "Side",
  11315. image: {
  11316. source: "./media/characters/pianostrong/side.svg",
  11317. extra: 6106 / 5730
  11318. }
  11319. },
  11320. back: {
  11321. height: math.unit(6, "feet"),
  11322. weight: math.unit(150, "lb"),
  11323. name: "Back",
  11324. image: {
  11325. source: "./media/characters/pianostrong/back.svg",
  11326. extra: 6085 / 5733,
  11327. bottom: 0.01
  11328. }
  11329. },
  11330. },
  11331. [
  11332. {
  11333. name: "Macro",
  11334. height: math.unit(100, "feet")
  11335. },
  11336. {
  11337. name: "Macro+",
  11338. height: math.unit(300, "feet"),
  11339. default: true
  11340. },
  11341. {
  11342. name: "Macro++",
  11343. height: math.unit(1000, "feet")
  11344. },
  11345. ]
  11346. ))
  11347. characterMakers.push(() => makeCharacter(
  11348. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11349. {
  11350. front: {
  11351. height: math.unit(6, "feet"),
  11352. weight: math.unit(150, "lb"),
  11353. name: "Front",
  11354. image: {
  11355. source: "./media/characters/kona/front.svg",
  11356. extra: 2960 / 2629,
  11357. bottom: 0.005
  11358. }
  11359. },
  11360. },
  11361. [
  11362. {
  11363. name: "Normal",
  11364. height: math.unit(11 + 8 / 12, "feet")
  11365. },
  11366. {
  11367. name: "Macro",
  11368. height: math.unit(850, "feet"),
  11369. default: true
  11370. },
  11371. {
  11372. name: "Macro+",
  11373. height: math.unit(1.5, "km"),
  11374. default: true
  11375. },
  11376. {
  11377. name: "Megamacro",
  11378. height: math.unit(80, "miles")
  11379. },
  11380. {
  11381. name: "Gigamacro",
  11382. height: math.unit(3500, "miles")
  11383. },
  11384. ]
  11385. ))
  11386. characterMakers.push(() => makeCharacter(
  11387. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11388. {
  11389. side: {
  11390. height: math.unit(1.9, "meters"),
  11391. weight: math.unit(326, "kg"),
  11392. name: "Side",
  11393. image: {
  11394. source: "./media/characters/levi/side.svg",
  11395. extra: 1704 / 1334,
  11396. bottom: 0.02
  11397. }
  11398. },
  11399. },
  11400. [
  11401. {
  11402. name: "Normal",
  11403. height: math.unit(1.9, "meters"),
  11404. default: true
  11405. },
  11406. {
  11407. name: "Macro",
  11408. height: math.unit(20, "meters")
  11409. },
  11410. {
  11411. name: "Macro+",
  11412. height: math.unit(200, "meters")
  11413. },
  11414. {
  11415. name: "Megamacro",
  11416. height: math.unit(2, "km")
  11417. },
  11418. {
  11419. name: "Megamacro+",
  11420. height: math.unit(20, "km")
  11421. },
  11422. {
  11423. name: "Gigamacro",
  11424. height: math.unit(2500, "km")
  11425. },
  11426. {
  11427. name: "Gigamacro+",
  11428. height: math.unit(120000, "km")
  11429. },
  11430. {
  11431. name: "Teramacro",
  11432. height: math.unit(7.77e6, "km")
  11433. },
  11434. ]
  11435. ))
  11436. characterMakers.push(() => makeCharacter(
  11437. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11438. {
  11439. front: {
  11440. height: math.unit(6 + 4/12, "feet"),
  11441. weight: math.unit(190, "lb"),
  11442. name: "Front",
  11443. image: {
  11444. source: "./media/characters/bmc/front.svg",
  11445. extra: 1626/1472,
  11446. bottom: 79/1705
  11447. }
  11448. },
  11449. back: {
  11450. height: math.unit(6 + 4/12, "feet"),
  11451. weight: math.unit(190, "lb"),
  11452. name: "Back",
  11453. image: {
  11454. source: "./media/characters/bmc/back.svg",
  11455. extra: 1640/1479,
  11456. bottom: 45/1685
  11457. }
  11458. },
  11459. frontArmor: {
  11460. height: math.unit(6 + 4/12, "feet"),
  11461. weight: math.unit(190, "lb"),
  11462. name: "Front-armor",
  11463. image: {
  11464. source: "./media/characters/bmc/front-armor.svg",
  11465. extra: 1538/1468,
  11466. bottom: 79/1617
  11467. }
  11468. },
  11469. },
  11470. [
  11471. {
  11472. name: "Human-sized",
  11473. height: math.unit(6 + 4 / 12, "feet")
  11474. },
  11475. {
  11476. name: "Interactive Size",
  11477. height: math.unit(25, "feet")
  11478. },
  11479. {
  11480. name: "Small",
  11481. height: math.unit(250, "feet")
  11482. },
  11483. {
  11484. name: "Normal",
  11485. height: math.unit(1250, "feet"),
  11486. default: true
  11487. },
  11488. {
  11489. name: "Good Day",
  11490. height: math.unit(88, "miles")
  11491. },
  11492. {
  11493. name: "Largest Measured Size",
  11494. height: math.unit(105.960, "galaxies")
  11495. },
  11496. ]
  11497. ))
  11498. characterMakers.push(() => makeCharacter(
  11499. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11500. {
  11501. front: {
  11502. height: math.unit(20, "feet"),
  11503. weight: math.unit(2016, "kg"),
  11504. name: "Front",
  11505. image: {
  11506. source: "./media/characters/sven-the-kaiju/front.svg",
  11507. extra: 1277/1250,
  11508. bottom: 35/1312
  11509. }
  11510. },
  11511. mouth: {
  11512. height: math.unit(1.85, "feet"),
  11513. name: "Mouth",
  11514. image: {
  11515. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11516. }
  11517. },
  11518. },
  11519. [
  11520. {
  11521. name: "Fairy",
  11522. height: math.unit(6, "inches")
  11523. },
  11524. {
  11525. name: "Normal",
  11526. height: math.unit(20, "feet"),
  11527. default: true
  11528. },
  11529. {
  11530. name: "Rampage",
  11531. height: math.unit(200, "feet")
  11532. },
  11533. {
  11534. name: "Archfey Forest Guardian",
  11535. height: math.unit(1, "mile")
  11536. },
  11537. ]
  11538. ))
  11539. characterMakers.push(() => makeCharacter(
  11540. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11541. {
  11542. front: {
  11543. height: math.unit(4, "meters"),
  11544. weight: math.unit(2, "tons"),
  11545. name: "Front",
  11546. image: {
  11547. source: "./media/characters/marik/front.svg",
  11548. extra: 1057 / 1003,
  11549. bottom: 0.08
  11550. }
  11551. },
  11552. },
  11553. [
  11554. {
  11555. name: "Normal",
  11556. height: math.unit(4, "meters"),
  11557. default: true
  11558. },
  11559. {
  11560. name: "Macro",
  11561. height: math.unit(20, "meters")
  11562. },
  11563. {
  11564. name: "Megamacro",
  11565. height: math.unit(50, "km")
  11566. },
  11567. {
  11568. name: "Gigamacro",
  11569. height: math.unit(100, "km")
  11570. },
  11571. {
  11572. name: "Alpha Macro",
  11573. height: math.unit(7.88e7, "yottameters")
  11574. },
  11575. ]
  11576. ))
  11577. characterMakers.push(() => makeCharacter(
  11578. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11579. {
  11580. front: {
  11581. height: math.unit(6, "feet"),
  11582. weight: math.unit(110, "lb"),
  11583. name: "Front",
  11584. image: {
  11585. source: "./media/characters/mel/front.svg",
  11586. extra: 736 / 617,
  11587. bottom: 0.017
  11588. }
  11589. },
  11590. },
  11591. [
  11592. {
  11593. name: "Pico",
  11594. height: math.unit(3, "pm")
  11595. },
  11596. {
  11597. name: "Nano",
  11598. height: math.unit(3, "nm")
  11599. },
  11600. {
  11601. name: "Micro",
  11602. height: math.unit(0.3, "mm"),
  11603. default: true
  11604. },
  11605. {
  11606. name: "Micro+",
  11607. height: math.unit(3, "mm")
  11608. },
  11609. {
  11610. name: "Normal",
  11611. height: math.unit(5 + 10.5 / 12, "feet")
  11612. },
  11613. ]
  11614. ))
  11615. characterMakers.push(() => makeCharacter(
  11616. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11617. {
  11618. kaiju: {
  11619. height: math.unit(1.75, "meters"),
  11620. weight: math.unit(55, "kg"),
  11621. name: "Kaiju",
  11622. image: {
  11623. source: "./media/characters/lykonous/kaiju.svg",
  11624. extra: 1055 / 946,
  11625. bottom: 0.135
  11626. }
  11627. },
  11628. },
  11629. [
  11630. {
  11631. name: "Normal",
  11632. height: math.unit(2.5, "meters"),
  11633. default: true
  11634. },
  11635. {
  11636. name: "Kaiju Dragon",
  11637. height: math.unit(60, "meters")
  11638. },
  11639. {
  11640. name: "Mega Kaiju",
  11641. height: math.unit(120, "km")
  11642. },
  11643. {
  11644. name: "Giga Kaiju",
  11645. height: math.unit(200, "megameters")
  11646. },
  11647. {
  11648. name: "Terra Kaiju",
  11649. height: math.unit(400, "gigameters")
  11650. },
  11651. {
  11652. name: "Kaiju Dragon God",
  11653. height: math.unit(13000, "exaparsecs")
  11654. },
  11655. ]
  11656. ))
  11657. characterMakers.push(() => makeCharacter(
  11658. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11659. {
  11660. front: {
  11661. height: math.unit(6, "feet"),
  11662. weight: math.unit(150, "lb"),
  11663. name: "Front",
  11664. image: {
  11665. source: "./media/characters/blü/front.svg",
  11666. extra: 1883 / 1564,
  11667. bottom: 0.031
  11668. }
  11669. },
  11670. },
  11671. [
  11672. {
  11673. name: "Normal",
  11674. height: math.unit(13, "feet"),
  11675. default: true
  11676. },
  11677. {
  11678. name: "Big Boi",
  11679. height: math.unit(150, "meters")
  11680. },
  11681. {
  11682. name: "Mini Stomper",
  11683. height: math.unit(300, "meters")
  11684. },
  11685. {
  11686. name: "Macro",
  11687. height: math.unit(1000, "meters")
  11688. },
  11689. {
  11690. name: "Megamacro",
  11691. height: math.unit(11000, "meters")
  11692. },
  11693. {
  11694. name: "Gigamacro",
  11695. height: math.unit(11000, "km")
  11696. },
  11697. {
  11698. name: "Teramacro",
  11699. height: math.unit(420000, "km")
  11700. },
  11701. {
  11702. name: "Examacro",
  11703. height: math.unit(120, "parsecs")
  11704. },
  11705. {
  11706. name: "God Tho",
  11707. height: math.unit(98000000000, "parsecs")
  11708. },
  11709. ]
  11710. ))
  11711. characterMakers.push(() => makeCharacter(
  11712. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11713. {
  11714. taurFront: {
  11715. height: math.unit(6, "feet"),
  11716. weight: math.unit(200, "lb"),
  11717. name: "Taur (Front)",
  11718. image: {
  11719. source: "./media/characters/scales/taur-front.svg",
  11720. extra: 1,
  11721. bottom: 0.05
  11722. }
  11723. },
  11724. taurBack: {
  11725. height: math.unit(6, "feet"),
  11726. weight: math.unit(200, "lb"),
  11727. name: "Taur (Back)",
  11728. image: {
  11729. source: "./media/characters/scales/taur-back.svg",
  11730. extra: 1,
  11731. bottom: 0.08
  11732. }
  11733. },
  11734. anthro: {
  11735. height: math.unit(6 * 7 / 12, "feet"),
  11736. weight: math.unit(100, "lb"),
  11737. name: "Anthro",
  11738. image: {
  11739. source: "./media/characters/scales/anthro.svg",
  11740. extra: 1,
  11741. bottom: 0.06
  11742. }
  11743. },
  11744. },
  11745. [
  11746. {
  11747. name: "Normal",
  11748. height: math.unit(12, "feet"),
  11749. default: true
  11750. },
  11751. ]
  11752. ))
  11753. characterMakers.push(() => makeCharacter(
  11754. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11755. {
  11756. front: {
  11757. height: math.unit(6, "feet"),
  11758. weight: math.unit(150, "lb"),
  11759. name: "Front",
  11760. image: {
  11761. source: "./media/characters/koragos/front.svg",
  11762. extra: 841 / 794,
  11763. bottom: 0.035
  11764. }
  11765. },
  11766. back: {
  11767. height: math.unit(6, "feet"),
  11768. weight: math.unit(150, "lb"),
  11769. name: "Back",
  11770. image: {
  11771. source: "./media/characters/koragos/back.svg",
  11772. extra: 841 / 810,
  11773. bottom: 0.022
  11774. }
  11775. },
  11776. },
  11777. [
  11778. {
  11779. name: "Normal",
  11780. height: math.unit(6 + 11 / 12, "feet"),
  11781. default: true
  11782. },
  11783. {
  11784. name: "Macro",
  11785. height: math.unit(490, "feet")
  11786. },
  11787. {
  11788. name: "Megamacro",
  11789. height: math.unit(10, "miles")
  11790. },
  11791. {
  11792. name: "Gigamacro",
  11793. height: math.unit(50, "miles")
  11794. },
  11795. ]
  11796. ))
  11797. characterMakers.push(() => makeCharacter(
  11798. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11799. {
  11800. front: {
  11801. height: math.unit(6, "feet"),
  11802. weight: math.unit(250, "lb"),
  11803. name: "Front",
  11804. image: {
  11805. source: "./media/characters/xylrem/front.svg",
  11806. extra: 3323 / 3050,
  11807. bottom: 0.065
  11808. }
  11809. },
  11810. },
  11811. [
  11812. {
  11813. name: "Micro",
  11814. height: math.unit(4, "feet")
  11815. },
  11816. {
  11817. name: "Normal",
  11818. height: math.unit(16, "feet"),
  11819. default: true
  11820. },
  11821. {
  11822. name: "Macro",
  11823. height: math.unit(2720, "feet")
  11824. },
  11825. {
  11826. name: "Megamacro",
  11827. height: math.unit(25000, "miles")
  11828. },
  11829. ]
  11830. ))
  11831. characterMakers.push(() => makeCharacter(
  11832. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11833. {
  11834. front: {
  11835. height: math.unit(8, "feet"),
  11836. weight: math.unit(250, "kg"),
  11837. name: "Front",
  11838. image: {
  11839. source: "./media/characters/ikideru/front.svg",
  11840. extra: 930 / 870,
  11841. bottom: 0.087
  11842. }
  11843. },
  11844. back: {
  11845. height: math.unit(8, "feet"),
  11846. weight: math.unit(250, "kg"),
  11847. name: "Back",
  11848. image: {
  11849. source: "./media/characters/ikideru/back.svg",
  11850. extra: 919 / 852,
  11851. bottom: 0.055
  11852. }
  11853. },
  11854. },
  11855. [
  11856. {
  11857. name: "Rare",
  11858. height: math.unit(8, "feet"),
  11859. default: true
  11860. },
  11861. {
  11862. name: "Playful Loom",
  11863. height: math.unit(80, "feet")
  11864. },
  11865. {
  11866. name: "City Leaner",
  11867. height: math.unit(230, "feet")
  11868. },
  11869. {
  11870. name: "Megamacro",
  11871. height: math.unit(2500, "feet")
  11872. },
  11873. {
  11874. name: "Gigamacro",
  11875. height: math.unit(26400, "feet")
  11876. },
  11877. {
  11878. name: "Tectonic Shifter",
  11879. height: math.unit(1.7, "megameters")
  11880. },
  11881. {
  11882. name: "Planet Carer",
  11883. height: math.unit(21, "megameters")
  11884. },
  11885. {
  11886. name: "God",
  11887. height: math.unit(11157.22, "parsecs")
  11888. },
  11889. ]
  11890. ))
  11891. characterMakers.push(() => makeCharacter(
  11892. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11893. {
  11894. front: {
  11895. height: math.unit(6, "feet"),
  11896. weight: math.unit(120, "lb"),
  11897. name: "Front",
  11898. image: {
  11899. source: "./media/characters/neo/front.svg"
  11900. }
  11901. },
  11902. },
  11903. [
  11904. {
  11905. name: "Micro",
  11906. height: math.unit(2, "inches"),
  11907. default: true
  11908. },
  11909. {
  11910. name: "Human Size",
  11911. height: math.unit(5 + 8 / 12, "feet")
  11912. },
  11913. ]
  11914. ))
  11915. characterMakers.push(() => makeCharacter(
  11916. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11917. {
  11918. front: {
  11919. height: math.unit(13 + 10 / 12, "feet"),
  11920. weight: math.unit(5320, "lb"),
  11921. name: "Front",
  11922. image: {
  11923. source: "./media/characters/chauncey-chantz/front.svg",
  11924. extra: 1587 / 1435,
  11925. bottom: 0.02
  11926. }
  11927. },
  11928. },
  11929. [
  11930. {
  11931. name: "Normal",
  11932. height: math.unit(13 + 10 / 12, "feet"),
  11933. default: true
  11934. },
  11935. {
  11936. name: "Macro",
  11937. height: math.unit(45, "feet")
  11938. },
  11939. {
  11940. name: "Megamacro",
  11941. height: math.unit(250, "miles")
  11942. },
  11943. {
  11944. name: "Planetary",
  11945. height: math.unit(10000, "miles")
  11946. },
  11947. {
  11948. name: "Galactic",
  11949. height: math.unit(40000, "parsecs")
  11950. },
  11951. {
  11952. name: "Universal",
  11953. height: math.unit(1, "yottameter")
  11954. },
  11955. ]
  11956. ))
  11957. characterMakers.push(() => makeCharacter(
  11958. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11959. {
  11960. front: {
  11961. height: math.unit(6, "feet"),
  11962. weight: math.unit(150, "lb"),
  11963. name: "Front",
  11964. image: {
  11965. source: "./media/characters/epifox/front.svg",
  11966. extra: 1,
  11967. bottom: 0.075
  11968. }
  11969. },
  11970. },
  11971. [
  11972. {
  11973. name: "Micro",
  11974. height: math.unit(6, "inches")
  11975. },
  11976. {
  11977. name: "Normal",
  11978. height: math.unit(12, "feet"),
  11979. default: true
  11980. },
  11981. {
  11982. name: "Macro",
  11983. height: math.unit(3810, "feet")
  11984. },
  11985. {
  11986. name: "Megamacro",
  11987. height: math.unit(500, "miles")
  11988. },
  11989. ]
  11990. ))
  11991. characterMakers.push(() => makeCharacter(
  11992. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11993. {
  11994. front: {
  11995. height: math.unit(1.8796, "m"),
  11996. weight: math.unit(230, "lb"),
  11997. name: "Front",
  11998. image: {
  11999. source: "./media/characters/colin-t/front.svg",
  12000. extra: 1272 / 1193,
  12001. bottom: 0.07
  12002. }
  12003. },
  12004. },
  12005. [
  12006. {
  12007. name: "Micro",
  12008. height: math.unit(0.571, "meters")
  12009. },
  12010. {
  12011. name: "Normal",
  12012. height: math.unit(1.8796, "meters"),
  12013. default: true
  12014. },
  12015. {
  12016. name: "Tall",
  12017. height: math.unit(4, "meters")
  12018. },
  12019. {
  12020. name: "Macro",
  12021. height: math.unit(67.241, "meters")
  12022. },
  12023. {
  12024. name: "Megamacro",
  12025. height: math.unit(371.856, "meters")
  12026. },
  12027. {
  12028. name: "Planetary",
  12029. height: math.unit(12631.5689, "km")
  12030. },
  12031. ]
  12032. ))
  12033. characterMakers.push(() => makeCharacter(
  12034. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12035. {
  12036. front: {
  12037. height: math.unit(1.85, "meters"),
  12038. weight: math.unit(80, "kg"),
  12039. name: "Front",
  12040. image: {
  12041. source: "./media/characters/matvei/front.svg",
  12042. extra: 614 / 594,
  12043. bottom: 0.01
  12044. }
  12045. },
  12046. },
  12047. [
  12048. {
  12049. name: "Normal",
  12050. height: math.unit(1.85, "meters"),
  12051. default: true
  12052. },
  12053. ]
  12054. ))
  12055. characterMakers.push(() => makeCharacter(
  12056. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12057. {
  12058. front: {
  12059. height: math.unit(5 + 9 / 12, "feet"),
  12060. weight: math.unit(70, "lb"),
  12061. name: "Front",
  12062. image: {
  12063. source: "./media/characters/quincy/front.svg",
  12064. extra: 3041 / 2751
  12065. }
  12066. },
  12067. back: {
  12068. height: math.unit(5 + 9 / 12, "feet"),
  12069. weight: math.unit(70, "lb"),
  12070. name: "Back",
  12071. image: {
  12072. source: "./media/characters/quincy/back.svg",
  12073. extra: 3041 / 2751
  12074. }
  12075. },
  12076. flying: {
  12077. height: math.unit(5 + 4 / 12, "feet"),
  12078. weight: math.unit(70, "lb"),
  12079. name: "Flying",
  12080. image: {
  12081. source: "./media/characters/quincy/flying.svg",
  12082. extra: 1044 / 930
  12083. }
  12084. },
  12085. },
  12086. [
  12087. {
  12088. name: "Micro",
  12089. height: math.unit(3, "cm")
  12090. },
  12091. {
  12092. name: "Normal",
  12093. height: math.unit(5 + 9 / 12, "feet")
  12094. },
  12095. {
  12096. name: "Macro",
  12097. height: math.unit(200, "meters"),
  12098. default: true
  12099. },
  12100. {
  12101. name: "Megamacro",
  12102. height: math.unit(1000, "meters")
  12103. },
  12104. ]
  12105. ))
  12106. characterMakers.push(() => makeCharacter(
  12107. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12108. {
  12109. front: {
  12110. height: math.unit(3 + 11/12, "feet"),
  12111. weight: math.unit(50, "lb"),
  12112. name: "Front",
  12113. image: {
  12114. source: "./media/characters/vanrel/front.svg",
  12115. extra: 1104/949,
  12116. bottom: 52/1156
  12117. }
  12118. },
  12119. back: {
  12120. height: math.unit(3 + 11/12, "feet"),
  12121. weight: math.unit(50, "lb"),
  12122. name: "Back",
  12123. image: {
  12124. source: "./media/characters/vanrel/back.svg",
  12125. extra: 1119/976,
  12126. bottom: 37/1156
  12127. }
  12128. },
  12129. tome: {
  12130. height: math.unit(1.35, "feet"),
  12131. weight: math.unit(10, "lb"),
  12132. name: "Vanrel's Tome",
  12133. rename: true,
  12134. image: {
  12135. source: "./media/characters/vanrel/tome.svg"
  12136. }
  12137. },
  12138. beans: {
  12139. height: math.unit(0.89, "feet"),
  12140. name: "Beans",
  12141. image: {
  12142. source: "./media/characters/vanrel/beans.svg"
  12143. }
  12144. },
  12145. },
  12146. [
  12147. {
  12148. name: "Normal",
  12149. height: math.unit(3 + 11/12, "feet"),
  12150. default: true
  12151. },
  12152. ]
  12153. ))
  12154. characterMakers.push(() => makeCharacter(
  12155. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12156. {
  12157. front: {
  12158. height: math.unit(7 + 5 / 12, "feet"),
  12159. name: "Front",
  12160. image: {
  12161. source: "./media/characters/kuiper-vanrel/front.svg",
  12162. extra: 1219/1169,
  12163. bottom: 69/1288
  12164. }
  12165. },
  12166. back: {
  12167. height: math.unit(7 + 5 / 12, "feet"),
  12168. name: "Back",
  12169. image: {
  12170. source: "./media/characters/kuiper-vanrel/back.svg",
  12171. extra: 1236/1193,
  12172. bottom: 27/1263
  12173. }
  12174. },
  12175. foot: {
  12176. height: math.unit(0.55, "meters"),
  12177. name: "Foot",
  12178. image: {
  12179. source: "./media/characters/kuiper-vanrel/foot.svg",
  12180. }
  12181. },
  12182. battle: {
  12183. height: math.unit(6.824, "feet"),
  12184. name: "Battle",
  12185. image: {
  12186. source: "./media/characters/kuiper-vanrel/battle.svg",
  12187. extra: 1466 / 1327,
  12188. bottom: 29 / 1492.5
  12189. }
  12190. },
  12191. meerkui: {
  12192. height: math.unit(18, "inches"),
  12193. name: "Meerkui",
  12194. image: {
  12195. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12196. extra: 1354/1289,
  12197. bottom: 69/1423
  12198. }
  12199. },
  12200. },
  12201. [
  12202. {
  12203. name: "Normal",
  12204. height: math.unit(7 + 5 / 12, "feet"),
  12205. default: true
  12206. },
  12207. ]
  12208. ))
  12209. characterMakers.push(() => makeCharacter(
  12210. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12211. {
  12212. front: {
  12213. height: math.unit(8 + 5 / 12, "feet"),
  12214. name: "Front",
  12215. image: {
  12216. source: "./media/characters/keset-vanrel/front.svg",
  12217. extra: 1231/1148,
  12218. bottom: 82/1313
  12219. }
  12220. },
  12221. back: {
  12222. height: math.unit(8 + 5 / 12, "feet"),
  12223. name: "Back",
  12224. image: {
  12225. source: "./media/characters/keset-vanrel/back.svg",
  12226. extra: 1240/1174,
  12227. bottom: 33/1273
  12228. }
  12229. },
  12230. hand: {
  12231. height: math.unit(0.6, "meters"),
  12232. name: "Hand",
  12233. image: {
  12234. source: "./media/characters/keset-vanrel/hand.svg"
  12235. }
  12236. },
  12237. foot: {
  12238. height: math.unit(0.94978, "meters"),
  12239. name: "Foot",
  12240. image: {
  12241. source: "./media/characters/keset-vanrel/foot.svg"
  12242. }
  12243. },
  12244. battle: {
  12245. height: math.unit(7.408, "feet"),
  12246. name: "Battle",
  12247. image: {
  12248. source: "./media/characters/keset-vanrel/battle.svg",
  12249. extra: 1890 / 1386,
  12250. bottom: 73.28 / 1970
  12251. }
  12252. },
  12253. },
  12254. [
  12255. {
  12256. name: "Normal",
  12257. height: math.unit(8 + 5 / 12, "feet"),
  12258. default: true
  12259. },
  12260. ]
  12261. ))
  12262. characterMakers.push(() => makeCharacter(
  12263. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12264. {
  12265. front: {
  12266. height: math.unit(6, "feet"),
  12267. weight: math.unit(150, "lb"),
  12268. name: "Front",
  12269. image: {
  12270. source: "./media/characters/neos/front.svg",
  12271. extra: 1696 / 992,
  12272. bottom: 0.14
  12273. }
  12274. },
  12275. },
  12276. [
  12277. {
  12278. name: "Normal",
  12279. height: math.unit(54, "cm"),
  12280. default: true
  12281. },
  12282. {
  12283. name: "Macro",
  12284. height: math.unit(100, "m")
  12285. },
  12286. {
  12287. name: "Megamacro",
  12288. height: math.unit(10, "km")
  12289. },
  12290. {
  12291. name: "Megamacro+",
  12292. height: math.unit(100, "km")
  12293. },
  12294. {
  12295. name: "Gigamacro",
  12296. height: math.unit(100, "Mm")
  12297. },
  12298. {
  12299. name: "Teramacro",
  12300. height: math.unit(100, "Gm")
  12301. },
  12302. {
  12303. name: "Examacro",
  12304. height: math.unit(100, "Em")
  12305. },
  12306. {
  12307. name: "Godly",
  12308. height: math.unit(10000, "Ym")
  12309. },
  12310. {
  12311. name: "Beyond Godly",
  12312. height: math.unit(25, "multiverses")
  12313. },
  12314. ]
  12315. ))
  12316. characterMakers.push(() => makeCharacter(
  12317. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12318. {
  12319. feminine: {
  12320. height: math.unit(5, "feet"),
  12321. weight: math.unit(100, "lb"),
  12322. name: "Feminine",
  12323. image: {
  12324. source: "./media/characters/sammy-mouse/feminine.svg",
  12325. extra: 2526 / 2425,
  12326. bottom: 0.123
  12327. }
  12328. },
  12329. masculine: {
  12330. height: math.unit(5, "feet"),
  12331. weight: math.unit(100, "lb"),
  12332. name: "Masculine",
  12333. image: {
  12334. source: "./media/characters/sammy-mouse/masculine.svg",
  12335. extra: 2526 / 2425,
  12336. bottom: 0.123
  12337. }
  12338. },
  12339. },
  12340. [
  12341. {
  12342. name: "Micro",
  12343. height: math.unit(5, "inches")
  12344. },
  12345. {
  12346. name: "Normal",
  12347. height: math.unit(5, "feet"),
  12348. default: true
  12349. },
  12350. {
  12351. name: "Macro",
  12352. height: math.unit(60, "feet")
  12353. },
  12354. ]
  12355. ))
  12356. characterMakers.push(() => makeCharacter(
  12357. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12358. {
  12359. front: {
  12360. height: math.unit(4, "feet"),
  12361. weight: math.unit(50, "lb"),
  12362. name: "Front",
  12363. image: {
  12364. source: "./media/characters/kole/front.svg",
  12365. extra: 1423 / 1303,
  12366. bottom: 0.025
  12367. }
  12368. },
  12369. back: {
  12370. height: math.unit(4, "feet"),
  12371. weight: math.unit(50, "lb"),
  12372. name: "Back",
  12373. image: {
  12374. source: "./media/characters/kole/back.svg",
  12375. extra: 1426 / 1280,
  12376. bottom: 0.02
  12377. }
  12378. },
  12379. },
  12380. [
  12381. {
  12382. name: "Normal",
  12383. height: math.unit(4, "feet"),
  12384. default: true
  12385. },
  12386. ]
  12387. ))
  12388. characterMakers.push(() => makeCharacter(
  12389. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12390. {
  12391. front: {
  12392. height: math.unit(2.5, "feet"),
  12393. weight: math.unit(32, "lb"),
  12394. name: "Front",
  12395. image: {
  12396. source: "./media/characters/rufran/front.svg",
  12397. extra: 1313/885,
  12398. bottom: 94/1407
  12399. }
  12400. },
  12401. side: {
  12402. height: math.unit(2.5, "feet"),
  12403. weight: math.unit(32, "lb"),
  12404. name: "Side",
  12405. image: {
  12406. source: "./media/characters/rufran/side.svg",
  12407. extra: 1109/852,
  12408. bottom: 118/1227
  12409. }
  12410. },
  12411. back: {
  12412. height: math.unit(2.5, "feet"),
  12413. weight: math.unit(32, "lb"),
  12414. name: "Back",
  12415. image: {
  12416. source: "./media/characters/rufran/back.svg",
  12417. extra: 1280/878,
  12418. bottom: 131/1411
  12419. }
  12420. },
  12421. mouth: {
  12422. height: math.unit(1.13, "feet"),
  12423. name: "Mouth",
  12424. image: {
  12425. source: "./media/characters/rufran/mouth.svg"
  12426. }
  12427. },
  12428. foot: {
  12429. height: math.unit(1.33, "feet"),
  12430. name: "Foot",
  12431. image: {
  12432. source: "./media/characters/rufran/foot.svg"
  12433. }
  12434. },
  12435. koboldFront: {
  12436. height: math.unit(2 + 6 / 12, "feet"),
  12437. weight: math.unit(20, "lb"),
  12438. name: "Front (Kobold)",
  12439. image: {
  12440. source: "./media/characters/rufran/kobold-front.svg",
  12441. extra: 2041 / 1839,
  12442. bottom: 0.055
  12443. }
  12444. },
  12445. koboldBack: {
  12446. height: math.unit(2 + 6 / 12, "feet"),
  12447. weight: math.unit(20, "lb"),
  12448. name: "Back (Kobold)",
  12449. image: {
  12450. source: "./media/characters/rufran/kobold-back.svg",
  12451. extra: 2054 / 1839,
  12452. bottom: 0.01
  12453. }
  12454. },
  12455. koboldHand: {
  12456. height: math.unit(0.2166, "meters"),
  12457. name: "Hand (Kobold)",
  12458. image: {
  12459. source: "./media/characters/rufran/kobold-hand.svg"
  12460. }
  12461. },
  12462. koboldFoot: {
  12463. height: math.unit(0.185, "meters"),
  12464. name: "Foot (Kobold)",
  12465. image: {
  12466. source: "./media/characters/rufran/kobold-foot.svg"
  12467. }
  12468. },
  12469. },
  12470. [
  12471. {
  12472. name: "Micro",
  12473. height: math.unit(1, "inch")
  12474. },
  12475. {
  12476. name: "Normal",
  12477. height: math.unit(2 + 6 / 12, "feet"),
  12478. default: true
  12479. },
  12480. {
  12481. name: "Big",
  12482. height: math.unit(60, "feet")
  12483. },
  12484. {
  12485. name: "Macro",
  12486. height: math.unit(325, "feet")
  12487. },
  12488. ]
  12489. ))
  12490. characterMakers.push(() => makeCharacter(
  12491. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12492. {
  12493. front: {
  12494. height: math.unit(0.3, "meters"),
  12495. weight: math.unit(3.5, "kg"),
  12496. name: "Front",
  12497. image: {
  12498. source: "./media/characters/chip/front.svg",
  12499. extra: 748 / 674
  12500. }
  12501. },
  12502. },
  12503. [
  12504. {
  12505. name: "Micro",
  12506. height: math.unit(1, "inch"),
  12507. default: true
  12508. },
  12509. ]
  12510. ))
  12511. characterMakers.push(() => makeCharacter(
  12512. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12513. {
  12514. side: {
  12515. height: math.unit(2.3, "meters"),
  12516. weight: math.unit(3500, "lb"),
  12517. name: "Side",
  12518. image: {
  12519. source: "./media/characters/torvid/side.svg",
  12520. extra: 1972 / 722,
  12521. bottom: 0.035
  12522. }
  12523. },
  12524. },
  12525. [
  12526. {
  12527. name: "Normal",
  12528. height: math.unit(2.3, "meters"),
  12529. default: true
  12530. },
  12531. ]
  12532. ))
  12533. characterMakers.push(() => makeCharacter(
  12534. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12535. {
  12536. front: {
  12537. height: math.unit(2, "meters"),
  12538. weight: math.unit(150.5, "kg"),
  12539. name: "Front",
  12540. image: {
  12541. source: "./media/characters/susan/front.svg",
  12542. extra: 693 / 635,
  12543. bottom: 0.05
  12544. }
  12545. },
  12546. },
  12547. [
  12548. {
  12549. name: "Megamacro",
  12550. height: math.unit(505, "miles"),
  12551. default: true
  12552. },
  12553. ]
  12554. ))
  12555. characterMakers.push(() => makeCharacter(
  12556. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12557. {
  12558. front: {
  12559. height: math.unit(6, "feet"),
  12560. weight: math.unit(150, "lb"),
  12561. name: "Front",
  12562. image: {
  12563. source: "./media/characters/raindrops/front.svg",
  12564. extra: 2655 / 2461,
  12565. bottom: 49 / 2705
  12566. }
  12567. },
  12568. back: {
  12569. height: math.unit(6, "feet"),
  12570. weight: math.unit(150, "lb"),
  12571. name: "Back",
  12572. image: {
  12573. source: "./media/characters/raindrops/back.svg",
  12574. extra: 2574 / 2400,
  12575. bottom: 65 / 2634
  12576. }
  12577. },
  12578. },
  12579. [
  12580. {
  12581. name: "Micro",
  12582. height: math.unit(6, "inches")
  12583. },
  12584. {
  12585. name: "Normal",
  12586. height: math.unit(6 + 2 / 12, "feet")
  12587. },
  12588. {
  12589. name: "Macro",
  12590. height: math.unit(131, "feet"),
  12591. default: true
  12592. },
  12593. {
  12594. name: "Megamacro",
  12595. height: math.unit(15, "miles")
  12596. },
  12597. {
  12598. name: "Gigamacro",
  12599. height: math.unit(4000, "miles")
  12600. },
  12601. {
  12602. name: "Teramacro",
  12603. height: math.unit(315000, "miles")
  12604. },
  12605. ]
  12606. ))
  12607. characterMakers.push(() => makeCharacter(
  12608. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12609. {
  12610. front: {
  12611. height: math.unit(2.794, "meters"),
  12612. weight: math.unit(325, "kg"),
  12613. name: "Front",
  12614. image: {
  12615. source: "./media/characters/tezwa/front.svg",
  12616. extra: 2083 / 1906,
  12617. bottom: 0.031
  12618. }
  12619. },
  12620. foot: {
  12621. height: math.unit(0.687, "meters"),
  12622. name: "Foot",
  12623. image: {
  12624. source: "./media/characters/tezwa/foot.svg"
  12625. }
  12626. },
  12627. },
  12628. [
  12629. {
  12630. name: "Normal",
  12631. height: math.unit(9 + 2 / 12, "feet"),
  12632. default: true
  12633. },
  12634. ]
  12635. ))
  12636. characterMakers.push(() => makeCharacter(
  12637. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12638. {
  12639. front: {
  12640. height: math.unit(58, "feet"),
  12641. weight: math.unit(89000, "lb"),
  12642. name: "Front",
  12643. image: {
  12644. source: "./media/characters/typhus/front.svg",
  12645. extra: 816 / 800,
  12646. bottom: 0.065
  12647. }
  12648. },
  12649. },
  12650. [
  12651. {
  12652. name: "Macro",
  12653. height: math.unit(58, "feet"),
  12654. default: true
  12655. },
  12656. ]
  12657. ))
  12658. characterMakers.push(() => makeCharacter(
  12659. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12660. {
  12661. front: {
  12662. height: math.unit(12, "feet"),
  12663. weight: math.unit(6, "tonnes"),
  12664. name: "Front",
  12665. image: {
  12666. source: "./media/characters/lyra-von-wulf/front.svg",
  12667. extra: 1,
  12668. bottom: 0.10
  12669. }
  12670. },
  12671. frontMecha: {
  12672. height: math.unit(12, "feet"),
  12673. weight: math.unit(12, "tonnes"),
  12674. name: "Front (Mecha)",
  12675. image: {
  12676. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12677. extra: 1,
  12678. bottom: 0.042
  12679. }
  12680. },
  12681. maw: {
  12682. height: math.unit(2.2, "feet"),
  12683. name: "Maw",
  12684. image: {
  12685. source: "./media/characters/lyra-von-wulf/maw.svg"
  12686. }
  12687. },
  12688. },
  12689. [
  12690. {
  12691. name: "Normal",
  12692. height: math.unit(12, "feet"),
  12693. default: true
  12694. },
  12695. {
  12696. name: "Classic",
  12697. height: math.unit(50, "feet")
  12698. },
  12699. {
  12700. name: "Macro",
  12701. height: math.unit(500, "feet")
  12702. },
  12703. {
  12704. name: "Megamacro",
  12705. height: math.unit(1, "mile")
  12706. },
  12707. {
  12708. name: "Gigamacro",
  12709. height: math.unit(400, "miles")
  12710. },
  12711. {
  12712. name: "Teramacro",
  12713. height: math.unit(22000, "miles")
  12714. },
  12715. {
  12716. name: "Solarmacro",
  12717. height: math.unit(8600000, "miles")
  12718. },
  12719. {
  12720. name: "Galactic",
  12721. height: math.unit(1057000, "lightyears")
  12722. },
  12723. ]
  12724. ))
  12725. characterMakers.push(() => makeCharacter(
  12726. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12727. {
  12728. front: {
  12729. height: math.unit(6 + 10 / 12, "feet"),
  12730. weight: math.unit(150, "lb"),
  12731. name: "Front",
  12732. image: {
  12733. source: "./media/characters/dixon/front.svg",
  12734. extra: 3361 / 3209,
  12735. bottom: 0.01
  12736. }
  12737. },
  12738. },
  12739. [
  12740. {
  12741. name: "Normal",
  12742. height: math.unit(6 + 10 / 12, "feet"),
  12743. default: true
  12744. },
  12745. {
  12746. name: "Big",
  12747. height: math.unit(12, "meters")
  12748. },
  12749. {
  12750. name: "Macro",
  12751. height: math.unit(500, "meters")
  12752. },
  12753. {
  12754. name: "Megamacro",
  12755. height: math.unit(2, "km")
  12756. },
  12757. ]
  12758. ))
  12759. characterMakers.push(() => makeCharacter(
  12760. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12761. {
  12762. front: {
  12763. height: math.unit(185, "cm"),
  12764. weight: math.unit(68, "kg"),
  12765. name: "Front",
  12766. image: {
  12767. source: "./media/characters/kauko/front.svg",
  12768. extra: 1455 / 1421,
  12769. bottom: 0.03
  12770. }
  12771. },
  12772. back: {
  12773. height: math.unit(185, "cm"),
  12774. weight: math.unit(68, "kg"),
  12775. name: "Back",
  12776. image: {
  12777. source: "./media/characters/kauko/back.svg",
  12778. extra: 1455 / 1421,
  12779. bottom: 0.004
  12780. }
  12781. },
  12782. },
  12783. [
  12784. {
  12785. name: "Normal",
  12786. height: math.unit(185, "cm"),
  12787. default: true
  12788. },
  12789. ]
  12790. ))
  12791. characterMakers.push(() => makeCharacter(
  12792. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12793. {
  12794. front: {
  12795. height: math.unit(6, "feet"),
  12796. weight: math.unit(150, "kg"),
  12797. name: "Front",
  12798. image: {
  12799. source: "./media/characters/varg/front.svg",
  12800. extra: 1108 / 1018,
  12801. bottom: 0.0375
  12802. }
  12803. },
  12804. },
  12805. [
  12806. {
  12807. name: "Normal",
  12808. height: math.unit(5, "meters")
  12809. },
  12810. {
  12811. name: "Macro",
  12812. height: math.unit(200, "meters")
  12813. },
  12814. {
  12815. name: "Megamacro",
  12816. height: math.unit(20, "kilometers")
  12817. },
  12818. {
  12819. name: "True Size",
  12820. height: math.unit(211, "km"),
  12821. default: true
  12822. },
  12823. {
  12824. name: "Gigamacro",
  12825. height: math.unit(1000, "km")
  12826. },
  12827. {
  12828. name: "Gigamacro+",
  12829. height: math.unit(8000, "km")
  12830. },
  12831. {
  12832. name: "Teramacro",
  12833. height: math.unit(1000000, "km")
  12834. },
  12835. ]
  12836. ))
  12837. characterMakers.push(() => makeCharacter(
  12838. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12839. {
  12840. front: {
  12841. height: math.unit(7 + 7 / 12, "feet"),
  12842. weight: math.unit(267, "lb"),
  12843. name: "Front",
  12844. image: {
  12845. source: "./media/characters/dayza/front.svg",
  12846. extra: 1262 / 1200,
  12847. bottom: 0.035
  12848. }
  12849. },
  12850. side: {
  12851. height: math.unit(7 + 7 / 12, "feet"),
  12852. weight: math.unit(267, "lb"),
  12853. name: "Side",
  12854. image: {
  12855. source: "./media/characters/dayza/side.svg",
  12856. extra: 1295 / 1245,
  12857. bottom: 0.05
  12858. }
  12859. },
  12860. back: {
  12861. height: math.unit(7 + 7 / 12, "feet"),
  12862. weight: math.unit(267, "lb"),
  12863. name: "Back",
  12864. image: {
  12865. source: "./media/characters/dayza/back.svg",
  12866. extra: 1241 / 1170
  12867. }
  12868. },
  12869. },
  12870. [
  12871. {
  12872. name: "Normal",
  12873. height: math.unit(7 + 7 / 12, "feet"),
  12874. default: true
  12875. },
  12876. {
  12877. name: "Macro",
  12878. height: math.unit(155, "feet")
  12879. },
  12880. ]
  12881. ))
  12882. characterMakers.push(() => makeCharacter(
  12883. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12884. {
  12885. front: {
  12886. height: math.unit(6 + 5 / 12, "feet"),
  12887. weight: math.unit(160, "lb"),
  12888. name: "Front",
  12889. image: {
  12890. source: "./media/characters/xanthos/front.svg",
  12891. extra: 1,
  12892. bottom: 0.04
  12893. }
  12894. },
  12895. back: {
  12896. height: math.unit(6 + 5 / 12, "feet"),
  12897. weight: math.unit(160, "lb"),
  12898. name: "Back",
  12899. image: {
  12900. source: "./media/characters/xanthos/back.svg",
  12901. extra: 1,
  12902. bottom: 0.03
  12903. }
  12904. },
  12905. hand: {
  12906. height: math.unit(0.928, "feet"),
  12907. name: "Hand",
  12908. image: {
  12909. source: "./media/characters/xanthos/hand.svg"
  12910. }
  12911. },
  12912. foot: {
  12913. height: math.unit(1.286, "feet"),
  12914. name: "Foot",
  12915. image: {
  12916. source: "./media/characters/xanthos/foot.svg"
  12917. }
  12918. },
  12919. },
  12920. [
  12921. {
  12922. name: "Normal",
  12923. height: math.unit(6 + 5 / 12, "feet"),
  12924. default: true
  12925. },
  12926. {
  12927. name: "Normal+",
  12928. height: math.unit(6, "meters")
  12929. },
  12930. {
  12931. name: "Macro",
  12932. height: math.unit(40, "feet")
  12933. },
  12934. {
  12935. name: "Macro+",
  12936. height: math.unit(200, "meters")
  12937. },
  12938. {
  12939. name: "Megamacro",
  12940. height: math.unit(20, "km")
  12941. },
  12942. {
  12943. name: "Megamacro+",
  12944. height: math.unit(100, "km")
  12945. },
  12946. {
  12947. name: "Gigamacro",
  12948. height: math.unit(200, "megameters")
  12949. },
  12950. {
  12951. name: "Gigamacro+",
  12952. height: math.unit(1.5, "gigameters")
  12953. },
  12954. ]
  12955. ))
  12956. characterMakers.push(() => makeCharacter(
  12957. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12958. {
  12959. front: {
  12960. height: math.unit(6 + 3 / 12, "feet"),
  12961. weight: math.unit(215, "lb"),
  12962. name: "Front",
  12963. image: {
  12964. source: "./media/characters/grynn/front.svg",
  12965. extra: 4627 / 4209,
  12966. bottom: 0.047
  12967. }
  12968. },
  12969. },
  12970. [
  12971. {
  12972. name: "Micro",
  12973. height: math.unit(6, "inches")
  12974. },
  12975. {
  12976. name: "Normal",
  12977. height: math.unit(6 + 3 / 12, "feet"),
  12978. default: true
  12979. },
  12980. {
  12981. name: "Big",
  12982. height: math.unit(104, "feet")
  12983. },
  12984. {
  12985. name: "Macro",
  12986. height: math.unit(944, "feet")
  12987. },
  12988. {
  12989. name: "Macro+",
  12990. height: math.unit(9480, "feet")
  12991. },
  12992. {
  12993. name: "Megamacro",
  12994. height: math.unit(78752, "feet")
  12995. },
  12996. {
  12997. name: "Megamacro+",
  12998. height: math.unit(630128, "feet")
  12999. },
  13000. {
  13001. name: "Megamacro++",
  13002. height: math.unit(3150695, "feet")
  13003. },
  13004. ]
  13005. ))
  13006. characterMakers.push(() => makeCharacter(
  13007. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13008. {
  13009. front: {
  13010. height: math.unit(7 + 5 / 12, "feet"),
  13011. weight: math.unit(450, "lb"),
  13012. name: "Front",
  13013. image: {
  13014. source: "./media/characters/mocha-aura/front.svg",
  13015. extra: 1907 / 1817,
  13016. bottom: 0.04
  13017. }
  13018. },
  13019. back: {
  13020. height: math.unit(7 + 5 / 12, "feet"),
  13021. weight: math.unit(450, "lb"),
  13022. name: "Back",
  13023. image: {
  13024. source: "./media/characters/mocha-aura/back.svg",
  13025. extra: 1900 / 1825,
  13026. bottom: 0.045
  13027. }
  13028. },
  13029. },
  13030. [
  13031. {
  13032. name: "Nano",
  13033. height: math.unit(1, "nm")
  13034. },
  13035. {
  13036. name: "Megamicro",
  13037. height: math.unit(1, "mm")
  13038. },
  13039. {
  13040. name: "Micro",
  13041. height: math.unit(3, "inches")
  13042. },
  13043. {
  13044. name: "Normal",
  13045. height: math.unit(7 + 5 / 12, "feet"),
  13046. default: true
  13047. },
  13048. {
  13049. name: "Macro",
  13050. height: math.unit(30, "feet")
  13051. },
  13052. {
  13053. name: "Megamacro",
  13054. height: math.unit(3500, "feet")
  13055. },
  13056. {
  13057. name: "Teramacro",
  13058. height: math.unit(500000, "miles")
  13059. },
  13060. {
  13061. name: "Petamacro",
  13062. height: math.unit(50000000000000000, "parsecs")
  13063. },
  13064. ]
  13065. ))
  13066. characterMakers.push(() => makeCharacter(
  13067. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13068. {
  13069. front: {
  13070. height: math.unit(6, "feet"),
  13071. weight: math.unit(150, "lb"),
  13072. name: "Front",
  13073. image: {
  13074. source: "./media/characters/ilisha-devya/front.svg",
  13075. extra: 1,
  13076. bottom: 0.175
  13077. }
  13078. },
  13079. back: {
  13080. height: math.unit(6, "feet"),
  13081. weight: math.unit(150, "lb"),
  13082. name: "Back",
  13083. image: {
  13084. source: "./media/characters/ilisha-devya/back.svg",
  13085. extra: 1,
  13086. bottom: 0.015
  13087. }
  13088. },
  13089. },
  13090. [
  13091. {
  13092. name: "Macro",
  13093. height: math.unit(500, "feet"),
  13094. default: true
  13095. },
  13096. {
  13097. name: "Megamacro",
  13098. height: math.unit(10, "miles")
  13099. },
  13100. {
  13101. name: "Gigamacro",
  13102. height: math.unit(100000, "miles")
  13103. },
  13104. {
  13105. name: "Examacro",
  13106. height: math.unit(1e9, "lightyears")
  13107. },
  13108. {
  13109. name: "Omniversal",
  13110. height: math.unit(1e33, "lightyears")
  13111. },
  13112. {
  13113. name: "Beyond Infinite",
  13114. height: math.unit(1e100, "lightyears")
  13115. },
  13116. ]
  13117. ))
  13118. characterMakers.push(() => makeCharacter(
  13119. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13120. {
  13121. Side: {
  13122. height: math.unit(6, "feet"),
  13123. weight: math.unit(150, "lb"),
  13124. name: "Side",
  13125. image: {
  13126. source: "./media/characters/mira/side.svg",
  13127. extra: 900 / 799,
  13128. bottom: 0.02
  13129. }
  13130. },
  13131. },
  13132. [
  13133. {
  13134. name: "Human Size",
  13135. height: math.unit(6, "feet")
  13136. },
  13137. {
  13138. name: "Macro",
  13139. height: math.unit(100, "feet"),
  13140. default: true
  13141. },
  13142. {
  13143. name: "Megamacro",
  13144. height: math.unit(10, "miles")
  13145. },
  13146. {
  13147. name: "Gigamacro",
  13148. height: math.unit(25000, "miles")
  13149. },
  13150. {
  13151. name: "Teramacro",
  13152. height: math.unit(300, "AU")
  13153. },
  13154. {
  13155. name: "Full Size",
  13156. height: math.unit(4.5e10, "lightyears")
  13157. },
  13158. ]
  13159. ))
  13160. characterMakers.push(() => makeCharacter(
  13161. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13162. {
  13163. front: {
  13164. height: math.unit(6, "feet"),
  13165. weight: math.unit(150, "lb"),
  13166. name: "Front",
  13167. image: {
  13168. source: "./media/characters/holly/front.svg",
  13169. extra: 639 / 606
  13170. }
  13171. },
  13172. back: {
  13173. height: math.unit(6, "feet"),
  13174. weight: math.unit(150, "lb"),
  13175. name: "Back",
  13176. image: {
  13177. source: "./media/characters/holly/back.svg",
  13178. extra: 623 / 598
  13179. }
  13180. },
  13181. frontWorking: {
  13182. height: math.unit(6, "feet"),
  13183. weight: math.unit(150, "lb"),
  13184. name: "Front (Working)",
  13185. image: {
  13186. source: "./media/characters/holly/front-working.svg",
  13187. extra: 607 / 577,
  13188. bottom: 0.048
  13189. }
  13190. },
  13191. },
  13192. [
  13193. {
  13194. name: "Normal",
  13195. height: math.unit(12 + 3 / 12, "feet"),
  13196. default: true
  13197. },
  13198. ]
  13199. ))
  13200. characterMakers.push(() => makeCharacter(
  13201. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13202. {
  13203. front: {
  13204. height: math.unit(6, "feet"),
  13205. weight: math.unit(150, "lb"),
  13206. name: "Front",
  13207. image: {
  13208. source: "./media/characters/porter/front.svg",
  13209. extra: 1,
  13210. bottom: 0.01
  13211. }
  13212. },
  13213. frontRobes: {
  13214. height: math.unit(6, "feet"),
  13215. weight: math.unit(150, "lb"),
  13216. name: "Front (Robes)",
  13217. image: {
  13218. source: "./media/characters/porter/front-robes.svg",
  13219. extra: 1.01,
  13220. bottom: 0.01
  13221. }
  13222. },
  13223. },
  13224. [
  13225. {
  13226. name: "Normal",
  13227. height: math.unit(11 + 9 / 12, "feet"),
  13228. default: true
  13229. },
  13230. ]
  13231. ))
  13232. characterMakers.push(() => makeCharacter(
  13233. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13234. {
  13235. legendary: {
  13236. height: math.unit(6, "feet"),
  13237. weight: math.unit(150, "lb"),
  13238. name: "Legendary",
  13239. image: {
  13240. source: "./media/characters/lucy/legendary.svg",
  13241. extra: 1355 / 1100,
  13242. bottom: 0.045
  13243. }
  13244. },
  13245. },
  13246. [
  13247. {
  13248. name: "Legendary",
  13249. height: math.unit(86882 * 2, "miles"),
  13250. default: true
  13251. },
  13252. ]
  13253. ))
  13254. characterMakers.push(() => makeCharacter(
  13255. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13256. {
  13257. front: {
  13258. height: math.unit(6, "feet"),
  13259. weight: math.unit(150, "lb"),
  13260. name: "Front",
  13261. image: {
  13262. source: "./media/characters/drusilla/front.svg",
  13263. extra: 678 / 635,
  13264. bottom: 0.03
  13265. }
  13266. },
  13267. back: {
  13268. height: math.unit(6, "feet"),
  13269. weight: math.unit(150, "lb"),
  13270. name: "Back",
  13271. image: {
  13272. source: "./media/characters/drusilla/back.svg",
  13273. extra: 678 / 635,
  13274. bottom: 0.005
  13275. }
  13276. },
  13277. },
  13278. [
  13279. {
  13280. name: "Macro",
  13281. height: math.unit(100, "feet")
  13282. },
  13283. {
  13284. name: "Canon Height",
  13285. height: math.unit(2000, "feet"),
  13286. default: true
  13287. },
  13288. ]
  13289. ))
  13290. characterMakers.push(() => makeCharacter(
  13291. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13292. {
  13293. front: {
  13294. height: math.unit(6, "feet"),
  13295. weight: math.unit(180, "lb"),
  13296. name: "Front",
  13297. image: {
  13298. source: "./media/characters/renard-thatch/front.svg",
  13299. extra: 2411 / 2275,
  13300. bottom: 0.01
  13301. }
  13302. },
  13303. frontPosing: {
  13304. height: math.unit(6, "feet"),
  13305. weight: math.unit(180, "lb"),
  13306. name: "Front (Posing)",
  13307. image: {
  13308. source: "./media/characters/renard-thatch/front-posing.svg",
  13309. extra: 2381 / 2261,
  13310. bottom: 0.01
  13311. }
  13312. },
  13313. back: {
  13314. height: math.unit(6, "feet"),
  13315. weight: math.unit(180, "lb"),
  13316. name: "Back",
  13317. image: {
  13318. source: "./media/characters/renard-thatch/back.svg",
  13319. extra: 2428 / 2288
  13320. }
  13321. },
  13322. },
  13323. [
  13324. {
  13325. name: "Micro",
  13326. height: math.unit(3, "inches")
  13327. },
  13328. {
  13329. name: "Default",
  13330. height: math.unit(6, "feet"),
  13331. default: true
  13332. },
  13333. {
  13334. name: "Macro",
  13335. height: math.unit(75, "feet")
  13336. },
  13337. ]
  13338. ))
  13339. characterMakers.push(() => makeCharacter(
  13340. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13341. {
  13342. front: {
  13343. height: math.unit(1450, "feet"),
  13344. weight: math.unit(1.21e6, "tons"),
  13345. name: "Front",
  13346. image: {
  13347. source: "./media/characters/sekvra/front.svg",
  13348. extra: 1,
  13349. bottom: 0.03
  13350. }
  13351. },
  13352. frontClothed: {
  13353. height: math.unit(1450, "feet"),
  13354. weight: math.unit(1.21e6, "tons"),
  13355. name: "Front (Clothed)",
  13356. image: {
  13357. source: "./media/characters/sekvra/front-clothed.svg",
  13358. extra: 1,
  13359. bottom: 0.03
  13360. }
  13361. },
  13362. side: {
  13363. height: math.unit(1450, "feet"),
  13364. weight: math.unit(1.21e6, "tons"),
  13365. name: "Side",
  13366. image: {
  13367. source: "./media/characters/sekvra/side.svg",
  13368. extra: 1,
  13369. bottom: 0.025
  13370. }
  13371. },
  13372. back: {
  13373. height: math.unit(1450, "feet"),
  13374. weight: math.unit(1.21e6, "tons"),
  13375. name: "Back",
  13376. image: {
  13377. source: "./media/characters/sekvra/back.svg",
  13378. extra: 1,
  13379. bottom: 0.005
  13380. }
  13381. },
  13382. },
  13383. [
  13384. {
  13385. name: "Macro",
  13386. height: math.unit(1450, "feet"),
  13387. default: true
  13388. },
  13389. {
  13390. name: "Megamacro",
  13391. height: math.unit(15000, "feet")
  13392. },
  13393. ]
  13394. ))
  13395. characterMakers.push(() => makeCharacter(
  13396. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13397. {
  13398. front: {
  13399. height: math.unit(6, "feet"),
  13400. weight: math.unit(150, "lb"),
  13401. name: "Front",
  13402. image: {
  13403. source: "./media/characters/carmine/front.svg",
  13404. extra: 1,
  13405. bottom: 0.035
  13406. }
  13407. },
  13408. frontArmor: {
  13409. height: math.unit(6, "feet"),
  13410. weight: math.unit(150, "lb"),
  13411. name: "Front (Armor)",
  13412. image: {
  13413. source: "./media/characters/carmine/front-armor.svg",
  13414. extra: 1,
  13415. bottom: 0.035
  13416. }
  13417. },
  13418. },
  13419. [
  13420. {
  13421. name: "Large",
  13422. height: math.unit(1, "mile")
  13423. },
  13424. {
  13425. name: "Huge",
  13426. height: math.unit(40, "miles"),
  13427. default: true
  13428. },
  13429. {
  13430. name: "Colossal",
  13431. height: math.unit(2500, "miles")
  13432. },
  13433. ]
  13434. ))
  13435. characterMakers.push(() => makeCharacter(
  13436. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13437. {
  13438. front: {
  13439. height: math.unit(6, "feet"),
  13440. weight: math.unit(150, "lb"),
  13441. name: "Front",
  13442. image: {
  13443. source: "./media/characters/elyssia/front.svg",
  13444. extra: 2201 / 2035,
  13445. bottom: 0.05
  13446. }
  13447. },
  13448. frontClothed: {
  13449. height: math.unit(6, "feet"),
  13450. weight: math.unit(150, "lb"),
  13451. name: "Front (Clothed)",
  13452. image: {
  13453. source: "./media/characters/elyssia/front-clothed.svg",
  13454. extra: 2201 / 2035,
  13455. bottom: 0.05
  13456. }
  13457. },
  13458. back: {
  13459. height: math.unit(6, "feet"),
  13460. weight: math.unit(150, "lb"),
  13461. name: "Back",
  13462. image: {
  13463. source: "./media/characters/elyssia/back.svg",
  13464. extra: 2201 / 2035,
  13465. bottom: 0.013
  13466. }
  13467. },
  13468. },
  13469. [
  13470. {
  13471. name: "Smaller",
  13472. height: math.unit(150, "feet")
  13473. },
  13474. {
  13475. name: "Standard",
  13476. height: math.unit(1400, "feet"),
  13477. default: true
  13478. },
  13479. {
  13480. name: "Distracted",
  13481. height: math.unit(15000, "feet")
  13482. },
  13483. ]
  13484. ))
  13485. characterMakers.push(() => makeCharacter(
  13486. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13487. {
  13488. front: {
  13489. height: math.unit(7 + 4/12, "feet"),
  13490. weight: math.unit(690, "lb"),
  13491. name: "Front",
  13492. image: {
  13493. source: "./media/characters/geno-maxwell/front.svg",
  13494. extra: 984/856,
  13495. bottom: 87/1071
  13496. }
  13497. },
  13498. back: {
  13499. height: math.unit(7 + 4/12, "feet"),
  13500. weight: math.unit(690, "lb"),
  13501. name: "Back",
  13502. image: {
  13503. source: "./media/characters/geno-maxwell/back.svg",
  13504. extra: 981/854,
  13505. bottom: 57/1038
  13506. }
  13507. },
  13508. frontCostume: {
  13509. height: math.unit(7 + 4/12, "feet"),
  13510. weight: math.unit(690, "lb"),
  13511. name: "Front (Costume)",
  13512. image: {
  13513. source: "./media/characters/geno-maxwell/front-costume.svg",
  13514. extra: 984/856,
  13515. bottom: 87/1071
  13516. }
  13517. },
  13518. backcostume: {
  13519. height: math.unit(7 + 4/12, "feet"),
  13520. weight: math.unit(690, "lb"),
  13521. name: "Back (Costume)",
  13522. image: {
  13523. source: "./media/characters/geno-maxwell/back-costume.svg",
  13524. extra: 981/854,
  13525. bottom: 57/1038
  13526. }
  13527. },
  13528. },
  13529. [
  13530. {
  13531. name: "Micro",
  13532. height: math.unit(3, "inches")
  13533. },
  13534. {
  13535. name: "Normal",
  13536. height: math.unit(7 + 4 / 12, "feet"),
  13537. default: true
  13538. },
  13539. {
  13540. name: "Macro",
  13541. height: math.unit(220, "feet")
  13542. },
  13543. {
  13544. name: "Megamacro",
  13545. height: math.unit(11, "miles")
  13546. },
  13547. ]
  13548. ))
  13549. characterMakers.push(() => makeCharacter(
  13550. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13551. {
  13552. front: {
  13553. height: math.unit(7 + 4/12, "feet"),
  13554. weight: math.unit(750, "lb"),
  13555. name: "Front",
  13556. image: {
  13557. source: "./media/characters/regena-maxwell/front.svg",
  13558. extra: 984/856,
  13559. bottom: 87/1071
  13560. }
  13561. },
  13562. back: {
  13563. height: math.unit(7 + 4/12, "feet"),
  13564. weight: math.unit(750, "lb"),
  13565. name: "Back",
  13566. image: {
  13567. source: "./media/characters/regena-maxwell/back.svg",
  13568. extra: 981/854,
  13569. bottom: 57/1038
  13570. }
  13571. },
  13572. frontCostume: {
  13573. height: math.unit(7 + 4/12, "feet"),
  13574. weight: math.unit(750, "lb"),
  13575. name: "Front (Costume)",
  13576. image: {
  13577. source: "./media/characters/regena-maxwell/front-costume.svg",
  13578. extra: 984/856,
  13579. bottom: 87/1071
  13580. }
  13581. },
  13582. backcostume: {
  13583. height: math.unit(7 + 4/12, "feet"),
  13584. weight: math.unit(750, "lb"),
  13585. name: "Back (Costume)",
  13586. image: {
  13587. source: "./media/characters/regena-maxwell/back-costume.svg",
  13588. extra: 981/854,
  13589. bottom: 57/1038
  13590. }
  13591. },
  13592. },
  13593. [
  13594. {
  13595. name: "Normal",
  13596. height: math.unit(7 + 4 / 12, "feet"),
  13597. default: true
  13598. },
  13599. {
  13600. name: "Macro",
  13601. height: math.unit(220, "feet")
  13602. },
  13603. {
  13604. name: "Megamacro",
  13605. height: math.unit(11, "miles")
  13606. },
  13607. ]
  13608. ))
  13609. characterMakers.push(() => makeCharacter(
  13610. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13611. {
  13612. front: {
  13613. height: math.unit(6, "feet"),
  13614. weight: math.unit(150, "lb"),
  13615. name: "Front",
  13616. image: {
  13617. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13618. extra: 860 / 690,
  13619. bottom: 0.03
  13620. }
  13621. },
  13622. },
  13623. [
  13624. {
  13625. name: "Normal",
  13626. height: math.unit(1.7, "meters"),
  13627. default: true
  13628. },
  13629. ]
  13630. ))
  13631. characterMakers.push(() => makeCharacter(
  13632. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13633. {
  13634. front: {
  13635. height: math.unit(6, "feet"),
  13636. weight: math.unit(150, "lb"),
  13637. name: "Front",
  13638. image: {
  13639. source: "./media/characters/quilly/front.svg",
  13640. extra: 890 / 776
  13641. }
  13642. },
  13643. },
  13644. [
  13645. {
  13646. name: "Gigamacro",
  13647. height: math.unit(404090, "miles"),
  13648. default: true
  13649. },
  13650. ]
  13651. ))
  13652. characterMakers.push(() => makeCharacter(
  13653. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13654. {
  13655. front: {
  13656. height: math.unit(7 + 8 / 12, "feet"),
  13657. weight: math.unit(350, "lb"),
  13658. name: "Front",
  13659. image: {
  13660. source: "./media/characters/tempest/front.svg",
  13661. extra: 1175 / 1086,
  13662. bottom: 0.02
  13663. }
  13664. },
  13665. },
  13666. [
  13667. {
  13668. name: "Normal",
  13669. height: math.unit(7 + 8 / 12, "feet"),
  13670. default: true
  13671. },
  13672. ]
  13673. ))
  13674. characterMakers.push(() => makeCharacter(
  13675. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13676. {
  13677. side: {
  13678. height: math.unit(4 + 5 / 12, "feet"),
  13679. weight: math.unit(80, "lb"),
  13680. name: "Side",
  13681. image: {
  13682. source: "./media/characters/rodger/side.svg",
  13683. extra: 1235 / 1118
  13684. }
  13685. },
  13686. },
  13687. [
  13688. {
  13689. name: "Micro",
  13690. height: math.unit(1, "inch")
  13691. },
  13692. {
  13693. name: "Normal",
  13694. height: math.unit(4 + 5 / 12, "feet"),
  13695. default: true
  13696. },
  13697. {
  13698. name: "Macro",
  13699. height: math.unit(120, "feet")
  13700. },
  13701. ]
  13702. ))
  13703. characterMakers.push(() => makeCharacter(
  13704. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13705. {
  13706. front: {
  13707. height: math.unit(6, "feet"),
  13708. weight: math.unit(150, "lb"),
  13709. name: "Front",
  13710. image: {
  13711. source: "./media/characters/danyel/front.svg",
  13712. extra: 1185 / 1123,
  13713. bottom: 0.05
  13714. }
  13715. },
  13716. },
  13717. [
  13718. {
  13719. name: "Shrunken",
  13720. height: math.unit(0.5, "mm")
  13721. },
  13722. {
  13723. name: "Micro",
  13724. height: math.unit(1, "mm"),
  13725. default: true
  13726. },
  13727. {
  13728. name: "Upsized",
  13729. height: math.unit(5 + 5 / 12, "feet")
  13730. },
  13731. ]
  13732. ))
  13733. characterMakers.push(() => makeCharacter(
  13734. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13735. {
  13736. front: {
  13737. height: math.unit(5 + 6 / 12, "feet"),
  13738. weight: math.unit(200, "lb"),
  13739. name: "Front",
  13740. image: {
  13741. source: "./media/characters/vivian-bijoux/front.svg",
  13742. extra: 1217/1209,
  13743. bottom: 76/1293
  13744. }
  13745. },
  13746. back: {
  13747. height: math.unit(5 + 6 / 12, "feet"),
  13748. weight: math.unit(200, "lb"),
  13749. name: "Back",
  13750. image: {
  13751. source: "./media/characters/vivian-bijoux/back.svg",
  13752. extra: 1214/1208,
  13753. bottom: 51/1265
  13754. }
  13755. },
  13756. dressed: {
  13757. height: math.unit(5 + 6 / 12, "feet"),
  13758. weight: math.unit(200, "lb"),
  13759. name: "Dressed",
  13760. image: {
  13761. source: "./media/characters/vivian-bijoux/dressed.svg",
  13762. extra: 1217/1209,
  13763. bottom: 76/1293
  13764. }
  13765. },
  13766. },
  13767. [
  13768. {
  13769. name: "Normal",
  13770. height: math.unit(5 + 6 / 12, "feet"),
  13771. default: true
  13772. },
  13773. {
  13774. name: "Bad Dream",
  13775. height: math.unit(500, "feet")
  13776. },
  13777. {
  13778. name: "Nightmare",
  13779. height: math.unit(500, "miles")
  13780. },
  13781. ]
  13782. ))
  13783. characterMakers.push(() => makeCharacter(
  13784. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13785. {
  13786. front: {
  13787. height: math.unit(6 + 1 / 12, "feet"),
  13788. weight: math.unit(260, "lb"),
  13789. name: "Front",
  13790. image: {
  13791. source: "./media/characters/zeta/front.svg",
  13792. extra: 1968 / 1889,
  13793. bottom: 0.06
  13794. }
  13795. },
  13796. back: {
  13797. height: math.unit(6 + 1 / 12, "feet"),
  13798. weight: math.unit(260, "lb"),
  13799. name: "Back",
  13800. image: {
  13801. source: "./media/characters/zeta/back.svg",
  13802. extra: 1944 / 1858,
  13803. bottom: 0.03
  13804. }
  13805. },
  13806. hand: {
  13807. height: math.unit(1.112, "feet"),
  13808. name: "Hand",
  13809. image: {
  13810. source: "./media/characters/zeta/hand.svg"
  13811. }
  13812. },
  13813. foot: {
  13814. height: math.unit(1.48, "feet"),
  13815. name: "Foot",
  13816. image: {
  13817. source: "./media/characters/zeta/foot.svg"
  13818. }
  13819. },
  13820. },
  13821. [
  13822. {
  13823. name: "Micro",
  13824. height: math.unit(6, "inches")
  13825. },
  13826. {
  13827. name: "Normal",
  13828. height: math.unit(6 + 1 / 12, "feet"),
  13829. default: true
  13830. },
  13831. {
  13832. name: "Macro",
  13833. height: math.unit(20, "feet")
  13834. },
  13835. ]
  13836. ))
  13837. characterMakers.push(() => makeCharacter(
  13838. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13839. {
  13840. front: {
  13841. height: math.unit(6, "feet"),
  13842. weight: math.unit(150, "lb"),
  13843. name: "Front",
  13844. image: {
  13845. source: "./media/characters/jamie-larsen/front.svg",
  13846. extra: 962 / 933,
  13847. bottom: 0.02
  13848. }
  13849. },
  13850. back: {
  13851. height: math.unit(6, "feet"),
  13852. weight: math.unit(150, "lb"),
  13853. name: "Back",
  13854. image: {
  13855. source: "./media/characters/jamie-larsen/back.svg",
  13856. extra: 997 / 946
  13857. }
  13858. },
  13859. },
  13860. [
  13861. {
  13862. name: "Macro",
  13863. height: math.unit(28 + 7 / 12, "feet"),
  13864. default: true
  13865. },
  13866. {
  13867. name: "Macro+",
  13868. height: math.unit(180, "feet")
  13869. },
  13870. {
  13871. name: "Megamacro",
  13872. height: math.unit(10, "miles")
  13873. },
  13874. {
  13875. name: "Gigamacro",
  13876. height: math.unit(200000, "miles")
  13877. },
  13878. ]
  13879. ))
  13880. characterMakers.push(() => makeCharacter(
  13881. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13882. {
  13883. front: {
  13884. height: math.unit(6, "feet"),
  13885. weight: math.unit(120, "lb"),
  13886. name: "Front",
  13887. image: {
  13888. source: "./media/characters/vance/front.svg",
  13889. extra: 1980 / 1890,
  13890. bottom: 0.09
  13891. }
  13892. },
  13893. back: {
  13894. height: math.unit(6, "feet"),
  13895. weight: math.unit(120, "lb"),
  13896. name: "Back",
  13897. image: {
  13898. source: "./media/characters/vance/back.svg",
  13899. extra: 2081 / 1994,
  13900. bottom: 0.014
  13901. }
  13902. },
  13903. hand: {
  13904. height: math.unit(0.88, "feet"),
  13905. name: "Hand",
  13906. image: {
  13907. source: "./media/characters/vance/hand.svg"
  13908. }
  13909. },
  13910. foot: {
  13911. height: math.unit(0.64, "feet"),
  13912. name: "Foot",
  13913. image: {
  13914. source: "./media/characters/vance/foot.svg"
  13915. }
  13916. },
  13917. },
  13918. [
  13919. {
  13920. name: "Small",
  13921. height: math.unit(90, "feet"),
  13922. default: true
  13923. },
  13924. {
  13925. name: "Macro",
  13926. height: math.unit(100, "meters")
  13927. },
  13928. {
  13929. name: "Megamacro",
  13930. height: math.unit(15, "miles")
  13931. },
  13932. ]
  13933. ))
  13934. characterMakers.push(() => makeCharacter(
  13935. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13936. {
  13937. front: {
  13938. height: math.unit(6, "feet"),
  13939. weight: math.unit(180, "lb"),
  13940. name: "Front",
  13941. image: {
  13942. source: "./media/characters/xochitl/front.svg",
  13943. extra: 2297 / 2261,
  13944. bottom: 0.065
  13945. }
  13946. },
  13947. back: {
  13948. height: math.unit(6, "feet"),
  13949. weight: math.unit(180, "lb"),
  13950. name: "Back",
  13951. image: {
  13952. source: "./media/characters/xochitl/back.svg",
  13953. extra: 2386 / 2354,
  13954. bottom: 0.01
  13955. }
  13956. },
  13957. foot: {
  13958. height: math.unit(6 / 5 * 1.15, "feet"),
  13959. weight: math.unit(150, "lb"),
  13960. name: "Foot",
  13961. image: {
  13962. source: "./media/characters/xochitl/foot.svg"
  13963. }
  13964. },
  13965. },
  13966. [
  13967. {
  13968. name: "Macro",
  13969. height: math.unit(80, "feet")
  13970. },
  13971. {
  13972. name: "Macro+",
  13973. height: math.unit(400, "feet"),
  13974. default: true
  13975. },
  13976. {
  13977. name: "Gigamacro",
  13978. height: math.unit(80000, "miles")
  13979. },
  13980. {
  13981. name: "Gigamacro+",
  13982. height: math.unit(400000, "miles")
  13983. },
  13984. {
  13985. name: "Teramacro",
  13986. height: math.unit(300, "AU")
  13987. },
  13988. ]
  13989. ))
  13990. characterMakers.push(() => makeCharacter(
  13991. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13992. {
  13993. front: {
  13994. height: math.unit(6, "feet"),
  13995. weight: math.unit(150, "lb"),
  13996. name: "Front",
  13997. image: {
  13998. source: "./media/characters/vincent/front.svg",
  13999. extra: 1130 / 1080,
  14000. bottom: 0.055
  14001. }
  14002. },
  14003. beak: {
  14004. height: math.unit(6 * 0.1, "feet"),
  14005. name: "Beak",
  14006. image: {
  14007. source: "./media/characters/vincent/beak.svg"
  14008. }
  14009. },
  14010. hand: {
  14011. height: math.unit(6 * 0.85, "feet"),
  14012. weight: math.unit(150, "lb"),
  14013. name: "Hand",
  14014. image: {
  14015. source: "./media/characters/vincent/hand.svg"
  14016. }
  14017. },
  14018. foot: {
  14019. height: math.unit(6 * 0.19, "feet"),
  14020. weight: math.unit(150, "lb"),
  14021. name: "Foot",
  14022. image: {
  14023. source: "./media/characters/vincent/foot.svg"
  14024. }
  14025. },
  14026. },
  14027. [
  14028. {
  14029. name: "Base",
  14030. height: math.unit(6 + 5 / 12, "feet"),
  14031. default: true
  14032. },
  14033. {
  14034. name: "Macro",
  14035. height: math.unit(300, "feet")
  14036. },
  14037. {
  14038. name: "Megamacro",
  14039. height: math.unit(2, "miles")
  14040. },
  14041. {
  14042. name: "Gigamacro",
  14043. height: math.unit(1000, "miles")
  14044. },
  14045. ]
  14046. ))
  14047. characterMakers.push(() => makeCharacter(
  14048. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14049. {
  14050. front: {
  14051. height: math.unit(2, "meters"),
  14052. weight: math.unit(500, "kg"),
  14053. name: "Front",
  14054. image: {
  14055. source: "./media/characters/coatl/front.svg",
  14056. extra: 3948 / 3500,
  14057. bottom: 0.082
  14058. }
  14059. },
  14060. },
  14061. [
  14062. {
  14063. name: "Normal",
  14064. height: math.unit(4, "meters")
  14065. },
  14066. {
  14067. name: "Macro",
  14068. height: math.unit(100, "meters"),
  14069. default: true
  14070. },
  14071. {
  14072. name: "Macro+",
  14073. height: math.unit(300, "meters")
  14074. },
  14075. {
  14076. name: "Megamacro",
  14077. height: math.unit(3, "gigameters")
  14078. },
  14079. {
  14080. name: "Megamacro+",
  14081. height: math.unit(300, "terameters")
  14082. },
  14083. {
  14084. name: "Megamacro++",
  14085. height: math.unit(3, "lightyears")
  14086. },
  14087. ]
  14088. ))
  14089. characterMakers.push(() => makeCharacter(
  14090. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14091. {
  14092. front: {
  14093. height: math.unit(6, "feet"),
  14094. weight: math.unit(50, "kg"),
  14095. name: "front",
  14096. image: {
  14097. source: "./media/characters/shiroryu/front.svg",
  14098. extra: 1990 / 1935
  14099. }
  14100. },
  14101. },
  14102. [
  14103. {
  14104. name: "Mortal Mingling",
  14105. height: math.unit(3, "meters")
  14106. },
  14107. {
  14108. name: "Kaiju-ish",
  14109. height: math.unit(250, "meters")
  14110. },
  14111. {
  14112. name: "Somewhat Godly",
  14113. height: math.unit(400, "km"),
  14114. default: true
  14115. },
  14116. {
  14117. name: "Planetary",
  14118. height: math.unit(300, "megameters")
  14119. },
  14120. {
  14121. name: "Galaxy-dwarfing",
  14122. height: math.unit(450, "kiloparsecs")
  14123. },
  14124. {
  14125. name: "Universe Eater",
  14126. height: math.unit(150, "gigaparsecs")
  14127. },
  14128. {
  14129. name: "Almost Immeasurable",
  14130. height: math.unit(1.3e266, "yottaparsecs")
  14131. },
  14132. ]
  14133. ))
  14134. characterMakers.push(() => makeCharacter(
  14135. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14136. {
  14137. front: {
  14138. height: math.unit(6, "feet"),
  14139. weight: math.unit(150, "lb"),
  14140. name: "Front",
  14141. image: {
  14142. source: "./media/characters/umeko/front.svg",
  14143. extra: 1,
  14144. bottom: 0.019
  14145. }
  14146. },
  14147. frontArmored: {
  14148. height: math.unit(6, "feet"),
  14149. weight: math.unit(150, "lb"),
  14150. name: "Front (Armored)",
  14151. image: {
  14152. source: "./media/characters/umeko/front-armored.svg",
  14153. extra: 1,
  14154. bottom: 0.021
  14155. }
  14156. },
  14157. },
  14158. [
  14159. {
  14160. name: "Macro",
  14161. height: math.unit(220, "feet"),
  14162. default: true
  14163. },
  14164. {
  14165. name: "Guardian Dragon",
  14166. height: math.unit(50, "miles")
  14167. },
  14168. {
  14169. name: "Cosmic",
  14170. height: math.unit(800000, "miles")
  14171. },
  14172. ]
  14173. ))
  14174. characterMakers.push(() => makeCharacter(
  14175. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14176. {
  14177. front: {
  14178. height: math.unit(6, "feet"),
  14179. weight: math.unit(150, "lb"),
  14180. name: "Front",
  14181. image: {
  14182. source: "./media/characters/cassidy/front.svg",
  14183. extra: 1,
  14184. bottom: 0.043
  14185. }
  14186. },
  14187. },
  14188. [
  14189. {
  14190. name: "Canon Height",
  14191. height: math.unit(120, "feet"),
  14192. default: true
  14193. },
  14194. {
  14195. name: "Macro+",
  14196. height: math.unit(400, "feet")
  14197. },
  14198. {
  14199. name: "Macro++",
  14200. height: math.unit(4000, "feet")
  14201. },
  14202. {
  14203. name: "Megamacro",
  14204. height: math.unit(3, "miles")
  14205. },
  14206. ]
  14207. ))
  14208. characterMakers.push(() => makeCharacter(
  14209. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14210. {
  14211. front: {
  14212. height: math.unit(6, "feet"),
  14213. weight: math.unit(150, "lb"),
  14214. name: "Front",
  14215. image: {
  14216. source: "./media/characters/isaac/front.svg",
  14217. extra: 896 / 815,
  14218. bottom: 0.11
  14219. }
  14220. },
  14221. },
  14222. [
  14223. {
  14224. name: "Human Size",
  14225. height: math.unit(8, "feet"),
  14226. default: true
  14227. },
  14228. {
  14229. name: "Macro",
  14230. height: math.unit(400, "feet")
  14231. },
  14232. {
  14233. name: "Megamacro",
  14234. height: math.unit(50, "miles")
  14235. },
  14236. {
  14237. name: "Canon Height",
  14238. height: math.unit(200, "AU")
  14239. },
  14240. ]
  14241. ))
  14242. characterMakers.push(() => makeCharacter(
  14243. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14244. {
  14245. front: {
  14246. height: math.unit(6, "feet"),
  14247. weight: math.unit(72, "kg"),
  14248. name: "Front",
  14249. image: {
  14250. source: "./media/characters/sleekit/front.svg",
  14251. extra: 4693 / 4487,
  14252. bottom: 0.012
  14253. }
  14254. },
  14255. },
  14256. [
  14257. {
  14258. name: "Minimum Height",
  14259. height: math.unit(10, "meters")
  14260. },
  14261. {
  14262. name: "Smaller",
  14263. height: math.unit(25, "meters")
  14264. },
  14265. {
  14266. name: "Larger",
  14267. height: math.unit(38, "meters"),
  14268. default: true
  14269. },
  14270. {
  14271. name: "Maximum height",
  14272. height: math.unit(100, "meters")
  14273. },
  14274. ]
  14275. ))
  14276. characterMakers.push(() => makeCharacter(
  14277. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14278. {
  14279. front: {
  14280. height: math.unit(6, "feet"),
  14281. weight: math.unit(150, "lb"),
  14282. name: "Front",
  14283. image: {
  14284. source: "./media/characters/nillia/front.svg",
  14285. extra: 2195 / 2037,
  14286. bottom: 0.005
  14287. }
  14288. },
  14289. back: {
  14290. height: math.unit(6, "feet"),
  14291. weight: math.unit(150, "lb"),
  14292. name: "Back",
  14293. image: {
  14294. source: "./media/characters/nillia/back.svg",
  14295. extra: 2195 / 2037,
  14296. bottom: 0.005
  14297. }
  14298. },
  14299. },
  14300. [
  14301. {
  14302. name: "Canon Height",
  14303. height: math.unit(489, "feet"),
  14304. default: true
  14305. }
  14306. ]
  14307. ))
  14308. characterMakers.push(() => makeCharacter(
  14309. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14310. {
  14311. front: {
  14312. height: math.unit(6, "feet"),
  14313. weight: math.unit(150, "lb"),
  14314. name: "Front",
  14315. image: {
  14316. source: "./media/characters/mesmyriza/front.svg",
  14317. extra: 2067 / 1784,
  14318. bottom: 0.035
  14319. }
  14320. },
  14321. foot: {
  14322. height: math.unit(6 / (250 / 35), "feet"),
  14323. name: "Foot",
  14324. image: {
  14325. source: "./media/characters/mesmyriza/foot.svg"
  14326. }
  14327. },
  14328. },
  14329. [
  14330. {
  14331. name: "Macro",
  14332. height: math.unit(457, "meters"),
  14333. default: true
  14334. },
  14335. {
  14336. name: "Megamacro",
  14337. height: math.unit(8, "megameters")
  14338. },
  14339. ]
  14340. ))
  14341. characterMakers.push(() => makeCharacter(
  14342. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14343. {
  14344. front: {
  14345. height: math.unit(6, "feet"),
  14346. weight: math.unit(250, "lb"),
  14347. name: "Front",
  14348. image: {
  14349. source: "./media/characters/saudade/front.svg",
  14350. extra: 1172 / 1139,
  14351. bottom: 0.035
  14352. }
  14353. },
  14354. },
  14355. [
  14356. {
  14357. name: "Micro",
  14358. height: math.unit(3, "inches")
  14359. },
  14360. {
  14361. name: "Normal",
  14362. height: math.unit(6, "feet"),
  14363. default: true
  14364. },
  14365. {
  14366. name: "Macro",
  14367. height: math.unit(50, "feet")
  14368. },
  14369. {
  14370. name: "Megamacro",
  14371. height: math.unit(2800, "feet")
  14372. },
  14373. ]
  14374. ))
  14375. characterMakers.push(() => makeCharacter(
  14376. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14377. {
  14378. front: {
  14379. height: math.unit(5 + 4 / 12, "feet"),
  14380. weight: math.unit(100, "lb"),
  14381. name: "Front",
  14382. image: {
  14383. source: "./media/characters/keireer/front.svg",
  14384. extra: 716 / 666,
  14385. bottom: 0.05
  14386. }
  14387. },
  14388. },
  14389. [
  14390. {
  14391. name: "Normal",
  14392. height: math.unit(5 + 4 / 12, "feet"),
  14393. default: true
  14394. },
  14395. ]
  14396. ))
  14397. characterMakers.push(() => makeCharacter(
  14398. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14399. {
  14400. front: {
  14401. height: math.unit(6, "feet"),
  14402. weight: math.unit(90, "kg"),
  14403. name: "Front",
  14404. image: {
  14405. source: "./media/characters/mirja/front.svg",
  14406. extra: 1789 / 1683,
  14407. bottom: 0.05
  14408. }
  14409. },
  14410. frontDressed: {
  14411. height: math.unit(6, "feet"),
  14412. weight: math.unit(90, "lb"),
  14413. name: "Front (Dressed)",
  14414. image: {
  14415. source: "./media/characters/mirja/front-dressed.svg",
  14416. extra: 1789 / 1683,
  14417. bottom: 0.05
  14418. }
  14419. },
  14420. back: {
  14421. height: math.unit(6, "feet"),
  14422. weight: math.unit(90, "lb"),
  14423. name: "Back",
  14424. image: {
  14425. source: "./media/characters/mirja/back.svg",
  14426. extra: 953 / 917,
  14427. bottom: 0.017
  14428. }
  14429. },
  14430. },
  14431. [
  14432. {
  14433. name: "\"Incognito\"",
  14434. height: math.unit(3, "meters")
  14435. },
  14436. {
  14437. name: "Strolling Size",
  14438. height: math.unit(15, "km")
  14439. },
  14440. {
  14441. name: "Larger Strolling Size",
  14442. height: math.unit(400, "km")
  14443. },
  14444. {
  14445. name: "Preferred Size",
  14446. height: math.unit(5000, "km")
  14447. },
  14448. {
  14449. name: "True Size",
  14450. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14451. default: true
  14452. },
  14453. ]
  14454. ))
  14455. characterMakers.push(() => makeCharacter(
  14456. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14457. {
  14458. front: {
  14459. height: math.unit(15, "feet"),
  14460. weight: math.unit(880, "kg"),
  14461. name: "Front",
  14462. image: {
  14463. source: "./media/characters/nightraver/front.svg",
  14464. extra: 2444 / 2160,
  14465. bottom: 0.027
  14466. }
  14467. },
  14468. back: {
  14469. height: math.unit(15, "feet"),
  14470. weight: math.unit(880, "kg"),
  14471. name: "Back",
  14472. image: {
  14473. source: "./media/characters/nightraver/back.svg",
  14474. extra: 2309 / 2180,
  14475. bottom: 0.005
  14476. }
  14477. },
  14478. sole: {
  14479. height: math.unit(2.878, "feet"),
  14480. name: "Sole",
  14481. image: {
  14482. source: "./media/characters/nightraver/sole.svg"
  14483. }
  14484. },
  14485. foot: {
  14486. height: math.unit(2.285, "feet"),
  14487. name: "Foot",
  14488. image: {
  14489. source: "./media/characters/nightraver/foot.svg"
  14490. }
  14491. },
  14492. maw: {
  14493. height: math.unit(2.67, "feet"),
  14494. name: "Maw",
  14495. image: {
  14496. source: "./media/characters/nightraver/maw.svg"
  14497. }
  14498. },
  14499. },
  14500. [
  14501. {
  14502. name: "Micro",
  14503. height: math.unit(1, "cm")
  14504. },
  14505. {
  14506. name: "Normal",
  14507. height: math.unit(15, "feet"),
  14508. default: true
  14509. },
  14510. {
  14511. name: "Macro",
  14512. height: math.unit(300, "feet")
  14513. },
  14514. {
  14515. name: "Megamacro",
  14516. height: math.unit(300, "miles")
  14517. },
  14518. {
  14519. name: "Gigamacro",
  14520. height: math.unit(10000, "miles")
  14521. },
  14522. ]
  14523. ))
  14524. characterMakers.push(() => makeCharacter(
  14525. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14526. {
  14527. side: {
  14528. height: math.unit(2, "inches"),
  14529. weight: math.unit(5, "grams"),
  14530. name: "Side",
  14531. image: {
  14532. source: "./media/characters/arc/side.svg"
  14533. }
  14534. },
  14535. },
  14536. [
  14537. {
  14538. name: "Micro",
  14539. height: math.unit(2, "inches"),
  14540. default: true
  14541. },
  14542. ]
  14543. ))
  14544. characterMakers.push(() => makeCharacter(
  14545. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14546. {
  14547. front: {
  14548. height: math.unit(1.1938, "meters"),
  14549. weight: math.unit(54, "kg"),
  14550. name: "Front",
  14551. image: {
  14552. source: "./media/characters/nebula-shahar/front.svg",
  14553. extra: 1642 / 1436,
  14554. bottom: 0.06
  14555. }
  14556. },
  14557. },
  14558. [
  14559. {
  14560. name: "Megamicro",
  14561. height: math.unit(0.3, "mm")
  14562. },
  14563. {
  14564. name: "Micro",
  14565. height: math.unit(3, "cm")
  14566. },
  14567. {
  14568. name: "Normal",
  14569. height: math.unit(138, "cm"),
  14570. default: true
  14571. },
  14572. {
  14573. name: "Macro",
  14574. height: math.unit(30, "m")
  14575. },
  14576. ]
  14577. ))
  14578. characterMakers.push(() => makeCharacter(
  14579. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14580. {
  14581. front: {
  14582. height: math.unit(5.24, "feet"),
  14583. weight: math.unit(150, "lb"),
  14584. name: "Front",
  14585. image: {
  14586. source: "./media/characters/shayla/front.svg",
  14587. extra: 1512 / 1414,
  14588. bottom: 0.01
  14589. }
  14590. },
  14591. back: {
  14592. height: math.unit(5.24, "feet"),
  14593. weight: math.unit(150, "lb"),
  14594. name: "Back",
  14595. image: {
  14596. source: "./media/characters/shayla/back.svg",
  14597. extra: 1512 / 1414
  14598. }
  14599. },
  14600. hand: {
  14601. height: math.unit(0.7781496062992126, "feet"),
  14602. name: "Hand",
  14603. image: {
  14604. source: "./media/characters/shayla/hand.svg"
  14605. }
  14606. },
  14607. foot: {
  14608. height: math.unit(1.4206036745406823, "feet"),
  14609. name: "Foot",
  14610. image: {
  14611. source: "./media/characters/shayla/foot.svg"
  14612. }
  14613. },
  14614. },
  14615. [
  14616. {
  14617. name: "Micro",
  14618. height: math.unit(0.32, "feet")
  14619. },
  14620. {
  14621. name: "Normal",
  14622. height: math.unit(5.24, "feet"),
  14623. default: true
  14624. },
  14625. {
  14626. name: "Macro",
  14627. height: math.unit(492.12, "feet")
  14628. },
  14629. {
  14630. name: "Megamacro",
  14631. height: math.unit(186.41, "miles")
  14632. },
  14633. ]
  14634. ))
  14635. characterMakers.push(() => makeCharacter(
  14636. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14637. {
  14638. front: {
  14639. height: math.unit(2.2, "m"),
  14640. weight: math.unit(120, "kg"),
  14641. name: "Front",
  14642. image: {
  14643. source: "./media/characters/pia-jr/front.svg",
  14644. extra: 1000 / 970,
  14645. bottom: 0.035
  14646. }
  14647. },
  14648. hand: {
  14649. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14650. name: "Hand",
  14651. image: {
  14652. source: "./media/characters/pia-jr/hand.svg"
  14653. }
  14654. },
  14655. paw: {
  14656. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14657. name: "Paw",
  14658. image: {
  14659. source: "./media/characters/pia-jr/paw.svg"
  14660. }
  14661. },
  14662. },
  14663. [
  14664. {
  14665. name: "Micro",
  14666. height: math.unit(1.2, "cm")
  14667. },
  14668. {
  14669. name: "Normal",
  14670. height: math.unit(2.2, "m"),
  14671. default: true
  14672. },
  14673. {
  14674. name: "Macro",
  14675. height: math.unit(180, "m")
  14676. },
  14677. {
  14678. name: "Megamacro",
  14679. height: math.unit(420, "km")
  14680. },
  14681. ]
  14682. ))
  14683. characterMakers.push(() => makeCharacter(
  14684. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14685. {
  14686. front: {
  14687. height: math.unit(2, "m"),
  14688. weight: math.unit(115, "kg"),
  14689. name: "Front",
  14690. image: {
  14691. source: "./media/characters/pia-sr/front.svg",
  14692. extra: 760 / 730,
  14693. bottom: 0.015
  14694. }
  14695. },
  14696. back: {
  14697. height: math.unit(2, "m"),
  14698. weight: math.unit(115, "kg"),
  14699. name: "Back",
  14700. image: {
  14701. source: "./media/characters/pia-sr/back.svg",
  14702. extra: 760 / 730,
  14703. bottom: 0.01
  14704. }
  14705. },
  14706. hand: {
  14707. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14708. name: "Hand",
  14709. image: {
  14710. source: "./media/characters/pia-sr/hand.svg"
  14711. }
  14712. },
  14713. foot: {
  14714. height: math.unit(1.83, "feet"),
  14715. name: "Foot",
  14716. image: {
  14717. source: "./media/characters/pia-sr/foot.svg"
  14718. }
  14719. },
  14720. },
  14721. [
  14722. {
  14723. name: "Micro",
  14724. height: math.unit(88, "mm")
  14725. },
  14726. {
  14727. name: "Normal",
  14728. height: math.unit(2, "m"),
  14729. default: true
  14730. },
  14731. {
  14732. name: "Macro",
  14733. height: math.unit(200, "m")
  14734. },
  14735. {
  14736. name: "Megamacro",
  14737. height: math.unit(420, "km")
  14738. },
  14739. ]
  14740. ))
  14741. characterMakers.push(() => makeCharacter(
  14742. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14743. {
  14744. front: {
  14745. height: math.unit(8 + 2 / 12, "feet"),
  14746. weight: math.unit(300, "lb"),
  14747. name: "Front",
  14748. image: {
  14749. source: "./media/characters/kibibyte/front.svg",
  14750. extra: 2221 / 2098,
  14751. bottom: 0.04
  14752. }
  14753. },
  14754. },
  14755. [
  14756. {
  14757. name: "Normal",
  14758. height: math.unit(8 + 2 / 12, "feet"),
  14759. default: true
  14760. },
  14761. {
  14762. name: "Socialable Macro",
  14763. height: math.unit(50, "feet")
  14764. },
  14765. {
  14766. name: "Macro",
  14767. height: math.unit(300, "feet")
  14768. },
  14769. {
  14770. name: "Megamacro",
  14771. height: math.unit(500, "miles")
  14772. },
  14773. ]
  14774. ))
  14775. characterMakers.push(() => makeCharacter(
  14776. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14777. {
  14778. front: {
  14779. height: math.unit(6, "feet"),
  14780. weight: math.unit(150, "lb"),
  14781. name: "Front",
  14782. image: {
  14783. source: "./media/characters/felix/front.svg",
  14784. extra: 762 / 722,
  14785. bottom: 0.02
  14786. }
  14787. },
  14788. frontClothed: {
  14789. height: math.unit(6, "feet"),
  14790. weight: math.unit(150, "lb"),
  14791. name: "Front (Clothed)",
  14792. image: {
  14793. source: "./media/characters/felix/front-clothed.svg",
  14794. extra: 762 / 722,
  14795. bottom: 0.02
  14796. }
  14797. },
  14798. },
  14799. [
  14800. {
  14801. name: "Normal",
  14802. height: math.unit(6 + 8 / 12, "feet"),
  14803. default: true
  14804. },
  14805. {
  14806. name: "Macro",
  14807. height: math.unit(2600, "feet")
  14808. },
  14809. {
  14810. name: "Megamacro",
  14811. height: math.unit(450, "miles")
  14812. },
  14813. ]
  14814. ))
  14815. characterMakers.push(() => makeCharacter(
  14816. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14817. {
  14818. front: {
  14819. height: math.unit(6 + 1 / 12, "feet"),
  14820. weight: math.unit(250, "lb"),
  14821. name: "Front",
  14822. image: {
  14823. source: "./media/characters/tobo/front.svg",
  14824. extra: 608 / 586,
  14825. bottom: 0.023
  14826. }
  14827. },
  14828. back: {
  14829. height: math.unit(6 + 1 / 12, "feet"),
  14830. weight: math.unit(250, "lb"),
  14831. name: "Back",
  14832. image: {
  14833. source: "./media/characters/tobo/back.svg",
  14834. extra: 608 / 586
  14835. }
  14836. },
  14837. },
  14838. [
  14839. {
  14840. name: "Nano",
  14841. height: math.unit(2, "nm")
  14842. },
  14843. {
  14844. name: "Megamicro",
  14845. height: math.unit(0.1, "mm")
  14846. },
  14847. {
  14848. name: "Micro",
  14849. height: math.unit(1, "inch"),
  14850. default: true
  14851. },
  14852. {
  14853. name: "Human-sized",
  14854. height: math.unit(6 + 1 / 12, "feet")
  14855. },
  14856. {
  14857. name: "Macro",
  14858. height: math.unit(250, "feet")
  14859. },
  14860. {
  14861. name: "Megamacro",
  14862. height: math.unit(75, "miles")
  14863. },
  14864. {
  14865. name: "Texas-sized",
  14866. height: math.unit(750, "miles")
  14867. },
  14868. {
  14869. name: "Teramacro",
  14870. height: math.unit(50000, "miles")
  14871. },
  14872. ]
  14873. ))
  14874. characterMakers.push(() => makeCharacter(
  14875. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14876. {
  14877. front: {
  14878. height: math.unit(6, "feet"),
  14879. weight: math.unit(269, "lb"),
  14880. name: "Front",
  14881. image: {
  14882. source: "./media/characters/danny-kapowsky/front.svg",
  14883. extra: 766 / 736,
  14884. bottom: 0.044
  14885. }
  14886. },
  14887. back: {
  14888. height: math.unit(6, "feet"),
  14889. weight: math.unit(269, "lb"),
  14890. name: "Back",
  14891. image: {
  14892. source: "./media/characters/danny-kapowsky/back.svg",
  14893. extra: 797 / 760,
  14894. bottom: 0.025
  14895. }
  14896. },
  14897. },
  14898. [
  14899. {
  14900. name: "Macro",
  14901. height: math.unit(150, "feet"),
  14902. default: true
  14903. },
  14904. {
  14905. name: "Macro+",
  14906. height: math.unit(200, "feet")
  14907. },
  14908. {
  14909. name: "Macro++",
  14910. height: math.unit(300, "feet")
  14911. },
  14912. {
  14913. name: "Macro+++",
  14914. height: math.unit(400, "feet")
  14915. },
  14916. ]
  14917. ))
  14918. characterMakers.push(() => makeCharacter(
  14919. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14920. {
  14921. side: {
  14922. height: math.unit(6, "feet"),
  14923. weight: math.unit(170, "lb"),
  14924. name: "Side",
  14925. image: {
  14926. source: "./media/characters/finn/side.svg",
  14927. extra: 1953 / 1807,
  14928. bottom: 0.057
  14929. }
  14930. },
  14931. },
  14932. [
  14933. {
  14934. name: "Megamacro",
  14935. height: math.unit(14445, "feet"),
  14936. default: true
  14937. },
  14938. ]
  14939. ))
  14940. characterMakers.push(() => makeCharacter(
  14941. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14942. {
  14943. front: {
  14944. height: math.unit(5 + 6 / 12, "feet"),
  14945. weight: math.unit(125, "lb"),
  14946. name: "Front",
  14947. image: {
  14948. source: "./media/characters/roy/front.svg",
  14949. extra: 1,
  14950. bottom: 0.11
  14951. }
  14952. },
  14953. },
  14954. [
  14955. {
  14956. name: "Micro",
  14957. height: math.unit(3, "inches"),
  14958. default: true
  14959. },
  14960. {
  14961. name: "Normal",
  14962. height: math.unit(5 + 6 / 12, "feet")
  14963. },
  14964. {
  14965. name: "Lesser Macro",
  14966. height: math.unit(60, "feet")
  14967. },
  14968. {
  14969. name: "Greater Macro",
  14970. height: math.unit(120, "feet")
  14971. },
  14972. ]
  14973. ))
  14974. characterMakers.push(() => makeCharacter(
  14975. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14976. {
  14977. front: {
  14978. height: math.unit(6, "feet"),
  14979. weight: math.unit(100, "lb"),
  14980. name: "Front",
  14981. image: {
  14982. source: "./media/characters/aevsivs/front.svg",
  14983. extra: 1,
  14984. bottom: 0.03
  14985. }
  14986. },
  14987. back: {
  14988. height: math.unit(6, "feet"),
  14989. weight: math.unit(100, "lb"),
  14990. name: "Back",
  14991. image: {
  14992. source: "./media/characters/aevsivs/back.svg"
  14993. }
  14994. },
  14995. },
  14996. [
  14997. {
  14998. name: "Micro",
  14999. height: math.unit(2, "inches"),
  15000. default: true
  15001. },
  15002. {
  15003. name: "Normal",
  15004. height: math.unit(5, "feet")
  15005. },
  15006. ]
  15007. ))
  15008. characterMakers.push(() => makeCharacter(
  15009. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15010. {
  15011. front: {
  15012. height: math.unit(5 + 7 / 12, "feet"),
  15013. weight: math.unit(159, "lb"),
  15014. name: "Front",
  15015. image: {
  15016. source: "./media/characters/hildegard/front.svg",
  15017. extra: 289 / 269,
  15018. bottom: 7.63 / 297.8
  15019. }
  15020. },
  15021. back: {
  15022. height: math.unit(5 + 7 / 12, "feet"),
  15023. weight: math.unit(159, "lb"),
  15024. name: "Back",
  15025. image: {
  15026. source: "./media/characters/hildegard/back.svg",
  15027. extra: 280 / 260,
  15028. bottom: 2.3 / 282
  15029. }
  15030. },
  15031. },
  15032. [
  15033. {
  15034. name: "Normal",
  15035. height: math.unit(5 + 7 / 12, "feet"),
  15036. default: true
  15037. },
  15038. ]
  15039. ))
  15040. characterMakers.push(() => makeCharacter(
  15041. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15042. {
  15043. bernard: {
  15044. height: math.unit(2 + 7 / 12, "feet"),
  15045. weight: math.unit(66, "lb"),
  15046. name: "Bernard",
  15047. rename: true,
  15048. image: {
  15049. source: "./media/characters/bernard-wilder/bernard.svg",
  15050. extra: 192 / 128,
  15051. bottom: 0.05
  15052. }
  15053. },
  15054. wilder: {
  15055. height: math.unit(5 + 8 / 12, "feet"),
  15056. weight: math.unit(143, "lb"),
  15057. name: "Wilder",
  15058. rename: true,
  15059. image: {
  15060. source: "./media/characters/bernard-wilder/wilder.svg",
  15061. extra: 361 / 312,
  15062. bottom: 0.02
  15063. }
  15064. },
  15065. },
  15066. [
  15067. {
  15068. name: "Normal",
  15069. height: math.unit(2 + 7 / 12, "feet"),
  15070. default: true
  15071. },
  15072. ]
  15073. ))
  15074. characterMakers.push(() => makeCharacter(
  15075. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15076. {
  15077. anthro: {
  15078. height: math.unit(6 + 1 / 12, "feet"),
  15079. weight: math.unit(155, "lb"),
  15080. name: "Anthro",
  15081. image: {
  15082. source: "./media/characters/hearth/anthro.svg",
  15083. extra: 260 / 250,
  15084. bottom: 0.02
  15085. }
  15086. },
  15087. feral: {
  15088. height: math.unit(3.78, "feet"),
  15089. weight: math.unit(35, "kg"),
  15090. name: "Feral",
  15091. image: {
  15092. source: "./media/characters/hearth/feral.svg",
  15093. extra: 153 / 135,
  15094. bottom: 0.03
  15095. }
  15096. },
  15097. },
  15098. [
  15099. {
  15100. name: "Normal",
  15101. height: math.unit(6 + 1 / 12, "feet"),
  15102. default: true
  15103. },
  15104. ]
  15105. ))
  15106. characterMakers.push(() => makeCharacter(
  15107. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15108. {
  15109. front: {
  15110. height: math.unit(6, "feet"),
  15111. weight: math.unit(182, "lb"),
  15112. name: "Front",
  15113. image: {
  15114. source: "./media/characters/ingrid/front.svg",
  15115. extra: 294 / 268,
  15116. bottom: 0.027
  15117. }
  15118. },
  15119. },
  15120. [
  15121. {
  15122. name: "Normal",
  15123. height: math.unit(6, "feet"),
  15124. default: true
  15125. },
  15126. ]
  15127. ))
  15128. characterMakers.push(() => makeCharacter(
  15129. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15130. {
  15131. eevee: {
  15132. height: math.unit(2 + 10 / 12, "feet"),
  15133. weight: math.unit(86, "lb"),
  15134. name: "Malgam",
  15135. image: {
  15136. source: "./media/characters/malgam/eevee.svg",
  15137. extra: 218 / 180,
  15138. bottom: 0.2
  15139. }
  15140. },
  15141. sylveon: {
  15142. height: math.unit(4, "feet"),
  15143. weight: math.unit(101, "lb"),
  15144. name: "Future Malgam",
  15145. rename: true,
  15146. image: {
  15147. source: "./media/characters/malgam/sylveon.svg",
  15148. extra: 371 / 325,
  15149. bottom: 0.015
  15150. }
  15151. },
  15152. gigantamax: {
  15153. height: math.unit(50, "feet"),
  15154. name: "Gigantamax Malgam",
  15155. rename: true,
  15156. image: {
  15157. source: "./media/characters/malgam/gigantamax.svg"
  15158. }
  15159. },
  15160. },
  15161. [
  15162. {
  15163. name: "Normal",
  15164. height: math.unit(2 + 10 / 12, "feet"),
  15165. default: true
  15166. },
  15167. ]
  15168. ))
  15169. characterMakers.push(() => makeCharacter(
  15170. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15171. {
  15172. front: {
  15173. height: math.unit(5 + 11 / 12, "feet"),
  15174. weight: math.unit(188, "lb"),
  15175. name: "Front",
  15176. image: {
  15177. source: "./media/characters/fleur/front.svg",
  15178. extra: 309 / 283,
  15179. bottom: 0.007
  15180. }
  15181. },
  15182. },
  15183. [
  15184. {
  15185. name: "Normal",
  15186. height: math.unit(5 + 11 / 12, "feet"),
  15187. default: true
  15188. },
  15189. ]
  15190. ))
  15191. characterMakers.push(() => makeCharacter(
  15192. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15193. {
  15194. front: {
  15195. height: math.unit(5 + 4 / 12, "feet"),
  15196. weight: math.unit(122, "lb"),
  15197. name: "Front",
  15198. image: {
  15199. source: "./media/characters/jude/front.svg",
  15200. extra: 288 / 273,
  15201. bottom: 0.03
  15202. }
  15203. },
  15204. },
  15205. [
  15206. {
  15207. name: "Normal",
  15208. height: math.unit(5 + 4 / 12, "feet"),
  15209. default: true
  15210. },
  15211. ]
  15212. ))
  15213. characterMakers.push(() => makeCharacter(
  15214. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15215. {
  15216. front: {
  15217. height: math.unit(5 + 11 / 12, "feet"),
  15218. weight: math.unit(190, "lb"),
  15219. name: "Front",
  15220. image: {
  15221. source: "./media/characters/seara/front.svg",
  15222. extra: 1,
  15223. bottom: 0.05
  15224. }
  15225. },
  15226. },
  15227. [
  15228. {
  15229. name: "Normal",
  15230. height: math.unit(5 + 11 / 12, "feet"),
  15231. default: true
  15232. },
  15233. ]
  15234. ))
  15235. characterMakers.push(() => makeCharacter(
  15236. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15237. {
  15238. front: {
  15239. height: math.unit(16 + 5 / 12, "feet"),
  15240. weight: math.unit(524, "lb"),
  15241. name: "Front",
  15242. image: {
  15243. source: "./media/characters/caspian/front.svg",
  15244. extra: 1,
  15245. bottom: 0.04
  15246. }
  15247. },
  15248. },
  15249. [
  15250. {
  15251. name: "Normal",
  15252. height: math.unit(16 + 5 / 12, "feet"),
  15253. default: true
  15254. },
  15255. ]
  15256. ))
  15257. characterMakers.push(() => makeCharacter(
  15258. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15259. {
  15260. front: {
  15261. height: math.unit(5 + 7 / 12, "feet"),
  15262. weight: math.unit(170, "lb"),
  15263. name: "Front",
  15264. image: {
  15265. source: "./media/characters/mika/front.svg",
  15266. extra: 1,
  15267. bottom: 0.016
  15268. }
  15269. },
  15270. },
  15271. [
  15272. {
  15273. name: "Normal",
  15274. height: math.unit(5 + 7 / 12, "feet"),
  15275. default: true
  15276. },
  15277. ]
  15278. ))
  15279. characterMakers.push(() => makeCharacter(
  15280. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15281. {
  15282. front: {
  15283. height: math.unit(6 + 2 / 12, "feet"),
  15284. weight: math.unit(268, "lb"),
  15285. name: "Front",
  15286. image: {
  15287. source: "./media/characters/sol/front.svg",
  15288. extra: 247 / 231,
  15289. bottom: 0.05
  15290. }
  15291. },
  15292. },
  15293. [
  15294. {
  15295. name: "Normal",
  15296. height: math.unit(6 + 2 / 12, "feet"),
  15297. default: true
  15298. },
  15299. ]
  15300. ))
  15301. characterMakers.push(() => makeCharacter(
  15302. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15303. {
  15304. buizel: {
  15305. height: math.unit(2 + 5 / 12, "feet"),
  15306. weight: math.unit(87, "lb"),
  15307. name: "Buizel",
  15308. image: {
  15309. source: "./media/characters/umiko/buizel.svg",
  15310. extra: 172 / 157,
  15311. bottom: 0.01
  15312. }
  15313. },
  15314. floatzel: {
  15315. height: math.unit(5 + 9 / 12, "feet"),
  15316. weight: math.unit(250, "lb"),
  15317. name: "Floatzel",
  15318. image: {
  15319. source: "./media/characters/umiko/floatzel.svg",
  15320. extra: 262 / 248
  15321. }
  15322. },
  15323. },
  15324. [
  15325. {
  15326. name: "Normal",
  15327. height: math.unit(2 + 5 / 12, "feet"),
  15328. default: true
  15329. },
  15330. ]
  15331. ))
  15332. characterMakers.push(() => makeCharacter(
  15333. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15334. {
  15335. front: {
  15336. height: math.unit(6 + 2 / 12, "feet"),
  15337. weight: math.unit(146, "lb"),
  15338. name: "Front",
  15339. image: {
  15340. source: "./media/characters/iliac/front.svg",
  15341. extra: 389 / 365,
  15342. bottom: 0.035
  15343. }
  15344. },
  15345. },
  15346. [
  15347. {
  15348. name: "Normal",
  15349. height: math.unit(6 + 2 / 12, "feet"),
  15350. default: true
  15351. },
  15352. ]
  15353. ))
  15354. characterMakers.push(() => makeCharacter(
  15355. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15356. {
  15357. front: {
  15358. height: math.unit(6, "feet"),
  15359. weight: math.unit(170, "lb"),
  15360. name: "Front",
  15361. image: {
  15362. source: "./media/characters/topaz/front.svg",
  15363. extra: 317 / 303,
  15364. bottom: 0.055
  15365. }
  15366. },
  15367. },
  15368. [
  15369. {
  15370. name: "Normal",
  15371. height: math.unit(6, "feet"),
  15372. default: true
  15373. },
  15374. ]
  15375. ))
  15376. characterMakers.push(() => makeCharacter(
  15377. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15378. {
  15379. front: {
  15380. height: math.unit(5 + 11 / 12, "feet"),
  15381. weight: math.unit(144, "lb"),
  15382. name: "Front",
  15383. image: {
  15384. source: "./media/characters/gabriel/front.svg",
  15385. extra: 285 / 262,
  15386. bottom: 0.004
  15387. }
  15388. },
  15389. },
  15390. [
  15391. {
  15392. name: "Normal",
  15393. height: math.unit(5 + 11 / 12, "feet"),
  15394. default: true
  15395. },
  15396. ]
  15397. ))
  15398. characterMakers.push(() => makeCharacter(
  15399. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15400. {
  15401. side: {
  15402. height: math.unit(6 + 5 / 12, "feet"),
  15403. weight: math.unit(300, "lb"),
  15404. name: "Side",
  15405. image: {
  15406. source: "./media/characters/tempest-suicune/side.svg",
  15407. extra: 195 / 154,
  15408. bottom: 0.04
  15409. }
  15410. },
  15411. },
  15412. [
  15413. {
  15414. name: "Normal",
  15415. height: math.unit(6 + 5 / 12, "feet"),
  15416. default: true
  15417. },
  15418. ]
  15419. ))
  15420. characterMakers.push(() => makeCharacter(
  15421. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15422. {
  15423. front: {
  15424. height: math.unit(7 + 2 / 12, "feet"),
  15425. weight: math.unit(322, "lb"),
  15426. name: "Front",
  15427. image: {
  15428. source: "./media/characters/vulcan/front.svg",
  15429. extra: 154 / 147,
  15430. bottom: 0.04
  15431. }
  15432. },
  15433. },
  15434. [
  15435. {
  15436. name: "Normal",
  15437. height: math.unit(7 + 2 / 12, "feet"),
  15438. default: true
  15439. },
  15440. ]
  15441. ))
  15442. characterMakers.push(() => makeCharacter(
  15443. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15444. {
  15445. front: {
  15446. height: math.unit(5 + 10 / 12, "feet"),
  15447. weight: math.unit(264, "lb"),
  15448. name: "Front",
  15449. image: {
  15450. source: "./media/characters/gault/front.svg",
  15451. extra: 161 / 140,
  15452. bottom: 0.028
  15453. }
  15454. },
  15455. },
  15456. [
  15457. {
  15458. name: "Normal",
  15459. height: math.unit(5 + 10 / 12, "feet"),
  15460. default: true
  15461. },
  15462. ]
  15463. ))
  15464. characterMakers.push(() => makeCharacter(
  15465. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15466. {
  15467. front: {
  15468. height: math.unit(6, "feet"),
  15469. weight: math.unit(150, "lb"),
  15470. name: "Front",
  15471. image: {
  15472. source: "./media/characters/shard/front.svg",
  15473. extra: 273 / 238,
  15474. bottom: 0.02
  15475. }
  15476. },
  15477. },
  15478. [
  15479. {
  15480. name: "Normal",
  15481. height: math.unit(3 + 6 / 12, "feet"),
  15482. default: true
  15483. },
  15484. ]
  15485. ))
  15486. characterMakers.push(() => makeCharacter(
  15487. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15488. {
  15489. front: {
  15490. height: math.unit(5 + 11 / 12, "feet"),
  15491. weight: math.unit(146, "lb"),
  15492. name: "Front",
  15493. image: {
  15494. source: "./media/characters/ashe/front.svg",
  15495. extra: 400 / 373,
  15496. bottom: 0.01
  15497. }
  15498. },
  15499. },
  15500. [
  15501. {
  15502. name: "Normal",
  15503. height: math.unit(5 + 11 / 12, "feet"),
  15504. default: true
  15505. },
  15506. ]
  15507. ))
  15508. characterMakers.push(() => makeCharacter(
  15509. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15510. {
  15511. front: {
  15512. height: math.unit(5 + 5 / 12, "feet"),
  15513. weight: math.unit(135, "lb"),
  15514. name: "Front",
  15515. image: {
  15516. source: "./media/characters/beatrix/front.svg",
  15517. extra: 392 / 379,
  15518. bottom: 0.01
  15519. }
  15520. },
  15521. },
  15522. [
  15523. {
  15524. name: "Normal",
  15525. height: math.unit(6, "feet"),
  15526. default: true
  15527. },
  15528. ]
  15529. ))
  15530. characterMakers.push(() => makeCharacter(
  15531. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15532. {
  15533. front: {
  15534. height: math.unit(6, "feet"),
  15535. weight: math.unit(150, "lb"),
  15536. name: "Front",
  15537. image: {
  15538. source: "./media/characters/ignatius/front.svg",
  15539. extra: 245 / 222,
  15540. bottom: 0.01
  15541. }
  15542. },
  15543. },
  15544. [
  15545. {
  15546. name: "Normal",
  15547. height: math.unit(5 + 5 / 12, "feet"),
  15548. default: true
  15549. },
  15550. ]
  15551. ))
  15552. characterMakers.push(() => makeCharacter(
  15553. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15554. {
  15555. front: {
  15556. height: math.unit(6 + 2 / 12, "feet"),
  15557. weight: math.unit(138, "lb"),
  15558. name: "Front",
  15559. image: {
  15560. source: "./media/characters/mei-li/front.svg",
  15561. extra: 237 / 229,
  15562. bottom: 0.03
  15563. }
  15564. },
  15565. },
  15566. [
  15567. {
  15568. name: "Normal",
  15569. height: math.unit(6 + 2 / 12, "feet"),
  15570. default: true
  15571. },
  15572. ]
  15573. ))
  15574. characterMakers.push(() => makeCharacter(
  15575. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15576. {
  15577. front: {
  15578. height: math.unit(2 + 4 / 12, "feet"),
  15579. weight: math.unit(62, "lb"),
  15580. name: "Front",
  15581. image: {
  15582. source: "./media/characters/puru/front.svg",
  15583. extra: 206 / 149,
  15584. bottom: 0.06
  15585. }
  15586. },
  15587. },
  15588. [
  15589. {
  15590. name: "Normal",
  15591. height: math.unit(2 + 4 / 12, "feet"),
  15592. default: true
  15593. },
  15594. ]
  15595. ))
  15596. characterMakers.push(() => makeCharacter(
  15597. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15598. {
  15599. anthro: {
  15600. height: math.unit(5 + 8/12, "feet"),
  15601. weight: math.unit(200, "lb"),
  15602. energyNeed: math.unit(2000, "kcal"),
  15603. name: "Anthro",
  15604. image: {
  15605. source: "./media/characters/kee/anthro.svg",
  15606. extra: 3251/3184,
  15607. bottom: 250/3501
  15608. }
  15609. },
  15610. taur: {
  15611. height: math.unit(11, "feet"),
  15612. weight: math.unit(500, "lb"),
  15613. energyNeed: math.unit(5000, "kcal"),
  15614. name: "Taur",
  15615. image: {
  15616. source: "./media/characters/kee/taur.svg",
  15617. extra: 1362/1320,
  15618. bottom: 83/1445
  15619. }
  15620. },
  15621. },
  15622. [
  15623. {
  15624. name: "Normal",
  15625. height: math.unit(5 + 8/12, "feet"),
  15626. default: true
  15627. },
  15628. {
  15629. name: "Macro",
  15630. height: math.unit(35, "feet")
  15631. },
  15632. ]
  15633. ))
  15634. characterMakers.push(() => makeCharacter(
  15635. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15636. {
  15637. anthro: {
  15638. height: math.unit(7, "feet"),
  15639. weight: math.unit(190, "lb"),
  15640. name: "Anthro",
  15641. image: {
  15642. source: "./media/characters/cobalt-dracha/anthro.svg",
  15643. extra: 231 / 225,
  15644. bottom: 0.04
  15645. }
  15646. },
  15647. feral: {
  15648. height: math.unit(9 + 7 / 12, "feet"),
  15649. weight: math.unit(294, "lb"),
  15650. name: "Feral",
  15651. image: {
  15652. source: "./media/characters/cobalt-dracha/feral.svg",
  15653. extra: 692 / 633,
  15654. bottom: 0.05
  15655. }
  15656. },
  15657. },
  15658. [
  15659. {
  15660. name: "Normal",
  15661. height: math.unit(7, "feet"),
  15662. default: true
  15663. },
  15664. ]
  15665. ))
  15666. characterMakers.push(() => makeCharacter(
  15667. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15668. {
  15669. fallen: {
  15670. height: math.unit(11 + 8 / 12, "feet"),
  15671. weight: math.unit(485, "lb"),
  15672. name: "Java (Fallen)",
  15673. rename: true,
  15674. image: {
  15675. source: "./media/characters/java/fallen.svg",
  15676. extra: 226 / 208,
  15677. bottom: 0.005
  15678. }
  15679. },
  15680. godkin: {
  15681. height: math.unit(10 + 6 / 12, "feet"),
  15682. weight: math.unit(328, "lb"),
  15683. name: "Java (Godkin)",
  15684. rename: true,
  15685. image: {
  15686. source: "./media/characters/java/godkin.svg",
  15687. extra: 270 / 262,
  15688. bottom: 0.02
  15689. }
  15690. },
  15691. },
  15692. [
  15693. {
  15694. name: "Normal",
  15695. height: math.unit(11 + 8 / 12, "feet"),
  15696. default: true
  15697. },
  15698. ]
  15699. ))
  15700. characterMakers.push(() => makeCharacter(
  15701. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15702. {
  15703. front: {
  15704. height: math.unit(7 + 8 / 12, "feet"),
  15705. weight: math.unit(320, "lb"),
  15706. name: "Front",
  15707. image: {
  15708. source: "./media/characters/skoll/front.svg",
  15709. extra: 232 / 220,
  15710. bottom: 0.02
  15711. }
  15712. },
  15713. },
  15714. [
  15715. {
  15716. name: "Normal",
  15717. height: math.unit(7 + 8 / 12, "feet"),
  15718. default: true
  15719. },
  15720. ]
  15721. ))
  15722. characterMakers.push(() => makeCharacter(
  15723. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15724. {
  15725. front: {
  15726. height: math.unit(5 + 9 / 12, "feet"),
  15727. weight: math.unit(170, "lb"),
  15728. name: "Front",
  15729. image: {
  15730. source: "./media/characters/purna/front.svg",
  15731. extra: 239 / 229,
  15732. bottom: 0.01
  15733. }
  15734. },
  15735. },
  15736. [
  15737. {
  15738. name: "Normal",
  15739. height: math.unit(5 + 9 / 12, "feet"),
  15740. default: true
  15741. },
  15742. ]
  15743. ))
  15744. characterMakers.push(() => makeCharacter(
  15745. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15746. {
  15747. front: {
  15748. height: math.unit(5 + 9 / 12, "feet"),
  15749. weight: math.unit(142, "lb"),
  15750. name: "Front",
  15751. image: {
  15752. source: "./media/characters/kuva/front.svg",
  15753. extra: 281 / 271,
  15754. bottom: 0.006
  15755. }
  15756. },
  15757. },
  15758. [
  15759. {
  15760. name: "Normal",
  15761. height: math.unit(5 + 9 / 12, "feet"),
  15762. default: true
  15763. },
  15764. ]
  15765. ))
  15766. characterMakers.push(() => makeCharacter(
  15767. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15768. {
  15769. anthro: {
  15770. height: math.unit(9 + 2 / 12, "feet"),
  15771. weight: math.unit(270, "lb"),
  15772. name: "Anthro",
  15773. image: {
  15774. source: "./media/characters/embra/anthro.svg",
  15775. extra: 200 / 187,
  15776. bottom: 0.02
  15777. }
  15778. },
  15779. feral: {
  15780. height: math.unit(18 + 8 / 12, "feet"),
  15781. weight: math.unit(576, "lb"),
  15782. name: "Feral",
  15783. image: {
  15784. source: "./media/characters/embra/feral.svg",
  15785. extra: 152 / 137,
  15786. bottom: 0.037
  15787. }
  15788. },
  15789. },
  15790. [
  15791. {
  15792. name: "Normal",
  15793. height: math.unit(9 + 2 / 12, "feet"),
  15794. default: true
  15795. },
  15796. ]
  15797. ))
  15798. characterMakers.push(() => makeCharacter(
  15799. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15800. {
  15801. anthro: {
  15802. height: math.unit(10 + 9 / 12, "feet"),
  15803. weight: math.unit(224, "lb"),
  15804. name: "Anthro",
  15805. image: {
  15806. source: "./media/characters/grottos/anthro.svg",
  15807. extra: 350 / 332,
  15808. bottom: 0.045
  15809. }
  15810. },
  15811. feral: {
  15812. height: math.unit(20 + 7 / 12, "feet"),
  15813. weight: math.unit(629, "lb"),
  15814. name: "Feral",
  15815. image: {
  15816. source: "./media/characters/grottos/feral.svg",
  15817. extra: 207 / 190,
  15818. bottom: 0.05
  15819. }
  15820. },
  15821. },
  15822. [
  15823. {
  15824. name: "Normal",
  15825. height: math.unit(10 + 9 / 12, "feet"),
  15826. default: true
  15827. },
  15828. ]
  15829. ))
  15830. characterMakers.push(() => makeCharacter(
  15831. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15832. {
  15833. anthro: {
  15834. height: math.unit(9 + 6 / 12, "feet"),
  15835. weight: math.unit(298, "lb"),
  15836. name: "Anthro",
  15837. image: {
  15838. source: "./media/characters/frifna/anthro.svg",
  15839. extra: 282 / 269,
  15840. bottom: 0.015
  15841. }
  15842. },
  15843. feral: {
  15844. height: math.unit(16 + 2 / 12, "feet"),
  15845. weight: math.unit(624, "lb"),
  15846. name: "Feral",
  15847. image: {
  15848. source: "./media/characters/frifna/feral.svg"
  15849. }
  15850. },
  15851. },
  15852. [
  15853. {
  15854. name: "Normal",
  15855. height: math.unit(9 + 6 / 12, "feet"),
  15856. default: true
  15857. },
  15858. ]
  15859. ))
  15860. characterMakers.push(() => makeCharacter(
  15861. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15862. {
  15863. front: {
  15864. height: math.unit(6 + 2 / 12, "feet"),
  15865. weight: math.unit(168, "lb"),
  15866. name: "Front",
  15867. image: {
  15868. source: "./media/characters/elise/front.svg",
  15869. extra: 276 / 271
  15870. }
  15871. },
  15872. },
  15873. [
  15874. {
  15875. name: "Normal",
  15876. height: math.unit(6 + 2 / 12, "feet"),
  15877. default: true
  15878. },
  15879. ]
  15880. ))
  15881. characterMakers.push(() => makeCharacter(
  15882. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15883. {
  15884. front: {
  15885. height: math.unit(5 + 10 / 12, "feet"),
  15886. weight: math.unit(210, "lb"),
  15887. name: "Front",
  15888. image: {
  15889. source: "./media/characters/glade/front.svg",
  15890. extra: 258 / 247,
  15891. bottom: 0.008
  15892. }
  15893. },
  15894. },
  15895. [
  15896. {
  15897. name: "Normal",
  15898. height: math.unit(5 + 10 / 12, "feet"),
  15899. default: true
  15900. },
  15901. ]
  15902. ))
  15903. characterMakers.push(() => makeCharacter(
  15904. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15905. {
  15906. front: {
  15907. height: math.unit(5 + 10 / 12, "feet"),
  15908. weight: math.unit(129, "lb"),
  15909. name: "Front",
  15910. image: {
  15911. source: "./media/characters/rina/front.svg",
  15912. extra: 266 / 255,
  15913. bottom: 0.005
  15914. }
  15915. },
  15916. },
  15917. [
  15918. {
  15919. name: "Normal",
  15920. height: math.unit(5 + 10 / 12, "feet"),
  15921. default: true
  15922. },
  15923. ]
  15924. ))
  15925. characterMakers.push(() => makeCharacter(
  15926. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15927. {
  15928. front: {
  15929. height: math.unit(6 + 1 / 12, "feet"),
  15930. weight: math.unit(192, "lb"),
  15931. name: "Front",
  15932. image: {
  15933. source: "./media/characters/veronica/front.svg",
  15934. extra: 319 / 309,
  15935. bottom: 0.005
  15936. }
  15937. },
  15938. },
  15939. [
  15940. {
  15941. name: "Normal",
  15942. height: math.unit(6 + 1 / 12, "feet"),
  15943. default: true
  15944. },
  15945. ]
  15946. ))
  15947. characterMakers.push(() => makeCharacter(
  15948. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15949. {
  15950. front: {
  15951. height: math.unit(9 + 3 / 12, "feet"),
  15952. weight: math.unit(1100, "lb"),
  15953. name: "Front",
  15954. image: {
  15955. source: "./media/characters/braxton/front.svg",
  15956. extra: 1057 / 984,
  15957. bottom: 0.05
  15958. }
  15959. },
  15960. },
  15961. [
  15962. {
  15963. name: "Normal",
  15964. height: math.unit(9 + 3 / 12, "feet")
  15965. },
  15966. {
  15967. name: "Giant",
  15968. height: math.unit(300, "feet"),
  15969. default: true
  15970. },
  15971. {
  15972. name: "Macro",
  15973. height: math.unit(700, "feet")
  15974. },
  15975. {
  15976. name: "Megamacro",
  15977. height: math.unit(6000, "feet")
  15978. },
  15979. ]
  15980. ))
  15981. characterMakers.push(() => makeCharacter(
  15982. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15983. {
  15984. front: {
  15985. height: math.unit(6 + 7 / 12, "feet"),
  15986. weight: math.unit(150, "lb"),
  15987. name: "Front",
  15988. image: {
  15989. source: "./media/characters/blue-feyonics/front.svg",
  15990. extra: 1403 / 1306,
  15991. bottom: 0.047
  15992. }
  15993. },
  15994. },
  15995. [
  15996. {
  15997. name: "Normal",
  15998. height: math.unit(6 + 7 / 12, "feet"),
  15999. default: true
  16000. },
  16001. ]
  16002. ))
  16003. characterMakers.push(() => makeCharacter(
  16004. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16005. {
  16006. front: {
  16007. height: math.unit(1.8, "meters"),
  16008. weight: math.unit(60, "kg"),
  16009. name: "Front",
  16010. image: {
  16011. source: "./media/characters/maxwell/front.svg",
  16012. extra: 2060 / 1873
  16013. }
  16014. },
  16015. },
  16016. [
  16017. {
  16018. name: "Micro",
  16019. height: math.unit(1, "mm")
  16020. },
  16021. {
  16022. name: "Normal",
  16023. height: math.unit(1.8, "meter"),
  16024. default: true
  16025. },
  16026. {
  16027. name: "Macro",
  16028. height: math.unit(30, "meters")
  16029. },
  16030. {
  16031. name: "Megamacro",
  16032. height: math.unit(10, "km")
  16033. },
  16034. ]
  16035. ))
  16036. characterMakers.push(() => makeCharacter(
  16037. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16038. {
  16039. front: {
  16040. height: math.unit(6, "feet"),
  16041. weight: math.unit(150, "lb"),
  16042. name: "Front",
  16043. image: {
  16044. source: "./media/characters/jack/front.svg",
  16045. extra: 1754 / 1640,
  16046. bottom: 0.01
  16047. }
  16048. },
  16049. },
  16050. [
  16051. {
  16052. name: "Normal",
  16053. height: math.unit(80000, "feet"),
  16054. default: true
  16055. },
  16056. {
  16057. name: "Max size",
  16058. height: math.unit(10, "lightyears")
  16059. },
  16060. ]
  16061. ))
  16062. characterMakers.push(() => makeCharacter(
  16063. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16064. {
  16065. urban: {
  16066. height: math.unit(5, "feet"),
  16067. weight: math.unit(240, "lb"),
  16068. name: "Urban",
  16069. image: {
  16070. source: "./media/characters/cafat/urban.svg",
  16071. extra: 1223/1126,
  16072. bottom: 205/1428
  16073. }
  16074. },
  16075. summer: {
  16076. height: math.unit(5, "feet"),
  16077. weight: math.unit(240, "lb"),
  16078. name: "Summer",
  16079. image: {
  16080. source: "./media/characters/cafat/summer.svg",
  16081. extra: 1223/1126,
  16082. bottom: 205/1428
  16083. }
  16084. },
  16085. winter: {
  16086. height: math.unit(5, "feet"),
  16087. weight: math.unit(240, "lb"),
  16088. name: "Winter",
  16089. image: {
  16090. source: "./media/characters/cafat/winter.svg",
  16091. extra: 1223/1126,
  16092. bottom: 205/1428
  16093. }
  16094. },
  16095. lingerie: {
  16096. height: math.unit(5, "feet"),
  16097. weight: math.unit(240, "lb"),
  16098. name: "Lingerie",
  16099. image: {
  16100. source: "./media/characters/cafat/lingerie.svg",
  16101. extra: 1223/1126,
  16102. bottom: 205/1428
  16103. }
  16104. },
  16105. upright: {
  16106. height: math.unit(6.3, "feet"),
  16107. weight: math.unit(240, "lb"),
  16108. name: "Upright",
  16109. image: {
  16110. source: "./media/characters/cafat/upright.svg",
  16111. bottom: 0.01
  16112. }
  16113. },
  16114. uprightFull: {
  16115. height: math.unit(6.3, "feet"),
  16116. weight: math.unit(240, "lb"),
  16117. name: "Upright (Full)",
  16118. image: {
  16119. source: "./media/characters/cafat/upright-full.svg",
  16120. bottom: 0.01
  16121. }
  16122. },
  16123. },
  16124. [
  16125. {
  16126. name: "Small",
  16127. height: math.unit(5, "feet"),
  16128. default: true
  16129. },
  16130. {
  16131. name: "Large",
  16132. height: math.unit(13, "feet")
  16133. },
  16134. ]
  16135. ))
  16136. characterMakers.push(() => makeCharacter(
  16137. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16138. {
  16139. front: {
  16140. height: math.unit(6, "feet"),
  16141. weight: math.unit(150, "lb"),
  16142. name: "Front",
  16143. image: {
  16144. source: "./media/characters/verin-raharra/front.svg",
  16145. extra: 5019 / 4835,
  16146. bottom: 0.023
  16147. }
  16148. },
  16149. },
  16150. [
  16151. {
  16152. name: "Normal",
  16153. height: math.unit(7 + 5 / 12, "feet"),
  16154. default: true
  16155. },
  16156. {
  16157. name: "Upsized",
  16158. height: math.unit(20, "feet")
  16159. },
  16160. ]
  16161. ))
  16162. characterMakers.push(() => makeCharacter(
  16163. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16164. {
  16165. front: {
  16166. height: math.unit(7, "feet"),
  16167. weight: math.unit(230, "lb"),
  16168. name: "Front",
  16169. image: {
  16170. source: "./media/characters/nakata/front.svg",
  16171. extra: 1.005,
  16172. bottom: 0.01
  16173. }
  16174. },
  16175. },
  16176. [
  16177. {
  16178. name: "Normal",
  16179. height: math.unit(7, "feet"),
  16180. default: true
  16181. },
  16182. {
  16183. name: "Big",
  16184. height: math.unit(14, "feet")
  16185. },
  16186. {
  16187. name: "Macro",
  16188. height: math.unit(400, "feet")
  16189. },
  16190. ]
  16191. ))
  16192. characterMakers.push(() => makeCharacter(
  16193. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16194. {
  16195. front: {
  16196. height: math.unit(4.91, "feet"),
  16197. weight: math.unit(100, "lb"),
  16198. name: "Front",
  16199. image: {
  16200. source: "./media/characters/lily/front.svg",
  16201. extra: 1585 / 1415,
  16202. bottom: 0.02
  16203. }
  16204. },
  16205. },
  16206. [
  16207. {
  16208. name: "Normal",
  16209. height: math.unit(4.91, "feet"),
  16210. default: true
  16211. },
  16212. ]
  16213. ))
  16214. characterMakers.push(() => makeCharacter(
  16215. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16216. {
  16217. laying: {
  16218. height: math.unit(4 + 4 / 12, "feet"),
  16219. weight: math.unit(600, "lb"),
  16220. name: "Laying",
  16221. image: {
  16222. source: "./media/characters/sheila/laying.svg",
  16223. extra: 1333 / 1265,
  16224. bottom: 0.16
  16225. }
  16226. },
  16227. },
  16228. [
  16229. {
  16230. name: "Normal",
  16231. height: math.unit(4 + 4 / 12, "feet"),
  16232. default: true
  16233. },
  16234. ]
  16235. ))
  16236. characterMakers.push(() => makeCharacter(
  16237. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16238. {
  16239. front: {
  16240. height: math.unit(6, "feet"),
  16241. weight: math.unit(190, "lb"),
  16242. name: "Front",
  16243. image: {
  16244. source: "./media/characters/sax/front.svg",
  16245. extra: 1187 / 973,
  16246. bottom: 0.042
  16247. }
  16248. },
  16249. },
  16250. [
  16251. {
  16252. name: "Micro",
  16253. height: math.unit(4, "inches"),
  16254. default: true
  16255. },
  16256. ]
  16257. ))
  16258. characterMakers.push(() => makeCharacter(
  16259. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16260. {
  16261. front: {
  16262. height: math.unit(6, "feet"),
  16263. weight: math.unit(150, "lb"),
  16264. name: "Front",
  16265. image: {
  16266. source: "./media/characters/pandora/front.svg",
  16267. extra: 2720 / 2556,
  16268. bottom: 0.015
  16269. }
  16270. },
  16271. back: {
  16272. height: math.unit(6, "feet"),
  16273. weight: math.unit(150, "lb"),
  16274. name: "Back",
  16275. image: {
  16276. source: "./media/characters/pandora/back.svg",
  16277. extra: 2720 / 2556,
  16278. bottom: 0.01
  16279. }
  16280. },
  16281. beans: {
  16282. height: math.unit(6 / 8, "feet"),
  16283. name: "Beans",
  16284. image: {
  16285. source: "./media/characters/pandora/beans.svg"
  16286. }
  16287. },
  16288. collar: {
  16289. height: math.unit(0.31, "feet"),
  16290. name: "Collar",
  16291. image: {
  16292. source: "./media/characters/pandora/collar.svg"
  16293. }
  16294. },
  16295. skirt: {
  16296. height: math.unit(6, "feet"),
  16297. weight: math.unit(150, "lb"),
  16298. name: "Skirt",
  16299. image: {
  16300. source: "./media/characters/pandora/skirt.svg",
  16301. extra: 1622 / 1525,
  16302. bottom: 0.015
  16303. }
  16304. },
  16305. hoodie: {
  16306. height: math.unit(6, "feet"),
  16307. weight: math.unit(150, "lb"),
  16308. name: "Hoodie",
  16309. image: {
  16310. source: "./media/characters/pandora/hoodie.svg",
  16311. extra: 1622 / 1525,
  16312. bottom: 0.015
  16313. }
  16314. },
  16315. casual: {
  16316. height: math.unit(6, "feet"),
  16317. weight: math.unit(150, "lb"),
  16318. name: "Casual",
  16319. image: {
  16320. source: "./media/characters/pandora/casual.svg",
  16321. extra: 1622 / 1525,
  16322. bottom: 0.015
  16323. }
  16324. },
  16325. },
  16326. [
  16327. {
  16328. name: "Normal",
  16329. height: math.unit(6, "feet")
  16330. },
  16331. {
  16332. name: "Big Steppy",
  16333. height: math.unit(1, "km"),
  16334. default: true
  16335. },
  16336. {
  16337. name: "Galactic Steppy",
  16338. height: math.unit(2, "gigameters")
  16339. },
  16340. ]
  16341. ))
  16342. characterMakers.push(() => makeCharacter(
  16343. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16344. {
  16345. side: {
  16346. height: math.unit(10, "feet"),
  16347. weight: math.unit(800, "kg"),
  16348. name: "Side",
  16349. image: {
  16350. source: "./media/characters/venio-darcony/side.svg",
  16351. extra: 1373 / 1003,
  16352. bottom: 0.037
  16353. }
  16354. },
  16355. front: {
  16356. height: math.unit(19, "feet"),
  16357. weight: math.unit(800, "kg"),
  16358. name: "Front",
  16359. image: {
  16360. source: "./media/characters/venio-darcony/front.svg"
  16361. }
  16362. },
  16363. back: {
  16364. height: math.unit(19, "feet"),
  16365. weight: math.unit(800, "kg"),
  16366. name: "Back",
  16367. image: {
  16368. source: "./media/characters/venio-darcony/back.svg"
  16369. }
  16370. },
  16371. sideNsfw: {
  16372. height: math.unit(10, "feet"),
  16373. weight: math.unit(800, "kg"),
  16374. name: "Side (NSFW)",
  16375. image: {
  16376. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16377. extra: 1373 / 1003,
  16378. bottom: 0.037
  16379. }
  16380. },
  16381. frontNsfw: {
  16382. height: math.unit(19, "feet"),
  16383. weight: math.unit(800, "kg"),
  16384. name: "Front (NSFW)",
  16385. image: {
  16386. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16387. }
  16388. },
  16389. backNsfw: {
  16390. height: math.unit(19, "feet"),
  16391. weight: math.unit(800, "kg"),
  16392. name: "Back (NSFW)",
  16393. image: {
  16394. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16395. }
  16396. },
  16397. sideArmored: {
  16398. height: math.unit(10, "feet"),
  16399. weight: math.unit(800, "kg"),
  16400. name: "Side (Armored)",
  16401. image: {
  16402. source: "./media/characters/venio-darcony/side-armored.svg",
  16403. extra: 1373 / 1003,
  16404. bottom: 0.037
  16405. }
  16406. },
  16407. frontArmored: {
  16408. height: math.unit(19, "feet"),
  16409. weight: math.unit(900, "kg"),
  16410. name: "Front (Armored)",
  16411. image: {
  16412. source: "./media/characters/venio-darcony/front-armored.svg"
  16413. }
  16414. },
  16415. backArmored: {
  16416. height: math.unit(19, "feet"),
  16417. weight: math.unit(900, "kg"),
  16418. name: "Back (Armored)",
  16419. image: {
  16420. source: "./media/characters/venio-darcony/back-armored.svg"
  16421. }
  16422. },
  16423. sword: {
  16424. height: math.unit(10, "feet"),
  16425. weight: math.unit(50, "lb"),
  16426. name: "Sword",
  16427. image: {
  16428. source: "./media/characters/venio-darcony/sword.svg"
  16429. }
  16430. },
  16431. },
  16432. [
  16433. {
  16434. name: "Normal",
  16435. height: math.unit(10, "feet")
  16436. },
  16437. {
  16438. name: "Macro",
  16439. height: math.unit(130, "feet"),
  16440. default: true
  16441. },
  16442. {
  16443. name: "Macro+",
  16444. height: math.unit(240, "feet")
  16445. },
  16446. ]
  16447. ))
  16448. characterMakers.push(() => makeCharacter(
  16449. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16450. {
  16451. front: {
  16452. height: math.unit(6, "feet"),
  16453. weight: math.unit(150, "lb"),
  16454. name: "Front",
  16455. image: {
  16456. source: "./media/characters/veski/front.svg",
  16457. extra: 1299 / 1225,
  16458. bottom: 0.04
  16459. }
  16460. },
  16461. back: {
  16462. height: math.unit(6, "feet"),
  16463. weight: math.unit(150, "lb"),
  16464. name: "Back",
  16465. image: {
  16466. source: "./media/characters/veski/back.svg",
  16467. extra: 1299 / 1225,
  16468. bottom: 0.008
  16469. }
  16470. },
  16471. maw: {
  16472. height: math.unit(1.5 * 1.21, "feet"),
  16473. name: "Maw",
  16474. image: {
  16475. source: "./media/characters/veski/maw.svg"
  16476. }
  16477. },
  16478. },
  16479. [
  16480. {
  16481. name: "Macro",
  16482. height: math.unit(2, "km"),
  16483. default: true
  16484. },
  16485. ]
  16486. ))
  16487. characterMakers.push(() => makeCharacter(
  16488. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16489. {
  16490. front: {
  16491. height: math.unit(5 + 7 / 12, "feet"),
  16492. name: "Front",
  16493. image: {
  16494. source: "./media/characters/isabelle/front.svg",
  16495. extra: 2130 / 1976,
  16496. bottom: 0.05
  16497. }
  16498. },
  16499. },
  16500. [
  16501. {
  16502. name: "Supermicro",
  16503. height: math.unit(10, "micrometers")
  16504. },
  16505. {
  16506. name: "Micro",
  16507. height: math.unit(1, "inch")
  16508. },
  16509. {
  16510. name: "Tiny",
  16511. height: math.unit(5, "inches")
  16512. },
  16513. {
  16514. name: "Standard",
  16515. height: math.unit(5 + 7 / 12, "inches")
  16516. },
  16517. {
  16518. name: "Macro",
  16519. height: math.unit(80, "meters"),
  16520. default: true
  16521. },
  16522. {
  16523. name: "Megamacro",
  16524. height: math.unit(250, "meters")
  16525. },
  16526. {
  16527. name: "Gigamacro",
  16528. height: math.unit(5, "km")
  16529. },
  16530. {
  16531. name: "Cosmic",
  16532. height: math.unit(2.5e6, "miles")
  16533. },
  16534. ]
  16535. ))
  16536. characterMakers.push(() => makeCharacter(
  16537. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16538. {
  16539. front: {
  16540. height: math.unit(6, "feet"),
  16541. weight: math.unit(150, "lb"),
  16542. name: "Front",
  16543. image: {
  16544. source: "./media/characters/hanzo/front.svg",
  16545. extra: 374 / 344,
  16546. bottom: 0.02
  16547. }
  16548. },
  16549. },
  16550. [
  16551. {
  16552. name: "Normal",
  16553. height: math.unit(8, "feet"),
  16554. default: true
  16555. },
  16556. ]
  16557. ))
  16558. characterMakers.push(() => makeCharacter(
  16559. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16560. {
  16561. front: {
  16562. height: math.unit(7, "feet"),
  16563. weight: math.unit(130, "lb"),
  16564. name: "Front",
  16565. image: {
  16566. source: "./media/characters/anna/front.svg",
  16567. extra: 169 / 145,
  16568. bottom: 0.06
  16569. }
  16570. },
  16571. full: {
  16572. height: math.unit(4.96, "feet"),
  16573. weight: math.unit(220, "lb"),
  16574. name: "Full",
  16575. image: {
  16576. source: "./media/characters/anna/full.svg",
  16577. extra: 138 / 114,
  16578. bottom: 0.15
  16579. }
  16580. },
  16581. tongue: {
  16582. height: math.unit(2.53, "feet"),
  16583. name: "Tongue",
  16584. image: {
  16585. source: "./media/characters/anna/tongue.svg"
  16586. }
  16587. },
  16588. },
  16589. [
  16590. {
  16591. name: "Normal",
  16592. height: math.unit(7, "feet"),
  16593. default: true
  16594. },
  16595. ]
  16596. ))
  16597. characterMakers.push(() => makeCharacter(
  16598. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16599. {
  16600. front: {
  16601. height: math.unit(7, "feet"),
  16602. weight: math.unit(150, "lb"),
  16603. name: "Front",
  16604. image: {
  16605. source: "./media/characters/ian-corvid/front.svg",
  16606. extra: 150 / 142,
  16607. bottom: 0.02
  16608. }
  16609. },
  16610. back: {
  16611. height: math.unit(7, "feet"),
  16612. weight: math.unit(150, "lb"),
  16613. name: "Back",
  16614. image: {
  16615. source: "./media/characters/ian-corvid/back.svg",
  16616. extra: 150 / 143,
  16617. bottom: 0.01
  16618. }
  16619. },
  16620. stomping: {
  16621. height: math.unit(7, "feet"),
  16622. weight: math.unit(150, "lb"),
  16623. name: "Stomping",
  16624. image: {
  16625. source: "./media/characters/ian-corvid/stomping.svg",
  16626. extra: 76 / 72
  16627. }
  16628. },
  16629. sitting: {
  16630. height: math.unit(7 / 1.8, "feet"),
  16631. weight: math.unit(150, "lb"),
  16632. name: "Sitting",
  16633. image: {
  16634. source: "./media/characters/ian-corvid/sitting.svg",
  16635. extra: 1400 / 1269,
  16636. bottom: 0.15
  16637. }
  16638. },
  16639. },
  16640. [
  16641. {
  16642. name: "Tiny Microw",
  16643. height: math.unit(1, "inch")
  16644. },
  16645. {
  16646. name: "Microw",
  16647. height: math.unit(6, "inches")
  16648. },
  16649. {
  16650. name: "Crow",
  16651. height: math.unit(7 + 1 / 12, "feet"),
  16652. default: true
  16653. },
  16654. {
  16655. name: "Macrow",
  16656. height: math.unit(176, "feet")
  16657. },
  16658. ]
  16659. ))
  16660. characterMakers.push(() => makeCharacter(
  16661. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16662. {
  16663. front: {
  16664. height: math.unit(5 + 7 / 12, "feet"),
  16665. weight: math.unit(147, "lb"),
  16666. name: "Front",
  16667. image: {
  16668. source: "./media/characters/natalie-kellon/front.svg",
  16669. extra: 1214 / 1141,
  16670. bottom: 0.02
  16671. }
  16672. },
  16673. },
  16674. [
  16675. {
  16676. name: "Micro",
  16677. height: math.unit(1 / 16, "inch")
  16678. },
  16679. {
  16680. name: "Tiny",
  16681. height: math.unit(4, "inches")
  16682. },
  16683. {
  16684. name: "Normal",
  16685. height: math.unit(5 + 7 / 12, "feet"),
  16686. default: true
  16687. },
  16688. {
  16689. name: "Amazon",
  16690. height: math.unit(12, "feet")
  16691. },
  16692. {
  16693. name: "Giantess",
  16694. height: math.unit(160, "meters")
  16695. },
  16696. {
  16697. name: "Titaness",
  16698. height: math.unit(800, "meters")
  16699. },
  16700. ]
  16701. ))
  16702. characterMakers.push(() => makeCharacter(
  16703. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16704. {
  16705. front: {
  16706. height: math.unit(6, "feet"),
  16707. weight: math.unit(150, "lb"),
  16708. name: "Front",
  16709. image: {
  16710. source: "./media/characters/alluria/front.svg",
  16711. extra: 806 / 738,
  16712. bottom: 0.01
  16713. }
  16714. },
  16715. side: {
  16716. height: math.unit(6, "feet"),
  16717. weight: math.unit(150, "lb"),
  16718. name: "Side",
  16719. image: {
  16720. source: "./media/characters/alluria/side.svg",
  16721. extra: 800 / 750,
  16722. }
  16723. },
  16724. back: {
  16725. height: math.unit(6, "feet"),
  16726. weight: math.unit(150, "lb"),
  16727. name: "Back",
  16728. image: {
  16729. source: "./media/characters/alluria/back.svg",
  16730. extra: 806 / 738,
  16731. }
  16732. },
  16733. frontMaid: {
  16734. height: math.unit(6, "feet"),
  16735. weight: math.unit(150, "lb"),
  16736. name: "Front (Maid)",
  16737. image: {
  16738. source: "./media/characters/alluria/front-maid.svg",
  16739. extra: 806 / 738,
  16740. bottom: 0.01
  16741. }
  16742. },
  16743. sideMaid: {
  16744. height: math.unit(6, "feet"),
  16745. weight: math.unit(150, "lb"),
  16746. name: "Side (Maid)",
  16747. image: {
  16748. source: "./media/characters/alluria/side-maid.svg",
  16749. extra: 800 / 750,
  16750. bottom: 0.005
  16751. }
  16752. },
  16753. backMaid: {
  16754. height: math.unit(6, "feet"),
  16755. weight: math.unit(150, "lb"),
  16756. name: "Back (Maid)",
  16757. image: {
  16758. source: "./media/characters/alluria/back-maid.svg",
  16759. extra: 806 / 738,
  16760. }
  16761. },
  16762. },
  16763. [
  16764. {
  16765. name: "Micro",
  16766. height: math.unit(6, "inches"),
  16767. default: true
  16768. },
  16769. ]
  16770. ))
  16771. characterMakers.push(() => makeCharacter(
  16772. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16773. {
  16774. front: {
  16775. height: math.unit(6, "feet"),
  16776. weight: math.unit(150, "lb"),
  16777. name: "Front",
  16778. image: {
  16779. source: "./media/characters/kyle/front.svg",
  16780. extra: 1069 / 962,
  16781. bottom: 77.228 / 1727.45
  16782. }
  16783. },
  16784. },
  16785. [
  16786. {
  16787. name: "Macro",
  16788. height: math.unit(150, "feet"),
  16789. default: true
  16790. },
  16791. ]
  16792. ))
  16793. characterMakers.push(() => makeCharacter(
  16794. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16795. {
  16796. front: {
  16797. height: math.unit(6, "feet"),
  16798. weight: math.unit(300, "lb"),
  16799. name: "Front",
  16800. image: {
  16801. source: "./media/characters/duncan/front.svg",
  16802. extra: 1650 / 1482,
  16803. bottom: 0.05
  16804. }
  16805. },
  16806. },
  16807. [
  16808. {
  16809. name: "Macro",
  16810. height: math.unit(100, "feet"),
  16811. default: true
  16812. },
  16813. ]
  16814. ))
  16815. characterMakers.push(() => makeCharacter(
  16816. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16817. {
  16818. front: {
  16819. height: math.unit(5 + 4 / 12, "feet"),
  16820. weight: math.unit(220, "lb"),
  16821. name: "Front",
  16822. image: {
  16823. source: "./media/characters/memory/front.svg",
  16824. extra: 3641 / 3545,
  16825. bottom: 0.03
  16826. }
  16827. },
  16828. back: {
  16829. height: math.unit(5 + 4 / 12, "feet"),
  16830. weight: math.unit(220, "lb"),
  16831. name: "Back",
  16832. image: {
  16833. source: "./media/characters/memory/back.svg",
  16834. extra: 3641 / 3545,
  16835. bottom: 0.025
  16836. }
  16837. },
  16838. frontSkirt: {
  16839. height: math.unit(5 + 4 / 12, "feet"),
  16840. weight: math.unit(220, "lb"),
  16841. name: "Front (Skirt)",
  16842. image: {
  16843. source: "./media/characters/memory/front-skirt.svg",
  16844. extra: 3641 / 3545,
  16845. bottom: 0.03
  16846. }
  16847. },
  16848. frontDress: {
  16849. height: math.unit(5 + 4 / 12, "feet"),
  16850. weight: math.unit(220, "lb"),
  16851. name: "Front (Dress)",
  16852. image: {
  16853. source: "./media/characters/memory/front-dress.svg",
  16854. extra: 3641 / 3545,
  16855. bottom: 0.03
  16856. }
  16857. },
  16858. },
  16859. [
  16860. {
  16861. name: "Micro",
  16862. height: math.unit(6, "inches"),
  16863. default: true
  16864. },
  16865. {
  16866. name: "Normal",
  16867. height: math.unit(5 + 4 / 12, "feet")
  16868. },
  16869. ]
  16870. ))
  16871. characterMakers.push(() => makeCharacter(
  16872. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16873. {
  16874. front: {
  16875. height: math.unit(4 + 11 / 12, "feet"),
  16876. weight: math.unit(100, "lb"),
  16877. name: "Front",
  16878. image: {
  16879. source: "./media/characters/luno/front.svg",
  16880. extra: 1535 / 1487,
  16881. bottom: 0.03
  16882. }
  16883. },
  16884. },
  16885. [
  16886. {
  16887. name: "Micro",
  16888. height: math.unit(3, "inches")
  16889. },
  16890. {
  16891. name: "Normal",
  16892. height: math.unit(4 + 11 / 12, "feet"),
  16893. default: true
  16894. },
  16895. {
  16896. name: "Macro",
  16897. height: math.unit(300, "feet")
  16898. },
  16899. {
  16900. name: "Megamacro",
  16901. height: math.unit(700, "miles")
  16902. },
  16903. ]
  16904. ))
  16905. characterMakers.push(() => makeCharacter(
  16906. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16907. {
  16908. front: {
  16909. height: math.unit(6 + 2 / 12, "feet"),
  16910. weight: math.unit(170, "lb"),
  16911. name: "Front",
  16912. image: {
  16913. source: "./media/characters/jamesy/front.svg",
  16914. extra: 440 / 382,
  16915. bottom: 0.005
  16916. }
  16917. },
  16918. },
  16919. [
  16920. {
  16921. name: "Micro",
  16922. height: math.unit(3, "inches")
  16923. },
  16924. {
  16925. name: "Normal",
  16926. height: math.unit(6 + 2 / 12, "feet"),
  16927. default: true
  16928. },
  16929. {
  16930. name: "Macro",
  16931. height: math.unit(300, "feet")
  16932. },
  16933. {
  16934. name: "Megamacro",
  16935. height: math.unit(700, "miles")
  16936. },
  16937. ]
  16938. ))
  16939. characterMakers.push(() => makeCharacter(
  16940. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16941. {
  16942. front: {
  16943. height: math.unit(6, "feet"),
  16944. weight: math.unit(160, "lb"),
  16945. name: "Front",
  16946. image: {
  16947. source: "./media/characters/mark/front.svg",
  16948. extra: 3300 / 3100,
  16949. bottom: 136.42 / 3440.47
  16950. }
  16951. },
  16952. },
  16953. [
  16954. {
  16955. name: "Macro",
  16956. height: math.unit(120, "meters")
  16957. },
  16958. {
  16959. name: "Bigger Macro",
  16960. height: math.unit(350, "meters")
  16961. },
  16962. {
  16963. name: "Megamacro",
  16964. height: math.unit(8, "km"),
  16965. default: true
  16966. },
  16967. {
  16968. name: "Continental",
  16969. height: math.unit(4550, "km")
  16970. },
  16971. {
  16972. name: "Planetary",
  16973. height: math.unit(65000, "km")
  16974. },
  16975. ]
  16976. ))
  16977. characterMakers.push(() => makeCharacter(
  16978. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16979. {
  16980. front: {
  16981. height: math.unit(6, "feet"),
  16982. weight: math.unit(400, "lb"),
  16983. name: "Front",
  16984. image: {
  16985. source: "./media/characters/mac/front.svg",
  16986. extra: 1048 / 987.7,
  16987. bottom: 60 / 1107.6,
  16988. }
  16989. },
  16990. },
  16991. [
  16992. {
  16993. name: "Macro",
  16994. height: math.unit(500, "feet"),
  16995. default: true
  16996. },
  16997. ]
  16998. ))
  16999. characterMakers.push(() => makeCharacter(
  17000. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17001. {
  17002. front: {
  17003. height: math.unit(5 + 2 / 12, "feet"),
  17004. weight: math.unit(190, "lb"),
  17005. name: "Front",
  17006. image: {
  17007. source: "./media/characters/bari/front.svg",
  17008. extra: 3156 / 2880,
  17009. bottom: 0.03
  17010. }
  17011. },
  17012. back: {
  17013. height: math.unit(5 + 2 / 12, "feet"),
  17014. weight: math.unit(190, "lb"),
  17015. name: "Back",
  17016. image: {
  17017. source: "./media/characters/bari/back.svg",
  17018. extra: 3260 / 2834,
  17019. bottom: 0.025
  17020. }
  17021. },
  17022. frontPlush: {
  17023. height: math.unit(5 + 2 / 12, "feet"),
  17024. weight: math.unit(190, "lb"),
  17025. name: "Front (Plush)",
  17026. image: {
  17027. source: "./media/characters/bari/front-plush.svg",
  17028. extra: 1112 / 1061,
  17029. bottom: 0.002
  17030. }
  17031. },
  17032. },
  17033. [
  17034. {
  17035. name: "Micro",
  17036. height: math.unit(3, "inches")
  17037. },
  17038. {
  17039. name: "Normal",
  17040. height: math.unit(5 + 2 / 12, "feet"),
  17041. default: true
  17042. },
  17043. {
  17044. name: "Macro",
  17045. height: math.unit(20, "feet")
  17046. },
  17047. ]
  17048. ))
  17049. characterMakers.push(() => makeCharacter(
  17050. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17051. {
  17052. front: {
  17053. height: math.unit(6 + 1 / 12, "feet"),
  17054. weight: math.unit(275, "lb"),
  17055. name: "Front",
  17056. image: {
  17057. source: "./media/characters/hunter-misha-raven/front.svg"
  17058. }
  17059. },
  17060. },
  17061. [
  17062. {
  17063. name: "Mortal",
  17064. height: math.unit(6 + 1 / 12, "feet")
  17065. },
  17066. {
  17067. name: "Divine",
  17068. height: math.unit(1.12134e34, "parsecs"),
  17069. default: true
  17070. },
  17071. ]
  17072. ))
  17073. characterMakers.push(() => makeCharacter(
  17074. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17075. {
  17076. front: {
  17077. height: math.unit(6 + 3 / 12, "feet"),
  17078. weight: math.unit(220, "lb"),
  17079. name: "Front",
  17080. image: {
  17081. source: "./media/characters/max-calore/front.svg",
  17082. extra: 1700 / 1648,
  17083. bottom: 0.01
  17084. }
  17085. },
  17086. back: {
  17087. height: math.unit(6 + 3 / 12, "feet"),
  17088. weight: math.unit(220, "lb"),
  17089. name: "Back",
  17090. image: {
  17091. source: "./media/characters/max-calore/back.svg",
  17092. extra: 1700 / 1648,
  17093. bottom: 0.01
  17094. }
  17095. },
  17096. },
  17097. [
  17098. {
  17099. name: "Normal",
  17100. height: math.unit(6 + 3 / 12, "feet"),
  17101. default: true
  17102. },
  17103. ]
  17104. ))
  17105. characterMakers.push(() => makeCharacter(
  17106. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17107. {
  17108. side: {
  17109. height: math.unit(2 + 8 / 12, "feet"),
  17110. weight: math.unit(99, "lb"),
  17111. name: "Side",
  17112. image: {
  17113. source: "./media/characters/aspen/side.svg",
  17114. extra: 152 / 138,
  17115. bottom: 0.032
  17116. }
  17117. },
  17118. },
  17119. [
  17120. {
  17121. name: "Normal",
  17122. height: math.unit(2 + 8 / 12, "feet"),
  17123. default: true
  17124. },
  17125. ]
  17126. ))
  17127. characterMakers.push(() => makeCharacter(
  17128. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17129. {
  17130. side: {
  17131. height: math.unit(3 + 2 / 12, "feet"),
  17132. weight: math.unit(224, "lb"),
  17133. name: "Side",
  17134. image: {
  17135. source: "./media/characters/sheila-feral-wolf/side.svg",
  17136. extra: 179 / 166,
  17137. bottom: 0.03
  17138. }
  17139. },
  17140. },
  17141. [
  17142. {
  17143. name: "Normal",
  17144. height: math.unit(3 + 2 / 12, "feet"),
  17145. default: true
  17146. },
  17147. ]
  17148. ))
  17149. characterMakers.push(() => makeCharacter(
  17150. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17151. {
  17152. side: {
  17153. height: math.unit(1 + 9 / 12, "feet"),
  17154. weight: math.unit(38, "lb"),
  17155. name: "Side",
  17156. image: {
  17157. source: "./media/characters/michelle/side.svg",
  17158. extra: 147 / 136.7,
  17159. bottom: 0.03
  17160. }
  17161. },
  17162. },
  17163. [
  17164. {
  17165. name: "Normal",
  17166. height: math.unit(1 + 9 / 12, "feet"),
  17167. default: true
  17168. },
  17169. ]
  17170. ))
  17171. characterMakers.push(() => makeCharacter(
  17172. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17173. {
  17174. front: {
  17175. height: math.unit(1 + 1 / 12, "feet"),
  17176. weight: math.unit(18, "lb"),
  17177. name: "Front",
  17178. image: {
  17179. source: "./media/characters/nino/front.svg"
  17180. }
  17181. },
  17182. },
  17183. [
  17184. {
  17185. name: "Normal",
  17186. height: math.unit(1 + 1 / 12, "feet"),
  17187. default: true
  17188. },
  17189. ]
  17190. ))
  17191. characterMakers.push(() => makeCharacter(
  17192. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17193. {
  17194. front: {
  17195. height: math.unit(1, "feet"),
  17196. weight: math.unit(16, "lb"),
  17197. name: "Front",
  17198. image: {
  17199. source: "./media/characters/viola/front.svg"
  17200. }
  17201. },
  17202. },
  17203. [
  17204. {
  17205. name: "Normal",
  17206. height: math.unit(1, "feet"),
  17207. default: true
  17208. },
  17209. ]
  17210. ))
  17211. characterMakers.push(() => makeCharacter(
  17212. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17213. {
  17214. front: {
  17215. height: math.unit(6 + 5 / 12, "feet"),
  17216. weight: math.unit(580, "lb"),
  17217. name: "Front",
  17218. image: {
  17219. source: "./media/characters/atlas/front.svg",
  17220. extra: 298.5 / 290,
  17221. bottom: 0.015
  17222. }
  17223. },
  17224. },
  17225. [
  17226. {
  17227. name: "Normal",
  17228. height: math.unit(6 + 5 / 12, "feet"),
  17229. default: true
  17230. },
  17231. ]
  17232. ))
  17233. characterMakers.push(() => makeCharacter(
  17234. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17235. {
  17236. side: {
  17237. height: math.unit(1 + 10 / 12, "feet"),
  17238. weight: math.unit(25, "lb"),
  17239. name: "Side",
  17240. image: {
  17241. source: "./media/characters/davy/side.svg",
  17242. extra: 200 / 170,
  17243. bottom: 0.01
  17244. }
  17245. },
  17246. },
  17247. [
  17248. {
  17249. name: "Normal",
  17250. height: math.unit(1 + 10 / 12, "feet"),
  17251. default: true
  17252. },
  17253. ]
  17254. ))
  17255. characterMakers.push(() => makeCharacter(
  17256. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17257. {
  17258. side: {
  17259. height: math.unit(4 + 8 / 12, "feet"),
  17260. weight: math.unit(166, "lb"),
  17261. name: "Side",
  17262. image: {
  17263. source: "./media/characters/fiona/side.svg",
  17264. extra: 232 / 220,
  17265. bottom: 0.03
  17266. }
  17267. },
  17268. },
  17269. [
  17270. {
  17271. name: "Normal",
  17272. height: math.unit(4 + 8 / 12, "feet"),
  17273. default: true
  17274. },
  17275. ]
  17276. ))
  17277. characterMakers.push(() => makeCharacter(
  17278. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17279. {
  17280. front: {
  17281. height: math.unit(2, "feet"),
  17282. weight: math.unit(62, "lb"),
  17283. name: "Front",
  17284. image: {
  17285. source: "./media/characters/lyla/front.svg",
  17286. bottom: 0.1
  17287. }
  17288. },
  17289. },
  17290. [
  17291. {
  17292. name: "Normal",
  17293. height: math.unit(2, "feet"),
  17294. default: true
  17295. },
  17296. ]
  17297. ))
  17298. characterMakers.push(() => makeCharacter(
  17299. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17300. {
  17301. side: {
  17302. height: math.unit(1.8, "feet"),
  17303. weight: math.unit(44, "lb"),
  17304. name: "Side",
  17305. image: {
  17306. source: "./media/characters/perseus/side.svg",
  17307. bottom: 0.21
  17308. }
  17309. },
  17310. },
  17311. [
  17312. {
  17313. name: "Normal",
  17314. height: math.unit(1.8, "feet"),
  17315. default: true
  17316. },
  17317. ]
  17318. ))
  17319. characterMakers.push(() => makeCharacter(
  17320. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17321. {
  17322. side: {
  17323. height: math.unit(4 + 2 / 12, "feet"),
  17324. weight: math.unit(20, "lb"),
  17325. name: "Side",
  17326. image: {
  17327. source: "./media/characters/remus/side.svg"
  17328. }
  17329. },
  17330. },
  17331. [
  17332. {
  17333. name: "Normal",
  17334. height: math.unit(4 + 2 / 12, "feet"),
  17335. default: true
  17336. },
  17337. ]
  17338. ))
  17339. characterMakers.push(() => makeCharacter(
  17340. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17341. {
  17342. front: {
  17343. height: math.unit(4 + 11 / 12, "feet"),
  17344. weight: math.unit(114, "lb"),
  17345. name: "Front",
  17346. image: {
  17347. source: "./media/characters/raf/front.svg",
  17348. extra: 1504/1339,
  17349. bottom: 26/1530
  17350. }
  17351. },
  17352. side: {
  17353. height: math.unit(4 + 11 / 12, "feet"),
  17354. weight: math.unit(114, "lb"),
  17355. name: "Side",
  17356. image: {
  17357. source: "./media/characters/raf/side.svg",
  17358. extra: 1466/1316,
  17359. bottom: 29/1495
  17360. }
  17361. },
  17362. },
  17363. [
  17364. {
  17365. name: "Micro",
  17366. height: math.unit(2, "inches")
  17367. },
  17368. {
  17369. name: "Normal",
  17370. height: math.unit(4 + 11 / 12, "feet"),
  17371. default: true
  17372. },
  17373. {
  17374. name: "Macro",
  17375. height: math.unit(70, "feet")
  17376. },
  17377. ]
  17378. ))
  17379. characterMakers.push(() => makeCharacter(
  17380. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17381. {
  17382. front: {
  17383. height: math.unit(1.5, "meters"),
  17384. weight: math.unit(68, "kg"),
  17385. name: "Front",
  17386. image: {
  17387. source: "./media/characters/liam-einarr/front.svg",
  17388. extra: 2822 / 2666
  17389. }
  17390. },
  17391. back: {
  17392. height: math.unit(1.5, "meters"),
  17393. weight: math.unit(68, "kg"),
  17394. name: "Back",
  17395. image: {
  17396. source: "./media/characters/liam-einarr/back.svg",
  17397. extra: 2822 / 2666,
  17398. bottom: 0.015
  17399. }
  17400. },
  17401. },
  17402. [
  17403. {
  17404. name: "Normal",
  17405. height: math.unit(1.5, "meters"),
  17406. default: true
  17407. },
  17408. {
  17409. name: "Macro",
  17410. height: math.unit(150, "meters")
  17411. },
  17412. {
  17413. name: "Megamacro",
  17414. height: math.unit(35, "km")
  17415. },
  17416. ]
  17417. ))
  17418. characterMakers.push(() => makeCharacter(
  17419. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17420. {
  17421. front: {
  17422. height: math.unit(6, "feet"),
  17423. weight: math.unit(75, "kg"),
  17424. name: "Front",
  17425. image: {
  17426. source: "./media/characters/linda/front.svg",
  17427. extra: 930 / 874,
  17428. bottom: 0.004
  17429. }
  17430. },
  17431. },
  17432. [
  17433. {
  17434. name: "Normal",
  17435. height: math.unit(6, "feet"),
  17436. default: true
  17437. },
  17438. ]
  17439. ))
  17440. characterMakers.push(() => makeCharacter(
  17441. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17442. {
  17443. front: {
  17444. height: math.unit(6 + 8 / 12, "feet"),
  17445. weight: math.unit(220, "lb"),
  17446. name: "Front",
  17447. image: {
  17448. source: "./media/characters/caylex/front.svg",
  17449. extra: 821 / 772,
  17450. bottom: 0.07
  17451. }
  17452. },
  17453. back: {
  17454. height: math.unit(6 + 8 / 12, "feet"),
  17455. weight: math.unit(220, "lb"),
  17456. name: "Back",
  17457. image: {
  17458. source: "./media/characters/caylex/back.svg",
  17459. extra: 821 / 772,
  17460. bottom: 0.022
  17461. }
  17462. },
  17463. hand: {
  17464. height: math.unit(1.25, "feet"),
  17465. name: "Hand",
  17466. image: {
  17467. source: "./media/characters/caylex/hand.svg"
  17468. }
  17469. },
  17470. foot: {
  17471. height: math.unit(1.6, "feet"),
  17472. name: "Foot",
  17473. image: {
  17474. source: "./media/characters/caylex/foot.svg"
  17475. }
  17476. },
  17477. armored: {
  17478. height: math.unit(6 + 8 / 12, "feet"),
  17479. weight: math.unit(250, "lb"),
  17480. name: "Armored",
  17481. image: {
  17482. source: "./media/characters/caylex/armored.svg",
  17483. extra: 1420 / 1310,
  17484. bottom: 0.045
  17485. }
  17486. },
  17487. },
  17488. [
  17489. {
  17490. name: "Normal",
  17491. height: math.unit(6 + 8 / 12, "feet"),
  17492. default: true
  17493. },
  17494. {
  17495. name: "Normal+",
  17496. height: math.unit(12, "feet")
  17497. },
  17498. ]
  17499. ))
  17500. characterMakers.push(() => makeCharacter(
  17501. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17502. {
  17503. front: {
  17504. height: math.unit(7 + 6 / 12, "feet"),
  17505. weight: math.unit(288, "lb"),
  17506. name: "Front",
  17507. image: {
  17508. source: "./media/characters/alana/front.svg",
  17509. extra: 679 / 653,
  17510. bottom: 22.5 / 701
  17511. }
  17512. },
  17513. },
  17514. [
  17515. {
  17516. name: "Normal",
  17517. height: math.unit(7 + 6 / 12, "feet")
  17518. },
  17519. {
  17520. name: "Large",
  17521. height: math.unit(50, "feet")
  17522. },
  17523. {
  17524. name: "Macro",
  17525. height: math.unit(100, "feet"),
  17526. default: true
  17527. },
  17528. {
  17529. name: "Macro+",
  17530. height: math.unit(200, "feet")
  17531. },
  17532. ]
  17533. ))
  17534. characterMakers.push(() => makeCharacter(
  17535. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17536. {
  17537. front: {
  17538. height: math.unit(6 + 1 / 12, "feet"),
  17539. weight: math.unit(210, "lb"),
  17540. name: "Front",
  17541. image: {
  17542. source: "./media/characters/hasani/front.svg",
  17543. extra: 244 / 232,
  17544. bottom: 0.01
  17545. }
  17546. },
  17547. back: {
  17548. height: math.unit(6 + 1 / 12, "feet"),
  17549. weight: math.unit(210, "lb"),
  17550. name: "Back",
  17551. image: {
  17552. source: "./media/characters/hasani/back.svg",
  17553. extra: 244 / 232,
  17554. bottom: 0.01
  17555. }
  17556. },
  17557. },
  17558. [
  17559. {
  17560. name: "Normal",
  17561. height: math.unit(6 + 1 / 12, "feet")
  17562. },
  17563. {
  17564. name: "Macro",
  17565. height: math.unit(175, "feet"),
  17566. default: true
  17567. },
  17568. ]
  17569. ))
  17570. characterMakers.push(() => makeCharacter(
  17571. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17572. {
  17573. front: {
  17574. height: math.unit(1.82, "meters"),
  17575. weight: math.unit(140, "lb"),
  17576. name: "Front",
  17577. image: {
  17578. source: "./media/characters/nita/front.svg",
  17579. extra: 2473 / 2363,
  17580. bottom: 0.01
  17581. }
  17582. },
  17583. },
  17584. [
  17585. {
  17586. name: "Normal",
  17587. height: math.unit(1.82, "m")
  17588. },
  17589. {
  17590. name: "Macro",
  17591. height: math.unit(300, "m")
  17592. },
  17593. {
  17594. name: "Mistake Canon",
  17595. height: math.unit(0.5, "miles"),
  17596. default: true
  17597. },
  17598. {
  17599. name: "Big Mistake",
  17600. height: math.unit(13, "miles")
  17601. },
  17602. {
  17603. name: "Playing God",
  17604. height: math.unit(2450, "miles")
  17605. },
  17606. ]
  17607. ))
  17608. characterMakers.push(() => makeCharacter(
  17609. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17610. {
  17611. front: {
  17612. height: math.unit(4, "feet"),
  17613. weight: math.unit(120, "lb"),
  17614. name: "Front",
  17615. image: {
  17616. source: "./media/characters/shiriko/front.svg",
  17617. extra: 970/934,
  17618. bottom: 5/975
  17619. }
  17620. },
  17621. },
  17622. [
  17623. {
  17624. name: "Normal",
  17625. height: math.unit(4, "feet"),
  17626. default: true
  17627. },
  17628. ]
  17629. ))
  17630. characterMakers.push(() => makeCharacter(
  17631. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17632. {
  17633. front: {
  17634. height: math.unit(6, "feet"),
  17635. name: "front",
  17636. image: {
  17637. source: "./media/characters/deja/front.svg",
  17638. extra: 926 / 840,
  17639. bottom: 0.07
  17640. }
  17641. },
  17642. },
  17643. [
  17644. {
  17645. name: "Planck Length",
  17646. height: math.unit(1.6e-35, "meters")
  17647. },
  17648. {
  17649. name: "Normal",
  17650. height: math.unit(30.48, "meters"),
  17651. default: true
  17652. },
  17653. {
  17654. name: "Universal",
  17655. height: math.unit(8.8e26, "meters")
  17656. },
  17657. ]
  17658. ))
  17659. characterMakers.push(() => makeCharacter(
  17660. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17661. {
  17662. side: {
  17663. height: math.unit(8, "feet"),
  17664. weight: math.unit(6300, "lb"),
  17665. name: "Side",
  17666. image: {
  17667. source: "./media/characters/anima/side.svg",
  17668. bottom: 0.035
  17669. }
  17670. },
  17671. },
  17672. [
  17673. {
  17674. name: "Normal",
  17675. height: math.unit(8, "feet"),
  17676. default: true
  17677. },
  17678. ]
  17679. ))
  17680. characterMakers.push(() => makeCharacter(
  17681. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17682. {
  17683. front: {
  17684. height: math.unit(8, "feet"),
  17685. weight: math.unit(350, "lb"),
  17686. name: "Front",
  17687. image: {
  17688. source: "./media/characters/bianca/front.svg",
  17689. extra: 234 / 225,
  17690. bottom: 0.03
  17691. }
  17692. },
  17693. },
  17694. [
  17695. {
  17696. name: "Normal",
  17697. height: math.unit(8, "feet"),
  17698. default: true
  17699. },
  17700. ]
  17701. ))
  17702. characterMakers.push(() => makeCharacter(
  17703. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17704. {
  17705. front: {
  17706. height: math.unit(6, "feet"),
  17707. weight: math.unit(150, "lb"),
  17708. name: "Front",
  17709. image: {
  17710. source: "./media/characters/adinia/front.svg",
  17711. extra: 1845 / 1672,
  17712. bottom: 0.02
  17713. }
  17714. },
  17715. back: {
  17716. height: math.unit(6, "feet"),
  17717. weight: math.unit(150, "lb"),
  17718. name: "Back",
  17719. image: {
  17720. source: "./media/characters/adinia/back.svg",
  17721. extra: 1845 / 1672,
  17722. bottom: 0.002
  17723. }
  17724. },
  17725. },
  17726. [
  17727. {
  17728. name: "Normal",
  17729. height: math.unit(11 + 5 / 12, "feet"),
  17730. default: true
  17731. },
  17732. ]
  17733. ))
  17734. characterMakers.push(() => makeCharacter(
  17735. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17736. {
  17737. front: {
  17738. height: math.unit(3, "meters"),
  17739. weight: math.unit(200, "kg"),
  17740. name: "Front",
  17741. image: {
  17742. source: "./media/characters/lykasa/front.svg",
  17743. extra: 1076 / 976,
  17744. bottom: 0.06
  17745. }
  17746. },
  17747. },
  17748. [
  17749. {
  17750. name: "Normal",
  17751. height: math.unit(3, "meters")
  17752. },
  17753. {
  17754. name: "Kaiju",
  17755. height: math.unit(120, "meters"),
  17756. default: true
  17757. },
  17758. {
  17759. name: "Mega Kaiju",
  17760. height: math.unit(240, "km")
  17761. },
  17762. {
  17763. name: "Giga Kaiju",
  17764. height: math.unit(400, "megameters")
  17765. },
  17766. {
  17767. name: "Tera Kaiju",
  17768. height: math.unit(800, "gigameters")
  17769. },
  17770. {
  17771. name: "Kaiju Dragon Goddess",
  17772. height: math.unit(26, "zettaparsecs")
  17773. },
  17774. ]
  17775. ))
  17776. characterMakers.push(() => makeCharacter(
  17777. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17778. {
  17779. side: {
  17780. height: math.unit(283 / 124 * 6, "feet"),
  17781. weight: math.unit(35000, "lb"),
  17782. name: "Side",
  17783. image: {
  17784. source: "./media/characters/malfaren/side.svg",
  17785. extra: 2500 / 1010,
  17786. bottom: 0.01
  17787. }
  17788. },
  17789. front: {
  17790. height: math.unit(22.36, "feet"),
  17791. weight: math.unit(35000, "lb"),
  17792. name: "Front",
  17793. image: {
  17794. source: "./media/characters/malfaren/front.svg",
  17795. extra: 1631 / 1476,
  17796. bottom: 0.01
  17797. }
  17798. },
  17799. maw: {
  17800. height: math.unit(6.9, "feet"),
  17801. name: "Maw",
  17802. image: {
  17803. source: "./media/characters/malfaren/maw.svg"
  17804. }
  17805. },
  17806. },
  17807. [
  17808. {
  17809. name: "Big",
  17810. height: math.unit(283 / 162 * 6, "feet"),
  17811. },
  17812. {
  17813. name: "Bigger",
  17814. height: math.unit(283 / 124 * 6, "feet")
  17815. },
  17816. {
  17817. name: "Massive",
  17818. height: math.unit(283 / 92 * 6, "feet"),
  17819. default: true
  17820. },
  17821. {
  17822. name: "👀💦",
  17823. height: math.unit(283 / 73 * 6, "feet"),
  17824. },
  17825. ]
  17826. ))
  17827. characterMakers.push(() => makeCharacter(
  17828. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17829. {
  17830. front: {
  17831. height: math.unit(1.7, "m"),
  17832. weight: math.unit(70, "kg"),
  17833. name: "Front",
  17834. image: {
  17835. source: "./media/characters/kernel/front.svg",
  17836. extra: 222 / 210,
  17837. bottom: 0.007
  17838. }
  17839. },
  17840. },
  17841. [
  17842. {
  17843. name: "Nano",
  17844. height: math.unit(17, "micrometers")
  17845. },
  17846. {
  17847. name: "Micro",
  17848. height: math.unit(1.7, "mm")
  17849. },
  17850. {
  17851. name: "Small",
  17852. height: math.unit(1.7, "cm")
  17853. },
  17854. {
  17855. name: "Normal",
  17856. height: math.unit(1.7, "m"),
  17857. default: true
  17858. },
  17859. ]
  17860. ))
  17861. characterMakers.push(() => makeCharacter(
  17862. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17863. {
  17864. front: {
  17865. height: math.unit(1.75, "meters"),
  17866. weight: math.unit(65, "kg"),
  17867. name: "Front",
  17868. image: {
  17869. source: "./media/characters/jayne-folest/front.svg",
  17870. extra: 2115 / 2007,
  17871. bottom: 0.02
  17872. }
  17873. },
  17874. back: {
  17875. height: math.unit(1.75, "meters"),
  17876. weight: math.unit(65, "kg"),
  17877. name: "Back",
  17878. image: {
  17879. source: "./media/characters/jayne-folest/back.svg",
  17880. extra: 2115 / 2007,
  17881. bottom: 0.005
  17882. }
  17883. },
  17884. frontClothed: {
  17885. height: math.unit(1.75, "meters"),
  17886. weight: math.unit(65, "kg"),
  17887. name: "Front (Clothed)",
  17888. image: {
  17889. source: "./media/characters/jayne-folest/front-clothed.svg",
  17890. extra: 2115 / 2007,
  17891. bottom: 0.035
  17892. }
  17893. },
  17894. hand: {
  17895. height: math.unit(1 / 1.260, "feet"),
  17896. name: "Hand",
  17897. image: {
  17898. source: "./media/characters/jayne-folest/hand.svg"
  17899. }
  17900. },
  17901. foot: {
  17902. height: math.unit(1 / 0.918, "feet"),
  17903. name: "Foot",
  17904. image: {
  17905. source: "./media/characters/jayne-folest/foot.svg"
  17906. }
  17907. },
  17908. },
  17909. [
  17910. {
  17911. name: "Micro",
  17912. height: math.unit(4, "cm")
  17913. },
  17914. {
  17915. name: "Normal",
  17916. height: math.unit(1.75, "meters")
  17917. },
  17918. {
  17919. name: "Macro",
  17920. height: math.unit(47.5, "meters"),
  17921. default: true
  17922. },
  17923. ]
  17924. ))
  17925. characterMakers.push(() => makeCharacter(
  17926. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17927. {
  17928. front: {
  17929. height: math.unit(180, "cm"),
  17930. weight: math.unit(70, "kg"),
  17931. name: "Front",
  17932. image: {
  17933. source: "./media/characters/algier/front.svg",
  17934. extra: 596 / 572,
  17935. bottom: 0.04
  17936. }
  17937. },
  17938. back: {
  17939. height: math.unit(180, "cm"),
  17940. weight: math.unit(70, "kg"),
  17941. name: "Back",
  17942. image: {
  17943. source: "./media/characters/algier/back.svg",
  17944. extra: 596 / 572,
  17945. bottom: 0.025
  17946. }
  17947. },
  17948. frontdressed: {
  17949. height: math.unit(180, "cm"),
  17950. weight: math.unit(150, "kg"),
  17951. name: "Front-dressed",
  17952. image: {
  17953. source: "./media/characters/algier/front-dressed.svg",
  17954. extra: 596 / 572,
  17955. bottom: 0.038
  17956. }
  17957. },
  17958. },
  17959. [
  17960. {
  17961. name: "Micro",
  17962. height: math.unit(5, "cm")
  17963. },
  17964. {
  17965. name: "Normal",
  17966. height: math.unit(180, "cm"),
  17967. default: true
  17968. },
  17969. {
  17970. name: "Macro",
  17971. height: math.unit(64, "m")
  17972. },
  17973. ]
  17974. ))
  17975. characterMakers.push(() => makeCharacter(
  17976. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17977. {
  17978. upright: {
  17979. height: math.unit(7, "feet"),
  17980. weight: math.unit(300, "lb"),
  17981. name: "Upright",
  17982. image: {
  17983. source: "./media/characters/pretzel/upright.svg",
  17984. extra: 534 / 522,
  17985. bottom: 0.065
  17986. }
  17987. },
  17988. sprawling: {
  17989. height: math.unit(3.75, "feet"),
  17990. weight: math.unit(300, "lb"),
  17991. name: "Sprawling",
  17992. image: {
  17993. source: "./media/characters/pretzel/sprawling.svg",
  17994. extra: 314 / 281,
  17995. bottom: 0.1
  17996. }
  17997. },
  17998. tongue: {
  17999. height: math.unit(2, "feet"),
  18000. name: "Tongue",
  18001. image: {
  18002. source: "./media/characters/pretzel/tongue.svg"
  18003. }
  18004. },
  18005. },
  18006. [
  18007. {
  18008. name: "Normal",
  18009. height: math.unit(7, "feet"),
  18010. default: true
  18011. },
  18012. {
  18013. name: "Oversized",
  18014. height: math.unit(15, "feet")
  18015. },
  18016. {
  18017. name: "Huge",
  18018. height: math.unit(30, "feet")
  18019. },
  18020. {
  18021. name: "Macro",
  18022. height: math.unit(250, "feet")
  18023. },
  18024. ]
  18025. ))
  18026. characterMakers.push(() => makeCharacter(
  18027. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18028. {
  18029. sideFront: {
  18030. height: math.unit(5 + 2 / 12, "feet"),
  18031. weight: math.unit(120, "lb"),
  18032. name: "Front Side",
  18033. image: {
  18034. source: "./media/characters/roxi/side-front.svg",
  18035. extra: 2924 / 2717,
  18036. bottom: 0.08
  18037. }
  18038. },
  18039. sideBack: {
  18040. height: math.unit(5 + 2 / 12, "feet"),
  18041. weight: math.unit(120, "lb"),
  18042. name: "Back Side",
  18043. image: {
  18044. source: "./media/characters/roxi/side-back.svg",
  18045. extra: 2904 / 2693,
  18046. bottom: 0.06
  18047. }
  18048. },
  18049. front: {
  18050. height: math.unit(5 + 2 / 12, "feet"),
  18051. weight: math.unit(120, "lb"),
  18052. name: "Front",
  18053. image: {
  18054. source: "./media/characters/roxi/front.svg",
  18055. extra: 2028 / 1907,
  18056. bottom: 0.01
  18057. }
  18058. },
  18059. frontAlt: {
  18060. height: math.unit(5 + 2 / 12, "feet"),
  18061. weight: math.unit(120, "lb"),
  18062. name: "Front (Alt)",
  18063. image: {
  18064. source: "./media/characters/roxi/front-alt.svg",
  18065. extra: 1828 / 1798,
  18066. bottom: 0.01
  18067. }
  18068. },
  18069. sitting: {
  18070. height: math.unit(2.8, "feet"),
  18071. weight: math.unit(120, "lb"),
  18072. name: "Sitting",
  18073. image: {
  18074. source: "./media/characters/roxi/sitting.svg",
  18075. extra: 2660 / 2462,
  18076. bottom: 0.1
  18077. }
  18078. },
  18079. },
  18080. [
  18081. {
  18082. name: "Normal",
  18083. height: math.unit(5 + 2 / 12, "feet"),
  18084. default: true
  18085. },
  18086. ]
  18087. ))
  18088. characterMakers.push(() => makeCharacter(
  18089. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18090. {
  18091. side: {
  18092. height: math.unit(55, "feet"),
  18093. weight: math.unit(153, "tons"),
  18094. name: "Side",
  18095. image: {
  18096. source: "./media/characters/shadow/side.svg",
  18097. extra: 701 / 628,
  18098. bottom: 0.02
  18099. }
  18100. },
  18101. flying: {
  18102. height: math.unit(145, "feet"),
  18103. weight: math.unit(153, "tons"),
  18104. name: "Flying",
  18105. image: {
  18106. source: "./media/characters/shadow/flying.svg"
  18107. }
  18108. },
  18109. },
  18110. [
  18111. {
  18112. name: "Normal",
  18113. height: math.unit(55, "feet"),
  18114. default: true
  18115. },
  18116. ]
  18117. ))
  18118. characterMakers.push(() => makeCharacter(
  18119. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18120. {
  18121. front: {
  18122. height: math.unit(6, "feet"),
  18123. weight: math.unit(200, "lb"),
  18124. name: "Front",
  18125. image: {
  18126. source: "./media/characters/marcie/front.svg",
  18127. extra: 960 / 876,
  18128. bottom: 58 / 1017.87
  18129. }
  18130. },
  18131. },
  18132. [
  18133. {
  18134. name: "Macro",
  18135. height: math.unit(1, "mile"),
  18136. default: true
  18137. },
  18138. ]
  18139. ))
  18140. characterMakers.push(() => makeCharacter(
  18141. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18142. {
  18143. front: {
  18144. height: math.unit(7, "feet"),
  18145. weight: math.unit(200, "lb"),
  18146. name: "Front",
  18147. image: {
  18148. source: "./media/characters/kachina/front.svg",
  18149. extra: 1290.68 / 1119,
  18150. bottom: 36.5 / 1327.18
  18151. }
  18152. },
  18153. },
  18154. [
  18155. {
  18156. name: "Normal",
  18157. height: math.unit(7, "feet"),
  18158. default: true
  18159. },
  18160. ]
  18161. ))
  18162. characterMakers.push(() => makeCharacter(
  18163. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18164. {
  18165. looking: {
  18166. height: math.unit(2, "meters"),
  18167. weight: math.unit(300, "kg"),
  18168. name: "Looking",
  18169. image: {
  18170. source: "./media/characters/kash/looking.svg",
  18171. extra: 474 / 344,
  18172. bottom: 0.03
  18173. }
  18174. },
  18175. side: {
  18176. height: math.unit(2, "meters"),
  18177. weight: math.unit(300, "kg"),
  18178. name: "Side",
  18179. image: {
  18180. source: "./media/characters/kash/side.svg",
  18181. extra: 302 / 251,
  18182. bottom: 0.03
  18183. }
  18184. },
  18185. front: {
  18186. height: math.unit(2, "meters"),
  18187. weight: math.unit(300, "kg"),
  18188. name: "Front",
  18189. image: {
  18190. source: "./media/characters/kash/front.svg",
  18191. extra: 495 / 360,
  18192. bottom: 0.015
  18193. }
  18194. },
  18195. },
  18196. [
  18197. {
  18198. name: "Normal",
  18199. height: math.unit(2, "meters"),
  18200. default: true
  18201. },
  18202. {
  18203. name: "Big",
  18204. height: math.unit(3, "meters")
  18205. },
  18206. {
  18207. name: "Large",
  18208. height: math.unit(5, "meters")
  18209. },
  18210. ]
  18211. ))
  18212. characterMakers.push(() => makeCharacter(
  18213. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18214. {
  18215. feeding: {
  18216. height: math.unit(6.7, "feet"),
  18217. weight: math.unit(350, "lb"),
  18218. name: "Feeding",
  18219. image: {
  18220. source: "./media/characters/lalim/feeding.svg",
  18221. }
  18222. },
  18223. },
  18224. [
  18225. {
  18226. name: "Normal",
  18227. height: math.unit(6.7, "feet"),
  18228. default: true
  18229. },
  18230. ]
  18231. ))
  18232. characterMakers.push(() => makeCharacter(
  18233. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18234. {
  18235. front: {
  18236. height: math.unit(9.5, "feet"),
  18237. weight: math.unit(600, "lb"),
  18238. name: "Front",
  18239. image: {
  18240. source: "./media/characters/de'vout/front.svg",
  18241. extra: 1443 / 1328,
  18242. bottom: 0.025
  18243. }
  18244. },
  18245. back: {
  18246. height: math.unit(9.5, "feet"),
  18247. weight: math.unit(600, "lb"),
  18248. name: "Back",
  18249. image: {
  18250. source: "./media/characters/de'vout/back.svg",
  18251. extra: 1443 / 1328
  18252. }
  18253. },
  18254. frontDressed: {
  18255. height: math.unit(9.5, "feet"),
  18256. weight: math.unit(600, "lb"),
  18257. name: "Front (Dressed",
  18258. image: {
  18259. source: "./media/characters/de'vout/front-dressed.svg",
  18260. extra: 1443 / 1328,
  18261. bottom: 0.025
  18262. }
  18263. },
  18264. backDressed: {
  18265. height: math.unit(9.5, "feet"),
  18266. weight: math.unit(600, "lb"),
  18267. name: "Back (Dressed",
  18268. image: {
  18269. source: "./media/characters/de'vout/back-dressed.svg",
  18270. extra: 1443 / 1328
  18271. }
  18272. },
  18273. },
  18274. [
  18275. {
  18276. name: "Normal",
  18277. height: math.unit(9.5, "feet"),
  18278. default: true
  18279. },
  18280. ]
  18281. ))
  18282. characterMakers.push(() => makeCharacter(
  18283. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18284. {
  18285. front: {
  18286. height: math.unit(8, "feet"),
  18287. weight: math.unit(225, "lb"),
  18288. name: "Front",
  18289. image: {
  18290. source: "./media/characters/talana/front.svg",
  18291. extra: 1410 / 1300,
  18292. bottom: 0.015
  18293. }
  18294. },
  18295. frontDressed: {
  18296. height: math.unit(8, "feet"),
  18297. weight: math.unit(225, "lb"),
  18298. name: "Front (Dressed",
  18299. image: {
  18300. source: "./media/characters/talana/front-dressed.svg",
  18301. extra: 1410 / 1300,
  18302. bottom: 0.015
  18303. }
  18304. },
  18305. },
  18306. [
  18307. {
  18308. name: "Normal",
  18309. height: math.unit(8, "feet"),
  18310. default: true
  18311. },
  18312. ]
  18313. ))
  18314. characterMakers.push(() => makeCharacter(
  18315. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18316. {
  18317. side: {
  18318. height: math.unit(7.2, "feet"),
  18319. weight: math.unit(150, "lb"),
  18320. name: "Side",
  18321. image: {
  18322. source: "./media/characters/xeauvok/side.svg",
  18323. extra: 1975 / 1523,
  18324. bottom: 0.07
  18325. }
  18326. },
  18327. },
  18328. [
  18329. {
  18330. name: "Normal",
  18331. height: math.unit(7.2, "feet"),
  18332. default: true
  18333. },
  18334. ]
  18335. ))
  18336. characterMakers.push(() => makeCharacter(
  18337. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18338. {
  18339. side: {
  18340. height: math.unit(10, "feet"),
  18341. weight: math.unit(900, "kg"),
  18342. name: "Side",
  18343. image: {
  18344. source: "./media/characters/zara/side.svg",
  18345. extra: 504 / 498
  18346. }
  18347. },
  18348. },
  18349. [
  18350. {
  18351. name: "Normal",
  18352. height: math.unit(10, "feet"),
  18353. default: true
  18354. },
  18355. ]
  18356. ))
  18357. characterMakers.push(() => makeCharacter(
  18358. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18359. {
  18360. side: {
  18361. height: math.unit(6, "feet"),
  18362. weight: math.unit(150, "lb"),
  18363. name: "Side",
  18364. image: {
  18365. source: "./media/characters/richard-dragon/side.svg",
  18366. extra: 845 / 340,
  18367. bottom: 0.017
  18368. }
  18369. },
  18370. maw: {
  18371. height: math.unit(2.97, "feet"),
  18372. name: "Maw",
  18373. image: {
  18374. source: "./media/characters/richard-dragon/maw.svg"
  18375. }
  18376. },
  18377. },
  18378. [
  18379. ]
  18380. ))
  18381. characterMakers.push(() => makeCharacter(
  18382. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18383. {
  18384. front: {
  18385. height: math.unit(4, "feet"),
  18386. weight: math.unit(100, "lb"),
  18387. name: "Front",
  18388. image: {
  18389. source: "./media/characters/richard-smeargle/front.svg",
  18390. extra: 2952 / 2820,
  18391. bottom: 0.028
  18392. }
  18393. },
  18394. },
  18395. [
  18396. {
  18397. name: "Normal",
  18398. height: math.unit(4, "feet"),
  18399. default: true
  18400. },
  18401. {
  18402. name: "Dynamax",
  18403. height: math.unit(20, "meters")
  18404. },
  18405. ]
  18406. ))
  18407. characterMakers.push(() => makeCharacter(
  18408. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18409. {
  18410. front: {
  18411. height: math.unit(6, "feet"),
  18412. weight: math.unit(110, "lb"),
  18413. name: "Front",
  18414. image: {
  18415. source: "./media/characters/klay/front.svg",
  18416. extra: 962 / 883,
  18417. bottom: 0.04
  18418. }
  18419. },
  18420. back: {
  18421. height: math.unit(6, "feet"),
  18422. weight: math.unit(110, "lb"),
  18423. name: "Back",
  18424. image: {
  18425. source: "./media/characters/klay/back.svg",
  18426. extra: 962 / 883
  18427. }
  18428. },
  18429. beans: {
  18430. height: math.unit(1.15, "feet"),
  18431. name: "Beans",
  18432. image: {
  18433. source: "./media/characters/klay/beans.svg"
  18434. }
  18435. },
  18436. },
  18437. [
  18438. {
  18439. name: "Micro",
  18440. height: math.unit(6, "inches")
  18441. },
  18442. {
  18443. name: "Mini",
  18444. height: math.unit(3, "feet")
  18445. },
  18446. {
  18447. name: "Normal",
  18448. height: math.unit(6, "feet"),
  18449. default: true
  18450. },
  18451. {
  18452. name: "Big",
  18453. height: math.unit(25, "feet")
  18454. },
  18455. {
  18456. name: "Macro",
  18457. height: math.unit(100, "feet")
  18458. },
  18459. {
  18460. name: "Megamacro",
  18461. height: math.unit(400, "feet")
  18462. },
  18463. ]
  18464. ))
  18465. characterMakers.push(() => makeCharacter(
  18466. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18467. {
  18468. front: {
  18469. height: math.unit(6, "feet"),
  18470. weight: math.unit(160, "lb"),
  18471. name: "Front",
  18472. image: {
  18473. source: "./media/characters/marcus/front.svg",
  18474. extra: 734 / 676,
  18475. bottom: 0.03
  18476. }
  18477. },
  18478. },
  18479. [
  18480. {
  18481. name: "Little",
  18482. height: math.unit(6, "feet")
  18483. },
  18484. {
  18485. name: "Normal",
  18486. height: math.unit(110, "feet"),
  18487. default: true
  18488. },
  18489. {
  18490. name: "Macro",
  18491. height: math.unit(250, "feet")
  18492. },
  18493. {
  18494. name: "Megamacro",
  18495. height: math.unit(1000, "feet")
  18496. },
  18497. ]
  18498. ))
  18499. characterMakers.push(() => makeCharacter(
  18500. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18501. {
  18502. front: {
  18503. height: math.unit(7, "feet"),
  18504. weight: math.unit(275, "lb"),
  18505. name: "Front",
  18506. image: {
  18507. source: "./media/characters/claude-delroute/front.svg",
  18508. extra: 230 / 214,
  18509. bottom: 0.007
  18510. }
  18511. },
  18512. side: {
  18513. height: math.unit(7, "feet"),
  18514. weight: math.unit(275, "lb"),
  18515. name: "Side",
  18516. image: {
  18517. source: "./media/characters/claude-delroute/side.svg",
  18518. extra: 222 / 214,
  18519. bottom: 0.01
  18520. }
  18521. },
  18522. back: {
  18523. height: math.unit(7, "feet"),
  18524. weight: math.unit(275, "lb"),
  18525. name: "Back",
  18526. image: {
  18527. source: "./media/characters/claude-delroute/back.svg",
  18528. extra: 230 / 214,
  18529. bottom: 0.015
  18530. }
  18531. },
  18532. maw: {
  18533. height: math.unit(0.6407, "meters"),
  18534. name: "Maw",
  18535. image: {
  18536. source: "./media/characters/claude-delroute/maw.svg"
  18537. }
  18538. },
  18539. },
  18540. [
  18541. {
  18542. name: "Normal",
  18543. height: math.unit(7, "feet"),
  18544. default: true
  18545. },
  18546. {
  18547. name: "Lorge",
  18548. height: math.unit(20, "feet")
  18549. },
  18550. ]
  18551. ))
  18552. characterMakers.push(() => makeCharacter(
  18553. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18554. {
  18555. front: {
  18556. height: math.unit(8 + 4 / 12, "feet"),
  18557. weight: math.unit(600, "lb"),
  18558. name: "Front",
  18559. image: {
  18560. source: "./media/characters/dragonien/front.svg",
  18561. extra: 100 / 94,
  18562. bottom: 3.3 / 103.3445
  18563. }
  18564. },
  18565. back: {
  18566. height: math.unit(8 + 4 / 12, "feet"),
  18567. weight: math.unit(600, "lb"),
  18568. name: "Back",
  18569. image: {
  18570. source: "./media/characters/dragonien/back.svg",
  18571. extra: 776 / 746,
  18572. bottom: 6.4 / 782.0616
  18573. }
  18574. },
  18575. foot: {
  18576. height: math.unit(1.54, "feet"),
  18577. name: "Foot",
  18578. image: {
  18579. source: "./media/characters/dragonien/foot.svg",
  18580. }
  18581. },
  18582. },
  18583. [
  18584. {
  18585. name: "Normal",
  18586. height: math.unit(8 + 4 / 12, "feet"),
  18587. default: true
  18588. },
  18589. {
  18590. name: "Macro",
  18591. height: math.unit(200, "feet")
  18592. },
  18593. {
  18594. name: "Megamacro",
  18595. height: math.unit(1, "mile")
  18596. },
  18597. {
  18598. name: "Gigamacro",
  18599. height: math.unit(1000, "miles")
  18600. },
  18601. ]
  18602. ))
  18603. characterMakers.push(() => makeCharacter(
  18604. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18605. {
  18606. front: {
  18607. height: math.unit(5 + 2 / 12, "feet"),
  18608. weight: math.unit(110, "lb"),
  18609. name: "Front",
  18610. image: {
  18611. source: "./media/characters/desta/front.svg",
  18612. extra: 767 / 726,
  18613. bottom: 11.7 / 779
  18614. }
  18615. },
  18616. back: {
  18617. height: math.unit(5 + 2 / 12, "feet"),
  18618. weight: math.unit(110, "lb"),
  18619. name: "Back",
  18620. image: {
  18621. source: "./media/characters/desta/back.svg",
  18622. extra: 777 / 728,
  18623. bottom: 6 / 784
  18624. }
  18625. },
  18626. frontAlt: {
  18627. height: math.unit(5 + 2 / 12, "feet"),
  18628. weight: math.unit(110, "lb"),
  18629. name: "Front",
  18630. image: {
  18631. source: "./media/characters/desta/front-alt.svg",
  18632. extra: 1482 / 1417
  18633. }
  18634. },
  18635. side: {
  18636. height: math.unit(5 + 2 / 12, "feet"),
  18637. weight: math.unit(110, "lb"),
  18638. name: "Side",
  18639. image: {
  18640. source: "./media/characters/desta/side.svg",
  18641. extra: 2579 / 2491,
  18642. bottom: 0.053
  18643. }
  18644. },
  18645. },
  18646. [
  18647. {
  18648. name: "Micro",
  18649. height: math.unit(6, "inches")
  18650. },
  18651. {
  18652. name: "Normal",
  18653. height: math.unit(5 + 2 / 12, "feet"),
  18654. default: true
  18655. },
  18656. {
  18657. name: "Macro",
  18658. height: math.unit(62, "feet")
  18659. },
  18660. {
  18661. name: "Megamacro",
  18662. height: math.unit(1800, "feet")
  18663. },
  18664. ]
  18665. ))
  18666. characterMakers.push(() => makeCharacter(
  18667. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18668. {
  18669. front: {
  18670. height: math.unit(10, "feet"),
  18671. weight: math.unit(700, "lb"),
  18672. name: "Front",
  18673. image: {
  18674. source: "./media/characters/storm-alystar/front.svg",
  18675. extra: 2112 / 1898,
  18676. bottom: 0.034
  18677. }
  18678. },
  18679. },
  18680. [
  18681. {
  18682. name: "Micro",
  18683. height: math.unit(3.5, "inches")
  18684. },
  18685. {
  18686. name: "Normal",
  18687. height: math.unit(10, "feet"),
  18688. default: true
  18689. },
  18690. {
  18691. name: "Macro",
  18692. height: math.unit(400, "feet")
  18693. },
  18694. {
  18695. name: "Deific",
  18696. height: math.unit(60, "miles")
  18697. },
  18698. ]
  18699. ))
  18700. characterMakers.push(() => makeCharacter(
  18701. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18702. {
  18703. front: {
  18704. height: math.unit(2.35, "meters"),
  18705. weight: math.unit(119, "kg"),
  18706. name: "Front",
  18707. image: {
  18708. source: "./media/characters/ilia/front.svg",
  18709. extra: 1285 / 1255,
  18710. bottom: 0.06
  18711. }
  18712. },
  18713. },
  18714. [
  18715. {
  18716. name: "Normal",
  18717. height: math.unit(2.35, "meters")
  18718. },
  18719. {
  18720. name: "Macro",
  18721. height: math.unit(140, "meters"),
  18722. default: true
  18723. },
  18724. {
  18725. name: "Megamacro",
  18726. height: math.unit(100, "miles")
  18727. },
  18728. ]
  18729. ))
  18730. characterMakers.push(() => makeCharacter(
  18731. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18732. {
  18733. front: {
  18734. height: math.unit(6 + 5 / 12, "feet"),
  18735. weight: math.unit(190, "lb"),
  18736. name: "Front",
  18737. image: {
  18738. source: "./media/characters/kingdead/front.svg",
  18739. extra: 1228 / 1177
  18740. }
  18741. },
  18742. },
  18743. [
  18744. {
  18745. name: "Micro",
  18746. height: math.unit(7, "inches")
  18747. },
  18748. {
  18749. name: "Normal",
  18750. height: math.unit(6 + 5 / 12, "feet")
  18751. },
  18752. {
  18753. name: "Macro",
  18754. height: math.unit(150, "feet"),
  18755. default: true
  18756. },
  18757. {
  18758. name: "Megamacro",
  18759. height: math.unit(200, "miles")
  18760. },
  18761. ]
  18762. ))
  18763. characterMakers.push(() => makeCharacter(
  18764. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18765. {
  18766. front: {
  18767. height: math.unit(8, "feet"),
  18768. weight: math.unit(600, "lb"),
  18769. name: "Front",
  18770. image: {
  18771. source: "./media/characters/kyrehx/front.svg",
  18772. extra: 1195 / 1095,
  18773. bottom: 0.034
  18774. }
  18775. },
  18776. },
  18777. [
  18778. {
  18779. name: "Micro",
  18780. height: math.unit(2, "inches")
  18781. },
  18782. {
  18783. name: "Normal",
  18784. height: math.unit(8, "feet"),
  18785. default: true
  18786. },
  18787. {
  18788. name: "Macro",
  18789. height: math.unit(255, "feet")
  18790. },
  18791. ]
  18792. ))
  18793. characterMakers.push(() => makeCharacter(
  18794. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18795. {
  18796. front: {
  18797. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18798. weight: math.unit(184, "lb"),
  18799. name: "Front",
  18800. image: {
  18801. source: "./media/characters/xang/front.svg",
  18802. extra: 845 / 755
  18803. }
  18804. },
  18805. },
  18806. [
  18807. {
  18808. name: "Normal",
  18809. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18810. default: true
  18811. },
  18812. {
  18813. name: "Macro",
  18814. height: math.unit(0.935 * 146, "feet")
  18815. },
  18816. {
  18817. name: "Megamacro",
  18818. height: math.unit(0.935 * 3, "miles")
  18819. },
  18820. ]
  18821. ))
  18822. characterMakers.push(() => makeCharacter(
  18823. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18824. {
  18825. frontDressed: {
  18826. height: math.unit(5 + 7 / 12, "feet"),
  18827. weight: math.unit(140, "lb"),
  18828. name: "Front (Dressed)",
  18829. image: {
  18830. source: "./media/characters/doc-weardno/front-dressed.svg",
  18831. extra: 263 / 234
  18832. }
  18833. },
  18834. backDressed: {
  18835. height: math.unit(5 + 7 / 12, "feet"),
  18836. weight: math.unit(140, "lb"),
  18837. name: "Back (Dressed)",
  18838. image: {
  18839. source: "./media/characters/doc-weardno/back-dressed.svg",
  18840. extra: 266 / 238
  18841. }
  18842. },
  18843. front: {
  18844. height: math.unit(5 + 7 / 12, "feet"),
  18845. weight: math.unit(140, "lb"),
  18846. name: "Front",
  18847. image: {
  18848. source: "./media/characters/doc-weardno/front.svg",
  18849. extra: 254 / 233
  18850. }
  18851. },
  18852. },
  18853. [
  18854. {
  18855. name: "Micro",
  18856. height: math.unit(3, "inches")
  18857. },
  18858. {
  18859. name: "Normal",
  18860. height: math.unit(5 + 7 / 12, "feet"),
  18861. default: true
  18862. },
  18863. {
  18864. name: "Macro",
  18865. height: math.unit(25, "feet")
  18866. },
  18867. {
  18868. name: "Megamacro",
  18869. height: math.unit(2, "miles")
  18870. },
  18871. ]
  18872. ))
  18873. characterMakers.push(() => makeCharacter(
  18874. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18875. {
  18876. front: {
  18877. height: math.unit(6 + 2 / 12, "feet"),
  18878. weight: math.unit(153, "lb"),
  18879. name: "Front",
  18880. image: {
  18881. source: "./media/characters/seth-whilst/front.svg",
  18882. bottom: 0.07
  18883. }
  18884. },
  18885. },
  18886. [
  18887. {
  18888. name: "Micro",
  18889. height: math.unit(5, "inches")
  18890. },
  18891. {
  18892. name: "Normal",
  18893. height: math.unit(6 + 2 / 12, "feet"),
  18894. default: true
  18895. },
  18896. ]
  18897. ))
  18898. characterMakers.push(() => makeCharacter(
  18899. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18900. {
  18901. front: {
  18902. height: math.unit(3, "inches"),
  18903. weight: math.unit(8, "grams"),
  18904. name: "Front",
  18905. image: {
  18906. source: "./media/characters/pocket-jabari/front.svg",
  18907. extra: 1024 / 974,
  18908. bottom: 0.039
  18909. }
  18910. },
  18911. },
  18912. [
  18913. {
  18914. name: "Minimicro",
  18915. height: math.unit(8, "mm")
  18916. },
  18917. {
  18918. name: "Micro",
  18919. height: math.unit(3, "inches"),
  18920. default: true
  18921. },
  18922. {
  18923. name: "Normal",
  18924. height: math.unit(3, "feet")
  18925. },
  18926. ]
  18927. ))
  18928. characterMakers.push(() => makeCharacter(
  18929. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18930. {
  18931. front: {
  18932. height: math.unit(15, "feet"),
  18933. weight: math.unit(3280, "lb"),
  18934. name: "Front",
  18935. image: {
  18936. source: "./media/characters/sapphy/front.svg",
  18937. extra: 671 / 577,
  18938. bottom: 0.085
  18939. }
  18940. },
  18941. back: {
  18942. height: math.unit(15, "feet"),
  18943. weight: math.unit(3280, "lb"),
  18944. name: "Back",
  18945. image: {
  18946. source: "./media/characters/sapphy/back.svg",
  18947. extra: 631 / 607,
  18948. bottom: 0.045
  18949. }
  18950. },
  18951. },
  18952. [
  18953. {
  18954. name: "Normal",
  18955. height: math.unit(15, "feet")
  18956. },
  18957. {
  18958. name: "Casual Macro",
  18959. height: math.unit(120, "feet")
  18960. },
  18961. {
  18962. name: "Macro",
  18963. height: math.unit(2150, "feet"),
  18964. default: true
  18965. },
  18966. {
  18967. name: "Megamacro",
  18968. height: math.unit(8, "miles")
  18969. },
  18970. {
  18971. name: "Galaxy Mom",
  18972. height: math.unit(6, "megalightyears")
  18973. },
  18974. ]
  18975. ))
  18976. characterMakers.push(() => makeCharacter(
  18977. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18978. {
  18979. front: {
  18980. height: math.unit(6, "feet"),
  18981. weight: math.unit(170, "lb"),
  18982. name: "Front",
  18983. image: {
  18984. source: "./media/characters/kiro/front.svg",
  18985. extra: 1064 / 1012,
  18986. bottom: 0.052
  18987. }
  18988. },
  18989. },
  18990. [
  18991. {
  18992. name: "Micro",
  18993. height: math.unit(6, "inches")
  18994. },
  18995. {
  18996. name: "Normal",
  18997. height: math.unit(6, "feet"),
  18998. default: true
  18999. },
  19000. {
  19001. name: "Macro",
  19002. height: math.unit(72, "feet")
  19003. },
  19004. ]
  19005. ))
  19006. characterMakers.push(() => makeCharacter(
  19007. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19008. {
  19009. front: {
  19010. height: math.unit(5 + 9 / 12, "feet"),
  19011. weight: math.unit(175, "lb"),
  19012. name: "Front",
  19013. image: {
  19014. source: "./media/characters/irishfox/front.svg",
  19015. extra: 1912 / 1680,
  19016. bottom: 0.02
  19017. }
  19018. },
  19019. },
  19020. [
  19021. {
  19022. name: "Nano",
  19023. height: math.unit(1, "mm")
  19024. },
  19025. {
  19026. name: "Micro",
  19027. height: math.unit(2, "inches")
  19028. },
  19029. {
  19030. name: "Normal",
  19031. height: math.unit(5 + 9 / 12, "feet"),
  19032. default: true
  19033. },
  19034. {
  19035. name: "Macro",
  19036. height: math.unit(45, "feet")
  19037. },
  19038. ]
  19039. ))
  19040. characterMakers.push(() => makeCharacter(
  19041. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19042. {
  19043. front: {
  19044. height: math.unit(6 + 1 / 12, "feet"),
  19045. weight: math.unit(75, "lb"),
  19046. name: "Front",
  19047. image: {
  19048. source: "./media/characters/aronai-sieyes/front.svg",
  19049. extra: 1532/1450,
  19050. bottom: 42/1574
  19051. }
  19052. },
  19053. side: {
  19054. height: math.unit(6 + 1 / 12, "feet"),
  19055. weight: math.unit(75, "lb"),
  19056. name: "Side",
  19057. image: {
  19058. source: "./media/characters/aronai-sieyes/side.svg",
  19059. extra: 1422/1365,
  19060. bottom: 148/1570
  19061. }
  19062. },
  19063. back: {
  19064. height: math.unit(6 + 1 / 12, "feet"),
  19065. weight: math.unit(75, "lb"),
  19066. name: "Back",
  19067. image: {
  19068. source: "./media/characters/aronai-sieyes/back.svg",
  19069. extra: 1526/1464,
  19070. bottom: 51/1577
  19071. }
  19072. },
  19073. dressed: {
  19074. height: math.unit(6 + 1 / 12, "feet"),
  19075. weight: math.unit(75, "lb"),
  19076. name: "Dressed",
  19077. image: {
  19078. source: "./media/characters/aronai-sieyes/dressed.svg",
  19079. extra: 1559/1483,
  19080. bottom: 39/1598
  19081. }
  19082. },
  19083. slit: {
  19084. height: math.unit(1.3, "feet"),
  19085. name: "Slit",
  19086. image: {
  19087. source: "./media/characters/aronai-sieyes/slit.svg"
  19088. }
  19089. },
  19090. slitSpread: {
  19091. height: math.unit(0.9, "feet"),
  19092. name: "Slit (Spread)",
  19093. image: {
  19094. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19095. }
  19096. },
  19097. rump: {
  19098. height: math.unit(1.3, "feet"),
  19099. name: "Rump",
  19100. image: {
  19101. source: "./media/characters/aronai-sieyes/rump.svg"
  19102. }
  19103. },
  19104. maw: {
  19105. height: math.unit(1.25, "feet"),
  19106. name: "Maw",
  19107. image: {
  19108. source: "./media/characters/aronai-sieyes/maw.svg"
  19109. }
  19110. },
  19111. feral: {
  19112. height: math.unit(18, "feet"),
  19113. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19114. name: "Feral",
  19115. image: {
  19116. source: "./media/characters/aronai-sieyes/feral.svg",
  19117. extra: 1530 / 1240,
  19118. bottom: 0.035
  19119. }
  19120. },
  19121. },
  19122. [
  19123. {
  19124. name: "Micro",
  19125. height: math.unit(2, "inches")
  19126. },
  19127. {
  19128. name: "Normal",
  19129. height: math.unit(6 + 1 / 12, "feet"),
  19130. default: true
  19131. }
  19132. ]
  19133. ))
  19134. characterMakers.push(() => makeCharacter(
  19135. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19136. {
  19137. front: {
  19138. height: math.unit(12, "feet"),
  19139. weight: math.unit(410, "kg"),
  19140. name: "Front",
  19141. image: {
  19142. source: "./media/characters/xuna/front.svg",
  19143. extra: 2184 / 1980
  19144. }
  19145. },
  19146. side: {
  19147. height: math.unit(12, "feet"),
  19148. weight: math.unit(410, "kg"),
  19149. name: "Side",
  19150. image: {
  19151. source: "./media/characters/xuna/side.svg",
  19152. extra: 2184 / 1980
  19153. }
  19154. },
  19155. back: {
  19156. height: math.unit(12, "feet"),
  19157. weight: math.unit(410, "kg"),
  19158. name: "Back",
  19159. image: {
  19160. source: "./media/characters/xuna/back.svg",
  19161. extra: 2184 / 1980
  19162. }
  19163. },
  19164. },
  19165. [
  19166. {
  19167. name: "Nano glow",
  19168. height: math.unit(10, "nm")
  19169. },
  19170. {
  19171. name: "Micro floof",
  19172. height: math.unit(0.3, "m")
  19173. },
  19174. {
  19175. name: "Huggable softy boi",
  19176. height: math.unit(3.6576, "m"),
  19177. default: true
  19178. },
  19179. {
  19180. name: "Admirable floof",
  19181. height: math.unit(80, "meters")
  19182. },
  19183. {
  19184. name: "Gentle macro",
  19185. height: math.unit(300, "meters")
  19186. },
  19187. {
  19188. name: "Very careful floof",
  19189. height: math.unit(3200, "meters")
  19190. },
  19191. {
  19192. name: "The mega floof",
  19193. height: math.unit(36000, "meters")
  19194. },
  19195. {
  19196. name: "Giga-fur-Wicker",
  19197. height: math.unit(4800000, "meters")
  19198. },
  19199. {
  19200. name: "Licky world",
  19201. height: math.unit(20000000, "meters")
  19202. },
  19203. {
  19204. name: "Floofy cyan sun",
  19205. height: math.unit(1500000000, "meters")
  19206. },
  19207. {
  19208. name: "Milky Wicker",
  19209. height: math.unit(1000000000000000000000, "meters")
  19210. },
  19211. {
  19212. name: "The observing Wicker",
  19213. height: math.unit(999999999999999999999999999, "meters")
  19214. },
  19215. ]
  19216. ))
  19217. characterMakers.push(() => makeCharacter(
  19218. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19219. {
  19220. front: {
  19221. height: math.unit(5 + 9 / 12, "feet"),
  19222. weight: math.unit(150, "lb"),
  19223. name: "Front",
  19224. image: {
  19225. source: "./media/characters/arokha-sieyes/front.svg",
  19226. extra: 1425 / 1284,
  19227. bottom: 0.05
  19228. }
  19229. },
  19230. },
  19231. [
  19232. {
  19233. name: "Normal",
  19234. height: math.unit(5 + 9 / 12, "feet")
  19235. },
  19236. {
  19237. name: "Macro",
  19238. height: math.unit(30, "meters"),
  19239. default: true
  19240. },
  19241. ]
  19242. ))
  19243. characterMakers.push(() => makeCharacter(
  19244. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19245. {
  19246. front: {
  19247. height: math.unit(6, "feet"),
  19248. weight: math.unit(180, "lb"),
  19249. name: "Front",
  19250. image: {
  19251. source: "./media/characters/arokh-sieyes/front.svg",
  19252. extra: 1830 / 1769,
  19253. bottom: 0.01
  19254. }
  19255. },
  19256. },
  19257. [
  19258. {
  19259. name: "Normal",
  19260. height: math.unit(6, "feet")
  19261. },
  19262. {
  19263. name: "Macro",
  19264. height: math.unit(30, "meters"),
  19265. default: true
  19266. },
  19267. ]
  19268. ))
  19269. characterMakers.push(() => makeCharacter(
  19270. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19271. {
  19272. side: {
  19273. height: math.unit(13 + 1 / 12, "feet"),
  19274. weight: math.unit(8.5, "tonnes"),
  19275. name: "Side",
  19276. image: {
  19277. source: "./media/characters/goldeneye/side.svg",
  19278. extra: 1182 / 778,
  19279. bottom: 0.067
  19280. }
  19281. },
  19282. paw: {
  19283. height: math.unit(3.4, "feet"),
  19284. name: "Paw",
  19285. image: {
  19286. source: "./media/characters/goldeneye/paw.svg"
  19287. }
  19288. },
  19289. },
  19290. [
  19291. {
  19292. name: "Normal",
  19293. height: math.unit(13 + 1 / 12, "feet"),
  19294. default: true
  19295. },
  19296. ]
  19297. ))
  19298. characterMakers.push(() => makeCharacter(
  19299. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19300. {
  19301. front: {
  19302. height: math.unit(6 + 1 / 12, "feet"),
  19303. weight: math.unit(210, "lb"),
  19304. name: "Front",
  19305. image: {
  19306. source: "./media/characters/leonardo-lycheborne/front.svg",
  19307. extra: 776/723,
  19308. bottom: 34/810
  19309. }
  19310. },
  19311. side: {
  19312. height: math.unit(6 + 1 / 12, "feet"),
  19313. weight: math.unit(210, "lb"),
  19314. name: "Side",
  19315. image: {
  19316. source: "./media/characters/leonardo-lycheborne/side.svg",
  19317. extra: 780/728,
  19318. bottom: 12/792
  19319. }
  19320. },
  19321. back: {
  19322. height: math.unit(6 + 1 / 12, "feet"),
  19323. weight: math.unit(210, "lb"),
  19324. name: "Back",
  19325. image: {
  19326. source: "./media/characters/leonardo-lycheborne/back.svg",
  19327. extra: 775/721,
  19328. bottom: 17/792
  19329. }
  19330. },
  19331. hand: {
  19332. height: math.unit(1.08, "feet"),
  19333. name: "Hand",
  19334. image: {
  19335. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19336. }
  19337. },
  19338. foot: {
  19339. height: math.unit(1.32, "feet"),
  19340. name: "Foot",
  19341. image: {
  19342. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19343. }
  19344. },
  19345. maw: {
  19346. height: math.unit(1, "feet"),
  19347. name: "Maw",
  19348. image: {
  19349. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19350. }
  19351. },
  19352. were: {
  19353. height: math.unit(20, "feet"),
  19354. weight: math.unit(7800, "lb"),
  19355. name: "Were",
  19356. image: {
  19357. source: "./media/characters/leonardo-lycheborne/were.svg",
  19358. extra: 1224/1165,
  19359. bottom: 72/1296
  19360. }
  19361. },
  19362. feral: {
  19363. height: math.unit(7.5, "feet"),
  19364. weight: math.unit(600, "lb"),
  19365. name: "Feral",
  19366. image: {
  19367. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19368. extra: 797/702,
  19369. bottom: 139/936
  19370. }
  19371. },
  19372. taur: {
  19373. height: math.unit(11, "feet"),
  19374. weight: math.unit(3300, "lb"),
  19375. name: "Taur",
  19376. image: {
  19377. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19378. extra: 1271/1197,
  19379. bottom: 47/1318
  19380. }
  19381. },
  19382. barghest: {
  19383. height: math.unit(11, "feet"),
  19384. weight: math.unit(1300, "lb"),
  19385. name: "Barghest",
  19386. image: {
  19387. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19388. extra: 1291/1204,
  19389. bottom: 37/1328
  19390. }
  19391. },
  19392. dick: {
  19393. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19394. name: "Dick",
  19395. image: {
  19396. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19397. }
  19398. },
  19399. dickWere: {
  19400. height: math.unit((20) / 3.8, "feet"),
  19401. name: "Dick (Were)",
  19402. image: {
  19403. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19404. }
  19405. },
  19406. },
  19407. [
  19408. {
  19409. name: "Normal",
  19410. height: math.unit(6 + 1 / 12, "feet"),
  19411. default: true
  19412. },
  19413. ]
  19414. ))
  19415. characterMakers.push(() => makeCharacter(
  19416. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19417. {
  19418. front: {
  19419. height: math.unit(10, "feet"),
  19420. weight: math.unit(350, "lb"),
  19421. name: "Front",
  19422. image: {
  19423. source: "./media/characters/jet/front.svg",
  19424. extra: 2050 / 1980,
  19425. bottom: 0.013
  19426. }
  19427. },
  19428. back: {
  19429. height: math.unit(10, "feet"),
  19430. weight: math.unit(350, "lb"),
  19431. name: "Back",
  19432. image: {
  19433. source: "./media/characters/jet/back.svg",
  19434. extra: 2050 / 1980,
  19435. bottom: 0.013
  19436. }
  19437. },
  19438. },
  19439. [
  19440. {
  19441. name: "Micro",
  19442. height: math.unit(6, "inches")
  19443. },
  19444. {
  19445. name: "Normal",
  19446. height: math.unit(10, "feet"),
  19447. default: true
  19448. },
  19449. {
  19450. name: "Macro",
  19451. height: math.unit(100, "feet")
  19452. },
  19453. ]
  19454. ))
  19455. characterMakers.push(() => makeCharacter(
  19456. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19457. {
  19458. front: {
  19459. height: math.unit(15, "feet"),
  19460. weight: math.unit(2800, "lb"),
  19461. name: "Front",
  19462. image: {
  19463. source: "./media/characters/tanarath/front.svg",
  19464. extra: 2392 / 2220,
  19465. bottom: 0.03
  19466. }
  19467. },
  19468. back: {
  19469. height: math.unit(15, "feet"),
  19470. weight: math.unit(2800, "lb"),
  19471. name: "Back",
  19472. image: {
  19473. source: "./media/characters/tanarath/back.svg",
  19474. extra: 2392 / 2220,
  19475. bottom: 0.03
  19476. }
  19477. },
  19478. },
  19479. [
  19480. {
  19481. name: "Normal",
  19482. height: math.unit(15, "feet"),
  19483. default: true
  19484. },
  19485. ]
  19486. ))
  19487. characterMakers.push(() => makeCharacter(
  19488. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19489. {
  19490. front: {
  19491. height: math.unit(7 + 1 / 12, "feet"),
  19492. weight: math.unit(175, "lb"),
  19493. name: "Front",
  19494. image: {
  19495. source: "./media/characters/patty-cattybatty/front.svg",
  19496. extra: 908 / 874,
  19497. bottom: 0.025
  19498. }
  19499. },
  19500. },
  19501. [
  19502. {
  19503. name: "Micro",
  19504. height: math.unit(1, "inch")
  19505. },
  19506. {
  19507. name: "Normal",
  19508. height: math.unit(7 + 1 / 12, "feet")
  19509. },
  19510. {
  19511. name: "Mini Macro",
  19512. height: math.unit(155, "feet")
  19513. },
  19514. {
  19515. name: "Macro",
  19516. height: math.unit(1077, "feet")
  19517. },
  19518. {
  19519. name: "Mega Macro",
  19520. height: math.unit(47650, "feet"),
  19521. default: true
  19522. },
  19523. {
  19524. name: "Giga Macro",
  19525. height: math.unit(440, "miles")
  19526. },
  19527. {
  19528. name: "Tera Macro",
  19529. height: math.unit(8700, "miles")
  19530. },
  19531. {
  19532. name: "Planetary Macro",
  19533. height: math.unit(32700, "miles")
  19534. },
  19535. {
  19536. name: "Solar Macro",
  19537. height: math.unit(550000, "miles")
  19538. },
  19539. {
  19540. name: "Celestial Macro",
  19541. height: math.unit(2.5, "AU")
  19542. },
  19543. ]
  19544. ))
  19545. characterMakers.push(() => makeCharacter(
  19546. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19547. {
  19548. front: {
  19549. height: math.unit(4 + 5 / 12, "feet"),
  19550. weight: math.unit(90, "lb"),
  19551. name: "Front",
  19552. image: {
  19553. source: "./media/characters/cappu/front.svg",
  19554. extra: 1247 / 1152,
  19555. bottom: 0.012
  19556. }
  19557. },
  19558. },
  19559. [
  19560. {
  19561. name: "Normal",
  19562. height: math.unit(4 + 5 / 12, "feet"),
  19563. default: true
  19564. },
  19565. ]
  19566. ))
  19567. characterMakers.push(() => makeCharacter(
  19568. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19569. {
  19570. frontDressed: {
  19571. height: math.unit(70, "cm"),
  19572. weight: math.unit(6, "kg"),
  19573. name: "Front (Dressed)",
  19574. image: {
  19575. source: "./media/characters/sebi/front-dressed.svg",
  19576. extra: 713.5 / 686.5,
  19577. bottom: 0.003
  19578. }
  19579. },
  19580. front: {
  19581. height: math.unit(70, "cm"),
  19582. weight: math.unit(5, "kg"),
  19583. name: "Front",
  19584. image: {
  19585. source: "./media/characters/sebi/front.svg",
  19586. extra: 713.5 / 686.5,
  19587. bottom: 0.003
  19588. }
  19589. }
  19590. },
  19591. [
  19592. {
  19593. name: "Normal",
  19594. height: math.unit(70, "cm"),
  19595. default: true
  19596. },
  19597. {
  19598. name: "Macro",
  19599. height: math.unit(8, "meters")
  19600. },
  19601. ]
  19602. ))
  19603. characterMakers.push(() => makeCharacter(
  19604. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19605. {
  19606. front: {
  19607. height: math.unit(6, "feet"),
  19608. weight: math.unit(150, "lb"),
  19609. name: "Front",
  19610. image: {
  19611. source: "./media/characters/typhek/front.svg",
  19612. extra: 1948 / 1929,
  19613. bottom: 0.025
  19614. }
  19615. },
  19616. side: {
  19617. height: math.unit(6, "feet"),
  19618. weight: math.unit(150, "lb"),
  19619. name: "Side",
  19620. image: {
  19621. source: "./media/characters/typhek/side.svg",
  19622. extra: 2034 / 2010,
  19623. bottom: 0.003
  19624. }
  19625. },
  19626. back: {
  19627. height: math.unit(6, "feet"),
  19628. weight: math.unit(150, "lb"),
  19629. name: "Back",
  19630. image: {
  19631. source: "./media/characters/typhek/back.svg",
  19632. extra: 2005 / 1978,
  19633. bottom: 0.004
  19634. }
  19635. },
  19636. palm: {
  19637. height: math.unit(1.2, "feet"),
  19638. name: "Palm",
  19639. image: {
  19640. source: "./media/characters/typhek/palm.svg"
  19641. }
  19642. },
  19643. fist: {
  19644. height: math.unit(1.1, "feet"),
  19645. name: "Fist",
  19646. image: {
  19647. source: "./media/characters/typhek/fist.svg"
  19648. }
  19649. },
  19650. foot: {
  19651. height: math.unit(1.57, "feet"),
  19652. name: "Foot",
  19653. image: {
  19654. source: "./media/characters/typhek/foot.svg"
  19655. }
  19656. },
  19657. sole: {
  19658. height: math.unit(2.05, "feet"),
  19659. name: "Sole",
  19660. image: {
  19661. source: "./media/characters/typhek/sole.svg"
  19662. }
  19663. },
  19664. },
  19665. [
  19666. {
  19667. name: "Macro",
  19668. height: math.unit(40, "stories"),
  19669. default: true
  19670. },
  19671. {
  19672. name: "Megamacro",
  19673. height: math.unit(1, "mile")
  19674. },
  19675. {
  19676. name: "Gigamacro",
  19677. height: math.unit(4000, "solarradii")
  19678. },
  19679. {
  19680. name: "Universal",
  19681. height: math.unit(1.1, "universes")
  19682. }
  19683. ]
  19684. ))
  19685. characterMakers.push(() => makeCharacter(
  19686. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19687. {
  19688. side: {
  19689. height: math.unit(5 + 7 / 12, "feet"),
  19690. weight: math.unit(150, "lb"),
  19691. name: "Side",
  19692. image: {
  19693. source: "./media/characters/kassy/side.svg",
  19694. extra: 1280 / 1225,
  19695. bottom: 0.002
  19696. }
  19697. },
  19698. front: {
  19699. height: math.unit(5 + 7 / 12, "feet"),
  19700. weight: math.unit(150, "lb"),
  19701. name: "Front",
  19702. image: {
  19703. source: "./media/characters/kassy/front.svg",
  19704. extra: 1280 / 1225,
  19705. bottom: 0.025
  19706. }
  19707. },
  19708. back: {
  19709. height: math.unit(5 + 7 / 12, "feet"),
  19710. weight: math.unit(150, "lb"),
  19711. name: "Back",
  19712. image: {
  19713. source: "./media/characters/kassy/back.svg",
  19714. extra: 1280 / 1225,
  19715. bottom: 0.002
  19716. }
  19717. },
  19718. foot: {
  19719. height: math.unit(1.266, "feet"),
  19720. name: "Foot",
  19721. image: {
  19722. source: "./media/characters/kassy/foot.svg"
  19723. }
  19724. },
  19725. },
  19726. [
  19727. {
  19728. name: "Normal",
  19729. height: math.unit(5 + 7 / 12, "feet")
  19730. },
  19731. {
  19732. name: "Macro",
  19733. height: math.unit(137, "feet"),
  19734. default: true
  19735. },
  19736. {
  19737. name: "Megamacro",
  19738. height: math.unit(1, "mile")
  19739. },
  19740. ]
  19741. ))
  19742. characterMakers.push(() => makeCharacter(
  19743. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19744. {
  19745. front: {
  19746. height: math.unit(6 + 1 / 12, "feet"),
  19747. weight: math.unit(200, "lb"),
  19748. name: "Front",
  19749. image: {
  19750. source: "./media/characters/neil/front.svg",
  19751. extra: 1326 / 1250,
  19752. bottom: 0.023
  19753. }
  19754. },
  19755. },
  19756. [
  19757. {
  19758. name: "Normal",
  19759. height: math.unit(6 + 1 / 12, "feet"),
  19760. default: true
  19761. },
  19762. {
  19763. name: "Macro",
  19764. height: math.unit(200, "feet")
  19765. },
  19766. ]
  19767. ))
  19768. characterMakers.push(() => makeCharacter(
  19769. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19770. {
  19771. front: {
  19772. height: math.unit(5 + 9 / 12, "feet"),
  19773. weight: math.unit(190, "lb"),
  19774. name: "Front",
  19775. image: {
  19776. source: "./media/characters/atticus/front.svg",
  19777. extra: 2934 / 2785,
  19778. bottom: 0.025
  19779. }
  19780. },
  19781. },
  19782. [
  19783. {
  19784. name: "Normal",
  19785. height: math.unit(5 + 9 / 12, "feet"),
  19786. default: true
  19787. },
  19788. {
  19789. name: "Macro",
  19790. height: math.unit(180, "feet")
  19791. },
  19792. ]
  19793. ))
  19794. characterMakers.push(() => makeCharacter(
  19795. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19796. {
  19797. side: {
  19798. height: math.unit(9, "feet"),
  19799. weight: math.unit(650, "lb"),
  19800. name: "Side",
  19801. image: {
  19802. source: "./media/characters/milo/side.svg",
  19803. extra: 2644 / 2310,
  19804. bottom: 0.032
  19805. }
  19806. },
  19807. },
  19808. [
  19809. {
  19810. name: "Normal",
  19811. height: math.unit(9, "feet"),
  19812. default: true
  19813. },
  19814. {
  19815. name: "Macro",
  19816. height: math.unit(300, "feet")
  19817. },
  19818. ]
  19819. ))
  19820. characterMakers.push(() => makeCharacter(
  19821. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19822. {
  19823. side: {
  19824. height: math.unit(8, "meters"),
  19825. weight: math.unit(90000, "kg"),
  19826. name: "Side",
  19827. image: {
  19828. source: "./media/characters/ijzer/side.svg",
  19829. extra: 2756 / 1600,
  19830. bottom: 0.01
  19831. }
  19832. },
  19833. },
  19834. [
  19835. {
  19836. name: "Small",
  19837. height: math.unit(3, "meters")
  19838. },
  19839. {
  19840. name: "Normal",
  19841. height: math.unit(8, "meters"),
  19842. default: true
  19843. },
  19844. {
  19845. name: "Normal+",
  19846. height: math.unit(10, "meters")
  19847. },
  19848. {
  19849. name: "Bigger",
  19850. height: math.unit(24, "meters")
  19851. },
  19852. {
  19853. name: "Huge",
  19854. height: math.unit(80, "meters")
  19855. },
  19856. ]
  19857. ))
  19858. characterMakers.push(() => makeCharacter(
  19859. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19860. {
  19861. front: {
  19862. height: math.unit(6 + 2 / 12, "feet"),
  19863. weight: math.unit(153, "lb"),
  19864. name: "Front",
  19865. image: {
  19866. source: "./media/characters/luca-cervicum/front.svg",
  19867. extra: 370 / 327,
  19868. bottom: 0.015
  19869. }
  19870. },
  19871. back: {
  19872. height: math.unit(6 + 2 / 12, "feet"),
  19873. weight: math.unit(153, "lb"),
  19874. name: "Back",
  19875. image: {
  19876. source: "./media/characters/luca-cervicum/back.svg",
  19877. extra: 367 / 333,
  19878. bottom: 0.005
  19879. }
  19880. },
  19881. frontGear: {
  19882. height: math.unit(6 + 2 / 12, "feet"),
  19883. weight: math.unit(173, "lb"),
  19884. name: "Front (Gear)",
  19885. image: {
  19886. source: "./media/characters/luca-cervicum/front-gear.svg",
  19887. extra: 377 / 333,
  19888. bottom: 0.006
  19889. }
  19890. },
  19891. },
  19892. [
  19893. {
  19894. name: "Normal",
  19895. height: math.unit(6 + 2 / 12, "feet"),
  19896. default: true
  19897. },
  19898. ]
  19899. ))
  19900. characterMakers.push(() => makeCharacter(
  19901. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19902. {
  19903. front: {
  19904. height: math.unit(6 + 1 / 12, "feet"),
  19905. weight: math.unit(304, "lb"),
  19906. name: "Front",
  19907. image: {
  19908. source: "./media/characters/oliver/front.svg",
  19909. extra: 157 / 143,
  19910. bottom: 0.08
  19911. }
  19912. },
  19913. },
  19914. [
  19915. {
  19916. name: "Normal",
  19917. height: math.unit(6 + 1 / 12, "feet"),
  19918. default: true
  19919. },
  19920. ]
  19921. ))
  19922. characterMakers.push(() => makeCharacter(
  19923. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19924. {
  19925. front: {
  19926. height: math.unit(5 + 7 / 12, "feet"),
  19927. weight: math.unit(140, "lb"),
  19928. name: "Front",
  19929. image: {
  19930. source: "./media/characters/shane/front.svg",
  19931. extra: 304 / 289,
  19932. bottom: 0.005
  19933. }
  19934. },
  19935. },
  19936. [
  19937. {
  19938. name: "Normal",
  19939. height: math.unit(5 + 7 / 12, "feet"),
  19940. default: true
  19941. },
  19942. ]
  19943. ))
  19944. characterMakers.push(() => makeCharacter(
  19945. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19946. {
  19947. front: {
  19948. height: math.unit(5 + 9 / 12, "feet"),
  19949. weight: math.unit(178, "lb"),
  19950. name: "Front",
  19951. image: {
  19952. source: "./media/characters/shin/front.svg",
  19953. extra: 159 / 151,
  19954. bottom: 0.015
  19955. }
  19956. },
  19957. },
  19958. [
  19959. {
  19960. name: "Normal",
  19961. height: math.unit(5 + 9 / 12, "feet"),
  19962. default: true
  19963. },
  19964. ]
  19965. ))
  19966. characterMakers.push(() => makeCharacter(
  19967. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19968. {
  19969. front: {
  19970. height: math.unit(5 + 10 / 12, "feet"),
  19971. weight: math.unit(168, "lb"),
  19972. name: "Front",
  19973. image: {
  19974. source: "./media/characters/xerxes/front.svg",
  19975. extra: 282 / 260,
  19976. bottom: 0.045
  19977. }
  19978. },
  19979. },
  19980. [
  19981. {
  19982. name: "Normal",
  19983. height: math.unit(5 + 10 / 12, "feet"),
  19984. default: true
  19985. },
  19986. ]
  19987. ))
  19988. characterMakers.push(() => makeCharacter(
  19989. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19990. {
  19991. front: {
  19992. height: math.unit(6 + 7 / 12, "feet"),
  19993. weight: math.unit(208, "lb"),
  19994. name: "Front",
  19995. image: {
  19996. source: "./media/characters/chaska/front.svg",
  19997. extra: 332 / 319,
  19998. bottom: 0.015
  19999. }
  20000. },
  20001. },
  20002. [
  20003. {
  20004. name: "Normal",
  20005. height: math.unit(6 + 7 / 12, "feet"),
  20006. default: true
  20007. },
  20008. ]
  20009. ))
  20010. characterMakers.push(() => makeCharacter(
  20011. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20012. {
  20013. front: {
  20014. height: math.unit(5 + 8 / 12, "feet"),
  20015. weight: math.unit(208, "lb"),
  20016. name: "Front",
  20017. image: {
  20018. source: "./media/characters/enuk/front.svg",
  20019. extra: 437 / 406,
  20020. bottom: 0.02
  20021. }
  20022. },
  20023. },
  20024. [
  20025. {
  20026. name: "Normal",
  20027. height: math.unit(5 + 8 / 12, "feet"),
  20028. default: true
  20029. },
  20030. ]
  20031. ))
  20032. characterMakers.push(() => makeCharacter(
  20033. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20034. {
  20035. front: {
  20036. height: math.unit(5 + 10 / 12, "feet"),
  20037. weight: math.unit(252, "lb"),
  20038. name: "Front",
  20039. image: {
  20040. source: "./media/characters/bruun/front.svg",
  20041. extra: 197 / 187,
  20042. bottom: 0.012
  20043. }
  20044. },
  20045. },
  20046. [
  20047. {
  20048. name: "Normal",
  20049. height: math.unit(5 + 10 / 12, "feet"),
  20050. default: true
  20051. },
  20052. ]
  20053. ))
  20054. characterMakers.push(() => makeCharacter(
  20055. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20056. {
  20057. front: {
  20058. height: math.unit(6 + 10 / 12, "feet"),
  20059. weight: math.unit(255, "lb"),
  20060. name: "Front",
  20061. image: {
  20062. source: "./media/characters/alexeev/front.svg",
  20063. extra: 213 / 200,
  20064. bottom: 0.05
  20065. }
  20066. },
  20067. },
  20068. [
  20069. {
  20070. name: "Normal",
  20071. height: math.unit(6 + 10 / 12, "feet"),
  20072. default: true
  20073. },
  20074. ]
  20075. ))
  20076. characterMakers.push(() => makeCharacter(
  20077. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20078. {
  20079. front: {
  20080. height: math.unit(2 + 8 / 12, "feet"),
  20081. weight: math.unit(22, "lb"),
  20082. name: "Front",
  20083. image: {
  20084. source: "./media/characters/evelyn/front.svg",
  20085. extra: 208 / 180
  20086. }
  20087. },
  20088. },
  20089. [
  20090. {
  20091. name: "Normal",
  20092. height: math.unit(2 + 8 / 12, "feet"),
  20093. default: true
  20094. },
  20095. ]
  20096. ))
  20097. characterMakers.push(() => makeCharacter(
  20098. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20099. {
  20100. front: {
  20101. height: math.unit(5 + 9 / 12, "feet"),
  20102. weight: math.unit(139, "lb"),
  20103. name: "Front",
  20104. image: {
  20105. source: "./media/characters/inca/front.svg",
  20106. extra: 294 / 291,
  20107. bottom: 0.03
  20108. }
  20109. },
  20110. },
  20111. [
  20112. {
  20113. name: "Normal",
  20114. height: math.unit(5 + 9 / 12, "feet"),
  20115. default: true
  20116. },
  20117. ]
  20118. ))
  20119. characterMakers.push(() => makeCharacter(
  20120. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  20121. {
  20122. front: {
  20123. height: math.unit(5 + 1 / 12, "feet"),
  20124. weight: math.unit(84, "lb"),
  20125. name: "Front",
  20126. image: {
  20127. source: "./media/characters/magdalene/front.svg",
  20128. extra: 293 / 273
  20129. }
  20130. },
  20131. },
  20132. [
  20133. {
  20134. name: "Normal",
  20135. height: math.unit(5 + 1 / 12, "feet"),
  20136. default: true
  20137. },
  20138. ]
  20139. ))
  20140. characterMakers.push(() => makeCharacter(
  20141. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20142. {
  20143. front: {
  20144. height: math.unit(6 + 3 / 12, "feet"),
  20145. weight: math.unit(185, "lb"),
  20146. name: "Front",
  20147. image: {
  20148. source: "./media/characters/mera/front.svg",
  20149. extra: 291 / 277,
  20150. bottom: 0.03
  20151. }
  20152. },
  20153. },
  20154. [
  20155. {
  20156. name: "Normal",
  20157. height: math.unit(6 + 3 / 12, "feet"),
  20158. default: true
  20159. },
  20160. ]
  20161. ))
  20162. characterMakers.push(() => makeCharacter(
  20163. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20164. {
  20165. front: {
  20166. height: math.unit(6 + 7 / 12, "feet"),
  20167. weight: math.unit(160, "lb"),
  20168. name: "Front",
  20169. image: {
  20170. source: "./media/characters/ceres/front.svg",
  20171. extra: 1023 / 950,
  20172. bottom: 0.027
  20173. }
  20174. },
  20175. back: {
  20176. height: math.unit(6 + 7 / 12, "feet"),
  20177. weight: math.unit(160, "lb"),
  20178. name: "Back",
  20179. image: {
  20180. source: "./media/characters/ceres/back.svg",
  20181. extra: 1023 / 950
  20182. }
  20183. },
  20184. },
  20185. [
  20186. {
  20187. name: "Normal",
  20188. height: math.unit(6 + 7 / 12, "feet"),
  20189. default: true
  20190. },
  20191. ]
  20192. ))
  20193. characterMakers.push(() => makeCharacter(
  20194. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20195. {
  20196. front: {
  20197. height: math.unit(5 + 10 / 12, "feet"),
  20198. weight: math.unit(150, "lb"),
  20199. name: "Front",
  20200. image: {
  20201. source: "./media/characters/kris/front.svg",
  20202. extra: 885 / 803,
  20203. bottom: 0.03
  20204. }
  20205. },
  20206. },
  20207. [
  20208. {
  20209. name: "Normal",
  20210. height: math.unit(5 + 10 / 12, "feet"),
  20211. default: true
  20212. },
  20213. ]
  20214. ))
  20215. characterMakers.push(() => makeCharacter(
  20216. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20217. {
  20218. front: {
  20219. height: math.unit(7, "feet"),
  20220. weight: math.unit(120, "kg"),
  20221. name: "Front",
  20222. image: {
  20223. source: "./media/characters/taluthus/front.svg",
  20224. extra: 903 / 833,
  20225. bottom: 0.015
  20226. }
  20227. },
  20228. },
  20229. [
  20230. {
  20231. name: "Normal",
  20232. height: math.unit(7, "feet"),
  20233. default: true
  20234. },
  20235. {
  20236. name: "Macro",
  20237. height: math.unit(300, "feet")
  20238. },
  20239. ]
  20240. ))
  20241. characterMakers.push(() => makeCharacter(
  20242. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20243. {
  20244. front: {
  20245. height: math.unit(5 + 9 / 12, "feet"),
  20246. weight: math.unit(145, "lb"),
  20247. name: "Front",
  20248. image: {
  20249. source: "./media/characters/dawn/front.svg",
  20250. extra: 2094 / 2016,
  20251. bottom: 0.025
  20252. }
  20253. },
  20254. back: {
  20255. height: math.unit(5 + 9 / 12, "feet"),
  20256. weight: math.unit(160, "lb"),
  20257. name: "Back",
  20258. image: {
  20259. source: "./media/characters/dawn/back.svg",
  20260. extra: 2112 / 2080,
  20261. bottom: 0.005
  20262. }
  20263. },
  20264. },
  20265. [
  20266. {
  20267. name: "Normal",
  20268. height: math.unit(6 + 7 / 12, "feet"),
  20269. default: true
  20270. },
  20271. ]
  20272. ))
  20273. characterMakers.push(() => makeCharacter(
  20274. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20275. {
  20276. anthro: {
  20277. height: math.unit(8 + 3 / 12, "feet"),
  20278. weight: math.unit(450, "lb"),
  20279. name: "Anthro",
  20280. image: {
  20281. source: "./media/characters/arador/anthro.svg",
  20282. extra: 1835 / 1718,
  20283. bottom: 0.025
  20284. }
  20285. },
  20286. feral: {
  20287. height: math.unit(4, "feet"),
  20288. weight: math.unit(200, "lb"),
  20289. name: "Feral",
  20290. image: {
  20291. source: "./media/characters/arador/feral.svg",
  20292. extra: 1683 / 1514,
  20293. bottom: 0.07
  20294. }
  20295. },
  20296. },
  20297. [
  20298. {
  20299. name: "Normal",
  20300. height: math.unit(8 + 3 / 12, "feet")
  20301. },
  20302. {
  20303. name: "Macro",
  20304. height: math.unit(82.5, "feet"),
  20305. default: true
  20306. },
  20307. ]
  20308. ))
  20309. characterMakers.push(() => makeCharacter(
  20310. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20311. {
  20312. front: {
  20313. height: math.unit(5 + 10 / 12, "feet"),
  20314. weight: math.unit(125, "lb"),
  20315. name: "Front",
  20316. image: {
  20317. source: "./media/characters/dharsi/front.svg",
  20318. extra: 716 / 630,
  20319. bottom: 0.035
  20320. }
  20321. },
  20322. },
  20323. [
  20324. {
  20325. name: "Nano",
  20326. height: math.unit(100, "nm")
  20327. },
  20328. {
  20329. name: "Micro",
  20330. height: math.unit(2, "inches")
  20331. },
  20332. {
  20333. name: "Normal",
  20334. height: math.unit(5 + 10 / 12, "feet"),
  20335. default: true
  20336. },
  20337. {
  20338. name: "Macro",
  20339. height: math.unit(1000, "feet")
  20340. },
  20341. {
  20342. name: "Megamacro",
  20343. height: math.unit(10, "miles")
  20344. },
  20345. {
  20346. name: "Gigamacro",
  20347. height: math.unit(3000, "miles")
  20348. },
  20349. {
  20350. name: "Teramacro",
  20351. height: math.unit(500000, "miles")
  20352. },
  20353. {
  20354. name: "Teramacro+",
  20355. height: math.unit(30, "galaxies")
  20356. },
  20357. ]
  20358. ))
  20359. characterMakers.push(() => makeCharacter(
  20360. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20361. {
  20362. front: {
  20363. height: math.unit(6, "feet"),
  20364. weight: math.unit(150, "lb"),
  20365. name: "Front",
  20366. image: {
  20367. source: "./media/characters/deathy/front.svg",
  20368. extra: 1552 / 1463,
  20369. bottom: 0.025
  20370. }
  20371. },
  20372. side: {
  20373. height: math.unit(6, "feet"),
  20374. weight: math.unit(150, "lb"),
  20375. name: "Side",
  20376. image: {
  20377. source: "./media/characters/deathy/side.svg",
  20378. extra: 1604 / 1455,
  20379. bottom: 0.025
  20380. }
  20381. },
  20382. back: {
  20383. height: math.unit(6, "feet"),
  20384. weight: math.unit(150, "lb"),
  20385. name: "Back",
  20386. image: {
  20387. source: "./media/characters/deathy/back.svg",
  20388. extra: 1580 / 1463,
  20389. bottom: 0.005
  20390. }
  20391. },
  20392. },
  20393. [
  20394. {
  20395. name: "Micro",
  20396. height: math.unit(5, "millimeters")
  20397. },
  20398. {
  20399. name: "Normal",
  20400. height: math.unit(6 + 5 / 12, "feet"),
  20401. default: true
  20402. },
  20403. ]
  20404. ))
  20405. characterMakers.push(() => makeCharacter(
  20406. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20407. {
  20408. front: {
  20409. height: math.unit(16, "feet"),
  20410. weight: math.unit(4000, "lb"),
  20411. name: "Front",
  20412. image: {
  20413. source: "./media/characters/juniper/front.svg",
  20414. bottom: 0.04
  20415. }
  20416. },
  20417. },
  20418. [
  20419. {
  20420. name: "Normal",
  20421. height: math.unit(16, "feet"),
  20422. default: true
  20423. },
  20424. ]
  20425. ))
  20426. characterMakers.push(() => makeCharacter(
  20427. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20428. {
  20429. front: {
  20430. height: math.unit(6, "feet"),
  20431. weight: math.unit(150, "lb"),
  20432. name: "Front",
  20433. image: {
  20434. source: "./media/characters/hipster/front.svg",
  20435. extra: 1312 / 1209,
  20436. bottom: 0.025
  20437. }
  20438. },
  20439. back: {
  20440. height: math.unit(6, "feet"),
  20441. weight: math.unit(150, "lb"),
  20442. name: "Back",
  20443. image: {
  20444. source: "./media/characters/hipster/back.svg",
  20445. extra: 1281 / 1196,
  20446. bottom: 0.01
  20447. }
  20448. },
  20449. },
  20450. [
  20451. {
  20452. name: "Micro",
  20453. height: math.unit(1, "mm")
  20454. },
  20455. {
  20456. name: "Normal",
  20457. height: math.unit(4, "inches"),
  20458. default: true
  20459. },
  20460. {
  20461. name: "Macro",
  20462. height: math.unit(500, "feet")
  20463. },
  20464. {
  20465. name: "Megamacro",
  20466. height: math.unit(1000, "miles")
  20467. },
  20468. ]
  20469. ))
  20470. characterMakers.push(() => makeCharacter(
  20471. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20472. {
  20473. front: {
  20474. height: math.unit(6, "feet"),
  20475. weight: math.unit(150, "lb"),
  20476. name: "Front",
  20477. image: {
  20478. source: "./media/characters/tendirmuldr/front.svg",
  20479. extra: 1878 / 1772,
  20480. bottom: 0.015
  20481. }
  20482. },
  20483. },
  20484. [
  20485. {
  20486. name: "Megamacro",
  20487. height: math.unit(1500, "miles"),
  20488. default: true
  20489. },
  20490. ]
  20491. ))
  20492. characterMakers.push(() => makeCharacter(
  20493. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20494. {
  20495. front: {
  20496. height: math.unit(14, "feet"),
  20497. weight: math.unit(12000, "lb"),
  20498. name: "Front",
  20499. image: {
  20500. source: "./media/characters/mort/front.svg",
  20501. extra: 365 / 318,
  20502. bottom: 0.01
  20503. }
  20504. },
  20505. side: {
  20506. height: math.unit(14, "feet"),
  20507. weight: math.unit(12000, "lb"),
  20508. name: "Side",
  20509. image: {
  20510. source: "./media/characters/mort/side.svg",
  20511. extra: 365 / 318,
  20512. bottom: 0.052
  20513. },
  20514. default: true
  20515. },
  20516. back: {
  20517. height: math.unit(14, "feet"),
  20518. weight: math.unit(12000, "lb"),
  20519. name: "Back",
  20520. image: {
  20521. source: "./media/characters/mort/back.svg",
  20522. extra: 371 / 332,
  20523. bottom: 0.18
  20524. }
  20525. },
  20526. },
  20527. [
  20528. {
  20529. name: "Normal",
  20530. height: math.unit(14, "feet"),
  20531. default: true
  20532. },
  20533. ]
  20534. ))
  20535. characterMakers.push(() => makeCharacter(
  20536. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20537. {
  20538. front: {
  20539. height: math.unit(8, "feet"),
  20540. weight: math.unit(1, "ton"),
  20541. name: "Front",
  20542. image: {
  20543. source: "./media/characters/lycoa/front.svg",
  20544. extra: 1875 / 1789,
  20545. bottom: 0.022
  20546. }
  20547. },
  20548. back: {
  20549. height: math.unit(8, "feet"),
  20550. weight: math.unit(1, "ton"),
  20551. name: "Back",
  20552. image: {
  20553. source: "./media/characters/lycoa/back.svg",
  20554. extra: 1835 / 1781,
  20555. bottom: 0.03
  20556. }
  20557. },
  20558. head: {
  20559. height: math.unit(2.1, "feet"),
  20560. name: "Head",
  20561. image: {
  20562. source: "./media/characters/lycoa/head.svg"
  20563. }
  20564. },
  20565. tailmaw: {
  20566. height: math.unit(1.9, "feet"),
  20567. name: "Tailmaw",
  20568. image: {
  20569. source: "./media/characters/lycoa/tailmaw.svg"
  20570. }
  20571. },
  20572. tentacles: {
  20573. height: math.unit(2.1, "feet"),
  20574. name: "Tentacles",
  20575. image: {
  20576. source: "./media/characters/lycoa/tentacles.svg"
  20577. }
  20578. },
  20579. dick: {
  20580. height: math.unit(1.73, "feet"),
  20581. name: "Dick",
  20582. image: {
  20583. source: "./media/characters/lycoa/dick.svg"
  20584. }
  20585. },
  20586. },
  20587. [
  20588. {
  20589. name: "Normal",
  20590. height: math.unit(8, "feet"),
  20591. default: true
  20592. },
  20593. {
  20594. name: "Macro",
  20595. height: math.unit(30, "feet")
  20596. },
  20597. ]
  20598. ))
  20599. characterMakers.push(() => makeCharacter(
  20600. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20601. {
  20602. front: {
  20603. height: math.unit(4 + 2 / 12, "feet"),
  20604. weight: math.unit(70, "lb"),
  20605. name: "Front",
  20606. image: {
  20607. source: "./media/characters/naldara/front.svg",
  20608. extra: 841 / 720,
  20609. bottom: 0.04
  20610. }
  20611. },
  20612. naga: {
  20613. height: math.unit(23, "feet"),
  20614. weight: math.unit(15000, "kg"),
  20615. name: "Naga",
  20616. image: {
  20617. source: "./media/characters/naldara/naga.svg",
  20618. extra: 3290 / 2959,
  20619. bottom: 124 / 3432
  20620. }
  20621. },
  20622. },
  20623. [
  20624. {
  20625. name: "Normal",
  20626. height: math.unit(4 + 2 / 12, "feet"),
  20627. default: true
  20628. },
  20629. ]
  20630. ))
  20631. characterMakers.push(() => makeCharacter(
  20632. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20633. {
  20634. front: {
  20635. height: math.unit(13 + 7 / 12, "feet"),
  20636. weight: math.unit(1500, "lb"),
  20637. name: "Front",
  20638. image: {
  20639. source: "./media/characters/briar/front.svg",
  20640. extra: 626 / 596,
  20641. bottom: 0.08
  20642. }
  20643. },
  20644. },
  20645. [
  20646. {
  20647. name: "Normal",
  20648. height: math.unit(13 + 7 / 12, "feet"),
  20649. default: true
  20650. },
  20651. ]
  20652. ))
  20653. characterMakers.push(() => makeCharacter(
  20654. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20655. {
  20656. side: {
  20657. height: math.unit(10, "feet"),
  20658. weight: math.unit(500, "lb"),
  20659. name: "Side",
  20660. image: {
  20661. source: "./media/characters/vanguard/side.svg",
  20662. extra: 502 / 425,
  20663. bottom: 0.087
  20664. }
  20665. },
  20666. },
  20667. [
  20668. {
  20669. name: "Normal",
  20670. height: math.unit(10, "feet"),
  20671. default: true
  20672. },
  20673. ]
  20674. ))
  20675. characterMakers.push(() => makeCharacter(
  20676. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20677. {
  20678. front: {
  20679. height: math.unit(7.5, "feet"),
  20680. weight: math.unit(2, "lb"),
  20681. name: "Front",
  20682. image: {
  20683. source: "./media/characters/artemis/front.svg",
  20684. extra: 1192 / 1075,
  20685. bottom: 0.07
  20686. }
  20687. },
  20688. frontNsfw: {
  20689. height: math.unit(7.5, "feet"),
  20690. weight: math.unit(2, "lb"),
  20691. name: "Front (NSFW)",
  20692. image: {
  20693. source: "./media/characters/artemis/front-nsfw.svg",
  20694. extra: 1192 / 1075,
  20695. bottom: 0.07
  20696. }
  20697. },
  20698. frontNsfwer: {
  20699. height: math.unit(7.5, "feet"),
  20700. weight: math.unit(2, "lb"),
  20701. name: "Front (NSFW-er)",
  20702. image: {
  20703. source: "./media/characters/artemis/front-nsfwer.svg",
  20704. extra: 1192 / 1075,
  20705. bottom: 0.07
  20706. }
  20707. },
  20708. side: {
  20709. height: math.unit(7.5, "feet"),
  20710. weight: math.unit(2, "lb"),
  20711. name: "Side",
  20712. image: {
  20713. source: "./media/characters/artemis/side.svg",
  20714. extra: 1192 / 1075,
  20715. bottom: 0.07
  20716. }
  20717. },
  20718. sideNsfw: {
  20719. height: math.unit(7.5, "feet"),
  20720. weight: math.unit(2, "lb"),
  20721. name: "Side (NSFW)",
  20722. image: {
  20723. source: "./media/characters/artemis/side-nsfw.svg",
  20724. extra: 1192 / 1075,
  20725. bottom: 0.07
  20726. }
  20727. },
  20728. sideNsfwer: {
  20729. height: math.unit(7.5, "feet"),
  20730. weight: math.unit(2, "lb"),
  20731. name: "Side (NSFW-er)",
  20732. image: {
  20733. source: "./media/characters/artemis/side-nsfwer.svg",
  20734. extra: 1192 / 1075,
  20735. bottom: 0.07
  20736. }
  20737. },
  20738. maw: {
  20739. height: math.unit(1.1, "feet"),
  20740. name: "Maw",
  20741. image: {
  20742. source: "./media/characters/artemis/maw.svg"
  20743. }
  20744. },
  20745. stomach: {
  20746. height: math.unit(0.95, "feet"),
  20747. name: "Stomach",
  20748. image: {
  20749. source: "./media/characters/artemis/stomach.svg"
  20750. }
  20751. },
  20752. dickCanine: {
  20753. height: math.unit(1, "feet"),
  20754. name: "Dick (Canine)",
  20755. image: {
  20756. source: "./media/characters/artemis/dick-canine.svg"
  20757. }
  20758. },
  20759. dickEquine: {
  20760. height: math.unit(0.85, "feet"),
  20761. name: "Dick (Equine)",
  20762. image: {
  20763. source: "./media/characters/artemis/dick-equine.svg"
  20764. }
  20765. },
  20766. dickExotic: {
  20767. height: math.unit(0.85, "feet"),
  20768. name: "Dick (Exotic)",
  20769. image: {
  20770. source: "./media/characters/artemis/dick-exotic.svg"
  20771. }
  20772. },
  20773. },
  20774. [
  20775. {
  20776. name: "Normal",
  20777. height: math.unit(7.5, "feet"),
  20778. default: true
  20779. },
  20780. {
  20781. name: "Enlarged",
  20782. height: math.unit(12, "feet")
  20783. },
  20784. ]
  20785. ))
  20786. characterMakers.push(() => makeCharacter(
  20787. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20788. {
  20789. front: {
  20790. height: math.unit(5 + 3 / 12, "feet"),
  20791. weight: math.unit(160, "lb"),
  20792. name: "Front",
  20793. image: {
  20794. source: "./media/characters/kira/front.svg",
  20795. extra: 906 / 786,
  20796. bottom: 0.01
  20797. }
  20798. },
  20799. back: {
  20800. height: math.unit(5 + 3 / 12, "feet"),
  20801. weight: math.unit(160, "lb"),
  20802. name: "Back",
  20803. image: {
  20804. source: "./media/characters/kira/back.svg",
  20805. extra: 882 / 757,
  20806. bottom: 0.005
  20807. }
  20808. },
  20809. frontDressed: {
  20810. height: math.unit(5 + 3 / 12, "feet"),
  20811. weight: math.unit(160, "lb"),
  20812. name: "Front (Dressed)",
  20813. image: {
  20814. source: "./media/characters/kira/front-dressed.svg",
  20815. extra: 906 / 786,
  20816. bottom: 0.01
  20817. }
  20818. },
  20819. beans: {
  20820. height: math.unit(0.92, "feet"),
  20821. name: "Beans",
  20822. image: {
  20823. source: "./media/characters/kira/beans.svg"
  20824. }
  20825. },
  20826. },
  20827. [
  20828. {
  20829. name: "Normal",
  20830. height: math.unit(5 + 3 / 12, "feet"),
  20831. default: true
  20832. },
  20833. ]
  20834. ))
  20835. characterMakers.push(() => makeCharacter(
  20836. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20837. {
  20838. front: {
  20839. height: math.unit(5 + 4 / 12, "feet"),
  20840. weight: math.unit(145, "lb"),
  20841. name: "Front",
  20842. image: {
  20843. source: "./media/characters/scramble/front.svg",
  20844. extra: 763 / 727,
  20845. bottom: 0.05
  20846. }
  20847. },
  20848. back: {
  20849. height: math.unit(5 + 4 / 12, "feet"),
  20850. weight: math.unit(145, "lb"),
  20851. name: "Back",
  20852. image: {
  20853. source: "./media/characters/scramble/back.svg",
  20854. extra: 826 / 737,
  20855. bottom: 0.002
  20856. }
  20857. },
  20858. },
  20859. [
  20860. {
  20861. name: "Normal",
  20862. height: math.unit(5 + 4 / 12, "feet"),
  20863. default: true
  20864. },
  20865. ]
  20866. ))
  20867. characterMakers.push(() => makeCharacter(
  20868. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20869. {
  20870. side: {
  20871. height: math.unit(6 + 2 / 12, "feet"),
  20872. weight: math.unit(190, "lb"),
  20873. name: "Side",
  20874. image: {
  20875. source: "./media/characters/biscuit/side.svg",
  20876. extra: 858 / 791,
  20877. bottom: 0.044
  20878. }
  20879. },
  20880. },
  20881. [
  20882. {
  20883. name: "Normal",
  20884. height: math.unit(6 + 2 / 12, "feet"),
  20885. default: true
  20886. },
  20887. ]
  20888. ))
  20889. characterMakers.push(() => makeCharacter(
  20890. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20891. {
  20892. front: {
  20893. height: math.unit(5 + 2 / 12, "feet"),
  20894. weight: math.unit(120, "lb"),
  20895. name: "Front",
  20896. image: {
  20897. source: "./media/characters/poffin/front.svg",
  20898. extra: 786 / 680,
  20899. bottom: 0.005
  20900. }
  20901. },
  20902. },
  20903. [
  20904. {
  20905. name: "Normal",
  20906. height: math.unit(5 + 2 / 12, "feet"),
  20907. default: true
  20908. },
  20909. ]
  20910. ))
  20911. characterMakers.push(() => makeCharacter(
  20912. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20913. {
  20914. front: {
  20915. height: math.unit(6 + 3 / 12, "feet"),
  20916. weight: math.unit(519, "lb"),
  20917. name: "Front",
  20918. image: {
  20919. source: "./media/characters/dhari/front.svg",
  20920. extra: 1048 / 946,
  20921. bottom: 0.015
  20922. }
  20923. },
  20924. back: {
  20925. height: math.unit(6 + 3 / 12, "feet"),
  20926. weight: math.unit(519, "lb"),
  20927. name: "Back",
  20928. image: {
  20929. source: "./media/characters/dhari/back.svg",
  20930. extra: 1048 / 931,
  20931. bottom: 0.005
  20932. }
  20933. },
  20934. frontDressed: {
  20935. height: math.unit(6 + 3 / 12, "feet"),
  20936. weight: math.unit(519, "lb"),
  20937. name: "Front (Dressed)",
  20938. image: {
  20939. source: "./media/characters/dhari/front-dressed.svg",
  20940. extra: 1713 / 1546,
  20941. bottom: 0.02
  20942. }
  20943. },
  20944. backDressed: {
  20945. height: math.unit(6 + 3 / 12, "feet"),
  20946. weight: math.unit(519, "lb"),
  20947. name: "Back (Dressed)",
  20948. image: {
  20949. source: "./media/characters/dhari/back-dressed.svg",
  20950. extra: 1699 / 1537,
  20951. bottom: 0.01
  20952. }
  20953. },
  20954. maw: {
  20955. height: math.unit(0.95, "feet"),
  20956. name: "Maw",
  20957. image: {
  20958. source: "./media/characters/dhari/maw.svg"
  20959. }
  20960. },
  20961. wereFront: {
  20962. height: math.unit(12 + 8 / 12, "feet"),
  20963. weight: math.unit(4000, "lb"),
  20964. name: "Front (Were)",
  20965. image: {
  20966. source: "./media/characters/dhari/were-front.svg",
  20967. extra: 1065 / 969,
  20968. bottom: 0.015
  20969. }
  20970. },
  20971. wereBack: {
  20972. height: math.unit(12 + 8 / 12, "feet"),
  20973. weight: math.unit(4000, "lb"),
  20974. name: "Back (Were)",
  20975. image: {
  20976. source: "./media/characters/dhari/were-back.svg",
  20977. extra: 1065 / 969,
  20978. bottom: 0.012
  20979. }
  20980. },
  20981. wereMaw: {
  20982. height: math.unit(0.625, "meters"),
  20983. name: "Maw (Were)",
  20984. image: {
  20985. source: "./media/characters/dhari/were-maw.svg"
  20986. }
  20987. },
  20988. },
  20989. [
  20990. {
  20991. name: "Normal",
  20992. height: math.unit(6 + 3 / 12, "feet"),
  20993. default: true
  20994. },
  20995. ]
  20996. ))
  20997. characterMakers.push(() => makeCharacter(
  20998. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20999. {
  21000. anthro: {
  21001. height: math.unit(5 + 7 / 12, "feet"),
  21002. weight: math.unit(175, "lb"),
  21003. name: "Anthro",
  21004. image: {
  21005. source: "./media/characters/rena-dyne/anthro.svg",
  21006. extra: 1849 / 1785,
  21007. bottom: 0.005
  21008. }
  21009. },
  21010. taur: {
  21011. height: math.unit(15 + 6 / 12, "feet"),
  21012. weight: math.unit(8000, "lb"),
  21013. name: "Taur",
  21014. image: {
  21015. source: "./media/characters/rena-dyne/taur.svg",
  21016. extra: 2315 / 2234,
  21017. bottom: 0.033
  21018. }
  21019. },
  21020. },
  21021. [
  21022. {
  21023. name: "Normal",
  21024. height: math.unit(5 + 7 / 12, "feet"),
  21025. default: true
  21026. },
  21027. ]
  21028. ))
  21029. characterMakers.push(() => makeCharacter(
  21030. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21031. {
  21032. front: {
  21033. height: math.unit(8, "feet"),
  21034. weight: math.unit(600, "lb"),
  21035. name: "Front",
  21036. image: {
  21037. source: "./media/characters/weremeep/front.svg",
  21038. extra: 967 / 862,
  21039. bottom: 0.01
  21040. }
  21041. },
  21042. },
  21043. [
  21044. {
  21045. name: "Normal",
  21046. height: math.unit(8, "feet"),
  21047. default: true
  21048. },
  21049. {
  21050. name: "Lorg",
  21051. height: math.unit(12, "feet")
  21052. },
  21053. {
  21054. name: "Oh Lawd She Comin'",
  21055. height: math.unit(20, "feet")
  21056. },
  21057. ]
  21058. ))
  21059. characterMakers.push(() => makeCharacter(
  21060. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21061. {
  21062. front: {
  21063. height: math.unit(4, "feet"),
  21064. weight: math.unit(90, "lb"),
  21065. name: "Front",
  21066. image: {
  21067. source: "./media/characters/reza/front.svg",
  21068. extra: 1183 / 1111,
  21069. bottom: 0.017
  21070. }
  21071. },
  21072. back: {
  21073. height: math.unit(4, "feet"),
  21074. weight: math.unit(90, "lb"),
  21075. name: "Back",
  21076. image: {
  21077. source: "./media/characters/reza/back.svg",
  21078. extra: 1183 / 1111,
  21079. bottom: 0.01
  21080. }
  21081. },
  21082. drake: {
  21083. height: math.unit(30, "feet"),
  21084. weight: math.unit(246960, "lb"),
  21085. name: "Drake",
  21086. image: {
  21087. source: "./media/characters/reza/drake.svg",
  21088. extra: 2350 / 2024,
  21089. bottom: 60.7 / 2403
  21090. }
  21091. },
  21092. },
  21093. [
  21094. {
  21095. name: "Normal",
  21096. height: math.unit(4, "feet"),
  21097. default: true
  21098. },
  21099. ]
  21100. ))
  21101. characterMakers.push(() => makeCharacter(
  21102. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21103. {
  21104. side: {
  21105. height: math.unit(15, "feet"),
  21106. weight: math.unit(14, "tons"),
  21107. name: "Side",
  21108. image: {
  21109. source: "./media/characters/athea/side.svg",
  21110. extra: 960 / 540,
  21111. bottom: 0.003
  21112. }
  21113. },
  21114. sitting: {
  21115. height: math.unit(6 * 2.85, "feet"),
  21116. weight: math.unit(14, "tons"),
  21117. name: "Sitting",
  21118. image: {
  21119. source: "./media/characters/athea/sitting.svg",
  21120. extra: 621 / 581,
  21121. bottom: 0.075
  21122. }
  21123. },
  21124. maw: {
  21125. height: math.unit(7.59498031496063, "feet"),
  21126. name: "Maw",
  21127. image: {
  21128. source: "./media/characters/athea/maw.svg"
  21129. }
  21130. },
  21131. },
  21132. [
  21133. {
  21134. name: "Lap Cat",
  21135. height: math.unit(2.5, "feet")
  21136. },
  21137. {
  21138. name: "Minimacro",
  21139. height: math.unit(15, "feet"),
  21140. default: true
  21141. },
  21142. {
  21143. name: "Macro",
  21144. height: math.unit(120, "feet")
  21145. },
  21146. {
  21147. name: "Macro+",
  21148. height: math.unit(640, "feet")
  21149. },
  21150. {
  21151. name: "Colossus",
  21152. height: math.unit(2.2, "miles")
  21153. },
  21154. ]
  21155. ))
  21156. characterMakers.push(() => makeCharacter(
  21157. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21158. {
  21159. front: {
  21160. height: math.unit(8 + 8 / 12, "feet"),
  21161. weight: math.unit(130, "kg"),
  21162. name: "Front",
  21163. image: {
  21164. source: "./media/characters/seroko/front.svg",
  21165. extra: 1385 / 1280,
  21166. bottom: 0.025
  21167. }
  21168. },
  21169. back: {
  21170. height: math.unit(8 + 8 / 12, "feet"),
  21171. weight: math.unit(130, "kg"),
  21172. name: "Back",
  21173. image: {
  21174. source: "./media/characters/seroko/back.svg",
  21175. extra: 1369 / 1238,
  21176. bottom: 0.018
  21177. }
  21178. },
  21179. frontDressed: {
  21180. height: math.unit(8 + 8 / 12, "feet"),
  21181. weight: math.unit(130, "kg"),
  21182. name: "Front (Dressed)",
  21183. image: {
  21184. source: "./media/characters/seroko/front-dressed.svg",
  21185. extra: 1366 / 1275,
  21186. bottom: 0.03
  21187. }
  21188. },
  21189. },
  21190. [
  21191. {
  21192. name: "Normal",
  21193. height: math.unit(8 + 8 / 12, "feet"),
  21194. default: true
  21195. },
  21196. ]
  21197. ))
  21198. characterMakers.push(() => makeCharacter(
  21199. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21200. {
  21201. front: {
  21202. height: math.unit(5.5, "feet"),
  21203. weight: math.unit(160, "lb"),
  21204. name: "Front",
  21205. image: {
  21206. source: "./media/characters/quatzi/front.svg",
  21207. extra: 2346 / 2242,
  21208. bottom: 0.015
  21209. }
  21210. },
  21211. },
  21212. [
  21213. {
  21214. name: "Normal",
  21215. height: math.unit(5.5, "feet"),
  21216. default: true
  21217. },
  21218. {
  21219. name: "Big",
  21220. height: math.unit(7.7, "feet")
  21221. },
  21222. ]
  21223. ))
  21224. characterMakers.push(() => makeCharacter(
  21225. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21226. {
  21227. front: {
  21228. height: math.unit(5 + 11 / 12, "feet"),
  21229. weight: math.unit(180, "lb"),
  21230. name: "Front",
  21231. image: {
  21232. source: "./media/characters/sen/front.svg",
  21233. extra: 1321 / 1254,
  21234. bottom: 0.015
  21235. }
  21236. },
  21237. side: {
  21238. height: math.unit(5 + 11 / 12, "feet"),
  21239. weight: math.unit(180, "lb"),
  21240. name: "Side",
  21241. image: {
  21242. source: "./media/characters/sen/side.svg",
  21243. extra: 1321 / 1254,
  21244. bottom: 0.007
  21245. }
  21246. },
  21247. back: {
  21248. height: math.unit(5 + 11 / 12, "feet"),
  21249. weight: math.unit(180, "lb"),
  21250. name: "Back",
  21251. image: {
  21252. source: "./media/characters/sen/back.svg",
  21253. extra: 1321 / 1254
  21254. }
  21255. },
  21256. },
  21257. [
  21258. {
  21259. name: "Normal",
  21260. height: math.unit(5 + 11 / 12, "feet"),
  21261. default: true
  21262. },
  21263. ]
  21264. ))
  21265. characterMakers.push(() => makeCharacter(
  21266. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21267. {
  21268. front: {
  21269. height: math.unit(166.6, "cm"),
  21270. weight: math.unit(66.6, "kg"),
  21271. name: "Front",
  21272. image: {
  21273. source: "./media/characters/fruity/front.svg",
  21274. extra: 1510 / 1386,
  21275. bottom: 0.04
  21276. }
  21277. },
  21278. back: {
  21279. height: math.unit(166.6, "cm"),
  21280. weight: math.unit(66.6, "lb"),
  21281. name: "Back",
  21282. image: {
  21283. source: "./media/characters/fruity/back.svg",
  21284. extra: 1563 / 1435,
  21285. bottom: 0.005
  21286. }
  21287. },
  21288. },
  21289. [
  21290. {
  21291. name: "Normal",
  21292. height: math.unit(166.6, "cm"),
  21293. default: true
  21294. },
  21295. {
  21296. name: "Demonic",
  21297. height: math.unit(166.6, "feet")
  21298. },
  21299. ]
  21300. ))
  21301. characterMakers.push(() => makeCharacter(
  21302. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21303. {
  21304. side: {
  21305. height: math.unit(10, "feet"),
  21306. weight: math.unit(500, "lb"),
  21307. name: "Side",
  21308. image: {
  21309. source: "./media/characters/zost/side.svg",
  21310. extra: 966 / 880,
  21311. bottom: 0.075
  21312. }
  21313. },
  21314. mawFront: {
  21315. height: math.unit(1.08, "meters"),
  21316. name: "Maw (Front)",
  21317. image: {
  21318. source: "./media/characters/zost/maw-front.svg"
  21319. }
  21320. },
  21321. mawSide: {
  21322. height: math.unit(2.66, "feet"),
  21323. name: "Maw (Side)",
  21324. image: {
  21325. source: "./media/characters/zost/maw-side.svg"
  21326. }
  21327. },
  21328. },
  21329. [
  21330. {
  21331. name: "Normal",
  21332. height: math.unit(10, "feet"),
  21333. default: true
  21334. },
  21335. ]
  21336. ))
  21337. characterMakers.push(() => makeCharacter(
  21338. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21339. {
  21340. front: {
  21341. height: math.unit(5 + 4 / 12, "feet"),
  21342. weight: math.unit(120, "lb"),
  21343. name: "Front",
  21344. image: {
  21345. source: "./media/characters/luci/front.svg",
  21346. extra: 1985 / 1884,
  21347. bottom: 0.04
  21348. }
  21349. },
  21350. back: {
  21351. height: math.unit(5 + 4 / 12, "feet"),
  21352. weight: math.unit(120, "lb"),
  21353. name: "Back",
  21354. image: {
  21355. source: "./media/characters/luci/back.svg",
  21356. extra: 1892 / 1791,
  21357. bottom: 0.002
  21358. }
  21359. },
  21360. },
  21361. [
  21362. {
  21363. name: "Normal",
  21364. height: math.unit(5 + 4 / 12, "feet"),
  21365. default: true
  21366. },
  21367. ]
  21368. ))
  21369. characterMakers.push(() => makeCharacter(
  21370. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21371. {
  21372. front: {
  21373. height: math.unit(1500, "feet"),
  21374. weight: math.unit(3.8e6, "tons"),
  21375. name: "Front",
  21376. image: {
  21377. source: "./media/characters/2th/front.svg",
  21378. extra: 3489 / 3350,
  21379. bottom: 0.1
  21380. }
  21381. },
  21382. foot: {
  21383. height: math.unit(461, "feet"),
  21384. name: "Foot",
  21385. image: {
  21386. source: "./media/characters/2th/foot.svg"
  21387. }
  21388. },
  21389. },
  21390. [
  21391. {
  21392. name: "\"Micro\"",
  21393. height: math.unit(15 + 7 / 12, "feet")
  21394. },
  21395. {
  21396. name: "Normal",
  21397. height: math.unit(1500, "feet"),
  21398. default: true
  21399. },
  21400. {
  21401. name: "Macro",
  21402. height: math.unit(5000, "feet")
  21403. },
  21404. {
  21405. name: "Megamacro",
  21406. height: math.unit(15, "miles")
  21407. },
  21408. {
  21409. name: "Gigamacro",
  21410. height: math.unit(4000, "miles")
  21411. },
  21412. {
  21413. name: "Galactic",
  21414. height: math.unit(50, "AU")
  21415. },
  21416. ]
  21417. ))
  21418. characterMakers.push(() => makeCharacter(
  21419. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21420. {
  21421. front: {
  21422. height: math.unit(5 + 6 / 12, "feet"),
  21423. weight: math.unit(220, "lb"),
  21424. name: "Front",
  21425. image: {
  21426. source: "./media/characters/amethyst/front.svg",
  21427. extra: 2078 / 2040,
  21428. bottom: 0.045
  21429. }
  21430. },
  21431. back: {
  21432. height: math.unit(5 + 6 / 12, "feet"),
  21433. weight: math.unit(220, "lb"),
  21434. name: "Back",
  21435. image: {
  21436. source: "./media/characters/amethyst/back.svg",
  21437. extra: 2021 / 1989,
  21438. bottom: 0.02
  21439. }
  21440. },
  21441. },
  21442. [
  21443. {
  21444. name: "Normal",
  21445. height: math.unit(5 + 6 / 12, "feet"),
  21446. default: true
  21447. },
  21448. ]
  21449. ))
  21450. characterMakers.push(() => makeCharacter(
  21451. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21452. {
  21453. front: {
  21454. height: math.unit(4 + 11 / 12, "feet"),
  21455. weight: math.unit(120, "lb"),
  21456. name: "Front",
  21457. image: {
  21458. source: "./media/characters/yumi-akiyama/front.svg",
  21459. extra: 1327 / 1235,
  21460. bottom: 0.02
  21461. }
  21462. },
  21463. back: {
  21464. height: math.unit(4 + 11 / 12, "feet"),
  21465. weight: math.unit(120, "lb"),
  21466. name: "Back",
  21467. image: {
  21468. source: "./media/characters/yumi-akiyama/back.svg",
  21469. extra: 1287 / 1245,
  21470. bottom: 0.002
  21471. }
  21472. },
  21473. },
  21474. [
  21475. {
  21476. name: "Galactic",
  21477. height: math.unit(50, "galaxies"),
  21478. default: true
  21479. },
  21480. {
  21481. name: "Universal",
  21482. height: math.unit(100, "universes")
  21483. },
  21484. ]
  21485. ))
  21486. characterMakers.push(() => makeCharacter(
  21487. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21488. {
  21489. front: {
  21490. height: math.unit(8, "feet"),
  21491. weight: math.unit(500, "lb"),
  21492. name: "Front",
  21493. image: {
  21494. source: "./media/characters/rifter-yrmori/front.svg",
  21495. extra: 1180 / 1125,
  21496. bottom: 0.02
  21497. }
  21498. },
  21499. back: {
  21500. height: math.unit(8, "feet"),
  21501. weight: math.unit(500, "lb"),
  21502. name: "Back",
  21503. image: {
  21504. source: "./media/characters/rifter-yrmori/back.svg",
  21505. extra: 1190 / 1145,
  21506. bottom: 0.001
  21507. }
  21508. },
  21509. wings: {
  21510. height: math.unit(7.75, "feet"),
  21511. weight: math.unit(500, "lb"),
  21512. name: "Wings",
  21513. image: {
  21514. source: "./media/characters/rifter-yrmori/wings.svg",
  21515. extra: 1357 / 1285
  21516. }
  21517. },
  21518. maw: {
  21519. height: math.unit(0.8, "feet"),
  21520. name: "Maw",
  21521. image: {
  21522. source: "./media/characters/rifter-yrmori/maw.svg"
  21523. }
  21524. },
  21525. mawfront: {
  21526. height: math.unit(1.45, "feet"),
  21527. name: "Maw (Front)",
  21528. image: {
  21529. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21530. }
  21531. },
  21532. },
  21533. [
  21534. {
  21535. name: "Normal",
  21536. height: math.unit(8, "feet"),
  21537. default: true
  21538. },
  21539. {
  21540. name: "Macro",
  21541. height: math.unit(42, "meters")
  21542. },
  21543. ]
  21544. ))
  21545. characterMakers.push(() => makeCharacter(
  21546. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21547. {
  21548. were: {
  21549. height: math.unit(25 + 6 / 12, "feet"),
  21550. weight: math.unit(10000, "lb"),
  21551. name: "Were",
  21552. image: {
  21553. source: "./media/characters/tahajin/were.svg",
  21554. extra: 801 / 770,
  21555. bottom: 0.042
  21556. }
  21557. },
  21558. aquatic: {
  21559. height: math.unit(6 + 4 / 12, "feet"),
  21560. weight: math.unit(160, "lb"),
  21561. name: "Aquatic",
  21562. image: {
  21563. source: "./media/characters/tahajin/aquatic.svg",
  21564. extra: 572 / 542,
  21565. bottom: 0.04
  21566. }
  21567. },
  21568. chow: {
  21569. height: math.unit(8 + 11 / 12, "feet"),
  21570. weight: math.unit(450, "lb"),
  21571. name: "Chow",
  21572. image: {
  21573. source: "./media/characters/tahajin/chow.svg",
  21574. extra: 660 / 640,
  21575. bottom: 0.015
  21576. }
  21577. },
  21578. demiNaga: {
  21579. height: math.unit(6 + 8 / 12, "feet"),
  21580. weight: math.unit(300, "lb"),
  21581. name: "Demi Naga",
  21582. image: {
  21583. source: "./media/characters/tahajin/demi-naga.svg",
  21584. extra: 643 / 615,
  21585. bottom: 0.1
  21586. }
  21587. },
  21588. data: {
  21589. height: math.unit(5, "inches"),
  21590. weight: math.unit(0.1, "lb"),
  21591. name: "Data",
  21592. image: {
  21593. source: "./media/characters/tahajin/data.svg"
  21594. }
  21595. },
  21596. fluu: {
  21597. height: math.unit(5 + 7 / 12, "feet"),
  21598. weight: math.unit(140, "lb"),
  21599. name: "Fluu",
  21600. image: {
  21601. source: "./media/characters/tahajin/fluu.svg",
  21602. extra: 628 / 592,
  21603. bottom: 0.02
  21604. }
  21605. },
  21606. starWarrior: {
  21607. height: math.unit(4 + 5 / 12, "feet"),
  21608. weight: math.unit(50, "lb"),
  21609. name: "Star Warrior",
  21610. image: {
  21611. source: "./media/characters/tahajin/star-warrior.svg"
  21612. }
  21613. },
  21614. },
  21615. [
  21616. {
  21617. name: "Normal",
  21618. height: math.unit(25 + 6 / 12, "feet"),
  21619. default: true
  21620. },
  21621. ]
  21622. ))
  21623. characterMakers.push(() => makeCharacter(
  21624. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21625. {
  21626. front: {
  21627. height: math.unit(8, "feet"),
  21628. weight: math.unit(350, "lb"),
  21629. name: "Front",
  21630. image: {
  21631. source: "./media/characters/gabira/front.svg",
  21632. extra: 608 / 580,
  21633. bottom: 0.03
  21634. }
  21635. },
  21636. back: {
  21637. height: math.unit(8, "feet"),
  21638. weight: math.unit(350, "lb"),
  21639. name: "Back",
  21640. image: {
  21641. source: "./media/characters/gabira/back.svg",
  21642. extra: 608 / 580,
  21643. bottom: 0.03
  21644. }
  21645. },
  21646. },
  21647. [
  21648. {
  21649. name: "Normal",
  21650. height: math.unit(8, "feet"),
  21651. default: true
  21652. },
  21653. ]
  21654. ))
  21655. characterMakers.push(() => makeCharacter(
  21656. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21657. {
  21658. front: {
  21659. height: math.unit(5 + 3 / 12, "feet"),
  21660. weight: math.unit(137, "lb"),
  21661. name: "Front",
  21662. image: {
  21663. source: "./media/characters/sasha-katraine/front.svg",
  21664. bottom: 0.045
  21665. }
  21666. },
  21667. },
  21668. [
  21669. {
  21670. name: "Micro",
  21671. height: math.unit(5, "inches")
  21672. },
  21673. {
  21674. name: "Normal",
  21675. height: math.unit(5 + 3 / 12, "feet"),
  21676. default: true
  21677. },
  21678. ]
  21679. ))
  21680. characterMakers.push(() => makeCharacter(
  21681. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21682. {
  21683. side: {
  21684. height: math.unit(4, "inches"),
  21685. weight: math.unit(200, "grams"),
  21686. name: "Side",
  21687. image: {
  21688. source: "./media/characters/der/side.svg",
  21689. extra: 719 / 400,
  21690. bottom: 30.6 / 749.9187
  21691. }
  21692. },
  21693. },
  21694. [
  21695. {
  21696. name: "Micro",
  21697. height: math.unit(4, "inches"),
  21698. default: true
  21699. },
  21700. ]
  21701. ))
  21702. characterMakers.push(() => makeCharacter(
  21703. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21704. {
  21705. side: {
  21706. height: math.unit(30, "meters"),
  21707. weight: math.unit(700, "tonnes"),
  21708. name: "Side",
  21709. image: {
  21710. source: "./media/characters/fixerdragon/side.svg",
  21711. extra: (1293.0514 - 116.03) / 1106.86,
  21712. bottom: 116.03 / 1293.0514
  21713. }
  21714. },
  21715. },
  21716. [
  21717. {
  21718. name: "Planck",
  21719. height: math.unit(1.6e-35, "meters")
  21720. },
  21721. {
  21722. name: "Micro",
  21723. height: math.unit(0.4, "meters")
  21724. },
  21725. {
  21726. name: "Normal",
  21727. height: math.unit(30, "meters"),
  21728. default: true
  21729. },
  21730. {
  21731. name: "Megamacro",
  21732. height: math.unit(1.2, "megameters")
  21733. },
  21734. {
  21735. name: "Teramacro",
  21736. height: math.unit(130, "terameters")
  21737. },
  21738. {
  21739. name: "Yottamacro",
  21740. height: math.unit(6200, "yottameters")
  21741. },
  21742. ]
  21743. ));
  21744. characterMakers.push(() => makeCharacter(
  21745. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21746. {
  21747. front: {
  21748. height: math.unit(8, "feet"),
  21749. weight: math.unit(250, "lb"),
  21750. name: "Front",
  21751. image: {
  21752. source: "./media/characters/kite/front.svg",
  21753. extra: 2796 / 2659,
  21754. bottom: 0.002
  21755. }
  21756. },
  21757. },
  21758. [
  21759. {
  21760. name: "Normal",
  21761. height: math.unit(8, "feet"),
  21762. default: true
  21763. },
  21764. {
  21765. name: "Macro",
  21766. height: math.unit(360, "feet")
  21767. },
  21768. {
  21769. name: "Megamacro",
  21770. height: math.unit(1500, "feet")
  21771. },
  21772. ]
  21773. ))
  21774. characterMakers.push(() => makeCharacter(
  21775. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21776. {
  21777. front: {
  21778. height: math.unit(5 + 11/12, "feet"),
  21779. weight: math.unit(170, "lb"),
  21780. name: "Front",
  21781. image: {
  21782. source: "./media/characters/poojawa-vynar/front.svg",
  21783. extra: 1735/1585,
  21784. bottom: 96/1831
  21785. }
  21786. },
  21787. back: {
  21788. height: math.unit(5 + 11/12, "feet"),
  21789. weight: math.unit(170, "lb"),
  21790. name: "Back",
  21791. image: {
  21792. source: "./media/characters/poojawa-vynar/back.svg",
  21793. extra: 1749/1607,
  21794. bottom: 28/1777
  21795. }
  21796. },
  21797. male: {
  21798. height: math.unit(5 + 11/12, "feet"),
  21799. weight: math.unit(170, "lb"),
  21800. name: "Male",
  21801. image: {
  21802. source: "./media/characters/poojawa-vynar/male.svg",
  21803. extra: 1855/1713,
  21804. bottom: 63/1918
  21805. }
  21806. },
  21807. taur: {
  21808. height: math.unit(5 + 11/12, "feet"),
  21809. weight: math.unit(170, "lb"),
  21810. name: "Taur",
  21811. image: {
  21812. source: "./media/characters/poojawa-vynar/taur.svg",
  21813. extra: 1151/1059,
  21814. bottom: 356/1507
  21815. }
  21816. },
  21817. frontDressed: {
  21818. height: math.unit(5 + 11/12, "feet"),
  21819. weight: math.unit(170, "lb"),
  21820. name: "Front (Dressed)",
  21821. image: {
  21822. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  21823. extra: 1735/1585,
  21824. bottom: 96/1831
  21825. }
  21826. },
  21827. backDressed: {
  21828. height: math.unit(5 + 11/12, "feet"),
  21829. weight: math.unit(170, "lb"),
  21830. name: "Back (Dressed)",
  21831. image: {
  21832. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  21833. extra: 1749/1607,
  21834. bottom: 28/1777
  21835. }
  21836. },
  21837. maleDressed: {
  21838. height: math.unit(5 + 11/12, "feet"),
  21839. weight: math.unit(170, "lb"),
  21840. name: "Male (Dressed)",
  21841. image: {
  21842. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  21843. extra: 1855/1713,
  21844. bottom: 63/1918
  21845. }
  21846. },
  21847. taurDressed: {
  21848. height: math.unit(5 + 11/12, "feet"),
  21849. weight: math.unit(170, "lb"),
  21850. name: "Taur (Dressed)",
  21851. image: {
  21852. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  21853. extra: 1151/1059,
  21854. bottom: 356/1507
  21855. }
  21856. },
  21857. maw: {
  21858. height: math.unit(1.46, "feet"),
  21859. name: "Maw",
  21860. image: {
  21861. source: "./media/characters/poojawa-vynar/maw.svg"
  21862. }
  21863. },
  21864. head: {
  21865. height: math.unit(2.34, "feet"),
  21866. name: "Head",
  21867. image: {
  21868. source: "./media/characters/poojawa-vynar/head.svg"
  21869. }
  21870. },
  21871. paw: {
  21872. height: math.unit(1.61, "feet"),
  21873. name: "Paw",
  21874. image: {
  21875. source: "./media/characters/poojawa-vynar/paw.svg"
  21876. }
  21877. },
  21878. pawToering: {
  21879. height: math.unit(1.72, "feet"),
  21880. name: "Paw (Toering)",
  21881. image: {
  21882. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  21883. }
  21884. },
  21885. toering: {
  21886. height: math.unit(2.9, "inches"),
  21887. name: "Toering",
  21888. image: {
  21889. source: "./media/characters/poojawa-vynar/toering.svg"
  21890. }
  21891. },
  21892. shaft: {
  21893. height: math.unit(0.625, "feet"),
  21894. name: "Shaft",
  21895. image: {
  21896. source: "./media/characters/poojawa-vynar/shaft.svg"
  21897. }
  21898. },
  21899. spade: {
  21900. height: math.unit(0.42, "feet"),
  21901. name: "Spade",
  21902. image: {
  21903. source: "./media/characters/poojawa-vynar/spade.svg"
  21904. }
  21905. },
  21906. },
  21907. [
  21908. {
  21909. name: "Shortstack",
  21910. height: math.unit(4, "feet")
  21911. },
  21912. {
  21913. name: "Normal",
  21914. height: math.unit(5 + 11 / 12, "feet"),
  21915. default: true
  21916. },
  21917. {
  21918. name: "Tauric",
  21919. height: math.unit(4, "meters")
  21920. },
  21921. ]
  21922. ))
  21923. characterMakers.push(() => makeCharacter(
  21924. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21925. {
  21926. front: {
  21927. height: math.unit(293, "meters"),
  21928. weight: math.unit(70400, "tons"),
  21929. name: "Front",
  21930. image: {
  21931. source: "./media/characters/violette/front.svg",
  21932. extra: 1227 / 1180,
  21933. bottom: 0.005
  21934. }
  21935. },
  21936. back: {
  21937. height: math.unit(293, "meters"),
  21938. weight: math.unit(70400, "tons"),
  21939. name: "Back",
  21940. image: {
  21941. source: "./media/characters/violette/back.svg",
  21942. extra: 1227 / 1180,
  21943. bottom: 0.005
  21944. }
  21945. },
  21946. },
  21947. [
  21948. {
  21949. name: "Macro",
  21950. height: math.unit(293, "meters"),
  21951. default: true
  21952. },
  21953. ]
  21954. ))
  21955. characterMakers.push(() => makeCharacter(
  21956. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21957. {
  21958. front: {
  21959. height: math.unit(1050, "feet"),
  21960. weight: math.unit(200000, "tons"),
  21961. name: "Front",
  21962. image: {
  21963. source: "./media/characters/alessandra/front.svg",
  21964. extra: 960 / 912,
  21965. bottom: 0.06
  21966. }
  21967. },
  21968. },
  21969. [
  21970. {
  21971. name: "Macro",
  21972. height: math.unit(1050, "feet")
  21973. },
  21974. {
  21975. name: "Macro+",
  21976. height: math.unit(900, "meters"),
  21977. default: true
  21978. },
  21979. ]
  21980. ))
  21981. characterMakers.push(() => makeCharacter(
  21982. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21983. {
  21984. front: {
  21985. height: math.unit(5, "feet"),
  21986. weight: math.unit(187, "lb"),
  21987. name: "Front",
  21988. image: {
  21989. source: "./media/characters/person/front.svg",
  21990. extra: 3087 / 2945,
  21991. bottom: 91 / 3181
  21992. }
  21993. },
  21994. },
  21995. [
  21996. {
  21997. name: "Micro",
  21998. height: math.unit(3, "inches")
  21999. },
  22000. {
  22001. name: "Normal",
  22002. height: math.unit(5, "feet"),
  22003. default: true
  22004. },
  22005. {
  22006. name: "Macro",
  22007. height: math.unit(90, "feet")
  22008. },
  22009. {
  22010. name: "Max Size",
  22011. height: math.unit(280, "feet")
  22012. },
  22013. ]
  22014. ))
  22015. characterMakers.push(() => makeCharacter(
  22016. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22017. {
  22018. front: {
  22019. height: math.unit(4.5, "meters"),
  22020. weight: math.unit(3200, "lb"),
  22021. name: "Front",
  22022. image: {
  22023. source: "./media/characters/ty/front.svg",
  22024. extra: 1038 / 960,
  22025. bottom: 31.156 / 1068
  22026. }
  22027. },
  22028. back: {
  22029. height: math.unit(4.5, "meters"),
  22030. weight: math.unit(3200, "lb"),
  22031. name: "Back",
  22032. image: {
  22033. source: "./media/characters/ty/back.svg",
  22034. extra: 1044 / 966,
  22035. bottom: 7.48 / 1049
  22036. }
  22037. },
  22038. },
  22039. [
  22040. {
  22041. name: "Normal",
  22042. height: math.unit(4.5, "meters"),
  22043. default: true
  22044. },
  22045. ]
  22046. ))
  22047. characterMakers.push(() => makeCharacter(
  22048. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22049. {
  22050. front: {
  22051. height: math.unit(5 + 4 / 12, "feet"),
  22052. weight: math.unit(115, "lb"),
  22053. name: "Front",
  22054. image: {
  22055. source: "./media/characters/rocky/front.svg",
  22056. extra: 1012 / 975,
  22057. bottom: 54 / 1066
  22058. }
  22059. },
  22060. },
  22061. [
  22062. {
  22063. name: "Normal",
  22064. height: math.unit(5 + 4 / 12, "feet"),
  22065. default: true
  22066. },
  22067. ]
  22068. ))
  22069. characterMakers.push(() => makeCharacter(
  22070. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22071. {
  22072. upright: {
  22073. height: math.unit(6, "meters"),
  22074. weight: math.unit(4000, "kg"),
  22075. name: "Upright",
  22076. image: {
  22077. source: "./media/characters/ruin/upright.svg",
  22078. extra: 668 / 661,
  22079. bottom: 42 / 799.8396
  22080. }
  22081. },
  22082. },
  22083. [
  22084. {
  22085. name: "Normal",
  22086. height: math.unit(6, "meters"),
  22087. default: true
  22088. },
  22089. ]
  22090. ))
  22091. characterMakers.push(() => makeCharacter(
  22092. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22093. {
  22094. front: {
  22095. height: math.unit(5, "feet"),
  22096. weight: math.unit(106, "lb"),
  22097. name: "Front",
  22098. image: {
  22099. source: "./media/characters/robin/front.svg",
  22100. extra: 862 / 799,
  22101. bottom: 42.4 / 914.8856
  22102. }
  22103. },
  22104. },
  22105. [
  22106. {
  22107. name: "Normal",
  22108. height: math.unit(5, "feet"),
  22109. default: true
  22110. },
  22111. ]
  22112. ))
  22113. characterMakers.push(() => makeCharacter(
  22114. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22115. {
  22116. side: {
  22117. height: math.unit(3, "feet"),
  22118. weight: math.unit(225, "lb"),
  22119. name: "Side",
  22120. image: {
  22121. source: "./media/characters/saian/side.svg",
  22122. extra: 566 / 356,
  22123. bottom: 79.7 / 643
  22124. }
  22125. },
  22126. maw: {
  22127. height: math.unit(2.85, "feet"),
  22128. name: "Maw",
  22129. image: {
  22130. source: "./media/characters/saian/maw.svg"
  22131. }
  22132. },
  22133. },
  22134. [
  22135. {
  22136. name: "Normal",
  22137. height: math.unit(3, "feet"),
  22138. default: true
  22139. },
  22140. ]
  22141. ))
  22142. characterMakers.push(() => makeCharacter(
  22143. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22144. {
  22145. side: {
  22146. height: math.unit(8, "feet"),
  22147. weight: math.unit(300, "lb"),
  22148. name: "Side",
  22149. image: {
  22150. source: "./media/characters/equus-silvermane/side.svg",
  22151. extra: 2176 / 2050,
  22152. bottom: 65.7 / 2245
  22153. }
  22154. },
  22155. front: {
  22156. height: math.unit(8, "feet"),
  22157. weight: math.unit(300, "lb"),
  22158. name: "Front",
  22159. image: {
  22160. source: "./media/characters/equus-silvermane/front.svg",
  22161. extra: 4633 / 4400,
  22162. bottom: 71.3 / 4706.915
  22163. }
  22164. },
  22165. sideStepping: {
  22166. height: math.unit(8, "feet"),
  22167. weight: math.unit(300, "lb"),
  22168. name: "Side (Stepping)",
  22169. image: {
  22170. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22171. extra: 1968 / 1860,
  22172. bottom: 16.4 / 1989
  22173. }
  22174. },
  22175. },
  22176. [
  22177. {
  22178. name: "Normal",
  22179. height: math.unit(8, "feet")
  22180. },
  22181. {
  22182. name: "Minimacro",
  22183. height: math.unit(75, "feet"),
  22184. default: true
  22185. },
  22186. {
  22187. name: "Macro",
  22188. height: math.unit(150, "feet")
  22189. },
  22190. {
  22191. name: "Macro+",
  22192. height: math.unit(1000, "feet")
  22193. },
  22194. {
  22195. name: "Megamacro",
  22196. height: math.unit(1, "mile")
  22197. },
  22198. ]
  22199. ))
  22200. characterMakers.push(() => makeCharacter(
  22201. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22202. {
  22203. side: {
  22204. height: math.unit(20, "feet"),
  22205. weight: math.unit(30000, "kg"),
  22206. name: "Side",
  22207. image: {
  22208. source: "./media/characters/windar/side.svg",
  22209. extra: 1491 / 1248,
  22210. bottom: 82.56 / 1568
  22211. }
  22212. },
  22213. },
  22214. [
  22215. {
  22216. name: "Normal",
  22217. height: math.unit(20, "feet"),
  22218. default: true
  22219. },
  22220. ]
  22221. ))
  22222. characterMakers.push(() => makeCharacter(
  22223. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22224. {
  22225. side: {
  22226. height: math.unit(15.66, "feet"),
  22227. weight: math.unit(150, "lb"),
  22228. name: "Side",
  22229. image: {
  22230. source: "./media/characters/melody/side.svg",
  22231. extra: 1097 / 944,
  22232. bottom: 11.8 / 1109
  22233. }
  22234. },
  22235. sideOutfit: {
  22236. height: math.unit(15.66, "feet"),
  22237. weight: math.unit(150, "lb"),
  22238. name: "Side (Outfit)",
  22239. image: {
  22240. source: "./media/characters/melody/side-outfit.svg",
  22241. extra: 1097 / 944,
  22242. bottom: 11.8 / 1109
  22243. }
  22244. },
  22245. },
  22246. [
  22247. {
  22248. name: "Normal",
  22249. height: math.unit(15.66, "feet"),
  22250. default: true
  22251. },
  22252. ]
  22253. ))
  22254. characterMakers.push(() => makeCharacter(
  22255. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22256. {
  22257. front: {
  22258. height: math.unit(8, "feet"),
  22259. weight: math.unit(325, "lb"),
  22260. name: "Front",
  22261. image: {
  22262. source: "./media/characters/windera/front.svg",
  22263. extra: 3180 / 2845,
  22264. bottom: 178 / 3365
  22265. }
  22266. },
  22267. },
  22268. [
  22269. {
  22270. name: "Normal",
  22271. height: math.unit(8, "feet"),
  22272. default: true
  22273. },
  22274. ]
  22275. ))
  22276. characterMakers.push(() => makeCharacter(
  22277. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22278. {
  22279. front: {
  22280. height: math.unit(28.75, "feet"),
  22281. weight: math.unit(2000, "kg"),
  22282. name: "Front",
  22283. image: {
  22284. source: "./media/characters/sonear/front.svg",
  22285. extra: 1041.1 / 964.9,
  22286. bottom: 53.7 / 1096.6
  22287. }
  22288. },
  22289. },
  22290. [
  22291. {
  22292. name: "Normal",
  22293. height: math.unit(28.75, "feet"),
  22294. default: true
  22295. },
  22296. ]
  22297. ))
  22298. characterMakers.push(() => makeCharacter(
  22299. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22300. {
  22301. side: {
  22302. height: math.unit(25.5, "feet"),
  22303. weight: math.unit(23000, "kg"),
  22304. name: "Side",
  22305. image: {
  22306. source: "./media/characters/kanara/side.svg"
  22307. }
  22308. },
  22309. },
  22310. [
  22311. {
  22312. name: "Normal",
  22313. height: math.unit(25.5, "feet"),
  22314. default: true
  22315. },
  22316. ]
  22317. ))
  22318. characterMakers.push(() => makeCharacter(
  22319. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22320. {
  22321. side: {
  22322. height: math.unit(10, "feet"),
  22323. weight: math.unit(1000, "kg"),
  22324. name: "Side",
  22325. image: {
  22326. source: "./media/characters/ereus/side.svg",
  22327. extra: 1157 / 959,
  22328. bottom: 153 / 1312.5
  22329. }
  22330. },
  22331. },
  22332. [
  22333. {
  22334. name: "Normal",
  22335. height: math.unit(10, "feet"),
  22336. default: true
  22337. },
  22338. ]
  22339. ))
  22340. characterMakers.push(() => makeCharacter(
  22341. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22342. {
  22343. side: {
  22344. height: math.unit(4.5, "feet"),
  22345. weight: math.unit(500, "lb"),
  22346. name: "Side",
  22347. image: {
  22348. source: "./media/characters/e-ter/side.svg",
  22349. extra: 1550 / 1248,
  22350. bottom: 146 / 1694
  22351. }
  22352. },
  22353. },
  22354. [
  22355. {
  22356. name: "Normal",
  22357. height: math.unit(4.5, "feet"),
  22358. default: true
  22359. },
  22360. ]
  22361. ))
  22362. characterMakers.push(() => makeCharacter(
  22363. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22364. {
  22365. side: {
  22366. height: math.unit(9.7, "feet"),
  22367. weight: math.unit(4000, "kg"),
  22368. name: "Side",
  22369. image: {
  22370. source: "./media/characters/yamie/side.svg"
  22371. }
  22372. },
  22373. },
  22374. [
  22375. {
  22376. name: "Normal",
  22377. height: math.unit(9.7, "feet"),
  22378. default: true
  22379. },
  22380. ]
  22381. ))
  22382. characterMakers.push(() => makeCharacter(
  22383. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22384. {
  22385. front: {
  22386. height: math.unit(50, "feet"),
  22387. weight: math.unit(50000, "kg"),
  22388. name: "Front",
  22389. image: {
  22390. source: "./media/characters/anders/front.svg",
  22391. extra: 570 / 539,
  22392. bottom: 14.7 / 586.7
  22393. }
  22394. },
  22395. },
  22396. [
  22397. {
  22398. name: "Large",
  22399. height: math.unit(50, "feet")
  22400. },
  22401. {
  22402. name: "Macro",
  22403. height: math.unit(2000, "feet"),
  22404. default: true
  22405. },
  22406. {
  22407. name: "Megamacro",
  22408. height: math.unit(12, "miles")
  22409. },
  22410. ]
  22411. ))
  22412. characterMakers.push(() => makeCharacter(
  22413. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22414. {
  22415. front: {
  22416. height: math.unit(7 + 2 / 12, "feet"),
  22417. weight: math.unit(300, "lb"),
  22418. name: "Front",
  22419. image: {
  22420. source: "./media/characters/reban/front.svg",
  22421. extra: 516 / 487,
  22422. bottom: 42.82 / 558.356
  22423. }
  22424. },
  22425. dick: {
  22426. height: math.unit(7 / 5, "feet"),
  22427. name: "Dick",
  22428. image: {
  22429. source: "./media/characters/reban/dick.svg"
  22430. }
  22431. },
  22432. },
  22433. [
  22434. {
  22435. name: "Natural Height",
  22436. height: math.unit(7 + 2 / 12, "feet")
  22437. },
  22438. {
  22439. name: "Macro",
  22440. height: math.unit(500, "feet"),
  22441. default: true
  22442. },
  22443. {
  22444. name: "Canon Height",
  22445. height: math.unit(50, "AU")
  22446. },
  22447. ]
  22448. ))
  22449. characterMakers.push(() => makeCharacter(
  22450. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22451. {
  22452. front: {
  22453. height: math.unit(6, "feet"),
  22454. weight: math.unit(150, "lb"),
  22455. name: "Front",
  22456. image: {
  22457. source: "./media/characters/terrance-keayes/front.svg",
  22458. extra: 1.005,
  22459. bottom: 151 / 1615
  22460. }
  22461. },
  22462. side: {
  22463. height: math.unit(6, "feet"),
  22464. weight: math.unit(150, "lb"),
  22465. name: "Side",
  22466. image: {
  22467. source: "./media/characters/terrance-keayes/side.svg",
  22468. extra: 1.005,
  22469. bottom: 129.4 / 1544
  22470. }
  22471. },
  22472. back: {
  22473. height: math.unit(6, "feet"),
  22474. weight: math.unit(150, "lb"),
  22475. name: "Back",
  22476. image: {
  22477. source: "./media/characters/terrance-keayes/back.svg",
  22478. extra: 1.005,
  22479. bottom: 58.4 / 1557.3
  22480. }
  22481. },
  22482. dick: {
  22483. height: math.unit(6 * 0.208, "feet"),
  22484. name: "Dick",
  22485. image: {
  22486. source: "./media/characters/terrance-keayes/dick.svg"
  22487. }
  22488. },
  22489. },
  22490. [
  22491. {
  22492. name: "Canon Height",
  22493. height: math.unit(35, "miles"),
  22494. default: true
  22495. },
  22496. ]
  22497. ))
  22498. characterMakers.push(() => makeCharacter(
  22499. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22500. {
  22501. front: {
  22502. height: math.unit(6, "feet"),
  22503. weight: math.unit(150, "lb"),
  22504. name: "Front",
  22505. image: {
  22506. source: "./media/characters/ofelia/front.svg",
  22507. extra: 546 / 541,
  22508. bottom: 39 / 583
  22509. }
  22510. },
  22511. back: {
  22512. height: math.unit(6, "feet"),
  22513. weight: math.unit(150, "lb"),
  22514. name: "Back",
  22515. image: {
  22516. source: "./media/characters/ofelia/back.svg",
  22517. extra: 564 / 559.5,
  22518. bottom: 8.69 / 573.02
  22519. }
  22520. },
  22521. maw: {
  22522. height: math.unit(1, "feet"),
  22523. name: "Maw",
  22524. image: {
  22525. source: "./media/characters/ofelia/maw.svg"
  22526. }
  22527. },
  22528. foot: {
  22529. height: math.unit(1.949, "feet"),
  22530. name: "Foot",
  22531. image: {
  22532. source: "./media/characters/ofelia/foot.svg"
  22533. }
  22534. },
  22535. },
  22536. [
  22537. {
  22538. name: "Canon Height",
  22539. height: math.unit(2000, "miles"),
  22540. default: true
  22541. },
  22542. ]
  22543. ))
  22544. characterMakers.push(() => makeCharacter(
  22545. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22546. {
  22547. front: {
  22548. height: math.unit(6, "feet"),
  22549. weight: math.unit(150, "lb"),
  22550. name: "Front",
  22551. image: {
  22552. source: "./media/characters/samuel/front.svg",
  22553. extra: 265 / 258,
  22554. bottom: 2 / 266.1566
  22555. }
  22556. },
  22557. },
  22558. [
  22559. {
  22560. name: "Macro",
  22561. height: math.unit(100, "feet"),
  22562. default: true
  22563. },
  22564. {
  22565. name: "Full Size",
  22566. height: math.unit(1000, "miles")
  22567. },
  22568. ]
  22569. ))
  22570. characterMakers.push(() => makeCharacter(
  22571. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22572. {
  22573. front: {
  22574. height: math.unit(6, "feet"),
  22575. weight: math.unit(300, "lb"),
  22576. name: "Front",
  22577. image: {
  22578. source: "./media/characters/beishir-kiel/front.svg",
  22579. extra: 569 / 547,
  22580. bottom: 41.9 / 609
  22581. }
  22582. },
  22583. maw: {
  22584. height: math.unit(6 * 0.202, "feet"),
  22585. name: "Maw",
  22586. image: {
  22587. source: "./media/characters/beishir-kiel/maw.svg"
  22588. }
  22589. },
  22590. },
  22591. [
  22592. {
  22593. name: "Macro",
  22594. height: math.unit(300, "feet"),
  22595. default: true
  22596. },
  22597. ]
  22598. ))
  22599. characterMakers.push(() => makeCharacter(
  22600. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22601. {
  22602. front: {
  22603. height: math.unit(5 + 7/12, "feet"),
  22604. weight: math.unit(120, "lb"),
  22605. name: "Front",
  22606. image: {
  22607. source: "./media/characters/logan-grey/front.svg",
  22608. extra: 1836/1738,
  22609. bottom: 108/1944
  22610. }
  22611. },
  22612. back: {
  22613. height: math.unit(5 + 7/12, "feet"),
  22614. weight: math.unit(120, "lb"),
  22615. name: "Back",
  22616. image: {
  22617. source: "./media/characters/logan-grey/back.svg",
  22618. extra: 1880/1794,
  22619. bottom: 24/1904
  22620. }
  22621. },
  22622. frontSfw: {
  22623. height: math.unit(5 + 7/12, "feet"),
  22624. weight: math.unit(120, "lb"),
  22625. name: "Front (SFW)",
  22626. image: {
  22627. source: "./media/characters/logan-grey/front-sfw.svg",
  22628. extra: 1836/1738,
  22629. bottom: 108/1944
  22630. }
  22631. },
  22632. backSfw: {
  22633. height: math.unit(5 + 7/12, "feet"),
  22634. weight: math.unit(120, "lb"),
  22635. name: "Back (SFW)",
  22636. image: {
  22637. source: "./media/characters/logan-grey/back-sfw.svg",
  22638. extra: 1880/1794,
  22639. bottom: 24/1904
  22640. }
  22641. },
  22642. hands: {
  22643. height: math.unit(0.84, "feet"),
  22644. name: "Hands",
  22645. image: {
  22646. source: "./media/characters/logan-grey/hands.svg"
  22647. }
  22648. },
  22649. paws: {
  22650. height: math.unit(0.72, "feet"),
  22651. name: "Paws",
  22652. image: {
  22653. source: "./media/characters/logan-grey/paws.svg"
  22654. }
  22655. },
  22656. cock: {
  22657. height: math.unit(1.45, "feet"),
  22658. name: "Cock",
  22659. image: {
  22660. source: "./media/characters/logan-grey/cock.svg"
  22661. }
  22662. },
  22663. cockAlt: {
  22664. height: math.unit(1.437, "feet"),
  22665. name: "Cock (alt)",
  22666. image: {
  22667. source: "./media/characters/logan-grey/cock-alt.svg"
  22668. }
  22669. },
  22670. },
  22671. [
  22672. {
  22673. name: "Normal",
  22674. height: math.unit(5 + 8 / 12, "feet")
  22675. },
  22676. {
  22677. name: "The 500 Foot Femboy",
  22678. height: math.unit(500, "feet"),
  22679. default: true
  22680. },
  22681. {
  22682. name: "Megmacro",
  22683. height: math.unit(20, "miles")
  22684. },
  22685. ]
  22686. ))
  22687. characterMakers.push(() => makeCharacter(
  22688. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22689. {
  22690. front: {
  22691. height: math.unit(8 + 2 / 12, "feet"),
  22692. weight: math.unit(275, "lb"),
  22693. name: "Front",
  22694. image: {
  22695. source: "./media/characters/draganta/front.svg",
  22696. extra: 1177 / 1135,
  22697. bottom: 33.46 / 1212.1
  22698. }
  22699. },
  22700. },
  22701. [
  22702. {
  22703. name: "Normal",
  22704. height: math.unit(8 + 6 / 12, "feet"),
  22705. default: true
  22706. },
  22707. {
  22708. name: "Macro",
  22709. height: math.unit(150, "feet")
  22710. },
  22711. {
  22712. name: "Megamacro",
  22713. height: math.unit(1000, "miles")
  22714. },
  22715. ]
  22716. ))
  22717. characterMakers.push(() => makeCharacter(
  22718. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22719. {
  22720. front: {
  22721. height: math.unit(1.72, "m"),
  22722. weight: math.unit(80, "lb"),
  22723. name: "Front",
  22724. image: {
  22725. source: "./media/characters/voski/front.svg",
  22726. extra: 2076.22 / 2022.4,
  22727. bottom: 102.7 / 2177.3866
  22728. }
  22729. },
  22730. frontNsfw: {
  22731. height: math.unit(1.72, "m"),
  22732. weight: math.unit(80, "lb"),
  22733. name: "Front (NSFW)",
  22734. image: {
  22735. source: "./media/characters/voski/front-nsfw.svg",
  22736. extra: 2076.22 / 2022.4,
  22737. bottom: 102.7 / 2177.3866
  22738. }
  22739. },
  22740. back: {
  22741. height: math.unit(1.72, "m"),
  22742. weight: math.unit(80, "lb"),
  22743. name: "Back",
  22744. image: {
  22745. source: "./media/characters/voski/back.svg",
  22746. extra: 2104 / 2051,
  22747. bottom: 10.45 / 2113.63
  22748. }
  22749. },
  22750. },
  22751. [
  22752. {
  22753. name: "Normal",
  22754. height: math.unit(1.72, "m")
  22755. },
  22756. {
  22757. name: "Macro",
  22758. height: math.unit(55, "m"),
  22759. default: true
  22760. },
  22761. {
  22762. name: "Macro+",
  22763. height: math.unit(300, "m")
  22764. },
  22765. {
  22766. name: "Macro++",
  22767. height: math.unit(700, "m")
  22768. },
  22769. {
  22770. name: "Macro+++",
  22771. height: math.unit(4500, "m")
  22772. },
  22773. {
  22774. name: "Macro++++",
  22775. height: math.unit(45, "km")
  22776. },
  22777. {
  22778. name: "Macro+++++",
  22779. height: math.unit(1220, "km")
  22780. },
  22781. ]
  22782. ))
  22783. characterMakers.push(() => makeCharacter(
  22784. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22785. {
  22786. front: {
  22787. height: math.unit(2.3, "m"),
  22788. weight: math.unit(304, "kg"),
  22789. name: "Front",
  22790. image: {
  22791. source: "./media/characters/icowom-lee/front.svg",
  22792. extra: 985 / 955,
  22793. bottom: 25.4 / 1012
  22794. }
  22795. },
  22796. fronttentacles: {
  22797. height: math.unit(2.3, "m"),
  22798. weight: math.unit(304, "kg"),
  22799. name: "Front-tentacles",
  22800. image: {
  22801. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22802. extra: 985 / 955,
  22803. bottom: 25.4 / 1012
  22804. }
  22805. },
  22806. back: {
  22807. height: math.unit(2.3, "m"),
  22808. weight: math.unit(304, "kg"),
  22809. name: "Back",
  22810. image: {
  22811. source: "./media/characters/icowom-lee/back.svg",
  22812. extra: 975 / 954,
  22813. bottom: 9.5 / 985
  22814. }
  22815. },
  22816. backtentacles: {
  22817. height: math.unit(2.3, "m"),
  22818. weight: math.unit(304, "kg"),
  22819. name: "Back-tentacles",
  22820. image: {
  22821. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22822. extra: 975 / 954,
  22823. bottom: 9.5 / 985
  22824. }
  22825. },
  22826. frontDressed: {
  22827. height: math.unit(2.3, "m"),
  22828. weight: math.unit(304, "kg"),
  22829. name: "Front (Dressed)",
  22830. image: {
  22831. source: "./media/characters/icowom-lee/front-dressed.svg",
  22832. extra: 3076 / 2933,
  22833. bottom: 51.4 / 3125.1889
  22834. }
  22835. },
  22836. rump: {
  22837. height: math.unit(0.776, "meters"),
  22838. name: "Rump",
  22839. image: {
  22840. source: "./media/characters/icowom-lee/rump.svg"
  22841. }
  22842. },
  22843. genitals: {
  22844. height: math.unit(0.78, "meters"),
  22845. name: "Genitals",
  22846. image: {
  22847. source: "./media/characters/icowom-lee/genitals.svg"
  22848. }
  22849. },
  22850. },
  22851. [
  22852. {
  22853. name: "Normal",
  22854. height: math.unit(2.3, "meters"),
  22855. default: true
  22856. },
  22857. {
  22858. name: "Macro",
  22859. height: math.unit(94, "meters"),
  22860. default: true
  22861. },
  22862. ]
  22863. ))
  22864. characterMakers.push(() => makeCharacter(
  22865. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22866. {
  22867. front: {
  22868. height: math.unit(22, "meters"),
  22869. weight: math.unit(21000, "kg"),
  22870. name: "Front",
  22871. image: {
  22872. source: "./media/characters/shock-diamond/front.svg",
  22873. extra: 2204 / 2053,
  22874. bottom: 65 / 2239.47
  22875. }
  22876. },
  22877. frontNude: {
  22878. height: math.unit(22, "meters"),
  22879. weight: math.unit(21000, "kg"),
  22880. name: "Front (Nude)",
  22881. image: {
  22882. source: "./media/characters/shock-diamond/front-nude.svg",
  22883. extra: 2514 / 2285,
  22884. bottom: 13 / 2527.56
  22885. }
  22886. },
  22887. },
  22888. [
  22889. {
  22890. name: "Normal",
  22891. height: math.unit(3, "meters")
  22892. },
  22893. {
  22894. name: "Macro",
  22895. height: math.unit(22, "meters"),
  22896. default: true
  22897. },
  22898. ]
  22899. ))
  22900. characterMakers.push(() => makeCharacter(
  22901. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22902. {
  22903. front: {
  22904. height: math.unit(5 + 4 / 12, "feet"),
  22905. weight: math.unit(120, "lb"),
  22906. name: "Front",
  22907. image: {
  22908. source: "./media/characters/rory/front.svg",
  22909. extra: 1318/1241,
  22910. bottom: 42/1360
  22911. }
  22912. },
  22913. back: {
  22914. height: math.unit(5 + 4 / 12, "feet"),
  22915. weight: math.unit(120, "lb"),
  22916. name: "Back",
  22917. image: {
  22918. source: "./media/characters/rory/back.svg",
  22919. extra: 1318/1241,
  22920. bottom: 42/1360
  22921. }
  22922. },
  22923. butt: {
  22924. height: math.unit(1.74, "feet"),
  22925. name: "Butt",
  22926. image: {
  22927. source: "./media/characters/rory/butt.svg"
  22928. }
  22929. },
  22930. dick: {
  22931. height: math.unit(1.02, "feet"),
  22932. name: "Dick",
  22933. image: {
  22934. source: "./media/characters/rory/dick.svg"
  22935. }
  22936. },
  22937. paws: {
  22938. height: math.unit(1, "feet"),
  22939. name: "Paws",
  22940. image: {
  22941. source: "./media/characters/rory/paws.svg"
  22942. }
  22943. },
  22944. frontAlt: {
  22945. height: math.unit(5 + 4 / 12, "feet"),
  22946. weight: math.unit(120, "lb"),
  22947. name: "Front (Alt)",
  22948. image: {
  22949. source: "./media/characters/rory/front-alt.svg",
  22950. extra: 589 / 556,
  22951. bottom: 45.7 / 635.76
  22952. }
  22953. },
  22954. frontAltNude: {
  22955. height: math.unit(5 + 4 / 12, "feet"),
  22956. weight: math.unit(120, "lb"),
  22957. name: "Front (Alt, Nude)",
  22958. image: {
  22959. source: "./media/characters/rory/front-alt-nude.svg",
  22960. extra: 589 / 556,
  22961. bottom: 45.7 / 635.76
  22962. }
  22963. },
  22964. side: {
  22965. height: math.unit(5 + 4 / 12, "feet"),
  22966. weight: math.unit(120, "lb"),
  22967. name: "Side",
  22968. image: {
  22969. source: "./media/characters/rory/side.svg",
  22970. extra: 597 / 564,
  22971. bottom: 55 / 653
  22972. }
  22973. },
  22974. backAlt: {
  22975. height: math.unit(5 + 4 / 12, "feet"),
  22976. weight: math.unit(120, "lb"),
  22977. name: "Back (Alt)",
  22978. image: {
  22979. source: "./media/characters/rory/back-alt.svg",
  22980. extra: 620 / 585,
  22981. bottom: 8.86 / 630.43
  22982. }
  22983. },
  22984. dickAlt: {
  22985. height: math.unit(0.86, "feet"),
  22986. name: "Dick (Alt)",
  22987. image: {
  22988. source: "./media/characters/rory/dick-alt.svg"
  22989. }
  22990. },
  22991. },
  22992. [
  22993. {
  22994. name: "Normal",
  22995. height: math.unit(5 + 4 / 12, "feet"),
  22996. default: true
  22997. },
  22998. {
  22999. name: "Macro",
  23000. height: math.unit(100, "feet")
  23001. },
  23002. {
  23003. name: "Macro+",
  23004. height: math.unit(140, "feet")
  23005. },
  23006. {
  23007. name: "Macro++",
  23008. height: math.unit(300, "feet")
  23009. },
  23010. ]
  23011. ))
  23012. characterMakers.push(() => makeCharacter(
  23013. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23014. {
  23015. front: {
  23016. height: math.unit(5 + 9 / 12, "feet"),
  23017. weight: math.unit(190, "lb"),
  23018. name: "Front",
  23019. image: {
  23020. source: "./media/characters/sprisk/front.svg",
  23021. extra: 1225 / 1180,
  23022. bottom: 42.7 / 1266.4
  23023. }
  23024. },
  23025. frontNsfw: {
  23026. height: math.unit(5 + 9 / 12, "feet"),
  23027. weight: math.unit(190, "lb"),
  23028. name: "Front (NSFW)",
  23029. image: {
  23030. source: "./media/characters/sprisk/front-nsfw.svg",
  23031. extra: 1225 / 1180,
  23032. bottom: 42.7 / 1266.4
  23033. }
  23034. },
  23035. back: {
  23036. height: math.unit(5 + 9 / 12, "feet"),
  23037. weight: math.unit(190, "lb"),
  23038. name: "Back",
  23039. image: {
  23040. source: "./media/characters/sprisk/back.svg",
  23041. extra: 1247 / 1200,
  23042. bottom: 5.6 / 1253.04
  23043. }
  23044. },
  23045. },
  23046. [
  23047. {
  23048. name: "Tiny",
  23049. height: math.unit(2, "inches")
  23050. },
  23051. {
  23052. name: "Normal",
  23053. height: math.unit(5 + 9 / 12, "feet"),
  23054. default: true
  23055. },
  23056. {
  23057. name: "Mini Macro",
  23058. height: math.unit(18, "feet")
  23059. },
  23060. {
  23061. name: "Macro",
  23062. height: math.unit(100, "feet")
  23063. },
  23064. {
  23065. name: "MACRO",
  23066. height: math.unit(50, "miles")
  23067. },
  23068. {
  23069. name: "M A C R O",
  23070. height: math.unit(300, "miles")
  23071. },
  23072. ]
  23073. ))
  23074. characterMakers.push(() => makeCharacter(
  23075. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23076. {
  23077. side: {
  23078. height: math.unit(15.6, "meters"),
  23079. weight: math.unit(700000, "kg"),
  23080. name: "Side",
  23081. image: {
  23082. source: "./media/characters/bunsen/side.svg",
  23083. extra: 1644 / 358
  23084. }
  23085. },
  23086. foot: {
  23087. height: math.unit(1.611 * 1644 / 358, "meter"),
  23088. name: "Foot",
  23089. image: {
  23090. source: "./media/characters/bunsen/foot.svg"
  23091. }
  23092. },
  23093. },
  23094. [
  23095. {
  23096. name: "Small",
  23097. height: math.unit(10, "feet")
  23098. },
  23099. {
  23100. name: "Normal",
  23101. height: math.unit(15.6, "meters"),
  23102. default: true
  23103. },
  23104. ]
  23105. ))
  23106. characterMakers.push(() => makeCharacter(
  23107. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23108. {
  23109. front: {
  23110. height: math.unit(4 + 11 / 12, "feet"),
  23111. weight: math.unit(140, "lb"),
  23112. name: "Front",
  23113. image: {
  23114. source: "./media/characters/sesh/front.svg",
  23115. extra: 3420 / 3231,
  23116. bottom: 72 / 3949.5
  23117. }
  23118. },
  23119. },
  23120. [
  23121. {
  23122. name: "Normal",
  23123. height: math.unit(4 + 11 / 12, "feet")
  23124. },
  23125. {
  23126. name: "Grown",
  23127. height: math.unit(15, "feet"),
  23128. default: true
  23129. },
  23130. {
  23131. name: "Macro",
  23132. height: math.unit(1500, "feet")
  23133. },
  23134. {
  23135. name: "Megamacro",
  23136. height: math.unit(30, "miles")
  23137. },
  23138. {
  23139. name: "Continental",
  23140. height: math.unit(3000, "miles")
  23141. },
  23142. {
  23143. name: "Gravity Mass",
  23144. height: math.unit(300000, "miles")
  23145. },
  23146. {
  23147. name: "Planet Buster",
  23148. height: math.unit(30000000, "miles")
  23149. },
  23150. {
  23151. name: "Big",
  23152. height: math.unit(3000000000, "miles")
  23153. },
  23154. ]
  23155. ))
  23156. characterMakers.push(() => makeCharacter(
  23157. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23158. {
  23159. front: {
  23160. height: math.unit(9, "feet"),
  23161. weight: math.unit(350, "lb"),
  23162. name: "Front",
  23163. image: {
  23164. source: "./media/characters/pepper/front.svg",
  23165. extra: 1448 / 1312,
  23166. bottom: 9.4 / 1457.88
  23167. }
  23168. },
  23169. back: {
  23170. height: math.unit(9, "feet"),
  23171. weight: math.unit(350, "lb"),
  23172. name: "Back",
  23173. image: {
  23174. source: "./media/characters/pepper/back.svg",
  23175. extra: 1423 / 1300,
  23176. bottom: 4.6 / 1429
  23177. }
  23178. },
  23179. maw: {
  23180. height: math.unit(0.932, "feet"),
  23181. name: "Maw",
  23182. image: {
  23183. source: "./media/characters/pepper/maw.svg"
  23184. }
  23185. },
  23186. },
  23187. [
  23188. {
  23189. name: "Normal",
  23190. height: math.unit(9, "feet"),
  23191. default: true
  23192. },
  23193. ]
  23194. ))
  23195. characterMakers.push(() => makeCharacter(
  23196. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23197. {
  23198. front: {
  23199. height: math.unit(6, "feet"),
  23200. weight: math.unit(150, "lb"),
  23201. name: "Front",
  23202. image: {
  23203. source: "./media/characters/maelstrom/front.svg",
  23204. extra: 2100 / 1883,
  23205. bottom: 94 / 2196.7
  23206. }
  23207. },
  23208. },
  23209. [
  23210. {
  23211. name: "Less Kaiju",
  23212. height: math.unit(200, "feet")
  23213. },
  23214. {
  23215. name: "Kaiju",
  23216. height: math.unit(400, "feet"),
  23217. default: true
  23218. },
  23219. {
  23220. name: "Kaiju-er",
  23221. height: math.unit(600, "feet")
  23222. },
  23223. ]
  23224. ))
  23225. characterMakers.push(() => makeCharacter(
  23226. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23227. {
  23228. front: {
  23229. height: math.unit(6 + 5 / 12, "feet"),
  23230. weight: math.unit(180, "lb"),
  23231. name: "Front",
  23232. image: {
  23233. source: "./media/characters/lexir/front.svg",
  23234. extra: 180 / 172,
  23235. bottom: 12 / 192
  23236. }
  23237. },
  23238. back: {
  23239. height: math.unit(6 + 5 / 12, "feet"),
  23240. weight: math.unit(180, "lb"),
  23241. name: "Back",
  23242. image: {
  23243. source: "./media/characters/lexir/back.svg",
  23244. extra: 183.84 / 175.5,
  23245. bottom: 3.1 / 187
  23246. }
  23247. },
  23248. },
  23249. [
  23250. {
  23251. name: "Very Smal",
  23252. height: math.unit(1, "nm")
  23253. },
  23254. {
  23255. name: "Normal",
  23256. height: math.unit(6 + 5 / 12, "feet"),
  23257. default: true
  23258. },
  23259. {
  23260. name: "Macro",
  23261. height: math.unit(1, "mile")
  23262. },
  23263. {
  23264. name: "Megamacro",
  23265. height: math.unit(50, "miles")
  23266. },
  23267. ]
  23268. ))
  23269. characterMakers.push(() => makeCharacter(
  23270. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23271. {
  23272. front: {
  23273. height: math.unit(1.5, "meters"),
  23274. weight: math.unit(100, "lb"),
  23275. name: "Front",
  23276. image: {
  23277. source: "./media/characters/maksio/front.svg",
  23278. extra: 1549 / 1531,
  23279. bottom: 123.7 / 1674.5429
  23280. }
  23281. },
  23282. back: {
  23283. height: math.unit(1.5, "meters"),
  23284. weight: math.unit(100, "lb"),
  23285. name: "Back",
  23286. image: {
  23287. source: "./media/characters/maksio/back.svg",
  23288. extra: 1541 / 1509,
  23289. bottom: 97 / 1639
  23290. }
  23291. },
  23292. hand: {
  23293. height: math.unit(0.621, "feet"),
  23294. name: "Hand",
  23295. image: {
  23296. source: "./media/characters/maksio/hand.svg"
  23297. }
  23298. },
  23299. foot: {
  23300. height: math.unit(1.611, "feet"),
  23301. name: "Foot",
  23302. image: {
  23303. source: "./media/characters/maksio/foot.svg"
  23304. }
  23305. },
  23306. },
  23307. [
  23308. {
  23309. name: "Shrunken",
  23310. height: math.unit(10, "cm")
  23311. },
  23312. {
  23313. name: "Normal",
  23314. height: math.unit(150, "cm"),
  23315. default: true
  23316. },
  23317. ]
  23318. ))
  23319. characterMakers.push(() => makeCharacter(
  23320. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23321. {
  23322. front: {
  23323. height: math.unit(100, "feet"),
  23324. name: "Front",
  23325. image: {
  23326. source: "./media/characters/erza-bear/front.svg",
  23327. extra: 2449 / 2390,
  23328. bottom: 46 / 2494
  23329. }
  23330. },
  23331. back: {
  23332. height: math.unit(100, "feet"),
  23333. name: "Back",
  23334. image: {
  23335. source: "./media/characters/erza-bear/back.svg",
  23336. extra: 2489 / 2430,
  23337. bottom: 85.4 / 2480
  23338. }
  23339. },
  23340. tail: {
  23341. height: math.unit(42, "feet"),
  23342. name: "Tail",
  23343. image: {
  23344. source: "./media/characters/erza-bear/tail.svg"
  23345. }
  23346. },
  23347. tongue: {
  23348. height: math.unit(8, "feet"),
  23349. name: "Tongue",
  23350. image: {
  23351. source: "./media/characters/erza-bear/tongue.svg"
  23352. }
  23353. },
  23354. dick: {
  23355. height: math.unit(10.5, "feet"),
  23356. name: "Dick",
  23357. image: {
  23358. source: "./media/characters/erza-bear/dick.svg"
  23359. }
  23360. },
  23361. dickVertical: {
  23362. height: math.unit(16.9, "feet"),
  23363. name: "Dick (Vertical)",
  23364. image: {
  23365. source: "./media/characters/erza-bear/dick-vertical.svg"
  23366. }
  23367. },
  23368. },
  23369. [
  23370. {
  23371. name: "Macro",
  23372. height: math.unit(100, "feet"),
  23373. default: true
  23374. },
  23375. ]
  23376. ))
  23377. characterMakers.push(() => makeCharacter(
  23378. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23379. {
  23380. front: {
  23381. height: math.unit(172, "cm"),
  23382. weight: math.unit(73, "kg"),
  23383. name: "Front",
  23384. image: {
  23385. source: "./media/characters/violet-flor/front.svg",
  23386. extra: 1530 / 1442,
  23387. bottom: 61.9 / 1588.8
  23388. }
  23389. },
  23390. back: {
  23391. height: math.unit(180, "cm"),
  23392. weight: math.unit(73, "kg"),
  23393. name: "Back",
  23394. image: {
  23395. source: "./media/characters/violet-flor/back.svg",
  23396. extra: 1692 / 1630,
  23397. bottom: 20 / 1712
  23398. }
  23399. },
  23400. },
  23401. [
  23402. {
  23403. name: "Normal",
  23404. height: math.unit(172, "cm"),
  23405. default: true
  23406. },
  23407. ]
  23408. ))
  23409. characterMakers.push(() => makeCharacter(
  23410. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23411. {
  23412. front: {
  23413. height: math.unit(6, "feet"),
  23414. weight: math.unit(220, "lb"),
  23415. name: "Front",
  23416. image: {
  23417. source: "./media/characters/lynn-rhea/front.svg",
  23418. extra: 310 / 273
  23419. }
  23420. },
  23421. back: {
  23422. height: math.unit(6, "feet"),
  23423. weight: math.unit(220, "lb"),
  23424. name: "Back",
  23425. image: {
  23426. source: "./media/characters/lynn-rhea/back.svg",
  23427. extra: 310 / 273
  23428. }
  23429. },
  23430. dicks: {
  23431. height: math.unit(0.9, "feet"),
  23432. name: "Dicks",
  23433. image: {
  23434. source: "./media/characters/lynn-rhea/dicks.svg"
  23435. }
  23436. },
  23437. slit: {
  23438. height: math.unit(0.4, "feet"),
  23439. name: "Slit",
  23440. image: {
  23441. source: "./media/characters/lynn-rhea/slit.svg"
  23442. }
  23443. },
  23444. },
  23445. [
  23446. {
  23447. name: "Micro",
  23448. height: math.unit(1, "inch")
  23449. },
  23450. {
  23451. name: "Macro",
  23452. height: math.unit(60, "feet"),
  23453. default: true
  23454. },
  23455. {
  23456. name: "Megamacro",
  23457. height: math.unit(2, "miles")
  23458. },
  23459. {
  23460. name: "Gigamacro",
  23461. height: math.unit(3, "earths")
  23462. },
  23463. {
  23464. name: "Galactic",
  23465. height: math.unit(0.8, "galaxies")
  23466. },
  23467. ]
  23468. ))
  23469. characterMakers.push(() => makeCharacter(
  23470. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23471. {
  23472. front: {
  23473. height: math.unit(1600, "feet"),
  23474. weight: math.unit(85758785169, "kg"),
  23475. name: "Front",
  23476. image: {
  23477. source: "./media/characters/valathos/front.svg",
  23478. extra: 1451 / 1339
  23479. }
  23480. },
  23481. },
  23482. [
  23483. {
  23484. name: "Macro",
  23485. height: math.unit(1600, "feet"),
  23486. default: true
  23487. },
  23488. ]
  23489. ))
  23490. characterMakers.push(() => makeCharacter(
  23491. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23492. {
  23493. front: {
  23494. height: math.unit(7 + 5 / 12, "feet"),
  23495. weight: math.unit(300, "lb"),
  23496. name: "Front",
  23497. image: {
  23498. source: "./media/characters/azula/front.svg",
  23499. extra: 3208 / 2880,
  23500. bottom: 80.2 / 3277
  23501. }
  23502. },
  23503. back: {
  23504. height: math.unit(7 + 5 / 12, "feet"),
  23505. weight: math.unit(300, "lb"),
  23506. name: "Back",
  23507. image: {
  23508. source: "./media/characters/azula/back.svg",
  23509. extra: 3169 / 2822,
  23510. bottom: 150.6 / 3321
  23511. }
  23512. },
  23513. },
  23514. [
  23515. {
  23516. name: "Normal",
  23517. height: math.unit(7 + 5 / 12, "feet"),
  23518. default: true
  23519. },
  23520. {
  23521. name: "Big",
  23522. height: math.unit(20, "feet")
  23523. },
  23524. ]
  23525. ))
  23526. characterMakers.push(() => makeCharacter(
  23527. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23528. {
  23529. front: {
  23530. height: math.unit(5 + 1 / 12, "feet"),
  23531. weight: math.unit(110, "lb"),
  23532. name: "Front",
  23533. image: {
  23534. source: "./media/characters/rupert/front.svg",
  23535. extra: 1549 / 1495,
  23536. bottom: 54.2 / 1604.4
  23537. }
  23538. },
  23539. },
  23540. [
  23541. {
  23542. name: "Normal",
  23543. height: math.unit(5 + 1 / 12, "feet"),
  23544. default: true
  23545. },
  23546. ]
  23547. ))
  23548. characterMakers.push(() => makeCharacter(
  23549. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23550. {
  23551. front: {
  23552. height: math.unit(8 + 4 / 12, "feet"),
  23553. weight: math.unit(350, "lb"),
  23554. name: "Front",
  23555. image: {
  23556. source: "./media/characters/sheera-castellar/front.svg",
  23557. extra: 1957 / 1894,
  23558. bottom: 26.97 / 1975.017
  23559. }
  23560. },
  23561. side: {
  23562. height: math.unit(8 + 4 / 12, "feet"),
  23563. weight: math.unit(350, "lb"),
  23564. name: "Side",
  23565. image: {
  23566. source: "./media/characters/sheera-castellar/side.svg",
  23567. extra: 1957 / 1894
  23568. }
  23569. },
  23570. back: {
  23571. height: math.unit(8 + 4 / 12, "feet"),
  23572. weight: math.unit(350, "lb"),
  23573. name: "Back",
  23574. image: {
  23575. source: "./media/characters/sheera-castellar/back.svg",
  23576. extra: 1957 / 1894
  23577. }
  23578. },
  23579. angled: {
  23580. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23581. weight: math.unit(350, "lb"),
  23582. name: "Angled",
  23583. image: {
  23584. source: "./media/characters/sheera-castellar/angled.svg",
  23585. extra: 1807 / 1707,
  23586. bottom: 68 / 1875
  23587. }
  23588. },
  23589. genitals: {
  23590. height: math.unit(2.2, "feet"),
  23591. name: "Genitals",
  23592. image: {
  23593. source: "./media/characters/sheera-castellar/genitals.svg"
  23594. }
  23595. },
  23596. taur: {
  23597. height: math.unit(10 + 6/12, "feet"),
  23598. name: "Taur",
  23599. image: {
  23600. source: "./media/characters/sheera-castellar/taur.svg",
  23601. extra: 2017/1909,
  23602. bottom: 185/2202
  23603. }
  23604. },
  23605. },
  23606. [
  23607. {
  23608. name: "Normal",
  23609. height: math.unit(8 + 4 / 12, "feet")
  23610. },
  23611. {
  23612. name: "Macro",
  23613. height: math.unit(150, "feet"),
  23614. default: true
  23615. },
  23616. {
  23617. name: "Macro+",
  23618. height: math.unit(800, "feet")
  23619. },
  23620. ]
  23621. ))
  23622. characterMakers.push(() => makeCharacter(
  23623. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23624. {
  23625. front: {
  23626. height: math.unit(6, "feet"),
  23627. weight: math.unit(150, "lb"),
  23628. name: "Front",
  23629. image: {
  23630. source: "./media/characters/jaipur/front.svg",
  23631. extra: 3860 / 3731,
  23632. bottom: 287 / 4140
  23633. }
  23634. },
  23635. back: {
  23636. height: math.unit(6, "feet"),
  23637. weight: math.unit(150, "lb"),
  23638. name: "Back",
  23639. image: {
  23640. source: "./media/characters/jaipur/back.svg",
  23641. extra: 4060 / 3930,
  23642. bottom: 151 / 4200
  23643. }
  23644. },
  23645. },
  23646. [
  23647. {
  23648. name: "Normal",
  23649. height: math.unit(1.85, "meters"),
  23650. default: true
  23651. },
  23652. {
  23653. name: "Macro",
  23654. height: math.unit(150, "meters")
  23655. },
  23656. {
  23657. name: "Macro+",
  23658. height: math.unit(0.5, "miles")
  23659. },
  23660. {
  23661. name: "Macro++",
  23662. height: math.unit(2.5, "miles")
  23663. },
  23664. {
  23665. name: "Macro+++",
  23666. height: math.unit(12, "miles")
  23667. },
  23668. {
  23669. name: "Macro++++",
  23670. height: math.unit(120, "miles")
  23671. },
  23672. {
  23673. name: "Macro+++++",
  23674. height: math.unit(1200, "miles")
  23675. },
  23676. ]
  23677. ))
  23678. characterMakers.push(() => makeCharacter(
  23679. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23680. {
  23681. front: {
  23682. height: math.unit(6, "feet"),
  23683. weight: math.unit(150, "lb"),
  23684. name: "Front",
  23685. image: {
  23686. source: "./media/characters/sheila-wolf/front.svg",
  23687. extra: 1931 / 1808,
  23688. bottom: 29.5 / 1960
  23689. }
  23690. },
  23691. dick: {
  23692. height: math.unit(1.464, "feet"),
  23693. name: "Dick",
  23694. image: {
  23695. source: "./media/characters/sheila-wolf/dick.svg"
  23696. }
  23697. },
  23698. muzzle: {
  23699. height: math.unit(0.513, "feet"),
  23700. name: "Muzzle",
  23701. image: {
  23702. source: "./media/characters/sheila-wolf/muzzle.svg"
  23703. }
  23704. },
  23705. },
  23706. [
  23707. {
  23708. name: "Macro",
  23709. height: math.unit(70, "feet"),
  23710. default: true
  23711. },
  23712. ]
  23713. ))
  23714. characterMakers.push(() => makeCharacter(
  23715. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23716. {
  23717. front: {
  23718. height: math.unit(32, "meters"),
  23719. weight: math.unit(300000, "kg"),
  23720. name: "Front",
  23721. image: {
  23722. source: "./media/characters/almor/front.svg",
  23723. extra: 1408 / 1322,
  23724. bottom: 94.6 / 1506.5
  23725. }
  23726. },
  23727. },
  23728. [
  23729. {
  23730. name: "Macro",
  23731. height: math.unit(32, "meters"),
  23732. default: true
  23733. },
  23734. ]
  23735. ))
  23736. characterMakers.push(() => makeCharacter(
  23737. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23738. {
  23739. front: {
  23740. height: math.unit(7, "feet"),
  23741. weight: math.unit(200, "lb"),
  23742. name: "Front",
  23743. image: {
  23744. source: "./media/characters/silver/front.svg",
  23745. extra: 472.1 / 450.5,
  23746. bottom: 26.5 / 499.424
  23747. }
  23748. },
  23749. },
  23750. [
  23751. {
  23752. name: "Normal",
  23753. height: math.unit(7, "feet"),
  23754. default: true
  23755. },
  23756. {
  23757. name: "Macro",
  23758. height: math.unit(800, "feet")
  23759. },
  23760. {
  23761. name: "Megamacro",
  23762. height: math.unit(250, "miles")
  23763. },
  23764. ]
  23765. ))
  23766. characterMakers.push(() => makeCharacter(
  23767. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23768. {
  23769. front: {
  23770. height: math.unit(6, "feet"),
  23771. weight: math.unit(150, "lb"),
  23772. name: "Front",
  23773. image: {
  23774. source: "./media/characters/pliskin/front.svg",
  23775. extra: 1469 / 1359,
  23776. bottom: 70 / 1540
  23777. }
  23778. },
  23779. },
  23780. [
  23781. {
  23782. name: "Micro",
  23783. height: math.unit(3, "inches")
  23784. },
  23785. {
  23786. name: "Normal",
  23787. height: math.unit(5 + 11 / 12, "feet"),
  23788. default: true
  23789. },
  23790. {
  23791. name: "Macro",
  23792. height: math.unit(120, "feet")
  23793. },
  23794. ]
  23795. ))
  23796. characterMakers.push(() => makeCharacter(
  23797. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23798. {
  23799. front: {
  23800. height: math.unit(6, "feet"),
  23801. weight: math.unit(150, "lb"),
  23802. name: "Front",
  23803. image: {
  23804. source: "./media/characters/sammy/front.svg",
  23805. extra: 1193 / 1089,
  23806. bottom: 30.5 / 1226
  23807. }
  23808. },
  23809. },
  23810. [
  23811. {
  23812. name: "Macro",
  23813. height: math.unit(1700, "feet"),
  23814. default: true
  23815. },
  23816. {
  23817. name: "Examacro",
  23818. height: math.unit(2.5e9, "lightyears")
  23819. },
  23820. ]
  23821. ))
  23822. characterMakers.push(() => makeCharacter(
  23823. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23824. {
  23825. front: {
  23826. height: math.unit(21, "meters"),
  23827. weight: math.unit(12, "tonnes"),
  23828. name: "Front",
  23829. image: {
  23830. source: "./media/characters/kuru/front.svg",
  23831. extra: 4301 / 3785,
  23832. bottom: 371.3 / 4691
  23833. }
  23834. },
  23835. },
  23836. [
  23837. {
  23838. name: "Macro",
  23839. height: math.unit(21, "meters"),
  23840. default: true
  23841. },
  23842. ]
  23843. ))
  23844. characterMakers.push(() => makeCharacter(
  23845. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23846. {
  23847. front: {
  23848. height: math.unit(23, "meters"),
  23849. weight: math.unit(12.2, "tonnes"),
  23850. name: "Front",
  23851. image: {
  23852. source: "./media/characters/rakka/front.svg",
  23853. extra: 4670 / 4169,
  23854. bottom: 301 / 4968.7
  23855. }
  23856. },
  23857. },
  23858. [
  23859. {
  23860. name: "Macro",
  23861. height: math.unit(23, "meters"),
  23862. default: true
  23863. },
  23864. ]
  23865. ))
  23866. characterMakers.push(() => makeCharacter(
  23867. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23868. {
  23869. front: {
  23870. height: math.unit(6, "feet"),
  23871. weight: math.unit(150, "lb"),
  23872. name: "Front",
  23873. image: {
  23874. source: "./media/characters/rhys-feline/front.svg",
  23875. extra: 2488 / 2308,
  23876. bottom: 35.67 / 2519.19
  23877. }
  23878. },
  23879. },
  23880. [
  23881. {
  23882. name: "Really Small",
  23883. height: math.unit(1, "nm")
  23884. },
  23885. {
  23886. name: "Micro",
  23887. height: math.unit(4, "inches")
  23888. },
  23889. {
  23890. name: "Normal",
  23891. height: math.unit(4 + 10 / 12, "feet"),
  23892. default: true
  23893. },
  23894. {
  23895. name: "Macro",
  23896. height: math.unit(100, "feet")
  23897. },
  23898. {
  23899. name: "Megamacto",
  23900. height: math.unit(50, "miles")
  23901. },
  23902. ]
  23903. ))
  23904. characterMakers.push(() => makeCharacter(
  23905. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23906. {
  23907. side: {
  23908. height: math.unit(30, "feet"),
  23909. weight: math.unit(35000, "kg"),
  23910. name: "Side",
  23911. image: {
  23912. source: "./media/characters/alydar/side.svg",
  23913. extra: 234 / 222,
  23914. bottom: 6.5 / 241
  23915. }
  23916. },
  23917. front: {
  23918. height: math.unit(30, "feet"),
  23919. weight: math.unit(35000, "kg"),
  23920. name: "Front",
  23921. image: {
  23922. source: "./media/characters/alydar/front.svg",
  23923. extra: 223.37 / 210.2,
  23924. bottom: 22.3 / 246.76
  23925. }
  23926. },
  23927. top: {
  23928. height: math.unit(64.54, "feet"),
  23929. weight: math.unit(35000, "kg"),
  23930. name: "Top",
  23931. image: {
  23932. source: "./media/characters/alydar/top.svg"
  23933. }
  23934. },
  23935. anthro: {
  23936. height: math.unit(30, "feet"),
  23937. weight: math.unit(9000, "kg"),
  23938. name: "Anthro",
  23939. image: {
  23940. source: "./media/characters/alydar/anthro.svg",
  23941. extra: 432 / 421,
  23942. bottom: 7.18 / 440
  23943. }
  23944. },
  23945. maw: {
  23946. height: math.unit(11.693, "feet"),
  23947. name: "Maw",
  23948. image: {
  23949. source: "./media/characters/alydar/maw.svg"
  23950. }
  23951. },
  23952. head: {
  23953. height: math.unit(11.693, "feet"),
  23954. name: "Head",
  23955. image: {
  23956. source: "./media/characters/alydar/head.svg"
  23957. }
  23958. },
  23959. headAlt: {
  23960. height: math.unit(12.861, "feet"),
  23961. name: "Head (Alt)",
  23962. image: {
  23963. source: "./media/characters/alydar/head-alt.svg"
  23964. }
  23965. },
  23966. wing: {
  23967. height: math.unit(20.712, "feet"),
  23968. name: "Wing",
  23969. image: {
  23970. source: "./media/characters/alydar/wing.svg"
  23971. }
  23972. },
  23973. wingFeather: {
  23974. height: math.unit(9.662, "feet"),
  23975. name: "Wing Feather",
  23976. image: {
  23977. source: "./media/characters/alydar/wing-feather.svg"
  23978. }
  23979. },
  23980. countourFeather: {
  23981. height: math.unit(4.154, "feet"),
  23982. name: "Contour Feather",
  23983. image: {
  23984. source: "./media/characters/alydar/contour-feather.svg"
  23985. }
  23986. },
  23987. },
  23988. [
  23989. {
  23990. name: "Diplomatic",
  23991. height: math.unit(13, "feet"),
  23992. default: true
  23993. },
  23994. {
  23995. name: "Small",
  23996. height: math.unit(30, "feet")
  23997. },
  23998. {
  23999. name: "Normal",
  24000. height: math.unit(95, "feet"),
  24001. default: true
  24002. },
  24003. {
  24004. name: "Large",
  24005. height: math.unit(285, "feet")
  24006. },
  24007. {
  24008. name: "Incomprehensible",
  24009. height: math.unit(450, "megameters")
  24010. },
  24011. ]
  24012. ))
  24013. characterMakers.push(() => makeCharacter(
  24014. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24015. {
  24016. side: {
  24017. height: math.unit(11, "feet"),
  24018. weight: math.unit(1750, "kg"),
  24019. name: "Side",
  24020. image: {
  24021. source: "./media/characters/selicia/side.svg",
  24022. extra: 440 / 396,
  24023. bottom: 24.8 / 465.979
  24024. }
  24025. },
  24026. maw: {
  24027. height: math.unit(4.665, "feet"),
  24028. name: "Maw",
  24029. image: {
  24030. source: "./media/characters/selicia/maw.svg"
  24031. }
  24032. },
  24033. },
  24034. [
  24035. {
  24036. name: "Normal",
  24037. height: math.unit(11, "feet"),
  24038. default: true
  24039. },
  24040. ]
  24041. ))
  24042. characterMakers.push(() => makeCharacter(
  24043. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24044. {
  24045. side: {
  24046. height: math.unit(2 + 6 / 12, "feet"),
  24047. weight: math.unit(30, "lb"),
  24048. name: "Side",
  24049. image: {
  24050. source: "./media/characters/layla/side.svg",
  24051. extra: 244 / 188,
  24052. bottom: 18.2 / 262.1
  24053. }
  24054. },
  24055. back: {
  24056. height: math.unit(2 + 6 / 12, "feet"),
  24057. weight: math.unit(30, "lb"),
  24058. name: "Back",
  24059. image: {
  24060. source: "./media/characters/layla/back.svg",
  24061. extra: 308 / 241.5,
  24062. bottom: 8.9 / 316.8
  24063. }
  24064. },
  24065. cumming: {
  24066. height: math.unit(2 + 6 / 12, "feet"),
  24067. weight: math.unit(30, "lb"),
  24068. name: "Cumming",
  24069. image: {
  24070. source: "./media/characters/layla/cumming.svg",
  24071. extra: 342 / 279,
  24072. bottom: 595 / 938
  24073. }
  24074. },
  24075. dickFlaccid: {
  24076. height: math.unit(2.595, "feet"),
  24077. name: "Flaccid Genitals",
  24078. image: {
  24079. source: "./media/characters/layla/dick-flaccid.svg"
  24080. }
  24081. },
  24082. dickErect: {
  24083. height: math.unit(2.359, "feet"),
  24084. name: "Erect Genitals",
  24085. image: {
  24086. source: "./media/characters/layla/dick-erect.svg"
  24087. }
  24088. },
  24089. dragon: {
  24090. height: math.unit(40, "feet"),
  24091. name: "Dragon",
  24092. image: {
  24093. source: "./media/characters/layla/dragon.svg",
  24094. extra: 610/535,
  24095. bottom: 367/977
  24096. }
  24097. },
  24098. taur: {
  24099. height: math.unit(30, "feet"),
  24100. name: "Taur",
  24101. image: {
  24102. source: "./media/characters/layla/taur.svg",
  24103. extra: 1268/1199,
  24104. bottom: 112/1380
  24105. }
  24106. },
  24107. },
  24108. [
  24109. {
  24110. name: "Micro",
  24111. height: math.unit(1, "inch")
  24112. },
  24113. {
  24114. name: "Small",
  24115. height: math.unit(1, "foot")
  24116. },
  24117. {
  24118. name: "Normal",
  24119. height: math.unit(2 + 6 / 12, "feet"),
  24120. default: true
  24121. },
  24122. {
  24123. name: "Macro",
  24124. height: math.unit(200, "feet")
  24125. },
  24126. {
  24127. name: "Megamacro",
  24128. height: math.unit(1000, "miles")
  24129. },
  24130. {
  24131. name: "Planetary",
  24132. height: math.unit(8000, "miles")
  24133. },
  24134. {
  24135. name: "True Layla",
  24136. height: math.unit(200000 * 7, "multiverses")
  24137. },
  24138. ]
  24139. ))
  24140. characterMakers.push(() => makeCharacter(
  24141. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24142. {
  24143. back: {
  24144. height: math.unit(10.5, "feet"),
  24145. weight: math.unit(800, "lb"),
  24146. name: "Back",
  24147. image: {
  24148. source: "./media/characters/knox/back.svg",
  24149. extra: 1486 / 1089,
  24150. bottom: 107 / 1601.4
  24151. }
  24152. },
  24153. side: {
  24154. height: math.unit(10.5, "feet"),
  24155. weight: math.unit(800, "lb"),
  24156. name: "Side",
  24157. image: {
  24158. source: "./media/characters/knox/side.svg",
  24159. extra: 244 / 218,
  24160. bottom: 14 / 260
  24161. }
  24162. },
  24163. },
  24164. [
  24165. {
  24166. name: "Compact",
  24167. height: math.unit(10.5, "feet"),
  24168. default: true
  24169. },
  24170. {
  24171. name: "Dynamax",
  24172. height: math.unit(210, "feet")
  24173. },
  24174. {
  24175. name: "Full Macro",
  24176. height: math.unit(850, "feet")
  24177. },
  24178. ]
  24179. ))
  24180. characterMakers.push(() => makeCharacter(
  24181. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24182. {
  24183. front: {
  24184. height: math.unit(28, "feet"),
  24185. weight: math.unit(10500, "lb"),
  24186. name: "Front",
  24187. image: {
  24188. source: "./media/characters/kayda/front.svg",
  24189. extra: 1536 / 1428,
  24190. bottom: 68.7 / 1603
  24191. }
  24192. },
  24193. back: {
  24194. height: math.unit(28, "feet"),
  24195. weight: math.unit(10500, "lb"),
  24196. name: "Back",
  24197. image: {
  24198. source: "./media/characters/kayda/back.svg",
  24199. extra: 1557 / 1464,
  24200. bottom: 39.5 / 1597.49
  24201. }
  24202. },
  24203. dick: {
  24204. height: math.unit(3.858, "feet"),
  24205. name: "Dick",
  24206. image: {
  24207. source: "./media/characters/kayda/dick.svg"
  24208. }
  24209. },
  24210. },
  24211. [
  24212. {
  24213. name: "Macro",
  24214. height: math.unit(28, "feet"),
  24215. default: true
  24216. },
  24217. ]
  24218. ))
  24219. characterMakers.push(() => makeCharacter(
  24220. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24221. {
  24222. front: {
  24223. height: math.unit(10 + 11 / 12, "feet"),
  24224. weight: math.unit(1400, "lb"),
  24225. name: "Front",
  24226. image: {
  24227. source: "./media/characters/brian/front.svg",
  24228. extra: 737 / 692,
  24229. bottom: 55.4 / 785
  24230. }
  24231. },
  24232. },
  24233. [
  24234. {
  24235. name: "Normal",
  24236. height: math.unit(10 + 11 / 12, "feet"),
  24237. default: true
  24238. },
  24239. ]
  24240. ))
  24241. characterMakers.push(() => makeCharacter(
  24242. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24243. {
  24244. front: {
  24245. height: math.unit(5 + 8 / 12, "feet"),
  24246. weight: math.unit(140, "lb"),
  24247. name: "Front",
  24248. image: {
  24249. source: "./media/characters/khemri/front.svg",
  24250. extra: 4780 / 4059,
  24251. bottom: 80.1 / 4859.25
  24252. }
  24253. },
  24254. },
  24255. [
  24256. {
  24257. name: "Micro",
  24258. height: math.unit(6, "inches")
  24259. },
  24260. {
  24261. name: "Normal",
  24262. height: math.unit(5 + 8 / 12, "feet"),
  24263. default: true
  24264. },
  24265. ]
  24266. ))
  24267. characterMakers.push(() => makeCharacter(
  24268. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24269. {
  24270. front: {
  24271. height: math.unit(13, "feet"),
  24272. weight: math.unit(1700, "lb"),
  24273. name: "Front",
  24274. image: {
  24275. source: "./media/characters/felix-braveheart/front.svg",
  24276. extra: 1222 / 1157,
  24277. bottom: 53.2 / 1280
  24278. }
  24279. },
  24280. back: {
  24281. height: math.unit(13, "feet"),
  24282. weight: math.unit(1700, "lb"),
  24283. name: "Back",
  24284. image: {
  24285. source: "./media/characters/felix-braveheart/back.svg",
  24286. extra: 1277 / 1203,
  24287. bottom: 50.2 / 1327
  24288. }
  24289. },
  24290. feral: {
  24291. height: math.unit(6, "feet"),
  24292. weight: math.unit(400, "lb"),
  24293. name: "Feral",
  24294. image: {
  24295. source: "./media/characters/felix-braveheart/feral.svg",
  24296. extra: 682 / 625,
  24297. bottom: 6.9 / 688
  24298. }
  24299. },
  24300. },
  24301. [
  24302. {
  24303. name: "Normal",
  24304. height: math.unit(13, "feet"),
  24305. default: true
  24306. },
  24307. ]
  24308. ))
  24309. characterMakers.push(() => makeCharacter(
  24310. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24311. {
  24312. side: {
  24313. height: math.unit(5 + 11 / 12, "feet"),
  24314. weight: math.unit(1400, "lb"),
  24315. name: "Side",
  24316. image: {
  24317. source: "./media/characters/shadow-blade/side.svg",
  24318. extra: 1726 / 1267,
  24319. bottom: 58.4 / 1785
  24320. }
  24321. },
  24322. },
  24323. [
  24324. {
  24325. name: "Normal",
  24326. height: math.unit(5 + 11 / 12, "feet"),
  24327. default: true
  24328. },
  24329. ]
  24330. ))
  24331. characterMakers.push(() => makeCharacter(
  24332. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24333. {
  24334. front: {
  24335. height: math.unit(1 + 6 / 12, "feet"),
  24336. weight: math.unit(25, "lb"),
  24337. name: "Front",
  24338. image: {
  24339. source: "./media/characters/karla-halldor/front.svg",
  24340. extra: 1459 / 1383,
  24341. bottom: 12 / 1472
  24342. }
  24343. },
  24344. },
  24345. [
  24346. {
  24347. name: "Normal",
  24348. height: math.unit(1 + 6 / 12, "feet"),
  24349. default: true
  24350. },
  24351. ]
  24352. ))
  24353. characterMakers.push(() => makeCharacter(
  24354. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24355. {
  24356. front: {
  24357. height: math.unit(6 + 2 / 12, "feet"),
  24358. weight: math.unit(160, "lb"),
  24359. name: "Front",
  24360. image: {
  24361. source: "./media/characters/ariam/front.svg",
  24362. extra: 1073/976,
  24363. bottom: 52/1125
  24364. }
  24365. },
  24366. back: {
  24367. height: math.unit(6 + 2/12, "feet"),
  24368. weight: math.unit(160, "lb"),
  24369. name: "Back",
  24370. image: {
  24371. source: "./media/characters/ariam/back.svg",
  24372. extra: 1103/1023,
  24373. bottom: 9/1112
  24374. }
  24375. },
  24376. dressed: {
  24377. height: math.unit(6 + 2/12, "feet"),
  24378. weight: math.unit(160, "lb"),
  24379. name: "Dressed",
  24380. image: {
  24381. source: "./media/characters/ariam/dressed.svg",
  24382. extra: 1099/1009,
  24383. bottom: 25/1124
  24384. }
  24385. },
  24386. squatting: {
  24387. height: math.unit(4.1, "feet"),
  24388. weight: math.unit(160, "lb"),
  24389. name: "Squatting",
  24390. image: {
  24391. source: "./media/characters/ariam/squatting.svg",
  24392. extra: 2617 / 2112,
  24393. bottom: 61.2 / 2681,
  24394. }
  24395. },
  24396. },
  24397. [
  24398. {
  24399. name: "Normal",
  24400. height: math.unit(6 + 2 / 12, "feet"),
  24401. default: true
  24402. },
  24403. {
  24404. name: "Normal+",
  24405. height: math.unit(4, "meters")
  24406. },
  24407. {
  24408. name: "Macro",
  24409. height: math.unit(50, "meters")
  24410. },
  24411. {
  24412. name: "Macro+",
  24413. height: math.unit(100, "meters")
  24414. },
  24415. {
  24416. name: "Megamacro",
  24417. height: math.unit(20, "km")
  24418. },
  24419. {
  24420. name: "Caretaker",
  24421. height: math.unit(444, "megameters")
  24422. },
  24423. ]
  24424. ))
  24425. characterMakers.push(() => makeCharacter(
  24426. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24427. {
  24428. front: {
  24429. height: math.unit(1.67, "meters"),
  24430. weight: math.unit(140, "lb"),
  24431. name: "Front",
  24432. image: {
  24433. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24434. extra: 438 / 410,
  24435. bottom: 0.75 / 439
  24436. }
  24437. },
  24438. },
  24439. [
  24440. {
  24441. name: "Shrunken",
  24442. height: math.unit(7.6, "cm")
  24443. },
  24444. {
  24445. name: "Human Scale",
  24446. height: math.unit(1.67, "meters")
  24447. },
  24448. {
  24449. name: "Wolxi Scale",
  24450. height: math.unit(36.7, "meters"),
  24451. default: true
  24452. },
  24453. ]
  24454. ))
  24455. characterMakers.push(() => makeCharacter(
  24456. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24457. {
  24458. front: {
  24459. height: math.unit(1.73, "meters"),
  24460. weight: math.unit(240, "lb"),
  24461. name: "Front",
  24462. image: {
  24463. source: "./media/characters/izue-two-mothers/front.svg",
  24464. extra: 469 / 437,
  24465. bottom: 1.24 / 470.6
  24466. }
  24467. },
  24468. },
  24469. [
  24470. {
  24471. name: "Shrunken",
  24472. height: math.unit(7.86, "cm")
  24473. },
  24474. {
  24475. name: "Human Scale",
  24476. height: math.unit(1.73, "meters")
  24477. },
  24478. {
  24479. name: "Wolxi Scale",
  24480. height: math.unit(38, "meters"),
  24481. default: true
  24482. },
  24483. ]
  24484. ))
  24485. characterMakers.push(() => makeCharacter(
  24486. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24487. {
  24488. front: {
  24489. height: math.unit(1.55, "meters"),
  24490. weight: math.unit(120, "lb"),
  24491. name: "Front",
  24492. image: {
  24493. source: "./media/characters/teeku-love-shack/front.svg",
  24494. extra: 387 / 362,
  24495. bottom: 1.51 / 388
  24496. }
  24497. },
  24498. },
  24499. [
  24500. {
  24501. name: "Shrunken",
  24502. height: math.unit(7, "cm")
  24503. },
  24504. {
  24505. name: "Human Scale",
  24506. height: math.unit(1.55, "meters")
  24507. },
  24508. {
  24509. name: "Wolxi Scale",
  24510. height: math.unit(34.1, "meters"),
  24511. default: true
  24512. },
  24513. ]
  24514. ))
  24515. characterMakers.push(() => makeCharacter(
  24516. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24517. {
  24518. front: {
  24519. height: math.unit(1.83, "meters"),
  24520. weight: math.unit(135, "lb"),
  24521. name: "Front",
  24522. image: {
  24523. source: "./media/characters/dejma-the-red/front.svg",
  24524. extra: 480 / 458,
  24525. bottom: 1.8 / 482
  24526. }
  24527. },
  24528. },
  24529. [
  24530. {
  24531. name: "Shrunken",
  24532. height: math.unit(8.3, "cm")
  24533. },
  24534. {
  24535. name: "Human Scale",
  24536. height: math.unit(1.83, "meters")
  24537. },
  24538. {
  24539. name: "Wolxi Scale",
  24540. height: math.unit(40, "meters"),
  24541. default: true
  24542. },
  24543. ]
  24544. ))
  24545. characterMakers.push(() => makeCharacter(
  24546. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24547. {
  24548. front: {
  24549. height: math.unit(1.78, "meters"),
  24550. weight: math.unit(65, "kg"),
  24551. name: "Front",
  24552. image: {
  24553. source: "./media/characters/aki/front.svg",
  24554. extra: 452 / 415
  24555. }
  24556. },
  24557. frontNsfw: {
  24558. height: math.unit(1.78, "meters"),
  24559. weight: math.unit(65, "kg"),
  24560. name: "Front (NSFW)",
  24561. image: {
  24562. source: "./media/characters/aki/front-nsfw.svg",
  24563. extra: 452 / 415
  24564. }
  24565. },
  24566. back: {
  24567. height: math.unit(1.78, "meters"),
  24568. weight: math.unit(65, "kg"),
  24569. name: "Back",
  24570. image: {
  24571. source: "./media/characters/aki/back.svg",
  24572. extra: 452 / 415
  24573. }
  24574. },
  24575. rump: {
  24576. height: math.unit(2.05, "feet"),
  24577. name: "Rump",
  24578. image: {
  24579. source: "./media/characters/aki/rump.svg"
  24580. }
  24581. },
  24582. dick: {
  24583. height: math.unit(0.95, "feet"),
  24584. name: "Dick",
  24585. image: {
  24586. source: "./media/characters/aki/dick.svg"
  24587. }
  24588. },
  24589. },
  24590. [
  24591. {
  24592. name: "Micro",
  24593. height: math.unit(15, "cm")
  24594. },
  24595. {
  24596. name: "Normal",
  24597. height: math.unit(178, "cm"),
  24598. default: true
  24599. },
  24600. {
  24601. name: "Macro",
  24602. height: math.unit(214, "m")
  24603. },
  24604. {
  24605. name: "Macro+",
  24606. height: math.unit(534, "m")
  24607. },
  24608. ]
  24609. ))
  24610. characterMakers.push(() => makeCharacter(
  24611. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24612. {
  24613. front: {
  24614. height: math.unit(5 + 5 / 12, "feet"),
  24615. weight: math.unit(120, "lb"),
  24616. name: "Front",
  24617. image: {
  24618. source: "./media/characters/ari/front.svg",
  24619. extra: 714.5 / 682,
  24620. bottom: 8 / 722.5
  24621. }
  24622. },
  24623. },
  24624. [
  24625. {
  24626. name: "Normal",
  24627. height: math.unit(5 + 5 / 12, "feet")
  24628. },
  24629. {
  24630. name: "Macro",
  24631. height: math.unit(100, "feet"),
  24632. default: true
  24633. },
  24634. {
  24635. name: "Megamacro",
  24636. height: math.unit(100, "miles")
  24637. },
  24638. {
  24639. name: "Gigamacro",
  24640. height: math.unit(80000, "miles")
  24641. },
  24642. ]
  24643. ))
  24644. characterMakers.push(() => makeCharacter(
  24645. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24646. {
  24647. side: {
  24648. height: math.unit(9, "feet"),
  24649. weight: math.unit(400, "kg"),
  24650. name: "Side",
  24651. image: {
  24652. source: "./media/characters/bolt/side.svg",
  24653. extra: 1126 / 896,
  24654. bottom: 60 / 1187.3,
  24655. }
  24656. },
  24657. },
  24658. [
  24659. {
  24660. name: "Micro",
  24661. height: math.unit(5, "inches")
  24662. },
  24663. {
  24664. name: "Normal",
  24665. height: math.unit(9, "feet"),
  24666. default: true
  24667. },
  24668. {
  24669. name: "Macro",
  24670. height: math.unit(700, "feet")
  24671. },
  24672. {
  24673. name: "Max Size",
  24674. height: math.unit(1.52e22, "yottameters")
  24675. },
  24676. ]
  24677. ))
  24678. characterMakers.push(() => makeCharacter(
  24679. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24680. {
  24681. front: {
  24682. height: math.unit(4.53, "meters"),
  24683. weight: math.unit(3, "tons"),
  24684. name: "Front",
  24685. image: {
  24686. source: "./media/characters/draekon-sylviar/front.svg",
  24687. extra: 1228 / 1068,
  24688. bottom: 41 / 1270
  24689. }
  24690. },
  24691. tail: {
  24692. height: math.unit(1.772, "meter"),
  24693. name: "Tail",
  24694. image: {
  24695. source: "./media/characters/draekon-sylviar/tail.svg"
  24696. }
  24697. },
  24698. head: {
  24699. height: math.unit(1.331, "meter"),
  24700. name: "Head",
  24701. image: {
  24702. source: "./media/characters/draekon-sylviar/head.svg"
  24703. }
  24704. },
  24705. hand: {
  24706. height: math.unit(0.564, "meter"),
  24707. name: "Hand",
  24708. image: {
  24709. source: "./media/characters/draekon-sylviar/hand.svg"
  24710. }
  24711. },
  24712. foot: {
  24713. height: math.unit(0.621, "meter"),
  24714. name: "Foot",
  24715. image: {
  24716. source: "./media/characters/draekon-sylviar/foot.svg",
  24717. bottom: 32 / 324
  24718. }
  24719. },
  24720. dick: {
  24721. height: math.unit(61, "cm"),
  24722. name: "Dick",
  24723. image: {
  24724. source: "./media/characters/draekon-sylviar/dick.svg"
  24725. }
  24726. },
  24727. dickseparated: {
  24728. height: math.unit(61, "cm"),
  24729. name: "Dick-separated",
  24730. image: {
  24731. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24732. }
  24733. },
  24734. },
  24735. [
  24736. {
  24737. name: "Small",
  24738. height: math.unit(4.53 / 2, "meters"),
  24739. default: true
  24740. },
  24741. {
  24742. name: "Normal",
  24743. height: math.unit(4.53, "meters"),
  24744. default: true
  24745. },
  24746. {
  24747. name: "Large",
  24748. height: math.unit(4.53 * 2, "meters"),
  24749. },
  24750. ]
  24751. ))
  24752. characterMakers.push(() => makeCharacter(
  24753. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24754. {
  24755. front: {
  24756. height: math.unit(6 + 2 / 12, "feet"),
  24757. weight: math.unit(180, "lb"),
  24758. name: "Front",
  24759. image: {
  24760. source: "./media/characters/brawler/front.svg",
  24761. extra: 3301 / 3027,
  24762. bottom: 138 / 3439
  24763. }
  24764. },
  24765. },
  24766. [
  24767. {
  24768. name: "Normal",
  24769. height: math.unit(6 + 2 / 12, "feet"),
  24770. default: true
  24771. },
  24772. ]
  24773. ))
  24774. characterMakers.push(() => makeCharacter(
  24775. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24776. {
  24777. front: {
  24778. height: math.unit(11, "feet"),
  24779. weight: math.unit(1000, "lb"),
  24780. name: "Front",
  24781. image: {
  24782. source: "./media/characters/alex/front.svg",
  24783. bottom: 44.5 / 620
  24784. }
  24785. },
  24786. },
  24787. [
  24788. {
  24789. name: "Micro",
  24790. height: math.unit(5, "inches")
  24791. },
  24792. {
  24793. name: "Normal",
  24794. height: math.unit(11, "feet"),
  24795. default: true
  24796. },
  24797. {
  24798. name: "Macro",
  24799. height: math.unit(9.5e9, "feet")
  24800. },
  24801. {
  24802. name: "Max Size",
  24803. height: math.unit(1.4e283, "yottameters")
  24804. },
  24805. ]
  24806. ))
  24807. characterMakers.push(() => makeCharacter(
  24808. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24809. {
  24810. female: {
  24811. height: math.unit(29.9, "m"),
  24812. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24813. name: "Female",
  24814. image: {
  24815. source: "./media/characters/zenari/female.svg",
  24816. extra: 3281.6 / 3217,
  24817. bottom: 72.2 / 3353
  24818. }
  24819. },
  24820. male: {
  24821. height: math.unit(27.7, "m"),
  24822. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24823. name: "Male",
  24824. image: {
  24825. source: "./media/characters/zenari/male.svg",
  24826. extra: 3008 / 2991,
  24827. bottom: 54.6 / 3069
  24828. }
  24829. },
  24830. },
  24831. [
  24832. {
  24833. name: "Macro",
  24834. height: math.unit(29.7, "meters"),
  24835. default: true
  24836. },
  24837. ]
  24838. ))
  24839. characterMakers.push(() => makeCharacter(
  24840. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24841. {
  24842. female: {
  24843. height: math.unit(23.8, "m"),
  24844. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24845. name: "Female",
  24846. image: {
  24847. source: "./media/characters/mactarian/female.svg",
  24848. extra: 2662 / 2569,
  24849. bottom: 73 / 2736
  24850. }
  24851. },
  24852. male: {
  24853. height: math.unit(23.8, "m"),
  24854. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24855. name: "Male",
  24856. image: {
  24857. source: "./media/characters/mactarian/male.svg",
  24858. extra: 2673 / 2600,
  24859. bottom: 76 / 2750
  24860. }
  24861. },
  24862. },
  24863. [
  24864. {
  24865. name: "Macro",
  24866. height: math.unit(23.8, "meters"),
  24867. default: true
  24868. },
  24869. ]
  24870. ))
  24871. characterMakers.push(() => makeCharacter(
  24872. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24873. {
  24874. female: {
  24875. height: math.unit(19.3, "m"),
  24876. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24877. name: "Female",
  24878. image: {
  24879. source: "./media/characters/umok/female.svg",
  24880. extra: 2186 / 2078,
  24881. bottom: 87 / 2277
  24882. }
  24883. },
  24884. male: {
  24885. height: math.unit(19.5, "m"),
  24886. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24887. name: "Male",
  24888. image: {
  24889. source: "./media/characters/umok/male.svg",
  24890. extra: 2233 / 2140,
  24891. bottom: 24.4 / 2258
  24892. }
  24893. },
  24894. },
  24895. [
  24896. {
  24897. name: "Macro",
  24898. height: math.unit(19.3, "meters"),
  24899. default: true
  24900. },
  24901. ]
  24902. ))
  24903. characterMakers.push(() => makeCharacter(
  24904. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24905. {
  24906. female: {
  24907. height: math.unit(26.15, "m"),
  24908. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24909. name: "Female",
  24910. image: {
  24911. source: "./media/characters/joraxian/female.svg",
  24912. extra: 2912 / 2824,
  24913. bottom: 36 / 2956
  24914. }
  24915. },
  24916. male: {
  24917. height: math.unit(25.4, "m"),
  24918. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24919. name: "Male",
  24920. image: {
  24921. source: "./media/characters/joraxian/male.svg",
  24922. extra: 2877 / 2721,
  24923. bottom: 82 / 2967
  24924. }
  24925. },
  24926. },
  24927. [
  24928. {
  24929. name: "Macro",
  24930. height: math.unit(26.15, "meters"),
  24931. default: true
  24932. },
  24933. ]
  24934. ))
  24935. characterMakers.push(() => makeCharacter(
  24936. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24937. {
  24938. female: {
  24939. height: math.unit(21.6, "m"),
  24940. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24941. name: "Female",
  24942. image: {
  24943. source: "./media/characters/sthara/female.svg",
  24944. extra: 2516 / 2347,
  24945. bottom: 21.5 / 2537
  24946. }
  24947. },
  24948. male: {
  24949. height: math.unit(24, "m"),
  24950. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24951. name: "Male",
  24952. image: {
  24953. source: "./media/characters/sthara/male.svg",
  24954. extra: 2732 / 2607,
  24955. bottom: 23 / 2732
  24956. }
  24957. },
  24958. },
  24959. [
  24960. {
  24961. name: "Macro",
  24962. height: math.unit(21.6, "meters"),
  24963. default: true
  24964. },
  24965. ]
  24966. ))
  24967. characterMakers.push(() => makeCharacter(
  24968. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24969. {
  24970. front: {
  24971. height: math.unit(6 + 4 / 12, "feet"),
  24972. weight: math.unit(175, "lb"),
  24973. name: "Front",
  24974. image: {
  24975. source: "./media/characters/luka-bryzant/front.svg",
  24976. extra: 311 / 289,
  24977. bottom: 4 / 315
  24978. }
  24979. },
  24980. back: {
  24981. height: math.unit(6 + 4 / 12, "feet"),
  24982. weight: math.unit(175, "lb"),
  24983. name: "Back",
  24984. image: {
  24985. source: "./media/characters/luka-bryzant/back.svg",
  24986. extra: 311 / 289,
  24987. bottom: 3.8 / 313.7
  24988. }
  24989. },
  24990. },
  24991. [
  24992. {
  24993. name: "Micro",
  24994. height: math.unit(10, "inches")
  24995. },
  24996. {
  24997. name: "Normal",
  24998. height: math.unit(6 + 4 / 12, "feet"),
  24999. default: true
  25000. },
  25001. {
  25002. name: "Large",
  25003. height: math.unit(12, "feet")
  25004. },
  25005. ]
  25006. ))
  25007. characterMakers.push(() => makeCharacter(
  25008. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25009. {
  25010. front: {
  25011. height: math.unit(5 + 7 / 12, "feet"),
  25012. weight: math.unit(185, "lb"),
  25013. name: "Front",
  25014. image: {
  25015. source: "./media/characters/aman-aquila/front.svg",
  25016. extra: 1013 / 976,
  25017. bottom: 45.6 / 1057
  25018. }
  25019. },
  25020. side: {
  25021. height: math.unit(5 + 7 / 12, "feet"),
  25022. weight: math.unit(185, "lb"),
  25023. name: "Side",
  25024. image: {
  25025. source: "./media/characters/aman-aquila/side.svg",
  25026. extra: 1054 / 1011,
  25027. bottom: 15 / 1070
  25028. }
  25029. },
  25030. back: {
  25031. height: math.unit(5 + 7 / 12, "feet"),
  25032. weight: math.unit(185, "lb"),
  25033. name: "Back",
  25034. image: {
  25035. source: "./media/characters/aman-aquila/back.svg",
  25036. extra: 1026 / 970,
  25037. bottom: 12 / 1039
  25038. }
  25039. },
  25040. head: {
  25041. height: math.unit(1.211, "feet"),
  25042. name: "Head",
  25043. image: {
  25044. source: "./media/characters/aman-aquila/head.svg",
  25045. }
  25046. },
  25047. },
  25048. [
  25049. {
  25050. name: "Minimicro",
  25051. height: math.unit(0.057, "inches")
  25052. },
  25053. {
  25054. name: "Micro",
  25055. height: math.unit(7, "inches")
  25056. },
  25057. {
  25058. name: "Mini",
  25059. height: math.unit(3 + 7 / 12, "feet")
  25060. },
  25061. {
  25062. name: "Normal",
  25063. height: math.unit(5 + 7 / 12, "feet"),
  25064. default: true
  25065. },
  25066. {
  25067. name: "Macro",
  25068. height: math.unit(157 + 7 / 12, "feet")
  25069. },
  25070. {
  25071. name: "Megamacro",
  25072. height: math.unit(1557 + 7 / 12, "feet")
  25073. },
  25074. {
  25075. name: "Gigamacro",
  25076. height: math.unit(15557 + 7 / 12, "feet")
  25077. },
  25078. ]
  25079. ))
  25080. characterMakers.push(() => makeCharacter(
  25081. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25082. {
  25083. front: {
  25084. height: math.unit(3 + 2 / 12, "inches"),
  25085. weight: math.unit(0.3, "ounces"),
  25086. name: "Front",
  25087. image: {
  25088. source: "./media/characters/hiphae/front.svg",
  25089. extra: 1931 / 1683,
  25090. bottom: 24 / 1955
  25091. }
  25092. },
  25093. },
  25094. [
  25095. {
  25096. name: "Normal",
  25097. height: math.unit(3 + 1 / 2, "inches"),
  25098. default: true
  25099. },
  25100. ]
  25101. ))
  25102. characterMakers.push(() => makeCharacter(
  25103. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25104. {
  25105. front: {
  25106. height: math.unit(5 + 10 / 12, "feet"),
  25107. weight: math.unit(165, "lb"),
  25108. name: "Front",
  25109. image: {
  25110. source: "./media/characters/nicky/front.svg",
  25111. extra: 3144 / 2886,
  25112. bottom: 45.6 / 3192
  25113. }
  25114. },
  25115. back: {
  25116. height: math.unit(5 + 10 / 12, "feet"),
  25117. weight: math.unit(165, "lb"),
  25118. name: "Back",
  25119. image: {
  25120. source: "./media/characters/nicky/back.svg",
  25121. extra: 3055 / 2804,
  25122. bottom: 28.4 / 3087
  25123. }
  25124. },
  25125. frontclothed: {
  25126. height: math.unit(5 + 10 / 12, "feet"),
  25127. weight: math.unit(165, "lb"),
  25128. name: "Front-clothed",
  25129. image: {
  25130. source: "./media/characters/nicky/front-clothed.svg",
  25131. extra: 3184.9 / 2926.9,
  25132. bottom: 86.5 / 3239.9
  25133. }
  25134. },
  25135. foot: {
  25136. height: math.unit(1.16, "feet"),
  25137. name: "Foot",
  25138. image: {
  25139. source: "./media/characters/nicky/foot.svg"
  25140. }
  25141. },
  25142. feet: {
  25143. height: math.unit(1.34, "feet"),
  25144. name: "Feet",
  25145. image: {
  25146. source: "./media/characters/nicky/feet.svg"
  25147. }
  25148. },
  25149. maw: {
  25150. height: math.unit(0.9, "feet"),
  25151. name: "Maw",
  25152. image: {
  25153. source: "./media/characters/nicky/maw.svg"
  25154. }
  25155. },
  25156. },
  25157. [
  25158. {
  25159. name: "Normal",
  25160. height: math.unit(5 + 10 / 12, "feet"),
  25161. default: true
  25162. },
  25163. {
  25164. name: "Macro",
  25165. height: math.unit(60, "feet")
  25166. },
  25167. {
  25168. name: "Megamacro",
  25169. height: math.unit(1, "mile")
  25170. },
  25171. ]
  25172. ))
  25173. characterMakers.push(() => makeCharacter(
  25174. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25175. {
  25176. side: {
  25177. height: math.unit(10, "feet"),
  25178. weight: math.unit(600, "lb"),
  25179. name: "Side",
  25180. image: {
  25181. source: "./media/characters/blair/side.svg",
  25182. bottom: 16.6 / 475,
  25183. extra: 458 / 431
  25184. }
  25185. },
  25186. },
  25187. [
  25188. {
  25189. name: "Micro",
  25190. height: math.unit(8, "inches")
  25191. },
  25192. {
  25193. name: "Normal",
  25194. height: math.unit(10, "feet"),
  25195. default: true
  25196. },
  25197. {
  25198. name: "Macro",
  25199. height: math.unit(180, "feet")
  25200. },
  25201. ]
  25202. ))
  25203. characterMakers.push(() => makeCharacter(
  25204. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25205. {
  25206. front: {
  25207. height: math.unit(5 + 4 / 12, "feet"),
  25208. weight: math.unit(125, "lb"),
  25209. name: "Front",
  25210. image: {
  25211. source: "./media/characters/fisher/front.svg",
  25212. extra: 444 / 390,
  25213. bottom: 2 / 444.8
  25214. }
  25215. },
  25216. },
  25217. [
  25218. {
  25219. name: "Micro",
  25220. height: math.unit(4, "inches")
  25221. },
  25222. {
  25223. name: "Normal",
  25224. height: math.unit(5 + 4 / 12, "feet"),
  25225. default: true
  25226. },
  25227. {
  25228. name: "Macro",
  25229. height: math.unit(100, "feet")
  25230. },
  25231. ]
  25232. ))
  25233. characterMakers.push(() => makeCharacter(
  25234. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25235. {
  25236. front: {
  25237. height: math.unit(6.71, "feet"),
  25238. weight: math.unit(200, "lb"),
  25239. capacity: math.unit(1000000, "people"),
  25240. name: "Front",
  25241. image: {
  25242. source: "./media/characters/gliss/front.svg",
  25243. extra: 2347 / 2231,
  25244. bottom: 113 / 2462
  25245. }
  25246. },
  25247. hammerspaceSize: {
  25248. height: math.unit(6.71 * 717, "feet"),
  25249. weight: math.unit(200, "lb"),
  25250. capacity: math.unit(1000000, "people"),
  25251. name: "Hammerspace Size",
  25252. image: {
  25253. source: "./media/characters/gliss/front.svg",
  25254. extra: 2347 / 2231,
  25255. bottom: 113 / 2462
  25256. }
  25257. },
  25258. },
  25259. [
  25260. {
  25261. name: "Normal",
  25262. height: math.unit(6.71, "feet"),
  25263. default: true
  25264. },
  25265. ]
  25266. ))
  25267. characterMakers.push(() => makeCharacter(
  25268. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25269. {
  25270. side: {
  25271. height: math.unit(1.44, "m"),
  25272. weight: math.unit(80, "kg"),
  25273. name: "Side",
  25274. image: {
  25275. source: "./media/characters/dune-anderson/side.svg",
  25276. bottom: 49 / 1426
  25277. }
  25278. },
  25279. },
  25280. [
  25281. {
  25282. name: "Wolf-sized",
  25283. height: math.unit(1.44, "meters")
  25284. },
  25285. {
  25286. name: "Normal",
  25287. height: math.unit(5.05, "meters"),
  25288. default: true
  25289. },
  25290. {
  25291. name: "Big",
  25292. height: math.unit(14.4, "meters")
  25293. },
  25294. {
  25295. name: "Huge",
  25296. height: math.unit(144, "meters")
  25297. },
  25298. ]
  25299. ))
  25300. characterMakers.push(() => makeCharacter(
  25301. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25302. {
  25303. front: {
  25304. height: math.unit(7, "feet"),
  25305. weight: math.unit(425, "lb"),
  25306. name: "Front",
  25307. image: {
  25308. source: "./media/characters/hind/front.svg",
  25309. extra: 2091 / 1860,
  25310. bottom: 129 / 2220
  25311. }
  25312. },
  25313. back: {
  25314. height: math.unit(7, "feet"),
  25315. weight: math.unit(425, "lb"),
  25316. name: "Back",
  25317. image: {
  25318. source: "./media/characters/hind/back.svg",
  25319. extra: 2091 / 1860,
  25320. bottom: 24.6 / 2309
  25321. }
  25322. },
  25323. tail: {
  25324. height: math.unit(2.8, "feet"),
  25325. name: "Tail",
  25326. image: {
  25327. source: "./media/characters/hind/tail.svg"
  25328. }
  25329. },
  25330. head: {
  25331. height: math.unit(2.55, "feet"),
  25332. name: "Head",
  25333. image: {
  25334. source: "./media/characters/hind/head.svg"
  25335. }
  25336. },
  25337. },
  25338. [
  25339. {
  25340. name: "XS",
  25341. height: math.unit(0.7, "feet")
  25342. },
  25343. {
  25344. name: "Normal",
  25345. height: math.unit(7, "feet"),
  25346. default: true
  25347. },
  25348. {
  25349. name: "XL",
  25350. height: math.unit(70, "feet")
  25351. },
  25352. ]
  25353. ))
  25354. characterMakers.push(() => makeCharacter(
  25355. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25356. {
  25357. front: {
  25358. height: math.unit(2.1, "meters"),
  25359. weight: math.unit(150, "lb"),
  25360. name: "Front",
  25361. image: {
  25362. source: "./media/characters/tharquench-sizestealer/front.svg",
  25363. extra: 1605/1470,
  25364. bottom: 36/1641
  25365. }
  25366. },
  25367. frontAlt: {
  25368. height: math.unit(2.1, "meters"),
  25369. weight: math.unit(150, "lb"),
  25370. name: "Front (Alt)",
  25371. image: {
  25372. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25373. extra: 2318 / 2063,
  25374. bottom: 93.4 / 2410
  25375. }
  25376. },
  25377. },
  25378. [
  25379. {
  25380. name: "Nano",
  25381. height: math.unit(1, "mm")
  25382. },
  25383. {
  25384. name: "Micro",
  25385. height: math.unit(1, "cm")
  25386. },
  25387. {
  25388. name: "Normal",
  25389. height: math.unit(2.1, "meters"),
  25390. default: true
  25391. },
  25392. ]
  25393. ))
  25394. characterMakers.push(() => makeCharacter(
  25395. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25396. {
  25397. front: {
  25398. height: math.unit(7 + 5 / 12, "feet"),
  25399. weight: math.unit(357, "lb"),
  25400. name: "Front",
  25401. image: {
  25402. source: "./media/characters/solex-draconov/front.svg",
  25403. extra: 1993 / 1865,
  25404. bottom: 117 / 2111
  25405. }
  25406. },
  25407. },
  25408. [
  25409. {
  25410. name: "Natural Height",
  25411. height: math.unit(7 + 5 / 12, "feet"),
  25412. default: true
  25413. },
  25414. {
  25415. name: "Macro",
  25416. height: math.unit(350, "feet")
  25417. },
  25418. {
  25419. name: "Macro+",
  25420. height: math.unit(1000, "feet")
  25421. },
  25422. {
  25423. name: "Megamacro",
  25424. height: math.unit(20, "km")
  25425. },
  25426. {
  25427. name: "Megamacro+",
  25428. height: math.unit(1000, "km")
  25429. },
  25430. {
  25431. name: "Gigamacro",
  25432. height: math.unit(2.5, "Gm")
  25433. },
  25434. {
  25435. name: "Teramacro",
  25436. height: math.unit(15, "Tm")
  25437. },
  25438. {
  25439. name: "Galactic",
  25440. height: math.unit(30, "Zm")
  25441. },
  25442. {
  25443. name: "Universal",
  25444. height: math.unit(21000, "Ym")
  25445. },
  25446. {
  25447. name: "Omniversal",
  25448. height: math.unit(9.861e50, "Ym")
  25449. },
  25450. {
  25451. name: "Existential",
  25452. height: math.unit(1e300, "meters")
  25453. },
  25454. ]
  25455. ))
  25456. characterMakers.push(() => makeCharacter(
  25457. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25458. {
  25459. side: {
  25460. height: math.unit(25, "feet"),
  25461. weight: math.unit(90000, "lb"),
  25462. name: "Side",
  25463. image: {
  25464. source: "./media/characters/mandarax/side.svg",
  25465. extra: 614 / 332,
  25466. bottom: 55 / 630
  25467. }
  25468. },
  25469. head: {
  25470. height: math.unit(11.4, "feet"),
  25471. name: "Head",
  25472. image: {
  25473. source: "./media/characters/mandarax/head.svg"
  25474. }
  25475. },
  25476. belly: {
  25477. height: math.unit(33, "feet"),
  25478. name: "Belly",
  25479. capacity: math.unit(500, "people"),
  25480. image: {
  25481. source: "./media/characters/mandarax/belly.svg"
  25482. }
  25483. },
  25484. dick: {
  25485. height: math.unit(8.46, "feet"),
  25486. name: "Dick",
  25487. image: {
  25488. source: "./media/characters/mandarax/dick.svg"
  25489. }
  25490. },
  25491. top: {
  25492. height: math.unit(28, "meters"),
  25493. name: "Top",
  25494. image: {
  25495. source: "./media/characters/mandarax/top.svg"
  25496. }
  25497. },
  25498. },
  25499. [
  25500. {
  25501. name: "Normal",
  25502. height: math.unit(25, "feet"),
  25503. default: true
  25504. },
  25505. ]
  25506. ))
  25507. characterMakers.push(() => makeCharacter(
  25508. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25509. {
  25510. front: {
  25511. height: math.unit(5, "feet"),
  25512. weight: math.unit(90, "lb"),
  25513. name: "Front",
  25514. image: {
  25515. source: "./media/characters/pixil/front.svg",
  25516. extra: 2000 / 1618,
  25517. bottom: 12.3 / 2011
  25518. }
  25519. },
  25520. },
  25521. [
  25522. {
  25523. name: "Normal",
  25524. height: math.unit(5, "feet"),
  25525. default: true
  25526. },
  25527. {
  25528. name: "Megamacro",
  25529. height: math.unit(10, "miles"),
  25530. },
  25531. ]
  25532. ))
  25533. characterMakers.push(() => makeCharacter(
  25534. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25535. {
  25536. front: {
  25537. height: math.unit(7 + 2 / 12, "feet"),
  25538. weight: math.unit(200, "lb"),
  25539. name: "Front",
  25540. image: {
  25541. source: "./media/characters/angel/front.svg",
  25542. extra: 1830 / 1737,
  25543. bottom: 22.6 / 1854,
  25544. }
  25545. },
  25546. },
  25547. [
  25548. {
  25549. name: "Normal",
  25550. height: math.unit(7 + 2 / 12, "feet"),
  25551. default: true
  25552. },
  25553. {
  25554. name: "Macro",
  25555. height: math.unit(1000, "feet")
  25556. },
  25557. {
  25558. name: "Megamacro",
  25559. height: math.unit(2, "miles")
  25560. },
  25561. {
  25562. name: "Gigamacro",
  25563. height: math.unit(20, "earths")
  25564. },
  25565. ]
  25566. ))
  25567. characterMakers.push(() => makeCharacter(
  25568. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25569. {
  25570. front: {
  25571. height: math.unit(5, "feet"),
  25572. weight: math.unit(180, "lb"),
  25573. name: "Front",
  25574. image: {
  25575. source: "./media/characters/mekana/front.svg",
  25576. extra: 1671 / 1605,
  25577. bottom: 3.5 / 1691
  25578. }
  25579. },
  25580. side: {
  25581. height: math.unit(5, "feet"),
  25582. weight: math.unit(180, "lb"),
  25583. name: "Side",
  25584. image: {
  25585. source: "./media/characters/mekana/side.svg",
  25586. extra: 1671 / 1605,
  25587. bottom: 3.5 / 1691
  25588. }
  25589. },
  25590. back: {
  25591. height: math.unit(5, "feet"),
  25592. weight: math.unit(180, "lb"),
  25593. name: "Back",
  25594. image: {
  25595. source: "./media/characters/mekana/back.svg",
  25596. extra: 1671 / 1605,
  25597. bottom: 3.5 / 1691
  25598. }
  25599. },
  25600. },
  25601. [
  25602. {
  25603. name: "Normal",
  25604. height: math.unit(5, "feet"),
  25605. default: true
  25606. },
  25607. ]
  25608. ))
  25609. characterMakers.push(() => makeCharacter(
  25610. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25611. {
  25612. front: {
  25613. height: math.unit(4 + 6 / 12, "feet"),
  25614. weight: math.unit(80, "lb"),
  25615. name: "Front",
  25616. image: {
  25617. source: "./media/characters/pixie/front.svg",
  25618. extra: 1924 / 1825,
  25619. bottom: 22.4 / 1946
  25620. }
  25621. },
  25622. },
  25623. [
  25624. {
  25625. name: "Normal",
  25626. height: math.unit(4 + 6 / 12, "feet"),
  25627. default: true
  25628. },
  25629. {
  25630. name: "Macro",
  25631. height: math.unit(40, "feet")
  25632. },
  25633. ]
  25634. ))
  25635. characterMakers.push(() => makeCharacter(
  25636. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25637. {
  25638. front: {
  25639. height: math.unit(2.1, "meters"),
  25640. weight: math.unit(200, "lb"),
  25641. name: "Front",
  25642. image: {
  25643. source: "./media/characters/the-lascivious/front.svg",
  25644. extra: 1 / 0.893,
  25645. bottom: 3.5 / 573.7
  25646. }
  25647. },
  25648. },
  25649. [
  25650. {
  25651. name: "Human Scale",
  25652. height: math.unit(2.1, "meters")
  25653. },
  25654. {
  25655. name: "Wolxi Scale",
  25656. height: math.unit(46.2, "m"),
  25657. default: true
  25658. },
  25659. {
  25660. name: "Boinker of Buildings",
  25661. height: math.unit(10, "km")
  25662. },
  25663. {
  25664. name: "Shagger of Skyscrapers",
  25665. height: math.unit(40, "km")
  25666. },
  25667. {
  25668. name: "Banger of Boroughs",
  25669. height: math.unit(4000, "km")
  25670. },
  25671. {
  25672. name: "Screwer of States",
  25673. height: math.unit(100000, "km")
  25674. },
  25675. {
  25676. name: "Pounder of Planets",
  25677. height: math.unit(2000000, "km")
  25678. },
  25679. ]
  25680. ))
  25681. characterMakers.push(() => makeCharacter(
  25682. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25683. {
  25684. front: {
  25685. height: math.unit(6, "feet"),
  25686. weight: math.unit(150, "lb"),
  25687. name: "Front",
  25688. image: {
  25689. source: "./media/characters/aj/front.svg",
  25690. extra: 2039 / 1562,
  25691. bottom: 40 / 2079
  25692. }
  25693. },
  25694. },
  25695. [
  25696. {
  25697. name: "Normal",
  25698. height: math.unit(11 + 6 / 12, "feet"),
  25699. default: true
  25700. },
  25701. {
  25702. name: "Megamacro",
  25703. height: math.unit(60, "megameters")
  25704. },
  25705. ]
  25706. ))
  25707. characterMakers.push(() => makeCharacter(
  25708. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25709. {
  25710. side: {
  25711. height: math.unit(31 + 8 / 12, "feet"),
  25712. weight: math.unit(75000, "kg"),
  25713. name: "Side",
  25714. image: {
  25715. source: "./media/characters/koros/side.svg",
  25716. extra: 1442 / 1297,
  25717. bottom: 122.7 / 1562
  25718. }
  25719. },
  25720. dicksKingsCrown: {
  25721. height: math.unit(6, "feet"),
  25722. name: "Dicks (King's Crown)",
  25723. image: {
  25724. source: "./media/characters/koros/dicks-kings-crown.svg"
  25725. }
  25726. },
  25727. dicksTailSet: {
  25728. height: math.unit(3, "feet"),
  25729. name: "Dicks (Tail Set)",
  25730. image: {
  25731. source: "./media/characters/koros/dicks-tail-set.svg"
  25732. }
  25733. },
  25734. dickCumming: {
  25735. height: math.unit(7.98, "feet"),
  25736. name: "Dick (Cumming)",
  25737. image: {
  25738. source: "./media/characters/koros/dick-cumming.svg"
  25739. }
  25740. },
  25741. dicksBack: {
  25742. height: math.unit(5.9, "feet"),
  25743. name: "Dicks (Back)",
  25744. image: {
  25745. source: "./media/characters/koros/dicks-back.svg"
  25746. }
  25747. },
  25748. dicksFront: {
  25749. height: math.unit(3.72, "feet"),
  25750. name: "Dicks (Front)",
  25751. image: {
  25752. source: "./media/characters/koros/dicks-front.svg"
  25753. }
  25754. },
  25755. dicksPeeking: {
  25756. height: math.unit(3.0, "feet"),
  25757. name: "Dicks (Peeking)",
  25758. image: {
  25759. source: "./media/characters/koros/dicks-peeking.svg"
  25760. }
  25761. },
  25762. eye: {
  25763. height: math.unit(1.7, "feet"),
  25764. name: "Eye",
  25765. image: {
  25766. source: "./media/characters/koros/eye.svg"
  25767. }
  25768. },
  25769. headFront: {
  25770. height: math.unit(11.69, "feet"),
  25771. name: "Head (Front)",
  25772. image: {
  25773. source: "./media/characters/koros/head-front.svg"
  25774. }
  25775. },
  25776. headSide: {
  25777. height: math.unit(14, "feet"),
  25778. name: "Head (Side)",
  25779. image: {
  25780. source: "./media/characters/koros/head-side.svg"
  25781. }
  25782. },
  25783. leg: {
  25784. height: math.unit(17, "feet"),
  25785. name: "Leg",
  25786. image: {
  25787. source: "./media/characters/koros/leg.svg"
  25788. }
  25789. },
  25790. mawSide: {
  25791. height: math.unit(12.8, "feet"),
  25792. name: "Maw (Side)",
  25793. image: {
  25794. source: "./media/characters/koros/maw-side.svg"
  25795. }
  25796. },
  25797. mawSpitting: {
  25798. height: math.unit(17, "feet"),
  25799. name: "Maw (Spitting)",
  25800. image: {
  25801. source: "./media/characters/koros/maw-spitting.svg"
  25802. }
  25803. },
  25804. slit: {
  25805. height: math.unit(2.8, "feet"),
  25806. name: "Slit",
  25807. image: {
  25808. source: "./media/characters/koros/slit.svg"
  25809. }
  25810. },
  25811. stomach: {
  25812. height: math.unit(6.8, "feet"),
  25813. capacity: math.unit(20, "people"),
  25814. name: "Stomach",
  25815. image: {
  25816. source: "./media/characters/koros/stomach.svg"
  25817. }
  25818. },
  25819. wingspanBottom: {
  25820. height: math.unit(114, "feet"),
  25821. name: "Wingspan (Bottom)",
  25822. image: {
  25823. source: "./media/characters/koros/wingspan-bottom.svg"
  25824. }
  25825. },
  25826. wingspanTop: {
  25827. height: math.unit(104, "feet"),
  25828. name: "Wingspan (Top)",
  25829. image: {
  25830. source: "./media/characters/koros/wingspan-top.svg"
  25831. }
  25832. },
  25833. },
  25834. [
  25835. {
  25836. name: "Normal",
  25837. height: math.unit(31 + 8 / 12, "feet"),
  25838. default: true
  25839. },
  25840. ]
  25841. ))
  25842. characterMakers.push(() => makeCharacter(
  25843. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25844. {
  25845. front: {
  25846. height: math.unit(18 + 5 / 12, "feet"),
  25847. weight: math.unit(3750, "kg"),
  25848. name: "Front",
  25849. image: {
  25850. source: "./media/characters/vexx/front.svg",
  25851. extra: 426 / 396,
  25852. bottom: 31.5 / 458
  25853. }
  25854. },
  25855. maw: {
  25856. height: math.unit(6, "feet"),
  25857. name: "Maw",
  25858. image: {
  25859. source: "./media/characters/vexx/maw.svg"
  25860. }
  25861. },
  25862. },
  25863. [
  25864. {
  25865. name: "Normal",
  25866. height: math.unit(18 + 5 / 12, "feet"),
  25867. default: true
  25868. },
  25869. ]
  25870. ))
  25871. characterMakers.push(() => makeCharacter(
  25872. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25873. {
  25874. front: {
  25875. height: math.unit(17 + 6 / 12, "feet"),
  25876. weight: math.unit(150, "lb"),
  25877. name: "Front",
  25878. image: {
  25879. source: "./media/characters/baadra/front.svg",
  25880. extra: 3137 / 2890,
  25881. bottom: 168.4 / 3305
  25882. }
  25883. },
  25884. back: {
  25885. height: math.unit(17 + 6 / 12, "feet"),
  25886. weight: math.unit(150, "lb"),
  25887. name: "Back",
  25888. image: {
  25889. source: "./media/characters/baadra/back.svg",
  25890. extra: 3142 / 2890,
  25891. bottom: 220 / 3371
  25892. }
  25893. },
  25894. head: {
  25895. height: math.unit(5.45, "feet"),
  25896. name: "Head",
  25897. image: {
  25898. source: "./media/characters/baadra/head.svg"
  25899. }
  25900. },
  25901. headAngry: {
  25902. height: math.unit(4.95, "feet"),
  25903. name: "Head (Angry)",
  25904. image: {
  25905. source: "./media/characters/baadra/head-angry.svg"
  25906. }
  25907. },
  25908. headOpen: {
  25909. height: math.unit(6, "feet"),
  25910. name: "Head (Open)",
  25911. image: {
  25912. source: "./media/characters/baadra/head-open.svg"
  25913. }
  25914. },
  25915. },
  25916. [
  25917. {
  25918. name: "Normal",
  25919. height: math.unit(17 + 6 / 12, "feet"),
  25920. default: true
  25921. },
  25922. ]
  25923. ))
  25924. characterMakers.push(() => makeCharacter(
  25925. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25926. {
  25927. front: {
  25928. height: math.unit(7 + 3 / 12, "feet"),
  25929. weight: math.unit(180, "lb"),
  25930. name: "Front",
  25931. image: {
  25932. source: "./media/characters/juri/front.svg",
  25933. extra: 1401 / 1237,
  25934. bottom: 18.5 / 1418
  25935. }
  25936. },
  25937. side: {
  25938. height: math.unit(7 + 3 / 12, "feet"),
  25939. weight: math.unit(180, "lb"),
  25940. name: "Side",
  25941. image: {
  25942. source: "./media/characters/juri/side.svg",
  25943. extra: 1424 / 1242,
  25944. bottom: 18.5 / 1447
  25945. }
  25946. },
  25947. sitting: {
  25948. height: math.unit(6, "feet"),
  25949. weight: math.unit(180, "lb"),
  25950. name: "Sitting",
  25951. image: {
  25952. source: "./media/characters/juri/sitting.svg",
  25953. extra: 1270 / 1143,
  25954. bottom: 100 / 1343
  25955. }
  25956. },
  25957. back: {
  25958. height: math.unit(7 + 3 / 12, "feet"),
  25959. weight: math.unit(180, "lb"),
  25960. name: "Back",
  25961. image: {
  25962. source: "./media/characters/juri/back.svg",
  25963. extra: 1377 / 1240,
  25964. bottom: 23.7 / 1405
  25965. }
  25966. },
  25967. maw: {
  25968. height: math.unit(2.8, "feet"),
  25969. name: "Maw",
  25970. image: {
  25971. source: "./media/characters/juri/maw.svg"
  25972. }
  25973. },
  25974. stomach: {
  25975. height: math.unit(0.89, "feet"),
  25976. capacity: math.unit(4, "liters"),
  25977. name: "Stomach",
  25978. image: {
  25979. source: "./media/characters/juri/stomach.svg"
  25980. }
  25981. },
  25982. },
  25983. [
  25984. {
  25985. name: "Normal",
  25986. height: math.unit(7 + 3 / 12, "feet"),
  25987. default: true
  25988. },
  25989. ]
  25990. ))
  25991. characterMakers.push(() => makeCharacter(
  25992. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25993. {
  25994. fox: {
  25995. height: math.unit(5 + 6 / 12, "feet"),
  25996. weight: math.unit(140, "lb"),
  25997. name: "Fox",
  25998. image: {
  25999. source: "./media/characters/maxene-sita/fox.svg",
  26000. extra: 146 / 138,
  26001. bottom: 2.1 / 148.19
  26002. }
  26003. },
  26004. foxLaying: {
  26005. height: math.unit(1.70, "feet"),
  26006. weight: math.unit(140, "lb"),
  26007. name: "Fox (Laying)",
  26008. image: {
  26009. source: "./media/characters/maxene-sita/fox-laying.svg",
  26010. extra: 910 / 572,
  26011. bottom: 71 / 981
  26012. }
  26013. },
  26014. kitsune: {
  26015. height: math.unit(10, "feet"),
  26016. weight: math.unit(800, "lb"),
  26017. name: "Kitsune",
  26018. image: {
  26019. source: "./media/characters/maxene-sita/kitsune.svg",
  26020. extra: 185 / 176,
  26021. bottom: 4.7 / 189.9
  26022. }
  26023. },
  26024. hellhound: {
  26025. height: math.unit(10, "feet"),
  26026. weight: math.unit(700, "lb"),
  26027. name: "Hellhound",
  26028. image: {
  26029. source: "./media/characters/maxene-sita/hellhound.svg",
  26030. extra: 1600 / 1545,
  26031. bottom: 81 / 1681
  26032. }
  26033. },
  26034. },
  26035. [
  26036. {
  26037. name: "Normal",
  26038. height: math.unit(5 + 6 / 12, "feet"),
  26039. default: true
  26040. },
  26041. ]
  26042. ))
  26043. characterMakers.push(() => makeCharacter(
  26044. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26045. {
  26046. front: {
  26047. height: math.unit(3 + 4 / 12, "feet"),
  26048. weight: math.unit(70, "lb"),
  26049. name: "Front",
  26050. image: {
  26051. source: "./media/characters/maia/front.svg",
  26052. extra: 227 / 219.5,
  26053. bottom: 40 / 267
  26054. }
  26055. },
  26056. back: {
  26057. height: math.unit(3 + 4 / 12, "feet"),
  26058. weight: math.unit(70, "lb"),
  26059. name: "Back",
  26060. image: {
  26061. source: "./media/characters/maia/back.svg",
  26062. extra: 237 / 225
  26063. }
  26064. },
  26065. },
  26066. [
  26067. {
  26068. name: "Normal",
  26069. height: math.unit(3 + 4 / 12, "feet"),
  26070. default: true
  26071. },
  26072. ]
  26073. ))
  26074. characterMakers.push(() => makeCharacter(
  26075. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26076. {
  26077. front: {
  26078. height: math.unit(5 + 10 / 12, "feet"),
  26079. weight: math.unit(197, "lb"),
  26080. name: "Front",
  26081. image: {
  26082. source: "./media/characters/jabaro/front.svg",
  26083. extra: 225 / 216,
  26084. bottom: 5.06 / 230
  26085. }
  26086. },
  26087. back: {
  26088. height: math.unit(5 + 10 / 12, "feet"),
  26089. weight: math.unit(197, "lb"),
  26090. name: "Back",
  26091. image: {
  26092. source: "./media/characters/jabaro/back.svg",
  26093. extra: 225 / 219,
  26094. bottom: 1.9 / 227
  26095. }
  26096. },
  26097. },
  26098. [
  26099. {
  26100. name: "Normal",
  26101. height: math.unit(5 + 10 / 12, "feet"),
  26102. default: true
  26103. },
  26104. ]
  26105. ))
  26106. characterMakers.push(() => makeCharacter(
  26107. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26108. {
  26109. front: {
  26110. height: math.unit(5 + 8 / 12, "feet"),
  26111. weight: math.unit(139, "lb"),
  26112. name: "Front",
  26113. image: {
  26114. source: "./media/characters/risa/front.svg",
  26115. extra: 270 / 260,
  26116. bottom: 11.2 / 282
  26117. }
  26118. },
  26119. back: {
  26120. height: math.unit(5 + 8 / 12, "feet"),
  26121. weight: math.unit(139, "lb"),
  26122. name: "Back",
  26123. image: {
  26124. source: "./media/characters/risa/back.svg",
  26125. extra: 264 / 255,
  26126. bottom: 4 / 268
  26127. }
  26128. },
  26129. },
  26130. [
  26131. {
  26132. name: "Normal",
  26133. height: math.unit(5 + 8 / 12, "feet"),
  26134. default: true
  26135. },
  26136. ]
  26137. ))
  26138. characterMakers.push(() => makeCharacter(
  26139. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26140. {
  26141. front: {
  26142. height: math.unit(2 + 11 / 12, "feet"),
  26143. weight: math.unit(30, "lb"),
  26144. name: "Front",
  26145. image: {
  26146. source: "./media/characters/weatley/front.svg",
  26147. bottom: 10.7 / 414,
  26148. extra: 403.5 / 362
  26149. }
  26150. },
  26151. back: {
  26152. height: math.unit(2 + 11 / 12, "feet"),
  26153. weight: math.unit(30, "lb"),
  26154. name: "Back",
  26155. image: {
  26156. source: "./media/characters/weatley/back.svg",
  26157. bottom: 10.7 / 414,
  26158. extra: 403.5 / 362
  26159. }
  26160. },
  26161. },
  26162. [
  26163. {
  26164. name: "Normal",
  26165. height: math.unit(2 + 11 / 12, "feet"),
  26166. default: true
  26167. },
  26168. ]
  26169. ))
  26170. characterMakers.push(() => makeCharacter(
  26171. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26172. {
  26173. front: {
  26174. height: math.unit(5 + 2 / 12, "feet"),
  26175. weight: math.unit(50, "kg"),
  26176. name: "Front",
  26177. image: {
  26178. source: "./media/characters/mercury-crescent/front.svg",
  26179. extra: 1088 / 1033,
  26180. bottom: 18.9 / 1109
  26181. }
  26182. },
  26183. },
  26184. [
  26185. {
  26186. name: "Normal",
  26187. height: math.unit(5 + 2 / 12, "feet"),
  26188. default: true
  26189. },
  26190. ]
  26191. ))
  26192. characterMakers.push(() => makeCharacter(
  26193. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26194. {
  26195. front: {
  26196. height: math.unit(2, "feet"),
  26197. weight: math.unit(15, "kg"),
  26198. name: "Front",
  26199. image: {
  26200. source: "./media/characters/diamond-jones/front.svg",
  26201. extra: 727/723,
  26202. bottom: 46/773
  26203. }
  26204. },
  26205. },
  26206. [
  26207. {
  26208. name: "Normal",
  26209. height: math.unit(2, "feet"),
  26210. default: true
  26211. },
  26212. ]
  26213. ))
  26214. characterMakers.push(() => makeCharacter(
  26215. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26216. {
  26217. front: {
  26218. height: math.unit(3, "feet"),
  26219. weight: math.unit(30, "kg"),
  26220. name: "Front",
  26221. image: {
  26222. source: "./media/characters/sweet-bit/front.svg",
  26223. extra: 675 / 567,
  26224. bottom: 27.7 / 703
  26225. }
  26226. },
  26227. },
  26228. [
  26229. {
  26230. name: "Normal",
  26231. height: math.unit(3, "feet"),
  26232. default: true
  26233. },
  26234. ]
  26235. ))
  26236. characterMakers.push(() => makeCharacter(
  26237. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26238. {
  26239. side: {
  26240. height: math.unit(9.178, "feet"),
  26241. weight: math.unit(500, "lb"),
  26242. name: "Side",
  26243. image: {
  26244. source: "./media/characters/umbrazen/side.svg",
  26245. extra: 1730 / 1473,
  26246. bottom: 34.6 / 1765
  26247. }
  26248. },
  26249. },
  26250. [
  26251. {
  26252. name: "Normal",
  26253. height: math.unit(9.178, "feet"),
  26254. default: true
  26255. },
  26256. ]
  26257. ))
  26258. characterMakers.push(() => makeCharacter(
  26259. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26260. {
  26261. front: {
  26262. height: math.unit(10, "feet"),
  26263. weight: math.unit(750, "lb"),
  26264. name: "Front",
  26265. image: {
  26266. source: "./media/characters/arlist/front.svg",
  26267. extra: 961 / 778,
  26268. bottom: 6.2 / 986
  26269. }
  26270. },
  26271. },
  26272. [
  26273. {
  26274. name: "Normal",
  26275. height: math.unit(10, "feet"),
  26276. default: true
  26277. },
  26278. ]
  26279. ))
  26280. characterMakers.push(() => makeCharacter(
  26281. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26282. {
  26283. front: {
  26284. height: math.unit(5 + 1 / 12, "feet"),
  26285. weight: math.unit(110, "lb"),
  26286. name: "Front",
  26287. image: {
  26288. source: "./media/characters/aradel/front.svg",
  26289. extra: 324 / 303,
  26290. bottom: 3.6 / 329.4
  26291. }
  26292. },
  26293. },
  26294. [
  26295. {
  26296. name: "Normal",
  26297. height: math.unit(5 + 1 / 12, "feet"),
  26298. default: true
  26299. },
  26300. ]
  26301. ))
  26302. characterMakers.push(() => makeCharacter(
  26303. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26304. {
  26305. front: {
  26306. height: math.unit(3 + 8 / 12, "feet"),
  26307. weight: math.unit(50, "lb"),
  26308. name: "Front",
  26309. image: {
  26310. source: "./media/characters/serryn/front.svg",
  26311. extra: 1792 / 1656,
  26312. bottom: 43.5 / 1840
  26313. }
  26314. },
  26315. },
  26316. [
  26317. {
  26318. name: "Normal",
  26319. height: math.unit(3 + 8 / 12, "feet"),
  26320. default: true
  26321. },
  26322. ]
  26323. ))
  26324. characterMakers.push(() => makeCharacter(
  26325. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26326. {
  26327. front: {
  26328. height: math.unit(7 + 10 / 12, "feet"),
  26329. weight: math.unit(255, "lb"),
  26330. name: "Front",
  26331. image: {
  26332. source: "./media/characters/xavier-thyme/front.svg",
  26333. extra: 3733 / 3642,
  26334. bottom: 131 / 3869
  26335. }
  26336. },
  26337. frontRaven: {
  26338. height: math.unit(7 + 10 / 12, "feet"),
  26339. weight: math.unit(255, "lb"),
  26340. name: "Front (Raven)",
  26341. image: {
  26342. source: "./media/characters/xavier-thyme/front-raven.svg",
  26343. extra: 4385 / 3642,
  26344. bottom: 131 / 4517
  26345. }
  26346. },
  26347. },
  26348. [
  26349. {
  26350. name: "Normal",
  26351. height: math.unit(7 + 10 / 12, "feet"),
  26352. default: true
  26353. },
  26354. ]
  26355. ))
  26356. characterMakers.push(() => makeCharacter(
  26357. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26358. {
  26359. front: {
  26360. height: math.unit(1.6, "m"),
  26361. weight: math.unit(50, "kg"),
  26362. name: "Front",
  26363. image: {
  26364. source: "./media/characters/kiki/front.svg",
  26365. extra: 4682 / 3610,
  26366. bottom: 115 / 4777
  26367. }
  26368. },
  26369. },
  26370. [
  26371. {
  26372. name: "Normal",
  26373. height: math.unit(1.6, "meters"),
  26374. default: true
  26375. },
  26376. ]
  26377. ))
  26378. characterMakers.push(() => makeCharacter(
  26379. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26380. {
  26381. front: {
  26382. height: math.unit(50, "m"),
  26383. weight: math.unit(500, "tonnes"),
  26384. name: "Front",
  26385. image: {
  26386. source: "./media/characters/ryoko/front.svg",
  26387. extra: 4632 / 3926,
  26388. bottom: 193 / 4823
  26389. }
  26390. },
  26391. },
  26392. [
  26393. {
  26394. name: "Normal",
  26395. height: math.unit(50, "meters"),
  26396. default: true
  26397. },
  26398. ]
  26399. ))
  26400. characterMakers.push(() => makeCharacter(
  26401. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26402. {
  26403. front: {
  26404. height: math.unit(30, "m"),
  26405. weight: math.unit(22, "tonnes"),
  26406. name: "Front",
  26407. image: {
  26408. source: "./media/characters/elio/front.svg",
  26409. extra: 4582 / 3720,
  26410. bottom: 236 / 4828
  26411. }
  26412. },
  26413. },
  26414. [
  26415. {
  26416. name: "Normal",
  26417. height: math.unit(30, "meters"),
  26418. default: true
  26419. },
  26420. ]
  26421. ))
  26422. characterMakers.push(() => makeCharacter(
  26423. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26424. {
  26425. front: {
  26426. height: math.unit(6 + 3 / 12, "feet"),
  26427. weight: math.unit(120, "lb"),
  26428. name: "Front",
  26429. image: {
  26430. source: "./media/characters/azura/front.svg",
  26431. extra: 1149 / 1135,
  26432. bottom: 45 / 1194
  26433. }
  26434. },
  26435. frontClothed: {
  26436. height: math.unit(6 + 3 / 12, "feet"),
  26437. weight: math.unit(120, "lb"),
  26438. name: "Front (Clothed)",
  26439. image: {
  26440. source: "./media/characters/azura/front-clothed.svg",
  26441. extra: 1149 / 1135,
  26442. bottom: 45 / 1194
  26443. }
  26444. },
  26445. },
  26446. [
  26447. {
  26448. name: "Normal",
  26449. height: math.unit(6 + 3 / 12, "feet"),
  26450. default: true
  26451. },
  26452. {
  26453. name: "Macro",
  26454. height: math.unit(20 + 6 / 12, "feet")
  26455. },
  26456. {
  26457. name: "Megamacro",
  26458. height: math.unit(12, "miles")
  26459. },
  26460. {
  26461. name: "Gigamacro",
  26462. height: math.unit(10000, "miles")
  26463. },
  26464. {
  26465. name: "Teramacro",
  26466. height: math.unit(900000, "miles")
  26467. },
  26468. ]
  26469. ))
  26470. characterMakers.push(() => makeCharacter(
  26471. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26472. {
  26473. front: {
  26474. height: math.unit(12, "feet"),
  26475. weight: math.unit(1, "ton"),
  26476. capacity: math.unit(660000, "gallons"),
  26477. name: "Front",
  26478. image: {
  26479. source: "./media/characters/zeus/front.svg",
  26480. extra: 5005 / 4717,
  26481. bottom: 363 / 5388
  26482. }
  26483. },
  26484. },
  26485. [
  26486. {
  26487. name: "Normal",
  26488. height: math.unit(12, "feet")
  26489. },
  26490. {
  26491. name: "Preferred Size",
  26492. height: math.unit(0.5, "miles"),
  26493. default: true
  26494. },
  26495. {
  26496. name: "Giga Horse",
  26497. height: math.unit(300, "miles")
  26498. },
  26499. {
  26500. name: "Riding Planets",
  26501. height: math.unit(30, "megameters")
  26502. },
  26503. {
  26504. name: "Cosmic Giant",
  26505. height: math.unit(3, "zettameters")
  26506. },
  26507. {
  26508. name: "Breeding God",
  26509. height: math.unit(9.92e22, "yottameters")
  26510. },
  26511. ]
  26512. ))
  26513. characterMakers.push(() => makeCharacter(
  26514. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26515. {
  26516. side: {
  26517. height: math.unit(9, "feet"),
  26518. weight: math.unit(1500, "kg"),
  26519. name: "Side",
  26520. image: {
  26521. source: "./media/characters/fang/side.svg",
  26522. extra: 924 / 866,
  26523. bottom: 47.5 / 972.3
  26524. }
  26525. },
  26526. },
  26527. [
  26528. {
  26529. name: "Normal",
  26530. height: math.unit(9, "feet"),
  26531. default: true
  26532. },
  26533. {
  26534. name: "Macro",
  26535. height: math.unit(75 + 6 / 12, "feet")
  26536. },
  26537. {
  26538. name: "Teramacro",
  26539. height: math.unit(50000, "miles")
  26540. },
  26541. ]
  26542. ))
  26543. characterMakers.push(() => makeCharacter(
  26544. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26545. {
  26546. front: {
  26547. height: math.unit(10, "feet"),
  26548. weight: math.unit(2, "tons"),
  26549. name: "Front",
  26550. image: {
  26551. source: "./media/characters/rekhit/front.svg",
  26552. extra: 2796 / 2590,
  26553. bottom: 225 / 3022
  26554. }
  26555. },
  26556. },
  26557. [
  26558. {
  26559. name: "Normal",
  26560. height: math.unit(10, "feet"),
  26561. default: true
  26562. },
  26563. {
  26564. name: "Macro",
  26565. height: math.unit(500, "feet")
  26566. },
  26567. ]
  26568. ))
  26569. characterMakers.push(() => makeCharacter(
  26570. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26571. {
  26572. front: {
  26573. height: math.unit(7 + 6.451 / 12, "feet"),
  26574. weight: math.unit(310, "lb"),
  26575. name: "Front",
  26576. image: {
  26577. source: "./media/characters/dahlia-verrick/front.svg",
  26578. extra: 1488 / 1365,
  26579. bottom: 6.2 / 1495
  26580. }
  26581. },
  26582. back: {
  26583. height: math.unit(7 + 6.451 / 12, "feet"),
  26584. weight: math.unit(310, "lb"),
  26585. name: "Back",
  26586. image: {
  26587. source: "./media/characters/dahlia-verrick/back.svg",
  26588. extra: 1472 / 1351,
  26589. bottom: 5.28 / 1477
  26590. }
  26591. },
  26592. frontBusiness: {
  26593. height: math.unit(7 + 6.451 / 12, "feet"),
  26594. weight: math.unit(200, "lb"),
  26595. name: "Front (Business)",
  26596. image: {
  26597. source: "./media/characters/dahlia-verrick/front-business.svg",
  26598. extra: 1478 / 1381,
  26599. bottom: 5.5 / 1484
  26600. }
  26601. },
  26602. frontCasual: {
  26603. height: math.unit(7 + 6.451 / 12, "feet"),
  26604. weight: math.unit(200, "lb"),
  26605. name: "Front (Casual)",
  26606. image: {
  26607. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26608. extra: 1478 / 1381,
  26609. bottom: 5.5 / 1484
  26610. }
  26611. },
  26612. },
  26613. [
  26614. {
  26615. name: "Travel-Sized",
  26616. height: math.unit(7.45, "inches")
  26617. },
  26618. {
  26619. name: "Normal",
  26620. height: math.unit(7 + 6.451 / 12, "feet"),
  26621. default: true
  26622. },
  26623. {
  26624. name: "Hitting the Town",
  26625. height: math.unit(37 + 8 / 12, "feet")
  26626. },
  26627. {
  26628. name: "Stomp in the Suburbs",
  26629. height: math.unit(964 + 9.728 / 12, "feet")
  26630. },
  26631. {
  26632. name: "Sit on the City",
  26633. height: math.unit(61747 + 10.592 / 12, "feet")
  26634. },
  26635. {
  26636. name: "Glomp the Globe",
  26637. height: math.unit(252919327 + 4.832 / 12, "feet")
  26638. },
  26639. ]
  26640. ))
  26641. characterMakers.push(() => makeCharacter(
  26642. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26643. {
  26644. front: {
  26645. height: math.unit(6 + 4 / 12, "feet"),
  26646. weight: math.unit(320, "lb"),
  26647. name: "Front",
  26648. image: {
  26649. source: "./media/characters/balina-mahigan/front.svg",
  26650. extra: 447 / 428,
  26651. bottom: 18 / 466
  26652. }
  26653. },
  26654. back: {
  26655. height: math.unit(6 + 4 / 12, "feet"),
  26656. weight: math.unit(320, "lb"),
  26657. name: "Back",
  26658. image: {
  26659. source: "./media/characters/balina-mahigan/back.svg",
  26660. extra: 445 / 428,
  26661. bottom: 4.07 / 448
  26662. }
  26663. },
  26664. arm: {
  26665. height: math.unit(1.88, "feet"),
  26666. name: "Arm",
  26667. image: {
  26668. source: "./media/characters/balina-mahigan/arm.svg"
  26669. }
  26670. },
  26671. backPort: {
  26672. height: math.unit(0.685, "feet"),
  26673. name: "Back Port",
  26674. image: {
  26675. source: "./media/characters/balina-mahigan/back-port.svg"
  26676. }
  26677. },
  26678. hoofpaw: {
  26679. height: math.unit(1.41, "feet"),
  26680. name: "Hoofpaw",
  26681. image: {
  26682. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26683. }
  26684. },
  26685. leftHandBack: {
  26686. height: math.unit(0.938, "feet"),
  26687. name: "Left Hand (Back)",
  26688. image: {
  26689. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26690. }
  26691. },
  26692. leftHandFront: {
  26693. height: math.unit(0.938, "feet"),
  26694. name: "Left Hand (Front)",
  26695. image: {
  26696. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26697. }
  26698. },
  26699. rightHandBack: {
  26700. height: math.unit(0.95, "feet"),
  26701. name: "Right Hand (Back)",
  26702. image: {
  26703. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26704. }
  26705. },
  26706. rightHandFront: {
  26707. height: math.unit(0.95, "feet"),
  26708. name: "Right Hand (Front)",
  26709. image: {
  26710. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26711. }
  26712. },
  26713. },
  26714. [
  26715. {
  26716. name: "Normal",
  26717. height: math.unit(6 + 4 / 12, "feet"),
  26718. default: true
  26719. },
  26720. ]
  26721. ))
  26722. characterMakers.push(() => makeCharacter(
  26723. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26724. {
  26725. front: {
  26726. height: math.unit(6, "feet"),
  26727. weight: math.unit(320, "lb"),
  26728. name: "Front",
  26729. image: {
  26730. source: "./media/characters/balina-mejeri/front.svg",
  26731. extra: 517 / 488,
  26732. bottom: 44.2 / 561
  26733. }
  26734. },
  26735. },
  26736. [
  26737. {
  26738. name: "Normal",
  26739. height: math.unit(6 + 4 / 12, "feet")
  26740. },
  26741. {
  26742. name: "Business",
  26743. height: math.unit(155, "feet"),
  26744. default: true
  26745. },
  26746. ]
  26747. ))
  26748. characterMakers.push(() => makeCharacter(
  26749. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26750. {
  26751. kneeling: {
  26752. height: math.unit(6 + 4 / 12, "feet"),
  26753. weight: math.unit(300 * 20, "lb"),
  26754. name: "Kneeling",
  26755. image: {
  26756. source: "./media/characters/balbarian/kneeling.svg",
  26757. extra: 922 / 862,
  26758. bottom: 42.4 / 965
  26759. }
  26760. },
  26761. },
  26762. [
  26763. {
  26764. name: "Normal",
  26765. height: math.unit(6 + 4 / 12, "feet")
  26766. },
  26767. {
  26768. name: "Treasured",
  26769. height: math.unit(18 + 9 / 12, "feet"),
  26770. default: true
  26771. },
  26772. {
  26773. name: "Macro",
  26774. height: math.unit(900, "feet")
  26775. },
  26776. ]
  26777. ))
  26778. characterMakers.push(() => makeCharacter(
  26779. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26780. {
  26781. front: {
  26782. height: math.unit(6 + 4 / 12, "feet"),
  26783. weight: math.unit(325, "lb"),
  26784. name: "Front",
  26785. image: {
  26786. source: "./media/characters/balina-amarini/front.svg",
  26787. extra: 415 / 403,
  26788. bottom: 19 / 433.4
  26789. }
  26790. },
  26791. back: {
  26792. height: math.unit(6 + 4 / 12, "feet"),
  26793. weight: math.unit(325, "lb"),
  26794. name: "Back",
  26795. image: {
  26796. source: "./media/characters/balina-amarini/back.svg",
  26797. extra: 415 / 403,
  26798. bottom: 13.5 / 432
  26799. }
  26800. },
  26801. overdrive: {
  26802. height: math.unit(6 + 4 / 12, "feet"),
  26803. weight: math.unit(400, "lb"),
  26804. name: "Overdrive",
  26805. image: {
  26806. source: "./media/characters/balina-amarini/overdrive.svg",
  26807. extra: 269 / 259,
  26808. bottom: 12 / 282
  26809. }
  26810. },
  26811. },
  26812. [
  26813. {
  26814. name: "Boom",
  26815. height: math.unit(9 + 10 / 12, "feet"),
  26816. default: true
  26817. },
  26818. {
  26819. name: "Macro",
  26820. height: math.unit(280, "feet")
  26821. },
  26822. ]
  26823. ))
  26824. characterMakers.push(() => makeCharacter(
  26825. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26826. {
  26827. goddess: {
  26828. height: math.unit(600, "feet"),
  26829. weight: math.unit(2000000, "tons"),
  26830. name: "Goddess",
  26831. image: {
  26832. source: "./media/characters/lady-kubwa/goddess.svg",
  26833. extra: 1240.5 / 1223,
  26834. bottom: 22 / 1263
  26835. }
  26836. },
  26837. goddesser: {
  26838. height: math.unit(900, "feet"),
  26839. weight: math.unit(20000000, "lb"),
  26840. name: "Goddess-er",
  26841. image: {
  26842. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26843. extra: 899 / 888,
  26844. bottom: 12.6 / 912
  26845. }
  26846. },
  26847. },
  26848. [
  26849. {
  26850. name: "Macro",
  26851. height: math.unit(600, "feet"),
  26852. default: true
  26853. },
  26854. {
  26855. name: "Megamacro",
  26856. height: math.unit(250, "miles")
  26857. },
  26858. ]
  26859. ))
  26860. characterMakers.push(() => makeCharacter(
  26861. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26862. {
  26863. front: {
  26864. height: math.unit(7 + 7 / 12, "feet"),
  26865. weight: math.unit(250, "lb"),
  26866. name: "Front",
  26867. image: {
  26868. source: "./media/characters/tala-grovehorn/front.svg",
  26869. extra: 2636 / 2525,
  26870. bottom: 147 / 2781
  26871. }
  26872. },
  26873. back: {
  26874. height: math.unit(7 + 7 / 12, "feet"),
  26875. weight: math.unit(250, "lb"),
  26876. name: "Back",
  26877. image: {
  26878. source: "./media/characters/tala-grovehorn/back.svg",
  26879. extra: 2635 / 2539,
  26880. bottom: 100 / 2732.8
  26881. }
  26882. },
  26883. mouth: {
  26884. height: math.unit(1.15, "feet"),
  26885. name: "Mouth",
  26886. image: {
  26887. source: "./media/characters/tala-grovehorn/mouth.svg"
  26888. }
  26889. },
  26890. dick: {
  26891. height: math.unit(2.36, "feet"),
  26892. name: "Dick",
  26893. image: {
  26894. source: "./media/characters/tala-grovehorn/dick.svg"
  26895. }
  26896. },
  26897. slit: {
  26898. height: math.unit(0.61, "feet"),
  26899. name: "Slit",
  26900. image: {
  26901. source: "./media/characters/tala-grovehorn/slit.svg"
  26902. }
  26903. },
  26904. },
  26905. [
  26906. ]
  26907. ))
  26908. characterMakers.push(() => makeCharacter(
  26909. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26910. {
  26911. front: {
  26912. height: math.unit(7 + 7 / 12, "feet"),
  26913. weight: math.unit(225, "lb"),
  26914. name: "Front",
  26915. image: {
  26916. source: "./media/characters/epona/front.svg",
  26917. extra: 2445 / 2290,
  26918. bottom: 251 / 2696
  26919. }
  26920. },
  26921. back: {
  26922. height: math.unit(7 + 7 / 12, "feet"),
  26923. weight: math.unit(225, "lb"),
  26924. name: "Back",
  26925. image: {
  26926. source: "./media/characters/epona/back.svg",
  26927. extra: 2546 / 2408,
  26928. bottom: 44 / 2589
  26929. }
  26930. },
  26931. genitals: {
  26932. height: math.unit(1.5, "feet"),
  26933. name: "Genitals",
  26934. image: {
  26935. source: "./media/characters/epona/genitals.svg"
  26936. }
  26937. },
  26938. },
  26939. [
  26940. {
  26941. name: "Normal",
  26942. height: math.unit(7 + 7 / 12, "feet"),
  26943. default: true
  26944. },
  26945. ]
  26946. ))
  26947. characterMakers.push(() => makeCharacter(
  26948. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26949. {
  26950. front: {
  26951. height: math.unit(7, "feet"),
  26952. weight: math.unit(518, "lb"),
  26953. name: "Front",
  26954. image: {
  26955. source: "./media/characters/avia-bloodbourn/front.svg",
  26956. extra: 1466 / 1350,
  26957. bottom: 65 / 1527
  26958. }
  26959. },
  26960. },
  26961. [
  26962. ]
  26963. ))
  26964. characterMakers.push(() => makeCharacter(
  26965. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26966. {
  26967. front: {
  26968. height: math.unit(9.35, "feet"),
  26969. weight: math.unit(600, "lb"),
  26970. name: "Front",
  26971. image: {
  26972. source: "./media/characters/amera/front.svg",
  26973. extra: 891 / 818,
  26974. bottom: 30 / 922.7
  26975. }
  26976. },
  26977. back: {
  26978. height: math.unit(9.35, "feet"),
  26979. weight: math.unit(600, "lb"),
  26980. name: "Back",
  26981. image: {
  26982. source: "./media/characters/amera/back.svg",
  26983. extra: 876 / 824,
  26984. bottom: 6.8 / 884
  26985. }
  26986. },
  26987. dick: {
  26988. height: math.unit(2.14, "feet"),
  26989. name: "Dick",
  26990. image: {
  26991. source: "./media/characters/amera/dick.svg"
  26992. }
  26993. },
  26994. },
  26995. [
  26996. {
  26997. name: "Normal",
  26998. height: math.unit(9.35, "feet"),
  26999. default: true
  27000. },
  27001. ]
  27002. ))
  27003. characterMakers.push(() => makeCharacter(
  27004. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27005. {
  27006. kneeling: {
  27007. height: math.unit(3 + 4 / 12, "feet"),
  27008. weight: math.unit(90, "lb"),
  27009. name: "Kneeling",
  27010. image: {
  27011. source: "./media/characters/rosewen/kneeling.svg",
  27012. extra: 1835 / 1571,
  27013. bottom: 27.7 / 1862
  27014. }
  27015. },
  27016. },
  27017. [
  27018. {
  27019. name: "Normal",
  27020. height: math.unit(3 + 4 / 12, "feet"),
  27021. default: true
  27022. },
  27023. ]
  27024. ))
  27025. characterMakers.push(() => makeCharacter(
  27026. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27027. {
  27028. front: {
  27029. height: math.unit(5 + 10 / 12, "feet"),
  27030. weight: math.unit(200, "lb"),
  27031. name: "Front",
  27032. image: {
  27033. source: "./media/characters/sabah/front.svg",
  27034. extra: 849 / 763,
  27035. bottom: 33.9 / 881
  27036. }
  27037. },
  27038. },
  27039. [
  27040. {
  27041. name: "Normal",
  27042. height: math.unit(5 + 10 / 12, "feet"),
  27043. default: true
  27044. },
  27045. ]
  27046. ))
  27047. characterMakers.push(() => makeCharacter(
  27048. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27049. {
  27050. front: {
  27051. height: math.unit(3 + 5 / 12, "feet"),
  27052. weight: math.unit(40, "kg"),
  27053. name: "Front",
  27054. image: {
  27055. source: "./media/characters/purple-flame/front.svg",
  27056. extra: 1577 / 1412,
  27057. bottom: 97 / 1694
  27058. }
  27059. },
  27060. frontDressed: {
  27061. height: math.unit(3 + 5 / 12, "feet"),
  27062. weight: math.unit(40, "kg"),
  27063. name: "Front (Dressed)",
  27064. image: {
  27065. source: "./media/characters/purple-flame/front-dressed.svg",
  27066. extra: 1577 / 1412,
  27067. bottom: 97 / 1694
  27068. }
  27069. },
  27070. headphones: {
  27071. height: math.unit(0.85, "feet"),
  27072. name: "Headphones",
  27073. image: {
  27074. source: "./media/characters/purple-flame/headphones.svg"
  27075. }
  27076. },
  27077. },
  27078. [
  27079. {
  27080. name: "Really Small",
  27081. height: math.unit(5, "cm")
  27082. },
  27083. {
  27084. name: "Micro",
  27085. height: math.unit(1 + 5 / 12, "feet")
  27086. },
  27087. {
  27088. name: "Normal",
  27089. height: math.unit(3 + 5 / 12, "feet"),
  27090. default: true
  27091. },
  27092. {
  27093. name: "Minimacro",
  27094. height: math.unit(125, "feet")
  27095. },
  27096. {
  27097. name: "Macro",
  27098. height: math.unit(0.5, "miles")
  27099. },
  27100. {
  27101. name: "Megamacro",
  27102. height: math.unit(50, "miles")
  27103. },
  27104. {
  27105. name: "Gigantic",
  27106. height: math.unit(750, "miles")
  27107. },
  27108. {
  27109. name: "Planetary",
  27110. height: math.unit(15000, "miles")
  27111. },
  27112. ]
  27113. ))
  27114. characterMakers.push(() => makeCharacter(
  27115. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27116. {
  27117. front: {
  27118. height: math.unit(14, "feet"),
  27119. weight: math.unit(959, "lb"),
  27120. name: "Front",
  27121. image: {
  27122. source: "./media/characters/arsenal/front.svg",
  27123. extra: 2357 / 2157,
  27124. bottom: 93 / 2458
  27125. }
  27126. },
  27127. },
  27128. [
  27129. {
  27130. name: "Normal",
  27131. height: math.unit(14, "feet"),
  27132. default: true
  27133. },
  27134. ]
  27135. ))
  27136. characterMakers.push(() => makeCharacter(
  27137. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27138. {
  27139. front: {
  27140. height: math.unit(6, "feet"),
  27141. weight: math.unit(150, "lb"),
  27142. name: "Front",
  27143. image: {
  27144. source: "./media/characters/adira/front.svg",
  27145. extra: 1078 / 1029,
  27146. bottom: 87 / 1166
  27147. }
  27148. },
  27149. },
  27150. [
  27151. {
  27152. name: "Micro",
  27153. height: math.unit(4, "inches"),
  27154. default: true
  27155. },
  27156. {
  27157. name: "Macro",
  27158. height: math.unit(50, "feet")
  27159. },
  27160. ]
  27161. ))
  27162. characterMakers.push(() => makeCharacter(
  27163. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27164. {
  27165. front: {
  27166. height: math.unit(16, "feet"),
  27167. weight: math.unit(1000, "lb"),
  27168. name: "Front",
  27169. image: {
  27170. source: "./media/characters/grim/front.svg",
  27171. extra: 622 / 614,
  27172. bottom: 18.1 / 642
  27173. }
  27174. },
  27175. back: {
  27176. height: math.unit(16, "feet"),
  27177. weight: math.unit(1000, "lb"),
  27178. name: "Back",
  27179. image: {
  27180. source: "./media/characters/grim/back.svg",
  27181. extra: 610.6 / 602,
  27182. bottom: 40.8 / 652
  27183. }
  27184. },
  27185. hunched: {
  27186. height: math.unit(9.75, "feet"),
  27187. weight: math.unit(1000, "lb"),
  27188. name: "Hunched",
  27189. image: {
  27190. source: "./media/characters/grim/hunched.svg",
  27191. extra: 304 / 297,
  27192. bottom: 35.4 / 394
  27193. }
  27194. },
  27195. },
  27196. [
  27197. {
  27198. name: "Normal",
  27199. height: math.unit(16, "feet"),
  27200. default: true
  27201. },
  27202. ]
  27203. ))
  27204. characterMakers.push(() => makeCharacter(
  27205. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27206. {
  27207. front: {
  27208. height: math.unit(2.3, "meters"),
  27209. weight: math.unit(300, "lb"),
  27210. name: "Front",
  27211. image: {
  27212. source: "./media/characters/sinja/front-sfw.svg",
  27213. extra: 1393 / 1294,
  27214. bottom: 70 / 1463
  27215. }
  27216. },
  27217. frontNsfw: {
  27218. height: math.unit(2.3, "meters"),
  27219. weight: math.unit(300, "lb"),
  27220. name: "Front (NSFW)",
  27221. image: {
  27222. source: "./media/characters/sinja/front-nsfw.svg",
  27223. extra: 1393 / 1294,
  27224. bottom: 70 / 1463
  27225. }
  27226. },
  27227. back: {
  27228. height: math.unit(2.3, "meters"),
  27229. weight: math.unit(300, "lb"),
  27230. name: "Back",
  27231. image: {
  27232. source: "./media/characters/sinja/back.svg",
  27233. extra: 1393 / 1294,
  27234. bottom: 70 / 1463
  27235. }
  27236. },
  27237. head: {
  27238. height: math.unit(1.771, "feet"),
  27239. name: "Head",
  27240. image: {
  27241. source: "./media/characters/sinja/head.svg"
  27242. }
  27243. },
  27244. slit: {
  27245. height: math.unit(0.8, "feet"),
  27246. name: "Slit",
  27247. image: {
  27248. source: "./media/characters/sinja/slit.svg"
  27249. }
  27250. },
  27251. },
  27252. [
  27253. {
  27254. name: "Normal",
  27255. height: math.unit(2.3, "meters")
  27256. },
  27257. {
  27258. name: "Macro",
  27259. height: math.unit(91, "meters"),
  27260. default: true
  27261. },
  27262. {
  27263. name: "Megamacro",
  27264. height: math.unit(91440, "meters")
  27265. },
  27266. {
  27267. name: "Gigamacro",
  27268. height: math.unit(60960000, "meters")
  27269. },
  27270. {
  27271. name: "Teramacro",
  27272. height: math.unit(9144000000, "meters")
  27273. },
  27274. ]
  27275. ))
  27276. characterMakers.push(() => makeCharacter(
  27277. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27278. {
  27279. front: {
  27280. height: math.unit(1.7, "meters"),
  27281. weight: math.unit(130, "lb"),
  27282. name: "Front",
  27283. image: {
  27284. source: "./media/characters/kyu/front.svg",
  27285. extra: 415 / 395,
  27286. bottom: 5 / 420
  27287. }
  27288. },
  27289. head: {
  27290. height: math.unit(1.75, "feet"),
  27291. name: "Head",
  27292. image: {
  27293. source: "./media/characters/kyu/head.svg"
  27294. }
  27295. },
  27296. foot: {
  27297. height: math.unit(0.81, "feet"),
  27298. name: "Foot",
  27299. image: {
  27300. source: "./media/characters/kyu/foot.svg"
  27301. }
  27302. },
  27303. },
  27304. [
  27305. {
  27306. name: "Normal",
  27307. height: math.unit(1.7, "meters")
  27308. },
  27309. {
  27310. name: "Macro",
  27311. height: math.unit(131, "feet"),
  27312. default: true
  27313. },
  27314. {
  27315. name: "Megamacro",
  27316. height: math.unit(91440, "meters")
  27317. },
  27318. {
  27319. name: "Gigamacro",
  27320. height: math.unit(60960000, "meters")
  27321. },
  27322. {
  27323. name: "Teramacro",
  27324. height: math.unit(9144000000, "meters")
  27325. },
  27326. ]
  27327. ))
  27328. characterMakers.push(() => makeCharacter(
  27329. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27330. {
  27331. front: {
  27332. height: math.unit(7 + 1 / 12, "feet"),
  27333. weight: math.unit(250, "lb"),
  27334. name: "Front",
  27335. image: {
  27336. source: "./media/characters/joey/front.svg",
  27337. extra: 1791 / 1537,
  27338. bottom: 28 / 1816
  27339. }
  27340. },
  27341. },
  27342. [
  27343. {
  27344. name: "Micro",
  27345. height: math.unit(3, "inches")
  27346. },
  27347. {
  27348. name: "Normal",
  27349. height: math.unit(7 + 1 / 12, "feet"),
  27350. default: true
  27351. },
  27352. ]
  27353. ))
  27354. characterMakers.push(() => makeCharacter(
  27355. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27356. {
  27357. front: {
  27358. height: math.unit(165, "cm"),
  27359. weight: math.unit(140, "lb"),
  27360. name: "Front",
  27361. image: {
  27362. source: "./media/characters/sam-evans/front.svg",
  27363. extra: 3417 / 3230,
  27364. bottom: 41.3 / 3417
  27365. }
  27366. },
  27367. frontSixTails: {
  27368. height: math.unit(165, "cm"),
  27369. weight: math.unit(140, "lb"),
  27370. name: "Front-six-tails",
  27371. image: {
  27372. source: "./media/characters/sam-evans/front-six-tails.svg",
  27373. extra: 3417 / 3230,
  27374. bottom: 41.3 / 3417
  27375. }
  27376. },
  27377. back: {
  27378. height: math.unit(165, "cm"),
  27379. weight: math.unit(140, "lb"),
  27380. name: "Back",
  27381. image: {
  27382. source: "./media/characters/sam-evans/back.svg",
  27383. extra: 3227 / 3032,
  27384. bottom: 6.8 / 3234
  27385. }
  27386. },
  27387. face: {
  27388. height: math.unit(0.68, "feet"),
  27389. name: "Face",
  27390. image: {
  27391. source: "./media/characters/sam-evans/face.svg"
  27392. }
  27393. },
  27394. },
  27395. [
  27396. {
  27397. name: "Normal",
  27398. height: math.unit(165, "cm"),
  27399. default: true
  27400. },
  27401. {
  27402. name: "Macro",
  27403. height: math.unit(100, "meters")
  27404. },
  27405. {
  27406. name: "Macro+",
  27407. height: math.unit(800, "meters")
  27408. },
  27409. {
  27410. name: "Macro++",
  27411. height: math.unit(3, "km")
  27412. },
  27413. {
  27414. name: "Macro+++",
  27415. height: math.unit(30, "km")
  27416. },
  27417. ]
  27418. ))
  27419. characterMakers.push(() => makeCharacter(
  27420. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27421. {
  27422. front: {
  27423. height: math.unit(10, "feet"),
  27424. weight: math.unit(750, "lb"),
  27425. name: "Front",
  27426. image: {
  27427. source: "./media/characters/juliet-a/front.svg",
  27428. extra: 1766 / 1720,
  27429. bottom: 43 / 1809
  27430. }
  27431. },
  27432. back: {
  27433. height: math.unit(10, "feet"),
  27434. weight: math.unit(750, "lb"),
  27435. name: "Back",
  27436. image: {
  27437. source: "./media/characters/juliet-a/back.svg",
  27438. extra: 1781 / 1734,
  27439. bottom: 35 / 1810,
  27440. }
  27441. },
  27442. },
  27443. [
  27444. {
  27445. name: "Normal",
  27446. height: math.unit(10, "feet"),
  27447. default: true
  27448. },
  27449. {
  27450. name: "Dragon Form",
  27451. height: math.unit(250, "feet")
  27452. },
  27453. {
  27454. name: "Macro",
  27455. height: math.unit(1000, "feet")
  27456. },
  27457. {
  27458. name: "Megamacro",
  27459. height: math.unit(10000, "feet")
  27460. }
  27461. ]
  27462. ))
  27463. characterMakers.push(() => makeCharacter(
  27464. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27465. {
  27466. regular: {
  27467. height: math.unit(7 + 3 / 12, "feet"),
  27468. weight: math.unit(260, "lb"),
  27469. name: "Regular",
  27470. image: {
  27471. source: "./media/characters/wild/regular.svg",
  27472. extra: 97.45 / 92,
  27473. bottom: 6.8 / 104.3
  27474. }
  27475. },
  27476. biggums: {
  27477. height: math.unit(8 + 6 / 12, "feet"),
  27478. weight: math.unit(425, "lb"),
  27479. name: "Biggums",
  27480. image: {
  27481. source: "./media/characters/wild/biggums.svg",
  27482. extra: 97.45 / 92,
  27483. bottom: 7.5 / 132.34
  27484. }
  27485. },
  27486. mawRegular: {
  27487. height: math.unit(1.24, "feet"),
  27488. name: "Maw (Regular)",
  27489. image: {
  27490. source: "./media/characters/wild/maw.svg"
  27491. }
  27492. },
  27493. mawBiggums: {
  27494. height: math.unit(1.47, "feet"),
  27495. name: "Maw (Biggums)",
  27496. image: {
  27497. source: "./media/characters/wild/maw.svg"
  27498. }
  27499. },
  27500. },
  27501. [
  27502. {
  27503. name: "Normal",
  27504. height: math.unit(7 + 3 / 12, "feet"),
  27505. default: true
  27506. },
  27507. ]
  27508. ))
  27509. characterMakers.push(() => makeCharacter(
  27510. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27511. {
  27512. front: {
  27513. height: math.unit(2.5, "meters"),
  27514. weight: math.unit(200, "kg"),
  27515. name: "Front",
  27516. image: {
  27517. source: "./media/characters/vidar/front.svg",
  27518. extra: 2994 / 2795,
  27519. bottom: 56 / 3061
  27520. }
  27521. },
  27522. back: {
  27523. height: math.unit(2.5, "meters"),
  27524. weight: math.unit(200, "kg"),
  27525. name: "Back",
  27526. image: {
  27527. source: "./media/characters/vidar/back.svg",
  27528. extra: 3131 / 2928,
  27529. bottom: 13.5 / 3141.5
  27530. }
  27531. },
  27532. feral: {
  27533. height: math.unit(2.5, "meters"),
  27534. weight: math.unit(2000, "kg"),
  27535. name: "Feral",
  27536. image: {
  27537. source: "./media/characters/vidar/feral.svg",
  27538. extra: 2790 / 1765,
  27539. bottom: 6 / 2796
  27540. }
  27541. },
  27542. },
  27543. [
  27544. {
  27545. name: "Normal",
  27546. height: math.unit(2.5, "meters"),
  27547. default: true
  27548. },
  27549. {
  27550. name: "Macro",
  27551. height: math.unit(100, "meters")
  27552. },
  27553. ]
  27554. ))
  27555. characterMakers.push(() => makeCharacter(
  27556. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27557. {
  27558. front: {
  27559. height: math.unit(5 + 9 / 12, "feet"),
  27560. weight: math.unit(120, "lb"),
  27561. name: "Front",
  27562. image: {
  27563. source: "./media/characters/ash/front.svg",
  27564. extra: 2189 / 1961,
  27565. bottom: 5.2 / 2194
  27566. }
  27567. },
  27568. },
  27569. [
  27570. {
  27571. name: "Normal",
  27572. height: math.unit(5 + 9 / 12, "feet"),
  27573. default: true
  27574. },
  27575. ]
  27576. ))
  27577. characterMakers.push(() => makeCharacter(
  27578. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27579. {
  27580. front: {
  27581. height: math.unit(9, "feet"),
  27582. weight: math.unit(10000, "lb"),
  27583. name: "Front",
  27584. image: {
  27585. source: "./media/characters/gygabite/front.svg",
  27586. bottom: 31.7 / 537.8,
  27587. extra: 505 / 370
  27588. }
  27589. },
  27590. },
  27591. [
  27592. {
  27593. name: "Normal",
  27594. height: math.unit(9, "feet"),
  27595. default: true
  27596. },
  27597. ]
  27598. ))
  27599. characterMakers.push(() => makeCharacter(
  27600. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27601. {
  27602. front: {
  27603. height: math.unit(12, "feet"),
  27604. weight: math.unit(35000, "lb"),
  27605. name: "Front",
  27606. image: {
  27607. source: "./media/characters/p0tat0/front.svg",
  27608. extra: 1065 / 921,
  27609. bottom: 55.7 / 1121.25
  27610. }
  27611. },
  27612. },
  27613. [
  27614. {
  27615. name: "Normal",
  27616. height: math.unit(12, "feet"),
  27617. default: true
  27618. },
  27619. ]
  27620. ))
  27621. characterMakers.push(() => makeCharacter(
  27622. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27623. {
  27624. side: {
  27625. height: math.unit(6.5, "feet"),
  27626. weight: math.unit(800, "lb"),
  27627. name: "Side",
  27628. image: {
  27629. source: "./media/characters/dusk/side.svg",
  27630. extra: 615 / 373,
  27631. bottom: 53 / 664
  27632. }
  27633. },
  27634. sitting: {
  27635. height: math.unit(7, "feet"),
  27636. weight: math.unit(800, "lb"),
  27637. name: "Sitting",
  27638. image: {
  27639. source: "./media/characters/dusk/sitting.svg",
  27640. extra: 753 / 425,
  27641. bottom: 33 / 774
  27642. }
  27643. },
  27644. head: {
  27645. height: math.unit(6.1, "feet"),
  27646. name: "Head",
  27647. image: {
  27648. source: "./media/characters/dusk/head.svg"
  27649. }
  27650. },
  27651. },
  27652. [
  27653. {
  27654. name: "Normal",
  27655. height: math.unit(7, "feet"),
  27656. default: true
  27657. },
  27658. ]
  27659. ))
  27660. characterMakers.push(() => makeCharacter(
  27661. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27662. {
  27663. front: {
  27664. height: math.unit(15, "feet"),
  27665. weight: math.unit(7000, "lb"),
  27666. name: "Front",
  27667. image: {
  27668. source: "./media/characters/jay-direwolf/front.svg",
  27669. extra: 1810 / 1732,
  27670. bottom: 66 / 1892
  27671. }
  27672. },
  27673. },
  27674. [
  27675. {
  27676. name: "Normal",
  27677. height: math.unit(15, "feet"),
  27678. default: true
  27679. },
  27680. ]
  27681. ))
  27682. characterMakers.push(() => makeCharacter(
  27683. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27684. {
  27685. front: {
  27686. height: math.unit(4 + 9 / 12, "feet"),
  27687. weight: math.unit(130, "lb"),
  27688. name: "Front",
  27689. image: {
  27690. source: "./media/characters/anchovie/front.svg",
  27691. extra: 382 / 350,
  27692. bottom: 25 / 409
  27693. }
  27694. },
  27695. back: {
  27696. height: math.unit(4 + 9 / 12, "feet"),
  27697. weight: math.unit(130, "lb"),
  27698. name: "Back",
  27699. image: {
  27700. source: "./media/characters/anchovie/back.svg",
  27701. extra: 385 / 352,
  27702. bottom: 16.6 / 402
  27703. }
  27704. },
  27705. frontDressed: {
  27706. height: math.unit(4 + 9 / 12, "feet"),
  27707. weight: math.unit(130, "lb"),
  27708. name: "Front (Dressed)",
  27709. image: {
  27710. source: "./media/characters/anchovie/front-dressed.svg",
  27711. extra: 382 / 350,
  27712. bottom: 25 / 409
  27713. }
  27714. },
  27715. backDressed: {
  27716. height: math.unit(4 + 9 / 12, "feet"),
  27717. weight: math.unit(130, "lb"),
  27718. name: "Back (Dressed)",
  27719. image: {
  27720. source: "./media/characters/anchovie/back-dressed.svg",
  27721. extra: 385 / 352,
  27722. bottom: 16.6 / 402
  27723. }
  27724. },
  27725. },
  27726. [
  27727. {
  27728. name: "Micro",
  27729. height: math.unit(6.4, "inches")
  27730. },
  27731. {
  27732. name: "Normal",
  27733. height: math.unit(4 + 9 / 12, "feet"),
  27734. default: true
  27735. },
  27736. ]
  27737. ))
  27738. characterMakers.push(() => makeCharacter(
  27739. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27740. {
  27741. front: {
  27742. height: math.unit(2, "meters"),
  27743. weight: math.unit(180, "lb"),
  27744. name: "Front",
  27745. image: {
  27746. source: "./media/characters/acidrenamon/front.svg",
  27747. extra: 987 / 890,
  27748. bottom: 22.8 / 1009
  27749. }
  27750. },
  27751. back: {
  27752. height: math.unit(2, "meters"),
  27753. weight: math.unit(180, "lb"),
  27754. name: "Back",
  27755. image: {
  27756. source: "./media/characters/acidrenamon/back.svg",
  27757. extra: 983 / 891,
  27758. bottom: 8.4 / 992
  27759. }
  27760. },
  27761. head: {
  27762. height: math.unit(1.92, "feet"),
  27763. name: "Head",
  27764. image: {
  27765. source: "./media/characters/acidrenamon/head.svg"
  27766. }
  27767. },
  27768. rump: {
  27769. height: math.unit(1.72, "feet"),
  27770. name: "Rump",
  27771. image: {
  27772. source: "./media/characters/acidrenamon/rump.svg"
  27773. }
  27774. },
  27775. tail: {
  27776. height: math.unit(4.2, "feet"),
  27777. name: "Tail",
  27778. image: {
  27779. source: "./media/characters/acidrenamon/tail.svg"
  27780. }
  27781. },
  27782. },
  27783. [
  27784. {
  27785. name: "Normal",
  27786. height: math.unit(2, "meters"),
  27787. default: true
  27788. },
  27789. {
  27790. name: "Minimacro",
  27791. height: math.unit(7, "meters")
  27792. },
  27793. {
  27794. name: "Macro",
  27795. height: math.unit(200, "meters")
  27796. },
  27797. {
  27798. name: "Gigamacro",
  27799. height: math.unit(0.2, "earths")
  27800. },
  27801. ]
  27802. ))
  27803. characterMakers.push(() => makeCharacter(
  27804. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27805. {
  27806. front: {
  27807. height: math.unit(152, "feet"),
  27808. name: "Front",
  27809. image: {
  27810. source: "./media/characters/kenzie-lee/front.svg",
  27811. extra: 1869/1774,
  27812. bottom: 128/1997
  27813. }
  27814. },
  27815. side: {
  27816. height: math.unit(86, "feet"),
  27817. name: "Side",
  27818. image: {
  27819. source: "./media/characters/kenzie-lee/side.svg",
  27820. extra: 930/815,
  27821. bottom: 177/1107
  27822. }
  27823. },
  27824. paw: {
  27825. height: math.unit(15, "feet"),
  27826. name: "Paw",
  27827. image: {
  27828. source: "./media/characters/kenzie-lee/paw.svg"
  27829. }
  27830. },
  27831. },
  27832. [
  27833. {
  27834. name: "Micro",
  27835. height: math.unit(1.5, "inches")
  27836. },
  27837. {
  27838. name: "Normal",
  27839. height: math.unit(152, "feet"),
  27840. default: true
  27841. },
  27842. {
  27843. name: "Megamacro",
  27844. height: math.unit(7, "miles")
  27845. },
  27846. {
  27847. name: "Gigamacro",
  27848. height: math.unit(8000, "miles")
  27849. },
  27850. ]
  27851. ))
  27852. characterMakers.push(() => makeCharacter(
  27853. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27854. {
  27855. side: {
  27856. height: math.unit(6, "feet"),
  27857. weight: math.unit(150, "lb"),
  27858. name: "Side",
  27859. image: {
  27860. source: "./media/characters/withers/side.svg",
  27861. extra: 1830 / 1728,
  27862. bottom: 96 / 1927
  27863. }
  27864. },
  27865. front: {
  27866. height: math.unit(6, "feet"),
  27867. weight: math.unit(150, "lb"),
  27868. name: "Front",
  27869. image: {
  27870. source: "./media/characters/withers/front.svg",
  27871. extra: 1514 / 1438,
  27872. bottom: 118 / 1632
  27873. }
  27874. },
  27875. },
  27876. [
  27877. {
  27878. name: "Macro",
  27879. height: math.unit(168, "feet"),
  27880. default: true
  27881. },
  27882. {
  27883. name: "Megamacro",
  27884. height: math.unit(15, "miles")
  27885. }
  27886. ]
  27887. ))
  27888. characterMakers.push(() => makeCharacter(
  27889. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27890. {
  27891. front: {
  27892. height: math.unit(6 + 7 / 12, "feet"),
  27893. weight: math.unit(250, "lb"),
  27894. name: "Front",
  27895. image: {
  27896. source: "./media/characters/nemoskii/front.svg",
  27897. extra: 2270 / 1734,
  27898. bottom: 86 / 2354
  27899. }
  27900. },
  27901. back: {
  27902. height: math.unit(6 + 7 / 12, "feet"),
  27903. weight: math.unit(250, "lb"),
  27904. name: "Back",
  27905. image: {
  27906. source: "./media/characters/nemoskii/back.svg",
  27907. extra: 1845 / 1788,
  27908. bottom: 10.5 / 1852
  27909. }
  27910. },
  27911. head: {
  27912. height: math.unit(1.31, "feet"),
  27913. name: "Head",
  27914. image: {
  27915. source: "./media/characters/nemoskii/head.svg"
  27916. }
  27917. },
  27918. },
  27919. [
  27920. {
  27921. name: "Micro",
  27922. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27923. },
  27924. {
  27925. name: "Normal",
  27926. height: math.unit(6 + 7 / 12, "feet"),
  27927. default: true
  27928. },
  27929. {
  27930. name: "Macro",
  27931. height: math.unit((6 + 7 / 12) * 150, "feet")
  27932. },
  27933. {
  27934. name: "Macro+",
  27935. height: math.unit((6 + 7 / 12) * 500, "feet")
  27936. },
  27937. {
  27938. name: "Megamacro",
  27939. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27940. },
  27941. ]
  27942. ))
  27943. characterMakers.push(() => makeCharacter(
  27944. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27945. {
  27946. front: {
  27947. height: math.unit(1, "mile"),
  27948. weight: math.unit(265261.9, "lb"),
  27949. name: "Front",
  27950. image: {
  27951. source: "./media/characters/shui/front.svg",
  27952. extra: 1633 / 1564,
  27953. bottom: 91.5 / 1726
  27954. }
  27955. },
  27956. },
  27957. [
  27958. {
  27959. name: "Macro",
  27960. height: math.unit(1, "mile"),
  27961. default: true
  27962. },
  27963. ]
  27964. ))
  27965. characterMakers.push(() => makeCharacter(
  27966. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27967. {
  27968. front: {
  27969. height: math.unit(12 + 6 / 12, "feet"),
  27970. weight: math.unit(1342, "lb"),
  27971. name: "Front",
  27972. image: {
  27973. source: "./media/characters/arokh-takakura/front.svg",
  27974. extra: 1089 / 1043,
  27975. bottom: 77.4 / 1176.7
  27976. }
  27977. },
  27978. back: {
  27979. height: math.unit(12 + 6 / 12, "feet"),
  27980. weight: math.unit(1342, "lb"),
  27981. name: "Back",
  27982. image: {
  27983. source: "./media/characters/arokh-takakura/back.svg",
  27984. extra: 1046 / 1019,
  27985. bottom: 102 / 1150
  27986. }
  27987. },
  27988. },
  27989. [
  27990. {
  27991. name: "Big",
  27992. height: math.unit(12 + 6 / 12, "feet"),
  27993. default: true
  27994. },
  27995. ]
  27996. ))
  27997. characterMakers.push(() => makeCharacter(
  27998. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27999. {
  28000. front: {
  28001. height: math.unit(5 + 6 / 12, "feet"),
  28002. weight: math.unit(150, "lb"),
  28003. name: "Front",
  28004. image: {
  28005. source: "./media/characters/theo/front.svg",
  28006. extra: 1184 / 1131,
  28007. bottom: 7.4 / 1191
  28008. }
  28009. },
  28010. },
  28011. [
  28012. {
  28013. name: "Micro",
  28014. height: math.unit(5, "inches")
  28015. },
  28016. {
  28017. name: "Normal",
  28018. height: math.unit(5 + 6 / 12, "feet"),
  28019. default: true
  28020. },
  28021. ]
  28022. ))
  28023. characterMakers.push(() => makeCharacter(
  28024. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28025. {
  28026. front: {
  28027. height: math.unit(5 + 9 / 12, "feet"),
  28028. weight: math.unit(130, "lb"),
  28029. name: "Front",
  28030. image: {
  28031. source: "./media/characters/cecelia-swift/front.svg",
  28032. extra: 502 / 484,
  28033. bottom: 23 / 523
  28034. }
  28035. },
  28036. back: {
  28037. height: math.unit(5 + 9 / 12, "feet"),
  28038. weight: math.unit(130, "lb"),
  28039. name: "Back",
  28040. image: {
  28041. source: "./media/characters/cecelia-swift/back.svg",
  28042. extra: 499 / 485,
  28043. bottom: 12 / 511
  28044. }
  28045. },
  28046. head: {
  28047. height: math.unit(0.90, "feet"),
  28048. name: "Head",
  28049. image: {
  28050. source: "./media/characters/cecelia-swift/head.svg"
  28051. }
  28052. },
  28053. rump: {
  28054. height: math.unit(1.75, "feet"),
  28055. name: "Rump",
  28056. image: {
  28057. source: "./media/characters/cecelia-swift/rump.svg"
  28058. }
  28059. },
  28060. },
  28061. [
  28062. {
  28063. name: "Normal",
  28064. height: math.unit(5 + 9 / 12, "feet"),
  28065. default: true
  28066. },
  28067. {
  28068. name: "Big",
  28069. height: math.unit(50, "feet")
  28070. },
  28071. {
  28072. name: "Macro",
  28073. height: math.unit(100, "feet")
  28074. },
  28075. {
  28076. name: "Macro+",
  28077. height: math.unit(500, "feet")
  28078. },
  28079. {
  28080. name: "Macro++",
  28081. height: math.unit(1000, "feet")
  28082. },
  28083. ]
  28084. ))
  28085. characterMakers.push(() => makeCharacter(
  28086. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28087. {
  28088. front: {
  28089. height: math.unit(6, "feet"),
  28090. weight: math.unit(150, "lb"),
  28091. name: "Front",
  28092. image: {
  28093. source: "./media/characters/kaunan/front.svg",
  28094. extra: 2890 / 2523,
  28095. bottom: 49 / 2939
  28096. }
  28097. },
  28098. },
  28099. [
  28100. {
  28101. name: "Macro",
  28102. height: math.unit(150, "feet"),
  28103. default: true
  28104. },
  28105. ]
  28106. ))
  28107. characterMakers.push(() => makeCharacter(
  28108. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28109. {
  28110. front: {
  28111. height: math.unit(175, "cm"),
  28112. weight: math.unit(60, "kg"),
  28113. name: "Front",
  28114. image: {
  28115. source: "./media/characters/fei/front.svg",
  28116. extra: 1873/1723,
  28117. bottom: 53/1926
  28118. }
  28119. },
  28120. },
  28121. [
  28122. {
  28123. name: "Mortal",
  28124. height: math.unit(175, "cm")
  28125. },
  28126. {
  28127. name: "Normal",
  28128. height: math.unit(3500, "m"),
  28129. default: true
  28130. },
  28131. {
  28132. name: "Stroll",
  28133. height: math.unit(17.5, "km")
  28134. },
  28135. {
  28136. name: "Showoff",
  28137. height: math.unit(175, "km")
  28138. },
  28139. ]
  28140. ))
  28141. characterMakers.push(() => makeCharacter(
  28142. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28143. {
  28144. front: {
  28145. height: math.unit(7, "feet"),
  28146. weight: math.unit(1000, "kg"),
  28147. name: "Front",
  28148. image: {
  28149. source: "./media/characters/edrax/front.svg",
  28150. extra: 2838 / 2550,
  28151. bottom: 130 / 2968
  28152. }
  28153. },
  28154. },
  28155. [
  28156. {
  28157. name: "Small",
  28158. height: math.unit(7, "feet")
  28159. },
  28160. {
  28161. name: "Normal",
  28162. height: math.unit(1500, "meters")
  28163. },
  28164. {
  28165. name: "Mega",
  28166. height: math.unit(12000000, "km"),
  28167. default: true
  28168. },
  28169. {
  28170. name: "Megamacro",
  28171. height: math.unit(10600000, "lightyears")
  28172. },
  28173. {
  28174. name: "Hypermacro",
  28175. height: math.unit(256, "yottameters")
  28176. },
  28177. ]
  28178. ))
  28179. characterMakers.push(() => makeCharacter(
  28180. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28181. {
  28182. front: {
  28183. height: math.unit(10, "feet"),
  28184. weight: math.unit(750, "lb"),
  28185. name: "Front",
  28186. image: {
  28187. source: "./media/characters/clove/front.svg",
  28188. extra: 1918/1751,
  28189. bottom: 52/1970
  28190. }
  28191. },
  28192. back: {
  28193. height: math.unit(10, "feet"),
  28194. weight: math.unit(750, "lb"),
  28195. name: "Back",
  28196. image: {
  28197. source: "./media/characters/clove/back.svg",
  28198. extra: 1912/1747,
  28199. bottom: 50/1962
  28200. }
  28201. },
  28202. },
  28203. [
  28204. {
  28205. name: "Normal",
  28206. height: math.unit(10, "feet"),
  28207. default: true
  28208. },
  28209. ]
  28210. ))
  28211. characterMakers.push(() => makeCharacter(
  28212. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28213. {
  28214. front: {
  28215. height: math.unit(4, "feet"),
  28216. weight: math.unit(50, "lb"),
  28217. name: "Front",
  28218. image: {
  28219. source: "./media/characters/alex-rabbit/front.svg",
  28220. extra: 507 / 458,
  28221. bottom: 18.5 / 527
  28222. }
  28223. },
  28224. back: {
  28225. height: math.unit(4, "feet"),
  28226. weight: math.unit(50, "lb"),
  28227. name: "Back",
  28228. image: {
  28229. source: "./media/characters/alex-rabbit/back.svg",
  28230. extra: 502 / 460,
  28231. bottom: 18.9 / 521
  28232. }
  28233. },
  28234. },
  28235. [
  28236. {
  28237. name: "Normal",
  28238. height: math.unit(4, "feet"),
  28239. default: true
  28240. },
  28241. ]
  28242. ))
  28243. characterMakers.push(() => makeCharacter(
  28244. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28245. {
  28246. front: {
  28247. height: math.unit(1 + 3 / 12, "feet"),
  28248. weight: math.unit(80, "lb"),
  28249. name: "Front",
  28250. image: {
  28251. source: "./media/characters/zander-rose/front.svg",
  28252. extra: 916 / 797,
  28253. bottom: 17 / 933
  28254. }
  28255. },
  28256. back: {
  28257. height: math.unit(1 + 3 / 12, "feet"),
  28258. weight: math.unit(80, "lb"),
  28259. name: "Back",
  28260. image: {
  28261. source: "./media/characters/zander-rose/back.svg",
  28262. extra: 903 / 779,
  28263. bottom: 31 / 934
  28264. }
  28265. },
  28266. },
  28267. [
  28268. {
  28269. name: "Normal",
  28270. height: math.unit(1 + 3 / 12, "feet"),
  28271. default: true
  28272. },
  28273. ]
  28274. ))
  28275. characterMakers.push(() => makeCharacter(
  28276. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28277. {
  28278. anthro: {
  28279. height: math.unit(6, "feet"),
  28280. weight: math.unit(150, "lb"),
  28281. name: "Anthro",
  28282. image: {
  28283. source: "./media/characters/razz/anthro.svg",
  28284. extra: 1437 / 1343,
  28285. bottom: 48 / 1485
  28286. }
  28287. },
  28288. feral: {
  28289. height: math.unit(6, "feet"),
  28290. weight: math.unit(150, "lb"),
  28291. name: "Feral",
  28292. image: {
  28293. source: "./media/characters/razz/feral.svg",
  28294. extra: 2569 / 1385,
  28295. bottom: 95 / 2664
  28296. }
  28297. },
  28298. },
  28299. [
  28300. {
  28301. name: "Normal",
  28302. height: math.unit(6, "feet"),
  28303. default: true
  28304. },
  28305. ]
  28306. ))
  28307. characterMakers.push(() => makeCharacter(
  28308. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28309. {
  28310. front: {
  28311. height: math.unit(9 + 4 / 12, "feet"),
  28312. weight: math.unit(500, "lb"),
  28313. name: "Front",
  28314. image: {
  28315. source: "./media/characters/morrigan/front.svg",
  28316. extra: 2707 / 2579,
  28317. bottom: 156 / 2863
  28318. }
  28319. },
  28320. },
  28321. [
  28322. {
  28323. name: "Normal",
  28324. height: math.unit(9 + 4 / 12, "feet"),
  28325. default: true
  28326. },
  28327. ]
  28328. ))
  28329. characterMakers.push(() => makeCharacter(
  28330. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28331. {
  28332. front: {
  28333. height: math.unit(5, "stories"),
  28334. weight: math.unit(4000, "lb"),
  28335. name: "Front",
  28336. image: {
  28337. source: "./media/characters/jenene/front.svg",
  28338. extra: 1780 / 1710,
  28339. bottom: 57 / 1837
  28340. }
  28341. },
  28342. },
  28343. [
  28344. {
  28345. name: "Normal",
  28346. height: math.unit(5, "stories"),
  28347. default: true
  28348. },
  28349. ]
  28350. ))
  28351. characterMakers.push(() => makeCharacter(
  28352. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28353. {
  28354. taurSfw: {
  28355. height: math.unit(10, "meters"),
  28356. weight: math.unit(17500, "kg"),
  28357. name: "Taur",
  28358. image: {
  28359. source: "./media/characters/faey/taur-sfw.svg",
  28360. extra: 1200 / 968,
  28361. bottom: 41 / 1241
  28362. }
  28363. },
  28364. chestmaw: {
  28365. height: math.unit(2.01, "meters"),
  28366. name: "Chestmaw",
  28367. image: {
  28368. source: "./media/characters/faey/chestmaw.svg"
  28369. }
  28370. },
  28371. foot: {
  28372. height: math.unit(2.43, "meters"),
  28373. name: "Foot",
  28374. image: {
  28375. source: "./media/characters/faey/foot.svg"
  28376. }
  28377. },
  28378. jaws: {
  28379. height: math.unit(1.66, "meters"),
  28380. name: "Jaws",
  28381. image: {
  28382. source: "./media/characters/faey/jaws.svg"
  28383. }
  28384. },
  28385. tongues: {
  28386. height: math.unit(2.01, "meters"),
  28387. name: "Tongues",
  28388. image: {
  28389. source: "./media/characters/faey/tongues.svg"
  28390. }
  28391. },
  28392. },
  28393. [
  28394. {
  28395. name: "Small",
  28396. height: math.unit(10, "meters"),
  28397. default: true
  28398. },
  28399. {
  28400. name: "Big",
  28401. height: math.unit(500000, "km")
  28402. },
  28403. ]
  28404. ))
  28405. characterMakers.push(() => makeCharacter(
  28406. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28407. {
  28408. front: {
  28409. height: math.unit(7, "feet"),
  28410. weight: math.unit(275, "lb"),
  28411. name: "Front",
  28412. image: {
  28413. source: "./media/characters/roku/front.svg",
  28414. extra: 903 / 878,
  28415. bottom: 37 / 940
  28416. }
  28417. },
  28418. },
  28419. [
  28420. {
  28421. name: "Normal",
  28422. height: math.unit(7, "feet"),
  28423. default: true
  28424. },
  28425. {
  28426. name: "Macro",
  28427. height: math.unit(500, "feet")
  28428. },
  28429. {
  28430. name: "Megamacro",
  28431. height: math.unit(200, "miles")
  28432. },
  28433. ]
  28434. ))
  28435. characterMakers.push(() => makeCharacter(
  28436. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28437. {
  28438. front: {
  28439. height: math.unit(6 + 2 / 12, "feet"),
  28440. weight: math.unit(150, "lb"),
  28441. name: "Front",
  28442. image: {
  28443. source: "./media/characters/lira/front.svg",
  28444. extra: 1727 / 1605,
  28445. bottom: 26 / 1753
  28446. }
  28447. },
  28448. back: {
  28449. height: math.unit(6 + 2 / 12, "feet"),
  28450. weight: math.unit(150, "lb"),
  28451. name: "Back",
  28452. image: {
  28453. source: "./media/characters/lira/back.svg",
  28454. extra: 1713/1621,
  28455. bottom: 20/1733
  28456. }
  28457. },
  28458. hand: {
  28459. height: math.unit(0.75, "feet"),
  28460. name: "Hand",
  28461. image: {
  28462. source: "./media/characters/lira/hand.svg"
  28463. }
  28464. },
  28465. maw: {
  28466. height: math.unit(0.65, "feet"),
  28467. name: "Maw",
  28468. image: {
  28469. source: "./media/characters/lira/maw.svg"
  28470. }
  28471. },
  28472. pawDigi: {
  28473. height: math.unit(1.6, "feet"),
  28474. name: "Paw Digi",
  28475. image: {
  28476. source: "./media/characters/lira/paw-digi.svg"
  28477. }
  28478. },
  28479. pawPlanti: {
  28480. height: math.unit(1.4, "feet"),
  28481. name: "Paw Planti",
  28482. image: {
  28483. source: "./media/characters/lira/paw-planti.svg"
  28484. }
  28485. },
  28486. },
  28487. [
  28488. {
  28489. name: "Normal",
  28490. height: math.unit(6 + 2 / 12, "feet"),
  28491. default: true
  28492. },
  28493. {
  28494. name: "Macro",
  28495. height: math.unit(100, "feet")
  28496. },
  28497. {
  28498. name: "Macro²",
  28499. height: math.unit(1600, "feet")
  28500. },
  28501. {
  28502. name: "Planetary",
  28503. height: math.unit(20, "earths")
  28504. },
  28505. ]
  28506. ))
  28507. characterMakers.push(() => makeCharacter(
  28508. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28509. {
  28510. front: {
  28511. height: math.unit(6, "feet"),
  28512. weight: math.unit(150, "lb"),
  28513. name: "Front",
  28514. image: {
  28515. source: "./media/characters/hadjet/front.svg",
  28516. extra: 1480 / 1346,
  28517. bottom: 26 / 1506
  28518. }
  28519. },
  28520. frontNsfw: {
  28521. height: math.unit(6, "feet"),
  28522. weight: math.unit(150, "lb"),
  28523. name: "Front (NSFW)",
  28524. image: {
  28525. source: "./media/characters/hadjet/front-nsfw.svg",
  28526. extra: 1440 / 1358,
  28527. bottom: 52 / 1492
  28528. }
  28529. },
  28530. },
  28531. [
  28532. {
  28533. name: "Macro",
  28534. height: math.unit(10, "stories"),
  28535. default: true
  28536. },
  28537. {
  28538. name: "Megamacro",
  28539. height: math.unit(1.5, "miles")
  28540. },
  28541. {
  28542. name: "Megamacro+",
  28543. height: math.unit(5, "miles")
  28544. },
  28545. ]
  28546. ))
  28547. characterMakers.push(() => makeCharacter(
  28548. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28549. {
  28550. side: {
  28551. height: math.unit(106, "feet"),
  28552. weight: math.unit(500, "tonnes"),
  28553. name: "Side",
  28554. image: {
  28555. source: "./media/characters/kodran/side.svg",
  28556. extra: 553 / 480,
  28557. bottom: 33 / 586
  28558. }
  28559. },
  28560. front: {
  28561. height: math.unit(132, "feet"),
  28562. weight: math.unit(500, "tonnes"),
  28563. name: "Front",
  28564. image: {
  28565. source: "./media/characters/kodran/front.svg",
  28566. extra: 667 / 643,
  28567. bottom: 42 / 709
  28568. }
  28569. },
  28570. flying: {
  28571. height: math.unit(350, "feet"),
  28572. weight: math.unit(500, "tonnes"),
  28573. name: "Flying",
  28574. image: {
  28575. source: "./media/characters/kodran/flying.svg"
  28576. }
  28577. },
  28578. foot: {
  28579. height: math.unit(33, "feet"),
  28580. name: "Foot",
  28581. image: {
  28582. source: "./media/characters/kodran/foot.svg"
  28583. }
  28584. },
  28585. footFront: {
  28586. height: math.unit(19, "feet"),
  28587. name: "Foot (Front)",
  28588. image: {
  28589. source: "./media/characters/kodran/foot-front.svg",
  28590. extra: 261 / 261,
  28591. bottom: 91 / 352
  28592. }
  28593. },
  28594. headFront: {
  28595. height: math.unit(53, "feet"),
  28596. name: "Head (Front)",
  28597. image: {
  28598. source: "./media/characters/kodran/head-front.svg"
  28599. }
  28600. },
  28601. headSide: {
  28602. height: math.unit(65, "feet"),
  28603. name: "Head (Side)",
  28604. image: {
  28605. source: "./media/characters/kodran/head-side.svg"
  28606. }
  28607. },
  28608. throat: {
  28609. height: math.unit(79, "feet"),
  28610. name: "Throat",
  28611. image: {
  28612. source: "./media/characters/kodran/throat.svg"
  28613. }
  28614. },
  28615. },
  28616. [
  28617. {
  28618. name: "Large",
  28619. height: math.unit(106, "feet"),
  28620. default: true
  28621. },
  28622. ]
  28623. ))
  28624. characterMakers.push(() => makeCharacter(
  28625. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28626. {
  28627. side: {
  28628. height: math.unit(11, "feet"),
  28629. weight: math.unit(150, "lb"),
  28630. name: "Side",
  28631. image: {
  28632. source: "./media/characters/pyxaron/side.svg",
  28633. extra: 305 / 195,
  28634. bottom: 17 / 322
  28635. }
  28636. },
  28637. },
  28638. [
  28639. {
  28640. name: "Normal",
  28641. height: math.unit(11, "feet"),
  28642. default: true
  28643. },
  28644. ]
  28645. ))
  28646. characterMakers.push(() => makeCharacter(
  28647. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28648. {
  28649. front: {
  28650. height: math.unit(6, "feet"),
  28651. weight: math.unit(150, "lb"),
  28652. name: "Front",
  28653. image: {
  28654. source: "./media/characters/meep/front.svg",
  28655. extra: 88 / 80,
  28656. bottom: 6 / 94
  28657. }
  28658. },
  28659. },
  28660. [
  28661. {
  28662. name: "Fun Sized",
  28663. height: math.unit(2, "inches"),
  28664. default: true
  28665. },
  28666. {
  28667. name: "Friend Sized",
  28668. height: math.unit(8, "inches")
  28669. },
  28670. ]
  28671. ))
  28672. characterMakers.push(() => makeCharacter(
  28673. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28674. {
  28675. front: {
  28676. height: math.unit(15, "feet"),
  28677. weight: math.unit(2500, "lb"),
  28678. name: "Front",
  28679. image: {
  28680. source: "./media/characters/holly-rabbit/front.svg",
  28681. extra: 1433 / 1233,
  28682. bottom: 125 / 1558
  28683. }
  28684. },
  28685. dick: {
  28686. height: math.unit(4.6, "feet"),
  28687. name: "Dick",
  28688. image: {
  28689. source: "./media/characters/holly-rabbit/dick.svg"
  28690. }
  28691. },
  28692. },
  28693. [
  28694. {
  28695. name: "Normal",
  28696. height: math.unit(15, "feet"),
  28697. default: true
  28698. },
  28699. {
  28700. name: "Macro",
  28701. height: math.unit(250, "feet")
  28702. },
  28703. {
  28704. name: "Macro+",
  28705. height: math.unit(2500, "feet")
  28706. },
  28707. ]
  28708. ))
  28709. characterMakers.push(() => makeCharacter(
  28710. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28711. {
  28712. front: {
  28713. height: math.unit(3.02, "meters"),
  28714. weight: math.unit(500, "kg"),
  28715. name: "Front",
  28716. image: {
  28717. source: "./media/characters/drena/front.svg",
  28718. extra: 282 / 243,
  28719. bottom: 8 / 290
  28720. }
  28721. },
  28722. side: {
  28723. height: math.unit(3.02, "meters"),
  28724. weight: math.unit(500, "kg"),
  28725. name: "Side",
  28726. image: {
  28727. source: "./media/characters/drena/side.svg",
  28728. extra: 280 / 245,
  28729. bottom: 10 / 290
  28730. }
  28731. },
  28732. back: {
  28733. height: math.unit(3.02, "meters"),
  28734. weight: math.unit(500, "kg"),
  28735. name: "Back",
  28736. image: {
  28737. source: "./media/characters/drena/back.svg",
  28738. extra: 278 / 243,
  28739. bottom: 2 / 280
  28740. }
  28741. },
  28742. foot: {
  28743. height: math.unit(0.75, "meters"),
  28744. name: "Foot",
  28745. image: {
  28746. source: "./media/characters/drena/foot.svg"
  28747. }
  28748. },
  28749. maw: {
  28750. height: math.unit(0.82, "meters"),
  28751. name: "Maw",
  28752. image: {
  28753. source: "./media/characters/drena/maw.svg"
  28754. }
  28755. },
  28756. rump: {
  28757. height: math.unit(0.93, "meters"),
  28758. name: "Rump",
  28759. image: {
  28760. source: "./media/characters/drena/rump.svg"
  28761. }
  28762. },
  28763. },
  28764. [
  28765. {
  28766. name: "Normal",
  28767. height: math.unit(3.02, "meters"),
  28768. default: true
  28769. },
  28770. ]
  28771. ))
  28772. characterMakers.push(() => makeCharacter(
  28773. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28774. {
  28775. front: {
  28776. height: math.unit(6 + 4 / 12, "feet"),
  28777. weight: math.unit(250, "lb"),
  28778. name: "Front",
  28779. image: {
  28780. source: "./media/characters/remmyzilla/front.svg",
  28781. extra: 4033 / 3588,
  28782. bottom: 123 / 4156
  28783. }
  28784. },
  28785. back: {
  28786. height: math.unit(6 + 4 / 12, "feet"),
  28787. weight: math.unit(250, "lb"),
  28788. name: "Back",
  28789. image: {
  28790. source: "./media/characters/remmyzilla/back.svg",
  28791. extra: 2687 / 2555,
  28792. bottom: 48 / 2735
  28793. }
  28794. },
  28795. paw: {
  28796. height: math.unit(1.73, "feet"),
  28797. name: "Paw",
  28798. image: {
  28799. source: "./media/characters/remmyzilla/paw.svg"
  28800. }
  28801. },
  28802. maw: {
  28803. height: math.unit(1.73, "feet"),
  28804. name: "Maw",
  28805. image: {
  28806. source: "./media/characters/remmyzilla/maw.svg"
  28807. }
  28808. },
  28809. },
  28810. [
  28811. {
  28812. name: "Normal",
  28813. height: math.unit(6 + 4 / 12, "feet")
  28814. },
  28815. {
  28816. name: "Minimacro",
  28817. height: math.unit(12 + 8 / 12, "feet")
  28818. },
  28819. {
  28820. name: "Normal",
  28821. height: math.unit(640, "feet"),
  28822. default: true
  28823. },
  28824. {
  28825. name: "Megamacro",
  28826. height: math.unit(6400, "feet")
  28827. },
  28828. {
  28829. name: "Gigamacro",
  28830. height: math.unit(64000, "miles")
  28831. },
  28832. ]
  28833. ))
  28834. characterMakers.push(() => makeCharacter(
  28835. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28836. {
  28837. front: {
  28838. height: math.unit(2.5, "meters"),
  28839. weight: math.unit(300, "lb"),
  28840. name: "Front",
  28841. image: {
  28842. source: "./media/characters/lawrence/front.svg",
  28843. extra: 357 / 335,
  28844. bottom: 30 / 387
  28845. }
  28846. },
  28847. back: {
  28848. height: math.unit(2.5, "meters"),
  28849. weight: math.unit(300, "lb"),
  28850. name: "Back",
  28851. image: {
  28852. source: "./media/characters/lawrence/back.svg",
  28853. extra: 357 / 338,
  28854. bottom: 16 / 373
  28855. }
  28856. },
  28857. head: {
  28858. height: math.unit(0.9, "meter"),
  28859. name: "Head",
  28860. image: {
  28861. source: "./media/characters/lawrence/head.svg"
  28862. }
  28863. },
  28864. maw: {
  28865. height: math.unit(0.7, "meter"),
  28866. name: "Maw",
  28867. image: {
  28868. source: "./media/characters/lawrence/maw.svg"
  28869. }
  28870. },
  28871. footBottom: {
  28872. height: math.unit(0.5, "meter"),
  28873. name: "Foot (Bottom)",
  28874. image: {
  28875. source: "./media/characters/lawrence/foot-bottom.svg"
  28876. }
  28877. },
  28878. footTop: {
  28879. height: math.unit(0.5, "meter"),
  28880. name: "Foot (Top)",
  28881. image: {
  28882. source: "./media/characters/lawrence/foot-top.svg"
  28883. }
  28884. },
  28885. },
  28886. [
  28887. {
  28888. name: "Normal",
  28889. height: math.unit(2.5, "meters"),
  28890. default: true
  28891. },
  28892. {
  28893. name: "Macro",
  28894. height: math.unit(95, "meters")
  28895. },
  28896. {
  28897. name: "Megamacro",
  28898. height: math.unit(150, "km")
  28899. },
  28900. ]
  28901. ))
  28902. characterMakers.push(() => makeCharacter(
  28903. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28904. {
  28905. front: {
  28906. height: math.unit(4.2, "meters"),
  28907. name: "Front",
  28908. image: {
  28909. source: "./media/characters/sydney/front.svg",
  28910. extra: 1323 / 1277,
  28911. bottom: 111 / 1434
  28912. }
  28913. },
  28914. },
  28915. [
  28916. {
  28917. name: "Normal",
  28918. height: math.unit(4.2, "meters"),
  28919. default: true
  28920. },
  28921. ]
  28922. ))
  28923. characterMakers.push(() => makeCharacter(
  28924. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28925. {
  28926. back: {
  28927. height: math.unit(201, "feet"),
  28928. name: "Back",
  28929. image: {
  28930. source: "./media/characters/jessica/back.svg",
  28931. extra: 273 / 259,
  28932. bottom: 7 / 280
  28933. }
  28934. },
  28935. },
  28936. [
  28937. {
  28938. name: "Normal",
  28939. height: math.unit(201, "feet"),
  28940. default: true
  28941. },
  28942. {
  28943. name: "Megamacro",
  28944. height: math.unit(8, "miles")
  28945. },
  28946. ]
  28947. ))
  28948. characterMakers.push(() => makeCharacter(
  28949. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28950. {
  28951. side: {
  28952. height: math.unit(320, "cm"),
  28953. name: "Side",
  28954. image: {
  28955. source: "./media/characters/victoria/side.svg",
  28956. extra: 778 / 346,
  28957. bottom: 56 / 834
  28958. }
  28959. },
  28960. maw: {
  28961. height: math.unit(5.9, "feet"),
  28962. name: "Maw",
  28963. image: {
  28964. source: "./media/characters/victoria/maw.svg"
  28965. }
  28966. },
  28967. },
  28968. [
  28969. {
  28970. name: "Normal",
  28971. height: math.unit(320, "cm"),
  28972. default: true
  28973. },
  28974. ]
  28975. ))
  28976. characterMakers.push(() => makeCharacter(
  28977. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28978. {
  28979. front: {
  28980. height: math.unit(5 + 6 / 12, "feet"),
  28981. name: "Front",
  28982. image: {
  28983. source: "./media/characters/cat/front.svg",
  28984. extra: 1449/1295,
  28985. bottom: 34/1483
  28986. }
  28987. },
  28988. back: {
  28989. height: math.unit(5 + 6 / 12, "feet"),
  28990. name: "Back",
  28991. image: {
  28992. source: "./media/characters/cat/back.svg",
  28993. extra: 1466/1301,
  28994. bottom: 19/1485
  28995. }
  28996. },
  28997. taur: {
  28998. height: math.unit(7, "feet"),
  28999. name: "Taur",
  29000. image: {
  29001. source: "./media/characters/cat/taur.svg",
  29002. extra: 1389/1233,
  29003. bottom: 83/1472
  29004. }
  29005. },
  29006. lucarioFront: {
  29007. height: math.unit(4, "feet"),
  29008. name: "Lucario (Front)",
  29009. image: {
  29010. source: "./media/characters/cat/lucario-front.svg",
  29011. extra: 1149/1019,
  29012. bottom: 84/1233
  29013. }
  29014. },
  29015. lucarioBack: {
  29016. height: math.unit(4, "feet"),
  29017. name: "Lucario (Back)",
  29018. image: {
  29019. source: "./media/characters/cat/lucario-back.svg",
  29020. extra: 1190/1059,
  29021. bottom: 33/1223
  29022. }
  29023. },
  29024. megaLucario: {
  29025. height: math.unit(4, "feet"),
  29026. name: "Mega Lucario",
  29027. image: {
  29028. source: "./media/characters/cat/mega-lucario.svg",
  29029. extra: 1515 / 1319,
  29030. bottom: 63 / 1578
  29031. }
  29032. },
  29033. nickit: {
  29034. height: math.unit(2, "feet"),
  29035. name: "Nickit",
  29036. image: {
  29037. source: "./media/characters/cat/nickit.svg",
  29038. extra: 1980 / 1585,
  29039. bottom: 102 / 2082
  29040. }
  29041. },
  29042. lopunnyFront: {
  29043. height: math.unit(5, "feet"),
  29044. name: "Lopunny (Front)",
  29045. image: {
  29046. source: "./media/characters/cat/lopunny-front.svg",
  29047. extra: 1782 / 1469,
  29048. bottom: 38 / 1820
  29049. }
  29050. },
  29051. lopunnyBack: {
  29052. height: math.unit(5, "feet"),
  29053. name: "Lopunny (Back)",
  29054. image: {
  29055. source: "./media/characters/cat/lopunny-back.svg",
  29056. extra: 1660 / 1490,
  29057. bottom: 25 / 1685
  29058. }
  29059. },
  29060. },
  29061. [
  29062. {
  29063. name: "Really small",
  29064. height: math.unit(1, "nm")
  29065. },
  29066. {
  29067. name: "Micro",
  29068. height: math.unit(5, "inches")
  29069. },
  29070. {
  29071. name: "Normal",
  29072. height: math.unit(5 + 6 / 12, "feet"),
  29073. default: true
  29074. },
  29075. {
  29076. name: "Macro",
  29077. height: math.unit(50, "feet")
  29078. },
  29079. {
  29080. name: "Macro+",
  29081. height: math.unit(150, "feet")
  29082. },
  29083. {
  29084. name: "Megamacro",
  29085. height: math.unit(100, "miles")
  29086. },
  29087. ]
  29088. ))
  29089. characterMakers.push(() => makeCharacter(
  29090. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29091. {
  29092. front: {
  29093. height: math.unit(63.4, "meters"),
  29094. weight: math.unit(3.28349e+6, "kilograms"),
  29095. name: "Front",
  29096. image: {
  29097. source: "./media/characters/kirina-violet/front.svg",
  29098. extra: 2812 / 2725,
  29099. bottom: 0 / 2812
  29100. }
  29101. },
  29102. back: {
  29103. height: math.unit(63.4, "meters"),
  29104. weight: math.unit(3.28349e+6, "kilograms"),
  29105. name: "Back",
  29106. image: {
  29107. source: "./media/characters/kirina-violet/back.svg",
  29108. extra: 2812 / 2725,
  29109. bottom: 0 / 2812
  29110. }
  29111. },
  29112. mouth: {
  29113. height: math.unit(4.35, "meters"),
  29114. name: "Mouth",
  29115. image: {
  29116. source: "./media/characters/kirina-violet/mouth.svg"
  29117. }
  29118. },
  29119. paw: {
  29120. height: math.unit(5.6, "meters"),
  29121. name: "Paw",
  29122. image: {
  29123. source: "./media/characters/kirina-violet/paw.svg"
  29124. }
  29125. },
  29126. tail: {
  29127. height: math.unit(18, "meters"),
  29128. name: "Tail",
  29129. image: {
  29130. source: "./media/characters/kirina-violet/tail.svg"
  29131. }
  29132. },
  29133. },
  29134. [
  29135. {
  29136. name: "Macro",
  29137. height: math.unit(63.4, "meters"),
  29138. default: true
  29139. },
  29140. ]
  29141. ))
  29142. characterMakers.push(() => makeCharacter(
  29143. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29144. {
  29145. front: {
  29146. height: math.unit(75, "feet"),
  29147. name: "Front",
  29148. image: {
  29149. source: "./media/characters/cat-gigachu/front.svg",
  29150. extra: 1239/1027,
  29151. bottom: 32/1271
  29152. }
  29153. },
  29154. back: {
  29155. height: math.unit(75, "feet"),
  29156. name: "Back",
  29157. image: {
  29158. source: "./media/characters/cat-gigachu/back.svg",
  29159. extra: 1229/1030,
  29160. bottom: 9/1238
  29161. }
  29162. },
  29163. },
  29164. [
  29165. {
  29166. name: "Dynamax",
  29167. height: math.unit(75, "feet"),
  29168. default: true
  29169. },
  29170. ]
  29171. ))
  29172. characterMakers.push(() => makeCharacter(
  29173. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29174. {
  29175. front: {
  29176. height: math.unit(6, "feet"),
  29177. weight: math.unit(150, "lb"),
  29178. name: "Front",
  29179. image: {
  29180. source: "./media/characters/sfaiyan/front.svg",
  29181. extra: 999 / 978,
  29182. bottom: 5 / 1004
  29183. }
  29184. },
  29185. },
  29186. [
  29187. {
  29188. name: "Normal",
  29189. height: math.unit(1.82, "meters")
  29190. },
  29191. {
  29192. name: "Giant",
  29193. height: math.unit(2.27, "km"),
  29194. default: true
  29195. },
  29196. ]
  29197. ))
  29198. characterMakers.push(() => makeCharacter(
  29199. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29200. {
  29201. front: {
  29202. height: math.unit(179, "cm"),
  29203. weight: math.unit(100, "kg"),
  29204. name: "Front",
  29205. image: {
  29206. source: "./media/characters/raunehkeli/front.svg",
  29207. extra: 1934 / 1926,
  29208. bottom: 0 / 1934
  29209. }
  29210. },
  29211. },
  29212. [
  29213. {
  29214. name: "Normal",
  29215. height: math.unit(179, "cm")
  29216. },
  29217. {
  29218. name: "Maximum",
  29219. height: math.unit(575, "meters"),
  29220. default: true
  29221. },
  29222. ]
  29223. ))
  29224. characterMakers.push(() => makeCharacter(
  29225. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29226. {
  29227. front: {
  29228. height: math.unit(6, "feet"),
  29229. weight: math.unit(150, "lb"),
  29230. name: "Front",
  29231. image: {
  29232. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29233. extra: 2625 / 2518,
  29234. bottom: 60 / 2685
  29235. }
  29236. },
  29237. },
  29238. [
  29239. {
  29240. name: "Normal",
  29241. height: math.unit(6 + 2 / 12, "feet")
  29242. },
  29243. {
  29244. name: "Macro",
  29245. height: math.unit(1180, "feet"),
  29246. default: true
  29247. },
  29248. ]
  29249. ))
  29250. characterMakers.push(() => makeCharacter(
  29251. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29252. {
  29253. front: {
  29254. height: math.unit(5 + 6 / 12, "feet"),
  29255. weight: math.unit(108, "lb"),
  29256. name: "Front",
  29257. image: {
  29258. source: "./media/characters/lilith-zott/front.svg",
  29259. extra: 2510 / 2238,
  29260. bottom: 100 / 2610
  29261. }
  29262. },
  29263. frontDressed: {
  29264. height: math.unit(5 + 6 / 12, "feet"),
  29265. weight: math.unit(108, "lb"),
  29266. name: "Front (Dressed)",
  29267. image: {
  29268. source: "./media/characters/lilith-zott/front-dressed.svg",
  29269. extra: 2510 / 2238,
  29270. bottom: 100 / 2610
  29271. }
  29272. },
  29273. },
  29274. [
  29275. {
  29276. name: "Normal",
  29277. height: math.unit(5 + 6 / 12, "feet")
  29278. },
  29279. {
  29280. name: "Macro",
  29281. height: math.unit(1030, "feet"),
  29282. default: true
  29283. },
  29284. ]
  29285. ))
  29286. characterMakers.push(() => makeCharacter(
  29287. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29288. {
  29289. front: {
  29290. height: math.unit(6, "feet"),
  29291. weight: math.unit(150, "lb"),
  29292. name: "Front",
  29293. image: {
  29294. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29295. extra: 2567 / 2435,
  29296. bottom: 39 / 2606
  29297. }
  29298. },
  29299. frontSuper: {
  29300. height: math.unit(6, "feet"),
  29301. name: "Front (Super)",
  29302. image: {
  29303. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29304. extra: 2567 / 2435,
  29305. bottom: 39 / 2606
  29306. }
  29307. },
  29308. },
  29309. [
  29310. {
  29311. name: "Normal",
  29312. height: math.unit(5 + 10 / 12, "feet")
  29313. },
  29314. {
  29315. name: "Macro",
  29316. height: math.unit(1100, "feet"),
  29317. default: true
  29318. },
  29319. ]
  29320. ))
  29321. characterMakers.push(() => makeCharacter(
  29322. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29323. {
  29324. front: {
  29325. height: math.unit(100, "miles"),
  29326. name: "Front",
  29327. image: {
  29328. source: "./media/characters/sona/front.svg",
  29329. extra: 2433 / 2201,
  29330. bottom: 53 / 2486
  29331. }
  29332. },
  29333. foot: {
  29334. height: math.unit(16.1, "miles"),
  29335. name: "Foot",
  29336. image: {
  29337. source: "./media/characters/sona/foot.svg"
  29338. }
  29339. },
  29340. },
  29341. [
  29342. {
  29343. name: "Macro",
  29344. height: math.unit(100, "miles"),
  29345. default: true
  29346. },
  29347. ]
  29348. ))
  29349. characterMakers.push(() => makeCharacter(
  29350. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29351. {
  29352. front: {
  29353. height: math.unit(6, "feet"),
  29354. weight: math.unit(150, "lb"),
  29355. name: "Front",
  29356. image: {
  29357. source: "./media/characters/bailey/front.svg",
  29358. extra: 1778 / 1724,
  29359. bottom: 30 / 1808
  29360. }
  29361. },
  29362. },
  29363. [
  29364. {
  29365. name: "Micro",
  29366. height: math.unit(4, "inches")
  29367. },
  29368. {
  29369. name: "Normal",
  29370. height: math.unit(5 + 5 / 12, "feet"),
  29371. default: true
  29372. },
  29373. {
  29374. name: "Macro",
  29375. height: math.unit(250, "feet")
  29376. },
  29377. {
  29378. name: "Megamacro",
  29379. height: math.unit(100, "miles")
  29380. },
  29381. ]
  29382. ))
  29383. characterMakers.push(() => makeCharacter(
  29384. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29385. {
  29386. front: {
  29387. height: math.unit(5 + 2 / 12, "feet"),
  29388. weight: math.unit(120, "lb"),
  29389. name: "Front",
  29390. image: {
  29391. source: "./media/characters/snaps/front.svg",
  29392. extra: 2370 / 2177,
  29393. bottom: 48 / 2418
  29394. }
  29395. },
  29396. back: {
  29397. height: math.unit(5 + 2 / 12, "feet"),
  29398. weight: math.unit(120, "lb"),
  29399. name: "Back",
  29400. image: {
  29401. source: "./media/characters/snaps/back.svg",
  29402. extra: 2408 / 2258,
  29403. bottom: 15 / 2423
  29404. }
  29405. },
  29406. },
  29407. [
  29408. {
  29409. name: "Micro",
  29410. height: math.unit(9, "inches")
  29411. },
  29412. {
  29413. name: "Normal",
  29414. height: math.unit(5 + 2 / 12, "feet"),
  29415. default: true
  29416. },
  29417. {
  29418. name: "Mini Macro",
  29419. height: math.unit(10, "feet")
  29420. },
  29421. ]
  29422. ))
  29423. characterMakers.push(() => makeCharacter(
  29424. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29425. {
  29426. front: {
  29427. height: math.unit(1.8, "meters"),
  29428. weight: math.unit(85, "kg"),
  29429. name: "Front",
  29430. image: {
  29431. source: "./media/characters/azteck/front.svg",
  29432. extra: 2815 / 2625,
  29433. bottom: 89 / 2904
  29434. }
  29435. },
  29436. back: {
  29437. height: math.unit(1.8, "meters"),
  29438. weight: math.unit(85, "kg"),
  29439. name: "Back",
  29440. image: {
  29441. source: "./media/characters/azteck/back.svg",
  29442. extra: 2856 / 2648,
  29443. bottom: 85 / 2941
  29444. }
  29445. },
  29446. frontDressed: {
  29447. height: math.unit(1.8, "meters"),
  29448. weight: math.unit(85, "kg"),
  29449. name: "Front (Dressed)",
  29450. image: {
  29451. source: "./media/characters/azteck/front-dressed.svg",
  29452. extra: 2147 / 2003,
  29453. bottom: 68 / 2215
  29454. }
  29455. },
  29456. head: {
  29457. height: math.unit(0.47, "meters"),
  29458. weight: math.unit(85, "kg"),
  29459. name: "Head",
  29460. image: {
  29461. source: "./media/characters/azteck/head.svg"
  29462. }
  29463. },
  29464. },
  29465. [
  29466. {
  29467. name: "Bite sized",
  29468. height: math.unit(16, "cm")
  29469. },
  29470. {
  29471. name: "Normal",
  29472. height: math.unit(1.8, "meters"),
  29473. default: true
  29474. },
  29475. ]
  29476. ))
  29477. characterMakers.push(() => makeCharacter(
  29478. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29479. {
  29480. front: {
  29481. height: math.unit(6, "feet"),
  29482. weight: math.unit(150, "lb"),
  29483. name: "Front",
  29484. image: {
  29485. source: "./media/characters/pidge/front.svg",
  29486. extra: 620 / 588,
  29487. bottom: 9 / 629
  29488. }
  29489. },
  29490. back: {
  29491. height: math.unit(6, "feet"),
  29492. weight: math.unit(150, "lb"),
  29493. name: "Back",
  29494. image: {
  29495. source: "./media/characters/pidge/back.svg",
  29496. extra: 620 / 588,
  29497. bottom: 9 / 629
  29498. }
  29499. },
  29500. },
  29501. [
  29502. {
  29503. name: "Macro",
  29504. height: math.unit(1, "mile"),
  29505. default: true
  29506. },
  29507. ]
  29508. ))
  29509. characterMakers.push(() => makeCharacter(
  29510. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29511. {
  29512. front: {
  29513. height: math.unit(6, "feet"),
  29514. weight: math.unit(150, "lb"),
  29515. name: "Front",
  29516. image: {
  29517. source: "./media/characters/en/front.svg",
  29518. extra: 1697 / 1563,
  29519. bottom: 103 / 1800
  29520. }
  29521. },
  29522. back: {
  29523. height: math.unit(6, "feet"),
  29524. weight: math.unit(150, "lb"),
  29525. name: "Back",
  29526. image: {
  29527. source: "./media/characters/en/back.svg",
  29528. extra: 1700 / 1570,
  29529. bottom: 51 / 1751
  29530. }
  29531. },
  29532. frontDressed: {
  29533. height: math.unit(6, "feet"),
  29534. weight: math.unit(150, "lb"),
  29535. name: "Front (Dressed)",
  29536. image: {
  29537. source: "./media/characters/en/front-dressed.svg",
  29538. extra: 1697 / 1563,
  29539. bottom: 103 / 1800
  29540. }
  29541. },
  29542. backDressed: {
  29543. height: math.unit(6, "feet"),
  29544. weight: math.unit(150, "lb"),
  29545. name: "Back (Dressed)",
  29546. image: {
  29547. source: "./media/characters/en/back-dressed.svg",
  29548. extra: 1700 / 1570,
  29549. bottom: 51 / 1751
  29550. }
  29551. },
  29552. },
  29553. [
  29554. {
  29555. name: "Macro",
  29556. height: math.unit(210, "feet"),
  29557. default: true
  29558. },
  29559. ]
  29560. ))
  29561. characterMakers.push(() => makeCharacter(
  29562. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29563. {
  29564. front: {
  29565. height: math.unit(6, "feet"),
  29566. weight: math.unit(150, "lb"),
  29567. name: "Front",
  29568. image: {
  29569. source: "./media/characters/haze-orris/front.svg",
  29570. extra: 3975 / 3525,
  29571. bottom: 137 / 4112
  29572. }
  29573. },
  29574. },
  29575. [
  29576. {
  29577. name: "Micro",
  29578. height: math.unit(150, "mm"),
  29579. default: true
  29580. },
  29581. ]
  29582. ))
  29583. characterMakers.push(() => makeCharacter(
  29584. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29585. {
  29586. front: {
  29587. height: math.unit(6, "feet"),
  29588. weight: math.unit(150, "lb"),
  29589. name: "Front",
  29590. image: {
  29591. source: "./media/characters/casselene-yaro/front.svg",
  29592. extra: 4721 / 4541,
  29593. bottom: 82 / 4803
  29594. }
  29595. },
  29596. back: {
  29597. height: math.unit(6, "feet"),
  29598. weight: math.unit(150, "lb"),
  29599. name: "Back",
  29600. image: {
  29601. source: "./media/characters/casselene-yaro/back.svg",
  29602. extra: 4569 / 4377,
  29603. bottom: 69 / 4638
  29604. }
  29605. },
  29606. frontDressed: {
  29607. height: math.unit(6, "feet"),
  29608. weight: math.unit(150, "lb"),
  29609. name: "Front-dressed",
  29610. image: {
  29611. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29612. extra: 4721 / 4541,
  29613. bottom: 82 / 4803
  29614. }
  29615. },
  29616. },
  29617. [
  29618. {
  29619. name: "Macro",
  29620. height: math.unit(190, "feet"),
  29621. default: true
  29622. },
  29623. ]
  29624. ))
  29625. characterMakers.push(() => makeCharacter(
  29626. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29627. {
  29628. front: {
  29629. height: math.unit(6, "feet"),
  29630. weight: math.unit(150, "lb"),
  29631. name: "Front",
  29632. image: {
  29633. source: "./media/characters/myra-rue-delore/front.svg",
  29634. extra: 1340 / 1308,
  29635. bottom: 67 / 1407
  29636. }
  29637. },
  29638. back: {
  29639. height: math.unit(6, "feet"),
  29640. weight: math.unit(150, "lb"),
  29641. name: "Back",
  29642. image: {
  29643. source: "./media/characters/myra-rue-delore/back.svg",
  29644. extra: 1341 / 1310,
  29645. bottom: 40 / 1381
  29646. }
  29647. },
  29648. frontDressed: {
  29649. height: math.unit(6, "feet"),
  29650. weight: math.unit(150, "lb"),
  29651. name: "Front (Dressed)",
  29652. image: {
  29653. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29654. extra: 1340 / 1308,
  29655. bottom: 67 / 1407
  29656. }
  29657. },
  29658. },
  29659. [
  29660. {
  29661. name: "Macro",
  29662. height: math.unit(150, "feet"),
  29663. default: true
  29664. },
  29665. ]
  29666. ))
  29667. characterMakers.push(() => makeCharacter(
  29668. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29669. {
  29670. front: {
  29671. height: math.unit(10, "feet"),
  29672. weight: math.unit(15015, "lb"),
  29673. name: "Front",
  29674. image: {
  29675. source: "./media/characters/fem!plat/front.svg",
  29676. extra: 2799 / 2604,
  29677. bottom: 149 / 2948
  29678. }
  29679. },
  29680. },
  29681. [
  29682. {
  29683. name: "Normal",
  29684. height: math.unit(10, "feet"),
  29685. default: true
  29686. },
  29687. {
  29688. name: "Macro",
  29689. height: math.unit(100, "feet")
  29690. },
  29691. {
  29692. name: "Megamacro",
  29693. height: math.unit(1000, "feet")
  29694. },
  29695. ]
  29696. ))
  29697. characterMakers.push(() => makeCharacter(
  29698. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29699. {
  29700. front: {
  29701. height: math.unit(15 + 5 / 12, "feet"),
  29702. weight: math.unit(4600, "lb"),
  29703. name: "Front",
  29704. image: {
  29705. source: "./media/characters/neapolitan-ananassa/front.svg",
  29706. extra: 2903 / 2736,
  29707. bottom: 0 / 2903
  29708. }
  29709. },
  29710. side: {
  29711. height: math.unit(15 + 5 / 12, "feet"),
  29712. weight: math.unit(4600, "lb"),
  29713. name: "Side",
  29714. image: {
  29715. source: "./media/characters/neapolitan-ananassa/side.svg",
  29716. extra: 2925 / 2719,
  29717. bottom: 0 / 2925
  29718. }
  29719. },
  29720. back: {
  29721. height: math.unit(15 + 5 / 12, "feet"),
  29722. weight: math.unit(4600, "lb"),
  29723. name: "Back",
  29724. image: {
  29725. source: "./media/characters/neapolitan-ananassa/back.svg",
  29726. extra: 2903 / 2736,
  29727. bottom: 0 / 2903
  29728. }
  29729. },
  29730. },
  29731. [
  29732. {
  29733. name: "Normal",
  29734. height: math.unit(15 + 5 / 12, "feet"),
  29735. default: true
  29736. },
  29737. {
  29738. name: "Post-Millenium",
  29739. height: math.unit(35 + 5 / 12, "feet")
  29740. },
  29741. {
  29742. name: "Post-Era",
  29743. height: math.unit(450 + 5 / 12, "feet")
  29744. },
  29745. ]
  29746. ))
  29747. characterMakers.push(() => makeCharacter(
  29748. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29749. {
  29750. front: {
  29751. height: math.unit(300, "meters"),
  29752. weight: math.unit(125000, "tonnes"),
  29753. name: "Front",
  29754. image: {
  29755. source: "./media/characters/pazuzu/front.svg",
  29756. extra: 877 / 794,
  29757. bottom: 47 / 924
  29758. }
  29759. },
  29760. },
  29761. [
  29762. {
  29763. name: "Macro",
  29764. height: math.unit(300, "meters"),
  29765. default: true
  29766. },
  29767. ]
  29768. ))
  29769. characterMakers.push(() => makeCharacter(
  29770. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29771. {
  29772. side: {
  29773. height: math.unit(10 + 7 / 12, "feet"),
  29774. weight: math.unit(2.5, "tons"),
  29775. name: "Side",
  29776. image: {
  29777. source: "./media/characters/aasha/side.svg",
  29778. extra: 1345 / 1245,
  29779. bottom: 111 / 1456
  29780. }
  29781. },
  29782. back: {
  29783. height: math.unit(10 + 7 / 12, "feet"),
  29784. weight: math.unit(2.5, "tons"),
  29785. name: "Back",
  29786. image: {
  29787. source: "./media/characters/aasha/back.svg",
  29788. extra: 1133 / 1057,
  29789. bottom: 257 / 1390
  29790. }
  29791. },
  29792. },
  29793. [
  29794. {
  29795. name: "Normal",
  29796. height: math.unit(10 + 7 / 12, "feet"),
  29797. default: true
  29798. },
  29799. ]
  29800. ))
  29801. characterMakers.push(() => makeCharacter(
  29802. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29803. {
  29804. front: {
  29805. height: math.unit(6 + 3 / 12, "feet"),
  29806. name: "Front",
  29807. image: {
  29808. source: "./media/characters/nevan/front.svg",
  29809. extra: 704 / 704,
  29810. bottom: 28 / 732
  29811. }
  29812. },
  29813. back: {
  29814. height: math.unit(6 + 3 / 12, "feet"),
  29815. name: "Back",
  29816. image: {
  29817. source: "./media/characters/nevan/back.svg",
  29818. extra: 714 / 714,
  29819. bottom: 21 / 735
  29820. }
  29821. },
  29822. frontFlaccid: {
  29823. height: math.unit(6 + 3 / 12, "feet"),
  29824. name: "Front (Flaccid)",
  29825. image: {
  29826. source: "./media/characters/nevan/front-flaccid.svg",
  29827. extra: 704 / 704,
  29828. bottom: 28 / 732
  29829. }
  29830. },
  29831. frontErect: {
  29832. height: math.unit(6 + 3 / 12, "feet"),
  29833. name: "Front (Erect)",
  29834. image: {
  29835. source: "./media/characters/nevan/front-erect.svg",
  29836. extra: 704 / 704,
  29837. bottom: 28 / 732
  29838. }
  29839. },
  29840. backFlaccid: {
  29841. height: math.unit(6 + 3 / 12, "feet"),
  29842. name: "Back (Flaccid)",
  29843. image: {
  29844. source: "./media/characters/nevan/back-flaccid.svg",
  29845. extra: 714 / 714,
  29846. bottom: 21 / 735
  29847. }
  29848. },
  29849. },
  29850. [
  29851. {
  29852. name: "Normal",
  29853. height: math.unit(6 + 3 / 12, "feet"),
  29854. default: true
  29855. },
  29856. ]
  29857. ))
  29858. characterMakers.push(() => makeCharacter(
  29859. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29860. {
  29861. front: {
  29862. height: math.unit(4, "feet"),
  29863. name: "Front",
  29864. image: {
  29865. source: "./media/characters/arhan/front.svg",
  29866. extra: 3368 / 3133,
  29867. bottom: 0 / 3368
  29868. }
  29869. },
  29870. side: {
  29871. height: math.unit(4, "feet"),
  29872. name: "Side",
  29873. image: {
  29874. source: "./media/characters/arhan/side.svg",
  29875. extra: 3347 / 3105,
  29876. bottom: 0 / 3347
  29877. }
  29878. },
  29879. tongue: {
  29880. height: math.unit(1.42, "feet"),
  29881. name: "Tongue",
  29882. image: {
  29883. source: "./media/characters/arhan/tongue.svg"
  29884. }
  29885. },
  29886. head: {
  29887. height: math.unit(0.85, "feet"),
  29888. name: "Head",
  29889. image: {
  29890. source: "./media/characters/arhan/head.svg"
  29891. }
  29892. },
  29893. },
  29894. [
  29895. {
  29896. name: "Normal",
  29897. height: math.unit(4, "feet"),
  29898. default: true
  29899. },
  29900. ]
  29901. ))
  29902. characterMakers.push(() => makeCharacter(
  29903. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29904. {
  29905. front: {
  29906. height: math.unit(5 + 7.5 / 12, "feet"),
  29907. weight: math.unit(120, "lb"),
  29908. name: "Front",
  29909. image: {
  29910. source: "./media/characters/digi-duncan/front.svg",
  29911. extra: 330 / 326,
  29912. bottom: 16 / 346
  29913. }
  29914. },
  29915. side: {
  29916. height: math.unit(5 + 7.5 / 12, "feet"),
  29917. weight: math.unit(120, "lb"),
  29918. name: "Side",
  29919. image: {
  29920. source: "./media/characters/digi-duncan/side.svg",
  29921. extra: 341 / 337,
  29922. bottom: 1 / 342
  29923. }
  29924. },
  29925. back: {
  29926. height: math.unit(5 + 7.5 / 12, "feet"),
  29927. weight: math.unit(120, "lb"),
  29928. name: "Back",
  29929. image: {
  29930. source: "./media/characters/digi-duncan/back.svg",
  29931. extra: 330 / 326,
  29932. bottom: 12 / 342
  29933. }
  29934. },
  29935. },
  29936. [
  29937. {
  29938. name: "Speck",
  29939. height: math.unit(0.25, "mm")
  29940. },
  29941. {
  29942. name: "Micro",
  29943. height: math.unit(5, "mm")
  29944. },
  29945. {
  29946. name: "Tiny",
  29947. height: math.unit(0.5, "inches"),
  29948. default: true
  29949. },
  29950. {
  29951. name: "Human",
  29952. height: math.unit(5 + 7.5 / 12, "feet")
  29953. },
  29954. {
  29955. name: "Minigiant",
  29956. height: math.unit(8 + 5.25, "feet")
  29957. },
  29958. {
  29959. name: "Giant",
  29960. height: math.unit(2000, "feet")
  29961. },
  29962. {
  29963. name: "Mega",
  29964. height: math.unit(371.1, "miles")
  29965. },
  29966. ]
  29967. ))
  29968. characterMakers.push(() => makeCharacter(
  29969. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29970. {
  29971. front: {
  29972. height: math.unit(2, "meters"),
  29973. weight: math.unit(350, "kg"),
  29974. name: "Front",
  29975. image: {
  29976. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29977. extra: 898 / 838,
  29978. bottom: 9 / 907
  29979. }
  29980. },
  29981. },
  29982. [
  29983. {
  29984. name: "Micro",
  29985. height: math.unit(8, "meters")
  29986. },
  29987. {
  29988. name: "Normal",
  29989. height: math.unit(50, "meters"),
  29990. default: true
  29991. },
  29992. {
  29993. name: "Macro",
  29994. height: math.unit(500, "meters")
  29995. },
  29996. ]
  29997. ))
  29998. characterMakers.push(() => makeCharacter(
  29999. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30000. {
  30001. front: {
  30002. height: math.unit(6 + 6 / 12, "feet"),
  30003. name: "Front",
  30004. image: {
  30005. source: "./media/characters/khardesh/front.svg",
  30006. extra: 888 / 797,
  30007. bottom: 25 / 913
  30008. }
  30009. },
  30010. },
  30011. [
  30012. {
  30013. name: "Normal",
  30014. height: math.unit(6 + 6 / 12, "feet"),
  30015. default: true
  30016. },
  30017. {
  30018. name: "Normal+",
  30019. height: math.unit(4, "meters")
  30020. },
  30021. {
  30022. name: "Macro",
  30023. height: math.unit(50, "meters")
  30024. },
  30025. {
  30026. name: "Macro+",
  30027. height: math.unit(100, "meters")
  30028. },
  30029. {
  30030. name: "Megamacro",
  30031. height: math.unit(20, "km")
  30032. },
  30033. ]
  30034. ))
  30035. characterMakers.push(() => makeCharacter(
  30036. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30037. {
  30038. front: {
  30039. height: math.unit(6, "feet"),
  30040. weight: math.unit(150, "lb"),
  30041. name: "Front",
  30042. image: {
  30043. source: "./media/characters/kosho/front.svg",
  30044. extra: 1847 / 1847,
  30045. bottom: 86 / 1933
  30046. }
  30047. },
  30048. },
  30049. [
  30050. {
  30051. name: "Second-stage micro",
  30052. height: math.unit(0.5, "inches")
  30053. },
  30054. {
  30055. name: "First-stage micro",
  30056. height: math.unit(6, "inches")
  30057. },
  30058. {
  30059. name: "Normal",
  30060. height: math.unit(6, "feet"),
  30061. default: true
  30062. },
  30063. {
  30064. name: "First-stage macro",
  30065. height: math.unit(72, "feet")
  30066. },
  30067. {
  30068. name: "Second-stage macro",
  30069. height: math.unit(864, "feet")
  30070. },
  30071. ]
  30072. ))
  30073. characterMakers.push(() => makeCharacter(
  30074. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30075. {
  30076. normal: {
  30077. height: math.unit(4 + 6 / 12, "feet"),
  30078. name: "Normal",
  30079. image: {
  30080. source: "./media/characters/hydra/normal.svg",
  30081. extra: 2833 / 2634,
  30082. bottom: 68 / 2901
  30083. }
  30084. },
  30085. smol: {
  30086. height: math.unit(0.705, "inches"),
  30087. name: "Smol",
  30088. image: {
  30089. source: "./media/characters/hydra/smol.svg",
  30090. extra: 2715 / 2540,
  30091. bottom: 0 / 2715
  30092. }
  30093. },
  30094. },
  30095. [
  30096. {
  30097. name: "Normal",
  30098. height: math.unit(4 + 6 / 12, "feet"),
  30099. default: true
  30100. }
  30101. ]
  30102. ))
  30103. characterMakers.push(() => makeCharacter(
  30104. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30105. {
  30106. front: {
  30107. height: math.unit(0.6, "cm"),
  30108. name: "Front",
  30109. image: {
  30110. source: "./media/characters/daz/front.svg",
  30111. extra: 1682 / 1164,
  30112. bottom: 42 / 1724
  30113. }
  30114. },
  30115. },
  30116. [
  30117. {
  30118. name: "Normal",
  30119. height: math.unit(0.6, "cm"),
  30120. default: true
  30121. },
  30122. ]
  30123. ))
  30124. characterMakers.push(() => makeCharacter(
  30125. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30126. {
  30127. front: {
  30128. height: math.unit(6, "feet"),
  30129. weight: math.unit(235, "lb"),
  30130. name: "Front",
  30131. image: {
  30132. source: "./media/characters/theo-pangolin/front.svg",
  30133. extra: 1996 / 1969,
  30134. bottom: 115 / 2111
  30135. }
  30136. },
  30137. back: {
  30138. height: math.unit(6, "feet"),
  30139. weight: math.unit(235, "lb"),
  30140. name: "Back",
  30141. image: {
  30142. source: "./media/characters/theo-pangolin/back.svg",
  30143. extra: 1979 / 1979,
  30144. bottom: 40 / 2019
  30145. }
  30146. },
  30147. feral: {
  30148. height: math.unit(2, "feet"),
  30149. weight: math.unit(30, "lb"),
  30150. name: "Feral",
  30151. image: {
  30152. source: "./media/characters/theo-pangolin/feral.svg",
  30153. extra: 803 / 791,
  30154. bottom: 181 / 984
  30155. }
  30156. },
  30157. footFive: {
  30158. height: math.unit(1.43, "feet"),
  30159. name: "Foot (Five Toes)",
  30160. image: {
  30161. source: "./media/characters/theo-pangolin/foot-five.svg"
  30162. }
  30163. },
  30164. footFour: {
  30165. height: math.unit(1.43, "feet"),
  30166. name: "Foot (Four Toes)",
  30167. image: {
  30168. source: "./media/characters/theo-pangolin/foot-four.svg"
  30169. }
  30170. },
  30171. handFour: {
  30172. height: math.unit(0.81, "feet"),
  30173. name: "Hand (Four Fingers)",
  30174. image: {
  30175. source: "./media/characters/theo-pangolin/hand-four.svg"
  30176. }
  30177. },
  30178. handThree: {
  30179. height: math.unit(0.81, "feet"),
  30180. name: "Hand (Three Fingers)",
  30181. image: {
  30182. source: "./media/characters/theo-pangolin/hand-three.svg"
  30183. }
  30184. },
  30185. headFront: {
  30186. height: math.unit(1.37, "feet"),
  30187. name: "Head (Front)",
  30188. image: {
  30189. source: "./media/characters/theo-pangolin/head-front.svg"
  30190. }
  30191. },
  30192. headSide: {
  30193. height: math.unit(1.43, "feet"),
  30194. name: "Head (Side)",
  30195. image: {
  30196. source: "./media/characters/theo-pangolin/head-side.svg"
  30197. }
  30198. },
  30199. tongue: {
  30200. height: math.unit(2.29, "feet"),
  30201. name: "Tongue",
  30202. image: {
  30203. source: "./media/characters/theo-pangolin/tongue.svg"
  30204. }
  30205. },
  30206. },
  30207. [
  30208. {
  30209. name: "Normal",
  30210. height: math.unit(6, "feet")
  30211. },
  30212. {
  30213. name: "Macro",
  30214. height: math.unit(400, "feet"),
  30215. default: true
  30216. },
  30217. ]
  30218. ))
  30219. characterMakers.push(() => makeCharacter(
  30220. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30221. {
  30222. front: {
  30223. height: math.unit(6, "inches"),
  30224. weight: math.unit(0.036, "kg"),
  30225. name: "Front",
  30226. image: {
  30227. source: "./media/characters/renée/front.svg",
  30228. extra: 900 / 886,
  30229. bottom: 8 / 908
  30230. }
  30231. },
  30232. },
  30233. [
  30234. {
  30235. name: "Nano",
  30236. height: math.unit(1, "nm")
  30237. },
  30238. {
  30239. name: "Micro",
  30240. height: math.unit(1, "mm")
  30241. },
  30242. {
  30243. name: "Normal",
  30244. height: math.unit(6, "inches")
  30245. },
  30246. {
  30247. name: "Macro",
  30248. height: math.unit(2000, "feet"),
  30249. default: true
  30250. },
  30251. {
  30252. name: "Megamacro",
  30253. height: math.unit(2, "km")
  30254. },
  30255. {
  30256. name: "Gigamacro",
  30257. height: math.unit(2000, "km")
  30258. },
  30259. {
  30260. name: "Teramacro",
  30261. height: math.unit(250000, "km")
  30262. },
  30263. ]
  30264. ))
  30265. characterMakers.push(() => makeCharacter(
  30266. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30267. {
  30268. front: {
  30269. height: math.unit(4, "meters"),
  30270. weight: math.unit(150, "kg"),
  30271. name: "Front",
  30272. image: {
  30273. source: "./media/characters/caledvwlch/front.svg",
  30274. extra: 1760 / 1551,
  30275. bottom: 28 / 1788
  30276. }
  30277. },
  30278. side: {
  30279. height: math.unit(4, "meters"),
  30280. weight: math.unit(150, "kg"),
  30281. name: "Side",
  30282. image: {
  30283. source: "./media/characters/caledvwlch/side.svg",
  30284. extra: 1605 / 1536,
  30285. bottom: 31 / 1636
  30286. }
  30287. },
  30288. back: {
  30289. height: math.unit(4, "meters"),
  30290. weight: math.unit(150, "kg"),
  30291. name: "Back",
  30292. image: {
  30293. source: "./media/characters/caledvwlch/back.svg",
  30294. extra: 1635 / 1565,
  30295. bottom: 27 / 1662
  30296. }
  30297. },
  30298. },
  30299. [
  30300. {
  30301. name: "\"Incognito\"",
  30302. height: math.unit(4, "meters")
  30303. },
  30304. {
  30305. name: "Small rampage",
  30306. height: math.unit(600, "meters")
  30307. },
  30308. {
  30309. name: "Mega",
  30310. height: math.unit(30, "km")
  30311. },
  30312. {
  30313. name: "Home-size",
  30314. height: math.unit(50, "km"),
  30315. default: true
  30316. },
  30317. {
  30318. name: "Giga",
  30319. height: math.unit(300, "km")
  30320. },
  30321. {
  30322. name: "Lounging",
  30323. height: math.unit(11000, "km")
  30324. },
  30325. {
  30326. name: "Planet snacking",
  30327. height: math.unit(2000000, "km")
  30328. },
  30329. ]
  30330. ))
  30331. characterMakers.push(() => makeCharacter(
  30332. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30333. {
  30334. front: {
  30335. height: math.unit(6, "feet"),
  30336. weight: math.unit(215, "lb"),
  30337. name: "Front",
  30338. image: {
  30339. source: "./media/characters/sapphire-svell/front.svg",
  30340. extra: 495 / 455,
  30341. bottom: 20 / 515
  30342. }
  30343. },
  30344. back: {
  30345. height: math.unit(6, "feet"),
  30346. weight: math.unit(216, "lb"),
  30347. name: "Back",
  30348. image: {
  30349. source: "./media/characters/sapphire-svell/back.svg",
  30350. extra: 497 / 477,
  30351. bottom: 7 / 504
  30352. }
  30353. },
  30354. maw: {
  30355. height: math.unit(1.57, "feet"),
  30356. name: "Maw",
  30357. image: {
  30358. source: "./media/characters/sapphire-svell/maw.svg"
  30359. }
  30360. },
  30361. foot: {
  30362. height: math.unit(1.07, "feet"),
  30363. name: "Foot",
  30364. image: {
  30365. source: "./media/characters/sapphire-svell/foot.svg"
  30366. }
  30367. },
  30368. toering: {
  30369. height: math.unit(1.7, "inch"),
  30370. name: "Toering",
  30371. image: {
  30372. source: "./media/characters/sapphire-svell/toering.svg"
  30373. }
  30374. },
  30375. },
  30376. [
  30377. {
  30378. name: "Normal",
  30379. height: math.unit(300, "feet"),
  30380. default: true
  30381. },
  30382. {
  30383. name: "Augmented",
  30384. height: math.unit(1250, "feet")
  30385. },
  30386. {
  30387. name: "Unleashed",
  30388. height: math.unit(3000, "feet")
  30389. },
  30390. ]
  30391. ))
  30392. characterMakers.push(() => makeCharacter(
  30393. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30394. {
  30395. side: {
  30396. height: math.unit(2 + 3 / 12, "feet"),
  30397. weight: math.unit(110, "lb"),
  30398. name: "Side",
  30399. image: {
  30400. source: "./media/characters/glitch-flux/side.svg",
  30401. extra: 997 / 805,
  30402. bottom: 20 / 1017
  30403. }
  30404. },
  30405. },
  30406. [
  30407. {
  30408. name: "Normal",
  30409. height: math.unit(2 + 3 / 12, "feet"),
  30410. default: true
  30411. },
  30412. ]
  30413. ))
  30414. characterMakers.push(() => makeCharacter(
  30415. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30416. {
  30417. front: {
  30418. height: math.unit(4, "meters"),
  30419. name: "Front",
  30420. image: {
  30421. source: "./media/characters/mid/front.svg",
  30422. extra: 507 / 476,
  30423. bottom: 17 / 524
  30424. }
  30425. },
  30426. back: {
  30427. height: math.unit(4, "meters"),
  30428. name: "Back",
  30429. image: {
  30430. source: "./media/characters/mid/back.svg",
  30431. extra: 519 / 487,
  30432. bottom: 7 / 526
  30433. }
  30434. },
  30435. stuck: {
  30436. height: math.unit(2.2, "meters"),
  30437. name: "Stuck",
  30438. image: {
  30439. source: "./media/characters/mid/stuck.svg",
  30440. extra: 1951 / 1869,
  30441. bottom: 88 / 2039
  30442. }
  30443. }
  30444. },
  30445. [
  30446. {
  30447. name: "Normal",
  30448. height: math.unit(4, "meters"),
  30449. default: true
  30450. },
  30451. {
  30452. name: "Big",
  30453. height: math.unit(10, "meters")
  30454. },
  30455. {
  30456. name: "Macro",
  30457. height: math.unit(800, "meters")
  30458. },
  30459. {
  30460. name: "Megamacro",
  30461. height: math.unit(100, "km")
  30462. },
  30463. {
  30464. name: "Overgrown",
  30465. height: math.unit(1, "parsec")
  30466. },
  30467. ]
  30468. ))
  30469. characterMakers.push(() => makeCharacter(
  30470. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30471. {
  30472. front: {
  30473. height: math.unit(2.5, "meters"),
  30474. weight: math.unit(225, "kg"),
  30475. name: "Front",
  30476. image: {
  30477. source: "./media/characters/iris/front.svg",
  30478. extra: 3348 / 3251,
  30479. bottom: 205 / 3553
  30480. }
  30481. },
  30482. maw: {
  30483. height: math.unit(0.56, "meter"),
  30484. name: "Maw",
  30485. image: {
  30486. source: "./media/characters/iris/maw.svg"
  30487. }
  30488. },
  30489. },
  30490. [
  30491. {
  30492. name: "Mewter cat",
  30493. height: math.unit(1.2, "meters")
  30494. },
  30495. {
  30496. name: "Minimacro",
  30497. height: math.unit(2.5, "meters"),
  30498. default: true
  30499. },
  30500. {
  30501. name: "Macro",
  30502. height: math.unit(180, "meters")
  30503. },
  30504. {
  30505. name: "Megamacro",
  30506. height: math.unit(2746, "meters")
  30507. },
  30508. ]
  30509. ))
  30510. characterMakers.push(() => makeCharacter(
  30511. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30512. {
  30513. front: {
  30514. height: math.unit(6, "feet"),
  30515. weight: math.unit(135, "lb"),
  30516. name: "Front",
  30517. image: {
  30518. source: "./media/characters/axel/front.svg",
  30519. extra: 908 / 908,
  30520. bottom: 58 / 966
  30521. }
  30522. },
  30523. side: {
  30524. height: math.unit(6, "feet"),
  30525. weight: math.unit(135, "lb"),
  30526. name: "Side",
  30527. image: {
  30528. source: "./media/characters/axel/side.svg",
  30529. extra: 958 / 958,
  30530. bottom: 11 / 969
  30531. }
  30532. },
  30533. back: {
  30534. height: math.unit(6, "feet"),
  30535. weight: math.unit(135, "lb"),
  30536. name: "Back",
  30537. image: {
  30538. source: "./media/characters/axel/back.svg",
  30539. extra: 887 / 887,
  30540. bottom: 34 / 921
  30541. }
  30542. },
  30543. head: {
  30544. height: math.unit(1.07, "feet"),
  30545. name: "Head",
  30546. image: {
  30547. source: "./media/characters/axel/head.svg"
  30548. }
  30549. },
  30550. beak: {
  30551. height: math.unit(1.4, "feet"),
  30552. name: "Beak",
  30553. image: {
  30554. source: "./media/characters/axel/beak.svg"
  30555. }
  30556. },
  30557. beakSide: {
  30558. height: math.unit(1.4, "feet"),
  30559. name: "Beak Side",
  30560. image: {
  30561. source: "./media/characters/axel/beak-side.svg"
  30562. }
  30563. },
  30564. sheath: {
  30565. height: math.unit(0.5, "feet"),
  30566. name: "Sheath",
  30567. image: {
  30568. source: "./media/characters/axel/sheath.svg"
  30569. }
  30570. },
  30571. dick: {
  30572. height: math.unit(0.98, "feet"),
  30573. name: "Dick",
  30574. image: {
  30575. source: "./media/characters/axel/dick.svg"
  30576. }
  30577. },
  30578. },
  30579. [
  30580. {
  30581. name: "Macro",
  30582. height: math.unit(68, "meters"),
  30583. default: true
  30584. },
  30585. ]
  30586. ))
  30587. characterMakers.push(() => makeCharacter(
  30588. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30589. {
  30590. front: {
  30591. height: math.unit(3.5, "meters"),
  30592. weight: math.unit(1200, "kg"),
  30593. name: "Front",
  30594. image: {
  30595. source: "./media/characters/joanna/front.svg",
  30596. extra: 1596 / 1488,
  30597. bottom: 29 / 1625
  30598. }
  30599. },
  30600. back: {
  30601. height: math.unit(3.5, "meters"),
  30602. weight: math.unit(1200, "kg"),
  30603. name: "Back",
  30604. image: {
  30605. source: "./media/characters/joanna/back.svg",
  30606. extra: 1594 / 1495,
  30607. bottom: 26 / 1620
  30608. }
  30609. },
  30610. frontShorts: {
  30611. height: math.unit(3.5, "meters"),
  30612. weight: math.unit(1200, "kg"),
  30613. name: "Front (Shorts)",
  30614. image: {
  30615. source: "./media/characters/joanna/front-shorts.svg",
  30616. extra: 1596 / 1488,
  30617. bottom: 29 / 1625
  30618. }
  30619. },
  30620. frontBiker: {
  30621. height: math.unit(3.5, "meters"),
  30622. weight: math.unit(1200, "kg"),
  30623. name: "Front (Biker)",
  30624. image: {
  30625. source: "./media/characters/joanna/front-biker.svg",
  30626. extra: 1596 / 1488,
  30627. bottom: 29 / 1625
  30628. }
  30629. },
  30630. backBiker: {
  30631. height: math.unit(3.5, "meters"),
  30632. weight: math.unit(1200, "kg"),
  30633. name: "Back (Biker)",
  30634. image: {
  30635. source: "./media/characters/joanna/back-biker.svg",
  30636. extra: 1594 / 1495,
  30637. bottom: 88 / 1682
  30638. }
  30639. },
  30640. bikeLeft: {
  30641. height: math.unit(2.4, "meters"),
  30642. weight: math.unit(1600, "kg"),
  30643. name: "Bike (Left)",
  30644. image: {
  30645. source: "./media/characters/joanna/bike-left.svg",
  30646. extra: 720 / 720,
  30647. bottom: 8 / 728
  30648. }
  30649. },
  30650. bikeRight: {
  30651. height: math.unit(2.4, "meters"),
  30652. weight: math.unit(1600, "kg"),
  30653. name: "Bike (Right)",
  30654. image: {
  30655. source: "./media/characters/joanna/bike-right.svg",
  30656. extra: 720 / 720,
  30657. bottom: 8 / 728
  30658. }
  30659. },
  30660. },
  30661. [
  30662. {
  30663. name: "Incognito",
  30664. height: math.unit(3.5, "meters")
  30665. },
  30666. {
  30667. name: "Casual Big",
  30668. height: math.unit(200, "meters")
  30669. },
  30670. {
  30671. name: "Macro",
  30672. height: math.unit(600, "meters")
  30673. },
  30674. {
  30675. name: "Original",
  30676. height: math.unit(20, "km"),
  30677. default: true
  30678. },
  30679. {
  30680. name: "Giga",
  30681. height: math.unit(400, "km")
  30682. },
  30683. {
  30684. name: "Lounging",
  30685. height: math.unit(1500, "km")
  30686. },
  30687. {
  30688. name: "Planetary",
  30689. height: math.unit(200000, "km")
  30690. },
  30691. ]
  30692. ))
  30693. characterMakers.push(() => makeCharacter(
  30694. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30695. {
  30696. front: {
  30697. height: math.unit(6, "feet"),
  30698. weight: math.unit(150, "lb"),
  30699. name: "Front",
  30700. image: {
  30701. source: "./media/characters/hugo-sigil/front.svg",
  30702. extra: 522 / 500,
  30703. bottom: 2 / 524
  30704. }
  30705. },
  30706. back: {
  30707. height: math.unit(6, "feet"),
  30708. weight: math.unit(150, "lb"),
  30709. name: "Back",
  30710. image: {
  30711. source: "./media/characters/hugo-sigil/back.svg",
  30712. extra: 519 / 495,
  30713. bottom: 5 / 524
  30714. }
  30715. },
  30716. maw: {
  30717. height: math.unit(1.4, "feet"),
  30718. weight: math.unit(150, "lb"),
  30719. name: "Maw",
  30720. image: {
  30721. source: "./media/characters/hugo-sigil/maw.svg"
  30722. }
  30723. },
  30724. feet: {
  30725. height: math.unit(1.56, "feet"),
  30726. weight: math.unit(150, "lb"),
  30727. name: "Feet",
  30728. image: {
  30729. source: "./media/characters/hugo-sigil/feet.svg",
  30730. extra: 177 / 177,
  30731. bottom: 12 / 189
  30732. }
  30733. },
  30734. },
  30735. [
  30736. {
  30737. name: "Normal",
  30738. height: math.unit(6, "feet")
  30739. },
  30740. {
  30741. name: "Macro",
  30742. height: math.unit(200, "feet"),
  30743. default: true
  30744. },
  30745. ]
  30746. ))
  30747. characterMakers.push(() => makeCharacter(
  30748. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30749. {
  30750. front: {
  30751. height: math.unit(6, "feet"),
  30752. weight: math.unit(150, "lb"),
  30753. name: "Front",
  30754. image: {
  30755. source: "./media/characters/peri/front.svg",
  30756. extra: 2354 / 2233,
  30757. bottom: 49 / 2403
  30758. }
  30759. },
  30760. },
  30761. [
  30762. {
  30763. name: "Really Small",
  30764. height: math.unit(1, "nm")
  30765. },
  30766. {
  30767. name: "Micro",
  30768. height: math.unit(4, "inches")
  30769. },
  30770. {
  30771. name: "Normal",
  30772. height: math.unit(7, "inches"),
  30773. default: true
  30774. },
  30775. {
  30776. name: "Macro",
  30777. height: math.unit(400, "feet")
  30778. },
  30779. {
  30780. name: "Megamacro",
  30781. height: math.unit(100, "miles")
  30782. },
  30783. ]
  30784. ))
  30785. characterMakers.push(() => makeCharacter(
  30786. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30787. {
  30788. frontSlim: {
  30789. height: math.unit(7, "feet"),
  30790. name: "Front (Slim)",
  30791. image: {
  30792. source: "./media/characters/issilora/front-slim.svg",
  30793. extra: 529 / 449,
  30794. bottom: 53 / 582
  30795. }
  30796. },
  30797. sideSlim: {
  30798. height: math.unit(7, "feet"),
  30799. name: "Side (Slim)",
  30800. image: {
  30801. source: "./media/characters/issilora/side-slim.svg",
  30802. extra: 570 / 480,
  30803. bottom: 30 / 600
  30804. }
  30805. },
  30806. backSlim: {
  30807. height: math.unit(7, "feet"),
  30808. name: "Back (Slim)",
  30809. image: {
  30810. source: "./media/characters/issilora/back-slim.svg",
  30811. extra: 537 / 455,
  30812. bottom: 46 / 583
  30813. }
  30814. },
  30815. frontBuff: {
  30816. height: math.unit(7, "feet"),
  30817. name: "Front (Buff)",
  30818. image: {
  30819. source: "./media/characters/issilora/front-buff.svg",
  30820. extra: 2310 / 2035,
  30821. bottom: 335 / 2645
  30822. }
  30823. },
  30824. head: {
  30825. height: math.unit(1.94, "feet"),
  30826. name: "Head",
  30827. image: {
  30828. source: "./media/characters/issilora/head.svg"
  30829. }
  30830. },
  30831. },
  30832. [
  30833. {
  30834. name: "Minimum",
  30835. height: math.unit(7, "feet")
  30836. },
  30837. {
  30838. name: "Comfortable",
  30839. height: math.unit(17, "feet")
  30840. },
  30841. {
  30842. name: "Fun Size",
  30843. height: math.unit(47, "feet")
  30844. },
  30845. {
  30846. name: "Natural Macro",
  30847. height: math.unit(137, "feet"),
  30848. default: true
  30849. },
  30850. {
  30851. name: "Maximum Kaiju",
  30852. height: math.unit(397, "feet")
  30853. },
  30854. ]
  30855. ))
  30856. characterMakers.push(() => makeCharacter(
  30857. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30858. {
  30859. front: {
  30860. height: math.unit(50 + 9/12, "feet"),
  30861. weight: math.unit(32.8, "tons"),
  30862. name: "Front",
  30863. image: {
  30864. source: "./media/characters/irb'iiritaahn/front.svg",
  30865. extra: 1878/1826,
  30866. bottom: 326/2204
  30867. }
  30868. },
  30869. back: {
  30870. height: math.unit(50 + 9/12, "feet"),
  30871. weight: math.unit(32.8, "tons"),
  30872. name: "Back",
  30873. image: {
  30874. source: "./media/characters/irb'iiritaahn/back.svg",
  30875. extra: 2052/2018,
  30876. bottom: 152/2204
  30877. }
  30878. },
  30879. head: {
  30880. height: math.unit(12.86, "feet"),
  30881. name: "Head",
  30882. image: {
  30883. source: "./media/characters/irb'iiritaahn/head.svg"
  30884. }
  30885. },
  30886. maw: {
  30887. height: math.unit(9.66, "feet"),
  30888. name: "Maw",
  30889. image: {
  30890. source: "./media/characters/irb'iiritaahn/maw.svg"
  30891. }
  30892. },
  30893. frontDick: {
  30894. height: math.unit(8.78461, "feet"),
  30895. name: "Front Dick",
  30896. image: {
  30897. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30898. }
  30899. },
  30900. rearDick: {
  30901. height: math.unit(8.78461, "feet"),
  30902. name: "Rear Dick",
  30903. image: {
  30904. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30905. }
  30906. },
  30907. rearDickUnfolded: {
  30908. height: math.unit(8.78, "feet"),
  30909. name: "Rear Dick (Unfolded)",
  30910. image: {
  30911. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30912. }
  30913. },
  30914. wings: {
  30915. height: math.unit(43, "feet"),
  30916. name: "Wings",
  30917. image: {
  30918. source: "./media/characters/irb'iiritaahn/wings.svg"
  30919. }
  30920. },
  30921. },
  30922. [
  30923. {
  30924. name: "Macro",
  30925. height: math.unit(50 + 9/12, "feet"),
  30926. default: true
  30927. },
  30928. ]
  30929. ))
  30930. characterMakers.push(() => makeCharacter(
  30931. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30932. {
  30933. front: {
  30934. height: math.unit(205, "cm"),
  30935. weight: math.unit(102, "kg"),
  30936. name: "Front",
  30937. image: {
  30938. source: "./media/characters/irbisgreif/front.svg",
  30939. extra: 785/706,
  30940. bottom: 13/798
  30941. }
  30942. },
  30943. back: {
  30944. height: math.unit(205, "cm"),
  30945. weight: math.unit(102, "kg"),
  30946. name: "Back",
  30947. image: {
  30948. source: "./media/characters/irbisgreif/back.svg",
  30949. extra: 713/701,
  30950. bottom: 26/739
  30951. }
  30952. },
  30953. frontDressed: {
  30954. height: math.unit(216, "cm"),
  30955. weight: math.unit(102, "kg"),
  30956. name: "Front-dressed",
  30957. image: {
  30958. source: "./media/characters/irbisgreif/front-dressed.svg",
  30959. extra: 902/776,
  30960. bottom: 14/916
  30961. }
  30962. },
  30963. sideDressed: {
  30964. height: math.unit(195, "cm"),
  30965. weight: math.unit(102, "kg"),
  30966. name: "Side-dressed",
  30967. image: {
  30968. source: "./media/characters/irbisgreif/side-dressed.svg",
  30969. extra: 788/688,
  30970. bottom: 21/809
  30971. }
  30972. },
  30973. backDressed: {
  30974. height: math.unit(216, "cm"),
  30975. weight: math.unit(102, "kg"),
  30976. name: "Back-dressed",
  30977. image: {
  30978. source: "./media/characters/irbisgreif/back-dressed.svg",
  30979. extra: 901/783,
  30980. bottom: 10/911
  30981. }
  30982. },
  30983. dick: {
  30984. height: math.unit(0.49, "feet"),
  30985. name: "Dick",
  30986. image: {
  30987. source: "./media/characters/irbisgreif/dick.svg"
  30988. }
  30989. },
  30990. wingTop: {
  30991. height: math.unit(1.93 , "feet"),
  30992. name: "Wing-top",
  30993. image: {
  30994. source: "./media/characters/irbisgreif/wing-top.svg"
  30995. }
  30996. },
  30997. wingBottom: {
  30998. height: math.unit(1.93 , "feet"),
  30999. name: "Wing-bottom",
  31000. image: {
  31001. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31002. }
  31003. },
  31004. },
  31005. [
  31006. {
  31007. name: "Normal",
  31008. height: math.unit(216, "cm"),
  31009. default: true
  31010. },
  31011. ]
  31012. ))
  31013. characterMakers.push(() => makeCharacter(
  31014. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31015. {
  31016. front: {
  31017. height: math.unit(6, "feet"),
  31018. weight: math.unit(150, "lb"),
  31019. name: "Front",
  31020. image: {
  31021. source: "./media/characters/pride/front.svg",
  31022. extra: 1299/1230,
  31023. bottom: 18/1317
  31024. }
  31025. },
  31026. },
  31027. [
  31028. {
  31029. name: "Normal",
  31030. height: math.unit(7, "feet")
  31031. },
  31032. {
  31033. name: "Mini-macro",
  31034. height: math.unit(11, "feet")
  31035. },
  31036. {
  31037. name: "Macro",
  31038. height: math.unit(15, "meters"),
  31039. default: true
  31040. },
  31041. {
  31042. name: "Macro+",
  31043. height: math.unit(40, "meters")
  31044. },
  31045. ]
  31046. ))
  31047. characterMakers.push(() => makeCharacter(
  31048. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31049. {
  31050. front: {
  31051. height: math.unit(4 + 2 / 12, "feet"),
  31052. weight: math.unit(95, "lb"),
  31053. name: "Front",
  31054. image: {
  31055. source: "./media/characters/vaelophis-nyx/front.svg",
  31056. extra: 2532/2330,
  31057. bottom: 0/2532
  31058. }
  31059. },
  31060. back: {
  31061. height: math.unit(4 + 2 / 12, "feet"),
  31062. weight: math.unit(95, "lb"),
  31063. name: "Back",
  31064. image: {
  31065. source: "./media/characters/vaelophis-nyx/back.svg",
  31066. extra: 2484/2361,
  31067. bottom: 0/2484
  31068. }
  31069. },
  31070. feralSide: {
  31071. height: math.unit(2 + 1/12, "feet"),
  31072. weight: math.unit(20, "lb"),
  31073. name: "Feral (Side)",
  31074. image: {
  31075. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31076. extra: 1721/1581,
  31077. bottom: 70/1791
  31078. }
  31079. },
  31080. feralLazing: {
  31081. height: math.unit(1.08, "feet"),
  31082. weight: math.unit(20, "lb"),
  31083. name: "Feral (Lazing)",
  31084. image: {
  31085. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31086. extra: 822/822,
  31087. bottom: 248/1070
  31088. }
  31089. },
  31090. ear: {
  31091. height: math.unit(0.416, "feet"),
  31092. name: "Ear",
  31093. image: {
  31094. source: "./media/characters/vaelophis-nyx/ear.svg"
  31095. }
  31096. },
  31097. eye: {
  31098. height: math.unit(0.0748, "feet"),
  31099. name: "Eye",
  31100. image: {
  31101. source: "./media/characters/vaelophis-nyx/eye.svg"
  31102. }
  31103. },
  31104. mouth: {
  31105. height: math.unit(0.378, "feet"),
  31106. name: "Mouth",
  31107. image: {
  31108. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31109. }
  31110. },
  31111. spade: {
  31112. height: math.unit(0.55, "feet"),
  31113. name: "Spade",
  31114. image: {
  31115. source: "./media/characters/vaelophis-nyx/spade.svg"
  31116. }
  31117. },
  31118. },
  31119. [
  31120. {
  31121. name: "Normal",
  31122. height: math.unit(4 + 2/12, "feet"),
  31123. default: true
  31124. },
  31125. ]
  31126. ))
  31127. characterMakers.push(() => makeCharacter(
  31128. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31129. {
  31130. front: {
  31131. height: math.unit(7, "feet"),
  31132. weight: math.unit(231, "lb"),
  31133. name: "Front",
  31134. image: {
  31135. source: "./media/characters/flux/front.svg",
  31136. extra: 919/871,
  31137. bottom: 0/919
  31138. }
  31139. },
  31140. back: {
  31141. height: math.unit(7, "feet"),
  31142. weight: math.unit(231, "lb"),
  31143. name: "Back",
  31144. image: {
  31145. source: "./media/characters/flux/back.svg",
  31146. extra: 1040/992,
  31147. bottom: 0/1040
  31148. }
  31149. },
  31150. frontDressed: {
  31151. height: math.unit(7, "feet"),
  31152. weight: math.unit(231, "lb"),
  31153. name: "Front (Dressed)",
  31154. image: {
  31155. source: "./media/characters/flux/front-dressed.svg",
  31156. extra: 919/871,
  31157. bottom: 0/919
  31158. }
  31159. },
  31160. feralSide: {
  31161. height: math.unit(5, "feet"),
  31162. weight: math.unit(150, "lb"),
  31163. name: "Feral (Side)",
  31164. image: {
  31165. source: "./media/characters/flux/feral-side.svg",
  31166. extra: 598/528,
  31167. bottom: 28/626
  31168. }
  31169. },
  31170. head: {
  31171. height: math.unit(1.585, "feet"),
  31172. name: "Head",
  31173. image: {
  31174. source: "./media/characters/flux/head.svg"
  31175. }
  31176. },
  31177. headSide: {
  31178. height: math.unit(1.74, "feet"),
  31179. name: "Head (Side)",
  31180. image: {
  31181. source: "./media/characters/flux/head-side.svg"
  31182. }
  31183. },
  31184. headSideFire: {
  31185. height: math.unit(1.76, "feet"),
  31186. name: "Head (Side, Fire)",
  31187. image: {
  31188. source: "./media/characters/flux/head-side-fire.svg"
  31189. }
  31190. },
  31191. },
  31192. [
  31193. {
  31194. name: "Normal",
  31195. height: math.unit(7, "feet"),
  31196. default: true
  31197. },
  31198. ]
  31199. ))
  31200. characterMakers.push(() => makeCharacter(
  31201. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31202. {
  31203. front: {
  31204. height: math.unit(9, "feet"),
  31205. weight: math.unit(1012, "lb"),
  31206. name: "Front",
  31207. image: {
  31208. source: "./media/characters/ulfra-lupae/front.svg",
  31209. extra: 1083/1011,
  31210. bottom: 67/1150
  31211. }
  31212. },
  31213. },
  31214. [
  31215. {
  31216. name: "Micro",
  31217. height: math.unit(6, "inches")
  31218. },
  31219. {
  31220. name: "Socializing",
  31221. height: math.unit(6 + 5/12, "feet")
  31222. },
  31223. {
  31224. name: "Normal",
  31225. height: math.unit(9, "feet"),
  31226. default: true
  31227. },
  31228. {
  31229. name: "Macro",
  31230. height: math.unit(150, "feet")
  31231. },
  31232. ]
  31233. ))
  31234. characterMakers.push(() => makeCharacter(
  31235. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31236. {
  31237. front: {
  31238. height: math.unit(5 + 2/12, "feet"),
  31239. weight: math.unit(120, "lb"),
  31240. name: "Front",
  31241. image: {
  31242. source: "./media/characters/timber/front.svg",
  31243. extra: 2814/2705,
  31244. bottom: 181/2995
  31245. }
  31246. },
  31247. },
  31248. [
  31249. {
  31250. name: "Normal",
  31251. height: math.unit(5 + 2/12, "feet"),
  31252. default: true
  31253. },
  31254. ]
  31255. ))
  31256. characterMakers.push(() => makeCharacter(
  31257. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31258. {
  31259. front: {
  31260. height: math.unit(5 + 7/12, "feet"),
  31261. weight: math.unit(220, "lb"),
  31262. name: "Front",
  31263. image: {
  31264. source: "./media/characters/nicki/front.svg",
  31265. extra: 453/419,
  31266. bottom: 7/460
  31267. }
  31268. },
  31269. frontAlt: {
  31270. height: math.unit(5 + 7/12, "feet"),
  31271. weight: math.unit(220, "lb"),
  31272. name: "Front-alt",
  31273. image: {
  31274. source: "./media/characters/nicki/front-alt.svg",
  31275. extra: 435/411,
  31276. bottom: 12/447
  31277. }
  31278. },
  31279. back: {
  31280. height: math.unit(5 + 7/12, "feet"),
  31281. weight: math.unit(220, "lb"),
  31282. name: "Back",
  31283. image: {
  31284. source: "./media/characters/nicki/back.svg",
  31285. extra: 440/413,
  31286. bottom: 19/459
  31287. }
  31288. },
  31289. taur: {
  31290. height: math.unit(7 + 6/12, "feet"),
  31291. weight: math.unit(700, "lb"),
  31292. name: "Taur",
  31293. image: {
  31294. source: "./media/characters/nicki/taur.svg",
  31295. extra: 975/773,
  31296. bottom: 0/975
  31297. }
  31298. },
  31299. frontNsfw: {
  31300. height: math.unit(5 + 7/12, "feet"),
  31301. weight: math.unit(220, "lb"),
  31302. name: "Front (NSFW)",
  31303. image: {
  31304. source: "./media/characters/nicki/front-nsfw.svg",
  31305. extra: 453/419,
  31306. bottom: 7/460
  31307. }
  31308. },
  31309. frontNsfwAlt: {
  31310. height: math.unit(5 + 7/12, "feet"),
  31311. weight: math.unit(220, "lb"),
  31312. name: "Front (Alt, NSFW)",
  31313. image: {
  31314. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31315. extra: 435/411,
  31316. bottom: 12/447
  31317. }
  31318. },
  31319. backNsfw: {
  31320. height: math.unit(5 + 7/12, "feet"),
  31321. weight: math.unit(220, "lb"),
  31322. name: "Back (NSFW)",
  31323. image: {
  31324. source: "./media/characters/nicki/back-nsfw.svg",
  31325. extra: 440/413,
  31326. bottom: 19/459
  31327. }
  31328. },
  31329. head: {
  31330. height: math.unit(2.1, "feet"),
  31331. name: "Head",
  31332. image: {
  31333. source: "./media/characters/nicki/head.svg"
  31334. }
  31335. },
  31336. paw: {
  31337. height: math.unit(1.88, "feet"),
  31338. name: "Paw",
  31339. image: {
  31340. source: "./media/characters/nicki/paw.svg"
  31341. }
  31342. },
  31343. },
  31344. [
  31345. {
  31346. name: "Normal",
  31347. height: math.unit(5 + 7/12, "feet"),
  31348. default: true
  31349. },
  31350. ]
  31351. ))
  31352. characterMakers.push(() => makeCharacter(
  31353. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31354. {
  31355. front: {
  31356. height: math.unit(7 + 10/12, "feet"),
  31357. weight: math.unit(3.5, "tons"),
  31358. name: "Front",
  31359. image: {
  31360. source: "./media/characters/lee/front.svg",
  31361. extra: 1773/1615,
  31362. bottom: 86/1859
  31363. }
  31364. },
  31365. hand: {
  31366. height: math.unit(1.78, "feet"),
  31367. name: "Hand",
  31368. image: {
  31369. source: "./media/characters/lee/hand.svg"
  31370. }
  31371. },
  31372. maw: {
  31373. height: math.unit(1.18, "feet"),
  31374. name: "Maw",
  31375. image: {
  31376. source: "./media/characters/lee/maw.svg"
  31377. }
  31378. },
  31379. },
  31380. [
  31381. {
  31382. name: "Normal",
  31383. height: math.unit(7 + 10/12, "feet"),
  31384. default: true
  31385. },
  31386. ]
  31387. ))
  31388. characterMakers.push(() => makeCharacter(
  31389. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31390. {
  31391. front: {
  31392. height: math.unit(9, "feet"),
  31393. name: "Front",
  31394. image: {
  31395. source: "./media/characters/guti/front.svg",
  31396. extra: 4551/4355,
  31397. bottom: 123/4674
  31398. }
  31399. },
  31400. tongue: {
  31401. height: math.unit(1, "feet"),
  31402. name: "Tongue",
  31403. image: {
  31404. source: "./media/characters/guti/tongue.svg"
  31405. }
  31406. },
  31407. paw: {
  31408. height: math.unit(1.18, "feet"),
  31409. name: "Paw",
  31410. image: {
  31411. source: "./media/characters/guti/paw.svg"
  31412. }
  31413. },
  31414. },
  31415. [
  31416. {
  31417. name: "Normal",
  31418. height: math.unit(9, "feet"),
  31419. default: true
  31420. },
  31421. ]
  31422. ))
  31423. characterMakers.push(() => makeCharacter(
  31424. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31425. {
  31426. side: {
  31427. height: math.unit(5, "meters"),
  31428. name: "Side",
  31429. image: {
  31430. source: "./media/characters/vesper/side.svg",
  31431. extra: 1605/1518,
  31432. bottom: 0/1605
  31433. }
  31434. },
  31435. },
  31436. [
  31437. {
  31438. name: "Small",
  31439. height: math.unit(5, "meters")
  31440. },
  31441. {
  31442. name: "Sage",
  31443. height: math.unit(100, "meters"),
  31444. default: true
  31445. },
  31446. {
  31447. name: "Fun Size",
  31448. height: math.unit(600, "meters")
  31449. },
  31450. {
  31451. name: "Goddess",
  31452. height: math.unit(20000, "km")
  31453. },
  31454. {
  31455. name: "Maximum",
  31456. height: math.unit(5, "galaxies")
  31457. },
  31458. ]
  31459. ))
  31460. characterMakers.push(() => makeCharacter(
  31461. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31462. {
  31463. front: {
  31464. height: math.unit(6 + 3/12, "feet"),
  31465. weight: math.unit(190, "lb"),
  31466. name: "Front",
  31467. image: {
  31468. source: "./media/characters/gawain/front.svg",
  31469. extra: 2222/2139,
  31470. bottom: 90/2312
  31471. }
  31472. },
  31473. back: {
  31474. height: math.unit(6 + 3/12, "feet"),
  31475. weight: math.unit(190, "lb"),
  31476. name: "Back",
  31477. image: {
  31478. source: "./media/characters/gawain/back.svg",
  31479. extra: 2199/2111,
  31480. bottom: 73/2272
  31481. }
  31482. },
  31483. },
  31484. [
  31485. {
  31486. name: "Normal",
  31487. height: math.unit(6 + 3/12, "feet"),
  31488. default: true
  31489. },
  31490. ]
  31491. ))
  31492. characterMakers.push(() => makeCharacter(
  31493. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31494. {
  31495. side: {
  31496. height: math.unit(3.5, "meters"),
  31497. weight: math.unit(16000, "lb"),
  31498. name: "Side",
  31499. image: {
  31500. source: "./media/characters/dascalti/side.svg",
  31501. extra: 392/273,
  31502. bottom: 47/439
  31503. }
  31504. },
  31505. breath: {
  31506. height: math.unit(7.4, "feet"),
  31507. name: "Breath",
  31508. image: {
  31509. source: "./media/characters/dascalti/breath.svg"
  31510. }
  31511. },
  31512. fed: {
  31513. height: math.unit(3.6, "meters"),
  31514. weight: math.unit(16000, "lb"),
  31515. name: "Fed",
  31516. image: {
  31517. source: "./media/characters/dascalti/fed.svg",
  31518. extra: 1419/820,
  31519. bottom: 95/1514
  31520. }
  31521. },
  31522. },
  31523. [
  31524. {
  31525. name: "Normal",
  31526. height: math.unit(3.5, "meters"),
  31527. default: true
  31528. },
  31529. ]
  31530. ))
  31531. characterMakers.push(() => makeCharacter(
  31532. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31533. {
  31534. front: {
  31535. height: math.unit(3 + 5/12, "feet"),
  31536. name: "Front",
  31537. image: {
  31538. source: "./media/characters/mauve/front.svg",
  31539. extra: 1126/1033,
  31540. bottom: 65/1191
  31541. }
  31542. },
  31543. side: {
  31544. height: math.unit(3 + 5/12, "feet"),
  31545. name: "Side",
  31546. image: {
  31547. source: "./media/characters/mauve/side.svg",
  31548. extra: 1089/1001,
  31549. bottom: 29/1118
  31550. }
  31551. },
  31552. back: {
  31553. height: math.unit(3 + 5/12, "feet"),
  31554. name: "Back",
  31555. image: {
  31556. source: "./media/characters/mauve/back.svg",
  31557. extra: 1173/1053,
  31558. bottom: 109/1282
  31559. }
  31560. },
  31561. },
  31562. [
  31563. {
  31564. name: "Normal",
  31565. height: math.unit(3 + 5/12, "feet"),
  31566. default: true
  31567. },
  31568. ]
  31569. ))
  31570. characterMakers.push(() => makeCharacter(
  31571. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31572. {
  31573. front: {
  31574. height: math.unit(6 + 3/12, "feet"),
  31575. weight: math.unit(430, "lb"),
  31576. name: "Front",
  31577. image: {
  31578. source: "./media/characters/carlos/front.svg",
  31579. extra: 1964/1913,
  31580. bottom: 70/2034
  31581. }
  31582. },
  31583. },
  31584. [
  31585. {
  31586. name: "Normal",
  31587. height: math.unit(6 + 3/12, "feet"),
  31588. default: true
  31589. },
  31590. ]
  31591. ))
  31592. characterMakers.push(() => makeCharacter(
  31593. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31594. {
  31595. back: {
  31596. height: math.unit(5 + 10/12, "feet"),
  31597. weight: math.unit(200, "lb"),
  31598. name: "Back",
  31599. image: {
  31600. source: "./media/characters/jax/back.svg",
  31601. extra: 764/739,
  31602. bottom: 25/789
  31603. }
  31604. },
  31605. },
  31606. [
  31607. {
  31608. name: "Normal",
  31609. height: math.unit(5 + 10/12, "feet"),
  31610. default: true
  31611. },
  31612. ]
  31613. ))
  31614. characterMakers.push(() => makeCharacter(
  31615. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31616. {
  31617. front: {
  31618. height: math.unit(8, "feet"),
  31619. weight: math.unit(250, "lb"),
  31620. name: "Front",
  31621. image: {
  31622. source: "./media/characters/eikthynir/front.svg",
  31623. extra: 1332/1166,
  31624. bottom: 82/1414
  31625. }
  31626. },
  31627. back: {
  31628. height: math.unit(8, "feet"),
  31629. weight: math.unit(250, "lb"),
  31630. name: "Back",
  31631. image: {
  31632. source: "./media/characters/eikthynir/back.svg",
  31633. extra: 1342/1190,
  31634. bottom: 19/1361
  31635. }
  31636. },
  31637. dick: {
  31638. height: math.unit(2.35, "feet"),
  31639. name: "Dick",
  31640. image: {
  31641. source: "./media/characters/eikthynir/dick.svg"
  31642. }
  31643. },
  31644. },
  31645. [
  31646. {
  31647. name: "Normal",
  31648. height: math.unit(8, "feet"),
  31649. default: true
  31650. },
  31651. ]
  31652. ))
  31653. characterMakers.push(() => makeCharacter(
  31654. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31655. {
  31656. front: {
  31657. height: math.unit(99, "meters"),
  31658. weight: math.unit(13000, "tons"),
  31659. name: "Front",
  31660. image: {
  31661. source: "./media/characters/zlmos/front.svg",
  31662. extra: 2202/1992,
  31663. bottom: 315/2517
  31664. }
  31665. },
  31666. },
  31667. [
  31668. {
  31669. name: "Macro",
  31670. height: math.unit(99, "meters"),
  31671. default: true
  31672. },
  31673. ]
  31674. ))
  31675. characterMakers.push(() => makeCharacter(
  31676. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31677. {
  31678. front: {
  31679. height: math.unit(6 + 5/12, "feet"),
  31680. name: "Front",
  31681. image: {
  31682. source: "./media/characters/purri/front.svg",
  31683. extra: 1698/1610,
  31684. bottom: 32/1730
  31685. }
  31686. },
  31687. frontAlt: {
  31688. height: math.unit(6 + 5/12, "feet"),
  31689. name: "Front (Alt)",
  31690. image: {
  31691. source: "./media/characters/purri/front-alt.svg",
  31692. extra: 450/420,
  31693. bottom: 26/476
  31694. }
  31695. },
  31696. boots: {
  31697. height: math.unit(5.5, "feet"),
  31698. name: "Boots",
  31699. image: {
  31700. source: "./media/characters/purri/boots.svg",
  31701. extra: 905/853,
  31702. bottom: 18/923
  31703. }
  31704. },
  31705. lying: {
  31706. height: math.unit(2, "feet"),
  31707. name: "Lying",
  31708. image: {
  31709. source: "./media/characters/purri/lying.svg",
  31710. extra: 940/843,
  31711. bottom: 146/1086
  31712. }
  31713. },
  31714. devious: {
  31715. height: math.unit(1.77, "feet"),
  31716. name: "Devious",
  31717. image: {
  31718. source: "./media/characters/purri/devious.svg",
  31719. extra: 1440/1155,
  31720. bottom: 147/1587
  31721. }
  31722. },
  31723. bean: {
  31724. height: math.unit(1.94, "feet"),
  31725. name: "Bean",
  31726. image: {
  31727. source: "./media/characters/purri/bean.svg"
  31728. }
  31729. },
  31730. },
  31731. [
  31732. {
  31733. name: "Micro",
  31734. height: math.unit(1, "mm")
  31735. },
  31736. {
  31737. name: "Normal",
  31738. height: math.unit(6 + 5/12, "feet"),
  31739. default: true
  31740. },
  31741. {
  31742. name: "Macro :3c",
  31743. height: math.unit(2, "miles")
  31744. },
  31745. ]
  31746. ))
  31747. characterMakers.push(() => makeCharacter(
  31748. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31749. {
  31750. front: {
  31751. height: math.unit(6 + 2/12, "feet"),
  31752. weight: math.unit(250, "lb"),
  31753. name: "Front",
  31754. image: {
  31755. source: "./media/characters/moonlight/front.svg",
  31756. extra: 1044/908,
  31757. bottom: 56/1100
  31758. }
  31759. },
  31760. feral: {
  31761. height: math.unit(3 + 1/12, "feet"),
  31762. weight: math.unit(50, "kg"),
  31763. name: "Feral",
  31764. image: {
  31765. source: "./media/characters/moonlight/feral.svg",
  31766. extra: 3705/2791,
  31767. bottom: 145/3850
  31768. }
  31769. },
  31770. paw: {
  31771. height: math.unit(1, "feet"),
  31772. name: "Paw",
  31773. image: {
  31774. source: "./media/characters/moonlight/paw.svg"
  31775. }
  31776. },
  31777. paws: {
  31778. height: math.unit(0.98, "feet"),
  31779. name: "Paws",
  31780. image: {
  31781. source: "./media/characters/moonlight/paws.svg",
  31782. extra: 939/939,
  31783. bottom: 50/989
  31784. }
  31785. },
  31786. mouth: {
  31787. height: math.unit(0.48, "feet"),
  31788. name: "Mouth",
  31789. image: {
  31790. source: "./media/characters/moonlight/mouth.svg"
  31791. }
  31792. },
  31793. dick: {
  31794. height: math.unit(1.46, "feet"),
  31795. name: "Dick",
  31796. image: {
  31797. source: "./media/characters/moonlight/dick.svg"
  31798. }
  31799. },
  31800. },
  31801. [
  31802. {
  31803. name: "Normal",
  31804. height: math.unit(6 + 2/12, "feet"),
  31805. default: true
  31806. },
  31807. {
  31808. name: "Macro",
  31809. height: math.unit(300, "feet")
  31810. },
  31811. {
  31812. name: "Macro+",
  31813. height: math.unit(1, "mile")
  31814. },
  31815. {
  31816. name: "Mt. Moon",
  31817. height: math.unit(5, "miles")
  31818. },
  31819. {
  31820. name: "Megamacro",
  31821. height: math.unit(15, "miles")
  31822. },
  31823. ]
  31824. ))
  31825. characterMakers.push(() => makeCharacter(
  31826. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31827. {
  31828. back: {
  31829. height: math.unit(6, "feet"),
  31830. weight: math.unit(150, "lb"),
  31831. name: "Back",
  31832. image: {
  31833. source: "./media/characters/sylen/back.svg",
  31834. extra: 1335/1273,
  31835. bottom: 107/1442
  31836. }
  31837. },
  31838. },
  31839. [
  31840. {
  31841. name: "Normal",
  31842. height: math.unit(5 + 5/12, "feet")
  31843. },
  31844. {
  31845. name: "Megamacro",
  31846. height: math.unit(3, "miles"),
  31847. default: true
  31848. },
  31849. ]
  31850. ))
  31851. characterMakers.push(() => makeCharacter(
  31852. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31853. {
  31854. front: {
  31855. height: math.unit(6, "feet"),
  31856. weight: math.unit(190, "lb"),
  31857. name: "Front",
  31858. image: {
  31859. source: "./media/characters/huttser/front.svg",
  31860. extra: 1152/1058,
  31861. bottom: 23/1175
  31862. }
  31863. },
  31864. side: {
  31865. height: math.unit(6, "feet"),
  31866. weight: math.unit(190, "lb"),
  31867. name: "Side",
  31868. image: {
  31869. source: "./media/characters/huttser/side.svg",
  31870. extra: 1174/1065,
  31871. bottom: 18/1192
  31872. }
  31873. },
  31874. back: {
  31875. height: math.unit(6, "feet"),
  31876. weight: math.unit(190, "lb"),
  31877. name: "Back",
  31878. image: {
  31879. source: "./media/characters/huttser/back.svg",
  31880. extra: 1158/1056,
  31881. bottom: 12/1170
  31882. }
  31883. },
  31884. },
  31885. [
  31886. ]
  31887. ))
  31888. characterMakers.push(() => makeCharacter(
  31889. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31890. {
  31891. side: {
  31892. height: math.unit(12 + 9/12, "feet"),
  31893. weight: math.unit(15000, "lb"),
  31894. name: "Side",
  31895. image: {
  31896. source: "./media/characters/faan/side.svg",
  31897. extra: 2747/2697,
  31898. bottom: 0/2747
  31899. }
  31900. },
  31901. front: {
  31902. height: math.unit(12 + 9/12, "feet"),
  31903. weight: math.unit(15000, "lb"),
  31904. name: "Front",
  31905. image: {
  31906. source: "./media/characters/faan/front.svg",
  31907. extra: 607/571,
  31908. bottom: 24/631
  31909. }
  31910. },
  31911. head: {
  31912. height: math.unit(2.85, "feet"),
  31913. name: "Head",
  31914. image: {
  31915. source: "./media/characters/faan/head.svg"
  31916. }
  31917. },
  31918. headAlt: {
  31919. height: math.unit(3.13, "feet"),
  31920. name: "Head-alt",
  31921. image: {
  31922. source: "./media/characters/faan/head-alt.svg"
  31923. }
  31924. },
  31925. },
  31926. [
  31927. {
  31928. name: "Normal",
  31929. height: math.unit(12 + 9/12, "feet"),
  31930. default: true
  31931. },
  31932. ]
  31933. ))
  31934. characterMakers.push(() => makeCharacter(
  31935. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31936. {
  31937. front: {
  31938. height: math.unit(6, "feet"),
  31939. weight: math.unit(300, "lb"),
  31940. name: "Front",
  31941. image: {
  31942. source: "./media/characters/tanio/front.svg",
  31943. extra: 711/673,
  31944. bottom: 25/736
  31945. }
  31946. },
  31947. },
  31948. [
  31949. {
  31950. name: "Normal",
  31951. height: math.unit(6, "feet"),
  31952. default: true
  31953. },
  31954. ]
  31955. ))
  31956. characterMakers.push(() => makeCharacter(
  31957. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31958. {
  31959. front: {
  31960. height: math.unit(3, "inches"),
  31961. name: "Front",
  31962. image: {
  31963. source: "./media/characters/noboru/front.svg",
  31964. extra: 1039/932,
  31965. bottom: 18/1057
  31966. }
  31967. },
  31968. },
  31969. [
  31970. {
  31971. name: "Micro",
  31972. height: math.unit(3, "inches"),
  31973. default: true
  31974. },
  31975. ]
  31976. ))
  31977. characterMakers.push(() => makeCharacter(
  31978. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31979. {
  31980. front: {
  31981. height: math.unit(1.85, "meters"),
  31982. weight: math.unit(80, "kg"),
  31983. name: "Front",
  31984. image: {
  31985. source: "./media/characters/daniel-barrett/front.svg",
  31986. extra: 355/337,
  31987. bottom: 9/364
  31988. }
  31989. },
  31990. },
  31991. [
  31992. {
  31993. name: "Pico",
  31994. height: math.unit(0.0433, "mm")
  31995. },
  31996. {
  31997. name: "Nano",
  31998. height: math.unit(1.5, "mm")
  31999. },
  32000. {
  32001. name: "Micro",
  32002. height: math.unit(5.3, "cm"),
  32003. default: true
  32004. },
  32005. {
  32006. name: "Normal",
  32007. height: math.unit(1.85, "meters")
  32008. },
  32009. {
  32010. name: "Macro",
  32011. height: math.unit(64.7, "meters")
  32012. },
  32013. {
  32014. name: "Megamacro",
  32015. height: math.unit(2.26, "km")
  32016. },
  32017. {
  32018. name: "Gigamacro",
  32019. height: math.unit(79, "km")
  32020. },
  32021. {
  32022. name: "Teramacro",
  32023. height: math.unit(2765, "km")
  32024. },
  32025. {
  32026. name: "Petamacro",
  32027. height: math.unit(96678, "km")
  32028. },
  32029. ]
  32030. ))
  32031. characterMakers.push(() => makeCharacter(
  32032. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32033. {
  32034. front: {
  32035. height: math.unit(30, "meters"),
  32036. weight: math.unit(400, "tons"),
  32037. name: "Front",
  32038. image: {
  32039. source: "./media/characters/zeel/front.svg",
  32040. extra: 2599/2599,
  32041. bottom: 226/2825
  32042. }
  32043. },
  32044. },
  32045. [
  32046. {
  32047. name: "Macro",
  32048. height: math.unit(30, "meters"),
  32049. default: true
  32050. },
  32051. ]
  32052. ))
  32053. characterMakers.push(() => makeCharacter(
  32054. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32055. {
  32056. front: {
  32057. height: math.unit(6 + 7/12, "feet"),
  32058. weight: math.unit(210, "lb"),
  32059. name: "Front",
  32060. image: {
  32061. source: "./media/characters/tarn/front.svg",
  32062. extra: 3517/3220,
  32063. bottom: 91/3608
  32064. }
  32065. },
  32066. back: {
  32067. height: math.unit(6 + 7/12, "feet"),
  32068. weight: math.unit(210, "lb"),
  32069. name: "Back",
  32070. image: {
  32071. source: "./media/characters/tarn/back.svg",
  32072. extra: 3566/3241,
  32073. bottom: 34/3600
  32074. }
  32075. },
  32076. dick: {
  32077. height: math.unit(1.65, "feet"),
  32078. name: "Dick",
  32079. image: {
  32080. source: "./media/characters/tarn/dick.svg"
  32081. }
  32082. },
  32083. paw: {
  32084. height: math.unit(1.80, "feet"),
  32085. name: "Paw",
  32086. image: {
  32087. source: "./media/characters/tarn/paw.svg"
  32088. }
  32089. },
  32090. tongue: {
  32091. height: math.unit(0.97, "feet"),
  32092. name: "Tongue",
  32093. image: {
  32094. source: "./media/characters/tarn/tongue.svg"
  32095. }
  32096. },
  32097. },
  32098. [
  32099. {
  32100. name: "Micro",
  32101. height: math.unit(4, "inches")
  32102. },
  32103. {
  32104. name: "Normal",
  32105. height: math.unit(6 + 7/12, "feet"),
  32106. default: true
  32107. },
  32108. {
  32109. name: "Macro",
  32110. height: math.unit(300, "feet")
  32111. },
  32112. ]
  32113. ))
  32114. characterMakers.push(() => makeCharacter(
  32115. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32116. {
  32117. front: {
  32118. height: math.unit(5 + 7/12, "feet"),
  32119. weight: math.unit(80, "kg"),
  32120. name: "Front",
  32121. image: {
  32122. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32123. extra: 3023/2865,
  32124. bottom: 33/3056
  32125. }
  32126. },
  32127. back: {
  32128. height: math.unit(5 + 7/12, "feet"),
  32129. weight: math.unit(80, "kg"),
  32130. name: "Back",
  32131. image: {
  32132. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32133. extra: 3020/2886,
  32134. bottom: 30/3050
  32135. }
  32136. },
  32137. dick: {
  32138. height: math.unit(0.98, "feet"),
  32139. name: "Dick",
  32140. image: {
  32141. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32142. }
  32143. },
  32144. anatomy: {
  32145. height: math.unit(2.86, "feet"),
  32146. name: "Anatomy",
  32147. image: {
  32148. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32149. }
  32150. },
  32151. },
  32152. [
  32153. {
  32154. name: "Really Small",
  32155. height: math.unit(2, "inches")
  32156. },
  32157. {
  32158. name: "Micro",
  32159. height: math.unit(5.583, "inches")
  32160. },
  32161. {
  32162. name: "Normal",
  32163. height: math.unit(5 + 7/12, "feet"),
  32164. default: true
  32165. },
  32166. {
  32167. name: "Macro",
  32168. height: math.unit(67, "feet")
  32169. },
  32170. {
  32171. name: "Megamacro",
  32172. height: math.unit(134, "feet")
  32173. },
  32174. ]
  32175. ))
  32176. characterMakers.push(() => makeCharacter(
  32177. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32178. {
  32179. front: {
  32180. height: math.unit(9, "feet"),
  32181. weight: math.unit(120, "lb"),
  32182. name: "Front",
  32183. image: {
  32184. source: "./media/characters/sally/front.svg",
  32185. extra: 1506/1349,
  32186. bottom: 66/1572
  32187. }
  32188. },
  32189. },
  32190. [
  32191. {
  32192. name: "Normal",
  32193. height: math.unit(9, "feet"),
  32194. default: true
  32195. },
  32196. ]
  32197. ))
  32198. characterMakers.push(() => makeCharacter(
  32199. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32200. {
  32201. front: {
  32202. height: math.unit(8, "feet"),
  32203. weight: math.unit(900, "lb"),
  32204. name: "Front",
  32205. image: {
  32206. source: "./media/characters/owen/front.svg",
  32207. extra: 1761/1657,
  32208. bottom: 74/1835
  32209. }
  32210. },
  32211. side: {
  32212. height: math.unit(8, "feet"),
  32213. weight: math.unit(900, "lb"),
  32214. name: "Side",
  32215. image: {
  32216. source: "./media/characters/owen/side.svg",
  32217. extra: 1797/1734,
  32218. bottom: 30/1827
  32219. }
  32220. },
  32221. back: {
  32222. height: math.unit(8, "feet"),
  32223. weight: math.unit(900, "lb"),
  32224. name: "Back",
  32225. image: {
  32226. source: "./media/characters/owen/back.svg",
  32227. extra: 1796/1706,
  32228. bottom: 59/1855
  32229. }
  32230. },
  32231. maw: {
  32232. height: math.unit(1.76, "feet"),
  32233. name: "Maw",
  32234. image: {
  32235. source: "./media/characters/owen/maw.svg"
  32236. }
  32237. },
  32238. },
  32239. [
  32240. {
  32241. name: "Normal",
  32242. height: math.unit(8, "feet"),
  32243. default: true
  32244. },
  32245. ]
  32246. ))
  32247. characterMakers.push(() => makeCharacter(
  32248. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32249. {
  32250. front: {
  32251. height: math.unit(4, "feet"),
  32252. weight: math.unit(400, "lb"),
  32253. name: "Front",
  32254. image: {
  32255. source: "./media/characters/ryth/front.svg",
  32256. extra: 1920/1748,
  32257. bottom: 42/1962
  32258. }
  32259. },
  32260. back: {
  32261. height: math.unit(4, "feet"),
  32262. weight: math.unit(400, "lb"),
  32263. name: "Back",
  32264. image: {
  32265. source: "./media/characters/ryth/back.svg",
  32266. extra: 1897/1690,
  32267. bottom: 89/1986
  32268. }
  32269. },
  32270. mouth: {
  32271. height: math.unit(1.39, "feet"),
  32272. name: "Mouth",
  32273. image: {
  32274. source: "./media/characters/ryth/mouth.svg"
  32275. }
  32276. },
  32277. tailmaw: {
  32278. height: math.unit(1.23, "feet"),
  32279. name: "Tailmaw",
  32280. image: {
  32281. source: "./media/characters/ryth/tailmaw.svg"
  32282. }
  32283. },
  32284. goia: {
  32285. height: math.unit(4, "meters"),
  32286. weight: math.unit(10800, "lb"),
  32287. name: "Goia",
  32288. image: {
  32289. source: "./media/characters/ryth/goia.svg",
  32290. extra: 745/640,
  32291. bottom: 107/852
  32292. }
  32293. },
  32294. goiaFront: {
  32295. height: math.unit(4, "meters"),
  32296. weight: math.unit(10800, "lb"),
  32297. name: "Goia (Front)",
  32298. image: {
  32299. source: "./media/characters/ryth/goia-front.svg",
  32300. extra: 750/586,
  32301. bottom: 114/864
  32302. }
  32303. },
  32304. goiaMaw: {
  32305. height: math.unit(5.55, "feet"),
  32306. name: "Goia Maw",
  32307. image: {
  32308. source: "./media/characters/ryth/goia-maw.svg"
  32309. }
  32310. },
  32311. goiaForepaw: {
  32312. height: math.unit(3.5, "feet"),
  32313. name: "Goia Forepaw",
  32314. image: {
  32315. source: "./media/characters/ryth/goia-forepaw.svg"
  32316. }
  32317. },
  32318. goiaHindpaw: {
  32319. height: math.unit(5.55, "feet"),
  32320. name: "Goia Hindpaw",
  32321. image: {
  32322. source: "./media/characters/ryth/goia-hindpaw.svg"
  32323. }
  32324. },
  32325. },
  32326. [
  32327. {
  32328. name: "Normal",
  32329. height: math.unit(4, "feet"),
  32330. default: true
  32331. },
  32332. ]
  32333. ))
  32334. characterMakers.push(() => makeCharacter(
  32335. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32336. {
  32337. front: {
  32338. height: math.unit(7, "feet"),
  32339. weight: math.unit(180, "lb"),
  32340. name: "Front",
  32341. image: {
  32342. source: "./media/characters/necrolance/front.svg",
  32343. extra: 1062/947,
  32344. bottom: 41/1103
  32345. }
  32346. },
  32347. back: {
  32348. height: math.unit(7, "feet"),
  32349. weight: math.unit(180, "lb"),
  32350. name: "Back",
  32351. image: {
  32352. source: "./media/characters/necrolance/back.svg",
  32353. extra: 1045/984,
  32354. bottom: 14/1059
  32355. }
  32356. },
  32357. wing: {
  32358. height: math.unit(2.67, "feet"),
  32359. name: "Wing",
  32360. image: {
  32361. source: "./media/characters/necrolance/wing.svg"
  32362. }
  32363. },
  32364. },
  32365. [
  32366. {
  32367. name: "Normal",
  32368. height: math.unit(7, "feet"),
  32369. default: true
  32370. },
  32371. ]
  32372. ))
  32373. characterMakers.push(() => makeCharacter(
  32374. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32375. {
  32376. front: {
  32377. height: math.unit(76, "meters"),
  32378. weight: math.unit(30000, "tons"),
  32379. name: "Front",
  32380. image: {
  32381. source: "./media/characters/tyler/front.svg",
  32382. extra: 1640/1640,
  32383. bottom: 114/1754
  32384. }
  32385. },
  32386. },
  32387. [
  32388. {
  32389. name: "Macro",
  32390. height: math.unit(76, "meters"),
  32391. default: true
  32392. },
  32393. ]
  32394. ))
  32395. characterMakers.push(() => makeCharacter(
  32396. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32397. {
  32398. front: {
  32399. height: math.unit(4 + 11/12, "feet"),
  32400. weight: math.unit(132, "lb"),
  32401. name: "Front",
  32402. image: {
  32403. source: "./media/characters/icey/front.svg",
  32404. extra: 2750/2550,
  32405. bottom: 33/2783
  32406. }
  32407. },
  32408. back: {
  32409. height: math.unit(4 + 11/12, "feet"),
  32410. weight: math.unit(132, "lb"),
  32411. name: "Back",
  32412. image: {
  32413. source: "./media/characters/icey/back.svg",
  32414. extra: 2624/2481,
  32415. bottom: 35/2659
  32416. }
  32417. },
  32418. },
  32419. [
  32420. {
  32421. name: "Normal",
  32422. height: math.unit(4 + 11/12, "feet"),
  32423. default: true
  32424. },
  32425. ]
  32426. ))
  32427. characterMakers.push(() => makeCharacter(
  32428. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32429. {
  32430. front: {
  32431. height: math.unit(100, "feet"),
  32432. weight: math.unit(0, "lb"),
  32433. name: "Front",
  32434. image: {
  32435. source: "./media/characters/smile/front.svg",
  32436. extra: 2983/2912,
  32437. bottom: 162/3145
  32438. }
  32439. },
  32440. back: {
  32441. height: math.unit(100, "feet"),
  32442. weight: math.unit(0, "lb"),
  32443. name: "Back",
  32444. image: {
  32445. source: "./media/characters/smile/back.svg",
  32446. extra: 3143/3031,
  32447. bottom: 91/3234
  32448. }
  32449. },
  32450. head: {
  32451. height: math.unit(26.3, "feet"),
  32452. weight: math.unit(0, "lb"),
  32453. name: "Head",
  32454. image: {
  32455. source: "./media/characters/smile/head.svg"
  32456. }
  32457. },
  32458. collar: {
  32459. height: math.unit(5.3, "feet"),
  32460. weight: math.unit(0, "lb"),
  32461. name: "Collar",
  32462. image: {
  32463. source: "./media/characters/smile/collar.svg"
  32464. }
  32465. },
  32466. },
  32467. [
  32468. {
  32469. name: "Macro",
  32470. height: math.unit(100, "feet"),
  32471. default: true
  32472. },
  32473. ]
  32474. ))
  32475. characterMakers.push(() => makeCharacter(
  32476. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32477. {
  32478. dragon: {
  32479. height: math.unit(26, "feet"),
  32480. weight: math.unit(36, "tons"),
  32481. name: "Dragon",
  32482. image: {
  32483. source: "./media/characters/arimphae/dragon.svg",
  32484. extra: 1574/983,
  32485. bottom: 357/1931
  32486. }
  32487. },
  32488. drake: {
  32489. height: math.unit(9, "feet"),
  32490. weight: math.unit(1.5, "tons"),
  32491. name: "Drake",
  32492. image: {
  32493. source: "./media/characters/arimphae/drake.svg",
  32494. extra: 1120/925,
  32495. bottom: 435/1555
  32496. }
  32497. },
  32498. },
  32499. [
  32500. {
  32501. name: "Small",
  32502. height: math.unit(26*5/9, "feet")
  32503. },
  32504. {
  32505. name: "Normal",
  32506. height: math.unit(26, "feet"),
  32507. default: true
  32508. },
  32509. ]
  32510. ))
  32511. characterMakers.push(() => makeCharacter(
  32512. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32513. {
  32514. front: {
  32515. height: math.unit(8 + 9/12, "feet"),
  32516. name: "Front",
  32517. image: {
  32518. source: "./media/characters/xander/front.svg",
  32519. extra: 1237/974,
  32520. bottom: 94/1331
  32521. }
  32522. },
  32523. },
  32524. [
  32525. {
  32526. name: "Normal",
  32527. height: math.unit(8 + 9/12, "feet"),
  32528. default: true
  32529. },
  32530. {
  32531. name: "Gaze Grabber",
  32532. height: math.unit(13 + 8/12, "feet")
  32533. },
  32534. {
  32535. name: "Jaw Dropper",
  32536. height: math.unit(27, "feet")
  32537. },
  32538. {
  32539. name: "Show Stopper",
  32540. height: math.unit(136, "feet")
  32541. },
  32542. {
  32543. name: "Superstar",
  32544. height: math.unit(1.9e6, "miles")
  32545. },
  32546. ]
  32547. ))
  32548. characterMakers.push(() => makeCharacter(
  32549. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32550. {
  32551. side: {
  32552. height: math.unit(2100, "feet"),
  32553. name: "Side",
  32554. image: {
  32555. source: "./media/characters/osiris/side.svg",
  32556. extra: 1105/939,
  32557. bottom: 167/1272
  32558. }
  32559. },
  32560. },
  32561. [
  32562. {
  32563. name: "Macro",
  32564. height: math.unit(2100, "feet"),
  32565. default: true
  32566. },
  32567. ]
  32568. ))
  32569. characterMakers.push(() => makeCharacter(
  32570. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32571. {
  32572. front: {
  32573. height: math.unit(6 + 8/12, "feet"),
  32574. weight: math.unit(225, "lb"),
  32575. name: "Front",
  32576. image: {
  32577. source: "./media/characters/rhys-londe/front.svg",
  32578. extra: 2258/2141,
  32579. bottom: 188/2446
  32580. }
  32581. },
  32582. back: {
  32583. height: math.unit(6 + 8/12, "feet"),
  32584. weight: math.unit(225, "lb"),
  32585. name: "Back",
  32586. image: {
  32587. source: "./media/characters/rhys-londe/back.svg",
  32588. extra: 2237/2137,
  32589. bottom: 63/2300
  32590. }
  32591. },
  32592. frontNsfw: {
  32593. height: math.unit(6 + 8/12, "feet"),
  32594. weight: math.unit(225, "lb"),
  32595. name: "Front (NSFW)",
  32596. image: {
  32597. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32598. extra: 2258/2141,
  32599. bottom: 188/2446
  32600. }
  32601. },
  32602. backNsfw: {
  32603. height: math.unit(6 + 8/12, "feet"),
  32604. weight: math.unit(225, "lb"),
  32605. name: "Back (NSFW)",
  32606. image: {
  32607. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32608. extra: 2237/2137,
  32609. bottom: 63/2300
  32610. }
  32611. },
  32612. dick: {
  32613. height: math.unit(30, "inches"),
  32614. name: "Dick",
  32615. image: {
  32616. source: "./media/characters/rhys-londe/dick.svg"
  32617. }
  32618. },
  32619. maw: {
  32620. height: math.unit(1.6, "feet"),
  32621. name: "Maw",
  32622. image: {
  32623. source: "./media/characters/rhys-londe/maw.svg"
  32624. }
  32625. },
  32626. },
  32627. [
  32628. {
  32629. name: "Normal",
  32630. height: math.unit(6 + 8/12, "feet"),
  32631. default: true
  32632. },
  32633. ]
  32634. ))
  32635. characterMakers.push(() => makeCharacter(
  32636. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32637. {
  32638. front: {
  32639. height: math.unit(3 + 10/12, "feet"),
  32640. weight: math.unit(90, "lb"),
  32641. name: "Front",
  32642. image: {
  32643. source: "./media/characters/taivas-ensim/front.svg",
  32644. extra: 1327/1216,
  32645. bottom: 96/1423
  32646. }
  32647. },
  32648. back: {
  32649. height: math.unit(3 + 10/12, "feet"),
  32650. weight: math.unit(90, "lb"),
  32651. name: "Back",
  32652. image: {
  32653. source: "./media/characters/taivas-ensim/back.svg",
  32654. extra: 1355/1247,
  32655. bottom: 11/1366
  32656. }
  32657. },
  32658. frontNsfw: {
  32659. height: math.unit(3 + 10/12, "feet"),
  32660. weight: math.unit(90, "lb"),
  32661. name: "Front (NSFW)",
  32662. image: {
  32663. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32664. extra: 1327/1216,
  32665. bottom: 96/1423
  32666. }
  32667. },
  32668. backNsfw: {
  32669. height: math.unit(3 + 10/12, "feet"),
  32670. weight: math.unit(90, "lb"),
  32671. name: "Back (NSFW)",
  32672. image: {
  32673. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32674. extra: 1355/1247,
  32675. bottom: 11/1366
  32676. }
  32677. },
  32678. },
  32679. [
  32680. {
  32681. name: "Normal",
  32682. height: math.unit(3 + 10/12, "feet"),
  32683. default: true
  32684. },
  32685. ]
  32686. ))
  32687. characterMakers.push(() => makeCharacter(
  32688. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32689. {
  32690. front: {
  32691. height: math.unit(9 + 6/12, "feet"),
  32692. weight: math.unit(940, "lb"),
  32693. name: "Front",
  32694. image: {
  32695. source: "./media/characters/byliss/front.svg",
  32696. extra: 1327/1290,
  32697. bottom: 82/1409
  32698. }
  32699. },
  32700. back: {
  32701. height: math.unit(9 + 6/12, "feet"),
  32702. weight: math.unit(940, "lb"),
  32703. name: "Back",
  32704. image: {
  32705. source: "./media/characters/byliss/back.svg",
  32706. extra: 1376/1349,
  32707. bottom: 9/1385
  32708. }
  32709. },
  32710. frontNsfw: {
  32711. height: math.unit(9 + 6/12, "feet"),
  32712. weight: math.unit(940, "lb"),
  32713. name: "Front (NSFW)",
  32714. image: {
  32715. source: "./media/characters/byliss/front-nsfw.svg",
  32716. extra: 1327/1290,
  32717. bottom: 82/1409
  32718. }
  32719. },
  32720. backNsfw: {
  32721. height: math.unit(9 + 6/12, "feet"),
  32722. weight: math.unit(940, "lb"),
  32723. name: "Back (NSFW)",
  32724. image: {
  32725. source: "./media/characters/byliss/back-nsfw.svg",
  32726. extra: 1376/1349,
  32727. bottom: 9/1385
  32728. }
  32729. },
  32730. },
  32731. [
  32732. {
  32733. name: "Normal",
  32734. height: math.unit(9 + 6/12, "feet"),
  32735. default: true
  32736. },
  32737. ]
  32738. ))
  32739. characterMakers.push(() => makeCharacter(
  32740. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32741. {
  32742. front: {
  32743. height: math.unit(5 + 2/12, "feet"),
  32744. weight: math.unit(200, "lb"),
  32745. name: "Front",
  32746. image: {
  32747. source: "./media/characters/noraly/front.svg",
  32748. extra: 4985/4773,
  32749. bottom: 150/5135
  32750. }
  32751. },
  32752. full: {
  32753. height: math.unit(5 + 2/12, "feet"),
  32754. weight: math.unit(164, "lb"),
  32755. name: "Full",
  32756. image: {
  32757. source: "./media/characters/noraly/full.svg",
  32758. extra: 1114/1059,
  32759. bottom: 35/1149
  32760. }
  32761. },
  32762. fuller: {
  32763. height: math.unit(5 + 2/12, "feet"),
  32764. weight: math.unit(230, "lb"),
  32765. name: "Fuller",
  32766. image: {
  32767. source: "./media/characters/noraly/fuller.svg",
  32768. extra: 1114/1059,
  32769. bottom: 35/1149
  32770. }
  32771. },
  32772. fullest: {
  32773. height: math.unit(5 + 2/12, "feet"),
  32774. weight: math.unit(300, "lb"),
  32775. name: "Fullest",
  32776. image: {
  32777. source: "./media/characters/noraly/fullest.svg",
  32778. extra: 1114/1059,
  32779. bottom: 35/1149
  32780. }
  32781. },
  32782. },
  32783. [
  32784. {
  32785. name: "Normal",
  32786. height: math.unit(5 + 2/12, "feet"),
  32787. default: true
  32788. },
  32789. ]
  32790. ))
  32791. characterMakers.push(() => makeCharacter(
  32792. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32793. {
  32794. front: {
  32795. height: math.unit(5 + 2/12, "feet"),
  32796. weight: math.unit(210, "lb"),
  32797. name: "Front",
  32798. image: {
  32799. source: "./media/characters/pera/front.svg",
  32800. extra: 1560/1531,
  32801. bottom: 165/1725
  32802. }
  32803. },
  32804. back: {
  32805. height: math.unit(5 + 2/12, "feet"),
  32806. weight: math.unit(210, "lb"),
  32807. name: "Back",
  32808. image: {
  32809. source: "./media/characters/pera/back.svg",
  32810. extra: 1523/1493,
  32811. bottom: 152/1675
  32812. }
  32813. },
  32814. dick: {
  32815. height: math.unit(2.4, "feet"),
  32816. name: "Dick",
  32817. image: {
  32818. source: "./media/characters/pera/dick.svg"
  32819. }
  32820. },
  32821. },
  32822. [
  32823. {
  32824. name: "Normal",
  32825. height: math.unit(5 + 2/12, "feet"),
  32826. default: true
  32827. },
  32828. ]
  32829. ))
  32830. characterMakers.push(() => makeCharacter(
  32831. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32832. {
  32833. front: {
  32834. height: math.unit(12, "feet"),
  32835. weight: math.unit(3200, "lb"),
  32836. name: "Front",
  32837. image: {
  32838. source: "./media/characters/julian/front.svg",
  32839. extra: 2962/2701,
  32840. bottom: 184/3146
  32841. }
  32842. },
  32843. maw: {
  32844. height: math.unit(5.35, "feet"),
  32845. name: "Maw",
  32846. image: {
  32847. source: "./media/characters/julian/maw.svg"
  32848. }
  32849. },
  32850. paw: {
  32851. height: math.unit(3.07, "feet"),
  32852. name: "Paw",
  32853. image: {
  32854. source: "./media/characters/julian/paw.svg"
  32855. }
  32856. },
  32857. },
  32858. [
  32859. {
  32860. name: "Default",
  32861. height: math.unit(12, "feet"),
  32862. default: true
  32863. },
  32864. {
  32865. name: "Big",
  32866. height: math.unit(50, "feet")
  32867. },
  32868. {
  32869. name: "Really Big",
  32870. height: math.unit(1, "mile")
  32871. },
  32872. {
  32873. name: "Extremely Big",
  32874. height: math.unit(100, "miles")
  32875. },
  32876. {
  32877. name: "Planet Hugger",
  32878. height: math.unit(200, "megameters")
  32879. },
  32880. {
  32881. name: "Unreasonably Big",
  32882. height: math.unit(1e300, "meters")
  32883. },
  32884. ]
  32885. ))
  32886. characterMakers.push(() => makeCharacter(
  32887. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32888. {
  32889. solgooleo: {
  32890. height: math.unit(4, "meters"),
  32891. weight: math.unit(6000*1.5, "kg"),
  32892. volume: math.unit(6000, "liters"),
  32893. name: "Solgooleo",
  32894. image: {
  32895. source: "./media/characters/pi/solgooleo.svg",
  32896. extra: 388/331,
  32897. bottom: 29/417
  32898. }
  32899. },
  32900. },
  32901. [
  32902. {
  32903. name: "Normal",
  32904. height: math.unit(4, "meters"),
  32905. default: true
  32906. },
  32907. ]
  32908. ))
  32909. characterMakers.push(() => makeCharacter(
  32910. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32911. {
  32912. front: {
  32913. height: math.unit(8, "feet"),
  32914. weight: math.unit(4, "tons"),
  32915. name: "Front",
  32916. image: {
  32917. source: "./media/characters/shaun/front.svg",
  32918. extra: 503/495,
  32919. bottom: 20/523
  32920. }
  32921. },
  32922. back: {
  32923. height: math.unit(8, "feet"),
  32924. weight: math.unit(4, "tons"),
  32925. name: "Back",
  32926. image: {
  32927. source: "./media/characters/shaun/back.svg",
  32928. extra: 487/480,
  32929. bottom: 20/507
  32930. }
  32931. },
  32932. },
  32933. [
  32934. {
  32935. name: "Lorg",
  32936. height: math.unit(8, "feet"),
  32937. default: true
  32938. },
  32939. ]
  32940. ))
  32941. characterMakers.push(() => makeCharacter(
  32942. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32943. {
  32944. front: {
  32945. height: math.unit(7, "feet"),
  32946. name: "Front",
  32947. image: {
  32948. source: "./media/characters/sini/front.svg",
  32949. extra: 726/678,
  32950. bottom: 35/761
  32951. }
  32952. },
  32953. back: {
  32954. height: math.unit(7, "feet"),
  32955. name: "Back",
  32956. image: {
  32957. source: "./media/characters/sini/back.svg",
  32958. extra: 743/701,
  32959. bottom: 12/755
  32960. }
  32961. },
  32962. mawAnthro: {
  32963. height: math.unit(2.14, "feet"),
  32964. name: "Maw (Anthro)",
  32965. image: {
  32966. source: "./media/characters/sini/maw-anthro.svg"
  32967. }
  32968. },
  32969. dick: {
  32970. height: math.unit(1.45, "feet"),
  32971. name: "Dick (Anthro)",
  32972. image: {
  32973. source: "./media/characters/sini/dick-anthro.svg"
  32974. }
  32975. },
  32976. feral: {
  32977. height: math.unit(16, "feet"),
  32978. name: "Feral",
  32979. image: {
  32980. source: "./media/characters/sini/feral.svg",
  32981. extra: 814/605,
  32982. bottom: 11/825
  32983. }
  32984. },
  32985. mawFeral: {
  32986. height: math.unit(5.66, "feet"),
  32987. name: "Maw-feral",
  32988. image: {
  32989. source: "./media/characters/sini/maw-feral.svg"
  32990. }
  32991. },
  32992. footFeral: {
  32993. height: math.unit(5.17, "feet"),
  32994. name: "Foot-feral",
  32995. image: {
  32996. source: "./media/characters/sini/foot-feral.svg"
  32997. }
  32998. },
  32999. },
  33000. [
  33001. {
  33002. name: "Normal",
  33003. height: math.unit(7, "feet"),
  33004. default: true
  33005. },
  33006. ]
  33007. ))
  33008. characterMakers.push(() => makeCharacter(
  33009. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33010. {
  33011. side: {
  33012. height: math.unit(13, "meters"),
  33013. weight: math.unit(9072, "kg"),
  33014. name: "Side",
  33015. image: {
  33016. source: "./media/characters/raylldo/side.svg",
  33017. extra: 403/344,
  33018. bottom: 42/445
  33019. }
  33020. },
  33021. leaping: {
  33022. height: math.unit(12.3, "meters"),
  33023. weight: math.unit(9072, "kg"),
  33024. name: "Leaping",
  33025. image: {
  33026. source: "./media/characters/raylldo/leaping.svg",
  33027. extra: 470/249,
  33028. bottom: 13/483
  33029. }
  33030. },
  33031. flying: {
  33032. height: math.unit(18, "meters"),
  33033. weight: math.unit(9072, "kg"),
  33034. name: "Flying",
  33035. image: {
  33036. source: "./media/characters/raylldo/flying.svg"
  33037. }
  33038. },
  33039. head: {
  33040. height: math.unit(5.85, "meters"),
  33041. name: "Head",
  33042. image: {
  33043. source: "./media/characters/raylldo/head.svg"
  33044. }
  33045. },
  33046. maw: {
  33047. height: math.unit(5.32, "meters"),
  33048. name: "Maw",
  33049. image: {
  33050. source: "./media/characters/raylldo/maw.svg"
  33051. }
  33052. },
  33053. eye: {
  33054. height: math.unit(0.54, "meters"),
  33055. name: "Eye",
  33056. image: {
  33057. source: "./media/characters/raylldo/eye.svg"
  33058. }
  33059. },
  33060. },
  33061. [
  33062. {
  33063. name: "Normal",
  33064. height: math.unit(13, "meters"),
  33065. default: true
  33066. },
  33067. ]
  33068. ))
  33069. characterMakers.push(() => makeCharacter(
  33070. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33071. {
  33072. anthroFront: {
  33073. height: math.unit(9, "feet"),
  33074. weight: math.unit(600, "lb"),
  33075. name: "Anthro (Front)",
  33076. image: {
  33077. source: "./media/characters/glint/anthro-front.svg",
  33078. extra: 1097/1018,
  33079. bottom: 28/1125
  33080. }
  33081. },
  33082. anthroBack: {
  33083. height: math.unit(9, "feet"),
  33084. weight: math.unit(600, "lb"),
  33085. name: "Anthro (Back)",
  33086. image: {
  33087. source: "./media/characters/glint/anthro-back.svg",
  33088. extra: 1154/997,
  33089. bottom: 36/1190
  33090. }
  33091. },
  33092. feral: {
  33093. height: math.unit(11, "feet"),
  33094. weight: math.unit(50000, "lb"),
  33095. name: "Feral",
  33096. image: {
  33097. source: "./media/characters/glint/feral.svg",
  33098. extra: 3035/1585,
  33099. bottom: 1169/4204
  33100. }
  33101. },
  33102. dickAnthro: {
  33103. height: math.unit(0.7, "meters"),
  33104. name: "Dick (Anthro)",
  33105. image: {
  33106. source: "./media/characters/glint/dick-anthro.svg"
  33107. }
  33108. },
  33109. dickFeral: {
  33110. height: math.unit(2.65, "meters"),
  33111. name: "Dick (Feral)",
  33112. image: {
  33113. source: "./media/characters/glint/dick-feral.svg"
  33114. }
  33115. },
  33116. slitHidden: {
  33117. height: math.unit(5.85, "meters"),
  33118. name: "Slit (Hidden)",
  33119. image: {
  33120. source: "./media/characters/glint/slit-hidden.svg"
  33121. }
  33122. },
  33123. slitErect: {
  33124. height: math.unit(5.85, "meters"),
  33125. name: "Slit (Erect)",
  33126. image: {
  33127. source: "./media/characters/glint/slit-erect.svg"
  33128. }
  33129. },
  33130. mawAnthro: {
  33131. height: math.unit(0.63, "meters"),
  33132. name: "Maw (Anthro)",
  33133. image: {
  33134. source: "./media/characters/glint/maw.svg"
  33135. }
  33136. },
  33137. mawFeral: {
  33138. height: math.unit(2.89, "meters"),
  33139. name: "Maw (Feral)",
  33140. image: {
  33141. source: "./media/characters/glint/maw.svg"
  33142. }
  33143. },
  33144. },
  33145. [
  33146. {
  33147. name: "Normal",
  33148. height: math.unit(9, "feet"),
  33149. default: true
  33150. },
  33151. ]
  33152. ))
  33153. characterMakers.push(() => makeCharacter(
  33154. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33155. {
  33156. side: {
  33157. height: math.unit(15, "feet"),
  33158. weight: math.unit(5000, "kg"),
  33159. name: "Side",
  33160. image: {
  33161. source: "./media/characters/kairne/side.svg",
  33162. extra: 979/811,
  33163. bottom: 13/992
  33164. }
  33165. },
  33166. front: {
  33167. height: math.unit(15, "feet"),
  33168. weight: math.unit(5000, "kg"),
  33169. name: "Front",
  33170. image: {
  33171. source: "./media/characters/kairne/front.svg",
  33172. extra: 908/814,
  33173. bottom: 26/934
  33174. }
  33175. },
  33176. sideNsfw: {
  33177. height: math.unit(15, "feet"),
  33178. weight: math.unit(5000, "kg"),
  33179. name: "Side (NSFW)",
  33180. image: {
  33181. source: "./media/characters/kairne/side-nsfw.svg",
  33182. extra: 979/811,
  33183. bottom: 13/992
  33184. }
  33185. },
  33186. frontNsfw: {
  33187. height: math.unit(15, "feet"),
  33188. weight: math.unit(5000, "kg"),
  33189. name: "Front (NSFW)",
  33190. image: {
  33191. source: "./media/characters/kairne/front-nsfw.svg",
  33192. extra: 908/814,
  33193. bottom: 26/934
  33194. }
  33195. },
  33196. dickCaged: {
  33197. height: math.unit(0.65, "meters"),
  33198. name: "Dick-caged",
  33199. image: {
  33200. source: "./media/characters/kairne/dick-caged.svg"
  33201. }
  33202. },
  33203. dick: {
  33204. height: math.unit(0.79, "meters"),
  33205. name: "Dick",
  33206. image: {
  33207. source: "./media/characters/kairne/dick.svg"
  33208. }
  33209. },
  33210. genitals: {
  33211. height: math.unit(1.29, "meters"),
  33212. name: "Genitals",
  33213. image: {
  33214. source: "./media/characters/kairne/genitals.svg"
  33215. }
  33216. },
  33217. maw: {
  33218. height: math.unit(1.73, "meters"),
  33219. name: "Maw",
  33220. image: {
  33221. source: "./media/characters/kairne/maw.svg"
  33222. }
  33223. },
  33224. },
  33225. [
  33226. {
  33227. name: "Normal",
  33228. height: math.unit(15, "feet"),
  33229. default: true
  33230. },
  33231. ]
  33232. ))
  33233. characterMakers.push(() => makeCharacter(
  33234. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33235. {
  33236. front: {
  33237. height: math.unit(5 + 8/12, "feet"),
  33238. weight: math.unit(139, "lb"),
  33239. name: "Front",
  33240. image: {
  33241. source: "./media/characters/biscuit-jackal/front.svg",
  33242. extra: 2106/1961,
  33243. bottom: 58/2164
  33244. }
  33245. },
  33246. back: {
  33247. height: math.unit(5 + 8/12, "feet"),
  33248. weight: math.unit(139, "lb"),
  33249. name: "Back",
  33250. image: {
  33251. source: "./media/characters/biscuit-jackal/back.svg",
  33252. extra: 2132/1976,
  33253. bottom: 57/2189
  33254. }
  33255. },
  33256. werejackal: {
  33257. height: math.unit(6 + 3/12, "feet"),
  33258. weight: math.unit(188, "lb"),
  33259. name: "Werejackal",
  33260. image: {
  33261. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33262. extra: 2373/2178,
  33263. bottom: 53/2426
  33264. }
  33265. },
  33266. },
  33267. [
  33268. {
  33269. name: "Normal",
  33270. height: math.unit(5 + 8/12, "feet"),
  33271. default: true
  33272. },
  33273. ]
  33274. ))
  33275. characterMakers.push(() => makeCharacter(
  33276. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33277. {
  33278. front: {
  33279. height: math.unit(140, "cm"),
  33280. weight: math.unit(45, "kg"),
  33281. name: "Front",
  33282. image: {
  33283. source: "./media/characters/tayra-white/front.svg",
  33284. extra: 2229/2192,
  33285. bottom: 75/2304
  33286. }
  33287. },
  33288. },
  33289. [
  33290. {
  33291. name: "Normal",
  33292. height: math.unit(140, "cm"),
  33293. default: true
  33294. },
  33295. ]
  33296. ))
  33297. characterMakers.push(() => makeCharacter(
  33298. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33299. {
  33300. front: {
  33301. height: math.unit(4 + 5/12, "feet"),
  33302. name: "Front",
  33303. image: {
  33304. source: "./media/characters/scoop/front.svg",
  33305. extra: 1257/1136,
  33306. bottom: 69/1326
  33307. }
  33308. },
  33309. back: {
  33310. height: math.unit(4 + 5/12, "feet"),
  33311. name: "Back",
  33312. image: {
  33313. source: "./media/characters/scoop/back.svg",
  33314. extra: 1321/1152,
  33315. bottom: 32/1353
  33316. }
  33317. },
  33318. maw: {
  33319. height: math.unit(0.68, "feet"),
  33320. name: "Maw",
  33321. image: {
  33322. source: "./media/characters/scoop/maw.svg"
  33323. }
  33324. },
  33325. },
  33326. [
  33327. {
  33328. name: "Really Small",
  33329. height: math.unit(1, "mm")
  33330. },
  33331. {
  33332. name: "Micro",
  33333. height: math.unit(1, "inch")
  33334. },
  33335. {
  33336. name: "Normal",
  33337. height: math.unit(4 + 5/12, "feet"),
  33338. default: true
  33339. },
  33340. {
  33341. name: "Macro",
  33342. height: math.unit(200, "feet")
  33343. },
  33344. {
  33345. name: "Megamacro",
  33346. height: math.unit(3240, "feet")
  33347. },
  33348. {
  33349. name: "Teramacro",
  33350. height: math.unit(2500, "miles")
  33351. },
  33352. ]
  33353. ))
  33354. characterMakers.push(() => makeCharacter(
  33355. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33356. {
  33357. front: {
  33358. height: math.unit(15 + 7/12, "feet"),
  33359. name: "Front",
  33360. image: {
  33361. source: "./media/characters/saphinara/front.svg",
  33362. extra: 604/546,
  33363. bottom: 19/623
  33364. }
  33365. },
  33366. side: {
  33367. height: math.unit(15 + 7/12, "feet"),
  33368. name: "Side",
  33369. image: {
  33370. source: "./media/characters/saphinara/side.svg",
  33371. extra: 605/547,
  33372. bottom: 6/611
  33373. }
  33374. },
  33375. back: {
  33376. height: math.unit(15 + 7/12, "feet"),
  33377. name: "Back",
  33378. image: {
  33379. source: "./media/characters/saphinara/back.svg",
  33380. extra: 591/531,
  33381. bottom: 13/604
  33382. }
  33383. },
  33384. frontTail: {
  33385. height: math.unit(15 + 7/12, "feet"),
  33386. name: "Front (Full Tail)",
  33387. image: {
  33388. source: "./media/characters/saphinara/front-tail.svg",
  33389. extra: 748/547,
  33390. bottom: 66/814
  33391. }
  33392. },
  33393. },
  33394. [
  33395. {
  33396. name: "Normal",
  33397. height: math.unit(15 + 7/12, "feet"),
  33398. default: true
  33399. },
  33400. {
  33401. name: "Angry",
  33402. height: math.unit(30 + 6/12, "feet")
  33403. },
  33404. {
  33405. name: "Enraged",
  33406. height: math.unit(102 + 1/12, "feet")
  33407. },
  33408. ]
  33409. ))
  33410. characterMakers.push(() => makeCharacter(
  33411. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  33412. {
  33413. front: {
  33414. height: math.unit(6 + 8/12, "feet"),
  33415. weight: math.unit(300, "lb"),
  33416. name: "Front",
  33417. image: {
  33418. source: "./media/characters/jrain/front.svg",
  33419. extra: 3039/2865,
  33420. bottom: 399/3438
  33421. }
  33422. },
  33423. back: {
  33424. height: math.unit(6 + 8/12, "feet"),
  33425. weight: math.unit(300, "lb"),
  33426. name: "Back",
  33427. image: {
  33428. source: "./media/characters/jrain/back.svg",
  33429. extra: 3089/2938,
  33430. bottom: 172/3261
  33431. }
  33432. },
  33433. head: {
  33434. height: math.unit(2.14, "feet"),
  33435. name: "Head",
  33436. image: {
  33437. source: "./media/characters/jrain/head.svg"
  33438. }
  33439. },
  33440. maw: {
  33441. height: math.unit(1.77, "feet"),
  33442. name: "Maw",
  33443. image: {
  33444. source: "./media/characters/jrain/maw.svg"
  33445. }
  33446. },
  33447. leftHand: {
  33448. height: math.unit(1.1, "feet"),
  33449. name: "Left Hand",
  33450. image: {
  33451. source: "./media/characters/jrain/left-hand.svg"
  33452. }
  33453. },
  33454. rightHand: {
  33455. height: math.unit(1.1, "feet"),
  33456. name: "Right Hand",
  33457. image: {
  33458. source: "./media/characters/jrain/right-hand.svg"
  33459. }
  33460. },
  33461. eye: {
  33462. height: math.unit(0.35, "feet"),
  33463. name: "Eye",
  33464. image: {
  33465. source: "./media/characters/jrain/eye.svg"
  33466. }
  33467. },
  33468. },
  33469. [
  33470. {
  33471. name: "Normal",
  33472. height: math.unit(6 + 8/12, "feet"),
  33473. default: true
  33474. },
  33475. {
  33476. name: "Casually Large",
  33477. height: math.unit(25, "feet")
  33478. },
  33479. {
  33480. name: "Giant",
  33481. height: math.unit(100, "feet")
  33482. },
  33483. {
  33484. name: "Kaiju",
  33485. height: math.unit(300, "feet")
  33486. },
  33487. ]
  33488. ))
  33489. characterMakers.push(() => makeCharacter(
  33490. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33491. {
  33492. dragon: {
  33493. height: math.unit(5, "meters"),
  33494. name: "Dragon",
  33495. image: {
  33496. source: "./media/characters/sabrina/dragon.svg",
  33497. extra: 3670 / 2365,
  33498. bottom: 333 / 4003
  33499. }
  33500. },
  33501. gryphon: {
  33502. height: math.unit(3, "meters"),
  33503. name: "Gryphon",
  33504. image: {
  33505. source: "./media/characters/sabrina/gryphon.svg",
  33506. extra: 1576 / 945,
  33507. bottom: 71 / 1647
  33508. }
  33509. },
  33510. snake: {
  33511. height: math.unit(12, "meters"),
  33512. name: "Snake",
  33513. image: {
  33514. source: "./media/characters/sabrina/snake.svg",
  33515. extra: 1758 / 1320,
  33516. bottom: 186 / 1944
  33517. }
  33518. },
  33519. collar: {
  33520. height: math.unit(1.86, "meters"),
  33521. name: "Collar",
  33522. image: {
  33523. source: "./media/characters/sabrina/collar.svg"
  33524. }
  33525. },
  33526. eye: {
  33527. height: math.unit(0.53, "meters"),
  33528. name: "Eye",
  33529. image: {
  33530. source: "./media/characters/sabrina/eye.svg"
  33531. }
  33532. },
  33533. foot: {
  33534. height: math.unit(1.86, "meters"),
  33535. name: "Foot",
  33536. image: {
  33537. source: "./media/characters/sabrina/foot.svg"
  33538. }
  33539. },
  33540. hand: {
  33541. height: math.unit(1.32, "meters"),
  33542. name: "Hand",
  33543. image: {
  33544. source: "./media/characters/sabrina/hand.svg"
  33545. }
  33546. },
  33547. head: {
  33548. height: math.unit(2.44, "meters"),
  33549. name: "Head",
  33550. image: {
  33551. source: "./media/characters/sabrina/head.svg"
  33552. }
  33553. },
  33554. headAngry: {
  33555. height: math.unit(2.44, "meters"),
  33556. name: "Head (Angry))",
  33557. image: {
  33558. source: "./media/characters/sabrina/head-angry.svg"
  33559. }
  33560. },
  33561. maw: {
  33562. height: math.unit(1.65, "meters"),
  33563. name: "Maw",
  33564. image: {
  33565. source: "./media/characters/sabrina/maw.svg"
  33566. }
  33567. },
  33568. spikes: {
  33569. height: math.unit(1.69, "meters"),
  33570. name: "Spikes",
  33571. image: {
  33572. source: "./media/characters/sabrina/spikes.svg"
  33573. }
  33574. },
  33575. stomach: {
  33576. height: math.unit(1.15, "meters"),
  33577. name: "Stomach",
  33578. image: {
  33579. source: "./media/characters/sabrina/stomach.svg"
  33580. }
  33581. },
  33582. tongue: {
  33583. height: math.unit(1.27, "meters"),
  33584. name: "Tongue",
  33585. image: {
  33586. source: "./media/characters/sabrina/tongue.svg"
  33587. }
  33588. },
  33589. wingDorsal: {
  33590. height: math.unit(4.85, "meters"),
  33591. name: "Wing (Dorsal)",
  33592. image: {
  33593. source: "./media/characters/sabrina/wing-dorsal.svg"
  33594. }
  33595. },
  33596. wingVentral: {
  33597. height: math.unit(4.85, "meters"),
  33598. name: "Wing (Ventral)",
  33599. image: {
  33600. source: "./media/characters/sabrina/wing-ventral.svg"
  33601. }
  33602. },
  33603. },
  33604. [
  33605. {
  33606. name: "Normal",
  33607. height: math.unit(5, "meters"),
  33608. default: true
  33609. },
  33610. ]
  33611. ))
  33612. characterMakers.push(() => makeCharacter(
  33613. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33614. {
  33615. frontMaid: {
  33616. height: math.unit(5 + 5/12, "feet"),
  33617. weight: math.unit(130, "lb"),
  33618. name: "Front (Maid)",
  33619. image: {
  33620. source: "./media/characters/midnight-tales/front-maid.svg",
  33621. extra: 489/454,
  33622. bottom: 61/550
  33623. }
  33624. },
  33625. frontFormal: {
  33626. height: math.unit(5 + 5/12, "feet"),
  33627. weight: math.unit(130, "lb"),
  33628. name: "Front (Formal)",
  33629. image: {
  33630. source: "./media/characters/midnight-tales/front-formal.svg",
  33631. extra: 489/454,
  33632. bottom: 61/550
  33633. }
  33634. },
  33635. back: {
  33636. height: math.unit(5 + 5/12, "feet"),
  33637. weight: math.unit(130, "lb"),
  33638. name: "Back",
  33639. image: {
  33640. source: "./media/characters/midnight-tales/back.svg",
  33641. extra: 498/456,
  33642. bottom: 33/531
  33643. }
  33644. },
  33645. frontBeast: {
  33646. height: math.unit(40, "feet"),
  33647. weight: math.unit(64000, "lb"),
  33648. name: "Front (Beast)",
  33649. image: {
  33650. source: "./media/characters/midnight-tales/front-beast.svg",
  33651. extra: 927/860,
  33652. bottom: 53/980
  33653. }
  33654. },
  33655. backBeast: {
  33656. height: math.unit(40, "feet"),
  33657. weight: math.unit(64000, "lb"),
  33658. name: "Back (Beast)",
  33659. image: {
  33660. source: "./media/characters/midnight-tales/back-beast.svg",
  33661. extra: 929/855,
  33662. bottom: 16/945
  33663. }
  33664. },
  33665. footBeast: {
  33666. height: math.unit(6.7, "feet"),
  33667. name: "Foot (Beast)",
  33668. image: {
  33669. source: "./media/characters/midnight-tales/foot-beast.svg"
  33670. }
  33671. },
  33672. headBeast: {
  33673. height: math.unit(8, "feet"),
  33674. name: "Head (Beast)",
  33675. image: {
  33676. source: "./media/characters/midnight-tales/head-beast.svg"
  33677. }
  33678. },
  33679. },
  33680. [
  33681. {
  33682. name: "Normal",
  33683. height: math.unit(5 + 5 / 12, "feet"),
  33684. default: true
  33685. },
  33686. {
  33687. name: "Macro",
  33688. height: math.unit(25, "feet")
  33689. },
  33690. ]
  33691. ))
  33692. characterMakers.push(() => makeCharacter(
  33693. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33694. {
  33695. front: {
  33696. height: math.unit(5 + 10/12, "feet"),
  33697. name: "Front",
  33698. image: {
  33699. source: "./media/characters/argon/front.svg",
  33700. extra: 2009/1935,
  33701. bottom: 118/2127
  33702. }
  33703. },
  33704. back: {
  33705. height: math.unit(5 + 10/12, "feet"),
  33706. name: "Back",
  33707. image: {
  33708. source: "./media/characters/argon/back.svg",
  33709. extra: 2047/1992,
  33710. bottom: 20/2067
  33711. }
  33712. },
  33713. frontDressed: {
  33714. height: math.unit(5 + 10/12, "feet"),
  33715. name: "Front (Dressed)",
  33716. image: {
  33717. source: "./media/characters/argon/front-dressed.svg",
  33718. extra: 2009/1935,
  33719. bottom: 118/2127
  33720. }
  33721. },
  33722. },
  33723. [
  33724. {
  33725. name: "Normal",
  33726. height: math.unit(5 + 10/12, "feet"),
  33727. default: true
  33728. },
  33729. ]
  33730. ))
  33731. characterMakers.push(() => makeCharacter(
  33732. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33733. {
  33734. front: {
  33735. height: math.unit(8 + 6/12, "feet"),
  33736. weight: math.unit(1150, "lb"),
  33737. name: "Front",
  33738. image: {
  33739. source: "./media/characters/kichi/front.svg",
  33740. extra: 1267/1164,
  33741. bottom: 61/1328
  33742. }
  33743. },
  33744. back: {
  33745. height: math.unit(8 + 6/12, "feet"),
  33746. weight: math.unit(1150, "lb"),
  33747. name: "Back",
  33748. image: {
  33749. source: "./media/characters/kichi/back.svg",
  33750. extra: 1273/1166,
  33751. bottom: 33/1306
  33752. }
  33753. },
  33754. },
  33755. [
  33756. {
  33757. name: "Normal",
  33758. height: math.unit(8 + 6/12, "feet"),
  33759. default: true
  33760. },
  33761. ]
  33762. ))
  33763. characterMakers.push(() => makeCharacter(
  33764. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33765. {
  33766. front: {
  33767. height: math.unit(6, "feet"),
  33768. weight: math.unit(210, "lb"),
  33769. name: "Front",
  33770. image: {
  33771. source: "./media/characters/manetel-greyscale/front.svg",
  33772. extra: 350/312,
  33773. bottom: 8/358
  33774. }
  33775. },
  33776. },
  33777. [
  33778. {
  33779. name: "Micro",
  33780. height: math.unit(2, "inches")
  33781. },
  33782. {
  33783. name: "Normal",
  33784. height: math.unit(6, "feet"),
  33785. default: true
  33786. },
  33787. {
  33788. name: "Minimacro",
  33789. height: math.unit(17, "feet")
  33790. },
  33791. {
  33792. name: "Macro",
  33793. height: math.unit(117, "feet")
  33794. },
  33795. ]
  33796. ))
  33797. characterMakers.push(() => makeCharacter(
  33798. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33799. {
  33800. side: {
  33801. height: math.unit(5 + 1/12, "feet"),
  33802. weight: math.unit(418, "lb"),
  33803. name: "Side",
  33804. image: {
  33805. source: "./media/characters/softpurr/side.svg",
  33806. extra: 1993/1945,
  33807. bottom: 134/2127
  33808. }
  33809. },
  33810. front: {
  33811. height: math.unit(5 + 1/12, "feet"),
  33812. weight: math.unit(418, "lb"),
  33813. name: "Front",
  33814. image: {
  33815. source: "./media/characters/softpurr/front.svg",
  33816. extra: 1950/1856,
  33817. bottom: 174/2124
  33818. }
  33819. },
  33820. paw: {
  33821. height: math.unit(1, "feet"),
  33822. name: "Paw",
  33823. image: {
  33824. source: "./media/characters/softpurr/paw.svg"
  33825. }
  33826. },
  33827. },
  33828. [
  33829. {
  33830. name: "Normal",
  33831. height: math.unit(5 + 1/12, "feet"),
  33832. default: true
  33833. },
  33834. ]
  33835. ))
  33836. characterMakers.push(() => makeCharacter(
  33837. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33838. {
  33839. front: {
  33840. height: math.unit(260, "meters"),
  33841. name: "Front",
  33842. image: {
  33843. source: "./media/characters/anahita/front.svg",
  33844. extra: 665/635,
  33845. bottom: 89/754
  33846. }
  33847. },
  33848. },
  33849. [
  33850. {
  33851. name: "Macro",
  33852. height: math.unit(260, "meters"),
  33853. default: true
  33854. },
  33855. ]
  33856. ))
  33857. characterMakers.push(() => makeCharacter(
  33858. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33859. {
  33860. front: {
  33861. height: math.unit(4 + 10/12, "feet"),
  33862. weight: math.unit(160, "lb"),
  33863. name: "Front",
  33864. image: {
  33865. source: "./media/characters/chip-mouse/front.svg",
  33866. extra: 3528/3408,
  33867. bottom: 0/3528
  33868. }
  33869. },
  33870. frontNsfw: {
  33871. height: math.unit(4 + 10/12, "feet"),
  33872. weight: math.unit(160, "lb"),
  33873. name: "Front (NSFW)",
  33874. image: {
  33875. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33876. extra: 3528/3408,
  33877. bottom: 0/3528
  33878. }
  33879. },
  33880. },
  33881. [
  33882. {
  33883. name: "Normal",
  33884. height: math.unit(4 + 10/12, "feet"),
  33885. default: true
  33886. },
  33887. ]
  33888. ))
  33889. characterMakers.push(() => makeCharacter(
  33890. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33891. {
  33892. side: {
  33893. height: math.unit(10, "feet"),
  33894. weight: math.unit(14000, "lb"),
  33895. name: "Side",
  33896. image: {
  33897. source: "./media/characters/kremm/side.svg",
  33898. extra: 1390/1053,
  33899. bottom: 90/1480
  33900. }
  33901. },
  33902. gut: {
  33903. height: math.unit(5.8, "feet"),
  33904. name: "Gut",
  33905. image: {
  33906. source: "./media/characters/kremm/gut.svg"
  33907. }
  33908. },
  33909. ass: {
  33910. height: math.unit(6.1, "feet"),
  33911. name: "Ass",
  33912. image: {
  33913. source: "./media/characters/kremm/ass.svg"
  33914. }
  33915. },
  33916. jaws: {
  33917. height: math.unit(2.2, "feet"),
  33918. name: "Jaws",
  33919. image: {
  33920. source: "./media/characters/kremm/jaws.svg"
  33921. }
  33922. },
  33923. dick: {
  33924. height: math.unit(4.26, "feet"),
  33925. name: "Dick",
  33926. image: {
  33927. source: "./media/characters/kremm/dick.svg"
  33928. }
  33929. },
  33930. },
  33931. [
  33932. {
  33933. name: "Normal",
  33934. height: math.unit(10, "feet"),
  33935. default: true
  33936. },
  33937. ]
  33938. ))
  33939. characterMakers.push(() => makeCharacter(
  33940. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33941. {
  33942. front: {
  33943. height: math.unit(30, "stories"),
  33944. name: "Front",
  33945. image: {
  33946. source: "./media/characters/kai/front.svg",
  33947. extra: 1892/1718,
  33948. bottom: 162/2054
  33949. }
  33950. },
  33951. },
  33952. [
  33953. {
  33954. name: "Macro",
  33955. height: math.unit(30, "stories"),
  33956. default: true
  33957. },
  33958. ]
  33959. ))
  33960. characterMakers.push(() => makeCharacter(
  33961. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33962. {
  33963. front: {
  33964. height: math.unit(6 + 4/12, "feet"),
  33965. weight: math.unit(145, "lb"),
  33966. name: "Front",
  33967. image: {
  33968. source: "./media/characters/sykes/front.svg",
  33969. extra: 1321 / 1187,
  33970. bottom: 66 / 1387
  33971. }
  33972. },
  33973. back: {
  33974. height: math.unit(6 + 4/12, "feet"),
  33975. weight: math.unit(145, "lb"),
  33976. name: "Back",
  33977. image: {
  33978. source: "./media/characters/sykes/back.svg",
  33979. extra: 1326/1181,
  33980. bottom: 31/1357
  33981. }
  33982. },
  33983. handBack: {
  33984. height: math.unit(0.9, "feet"),
  33985. name: "Hand (Back)",
  33986. image: {
  33987. source: "./media/characters/sykes/hand-back.svg"
  33988. }
  33989. },
  33990. handFront: {
  33991. height: math.unit(0.839, "feet"),
  33992. name: "Hand (Front)",
  33993. image: {
  33994. source: "./media/characters/sykes/hand-front.svg"
  33995. }
  33996. },
  33997. leftFoot: {
  33998. height: math.unit(1.2, "feet"),
  33999. name: "Foot (Left)",
  34000. image: {
  34001. source: "./media/characters/sykes/foot-left.svg"
  34002. }
  34003. },
  34004. rightFoot: {
  34005. height: math.unit(1.2, "feet"),
  34006. name: "Foot (Right)",
  34007. image: {
  34008. source: "./media/characters/sykes/foot-right.svg"
  34009. }
  34010. },
  34011. maw: {
  34012. height: math.unit(1.93, "feet"),
  34013. name: "Maw",
  34014. image: {
  34015. source: "./media/characters/sykes/maw.svg"
  34016. }
  34017. },
  34018. teeth: {
  34019. height: math.unit(0.51, "feet"),
  34020. name: "Teeth",
  34021. image: {
  34022. source: "./media/characters/sykes/teeth.svg"
  34023. }
  34024. },
  34025. tongue: {
  34026. height: math.unit(2.13, "feet"),
  34027. name: "Tongue",
  34028. image: {
  34029. source: "./media/characters/sykes/tongue.svg"
  34030. }
  34031. },
  34032. uvula: {
  34033. height: math.unit(0.16, "feet"),
  34034. name: "Uvula",
  34035. image: {
  34036. source: "./media/characters/sykes/uvula.svg"
  34037. }
  34038. },
  34039. collar: {
  34040. height: math.unit(0.287, "feet"),
  34041. name: "Collar",
  34042. image: {
  34043. source: "./media/characters/sykes/collar.svg"
  34044. }
  34045. },
  34046. },
  34047. [
  34048. {
  34049. name: "Shrunken",
  34050. height: math.unit(5, "inches")
  34051. },
  34052. {
  34053. name: "Normal",
  34054. height: math.unit(6 + 4 / 12, "feet"),
  34055. default: true
  34056. },
  34057. {
  34058. name: "Big",
  34059. height: math.unit(15, "feet")
  34060. },
  34061. ]
  34062. ))
  34063. characterMakers.push(() => makeCharacter(
  34064. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34065. {
  34066. front: {
  34067. height: math.unit(5 + 8/12, "feet"),
  34068. weight: math.unit(190, "lb"),
  34069. name: "Front",
  34070. image: {
  34071. source: "./media/characters/oven-otter/front.svg",
  34072. extra: 1809/1740,
  34073. bottom: 181/1990
  34074. }
  34075. },
  34076. back: {
  34077. height: math.unit(5 + 8/12, "feet"),
  34078. weight: math.unit(190, "lb"),
  34079. name: "Back",
  34080. image: {
  34081. source: "./media/characters/oven-otter/back.svg",
  34082. extra: 1709/1635,
  34083. bottom: 118/1827
  34084. }
  34085. },
  34086. hand: {
  34087. height: math.unit(1.07, "feet"),
  34088. name: "Hand",
  34089. image: {
  34090. source: "./media/characters/oven-otter/hand.svg"
  34091. }
  34092. },
  34093. beans: {
  34094. height: math.unit(1.74, "feet"),
  34095. name: "Beans",
  34096. image: {
  34097. source: "./media/characters/oven-otter/beans.svg"
  34098. }
  34099. },
  34100. },
  34101. [
  34102. {
  34103. name: "Micro",
  34104. height: math.unit(0.5, "inches")
  34105. },
  34106. {
  34107. name: "Normal",
  34108. height: math.unit(5 + 8/12, "feet"),
  34109. default: true
  34110. },
  34111. {
  34112. name: "Macro",
  34113. height: math.unit(250, "feet")
  34114. },
  34115. {
  34116. name: "Really High",
  34117. height: math.unit(420, "feet")
  34118. },
  34119. ]
  34120. ))
  34121. characterMakers.push(() => makeCharacter(
  34122. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34123. {
  34124. front: {
  34125. height: math.unit(5, "meters"),
  34126. weight: math.unit(292000000000000, "kg"),
  34127. name: "Front",
  34128. image: {
  34129. source: "./media/characters/devourer/front.svg",
  34130. extra: 1800/1733,
  34131. bottom: 211/2011
  34132. }
  34133. },
  34134. maw: {
  34135. height: math.unit(1.1, "meter"),
  34136. name: "Maw",
  34137. image: {
  34138. source: "./media/characters/devourer/maw.svg"
  34139. }
  34140. },
  34141. },
  34142. [
  34143. {
  34144. name: "Small",
  34145. height: math.unit(3, "meters")
  34146. },
  34147. {
  34148. name: "Large",
  34149. height: math.unit(5, "meters"),
  34150. default: true
  34151. },
  34152. ]
  34153. ))
  34154. characterMakers.push(() => makeCharacter(
  34155. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34156. {
  34157. front: {
  34158. height: math.unit(6, "feet"),
  34159. weight: math.unit(400, "lb"),
  34160. name: "Front",
  34161. image: {
  34162. source: "./media/characters/ellarby/front.svg",
  34163. extra: 1909/1763,
  34164. bottom: 80/1989
  34165. }
  34166. },
  34167. back: {
  34168. height: math.unit(6, "feet"),
  34169. weight: math.unit(400, "lb"),
  34170. name: "Back",
  34171. image: {
  34172. source: "./media/characters/ellarby/back.svg",
  34173. extra: 1914/1784,
  34174. bottom: 172/2086
  34175. }
  34176. },
  34177. },
  34178. [
  34179. {
  34180. name: "Mischief",
  34181. height: math.unit(18, "inches")
  34182. },
  34183. {
  34184. name: "Trouble",
  34185. height: math.unit(12, "feet")
  34186. },
  34187. {
  34188. name: "Havoc",
  34189. height: math.unit(200, "feet"),
  34190. default: true
  34191. },
  34192. {
  34193. name: "Pandemonium",
  34194. height: math.unit(1, "mile")
  34195. },
  34196. {
  34197. name: "Catastrophe",
  34198. height: math.unit(100, "miles")
  34199. },
  34200. ]
  34201. ))
  34202. characterMakers.push(() => makeCharacter(
  34203. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34204. {
  34205. front: {
  34206. height: math.unit(4.7, "meters"),
  34207. weight: math.unit(6500, "kg"),
  34208. name: "Front",
  34209. image: {
  34210. source: "./media/characters/vex/front.svg",
  34211. extra: 1288/1140,
  34212. bottom: 100/1388
  34213. }
  34214. },
  34215. },
  34216. [
  34217. {
  34218. name: "Normal",
  34219. height: math.unit(4.7, "meters"),
  34220. default: true
  34221. },
  34222. ]
  34223. ))
  34224. characterMakers.push(() => makeCharacter(
  34225. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34226. {
  34227. normal: {
  34228. height: math.unit(6, "feet"),
  34229. weight: math.unit(350, "lb"),
  34230. name: "Normal",
  34231. image: {
  34232. source: "./media/characters/teshy/normal.svg",
  34233. extra: 1795/1735,
  34234. bottom: 16/1811
  34235. }
  34236. },
  34237. monsterFront: {
  34238. height: math.unit(12, "feet"),
  34239. weight: math.unit(4700, "lb"),
  34240. name: "Monster (Front)",
  34241. image: {
  34242. source: "./media/characters/teshy/monster-front.svg",
  34243. extra: 2042/2034,
  34244. bottom: 128/2170
  34245. }
  34246. },
  34247. monsterSide: {
  34248. height: math.unit(12, "feet"),
  34249. weight: math.unit(4700, "lb"),
  34250. name: "Monster (Side)",
  34251. image: {
  34252. source: "./media/characters/teshy/monster-side.svg",
  34253. extra: 2067/2056,
  34254. bottom: 70/2137
  34255. }
  34256. },
  34257. monsterBack: {
  34258. height: math.unit(12, "feet"),
  34259. weight: math.unit(4700, "lb"),
  34260. name: "Monster (Back)",
  34261. image: {
  34262. source: "./media/characters/teshy/monster-back.svg",
  34263. extra: 1921/1914,
  34264. bottom: 171/2092
  34265. }
  34266. },
  34267. },
  34268. [
  34269. {
  34270. name: "Normal",
  34271. height: math.unit(6, "feet"),
  34272. default: true
  34273. },
  34274. ]
  34275. ))
  34276. characterMakers.push(() => makeCharacter(
  34277. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  34278. {
  34279. front: {
  34280. height: math.unit(6, "feet"),
  34281. name: "Front",
  34282. image: {
  34283. source: "./media/characters/ramey/front.svg",
  34284. extra: 790/787,
  34285. bottom: 27/817
  34286. }
  34287. },
  34288. },
  34289. [
  34290. {
  34291. name: "Normal",
  34292. height: math.unit(6, "feet"),
  34293. default: true
  34294. },
  34295. ]
  34296. ))
  34297. characterMakers.push(() => makeCharacter(
  34298. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  34299. {
  34300. front: {
  34301. height: math.unit(5 + 5/12, "feet"),
  34302. weight: math.unit(120, "lb"),
  34303. name: "Front",
  34304. image: {
  34305. source: "./media/characters/phirae/front.svg",
  34306. extra: 2491/2436,
  34307. bottom: 38/2529
  34308. }
  34309. },
  34310. },
  34311. [
  34312. {
  34313. name: "Normal",
  34314. height: math.unit(5 + 5/12, "feet"),
  34315. default: true
  34316. },
  34317. ]
  34318. ))
  34319. characterMakers.push(() => makeCharacter(
  34320. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  34321. {
  34322. front: {
  34323. height: math.unit(5 + 3/12, "feet"),
  34324. name: "Front",
  34325. image: {
  34326. source: "./media/characters/stagglas/front.svg",
  34327. extra: 962/882,
  34328. bottom: 53/1015
  34329. }
  34330. },
  34331. feral: {
  34332. height: math.unit(335, "cm"),
  34333. name: "Feral",
  34334. image: {
  34335. source: "./media/characters/stagglas/feral.svg",
  34336. extra: 1732/1090,
  34337. bottom: 48/1780
  34338. }
  34339. },
  34340. },
  34341. [
  34342. {
  34343. name: "Normal",
  34344. height: math.unit(5 + 3/12, "feet"),
  34345. default: true
  34346. },
  34347. ]
  34348. ))
  34349. characterMakers.push(() => makeCharacter(
  34350. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  34351. {
  34352. front: {
  34353. height: math.unit(5 + 4/12, "feet"),
  34354. weight: math.unit(145, "lb"),
  34355. name: "Front",
  34356. image: {
  34357. source: "./media/characters/starra/front.svg",
  34358. extra: 1790/1691,
  34359. bottom: 91/1881
  34360. }
  34361. },
  34362. },
  34363. [
  34364. {
  34365. name: "Normal",
  34366. height: math.unit(5 + 4/12, "feet"),
  34367. default: true
  34368. },
  34369. ]
  34370. ))
  34371. characterMakers.push(() => makeCharacter(
  34372. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  34373. {
  34374. front: {
  34375. height: math.unit(2.2, "meters"),
  34376. name: "Front",
  34377. image: {
  34378. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  34379. extra: 1194/1005,
  34380. bottom: 25/1219
  34381. }
  34382. },
  34383. },
  34384. [
  34385. {
  34386. name: "Normal",
  34387. height: math.unit(2.2, "meters"),
  34388. default: true
  34389. },
  34390. ]
  34391. ))
  34392. characterMakers.push(() => makeCharacter(
  34393. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  34394. {
  34395. side: {
  34396. height: math.unit(8 + 2/12, "feet"),
  34397. weight: math.unit(1240, "lb"),
  34398. name: "Side",
  34399. image: {
  34400. source: "./media/characters/mika-valentine/side.svg",
  34401. extra: 2670/2501,
  34402. bottom: 250/2920
  34403. }
  34404. },
  34405. },
  34406. [
  34407. {
  34408. name: "Normal",
  34409. height: math.unit(8 + 2/12, "feet"),
  34410. default: true
  34411. },
  34412. ]
  34413. ))
  34414. characterMakers.push(() => makeCharacter(
  34415. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34416. {
  34417. front: {
  34418. height: math.unit(7 + 2/12, "feet"),
  34419. name: "Front",
  34420. image: {
  34421. source: "./media/characters/xoltol/front.svg",
  34422. extra: 2212/2124,
  34423. bottom: 84/2296
  34424. }
  34425. },
  34426. side: {
  34427. height: math.unit(7 + 2/12, "feet"),
  34428. name: "Side",
  34429. image: {
  34430. source: "./media/characters/xoltol/side.svg",
  34431. extra: 2273/2197,
  34432. bottom: 26/2299
  34433. }
  34434. },
  34435. hand: {
  34436. height: math.unit(2.5, "feet"),
  34437. name: "Hand",
  34438. image: {
  34439. source: "./media/characters/xoltol/hand.svg"
  34440. }
  34441. },
  34442. },
  34443. [
  34444. {
  34445. name: "Small-ish",
  34446. height: math.unit(5 + 11/12, "feet")
  34447. },
  34448. {
  34449. name: "Normal",
  34450. height: math.unit(7 + 2/12, "feet")
  34451. },
  34452. {
  34453. name: "\"Macro\"",
  34454. height: math.unit(14 + 9/12, "feet"),
  34455. default: true
  34456. },
  34457. {
  34458. name: "Alternate Height",
  34459. height: math.unit(20, "feet")
  34460. },
  34461. {
  34462. name: "Actually Macro",
  34463. height: math.unit(100, "feet")
  34464. },
  34465. ]
  34466. ))
  34467. characterMakers.push(() => makeCharacter(
  34468. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34469. {
  34470. front: {
  34471. height: math.unit(5 + 2/12, "feet"),
  34472. name: "Front",
  34473. image: {
  34474. source: "./media/characters/kotetsu-redwood/front.svg",
  34475. extra: 1053/942,
  34476. bottom: 60/1113
  34477. }
  34478. },
  34479. },
  34480. [
  34481. {
  34482. name: "Normal",
  34483. height: math.unit(5 + 2/12, "feet"),
  34484. default: true
  34485. },
  34486. ]
  34487. ))
  34488. characterMakers.push(() => makeCharacter(
  34489. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34490. {
  34491. front: {
  34492. height: math.unit(2.4, "meters"),
  34493. weight: math.unit(125, "kg"),
  34494. name: "Front",
  34495. image: {
  34496. source: "./media/characters/lilith/front.svg",
  34497. extra: 1590/1513,
  34498. bottom: 203/1793
  34499. }
  34500. },
  34501. },
  34502. [
  34503. {
  34504. name: "Humanoid",
  34505. height: math.unit(2.4, "meters")
  34506. },
  34507. {
  34508. name: "Normal",
  34509. height: math.unit(6, "meters"),
  34510. default: true
  34511. },
  34512. {
  34513. name: "Largest",
  34514. height: math.unit(55, "meters")
  34515. },
  34516. ]
  34517. ))
  34518. characterMakers.push(() => makeCharacter(
  34519. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34520. {
  34521. front: {
  34522. height: math.unit(8 + 4/12, "feet"),
  34523. weight: math.unit(535, "lb"),
  34524. name: "Front",
  34525. image: {
  34526. source: "./media/characters/beh'kah-bolger/front.svg",
  34527. extra: 1660/1603,
  34528. bottom: 37/1697
  34529. }
  34530. },
  34531. },
  34532. [
  34533. {
  34534. name: "Normal",
  34535. height: math.unit(8 + 4/12, "feet"),
  34536. default: true
  34537. },
  34538. {
  34539. name: "Kaiju",
  34540. height: math.unit(250, "feet")
  34541. },
  34542. {
  34543. name: "Still Growing",
  34544. height: math.unit(10, "miles")
  34545. },
  34546. {
  34547. name: "Continental",
  34548. height: math.unit(5000, "miles")
  34549. },
  34550. {
  34551. name: "Final Form",
  34552. height: math.unit(2500000, "miles")
  34553. },
  34554. ]
  34555. ))
  34556. characterMakers.push(() => makeCharacter(
  34557. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34558. {
  34559. front: {
  34560. height: math.unit(7 + 2/12, "feet"),
  34561. weight: math.unit(230, "kg"),
  34562. name: "Front",
  34563. image: {
  34564. source: "./media/characters/tatyana-milewska/front.svg",
  34565. extra: 1199/1150,
  34566. bottom: 86/1285
  34567. }
  34568. },
  34569. },
  34570. [
  34571. {
  34572. name: "Normal",
  34573. height: math.unit(7 + 2/12, "feet"),
  34574. default: true
  34575. },
  34576. {
  34577. name: "Big",
  34578. height: math.unit(12, "feet")
  34579. },
  34580. {
  34581. name: "Minimacro",
  34582. height: math.unit(20, "feet")
  34583. },
  34584. {
  34585. name: "Macro",
  34586. height: math.unit(120, "feet")
  34587. },
  34588. ]
  34589. ))
  34590. characterMakers.push(() => makeCharacter(
  34591. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34592. {
  34593. front: {
  34594. height: math.unit(7 + 8/12, "feet"),
  34595. weight: math.unit(152, "kg"),
  34596. name: "Front",
  34597. image: {
  34598. source: "./media/characters/helen-arri/front.svg",
  34599. extra: 440/423,
  34600. bottom: 14/454
  34601. }
  34602. },
  34603. back: {
  34604. height: math.unit(7 + 8/12, "feet"),
  34605. weight: math.unit(152, "kg"),
  34606. name: "Back",
  34607. image: {
  34608. source: "./media/characters/helen-arri/back.svg",
  34609. extra: 443/426,
  34610. bottom: 8/451
  34611. }
  34612. },
  34613. },
  34614. [
  34615. {
  34616. name: "Normal",
  34617. height: math.unit(7 + 8/12, "feet"),
  34618. default: true
  34619. },
  34620. {
  34621. name: "Big",
  34622. height: math.unit(14, "feet")
  34623. },
  34624. {
  34625. name: "Minimacro",
  34626. height: math.unit(24, "feet")
  34627. },
  34628. {
  34629. name: "Macro",
  34630. height: math.unit(140, "feet")
  34631. },
  34632. ]
  34633. ))
  34634. characterMakers.push(() => makeCharacter(
  34635. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34636. {
  34637. front: {
  34638. height: math.unit(6, "meters"),
  34639. name: "Front",
  34640. image: {
  34641. source: "./media/characters/ehanu-rehu/front.svg",
  34642. extra: 1800/1800,
  34643. bottom: 59/1859
  34644. }
  34645. },
  34646. },
  34647. [
  34648. {
  34649. name: "Normal",
  34650. height: math.unit(6, "meters"),
  34651. default: true
  34652. },
  34653. ]
  34654. ))
  34655. characterMakers.push(() => makeCharacter(
  34656. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34657. {
  34658. front: {
  34659. height: math.unit(7 + 3/12, "feet"),
  34660. name: "Front",
  34661. image: {
  34662. source: "./media/characters/renholder/front.svg",
  34663. extra: 3096/2960,
  34664. bottom: 250/3346
  34665. }
  34666. },
  34667. },
  34668. [
  34669. {
  34670. name: "Normal Bat",
  34671. height: math.unit(7 + 3/12, "feet"),
  34672. default: true
  34673. },
  34674. {
  34675. name: "Slightly Tall Bat",
  34676. height: math.unit(100, "feet")
  34677. },
  34678. {
  34679. name: "Big Bat",
  34680. height: math.unit(1000, "feet")
  34681. },
  34682. {
  34683. name: "City-Sized Bat",
  34684. height: math.unit(200000, "feet")
  34685. },
  34686. {
  34687. name: "Bigger Bat",
  34688. height: math.unit(10000, "miles")
  34689. },
  34690. {
  34691. name: "Solar Sized Bat",
  34692. height: math.unit(100, "AU")
  34693. },
  34694. {
  34695. name: "Galactic Bat",
  34696. height: math.unit(200000, "lightyears")
  34697. },
  34698. {
  34699. name: "Universally Known Bat",
  34700. height: math.unit(1, "universe")
  34701. },
  34702. ]
  34703. ))
  34704. characterMakers.push(() => makeCharacter(
  34705. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34706. {
  34707. front: {
  34708. height: math.unit(6 + 11/12, "feet"),
  34709. weight: math.unit(250, "lb"),
  34710. name: "Front",
  34711. image: {
  34712. source: "./media/characters/cookiecat/front.svg",
  34713. extra: 893/827,
  34714. bottom: 14/907
  34715. }
  34716. },
  34717. },
  34718. [
  34719. {
  34720. name: "Micro",
  34721. height: math.unit(3, "inches")
  34722. },
  34723. {
  34724. name: "Normal",
  34725. height: math.unit(6 + 11/12, "feet"),
  34726. default: true
  34727. },
  34728. {
  34729. name: "Macro",
  34730. height: math.unit(100, "feet")
  34731. },
  34732. {
  34733. name: "Macro+",
  34734. height: math.unit(404, "feet")
  34735. },
  34736. {
  34737. name: "Megamacro",
  34738. height: math.unit(165, "miles")
  34739. },
  34740. {
  34741. name: "Planetary",
  34742. height: math.unit(4600, "miles")
  34743. },
  34744. ]
  34745. ))
  34746. characterMakers.push(() => makeCharacter(
  34747. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34748. {
  34749. front: {
  34750. height: math.unit(10 + 3/12, "feet"),
  34751. weight: math.unit(1500, "lb"),
  34752. name: "Front",
  34753. image: {
  34754. source: "./media/characters/tux-kusanagi/front.svg",
  34755. extra: 944/840,
  34756. bottom: 39/983
  34757. }
  34758. },
  34759. back: {
  34760. height: math.unit(10 + 3/12, "feet"),
  34761. weight: math.unit(1500, "lb"),
  34762. name: "Back",
  34763. image: {
  34764. source: "./media/characters/tux-kusanagi/back.svg",
  34765. extra: 941/842,
  34766. bottom: 28/969
  34767. }
  34768. },
  34769. rump: {
  34770. height: math.unit(5.25, "feet"),
  34771. name: "Rump",
  34772. image: {
  34773. source: "./media/characters/tux-kusanagi/rump.svg"
  34774. }
  34775. },
  34776. beak: {
  34777. height: math.unit(1.54, "feet"),
  34778. name: "Beak",
  34779. image: {
  34780. source: "./media/characters/tux-kusanagi/beak.svg"
  34781. }
  34782. },
  34783. },
  34784. [
  34785. {
  34786. name: "Normal",
  34787. height: math.unit(10 + 3/12, "feet"),
  34788. default: true
  34789. },
  34790. ]
  34791. ))
  34792. characterMakers.push(() => makeCharacter(
  34793. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34794. {
  34795. front: {
  34796. height: math.unit(58, "feet"),
  34797. weight: math.unit(200, "tons"),
  34798. name: "Front",
  34799. image: {
  34800. source: "./media/characters/uzarmazari/front.svg",
  34801. extra: 1575/1455,
  34802. bottom: 152/1727
  34803. }
  34804. },
  34805. back: {
  34806. height: math.unit(58, "feet"),
  34807. weight: math.unit(200, "tons"),
  34808. name: "Back",
  34809. image: {
  34810. source: "./media/characters/uzarmazari/back.svg",
  34811. extra: 1585/1510,
  34812. bottom: 157/1742
  34813. }
  34814. },
  34815. head: {
  34816. height: math.unit(26, "feet"),
  34817. name: "Head",
  34818. image: {
  34819. source: "./media/characters/uzarmazari/head.svg"
  34820. }
  34821. },
  34822. },
  34823. [
  34824. {
  34825. name: "Normal",
  34826. height: math.unit(58, "feet"),
  34827. default: true
  34828. },
  34829. ]
  34830. ))
  34831. characterMakers.push(() => makeCharacter(
  34832. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34833. {
  34834. side: {
  34835. height: math.unit(15, "feet"),
  34836. name: "Side",
  34837. image: {
  34838. source: "./media/characters/akitu/side.svg",
  34839. extra: 1421/1321,
  34840. bottom: 157/1578
  34841. }
  34842. },
  34843. front: {
  34844. height: math.unit(15, "feet"),
  34845. name: "Front",
  34846. image: {
  34847. source: "./media/characters/akitu/front.svg",
  34848. extra: 1435/1326,
  34849. bottom: 232/1667
  34850. }
  34851. },
  34852. },
  34853. [
  34854. {
  34855. name: "Normal",
  34856. height: math.unit(15, "feet"),
  34857. default: true
  34858. },
  34859. ]
  34860. ))
  34861. characterMakers.push(() => makeCharacter(
  34862. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34863. {
  34864. front: {
  34865. height: math.unit(10 + 8/12, "feet"),
  34866. name: "Front",
  34867. image: {
  34868. source: "./media/characters/azalie-croixland/front.svg",
  34869. extra: 1972/1856,
  34870. bottom: 31/2003
  34871. }
  34872. },
  34873. },
  34874. [
  34875. {
  34876. name: "Original Height",
  34877. height: math.unit(5 + 4/12, "feet")
  34878. },
  34879. {
  34880. name: "Normal Height",
  34881. height: math.unit(10 + 8/12, "feet"),
  34882. default: true
  34883. },
  34884. ]
  34885. ))
  34886. characterMakers.push(() => makeCharacter(
  34887. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34888. {
  34889. side: {
  34890. height: math.unit(7 + 1/12, "feet"),
  34891. weight: math.unit(245, "lb"),
  34892. name: "Side",
  34893. image: {
  34894. source: "./media/characters/kavus-kazian/side.svg",
  34895. extra: 349/342,
  34896. bottom: 15/364
  34897. }
  34898. },
  34899. },
  34900. [
  34901. {
  34902. name: "Normal",
  34903. height: math.unit(7 + 1/12, "feet"),
  34904. default: true
  34905. },
  34906. ]
  34907. ))
  34908. characterMakers.push(() => makeCharacter(
  34909. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34910. {
  34911. normal: {
  34912. height: math.unit(5 + 11/12, "feet"),
  34913. name: "Normal",
  34914. image: {
  34915. source: "./media/characters/moonlight-rose/normal.svg",
  34916. extra: 1979/1835,
  34917. bottom: 14/1993
  34918. }
  34919. },
  34920. demon: {
  34921. height: math.unit(5, "km"),
  34922. name: "Demon",
  34923. image: {
  34924. source: "./media/characters/moonlight-rose/demon.svg",
  34925. extra: 986/916,
  34926. bottom: 28/1014
  34927. }
  34928. },
  34929. },
  34930. [
  34931. {
  34932. name: "\"Natural\" height",
  34933. height: math.unit(5 + 11/12, "feet")
  34934. },
  34935. {
  34936. name: "Comfortable Size",
  34937. height: math.unit(40, "meters")
  34938. },
  34939. {
  34940. name: "Common Size",
  34941. height: math.unit(50, "km"),
  34942. default: true
  34943. },
  34944. {
  34945. name: "Demonic",
  34946. height: math.unit(1.24415e+21, "meters")
  34947. },
  34948. ]
  34949. ))
  34950. characterMakers.push(() => makeCharacter(
  34951. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34952. {
  34953. front: {
  34954. height: math.unit(16, "feet"),
  34955. weight: math.unit(610, "kg"),
  34956. name: "Front",
  34957. image: {
  34958. source: "./media/characters/huckle/front.svg",
  34959. extra: 1731/1625,
  34960. bottom: 33/1764
  34961. }
  34962. },
  34963. back: {
  34964. height: math.unit(16, "feet"),
  34965. weight: math.unit(610, "kg"),
  34966. name: "Back",
  34967. image: {
  34968. source: "./media/characters/huckle/back.svg",
  34969. extra: 1738/1651,
  34970. bottom: 37/1775
  34971. }
  34972. },
  34973. laughing: {
  34974. height: math.unit(3.75, "feet"),
  34975. name: "Laughing",
  34976. image: {
  34977. source: "./media/characters/huckle/laughing.svg"
  34978. }
  34979. },
  34980. angry: {
  34981. height: math.unit(4.15, "feet"),
  34982. name: "Angry",
  34983. image: {
  34984. source: "./media/characters/huckle/angry.svg"
  34985. }
  34986. },
  34987. },
  34988. [
  34989. {
  34990. name: "Normal",
  34991. height: math.unit(16, "feet"),
  34992. default: true
  34993. },
  34994. {
  34995. name: "Mini Macro",
  34996. height: math.unit(463, "feet")
  34997. },
  34998. {
  34999. name: "Macro",
  35000. height: math.unit(1680, "meters")
  35001. },
  35002. {
  35003. name: "Mega Macro",
  35004. height: math.unit(175, "km")
  35005. },
  35006. {
  35007. name: "Terra Macro",
  35008. height: math.unit(32, "gigameters")
  35009. },
  35010. {
  35011. name: "Multiverse+",
  35012. height: math.unit(2.56e23, "yottameters")
  35013. },
  35014. ]
  35015. ))
  35016. characterMakers.push(() => makeCharacter(
  35017. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  35018. {
  35019. front: {
  35020. height: math.unit(6 + 9/12, "feet"),
  35021. weight: math.unit(280, "lb"),
  35022. name: "Front",
  35023. image: {
  35024. source: "./media/characters/candy/front.svg",
  35025. extra: 234/217,
  35026. bottom: 11/245
  35027. }
  35028. },
  35029. },
  35030. [
  35031. {
  35032. name: "Really Small",
  35033. height: math.unit(0.1, "nm")
  35034. },
  35035. {
  35036. name: "Micro",
  35037. height: math.unit(2, "inches")
  35038. },
  35039. {
  35040. name: "Normal",
  35041. height: math.unit(6 + 9/12, "feet"),
  35042. default: true
  35043. },
  35044. {
  35045. name: "Small Macro",
  35046. height: math.unit(69, "feet")
  35047. },
  35048. {
  35049. name: "Macro",
  35050. height: math.unit(160, "feet")
  35051. },
  35052. {
  35053. name: "Megamacro",
  35054. height: math.unit(22000, "miles")
  35055. },
  35056. {
  35057. name: "Gigamacro",
  35058. height: math.unit(50000, "miles")
  35059. },
  35060. ]
  35061. ))
  35062. characterMakers.push(() => makeCharacter(
  35063. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  35064. {
  35065. front: {
  35066. height: math.unit(4, "feet"),
  35067. weight: math.unit(90, "lb"),
  35068. name: "Front",
  35069. image: {
  35070. source: "./media/characters/joey-mcdonald/front.svg",
  35071. extra: 1059/852,
  35072. bottom: 33/1092
  35073. }
  35074. },
  35075. back: {
  35076. height: math.unit(4, "feet"),
  35077. weight: math.unit(90, "lb"),
  35078. name: "Back",
  35079. image: {
  35080. source: "./media/characters/joey-mcdonald/back.svg",
  35081. extra: 1077/879,
  35082. bottom: 5/1082
  35083. }
  35084. },
  35085. frontKobold: {
  35086. height: math.unit(4, "feet"),
  35087. weight: math.unit(100, "lb"),
  35088. name: "Front-kobold",
  35089. image: {
  35090. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  35091. extra: 1480/1367,
  35092. bottom: 0/1480
  35093. }
  35094. },
  35095. backKobold: {
  35096. height: math.unit(4, "feet"),
  35097. weight: math.unit(100, "lb"),
  35098. name: "Back-kobold",
  35099. image: {
  35100. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  35101. extra: 1449/1361,
  35102. bottom: 0/1449
  35103. }
  35104. },
  35105. },
  35106. [
  35107. {
  35108. name: "Normal",
  35109. height: math.unit(4, "feet"),
  35110. default: true
  35111. },
  35112. ]
  35113. ))
  35114. characterMakers.push(() => makeCharacter(
  35115. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  35116. {
  35117. front: {
  35118. height: math.unit(12 + 6/12, "feet"),
  35119. name: "Front",
  35120. image: {
  35121. source: "./media/characters/kass-lockheed/front.svg",
  35122. extra: 354/343,
  35123. bottom: 9/363
  35124. }
  35125. },
  35126. back: {
  35127. height: math.unit(12 + 6/12, "feet"),
  35128. name: "Back",
  35129. image: {
  35130. source: "./media/characters/kass-lockheed/back.svg",
  35131. extra: 364/352,
  35132. bottom: 3/367
  35133. }
  35134. },
  35135. dick: {
  35136. height: math.unit(3.12, "feet"),
  35137. name: "Dick",
  35138. image: {
  35139. source: "./media/characters/kass-lockheed/dick.svg"
  35140. }
  35141. },
  35142. head: {
  35143. height: math.unit(2.6, "feet"),
  35144. name: "Head",
  35145. image: {
  35146. source: "./media/characters/kass-lockheed/head.svg"
  35147. }
  35148. },
  35149. bleh: {
  35150. height: math.unit(2.85, "feet"),
  35151. name: "Bleh",
  35152. image: {
  35153. source: "./media/characters/kass-lockheed/bleh.svg"
  35154. }
  35155. },
  35156. smug: {
  35157. height: math.unit(2.85, "feet"),
  35158. name: "Smug",
  35159. image: {
  35160. source: "./media/characters/kass-lockheed/smug.svg"
  35161. }
  35162. },
  35163. },
  35164. [
  35165. {
  35166. name: "Normal",
  35167. height: math.unit(12 + 6/12, "feet"),
  35168. default: true
  35169. },
  35170. ]
  35171. ))
  35172. characterMakers.push(() => makeCharacter(
  35173. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  35174. {
  35175. front: {
  35176. height: math.unit(6 + 2/12, "feet"),
  35177. name: "Front",
  35178. image: {
  35179. source: "./media/characters/taylor/front.svg",
  35180. extra: 639/495,
  35181. bottom: 12/651
  35182. }
  35183. },
  35184. },
  35185. [
  35186. {
  35187. name: "Normal",
  35188. height: math.unit(6 + 2/12, "feet"),
  35189. default: true
  35190. },
  35191. {
  35192. name: "Big",
  35193. height: math.unit(15, "feet")
  35194. },
  35195. {
  35196. name: "Lorg",
  35197. height: math.unit(80, "feet")
  35198. },
  35199. {
  35200. name: "Too Lorg",
  35201. height: math.unit(120, "feet")
  35202. },
  35203. ]
  35204. ))
  35205. characterMakers.push(() => makeCharacter(
  35206. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  35207. {
  35208. front: {
  35209. height: math.unit(15, "feet"),
  35210. name: "Front",
  35211. image: {
  35212. source: "./media/characters/kaizer/front.svg",
  35213. extra: 1612/1436,
  35214. bottom: 43/1655
  35215. }
  35216. },
  35217. },
  35218. [
  35219. {
  35220. name: "Normal",
  35221. height: math.unit(15, "feet"),
  35222. default: true
  35223. },
  35224. ]
  35225. ))
  35226. characterMakers.push(() => makeCharacter(
  35227. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  35228. {
  35229. front: {
  35230. height: math.unit(2, "feet"),
  35231. weight: math.unit(30, "lb"),
  35232. name: "Front",
  35233. image: {
  35234. source: "./media/characters/sandy/front.svg",
  35235. extra: 1439/1307,
  35236. bottom: 194/1633
  35237. }
  35238. },
  35239. },
  35240. [
  35241. {
  35242. name: "Normal",
  35243. height: math.unit(2, "feet"),
  35244. default: true
  35245. },
  35246. ]
  35247. ))
  35248. characterMakers.push(() => makeCharacter(
  35249. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  35250. {
  35251. front: {
  35252. height: math.unit(3, "feet"),
  35253. name: "Front",
  35254. image: {
  35255. source: "./media/characters/mellvi/front.svg",
  35256. extra: 1831/1630,
  35257. bottom: 58/1889
  35258. }
  35259. },
  35260. },
  35261. [
  35262. {
  35263. name: "Normal",
  35264. height: math.unit(3, "feet"),
  35265. default: true
  35266. },
  35267. ]
  35268. ))
  35269. characterMakers.push(() => makeCharacter(
  35270. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  35271. {
  35272. front: {
  35273. height: math.unit(5 + 11/12, "feet"),
  35274. weight: math.unit(200, "lb"),
  35275. name: "Front",
  35276. image: {
  35277. source: "./media/characters/shirou/front.svg",
  35278. extra: 2491/2383,
  35279. bottom: 189/2680
  35280. }
  35281. },
  35282. back: {
  35283. height: math.unit(5 + 11/12, "feet"),
  35284. weight: math.unit(200, "lb"),
  35285. name: "Back",
  35286. image: {
  35287. source: "./media/characters/shirou/back.svg",
  35288. extra: 2554/2450,
  35289. bottom: 76/2630
  35290. }
  35291. },
  35292. },
  35293. [
  35294. {
  35295. name: "Normal",
  35296. height: math.unit(5 + 11/12, "feet"),
  35297. default: true
  35298. },
  35299. ]
  35300. ))
  35301. characterMakers.push(() => makeCharacter(
  35302. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  35303. {
  35304. front: {
  35305. height: math.unit(6 + 3/12, "feet"),
  35306. weight: math.unit(177, "lb"),
  35307. name: "Front",
  35308. image: {
  35309. source: "./media/characters/noryu/front.svg",
  35310. extra: 973/885,
  35311. bottom: 10/983
  35312. }
  35313. },
  35314. },
  35315. [
  35316. {
  35317. name: "Normal",
  35318. height: math.unit(6 + 3/12, "feet"),
  35319. default: true
  35320. },
  35321. ]
  35322. ))
  35323. characterMakers.push(() => makeCharacter(
  35324. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  35325. {
  35326. front: {
  35327. height: math.unit(5 + 6/12, "feet"),
  35328. weight: math.unit(170, "lb"),
  35329. name: "Front",
  35330. image: {
  35331. source: "./media/characters/mevolas-rubenido/front.svg",
  35332. extra: 2109/1901,
  35333. bottom: 96/2205
  35334. }
  35335. },
  35336. },
  35337. [
  35338. {
  35339. name: "Normal",
  35340. height: math.unit(5 + 6/12, "feet"),
  35341. default: true
  35342. },
  35343. ]
  35344. ))
  35345. characterMakers.push(() => makeCharacter(
  35346. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  35347. {
  35348. front: {
  35349. height: math.unit(100, "feet"),
  35350. name: "Front",
  35351. image: {
  35352. source: "./media/characters/dee/front.svg",
  35353. extra: 2153/2036,
  35354. bottom: 59/2212
  35355. }
  35356. },
  35357. back: {
  35358. height: math.unit(100, "feet"),
  35359. name: "Back",
  35360. image: {
  35361. source: "./media/characters/dee/back.svg",
  35362. extra: 2183/2058,
  35363. bottom: 75/2258
  35364. }
  35365. },
  35366. foot: {
  35367. height: math.unit(19.43, "feet"),
  35368. name: "Foot",
  35369. image: {
  35370. source: "./media/characters/dee/foot.svg"
  35371. }
  35372. },
  35373. hoof: {
  35374. height: math.unit(20.6, "feet"),
  35375. name: "Hoof",
  35376. image: {
  35377. source: "./media/characters/dee/hoof.svg"
  35378. }
  35379. },
  35380. },
  35381. [
  35382. {
  35383. name: "Macro",
  35384. height: math.unit(100, "feet"),
  35385. default: true
  35386. },
  35387. ]
  35388. ))
  35389. characterMakers.push(() => makeCharacter(
  35390. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  35391. {
  35392. front: {
  35393. height: math.unit(5 + 6/12, "feet"),
  35394. name: "Front",
  35395. image: {
  35396. source: "./media/characters/teh/front.svg",
  35397. extra: 1002/847,
  35398. bottom: 62/1064
  35399. }
  35400. },
  35401. },
  35402. [
  35403. {
  35404. name: "Normal",
  35405. height: math.unit(5 + 6/12, "feet"),
  35406. default: true
  35407. },
  35408. ]
  35409. ))
  35410. characterMakers.push(() => makeCharacter(
  35411. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  35412. {
  35413. side: {
  35414. height: math.unit(6 + 1/12, "feet"),
  35415. weight: math.unit(204, "lb"),
  35416. name: "Side",
  35417. image: {
  35418. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35419. extra: 974/775,
  35420. bottom: 169/1143
  35421. }
  35422. },
  35423. sitting: {
  35424. height: math.unit(6 + 2/12, "feet"),
  35425. weight: math.unit(204, "lb"),
  35426. name: "Sitting",
  35427. image: {
  35428. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35429. extra: 1175/964,
  35430. bottom: 378/1553
  35431. }
  35432. },
  35433. },
  35434. [
  35435. {
  35436. name: "Normal",
  35437. height: math.unit(6 + 1/12, "feet"),
  35438. default: true
  35439. },
  35440. ]
  35441. ))
  35442. characterMakers.push(() => makeCharacter(
  35443. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35444. {
  35445. front: {
  35446. height: math.unit(6, "inches"),
  35447. name: "Front",
  35448. image: {
  35449. source: "./media/characters/tululi/front.svg",
  35450. extra: 1997/1876,
  35451. bottom: 20/2017
  35452. }
  35453. },
  35454. },
  35455. [
  35456. {
  35457. name: "Normal",
  35458. height: math.unit(6, "inches"),
  35459. default: true
  35460. },
  35461. ]
  35462. ))
  35463. characterMakers.push(() => makeCharacter(
  35464. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35465. {
  35466. front: {
  35467. height: math.unit(4 + 1/12, "feet"),
  35468. name: "Front",
  35469. image: {
  35470. source: "./media/characters/star/front.svg",
  35471. extra: 1493/1189,
  35472. bottom: 48/1541
  35473. }
  35474. },
  35475. },
  35476. [
  35477. {
  35478. name: "Normal",
  35479. height: math.unit(4 + 1/12, "feet"),
  35480. default: true
  35481. },
  35482. ]
  35483. ))
  35484. characterMakers.push(() => makeCharacter(
  35485. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35486. {
  35487. front: {
  35488. height: math.unit(6 + 3/12, "feet"),
  35489. name: "Front",
  35490. image: {
  35491. source: "./media/characters/comet/front.svg",
  35492. extra: 1681/1462,
  35493. bottom: 26/1707
  35494. }
  35495. },
  35496. },
  35497. [
  35498. {
  35499. name: "Normal",
  35500. height: math.unit(6 + 3/12, "feet"),
  35501. default: true
  35502. },
  35503. ]
  35504. ))
  35505. characterMakers.push(() => makeCharacter(
  35506. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35507. {
  35508. front: {
  35509. height: math.unit(950, "feet"),
  35510. name: "Front",
  35511. image: {
  35512. source: "./media/characters/vortex/front.svg",
  35513. extra: 1497/1434,
  35514. bottom: 56/1553
  35515. }
  35516. },
  35517. maw: {
  35518. height: math.unit(285, "feet"),
  35519. name: "Maw",
  35520. image: {
  35521. source: "./media/characters/vortex/maw.svg"
  35522. }
  35523. },
  35524. },
  35525. [
  35526. {
  35527. name: "Macro",
  35528. height: math.unit(950, "feet"),
  35529. default: true
  35530. },
  35531. ]
  35532. ))
  35533. characterMakers.push(() => makeCharacter(
  35534. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35535. {
  35536. front: {
  35537. height: math.unit(600, "feet"),
  35538. weight: math.unit(0.02, "grams"),
  35539. name: "Front",
  35540. image: {
  35541. source: "./media/characters/doodle/front.svg",
  35542. extra: 1578/1413,
  35543. bottom: 37/1615
  35544. }
  35545. },
  35546. },
  35547. [
  35548. {
  35549. name: "Macro",
  35550. height: math.unit(600, "feet"),
  35551. default: true
  35552. },
  35553. ]
  35554. ))
  35555. characterMakers.push(() => makeCharacter(
  35556. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35557. {
  35558. front: {
  35559. height: math.unit(6 + 6/12, "feet"),
  35560. name: "Front",
  35561. image: {
  35562. source: "./media/characters/jai/front.svg",
  35563. extra: 1645/1534,
  35564. bottom: 115/1760
  35565. }
  35566. },
  35567. },
  35568. [
  35569. {
  35570. name: "Normal",
  35571. height: math.unit(6 + 6/12, "feet"),
  35572. default: true
  35573. },
  35574. ]
  35575. ))
  35576. characterMakers.push(() => makeCharacter(
  35577. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35578. {
  35579. front: {
  35580. height: math.unit(6 + 8/12, "feet"),
  35581. name: "Front",
  35582. image: {
  35583. source: "./media/characters/pixel/front.svg",
  35584. extra: 1900/1735,
  35585. bottom: 63/1963
  35586. }
  35587. },
  35588. },
  35589. [
  35590. {
  35591. name: "Normal",
  35592. height: math.unit(6 + 8/12, "feet"),
  35593. default: true
  35594. },
  35595. ]
  35596. ))
  35597. characterMakers.push(() => makeCharacter(
  35598. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35599. {
  35600. back: {
  35601. height: math.unit(4 + 1/12, "feet"),
  35602. weight: math.unit(75, "lb"),
  35603. name: "Back",
  35604. image: {
  35605. source: "./media/characters/rhett/back.svg",
  35606. extra: 930/878,
  35607. bottom: 25/955
  35608. }
  35609. },
  35610. front: {
  35611. height: math.unit(4 + 1/12, "feet"),
  35612. weight: math.unit(75, "lb"),
  35613. name: "Front",
  35614. image: {
  35615. source: "./media/characters/rhett/front.svg",
  35616. extra: 1682/1586,
  35617. bottom: 92/1774
  35618. }
  35619. },
  35620. },
  35621. [
  35622. {
  35623. name: "Micro",
  35624. height: math.unit(8, "inches")
  35625. },
  35626. {
  35627. name: "Tiny",
  35628. height: math.unit(2, "feet")
  35629. },
  35630. {
  35631. name: "Normal",
  35632. height: math.unit(4 + 1/12, "feet"),
  35633. default: true
  35634. },
  35635. ]
  35636. ))
  35637. characterMakers.push(() => makeCharacter(
  35638. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35639. {
  35640. front: {
  35641. height: math.unit(3 + 3/12, "feet"),
  35642. name: "Front",
  35643. image: {
  35644. source: "./media/characters/penny/front.svg",
  35645. extra: 1406/1311,
  35646. bottom: 26/1432
  35647. }
  35648. },
  35649. },
  35650. [
  35651. {
  35652. name: "Normal",
  35653. height: math.unit(3 + 3/12, "feet"),
  35654. default: true
  35655. },
  35656. ]
  35657. ))
  35658. characterMakers.push(() => makeCharacter(
  35659. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35660. {
  35661. front: {
  35662. height: math.unit(4 + 11/12, "feet"),
  35663. name: "Front",
  35664. image: {
  35665. source: "./media/characters/monty/front.svg",
  35666. extra: 1479/1209,
  35667. bottom: 0/1479
  35668. }
  35669. },
  35670. },
  35671. [
  35672. {
  35673. name: "Normal",
  35674. height: math.unit(4 + 11/12, "feet"),
  35675. default: true
  35676. },
  35677. ]
  35678. ))
  35679. characterMakers.push(() => makeCharacter(
  35680. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35681. {
  35682. front: {
  35683. height: math.unit(8 + 4/12, "feet"),
  35684. name: "Front",
  35685. image: {
  35686. source: "./media/characters/sterling/front.svg",
  35687. extra: 1420/1236,
  35688. bottom: 27/1447
  35689. }
  35690. },
  35691. },
  35692. [
  35693. {
  35694. name: "Normal",
  35695. height: math.unit(8 + 4/12, "feet"),
  35696. default: true
  35697. },
  35698. ]
  35699. ))
  35700. characterMakers.push(() => makeCharacter(
  35701. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35702. {
  35703. front: {
  35704. height: math.unit(15, "feet"),
  35705. name: "Front",
  35706. image: {
  35707. source: "./media/characters/marble/front.svg",
  35708. extra: 973/937,
  35709. bottom: 32/1005
  35710. }
  35711. },
  35712. },
  35713. [
  35714. {
  35715. name: "Normal",
  35716. height: math.unit(15, "feet"),
  35717. default: true
  35718. },
  35719. ]
  35720. ))
  35721. characterMakers.push(() => makeCharacter(
  35722. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35723. {
  35724. front: {
  35725. height: math.unit(3, "inches"),
  35726. name: "Front",
  35727. image: {
  35728. source: "./media/characters/powder/front.svg",
  35729. extra: 1504/1334,
  35730. bottom: 518/2022
  35731. }
  35732. },
  35733. },
  35734. [
  35735. {
  35736. name: "Normal",
  35737. height: math.unit(3, "inches"),
  35738. default: true
  35739. },
  35740. ]
  35741. ))
  35742. characterMakers.push(() => makeCharacter(
  35743. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35744. {
  35745. front: {
  35746. height: math.unit(4 + 5/12, "feet"),
  35747. name: "Front",
  35748. image: {
  35749. source: "./media/characters/joey-raccoon/front.svg",
  35750. extra: 1273/1197,
  35751. bottom: 0/1273
  35752. }
  35753. },
  35754. },
  35755. [
  35756. {
  35757. name: "Normal",
  35758. height: math.unit(4 + 5/12, "feet"),
  35759. default: true
  35760. },
  35761. ]
  35762. ))
  35763. characterMakers.push(() => makeCharacter(
  35764. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35765. {
  35766. front: {
  35767. height: math.unit(8 + 4/12, "feet"),
  35768. name: "Front",
  35769. image: {
  35770. source: "./media/characters/vick/front.svg",
  35771. extra: 2187/2118,
  35772. bottom: 47/2234
  35773. }
  35774. },
  35775. },
  35776. [
  35777. {
  35778. name: "Normal",
  35779. height: math.unit(8 + 4/12, "feet"),
  35780. default: true
  35781. },
  35782. ]
  35783. ))
  35784. characterMakers.push(() => makeCharacter(
  35785. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35786. {
  35787. front: {
  35788. height: math.unit(5 + 5/12, "feet"),
  35789. name: "Front",
  35790. image: {
  35791. source: "./media/characters/mitsy/front.svg",
  35792. extra: 1842/1695,
  35793. bottom: 0/1842
  35794. }
  35795. },
  35796. },
  35797. [
  35798. {
  35799. name: "Normal",
  35800. height: math.unit(5 + 5/12, "feet"),
  35801. default: true
  35802. },
  35803. ]
  35804. ))
  35805. characterMakers.push(() => makeCharacter(
  35806. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35807. {
  35808. front: {
  35809. height: math.unit(6 + 3/12, "feet"),
  35810. name: "Front",
  35811. image: {
  35812. source: "./media/characters/silvy/front.svg",
  35813. extra: 1995/1836,
  35814. bottom: 225/2220
  35815. }
  35816. },
  35817. },
  35818. [
  35819. {
  35820. name: "Normal",
  35821. height: math.unit(6 + 3/12, "feet"),
  35822. default: true
  35823. },
  35824. ]
  35825. ))
  35826. characterMakers.push(() => makeCharacter(
  35827. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35828. {
  35829. front: {
  35830. height: math.unit(3 + 8/12, "feet"),
  35831. name: "Front",
  35832. image: {
  35833. source: "./media/characters/rodney/front.svg",
  35834. extra: 1956/1747,
  35835. bottom: 31/1987
  35836. }
  35837. },
  35838. frontDressed: {
  35839. height: math.unit(2.9, "feet"),
  35840. name: "Front (Dressed)",
  35841. image: {
  35842. source: "./media/characters/rodney/front-dressed.svg",
  35843. extra: 1382/1241,
  35844. bottom: 385/1767
  35845. }
  35846. },
  35847. },
  35848. [
  35849. {
  35850. name: "Normal",
  35851. height: math.unit(3 + 8/12, "feet"),
  35852. default: true
  35853. },
  35854. ]
  35855. ))
  35856. characterMakers.push(() => makeCharacter(
  35857. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35858. {
  35859. front: {
  35860. height: math.unit(5 + 9/12, "feet"),
  35861. weight: math.unit(194, "lbs"),
  35862. name: "Front",
  35863. image: {
  35864. source: "./media/characters/zakail-sudekai/front.svg",
  35865. extra: 2696/2533,
  35866. bottom: 248/2944
  35867. }
  35868. },
  35869. maw: {
  35870. height: math.unit(1.35, "feet"),
  35871. name: "Maw",
  35872. image: {
  35873. source: "./media/characters/zakail-sudekai/maw.svg"
  35874. }
  35875. },
  35876. },
  35877. [
  35878. {
  35879. name: "Normal",
  35880. height: math.unit(5 + 9/12, "feet"),
  35881. default: true
  35882. },
  35883. ]
  35884. ))
  35885. characterMakers.push(() => makeCharacter(
  35886. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35887. {
  35888. front: {
  35889. height: math.unit(8 + 4/12, "feet"),
  35890. weight: math.unit(1200, "lb"),
  35891. name: "Front",
  35892. image: {
  35893. source: "./media/characters/eleanor/front.svg",
  35894. extra: 1226/1192,
  35895. bottom: 52/1278
  35896. }
  35897. },
  35898. back: {
  35899. height: math.unit(8 + 4/12, "feet"),
  35900. weight: math.unit(1200, "lb"),
  35901. name: "Back",
  35902. image: {
  35903. source: "./media/characters/eleanor/back.svg",
  35904. extra: 1242/1184,
  35905. bottom: 60/1302
  35906. }
  35907. },
  35908. head: {
  35909. height: math.unit(2.62, "feet"),
  35910. name: "Head",
  35911. image: {
  35912. source: "./media/characters/eleanor/head.svg"
  35913. }
  35914. },
  35915. },
  35916. [
  35917. {
  35918. name: "Normal",
  35919. height: math.unit(8 + 4/12, "feet"),
  35920. default: true
  35921. },
  35922. ]
  35923. ))
  35924. characterMakers.push(() => makeCharacter(
  35925. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35926. {
  35927. front: {
  35928. height: math.unit(8 + 4/12, "feet"),
  35929. weight: math.unit(750, "lb"),
  35930. name: "Front",
  35931. image: {
  35932. source: "./media/characters/tanya/front.svg",
  35933. extra: 1749/1615,
  35934. bottom: 33/1782
  35935. }
  35936. },
  35937. },
  35938. [
  35939. {
  35940. name: "Normal",
  35941. height: math.unit(8 + 4/12, "feet"),
  35942. default: true
  35943. },
  35944. ]
  35945. ))
  35946. characterMakers.push(() => makeCharacter(
  35947. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35948. {
  35949. front: {
  35950. height: math.unit(5, "feet"),
  35951. weight: math.unit(225, "lb"),
  35952. name: "Front",
  35953. image: {
  35954. source: "./media/characters/cindy/front.svg",
  35955. extra: 1320/1250,
  35956. bottom: 42/1362
  35957. }
  35958. },
  35959. frontDressed: {
  35960. height: math.unit(5, "feet"),
  35961. weight: math.unit(225, "lb"),
  35962. name: "Front (Dressed)",
  35963. image: {
  35964. source: "./media/characters/cindy/front-dressed.svg",
  35965. extra: 1320/1250,
  35966. bottom: 42/1362
  35967. }
  35968. },
  35969. back: {
  35970. height: math.unit(5, "feet"),
  35971. weight: math.unit(225, "lb"),
  35972. name: "Back",
  35973. image: {
  35974. source: "./media/characters/cindy/back.svg",
  35975. extra: 1384/1346,
  35976. bottom: 14/1398
  35977. }
  35978. },
  35979. },
  35980. [
  35981. {
  35982. name: "Normal",
  35983. height: math.unit(5, "feet"),
  35984. default: true
  35985. },
  35986. ]
  35987. ))
  35988. characterMakers.push(() => makeCharacter(
  35989. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35990. {
  35991. front: {
  35992. height: math.unit(6 + 9/12, "feet"),
  35993. weight: math.unit(440, "lb"),
  35994. name: "Front",
  35995. image: {
  35996. source: "./media/characters/wilbur-owen/front.svg",
  35997. extra: 1575/1448,
  35998. bottom: 72/1647
  35999. }
  36000. },
  36001. back: {
  36002. height: math.unit(6 + 9/12, "feet"),
  36003. weight: math.unit(440, "lb"),
  36004. name: "Back",
  36005. image: {
  36006. source: "./media/characters/wilbur-owen/back.svg",
  36007. extra: 1578/1445,
  36008. bottom: 36/1614
  36009. }
  36010. },
  36011. },
  36012. [
  36013. {
  36014. name: "Normal",
  36015. height: math.unit(6 + 9/12, "feet"),
  36016. default: true
  36017. },
  36018. ]
  36019. ))
  36020. characterMakers.push(() => makeCharacter(
  36021. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  36022. {
  36023. front: {
  36024. height: math.unit(6 + 5/12, "feet"),
  36025. weight: math.unit(650, "lb"),
  36026. name: "Front",
  36027. image: {
  36028. source: "./media/characters/keegan/front.svg",
  36029. extra: 2387/2198,
  36030. bottom: 33/2420
  36031. }
  36032. },
  36033. side: {
  36034. height: math.unit(6 + 5/12, "feet"),
  36035. weight: math.unit(650, "lb"),
  36036. name: "Side",
  36037. image: {
  36038. source: "./media/characters/keegan/side.svg",
  36039. extra: 2390/2202,
  36040. bottom: 47/2437
  36041. }
  36042. },
  36043. back: {
  36044. height: math.unit(6 + 5/12, "feet"),
  36045. weight: math.unit(650, "lb"),
  36046. name: "Back",
  36047. image: {
  36048. source: "./media/characters/keegan/back.svg",
  36049. extra: 2418/2268,
  36050. bottom: 15/2433
  36051. }
  36052. },
  36053. frontSfw: {
  36054. height: math.unit(6 + 5/12, "feet"),
  36055. weight: math.unit(650, "lb"),
  36056. name: "Front (SFW)",
  36057. image: {
  36058. source: "./media/characters/keegan/front-sfw.svg",
  36059. extra: 2387/2198,
  36060. bottom: 33/2420
  36061. }
  36062. },
  36063. beans: {
  36064. height: math.unit(1.85, "feet"),
  36065. name: "Beans",
  36066. image: {
  36067. source: "./media/characters/keegan/beans.svg"
  36068. }
  36069. },
  36070. },
  36071. [
  36072. {
  36073. name: "Normal",
  36074. height: math.unit(6 + 5/12, "feet"),
  36075. default: true
  36076. },
  36077. ]
  36078. ))
  36079. characterMakers.push(() => makeCharacter(
  36080. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  36081. {
  36082. front: {
  36083. height: math.unit(9, "feet"),
  36084. name: "Front",
  36085. image: {
  36086. source: "./media/characters/colton/front.svg",
  36087. extra: 1589/1326,
  36088. bottom: 139/1728
  36089. }
  36090. },
  36091. },
  36092. [
  36093. {
  36094. name: "Normal",
  36095. height: math.unit(9, "feet"),
  36096. default: true
  36097. },
  36098. ]
  36099. ))
  36100. characterMakers.push(() => makeCharacter(
  36101. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  36102. {
  36103. front: {
  36104. height: math.unit(2 + 9/12, "feet"),
  36105. name: "Front",
  36106. image: {
  36107. source: "./media/characters/bora/front.svg",
  36108. extra: 1265/1250,
  36109. bottom: 24/1289
  36110. }
  36111. },
  36112. },
  36113. [
  36114. {
  36115. name: "Normal",
  36116. height: math.unit(2 + 9/12, "feet"),
  36117. default: true
  36118. },
  36119. ]
  36120. ))
  36121. characterMakers.push(() => makeCharacter(
  36122. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  36123. {
  36124. front: {
  36125. height: math.unit(8, "feet"),
  36126. name: "Front",
  36127. image: {
  36128. source: "./media/characters/myu-myu/front.svg",
  36129. extra: 1949/1857,
  36130. bottom: 90/2039
  36131. }
  36132. },
  36133. },
  36134. [
  36135. {
  36136. name: "Normal",
  36137. height: math.unit(8, "feet"),
  36138. default: true
  36139. },
  36140. {
  36141. name: "Big",
  36142. height: math.unit(15, "feet")
  36143. },
  36144. {
  36145. name: "BIG",
  36146. height: math.unit(25, "feet")
  36147. },
  36148. ]
  36149. ))
  36150. characterMakers.push(() => makeCharacter(
  36151. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  36152. {
  36153. side: {
  36154. height: math.unit(7 + 5/12, "feet"),
  36155. weight: math.unit(2800, "lb"),
  36156. name: "Side",
  36157. image: {
  36158. source: "./media/characters/haloren/side.svg",
  36159. extra: 1793/409,
  36160. bottom: 59/1852
  36161. }
  36162. },
  36163. frontPaw: {
  36164. height: math.unit(2.36, "feet"),
  36165. name: "Front paw",
  36166. image: {
  36167. source: "./media/characters/haloren/front-paw.svg"
  36168. }
  36169. },
  36170. hindPaw: {
  36171. height: math.unit(3.18, "feet"),
  36172. name: "Hind paw",
  36173. image: {
  36174. source: "./media/characters/haloren/hind-paw.svg"
  36175. }
  36176. },
  36177. maw: {
  36178. height: math.unit(5.05, "feet"),
  36179. name: "Maw",
  36180. image: {
  36181. source: "./media/characters/haloren/maw.svg"
  36182. }
  36183. },
  36184. dick: {
  36185. height: math.unit(2.90, "feet"),
  36186. name: "Dick",
  36187. image: {
  36188. source: "./media/characters/haloren/dick.svg"
  36189. }
  36190. },
  36191. },
  36192. [
  36193. {
  36194. name: "Normal",
  36195. height: math.unit(7 + 5/12, "feet"),
  36196. default: true
  36197. },
  36198. {
  36199. name: "Enhanced",
  36200. height: math.unit(14 + 3/12, "feet")
  36201. },
  36202. ]
  36203. ))
  36204. characterMakers.push(() => makeCharacter(
  36205. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  36206. {
  36207. front: {
  36208. height: math.unit(171, "cm"),
  36209. name: "Front",
  36210. image: {
  36211. source: "./media/characters/kimmy/front.svg",
  36212. extra: 1491/1435,
  36213. bottom: 53/1544
  36214. }
  36215. },
  36216. },
  36217. [
  36218. {
  36219. name: "Small",
  36220. height: math.unit(9, "cm")
  36221. },
  36222. {
  36223. name: "Normal",
  36224. height: math.unit(171, "cm"),
  36225. default: true
  36226. },
  36227. ]
  36228. ))
  36229. characterMakers.push(() => makeCharacter(
  36230. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  36231. {
  36232. front: {
  36233. height: math.unit(8, "feet"),
  36234. weight: math.unit(300, "lb"),
  36235. name: "Front",
  36236. image: {
  36237. source: "./media/characters/galeboomer/front.svg",
  36238. extra: 4651/4415,
  36239. bottom: 162/4813
  36240. }
  36241. },
  36242. back: {
  36243. height: math.unit(8, "feet"),
  36244. weight: math.unit(300, "lb"),
  36245. name: "Back",
  36246. image: {
  36247. source: "./media/characters/galeboomer/back.svg",
  36248. extra: 4544/4314,
  36249. bottom: 16/4560
  36250. }
  36251. },
  36252. frontAlt: {
  36253. height: math.unit(8, "feet"),
  36254. weight: math.unit(300, "lb"),
  36255. name: "Front (Alt)",
  36256. image: {
  36257. source: "./media/characters/galeboomer/front-alt.svg",
  36258. extra: 4458/4228,
  36259. bottom: 68/4526
  36260. }
  36261. },
  36262. maw: {
  36263. height: math.unit(1.2, "feet"),
  36264. name: "Maw",
  36265. image: {
  36266. source: "./media/characters/galeboomer/maw.svg"
  36267. }
  36268. },
  36269. },
  36270. [
  36271. {
  36272. name: "Normal",
  36273. height: math.unit(8, "feet"),
  36274. default: true
  36275. },
  36276. ]
  36277. ))
  36278. characterMakers.push(() => makeCharacter(
  36279. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  36280. {
  36281. front: {
  36282. height: math.unit(5 + 9/12, "feet"),
  36283. weight: math.unit(120, "lb"),
  36284. name: "Front",
  36285. image: {
  36286. source: "./media/characters/chyr/front.svg",
  36287. extra: 1323/1254,
  36288. bottom: 63/1386
  36289. }
  36290. },
  36291. back: {
  36292. height: math.unit(5 + 9/12, "feet"),
  36293. weight: math.unit(120, "lb"),
  36294. name: "Back",
  36295. image: {
  36296. source: "./media/characters/chyr/back.svg",
  36297. extra: 1323/1252,
  36298. bottom: 48/1371
  36299. }
  36300. },
  36301. },
  36302. [
  36303. {
  36304. name: "Normal",
  36305. height: math.unit(5 + 9/12, "feet"),
  36306. default: true
  36307. },
  36308. ]
  36309. ))
  36310. characterMakers.push(() => makeCharacter(
  36311. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  36312. {
  36313. front: {
  36314. height: math.unit(7, "feet"),
  36315. weight: math.unit(310, "lb"),
  36316. name: "Front",
  36317. image: {
  36318. source: "./media/characters/solarus/front.svg",
  36319. extra: 2415/2021,
  36320. bottom: 103/2518
  36321. }
  36322. },
  36323. back: {
  36324. height: math.unit(7, "feet"),
  36325. weight: math.unit(310, "lb"),
  36326. name: "Back",
  36327. image: {
  36328. source: "./media/characters/solarus/back.svg",
  36329. extra: 2463/2089,
  36330. bottom: 79/2542
  36331. }
  36332. },
  36333. },
  36334. [
  36335. {
  36336. name: "Normal",
  36337. height: math.unit(7, "feet"),
  36338. default: true
  36339. },
  36340. ]
  36341. ))
  36342. characterMakers.push(() => makeCharacter(
  36343. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  36344. {
  36345. front: {
  36346. height: math.unit(16, "feet"),
  36347. name: "Front",
  36348. image: {
  36349. source: "./media/characters/mutsuju-koizaemon/front.svg",
  36350. extra: 1844/1780,
  36351. bottom: 58/1902
  36352. }
  36353. },
  36354. winterCoat: {
  36355. height: math.unit(16, "feet"),
  36356. name: "Winter Coat",
  36357. image: {
  36358. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  36359. extra: 1807/1775,
  36360. bottom: 69/1876
  36361. }
  36362. },
  36363. },
  36364. [
  36365. {
  36366. name: "Normal",
  36367. height: math.unit(16, "feet"),
  36368. default: true
  36369. },
  36370. {
  36371. name: "Chicago Size",
  36372. height: math.unit(560, "feet")
  36373. },
  36374. ]
  36375. ))
  36376. characterMakers.push(() => makeCharacter(
  36377. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  36378. {
  36379. front: {
  36380. height: math.unit(11 + 6/12, "feet"),
  36381. weight: math.unit(1366, "lb"),
  36382. name: "Front",
  36383. image: {
  36384. source: "./media/characters/lexor/front.svg",
  36385. extra: 1560/1481,
  36386. bottom: 211/1771
  36387. }
  36388. },
  36389. back: {
  36390. height: math.unit(11 + 6/12, "feet"),
  36391. weight: math.unit(1366, "lb"),
  36392. name: "Back",
  36393. image: {
  36394. source: "./media/characters/lexor/back.svg",
  36395. extra: 1614/1533,
  36396. bottom: 76/1690
  36397. }
  36398. },
  36399. maw: {
  36400. height: math.unit(3, "feet"),
  36401. name: "Maw",
  36402. image: {
  36403. source: "./media/characters/lexor/maw.svg"
  36404. }
  36405. },
  36406. dick: {
  36407. height: math.unit(2.59, "feet"),
  36408. name: "Dick",
  36409. image: {
  36410. source: "./media/characters/lexor/dick.svg"
  36411. }
  36412. },
  36413. },
  36414. [
  36415. {
  36416. name: "Normal",
  36417. height: math.unit(11 + 6/12, "feet"),
  36418. default: true
  36419. },
  36420. ]
  36421. ))
  36422. characterMakers.push(() => makeCharacter(
  36423. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  36424. {
  36425. front: {
  36426. height: math.unit(5 + 8/12, "feet"),
  36427. name: "Front",
  36428. image: {
  36429. source: "./media/characters/magnum/front.svg",
  36430. extra: 942/855,
  36431. bottom: 26/968
  36432. }
  36433. },
  36434. },
  36435. [
  36436. {
  36437. name: "Normal",
  36438. height: math.unit(5 + 8/12, "feet"),
  36439. default: true
  36440. },
  36441. ]
  36442. ))
  36443. characterMakers.push(() => makeCharacter(
  36444. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36445. {
  36446. front: {
  36447. height: math.unit(18 + 4/12, "feet"),
  36448. weight: math.unit(1500, "kg"),
  36449. name: "Front",
  36450. image: {
  36451. source: "./media/characters/solas-sharpsman/front.svg",
  36452. extra: 1698/1589,
  36453. bottom: 0/1698
  36454. }
  36455. },
  36456. },
  36457. [
  36458. {
  36459. name: "Normal",
  36460. height: math.unit(18 + 4/12, "feet"),
  36461. default: true
  36462. },
  36463. ]
  36464. ))
  36465. characterMakers.push(() => makeCharacter(
  36466. { name: "October", species: ["tiger"], tags: ["anthro"] },
  36467. {
  36468. front: {
  36469. height: math.unit(5 + 5/12, "feet"),
  36470. weight: math.unit(180, "lb"),
  36471. name: "Front",
  36472. image: {
  36473. source: "./media/characters/october/front.svg",
  36474. extra: 1800/1650,
  36475. bottom: 0/1800
  36476. }
  36477. },
  36478. frontNsfw: {
  36479. height: math.unit(5 + 5/12, "feet"),
  36480. weight: math.unit(180, "lb"),
  36481. name: "Front (NSFW)",
  36482. image: {
  36483. source: "./media/characters/october/front-nsfw.svg",
  36484. extra: 1392/1307,
  36485. bottom: 42/1434
  36486. }
  36487. },
  36488. },
  36489. [
  36490. {
  36491. name: "Normal",
  36492. height: math.unit(5 + 5/12, "feet"),
  36493. default: true
  36494. },
  36495. ]
  36496. ))
  36497. characterMakers.push(() => makeCharacter(
  36498. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36499. {
  36500. front: {
  36501. height: math.unit(8 + 6/12, "feet"),
  36502. name: "Front",
  36503. image: {
  36504. source: "./media/characters/essynkardi/front.svg",
  36505. extra: 1914/1846,
  36506. bottom: 22/1936
  36507. }
  36508. },
  36509. },
  36510. [
  36511. {
  36512. name: "Normal",
  36513. height: math.unit(8 + 6/12, "feet"),
  36514. default: true
  36515. },
  36516. ]
  36517. ))
  36518. characterMakers.push(() => makeCharacter(
  36519. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36520. {
  36521. front: {
  36522. height: math.unit(6 + 6/12, "feet"),
  36523. weight: math.unit(7, "lb"),
  36524. name: "Front",
  36525. image: {
  36526. source: "./media/characters/icky/front.svg",
  36527. extra: 813/782,
  36528. bottom: 66/879
  36529. }
  36530. },
  36531. back: {
  36532. height: math.unit(6 + 6/12, "feet"),
  36533. weight: math.unit(7, "lb"),
  36534. name: "Back",
  36535. image: {
  36536. source: "./media/characters/icky/back.svg",
  36537. extra: 754/735,
  36538. bottom: 56/810
  36539. }
  36540. },
  36541. },
  36542. [
  36543. {
  36544. name: "Normal",
  36545. height: math.unit(6 + 6/12, "feet"),
  36546. default: true
  36547. },
  36548. ]
  36549. ))
  36550. characterMakers.push(() => makeCharacter(
  36551. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36552. {
  36553. front: {
  36554. height: math.unit(15, "feet"),
  36555. name: "Front",
  36556. image: {
  36557. source: "./media/characters/rojas/front.svg",
  36558. extra: 1462/1408,
  36559. bottom: 95/1557
  36560. }
  36561. },
  36562. back: {
  36563. height: math.unit(15, "feet"),
  36564. name: "Back",
  36565. image: {
  36566. source: "./media/characters/rojas/back.svg",
  36567. extra: 1023/954,
  36568. bottom: 28/1051
  36569. }
  36570. },
  36571. },
  36572. [
  36573. {
  36574. name: "Normal",
  36575. height: math.unit(15, "feet"),
  36576. default: true
  36577. },
  36578. ]
  36579. ))
  36580. characterMakers.push(() => makeCharacter(
  36581. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36582. {
  36583. frontHuman: {
  36584. height: math.unit(5 + 7/12, "feet"),
  36585. name: "Front (Human)",
  36586. image: {
  36587. source: "./media/characters/alek-dryagan/front-human.svg",
  36588. extra: 1687/1667,
  36589. bottom: 69/1756
  36590. }
  36591. },
  36592. backHuman: {
  36593. height: math.unit(5 + 7/12, "feet"),
  36594. name: "Back (Human)",
  36595. image: {
  36596. source: "./media/characters/alek-dryagan/back-human.svg",
  36597. extra: 1670/1649,
  36598. bottom: 65/1735
  36599. }
  36600. },
  36601. frontDemi: {
  36602. height: math.unit(65, "feet"),
  36603. name: "Front (Demi)",
  36604. image: {
  36605. source: "./media/characters/alek-dryagan/front-demi.svg",
  36606. extra: 1669/1642,
  36607. bottom: 49/1718
  36608. }
  36609. },
  36610. backDemi: {
  36611. height: math.unit(65, "feet"),
  36612. name: "Back (Demi)",
  36613. image: {
  36614. source: "./media/characters/alek-dryagan/back-demi.svg",
  36615. extra: 1658/1637,
  36616. bottom: 40/1698
  36617. }
  36618. },
  36619. mawHuman: {
  36620. height: math.unit(0.3, "feet"),
  36621. name: "Maw (Human)",
  36622. image: {
  36623. source: "./media/characters/alek-dryagan/maw-human.svg"
  36624. }
  36625. },
  36626. mawDemi: {
  36627. height: math.unit(3.8, "feet"),
  36628. name: "Maw (Demi)",
  36629. image: {
  36630. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36631. }
  36632. },
  36633. },
  36634. [
  36635. {
  36636. name: "Normal",
  36637. height: math.unit(5 + 7/12, "feet"),
  36638. default: true
  36639. },
  36640. ]
  36641. ))
  36642. characterMakers.push(() => makeCharacter(
  36643. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36644. {
  36645. frontHuman: {
  36646. height: math.unit(5 + 2/12, "feet"),
  36647. name: "Front (Human)",
  36648. image: {
  36649. source: "./media/characters/gen/front-human.svg",
  36650. extra: 1627/1538,
  36651. bottom: 71/1698
  36652. }
  36653. },
  36654. backHuman: {
  36655. height: math.unit(5 + 2/12, "feet"),
  36656. name: "Back (Human)",
  36657. image: {
  36658. source: "./media/characters/gen/back-human.svg",
  36659. extra: 1638/1548,
  36660. bottom: 69/1707
  36661. }
  36662. },
  36663. frontDemi: {
  36664. height: math.unit(5 + 2/12, "feet"),
  36665. name: "Front (Demi)",
  36666. image: {
  36667. source: "./media/characters/gen/front-demi.svg",
  36668. extra: 1627/1538,
  36669. bottom: 71/1698
  36670. }
  36671. },
  36672. backDemi: {
  36673. height: math.unit(5 + 2/12, "feet"),
  36674. name: "Back (Demi)",
  36675. image: {
  36676. source: "./media/characters/gen/back-demi.svg",
  36677. extra: 1638/1548,
  36678. bottom: 69/1707
  36679. }
  36680. },
  36681. },
  36682. [
  36683. {
  36684. name: "Normal",
  36685. height: math.unit(5 + 2/12, "feet"),
  36686. default: true
  36687. },
  36688. ]
  36689. ))
  36690. characterMakers.push(() => makeCharacter(
  36691. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36692. {
  36693. frontImp: {
  36694. height: math.unit(1 + 11/12, "feet"),
  36695. name: "Front (Imp)",
  36696. image: {
  36697. source: "./media/characters/max-kobold/front-imp.svg",
  36698. extra: 1238/1134,
  36699. bottom: 81/1319
  36700. }
  36701. },
  36702. backImp: {
  36703. height: math.unit(1 + 11/12, "feet"),
  36704. name: "Back (Imp)",
  36705. image: {
  36706. source: "./media/characters/max-kobold/back-imp.svg",
  36707. extra: 1334/1175,
  36708. bottom: 34/1368
  36709. }
  36710. },
  36711. frontDemi: {
  36712. height: math.unit(5 + 9/12, "feet"),
  36713. name: "Front (Demi)",
  36714. image: {
  36715. source: "./media/characters/max-kobold/front-demi.svg",
  36716. extra: 1715/1685,
  36717. bottom: 54/1769
  36718. }
  36719. },
  36720. backDemi: {
  36721. height: math.unit(5 + 9/12, "feet"),
  36722. name: "Back (Demi)",
  36723. image: {
  36724. source: "./media/characters/max-kobold/back-demi.svg",
  36725. extra: 1752/1729,
  36726. bottom: 41/1793
  36727. }
  36728. },
  36729. handImp: {
  36730. height: math.unit(0.45, "feet"),
  36731. name: "Hand (Imp)",
  36732. image: {
  36733. source: "./media/characters/max-kobold/hand.svg"
  36734. }
  36735. },
  36736. pawImp: {
  36737. height: math.unit(0.46, "feet"),
  36738. name: "Paw (Imp)",
  36739. image: {
  36740. source: "./media/characters/max-kobold/paw.svg"
  36741. }
  36742. },
  36743. handDemi: {
  36744. height: math.unit(0.80, "feet"),
  36745. name: "Hand (Demi)",
  36746. image: {
  36747. source: "./media/characters/max-kobold/hand.svg"
  36748. }
  36749. },
  36750. pawDemi: {
  36751. height: math.unit(1.1, "feet"),
  36752. name: "Paw (Demi)",
  36753. image: {
  36754. source: "./media/characters/max-kobold/paw.svg"
  36755. }
  36756. },
  36757. headImp: {
  36758. height: math.unit(1.33, "feet"),
  36759. name: "Head (Imp)",
  36760. image: {
  36761. source: "./media/characters/max-kobold/head-imp.svg"
  36762. }
  36763. },
  36764. mawImp: {
  36765. height: math.unit(0.75, "feet"),
  36766. name: "Maw (Imp)",
  36767. image: {
  36768. source: "./media/characters/max-kobold/maw-imp.svg"
  36769. }
  36770. },
  36771. mawDemi: {
  36772. height: math.unit(0.42, "feet"),
  36773. name: "Maw (Demi)",
  36774. image: {
  36775. source: "./media/characters/max-kobold/maw-demi.svg"
  36776. }
  36777. },
  36778. },
  36779. [
  36780. {
  36781. name: "Normal",
  36782. height: math.unit(1 + 11/12, "feet"),
  36783. default: true
  36784. },
  36785. ]
  36786. ))
  36787. characterMakers.push(() => makeCharacter(
  36788. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36789. {
  36790. front: {
  36791. height: math.unit(7 + 5/12, "feet"),
  36792. name: "Front",
  36793. image: {
  36794. source: "./media/characters/carbon/front.svg",
  36795. extra: 1754/1689,
  36796. bottom: 65/1819
  36797. }
  36798. },
  36799. back: {
  36800. height: math.unit(7 + 5/12, "feet"),
  36801. name: "Back",
  36802. image: {
  36803. source: "./media/characters/carbon/back.svg",
  36804. extra: 1762/1695,
  36805. bottom: 24/1786
  36806. }
  36807. },
  36808. frontGigantamax: {
  36809. height: math.unit(150, "feet"),
  36810. name: "Front (Gigantamax)",
  36811. image: {
  36812. source: "./media/characters/carbon/front-gigantamax.svg",
  36813. extra: 1826/1669,
  36814. bottom: 59/1885
  36815. }
  36816. },
  36817. backGigantamax: {
  36818. height: math.unit(150, "feet"),
  36819. name: "Back (Gigantamax)",
  36820. image: {
  36821. source: "./media/characters/carbon/back-gigantamax.svg",
  36822. extra: 1796/1653,
  36823. bottom: 53/1849
  36824. }
  36825. },
  36826. maw: {
  36827. height: math.unit(0.48, "feet"),
  36828. name: "Maw",
  36829. image: {
  36830. source: "./media/characters/carbon/maw.svg"
  36831. }
  36832. },
  36833. mawGigantamax: {
  36834. height: math.unit(7.5, "feet"),
  36835. name: "Maw (Gigantamax)",
  36836. image: {
  36837. source: "./media/characters/carbon/maw-gigantamax.svg"
  36838. }
  36839. },
  36840. },
  36841. [
  36842. {
  36843. name: "Normal",
  36844. height: math.unit(7 + 5/12, "feet"),
  36845. default: true
  36846. },
  36847. ]
  36848. ))
  36849. characterMakers.push(() => makeCharacter(
  36850. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36851. {
  36852. front: {
  36853. height: math.unit(6, "feet"),
  36854. name: "Front",
  36855. image: {
  36856. source: "./media/characters/maverick/front.svg",
  36857. extra: 1672/1661,
  36858. bottom: 85/1757
  36859. }
  36860. },
  36861. back: {
  36862. height: math.unit(6, "feet"),
  36863. name: "Back",
  36864. image: {
  36865. source: "./media/characters/maverick/back.svg",
  36866. extra: 1642/1631,
  36867. bottom: 38/1680
  36868. }
  36869. },
  36870. },
  36871. [
  36872. {
  36873. name: "Normal",
  36874. height: math.unit(6, "feet"),
  36875. default: true
  36876. },
  36877. ]
  36878. ))
  36879. characterMakers.push(() => makeCharacter(
  36880. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36881. {
  36882. front: {
  36883. height: math.unit(15, "feet"),
  36884. weight: math.unit(615, "lb"),
  36885. name: "Front",
  36886. image: {
  36887. source: "./media/characters/grockle/front.svg",
  36888. extra: 1535/1427,
  36889. bottom: 56/1591
  36890. }
  36891. },
  36892. },
  36893. [
  36894. {
  36895. name: "Normal",
  36896. height: math.unit(15, "feet"),
  36897. default: true
  36898. },
  36899. {
  36900. name: "Large",
  36901. height: math.unit(150, "feet")
  36902. },
  36903. {
  36904. name: "Macro",
  36905. height: math.unit(1876, "feet")
  36906. },
  36907. {
  36908. name: "Mega Macro",
  36909. height: math.unit(121940, "feet")
  36910. },
  36911. {
  36912. name: "Giga Macro",
  36913. height: math.unit(750, "km")
  36914. },
  36915. {
  36916. name: "Tera Macro",
  36917. height: math.unit(750000, "km")
  36918. },
  36919. {
  36920. name: "Galactic",
  36921. height: math.unit(1.4e5, "km")
  36922. },
  36923. {
  36924. name: "Godlike",
  36925. height: math.unit(9.8e280, "galaxies")
  36926. },
  36927. ]
  36928. ))
  36929. characterMakers.push(() => makeCharacter(
  36930. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36931. {
  36932. front: {
  36933. height: math.unit(11, "meters"),
  36934. weight: math.unit(20, "tonnes"),
  36935. name: "Front",
  36936. image: {
  36937. source: "./media/characters/alistair/front.svg",
  36938. extra: 1265/1009,
  36939. bottom: 93/1358
  36940. }
  36941. },
  36942. },
  36943. [
  36944. {
  36945. name: "Normal",
  36946. height: math.unit(11, "meters"),
  36947. default: true
  36948. },
  36949. ]
  36950. ))
  36951. characterMakers.push(() => makeCharacter(
  36952. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36953. {
  36954. front: {
  36955. height: math.unit(5 + 8/12, "feet"),
  36956. name: "Front",
  36957. image: {
  36958. source: "./media/characters/haruka/front.svg",
  36959. extra: 2012/1952,
  36960. bottom: 0/2012
  36961. }
  36962. },
  36963. },
  36964. [
  36965. {
  36966. name: "Normal",
  36967. height: math.unit(5 + 8/12, "feet"),
  36968. default: true
  36969. },
  36970. ]
  36971. ))
  36972. characterMakers.push(() => makeCharacter(
  36973. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36974. {
  36975. back: {
  36976. height: math.unit(9, "feet"),
  36977. name: "Back",
  36978. image: {
  36979. source: "./media/characters/vivian-sylveon/back.svg",
  36980. extra: 1853/1714,
  36981. bottom: 0/1853
  36982. }
  36983. },
  36984. },
  36985. [
  36986. {
  36987. name: "Normal",
  36988. height: math.unit(9, "feet"),
  36989. default: true
  36990. },
  36991. {
  36992. name: "Macro",
  36993. height: math.unit(500, "feet")
  36994. },
  36995. {
  36996. name: "Megamacro",
  36997. height: math.unit(600, "miles")
  36998. },
  36999. {
  37000. name: "Gigamacro",
  37001. height: math.unit(30000, "miles")
  37002. },
  37003. ]
  37004. ))
  37005. characterMakers.push(() => makeCharacter(
  37006. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  37007. {
  37008. anthro: {
  37009. height: math.unit(5 + 10/12, "feet"),
  37010. weight: math.unit(100, "lb"),
  37011. name: "Anthro",
  37012. image: {
  37013. source: "./media/characters/daiki/anthro.svg",
  37014. extra: 1115/1027,
  37015. bottom: 69/1184
  37016. }
  37017. },
  37018. feral: {
  37019. height: math.unit(200, "feet"),
  37020. name: "Feral",
  37021. image: {
  37022. source: "./media/characters/daiki/feral.svg",
  37023. extra: 1256/313,
  37024. bottom: 39/1295
  37025. }
  37026. },
  37027. feralHead: {
  37028. height: math.unit(171, "feet"),
  37029. name: "Feral Head",
  37030. image: {
  37031. source: "./media/characters/daiki/feral-head.svg"
  37032. }
  37033. },
  37034. manaDragon: {
  37035. height: math.unit(170, "meters"),
  37036. name: "Mana-dragon",
  37037. image: {
  37038. source: "./media/characters/daiki/mana-dragon.svg",
  37039. extra: 763/420,
  37040. bottom: 97/860
  37041. }
  37042. },
  37043. },
  37044. [
  37045. {
  37046. name: "Normal",
  37047. height: math.unit(5 + 10/12, "feet"),
  37048. default: true
  37049. },
  37050. ]
  37051. ))
  37052. characterMakers.push(() => makeCharacter(
  37053. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  37054. {
  37055. fullyEquippedFront: {
  37056. height: math.unit(3 + 1/12, "feet"),
  37057. weight: math.unit(24, "lb"),
  37058. name: "Fully Equipped (Front)",
  37059. image: {
  37060. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  37061. extra: 687/605,
  37062. bottom: 18/705
  37063. }
  37064. },
  37065. fullyEquippedBack: {
  37066. height: math.unit(3 + 1/12, "feet"),
  37067. weight: math.unit(24, "lb"),
  37068. name: "Fully Equipped (Back)",
  37069. image: {
  37070. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  37071. extra: 689/590,
  37072. bottom: 18/707
  37073. }
  37074. },
  37075. dailyWear: {
  37076. height: math.unit(3 + 1/12, "feet"),
  37077. weight: math.unit(24, "lb"),
  37078. name: "Daily Wear",
  37079. image: {
  37080. source: "./media/characters/tea-spot/daily-wear.svg",
  37081. extra: 701/620,
  37082. bottom: 21/722
  37083. }
  37084. },
  37085. maidWork: {
  37086. height: math.unit(3 + 1/12, "feet"),
  37087. weight: math.unit(24, "lb"),
  37088. name: "Maid Work",
  37089. image: {
  37090. source: "./media/characters/tea-spot/maid-work.svg",
  37091. extra: 693/609,
  37092. bottom: 15/708
  37093. }
  37094. },
  37095. },
  37096. [
  37097. {
  37098. name: "Normal",
  37099. height: math.unit(3 + 1/12, "feet"),
  37100. default: true
  37101. },
  37102. ]
  37103. ))
  37104. characterMakers.push(() => makeCharacter(
  37105. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  37106. {
  37107. front: {
  37108. height: math.unit(175, "cm"),
  37109. weight: math.unit(75, "kg"),
  37110. name: "Front",
  37111. image: {
  37112. source: "./media/characters/chee/front.svg",
  37113. extra: 1796/1740,
  37114. bottom: 40/1836
  37115. }
  37116. },
  37117. },
  37118. [
  37119. {
  37120. name: "Micro-Micro",
  37121. height: math.unit(1, "nm")
  37122. },
  37123. {
  37124. name: "Micro-erst",
  37125. height: math.unit(1, "micrometer")
  37126. },
  37127. {
  37128. name: "Micro-er",
  37129. height: math.unit(1, "cm")
  37130. },
  37131. {
  37132. name: "Normal",
  37133. height: math.unit(175, "cm"),
  37134. default: true
  37135. },
  37136. {
  37137. name: "Macro",
  37138. height: math.unit(100, "m")
  37139. },
  37140. {
  37141. name: "Macro-er",
  37142. height: math.unit(1, "km")
  37143. },
  37144. {
  37145. name: "Macro-erst",
  37146. height: math.unit(10, "km")
  37147. },
  37148. {
  37149. name: "Macro-Macro",
  37150. height: math.unit(100, "km")
  37151. },
  37152. ]
  37153. ))
  37154. characterMakers.push(() => makeCharacter(
  37155. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  37156. {
  37157. front: {
  37158. height: math.unit(11 + 9/12, "feet"),
  37159. weight: math.unit(935, "lb"),
  37160. name: "Front",
  37161. image: {
  37162. source: "./media/characters/kingsley/front.svg",
  37163. extra: 1803/1674,
  37164. bottom: 127/1930
  37165. }
  37166. },
  37167. frontNude: {
  37168. height: math.unit(11 + 9/12, "feet"),
  37169. weight: math.unit(935, "lb"),
  37170. name: "Front (Nude)",
  37171. image: {
  37172. source: "./media/characters/kingsley/front-nude.svg",
  37173. extra: 1803/1674,
  37174. bottom: 127/1930
  37175. }
  37176. },
  37177. },
  37178. [
  37179. {
  37180. name: "Normal",
  37181. height: math.unit(11 + 9/12, "feet"),
  37182. default: true
  37183. },
  37184. ]
  37185. ))
  37186. characterMakers.push(() => makeCharacter(
  37187. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  37188. {
  37189. side: {
  37190. height: math.unit(9, "feet"),
  37191. name: "Side",
  37192. image: {
  37193. source: "./media/characters/rymel/side.svg",
  37194. extra: 792/469,
  37195. bottom: 121/913
  37196. }
  37197. },
  37198. maw: {
  37199. height: math.unit(2.4, "meters"),
  37200. name: "Maw",
  37201. image: {
  37202. source: "./media/characters/rymel/maw.svg"
  37203. }
  37204. },
  37205. },
  37206. [
  37207. {
  37208. name: "House Drake",
  37209. height: math.unit(2, "feet")
  37210. },
  37211. {
  37212. name: "Reduced",
  37213. height: math.unit(4.5, "feet")
  37214. },
  37215. {
  37216. name: "Normal",
  37217. height: math.unit(9, "feet"),
  37218. default: true
  37219. },
  37220. ]
  37221. ))
  37222. characterMakers.push(() => makeCharacter(
  37223. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  37224. {
  37225. front: {
  37226. height: math.unit(1.74, "meters"),
  37227. weight: math.unit(55, "kg"),
  37228. name: "Front",
  37229. image: {
  37230. source: "./media/characters/rubus/front.svg",
  37231. extra: 1894/1742,
  37232. bottom: 44/1938
  37233. }
  37234. },
  37235. },
  37236. [
  37237. {
  37238. name: "Normal",
  37239. height: math.unit(1.74, "meters"),
  37240. default: true
  37241. },
  37242. ]
  37243. ))
  37244. characterMakers.push(() => makeCharacter(
  37245. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  37246. {
  37247. front: {
  37248. height: math.unit(5 + 2/12, "feet"),
  37249. weight: math.unit(112, "lb"),
  37250. name: "Front",
  37251. image: {
  37252. source: "./media/characters/cassie-kingston/front.svg",
  37253. extra: 1438/1390,
  37254. bottom: 47/1485
  37255. }
  37256. },
  37257. },
  37258. [
  37259. {
  37260. name: "Normal",
  37261. height: math.unit(5 + 2/12, "feet"),
  37262. default: true
  37263. },
  37264. {
  37265. name: "Macro",
  37266. height: math.unit(128, "feet")
  37267. },
  37268. {
  37269. name: "Megamacro",
  37270. height: math.unit(2.56, "miles")
  37271. },
  37272. ]
  37273. ))
  37274. characterMakers.push(() => makeCharacter(
  37275. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  37276. {
  37277. front: {
  37278. height: math.unit(7, "feet"),
  37279. name: "Front",
  37280. image: {
  37281. source: "./media/characters/fox/front.svg",
  37282. extra: 1798/1703,
  37283. bottom: 55/1853
  37284. }
  37285. },
  37286. back: {
  37287. height: math.unit(7, "feet"),
  37288. name: "Back",
  37289. image: {
  37290. source: "./media/characters/fox/back.svg",
  37291. extra: 1748/1649,
  37292. bottom: 32/1780
  37293. }
  37294. },
  37295. head: {
  37296. height: math.unit(1.95, "feet"),
  37297. name: "Head",
  37298. image: {
  37299. source: "./media/characters/fox/head.svg"
  37300. }
  37301. },
  37302. dick: {
  37303. height: math.unit(1.33, "feet"),
  37304. name: "Dick",
  37305. image: {
  37306. source: "./media/characters/fox/dick.svg"
  37307. }
  37308. },
  37309. foot: {
  37310. height: math.unit(1, "feet"),
  37311. name: "Foot",
  37312. image: {
  37313. source: "./media/characters/fox/foot.svg"
  37314. }
  37315. },
  37316. paw: {
  37317. height: math.unit(0.92, "feet"),
  37318. name: "Paw",
  37319. image: {
  37320. source: "./media/characters/fox/paw.svg"
  37321. }
  37322. },
  37323. },
  37324. [
  37325. {
  37326. name: "Small",
  37327. height: math.unit(3, "inches")
  37328. },
  37329. {
  37330. name: "\"Realistic\"",
  37331. height: math.unit(7, "feet")
  37332. },
  37333. {
  37334. name: "Normal",
  37335. height: math.unit(150, "feet"),
  37336. default: true
  37337. },
  37338. {
  37339. name: "BIG",
  37340. height: math.unit(1200, "feet")
  37341. },
  37342. {
  37343. name: "👀",
  37344. height: math.unit(5, "miles")
  37345. },
  37346. {
  37347. name: "👀👀👀",
  37348. height: math.unit(64, "miles")
  37349. },
  37350. ]
  37351. ))
  37352. characterMakers.push(() => makeCharacter(
  37353. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  37354. {
  37355. front: {
  37356. height: math.unit(625, "feet"),
  37357. name: "Front",
  37358. image: {
  37359. source: "./media/characters/asonja-rossa/front.svg",
  37360. extra: 1833/1686,
  37361. bottom: 24/1857
  37362. }
  37363. },
  37364. back: {
  37365. height: math.unit(625, "feet"),
  37366. name: "Back",
  37367. image: {
  37368. source: "./media/characters/asonja-rossa/back.svg",
  37369. extra: 1852/1753,
  37370. bottom: 26/1878
  37371. }
  37372. },
  37373. },
  37374. [
  37375. {
  37376. name: "Macro",
  37377. height: math.unit(625, "feet"),
  37378. default: true
  37379. },
  37380. ]
  37381. ))
  37382. characterMakers.push(() => makeCharacter(
  37383. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  37384. {
  37385. side: {
  37386. height: math.unit(8, "feet"),
  37387. name: "Side",
  37388. image: {
  37389. source: "./media/characters/rezukii/side.svg",
  37390. extra: 979/542,
  37391. bottom: 87/1066
  37392. }
  37393. },
  37394. sitting: {
  37395. height: math.unit(14.6, "feet"),
  37396. name: "Sitting",
  37397. image: {
  37398. source: "./media/characters/rezukii/sitting.svg",
  37399. extra: 1023/813,
  37400. bottom: 45/1068
  37401. }
  37402. },
  37403. },
  37404. [
  37405. {
  37406. name: "Tiny",
  37407. height: math.unit(2, "feet")
  37408. },
  37409. {
  37410. name: "Smol",
  37411. height: math.unit(4, "feet")
  37412. },
  37413. {
  37414. name: "Normal",
  37415. height: math.unit(8, "feet"),
  37416. default: true
  37417. },
  37418. {
  37419. name: "Big",
  37420. height: math.unit(12, "feet")
  37421. },
  37422. {
  37423. name: "Macro",
  37424. height: math.unit(30, "feet")
  37425. },
  37426. ]
  37427. ))
  37428. characterMakers.push(() => makeCharacter(
  37429. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37430. {
  37431. front: {
  37432. height: math.unit(14, "feet"),
  37433. weight: math.unit(9.5, "tonnes"),
  37434. name: "Front",
  37435. image: {
  37436. source: "./media/characters/dawnheart/front.svg",
  37437. extra: 2792/2675,
  37438. bottom: 64/2856
  37439. }
  37440. },
  37441. },
  37442. [
  37443. {
  37444. name: "Normal",
  37445. height: math.unit(14, "feet"),
  37446. default: true
  37447. },
  37448. ]
  37449. ))
  37450. characterMakers.push(() => makeCharacter(
  37451. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  37452. {
  37453. front: {
  37454. height: math.unit(1.7, "m"),
  37455. name: "Front",
  37456. image: {
  37457. source: "./media/characters/gladi/front.svg",
  37458. extra: 1460/1362,
  37459. bottom: 19/1479
  37460. }
  37461. },
  37462. back: {
  37463. height: math.unit(1.7, "m"),
  37464. name: "Back",
  37465. image: {
  37466. source: "./media/characters/gladi/back.svg",
  37467. extra: 1459/1357,
  37468. bottom: 12/1471
  37469. }
  37470. },
  37471. feral: {
  37472. height: math.unit(2.05, "m"),
  37473. name: "Feral",
  37474. image: {
  37475. source: "./media/characters/gladi/feral.svg",
  37476. extra: 821/557,
  37477. bottom: 91/912
  37478. }
  37479. },
  37480. },
  37481. [
  37482. {
  37483. name: "Shortest",
  37484. height: math.unit(70, "cm")
  37485. },
  37486. {
  37487. name: "Normal",
  37488. height: math.unit(1.7, "m")
  37489. },
  37490. {
  37491. name: "Macro",
  37492. height: math.unit(10, "m"),
  37493. default: true
  37494. },
  37495. {
  37496. name: "Tallest",
  37497. height: math.unit(200, "m")
  37498. },
  37499. ]
  37500. ))
  37501. characterMakers.push(() => makeCharacter(
  37502. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37503. {
  37504. front: {
  37505. height: math.unit(5 + 7/12, "feet"),
  37506. weight: math.unit(2, "tons"),
  37507. name: "Front",
  37508. image: {
  37509. source: "./media/characters/erdno/front.svg",
  37510. extra: 1234/1129,
  37511. bottom: 35/1269
  37512. }
  37513. },
  37514. angled: {
  37515. height: math.unit(5 + 7/12, "feet"),
  37516. weight: math.unit(2, "tons"),
  37517. name: "Angled",
  37518. image: {
  37519. source: "./media/characters/erdno/angled.svg",
  37520. extra: 1185/1139,
  37521. bottom: 36/1221
  37522. }
  37523. },
  37524. side: {
  37525. height: math.unit(5 + 7/12, "feet"),
  37526. weight: math.unit(2, "tons"),
  37527. name: "Side",
  37528. image: {
  37529. source: "./media/characters/erdno/side.svg",
  37530. extra: 1191/1144,
  37531. bottom: 40/1231
  37532. }
  37533. },
  37534. back: {
  37535. height: math.unit(5 + 7/12, "feet"),
  37536. weight: math.unit(2, "tons"),
  37537. name: "Back",
  37538. image: {
  37539. source: "./media/characters/erdno/back.svg",
  37540. extra: 1202/1146,
  37541. bottom: 17/1219
  37542. }
  37543. },
  37544. frontNsfw: {
  37545. height: math.unit(5 + 7/12, "feet"),
  37546. weight: math.unit(2, "tons"),
  37547. name: "Front (NSFW)",
  37548. image: {
  37549. source: "./media/characters/erdno/front-nsfw.svg",
  37550. extra: 1234/1129,
  37551. bottom: 35/1269
  37552. }
  37553. },
  37554. angledNsfw: {
  37555. height: math.unit(5 + 7/12, "feet"),
  37556. weight: math.unit(2, "tons"),
  37557. name: "Angled (NSFW)",
  37558. image: {
  37559. source: "./media/characters/erdno/angled-nsfw.svg",
  37560. extra: 1185/1139,
  37561. bottom: 36/1221
  37562. }
  37563. },
  37564. sideNsfw: {
  37565. height: math.unit(5 + 7/12, "feet"),
  37566. weight: math.unit(2, "tons"),
  37567. name: "Side (NSFW)",
  37568. image: {
  37569. source: "./media/characters/erdno/side-nsfw.svg",
  37570. extra: 1191/1144,
  37571. bottom: 40/1231
  37572. }
  37573. },
  37574. backNsfw: {
  37575. height: math.unit(5 + 7/12, "feet"),
  37576. weight: math.unit(2, "tons"),
  37577. name: "Back (NSFW)",
  37578. image: {
  37579. source: "./media/characters/erdno/back-nsfw.svg",
  37580. extra: 1202/1146,
  37581. bottom: 17/1219
  37582. }
  37583. },
  37584. frontHyper: {
  37585. height: math.unit(5 + 7/12, "feet"),
  37586. weight: math.unit(2, "tons"),
  37587. name: "Front (Hyper)",
  37588. image: {
  37589. source: "./media/characters/erdno/front-hyper.svg",
  37590. extra: 1298/1136,
  37591. bottom: 35/1333
  37592. }
  37593. },
  37594. },
  37595. [
  37596. {
  37597. name: "Normal",
  37598. height: math.unit(5 + 7/12, "feet"),
  37599. default: true
  37600. },
  37601. {
  37602. name: "Big",
  37603. height: math.unit(5.7, "meters")
  37604. },
  37605. {
  37606. name: "Macro",
  37607. height: math.unit(5.7, "kilometers")
  37608. },
  37609. {
  37610. name: "Megamacro",
  37611. height: math.unit(5.7, "earths")
  37612. },
  37613. ]
  37614. ))
  37615. characterMakers.push(() => makeCharacter(
  37616. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37617. {
  37618. front: {
  37619. height: math.unit(5 + 10/12, "feet"),
  37620. weight: math.unit(150, "lb"),
  37621. name: "Front",
  37622. image: {
  37623. source: "./media/characters/jamie/front.svg",
  37624. extra: 1908/1768,
  37625. bottom: 19/1927
  37626. }
  37627. },
  37628. },
  37629. [
  37630. {
  37631. name: "Minimum",
  37632. height: math.unit(2, "cm")
  37633. },
  37634. {
  37635. name: "Micro",
  37636. height: math.unit(3, "inches")
  37637. },
  37638. {
  37639. name: "Normal",
  37640. height: math.unit(5 + 10/12, "feet"),
  37641. default: true
  37642. },
  37643. {
  37644. name: "Macro",
  37645. height: math.unit(150, "feet")
  37646. },
  37647. {
  37648. name: "Megamacro",
  37649. height: math.unit(10000, "m")
  37650. },
  37651. ]
  37652. ))
  37653. characterMakers.push(() => makeCharacter(
  37654. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37655. {
  37656. front: {
  37657. height: math.unit(2, "meters"),
  37658. weight: math.unit(100, "kg"),
  37659. name: "Front",
  37660. image: {
  37661. source: "./media/characters/shiron/front.svg",
  37662. extra: 2103/1985,
  37663. bottom: 98/2201
  37664. }
  37665. },
  37666. back: {
  37667. height: math.unit(2, "meters"),
  37668. weight: math.unit(100, "kg"),
  37669. name: "Back",
  37670. image: {
  37671. source: "./media/characters/shiron/back.svg",
  37672. extra: 2110/2015,
  37673. bottom: 89/2199
  37674. }
  37675. },
  37676. hand: {
  37677. height: math.unit(0.96, "feet"),
  37678. name: "Hand",
  37679. image: {
  37680. source: "./media/characters/shiron/hand.svg"
  37681. }
  37682. },
  37683. foot: {
  37684. height: math.unit(1.464, "feet"),
  37685. name: "Foot",
  37686. image: {
  37687. source: "./media/characters/shiron/foot.svg"
  37688. }
  37689. },
  37690. },
  37691. [
  37692. {
  37693. name: "Normal",
  37694. height: math.unit(2, "meters")
  37695. },
  37696. {
  37697. name: "Macro",
  37698. height: math.unit(500, "meters"),
  37699. default: true
  37700. },
  37701. {
  37702. name: "Megamacro",
  37703. height: math.unit(20, "km")
  37704. },
  37705. ]
  37706. ))
  37707. characterMakers.push(() => makeCharacter(
  37708. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37709. {
  37710. front: {
  37711. height: math.unit(6, "feet"),
  37712. name: "Front",
  37713. image: {
  37714. source: "./media/characters/sam/front.svg",
  37715. extra: 849/826,
  37716. bottom: 19/868
  37717. }
  37718. },
  37719. },
  37720. [
  37721. {
  37722. name: "Normal",
  37723. height: math.unit(6, "feet"),
  37724. default: true
  37725. },
  37726. ]
  37727. ))
  37728. characterMakers.push(() => makeCharacter(
  37729. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37730. {
  37731. front: {
  37732. height: math.unit(8 + 4/12, "feet"),
  37733. weight: math.unit(122, "kg"),
  37734. name: "Front",
  37735. image: {
  37736. source: "./media/characters/namori-kurogawa/front.svg",
  37737. extra: 1894/1576,
  37738. bottom: 34/1928
  37739. }
  37740. },
  37741. },
  37742. [
  37743. {
  37744. name: "Normal",
  37745. height: math.unit(8 + 4/12, "feet"),
  37746. default: true
  37747. },
  37748. ]
  37749. ))
  37750. characterMakers.push(() => makeCharacter(
  37751. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37752. {
  37753. front: {
  37754. height: math.unit(9, "feet"),
  37755. weight: math.unit(621, "lb"),
  37756. name: "Front",
  37757. image: {
  37758. source: "./media/characters/unmru/front.svg",
  37759. extra: 1853/1747,
  37760. bottom: 73/1926
  37761. }
  37762. },
  37763. side: {
  37764. height: math.unit(9, "feet"),
  37765. weight: math.unit(621, "lb"),
  37766. name: "Side",
  37767. image: {
  37768. source: "./media/characters/unmru/side.svg",
  37769. extra: 1781/1671,
  37770. bottom: 127/1908
  37771. }
  37772. },
  37773. back: {
  37774. height: math.unit(9, "feet"),
  37775. weight: math.unit(621, "lb"),
  37776. name: "Back",
  37777. image: {
  37778. source: "./media/characters/unmru/back.svg",
  37779. extra: 1894/1765,
  37780. bottom: 75/1969
  37781. }
  37782. },
  37783. dick: {
  37784. height: math.unit(3, "feet"),
  37785. weight: math.unit(35, "lb"),
  37786. name: "Dick",
  37787. image: {
  37788. source: "./media/characters/unmru/dick.svg"
  37789. }
  37790. },
  37791. },
  37792. [
  37793. {
  37794. name: "Normal",
  37795. height: math.unit(9, "feet")
  37796. },
  37797. {
  37798. name: "Natural",
  37799. height: math.unit(27, "feet"),
  37800. default: true
  37801. },
  37802. {
  37803. name: "Giant",
  37804. height: math.unit(90, "feet")
  37805. },
  37806. {
  37807. name: "Kaiju",
  37808. height: math.unit(270, "feet")
  37809. },
  37810. {
  37811. name: "Macro",
  37812. height: math.unit(900, "feet")
  37813. },
  37814. {
  37815. name: "Macro+",
  37816. height: math.unit(2700, "feet")
  37817. },
  37818. {
  37819. name: "Megamacro",
  37820. height: math.unit(9000, "feet")
  37821. },
  37822. {
  37823. name: "City-Crushing",
  37824. height: math.unit(27000, "feet")
  37825. },
  37826. {
  37827. name: "Mountain-Mashing",
  37828. height: math.unit(90000, "feet")
  37829. },
  37830. {
  37831. name: "Earth-Eclipsing",
  37832. height: math.unit(2.7e8, "feet")
  37833. },
  37834. {
  37835. name: "Sol-Swallowing",
  37836. height: math.unit(9e10, "feet")
  37837. },
  37838. {
  37839. name: "Majoris-Munching",
  37840. height: math.unit(2.7e13, "feet")
  37841. },
  37842. ]
  37843. ))
  37844. characterMakers.push(() => makeCharacter(
  37845. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37846. {
  37847. front: {
  37848. height: math.unit(1, "inch"),
  37849. name: "Front",
  37850. image: {
  37851. source: "./media/characters/squeaks-mouse/front.svg",
  37852. extra: 352/308,
  37853. bottom: 25/377
  37854. }
  37855. },
  37856. },
  37857. [
  37858. {
  37859. name: "Micro",
  37860. height: math.unit(1, "inch"),
  37861. default: true
  37862. },
  37863. ]
  37864. ))
  37865. characterMakers.push(() => makeCharacter(
  37866. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37867. {
  37868. side: {
  37869. height: math.unit(35, "feet"),
  37870. name: "Side",
  37871. image: {
  37872. source: "./media/characters/sayko/side.svg",
  37873. extra: 1697/1021,
  37874. bottom: 82/1779
  37875. }
  37876. },
  37877. head: {
  37878. height: math.unit(16, "feet"),
  37879. name: "Head",
  37880. image: {
  37881. source: "./media/characters/sayko/head.svg"
  37882. }
  37883. },
  37884. forepaw: {
  37885. height: math.unit(7.85, "feet"),
  37886. name: "Forepaw",
  37887. image: {
  37888. source: "./media/characters/sayko/forepaw.svg"
  37889. }
  37890. },
  37891. hindpaw: {
  37892. height: math.unit(8.8, "feet"),
  37893. name: "Hindpaw",
  37894. image: {
  37895. source: "./media/characters/sayko/hindpaw.svg"
  37896. }
  37897. },
  37898. },
  37899. [
  37900. {
  37901. name: "Normal",
  37902. height: math.unit(35, "feet"),
  37903. default: true
  37904. },
  37905. {
  37906. name: "Colossus",
  37907. height: math.unit(100, "meters")
  37908. },
  37909. {
  37910. name: "\"Small\" Deity",
  37911. height: math.unit(1, "km")
  37912. },
  37913. {
  37914. name: "\"Large\" Deity",
  37915. height: math.unit(15, "km")
  37916. },
  37917. ]
  37918. ))
  37919. characterMakers.push(() => makeCharacter(
  37920. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37921. {
  37922. front: {
  37923. height: math.unit(6, "feet"),
  37924. weight: math.unit(250, "lb"),
  37925. name: "Front",
  37926. image: {
  37927. source: "./media/characters/mukiro/front.svg",
  37928. extra: 1368/1310,
  37929. bottom: 34/1402
  37930. }
  37931. },
  37932. },
  37933. [
  37934. {
  37935. name: "Normal",
  37936. height: math.unit(6, "feet"),
  37937. default: true
  37938. },
  37939. ]
  37940. ))
  37941. characterMakers.push(() => makeCharacter(
  37942. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37943. {
  37944. front: {
  37945. height: math.unit(12 + 4/12, "feet"),
  37946. name: "Front",
  37947. image: {
  37948. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37949. extra: 1346/1311,
  37950. bottom: 65/1411
  37951. }
  37952. },
  37953. },
  37954. [
  37955. {
  37956. name: "Base",
  37957. height: math.unit(12 + 4/12, "feet"),
  37958. default: true
  37959. },
  37960. {
  37961. name: "Macro",
  37962. height: math.unit(150, "feet")
  37963. },
  37964. {
  37965. name: "Mega",
  37966. height: math.unit(2, "miles")
  37967. },
  37968. {
  37969. name: "Demi God",
  37970. height: math.unit(4, "AU")
  37971. },
  37972. {
  37973. name: "God Size",
  37974. height: math.unit(1, "universe")
  37975. },
  37976. ]
  37977. ))
  37978. characterMakers.push(() => makeCharacter(
  37979. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37980. {
  37981. front: {
  37982. height: math.unit(3 + 3/12, "feet"),
  37983. weight: math.unit(88, "lb"),
  37984. name: "Front",
  37985. image: {
  37986. source: "./media/characters/trey/front.svg",
  37987. extra: 1815/1509,
  37988. bottom: 60/1875
  37989. }
  37990. },
  37991. },
  37992. [
  37993. {
  37994. name: "Normal",
  37995. height: math.unit(3 + 3/12, "feet"),
  37996. default: true
  37997. },
  37998. ]
  37999. ))
  38000. characterMakers.push(() => makeCharacter(
  38001. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  38002. {
  38003. front: {
  38004. height: math.unit(4, "meters"),
  38005. name: "Front",
  38006. image: {
  38007. source: "./media/characters/adelonda/front.svg",
  38008. extra: 1077/982,
  38009. bottom: 39/1116
  38010. }
  38011. },
  38012. back: {
  38013. height: math.unit(4, "meters"),
  38014. name: "Back",
  38015. image: {
  38016. source: "./media/characters/adelonda/back.svg",
  38017. extra: 1105/1003,
  38018. bottom: 25/1130
  38019. }
  38020. },
  38021. feral: {
  38022. height: math.unit(40/1.5, "meters"),
  38023. name: "Feral",
  38024. image: {
  38025. source: "./media/characters/adelonda/feral.svg",
  38026. extra: 597/271,
  38027. bottom: 387/984
  38028. }
  38029. },
  38030. },
  38031. [
  38032. {
  38033. name: "Normal",
  38034. height: math.unit(4, "meters"),
  38035. default: true
  38036. },
  38037. ]
  38038. ))
  38039. characterMakers.push(() => makeCharacter(
  38040. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  38041. {
  38042. front: {
  38043. height: math.unit(8 + 4/12, "feet"),
  38044. weight: math.unit(670, "lb"),
  38045. name: "Front",
  38046. image: {
  38047. source: "./media/characters/acadiel/front.svg",
  38048. extra: 1901/1595,
  38049. bottom: 142/2043
  38050. }
  38051. },
  38052. },
  38053. [
  38054. {
  38055. name: "Normal",
  38056. height: math.unit(8 + 4/12, "feet"),
  38057. default: true
  38058. },
  38059. {
  38060. name: "Macro",
  38061. height: math.unit(200, "feet")
  38062. },
  38063. ]
  38064. ))
  38065. characterMakers.push(() => makeCharacter(
  38066. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  38067. {
  38068. front: {
  38069. height: math.unit(6 + 2/12, "feet"),
  38070. weight: math.unit(185, "lb"),
  38071. name: "Front",
  38072. image: {
  38073. source: "./media/characters/kayne-ein/front.svg",
  38074. extra: 1780/1560,
  38075. bottom: 81/1861
  38076. }
  38077. },
  38078. },
  38079. [
  38080. {
  38081. name: "Normal",
  38082. height: math.unit(6 + 2/12, "feet"),
  38083. default: true
  38084. },
  38085. {
  38086. name: "Transformation Stage",
  38087. height: math.unit(15, "feet")
  38088. },
  38089. {
  38090. name: "Macro",
  38091. height: math.unit(150, "feet")
  38092. },
  38093. {
  38094. name: "Earth's Shadow",
  38095. height: math.unit(6200, "miles")
  38096. },
  38097. {
  38098. name: "Universal Demon",
  38099. height: math.unit(28e9, "parsecs")
  38100. },
  38101. {
  38102. name: "Multiverse God",
  38103. height: math.unit(3, "multiverses")
  38104. },
  38105. ]
  38106. ))
  38107. characterMakers.push(() => makeCharacter(
  38108. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  38109. {
  38110. front: {
  38111. height: math.unit(5 + 5/12, "feet"),
  38112. name: "Front",
  38113. image: {
  38114. source: "./media/characters/fawn/front.svg",
  38115. extra: 1873/1731,
  38116. bottom: 95/1968
  38117. }
  38118. },
  38119. back: {
  38120. height: math.unit(5 + 5/12, "feet"),
  38121. name: "Back",
  38122. image: {
  38123. source: "./media/characters/fawn/back.svg",
  38124. extra: 1813/1700,
  38125. bottom: 14/1827
  38126. }
  38127. },
  38128. hoof: {
  38129. height: math.unit(1.45, "feet"),
  38130. name: "Hoof",
  38131. image: {
  38132. source: "./media/characters/fawn/hoof.svg"
  38133. }
  38134. },
  38135. },
  38136. [
  38137. {
  38138. name: "Normal",
  38139. height: math.unit(5 + 5/12, "feet"),
  38140. default: true
  38141. },
  38142. ]
  38143. ))
  38144. characterMakers.push(() => makeCharacter(
  38145. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  38146. {
  38147. front: {
  38148. height: math.unit(2 + 5/12, "feet"),
  38149. name: "Front",
  38150. image: {
  38151. source: "./media/characters/orion/front.svg",
  38152. extra: 1366/1304,
  38153. bottom: 43/1409
  38154. }
  38155. },
  38156. paw: {
  38157. height: math.unit(0.52, "feet"),
  38158. name: "Paw",
  38159. image: {
  38160. source: "./media/characters/orion/paw.svg"
  38161. }
  38162. },
  38163. },
  38164. [
  38165. {
  38166. name: "Normal",
  38167. height: math.unit(2 + 5/12, "feet"),
  38168. default: true
  38169. },
  38170. ]
  38171. ))
  38172. characterMakers.push(() => makeCharacter(
  38173. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  38174. {
  38175. front: {
  38176. height: math.unit(5 + 10/12, "feet"),
  38177. name: "Front",
  38178. image: {
  38179. source: "./media/characters/vera/front.svg",
  38180. extra: 1680/1575,
  38181. bottom: 49/1729
  38182. }
  38183. },
  38184. back: {
  38185. height: math.unit(5 + 10/12, "feet"),
  38186. name: "Back",
  38187. image: {
  38188. source: "./media/characters/vera/back.svg",
  38189. extra: 1700/1588,
  38190. bottom: 18/1718
  38191. }
  38192. },
  38193. arcanine: {
  38194. height: math.unit(6 + 8/12, "feet"),
  38195. name: "Arcanine",
  38196. image: {
  38197. source: "./media/characters/vera/arcanine.svg",
  38198. extra: 1590/1511,
  38199. bottom: 71/1661
  38200. }
  38201. },
  38202. maw: {
  38203. height: math.unit(0.82, "feet"),
  38204. name: "Maw",
  38205. image: {
  38206. source: "./media/characters/vera/maw.svg"
  38207. }
  38208. },
  38209. mawArcanine: {
  38210. height: math.unit(0.97, "feet"),
  38211. name: "Maw (Arcanine)",
  38212. image: {
  38213. source: "./media/characters/vera/maw-arcanine.svg"
  38214. }
  38215. },
  38216. paw: {
  38217. height: math.unit(0.75, "feet"),
  38218. name: "Paw",
  38219. image: {
  38220. source: "./media/characters/vera/paw.svg"
  38221. }
  38222. },
  38223. pawprint: {
  38224. height: math.unit(0.52, "feet"),
  38225. name: "Pawprint",
  38226. image: {
  38227. source: "./media/characters/vera/pawprint.svg"
  38228. }
  38229. },
  38230. },
  38231. [
  38232. {
  38233. name: "Normal",
  38234. height: math.unit(5 + 10/12, "feet"),
  38235. default: true
  38236. },
  38237. {
  38238. name: "Macro",
  38239. height: math.unit(75, "feet")
  38240. },
  38241. ]
  38242. ))
  38243. characterMakers.push(() => makeCharacter(
  38244. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  38245. {
  38246. front: {
  38247. height: math.unit(4, "feet"),
  38248. weight: math.unit(40, "lb"),
  38249. name: "Front",
  38250. image: {
  38251. source: "./media/characters/orvan-rabbit/front.svg",
  38252. extra: 1896/1642,
  38253. bottom: 29/1925
  38254. }
  38255. },
  38256. },
  38257. [
  38258. {
  38259. name: "Normal",
  38260. height: math.unit(4, "feet"),
  38261. default: true
  38262. },
  38263. ]
  38264. ))
  38265. characterMakers.push(() => makeCharacter(
  38266. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  38267. {
  38268. front: {
  38269. height: math.unit(6, "feet"),
  38270. weight: math.unit(168, "lb"),
  38271. name: "Front",
  38272. image: {
  38273. source: "./media/characters/lisa/front.svg",
  38274. extra: 2065/1867,
  38275. bottom: 46/2111
  38276. }
  38277. },
  38278. back: {
  38279. height: math.unit(6, "feet"),
  38280. weight: math.unit(168, "lb"),
  38281. name: "Back",
  38282. image: {
  38283. source: "./media/characters/lisa/back.svg",
  38284. extra: 1982/1838,
  38285. bottom: 29/2011
  38286. }
  38287. },
  38288. maw: {
  38289. height: math.unit(0.81, "feet"),
  38290. name: "Maw",
  38291. image: {
  38292. source: "./media/characters/lisa/maw.svg"
  38293. }
  38294. },
  38295. paw: {
  38296. height: math.unit(0.9, "feet"),
  38297. name: "Paw",
  38298. image: {
  38299. source: "./media/characters/lisa/paw.svg"
  38300. }
  38301. },
  38302. caribousune: {
  38303. height: math.unit(7 + 2/12, "feet"),
  38304. weight: math.unit(268, "lb"),
  38305. name: "Caribousune",
  38306. image: {
  38307. source: "./media/characters/lisa/caribousune.svg",
  38308. extra: 1843/1633,
  38309. bottom: 29/1872
  38310. }
  38311. },
  38312. frontCaribousune: {
  38313. height: math.unit(7 + 2/12, "feet"),
  38314. weight: math.unit(268, "lb"),
  38315. name: "Front (Caribousune)",
  38316. image: {
  38317. source: "./media/characters/lisa/front-caribousune.svg",
  38318. extra: 1818/1638,
  38319. bottom: 52/1870
  38320. }
  38321. },
  38322. sideCaribousune: {
  38323. height: math.unit(7 + 2/12, "feet"),
  38324. weight: math.unit(268, "lb"),
  38325. name: "Side (Caribousune)",
  38326. image: {
  38327. source: "./media/characters/lisa/side-caribousune.svg",
  38328. extra: 1851/1635,
  38329. bottom: 16/1867
  38330. }
  38331. },
  38332. backCaribousune: {
  38333. height: math.unit(7 + 2/12, "feet"),
  38334. weight: math.unit(268, "lb"),
  38335. name: "Back (Caribousune)",
  38336. image: {
  38337. source: "./media/characters/lisa/back-caribousune.svg",
  38338. extra: 1801/1604,
  38339. bottom: 44/1845
  38340. }
  38341. },
  38342. caribou: {
  38343. height: math.unit(7 + 2/12, "feet"),
  38344. weight: math.unit(268, "lb"),
  38345. name: "Caribou",
  38346. image: {
  38347. source: "./media/characters/lisa/caribou.svg",
  38348. extra: 1843/1633,
  38349. bottom: 29/1872
  38350. }
  38351. },
  38352. frontCaribou: {
  38353. height: math.unit(7 + 2/12, "feet"),
  38354. weight: math.unit(268, "lb"),
  38355. name: "Front (Caribou)",
  38356. image: {
  38357. source: "./media/characters/lisa/front-caribou.svg",
  38358. extra: 1818/1638,
  38359. bottom: 52/1870
  38360. }
  38361. },
  38362. sideCaribou: {
  38363. height: math.unit(7 + 2/12, "feet"),
  38364. weight: math.unit(268, "lb"),
  38365. name: "Side (Caribou)",
  38366. image: {
  38367. source: "./media/characters/lisa/side-caribou.svg",
  38368. extra: 1851/1635,
  38369. bottom: 16/1867
  38370. }
  38371. },
  38372. backCaribou: {
  38373. height: math.unit(7 + 2/12, "feet"),
  38374. weight: math.unit(268, "lb"),
  38375. name: "Back (Caribou)",
  38376. image: {
  38377. source: "./media/characters/lisa/back-caribou.svg",
  38378. extra: 1801/1604,
  38379. bottom: 44/1845
  38380. }
  38381. },
  38382. mawCaribou: {
  38383. height: math.unit(1.45, "feet"),
  38384. name: "Maw (Caribou)",
  38385. image: {
  38386. source: "./media/characters/lisa/maw-caribou.svg"
  38387. }
  38388. },
  38389. mawCaribousune: {
  38390. height: math.unit(1.45, "feet"),
  38391. name: "Maw (Caribousune)",
  38392. image: {
  38393. source: "./media/characters/lisa/maw-caribousune.svg"
  38394. }
  38395. },
  38396. pawCaribousune: {
  38397. height: math.unit(1.61, "feet"),
  38398. name: "Paw (Caribou)",
  38399. image: {
  38400. source: "./media/characters/lisa/paw-caribousune.svg"
  38401. }
  38402. },
  38403. },
  38404. [
  38405. {
  38406. name: "Normal",
  38407. height: math.unit(6, "feet")
  38408. },
  38409. {
  38410. name: "God Size",
  38411. height: math.unit(72, "feet"),
  38412. default: true
  38413. },
  38414. {
  38415. name: "Towering",
  38416. height: math.unit(288, "feet")
  38417. },
  38418. {
  38419. name: "City Size",
  38420. height: math.unit(48384, "feet")
  38421. },
  38422. {
  38423. name: "Continental",
  38424. height: math.unit(4200, "miles")
  38425. },
  38426. {
  38427. name: "Planet Eater",
  38428. height: math.unit(42, "earths")
  38429. },
  38430. {
  38431. name: "Star Swallower",
  38432. height: math.unit(42, "solarradii")
  38433. },
  38434. {
  38435. name: "System Swallower",
  38436. height: math.unit(84000, "AU")
  38437. },
  38438. {
  38439. name: "Galaxy Gobbler",
  38440. height: math.unit(42, "galaxies")
  38441. },
  38442. {
  38443. name: "Universe Devourer",
  38444. height: math.unit(42, "universes")
  38445. },
  38446. {
  38447. name: "Multiverse Muncher",
  38448. height: math.unit(42, "multiverses")
  38449. },
  38450. ]
  38451. ))
  38452. characterMakers.push(() => makeCharacter(
  38453. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  38454. {
  38455. front: {
  38456. height: math.unit(36, "feet"),
  38457. name: "Front",
  38458. image: {
  38459. source: "./media/characters/shadow-rat/front.svg",
  38460. extra: 1845/1758,
  38461. bottom: 83/1928
  38462. }
  38463. },
  38464. },
  38465. [
  38466. {
  38467. name: "Macro",
  38468. height: math.unit(36, "feet"),
  38469. default: true
  38470. },
  38471. ]
  38472. ))
  38473. characterMakers.push(() => makeCharacter(
  38474. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  38475. {
  38476. side: {
  38477. height: math.unit(8, "feet"),
  38478. weight: math.unit(2630, "lb"),
  38479. name: "Side",
  38480. image: {
  38481. source: "./media/characters/torallia/side.svg",
  38482. extra: 2164/2021,
  38483. bottom: 371/2535
  38484. }
  38485. },
  38486. },
  38487. [
  38488. {
  38489. name: "Mortal Interaction",
  38490. height: math.unit(8, "feet")
  38491. },
  38492. {
  38493. name: "Natural",
  38494. height: math.unit(24, "feet"),
  38495. default: true
  38496. },
  38497. {
  38498. name: "Giant",
  38499. height: math.unit(80, "feet")
  38500. },
  38501. {
  38502. name: "Kaiju",
  38503. height: math.unit(240, "feet")
  38504. },
  38505. {
  38506. name: "Macro",
  38507. height: math.unit(800, "feet")
  38508. },
  38509. {
  38510. name: "Macro+",
  38511. height: math.unit(2400, "feet")
  38512. },
  38513. {
  38514. name: "Macro++",
  38515. height: math.unit(8000, "feet")
  38516. },
  38517. {
  38518. name: "City-Crushing",
  38519. height: math.unit(24000, "feet")
  38520. },
  38521. {
  38522. name: "Mountain-Mashing",
  38523. height: math.unit(80000, "feet")
  38524. },
  38525. {
  38526. name: "District Demolisher",
  38527. height: math.unit(240000, "feet")
  38528. },
  38529. {
  38530. name: "Tri-County Terror",
  38531. height: math.unit(800000, "feet")
  38532. },
  38533. {
  38534. name: "State Smasher",
  38535. height: math.unit(2.4e6, "feet")
  38536. },
  38537. {
  38538. name: "Nation Nemesis",
  38539. height: math.unit(8e6, "feet")
  38540. },
  38541. {
  38542. name: "Continent Cracker",
  38543. height: math.unit(2.4e7, "feet")
  38544. },
  38545. {
  38546. name: "Planet-Pillaging",
  38547. height: math.unit(8e7, "feet")
  38548. },
  38549. {
  38550. name: "Earth-Eclipsing",
  38551. height: math.unit(2.4e8, "feet")
  38552. },
  38553. {
  38554. name: "Jovian-Jostling",
  38555. height: math.unit(8e8, "feet")
  38556. },
  38557. {
  38558. name: "Gas Giant Gulper",
  38559. height: math.unit(2.4e9, "feet")
  38560. },
  38561. {
  38562. name: "Astral Annihilator",
  38563. height: math.unit(8e9, "feet")
  38564. },
  38565. {
  38566. name: "Celestial Conqueror",
  38567. height: math.unit(2.4e10, "feet")
  38568. },
  38569. {
  38570. name: "Sol-Swallowing",
  38571. height: math.unit(8e10, "feet")
  38572. },
  38573. {
  38574. name: "Hunter of the Heavens",
  38575. height: math.unit(2.4e13, "feet")
  38576. },
  38577. ]
  38578. ))
  38579. characterMakers.push(() => makeCharacter(
  38580. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38581. {
  38582. front: {
  38583. height: math.unit(6 + 8/12, "feet"),
  38584. name: "Front",
  38585. image: {
  38586. source: "./media/characters/rebecca-pawlson/front.svg",
  38587. extra: 1737/1596,
  38588. bottom: 107/1844
  38589. }
  38590. },
  38591. back: {
  38592. height: math.unit(6 + 8/12, "feet"),
  38593. name: "Back",
  38594. image: {
  38595. source: "./media/characters/rebecca-pawlson/back.svg",
  38596. extra: 1702/1523,
  38597. bottom: 86/1788
  38598. }
  38599. },
  38600. },
  38601. [
  38602. {
  38603. name: "Normal",
  38604. height: math.unit(6 + 8/12, "feet")
  38605. },
  38606. {
  38607. name: "Mini Macro",
  38608. height: math.unit(10, "feet"),
  38609. default: true
  38610. },
  38611. {
  38612. name: "Macro",
  38613. height: math.unit(100, "feet")
  38614. },
  38615. {
  38616. name: "Mega Macro",
  38617. height: math.unit(2500, "feet")
  38618. },
  38619. {
  38620. name: "Giga Macro",
  38621. height: math.unit(50, "miles")
  38622. },
  38623. ]
  38624. ))
  38625. characterMakers.push(() => makeCharacter(
  38626. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38627. {
  38628. front: {
  38629. height: math.unit(7 + 6/12, "feet"),
  38630. weight: math.unit(600, "lb"),
  38631. name: "Front",
  38632. image: {
  38633. source: "./media/characters/moxie-nova/front.svg",
  38634. extra: 1734/1652,
  38635. bottom: 41/1775
  38636. }
  38637. },
  38638. },
  38639. [
  38640. {
  38641. name: "Normal",
  38642. height: math.unit(7 + 6/12, "feet"),
  38643. default: true
  38644. },
  38645. ]
  38646. ))
  38647. characterMakers.push(() => makeCharacter(
  38648. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38649. {
  38650. goat: {
  38651. height: math.unit(4, "feet"),
  38652. weight: math.unit(180, "lb"),
  38653. name: "Goat",
  38654. image: {
  38655. source: "./media/characters/tiffany/goat.svg",
  38656. extra: 1845/1595,
  38657. bottom: 106/1951
  38658. }
  38659. },
  38660. front: {
  38661. height: math.unit(5, "feet"),
  38662. weight: math.unit(150, "lb"),
  38663. name: "Foxcoon",
  38664. image: {
  38665. source: "./media/characters/tiffany/foxcoon.svg",
  38666. extra: 1941/1845,
  38667. bottom: 58/1999
  38668. }
  38669. },
  38670. },
  38671. [
  38672. {
  38673. name: "Normal",
  38674. height: math.unit(5, "feet"),
  38675. default: true
  38676. },
  38677. ]
  38678. ))
  38679. characterMakers.push(() => makeCharacter(
  38680. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38681. {
  38682. front: {
  38683. height: math.unit(8, "feet"),
  38684. weight: math.unit(300, "lb"),
  38685. name: "Front",
  38686. image: {
  38687. source: "./media/characters/raxinath/front.svg",
  38688. extra: 1407/1309,
  38689. bottom: 39/1446
  38690. }
  38691. },
  38692. back: {
  38693. height: math.unit(8, "feet"),
  38694. weight: math.unit(300, "lb"),
  38695. name: "Back",
  38696. image: {
  38697. source: "./media/characters/raxinath/back.svg",
  38698. extra: 1405/1315,
  38699. bottom: 9/1414
  38700. }
  38701. },
  38702. },
  38703. [
  38704. {
  38705. name: "Speck",
  38706. height: math.unit(0.5, "nm")
  38707. },
  38708. {
  38709. name: "Micro",
  38710. height: math.unit(3, "inches")
  38711. },
  38712. {
  38713. name: "Kobold",
  38714. height: math.unit(3, "feet")
  38715. },
  38716. {
  38717. name: "Normal",
  38718. height: math.unit(8, "feet"),
  38719. default: true
  38720. },
  38721. {
  38722. name: "Giant",
  38723. height: math.unit(50, "feet")
  38724. },
  38725. {
  38726. name: "Macro",
  38727. height: math.unit(1000, "feet")
  38728. },
  38729. {
  38730. name: "Megamacro",
  38731. height: math.unit(1, "mile")
  38732. },
  38733. ]
  38734. ))
  38735. characterMakers.push(() => makeCharacter(
  38736. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38737. {
  38738. front: {
  38739. height: math.unit(10, "feet"),
  38740. weight: math.unit(1442, "lb"),
  38741. name: "Front",
  38742. image: {
  38743. source: "./media/characters/mal-dragon/front.svg",
  38744. extra: 1515/1444,
  38745. bottom: 113/1628
  38746. }
  38747. },
  38748. back: {
  38749. height: math.unit(10, "feet"),
  38750. weight: math.unit(1442, "lb"),
  38751. name: "Back",
  38752. image: {
  38753. source: "./media/characters/mal-dragon/back.svg",
  38754. extra: 1527/1434,
  38755. bottom: 25/1552
  38756. }
  38757. },
  38758. },
  38759. [
  38760. {
  38761. name: "Mortal Interaction",
  38762. height: math.unit(10, "feet"),
  38763. default: true
  38764. },
  38765. {
  38766. name: "Large",
  38767. height: math.unit(30, "feet")
  38768. },
  38769. {
  38770. name: "Kaiju",
  38771. height: math.unit(300, "feet")
  38772. },
  38773. {
  38774. name: "Megamacro",
  38775. height: math.unit(10000, "feet")
  38776. },
  38777. {
  38778. name: "Continent Cracker",
  38779. height: math.unit(30000000, "feet")
  38780. },
  38781. {
  38782. name: "Sol-Swallowing",
  38783. height: math.unit(1e11, "feet")
  38784. },
  38785. {
  38786. name: "Light Universal",
  38787. height: math.unit(5, "universes")
  38788. },
  38789. {
  38790. name: "Universe Atoms",
  38791. height: math.unit(1.829e9, "universes")
  38792. },
  38793. {
  38794. name: "Light Multiversal",
  38795. height: math.unit(5, "multiverses")
  38796. },
  38797. {
  38798. name: "Multiverse Atoms",
  38799. height: math.unit(1.829e9, "multiverses")
  38800. },
  38801. {
  38802. name: "Fabric of Time",
  38803. height: math.unit(1e262, "multiverses")
  38804. },
  38805. ]
  38806. ))
  38807. characterMakers.push(() => makeCharacter(
  38808. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38809. {
  38810. front: {
  38811. height: math.unit(9, "feet"),
  38812. weight: math.unit(1050, "lb"),
  38813. name: "Front",
  38814. image: {
  38815. source: "./media/characters/tabitha/front.svg",
  38816. extra: 2083/1994,
  38817. bottom: 68/2151
  38818. }
  38819. },
  38820. },
  38821. [
  38822. {
  38823. name: "Baseline",
  38824. height: math.unit(9, "feet"),
  38825. default: true
  38826. },
  38827. {
  38828. name: "Giant",
  38829. height: math.unit(90, "feet")
  38830. },
  38831. {
  38832. name: "Macro",
  38833. height: math.unit(900, "feet")
  38834. },
  38835. {
  38836. name: "Megamacro",
  38837. height: math.unit(9000, "feet")
  38838. },
  38839. {
  38840. name: "City-Crushing",
  38841. height: math.unit(27000, "feet")
  38842. },
  38843. {
  38844. name: "Mountain-Mashing",
  38845. height: math.unit(90000, "feet")
  38846. },
  38847. {
  38848. name: "Nation Nemesis",
  38849. height: math.unit(9e6, "feet")
  38850. },
  38851. {
  38852. name: "Continent Cracker",
  38853. height: math.unit(27e6, "feet")
  38854. },
  38855. {
  38856. name: "Earth-Eclipsing",
  38857. height: math.unit(2.7e8, "feet")
  38858. },
  38859. {
  38860. name: "Gas Giant Gulper",
  38861. height: math.unit(2.7e9, "feet")
  38862. },
  38863. {
  38864. name: "Sol-Swallowing",
  38865. height: math.unit(9e10, "feet")
  38866. },
  38867. {
  38868. name: "Galaxy Gulper",
  38869. height: math.unit(9, "galaxies")
  38870. },
  38871. {
  38872. name: "Cosmos Churner",
  38873. height: math.unit(9, "universes")
  38874. },
  38875. ]
  38876. ))
  38877. characterMakers.push(() => makeCharacter(
  38878. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38879. {
  38880. front: {
  38881. height: math.unit(160, "cm"),
  38882. weight: math.unit(55, "kg"),
  38883. name: "Front",
  38884. image: {
  38885. source: "./media/characters/tow/front.svg",
  38886. extra: 1751/1722,
  38887. bottom: 74/1825
  38888. }
  38889. },
  38890. },
  38891. [
  38892. {
  38893. name: "Norm",
  38894. height: math.unit(160, "cm")
  38895. },
  38896. {
  38897. name: "Casual",
  38898. height: math.unit(3200, "m"),
  38899. default: true
  38900. },
  38901. {
  38902. name: "Show-Off",
  38903. height: math.unit(160, "km")
  38904. },
  38905. ]
  38906. ))
  38907. characterMakers.push(() => makeCharacter(
  38908. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38909. {
  38910. front: {
  38911. height: math.unit(7 + 11/12, "feet"),
  38912. weight: math.unit(342.8, "lb"),
  38913. name: "Front",
  38914. image: {
  38915. source: "./media/characters/vivian-orca-dragon/front.svg",
  38916. extra: 1890/1865,
  38917. bottom: 28/1918
  38918. }
  38919. },
  38920. },
  38921. [
  38922. {
  38923. name: "Micro",
  38924. height: math.unit(5, "inches")
  38925. },
  38926. {
  38927. name: "Normal",
  38928. height: math.unit(7 + 11/12, "feet"),
  38929. default: true
  38930. },
  38931. {
  38932. name: "Macro",
  38933. height: math.unit(395 + 7/12, "feet")
  38934. },
  38935. ]
  38936. ))
  38937. characterMakers.push(() => makeCharacter(
  38938. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38939. {
  38940. side: {
  38941. height: math.unit(10, "feet"),
  38942. weight: math.unit(1442, "lb"),
  38943. name: "Side",
  38944. image: {
  38945. source: "./media/characters/lotherakon/side.svg",
  38946. extra: 1604/1497,
  38947. bottom: 89/1693
  38948. }
  38949. },
  38950. },
  38951. [
  38952. {
  38953. name: "Mortal Interaction",
  38954. height: math.unit(10, "feet")
  38955. },
  38956. {
  38957. name: "Large",
  38958. height: math.unit(30, "feet"),
  38959. default: true
  38960. },
  38961. {
  38962. name: "Giant",
  38963. height: math.unit(100, "feet")
  38964. },
  38965. {
  38966. name: "Kaiju",
  38967. height: math.unit(300, "feet")
  38968. },
  38969. {
  38970. name: "Macro",
  38971. height: math.unit(1000, "feet")
  38972. },
  38973. {
  38974. name: "Macro+",
  38975. height: math.unit(3000, "feet")
  38976. },
  38977. {
  38978. name: "Megamacro",
  38979. height: math.unit(10000, "feet")
  38980. },
  38981. {
  38982. name: "City-Crushing",
  38983. height: math.unit(30000, "feet")
  38984. },
  38985. {
  38986. name: "Continent Cracker",
  38987. height: math.unit(30e6, "feet")
  38988. },
  38989. {
  38990. name: "Earth Eclipsing",
  38991. height: math.unit(3e8, "feet")
  38992. },
  38993. {
  38994. name: "Gas Giant Gulper",
  38995. height: math.unit(3e9, "feet")
  38996. },
  38997. {
  38998. name: "Sol-Swallowing",
  38999. height: math.unit(1e11, "feet")
  39000. },
  39001. {
  39002. name: "System Swallower",
  39003. height: math.unit(3e14, "feet")
  39004. },
  39005. {
  39006. name: "Galaxy Gulper",
  39007. height: math.unit(10, "galaxies")
  39008. },
  39009. {
  39010. name: "Light Universal",
  39011. height: math.unit(5, "universes")
  39012. },
  39013. {
  39014. name: "Universe Palm",
  39015. height: math.unit(20, "universes")
  39016. },
  39017. {
  39018. name: "Light Multiversal",
  39019. height: math.unit(5, "multiverses")
  39020. },
  39021. {
  39022. name: "Multiverse Palm",
  39023. height: math.unit(20, "multiverses")
  39024. },
  39025. {
  39026. name: "Inferno Incarnate",
  39027. height: math.unit(1e7, "multiverses")
  39028. },
  39029. ]
  39030. ))
  39031. characterMakers.push(() => makeCharacter(
  39032. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  39033. {
  39034. front: {
  39035. height: math.unit(8, "feet"),
  39036. weight: math.unit(1200, "lb"),
  39037. name: "Front",
  39038. image: {
  39039. source: "./media/characters/malithee/front.svg",
  39040. extra: 1675/1640,
  39041. bottom: 162/1837
  39042. }
  39043. },
  39044. },
  39045. [
  39046. {
  39047. name: "Mortal Interaction",
  39048. height: math.unit(8, "feet"),
  39049. default: true
  39050. },
  39051. {
  39052. name: "Large",
  39053. height: math.unit(24, "feet")
  39054. },
  39055. {
  39056. name: "Kaiju",
  39057. height: math.unit(240, "feet")
  39058. },
  39059. {
  39060. name: "Megamacro",
  39061. height: math.unit(8000, "feet")
  39062. },
  39063. {
  39064. name: "Continent Cracker",
  39065. height: math.unit(24e6, "feet")
  39066. },
  39067. {
  39068. name: "Earth-Eclipsing",
  39069. height: math.unit(2.4e8, "feet")
  39070. },
  39071. {
  39072. name: "Sol-Swallowing",
  39073. height: math.unit(8e10, "feet")
  39074. },
  39075. {
  39076. name: "Galaxy Gulper",
  39077. height: math.unit(8, "galaxies")
  39078. },
  39079. {
  39080. name: "Light Universal",
  39081. height: math.unit(4, "universes")
  39082. },
  39083. {
  39084. name: "Universe Atoms",
  39085. height: math.unit(1.829e9, "universes")
  39086. },
  39087. {
  39088. name: "Light Multiversal",
  39089. height: math.unit(4, "multiverses")
  39090. },
  39091. {
  39092. name: "Multiverse Atoms",
  39093. height: math.unit(1.829e9, "multiverses")
  39094. },
  39095. {
  39096. name: "Nigh-Omnipresence",
  39097. height: math.unit(8e261, "multiverses")
  39098. },
  39099. ]
  39100. ))
  39101. characterMakers.push(() => makeCharacter(
  39102. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  39103. {
  39104. front: {
  39105. height: math.unit(10, "feet"),
  39106. weight: math.unit(1500, "lb"),
  39107. name: "Front",
  39108. image: {
  39109. source: "./media/characters/miles-thestia/front.svg",
  39110. extra: 1812/1727,
  39111. bottom: 86/1898
  39112. }
  39113. },
  39114. back: {
  39115. height: math.unit(10, "feet"),
  39116. weight: math.unit(1500, "lb"),
  39117. name: "Back",
  39118. image: {
  39119. source: "./media/characters/miles-thestia/back.svg",
  39120. extra: 1799/1690,
  39121. bottom: 47/1846
  39122. }
  39123. },
  39124. frontNsfw: {
  39125. height: math.unit(10, "feet"),
  39126. weight: math.unit(1500, "lb"),
  39127. name: "Front (NSFW)",
  39128. image: {
  39129. source: "./media/characters/miles-thestia/front-nsfw.svg",
  39130. extra: 1812/1727,
  39131. bottom: 86/1898
  39132. }
  39133. },
  39134. },
  39135. [
  39136. {
  39137. name: "Mini-Macro",
  39138. height: math.unit(10, "feet"),
  39139. default: true
  39140. },
  39141. ]
  39142. ))
  39143. characterMakers.push(() => makeCharacter(
  39144. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  39145. {
  39146. front: {
  39147. height: math.unit(25, "feet"),
  39148. name: "Front",
  39149. image: {
  39150. source: "./media/characters/titan-s-wulf/front.svg",
  39151. extra: 1560/1484,
  39152. bottom: 76/1636
  39153. }
  39154. },
  39155. },
  39156. [
  39157. {
  39158. name: "Smallest",
  39159. height: math.unit(25, "feet"),
  39160. default: true
  39161. },
  39162. {
  39163. name: "Normal",
  39164. height: math.unit(200, "feet")
  39165. },
  39166. {
  39167. name: "Macro",
  39168. height: math.unit(200000, "feet")
  39169. },
  39170. {
  39171. name: "Multiversal Original",
  39172. height: math.unit(10000, "multiverses")
  39173. },
  39174. ]
  39175. ))
  39176. characterMakers.push(() => makeCharacter(
  39177. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  39178. {
  39179. front: {
  39180. height: math.unit(8, "feet"),
  39181. weight: math.unit(553, "lb"),
  39182. name: "Front",
  39183. image: {
  39184. source: "./media/characters/tawendeh/front.svg",
  39185. extra: 2365/2268,
  39186. bottom: 83/2448
  39187. }
  39188. },
  39189. frontClothed: {
  39190. height: math.unit(8, "feet"),
  39191. weight: math.unit(553, "lb"),
  39192. name: "Front (Clothed)",
  39193. image: {
  39194. source: "./media/characters/tawendeh/front-clothed.svg",
  39195. extra: 2365/2268,
  39196. bottom: 83/2448
  39197. }
  39198. },
  39199. back: {
  39200. height: math.unit(8, "feet"),
  39201. weight: math.unit(553, "lb"),
  39202. name: "Back",
  39203. image: {
  39204. source: "./media/characters/tawendeh/back.svg",
  39205. extra: 2397/2294,
  39206. bottom: 42/2439
  39207. }
  39208. },
  39209. },
  39210. [
  39211. {
  39212. name: "Mortal Interaction",
  39213. height: math.unit(8, "feet"),
  39214. default: true
  39215. },
  39216. {
  39217. name: "Giant",
  39218. height: math.unit(80, "feet")
  39219. },
  39220. {
  39221. name: "Macro",
  39222. height: math.unit(800, "feet")
  39223. },
  39224. {
  39225. name: "Megamacro",
  39226. height: math.unit(8000, "feet")
  39227. },
  39228. {
  39229. name: "City-Crushing",
  39230. height: math.unit(24000, "feet")
  39231. },
  39232. {
  39233. name: "Mountain-Mashing",
  39234. height: math.unit(80000, "feet")
  39235. },
  39236. {
  39237. name: "Nation Nemesis",
  39238. height: math.unit(8e6, "feet")
  39239. },
  39240. {
  39241. name: "Continent Cracker",
  39242. height: math.unit(24e6, "feet")
  39243. },
  39244. {
  39245. name: "Earth-Eclipsing",
  39246. height: math.unit(2.4e8, "feet")
  39247. },
  39248. {
  39249. name: "Gas Giant Gulper",
  39250. height: math.unit(2.4e9, "feet")
  39251. },
  39252. {
  39253. name: "Sol-Swallowing",
  39254. height: math.unit(8e10, "feet")
  39255. },
  39256. {
  39257. name: "Galaxy Gulper",
  39258. height: math.unit(8, "galaxies")
  39259. },
  39260. {
  39261. name: "Cosmos Churner",
  39262. height: math.unit(8, "universes")
  39263. },
  39264. {
  39265. name: "Omnipotent Otter",
  39266. height: math.unit(80, "universes")
  39267. },
  39268. ]
  39269. ))
  39270. characterMakers.push(() => makeCharacter(
  39271. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  39272. {
  39273. front: {
  39274. height: math.unit(2.6, "meters"),
  39275. weight: math.unit(900, "kg"),
  39276. name: "Front",
  39277. image: {
  39278. source: "./media/characters/neesha/front.svg",
  39279. extra: 1803/1653,
  39280. bottom: 128/1931
  39281. }
  39282. },
  39283. },
  39284. [
  39285. {
  39286. name: "Normal",
  39287. height: math.unit(2.6, "meters"),
  39288. default: true
  39289. },
  39290. {
  39291. name: "Macro",
  39292. height: math.unit(50, "meters")
  39293. },
  39294. ]
  39295. ))
  39296. characterMakers.push(() => makeCharacter(
  39297. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  39298. {
  39299. front: {
  39300. height: math.unit(5, "feet"),
  39301. weight: math.unit(185, "lb"),
  39302. name: "Front",
  39303. image: {
  39304. source: "./media/characters/kyera/front.svg",
  39305. extra: 1875/1790,
  39306. bottom: 96/1971
  39307. }
  39308. },
  39309. },
  39310. [
  39311. {
  39312. name: "Normal",
  39313. height: math.unit(5, "feet"),
  39314. default: true
  39315. },
  39316. ]
  39317. ))
  39318. characterMakers.push(() => makeCharacter(
  39319. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  39320. {
  39321. front: {
  39322. height: math.unit(7 + 6/12, "feet"),
  39323. weight: math.unit(540, "lb"),
  39324. name: "Front",
  39325. image: {
  39326. source: "./media/characters/yuko/front.svg",
  39327. extra: 1282/1222,
  39328. bottom: 101/1383
  39329. }
  39330. },
  39331. frontClothed: {
  39332. height: math.unit(7 + 6/12, "feet"),
  39333. weight: math.unit(540, "lb"),
  39334. name: "Front (Clothed)",
  39335. image: {
  39336. source: "./media/characters/yuko/front-clothed.svg",
  39337. extra: 1282/1222,
  39338. bottom: 101/1383
  39339. }
  39340. },
  39341. },
  39342. [
  39343. {
  39344. name: "Normal",
  39345. height: math.unit(7 + 6/12, "feet"),
  39346. default: true
  39347. },
  39348. {
  39349. name: "Macro",
  39350. height: math.unit(26 + 9/12, "feet")
  39351. },
  39352. {
  39353. name: "Megamacro",
  39354. height: math.unit(300, "feet")
  39355. },
  39356. {
  39357. name: "Gigamacro",
  39358. height: math.unit(5000, "feet")
  39359. },
  39360. {
  39361. name: "Planetary",
  39362. height: math.unit(10000, "miles")
  39363. },
  39364. ]
  39365. ))
  39366. characterMakers.push(() => makeCharacter(
  39367. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  39368. {
  39369. front: {
  39370. height: math.unit(8 + 2/12, "feet"),
  39371. weight: math.unit(600, "lb"),
  39372. name: "Front",
  39373. image: {
  39374. source: "./media/characters/deam-nitrel/front.svg",
  39375. extra: 1308/1234,
  39376. bottom: 125/1433
  39377. }
  39378. },
  39379. },
  39380. [
  39381. {
  39382. name: "Normal",
  39383. height: math.unit(8 + 2/12, "feet"),
  39384. default: true
  39385. },
  39386. ]
  39387. ))
  39388. characterMakers.push(() => makeCharacter(
  39389. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  39390. {
  39391. front: {
  39392. height: math.unit(6.1, "feet"),
  39393. weight: math.unit(180, "lb"),
  39394. name: "Front",
  39395. image: {
  39396. source: "./media/characters/skyress/front.svg",
  39397. extra: 1045/915,
  39398. bottom: 28/1073
  39399. }
  39400. },
  39401. maw: {
  39402. height: math.unit(1, "feet"),
  39403. name: "Maw",
  39404. image: {
  39405. source: "./media/characters/skyress/maw.svg"
  39406. }
  39407. },
  39408. },
  39409. [
  39410. {
  39411. name: "Normal",
  39412. height: math.unit(6.1, "feet"),
  39413. default: true
  39414. },
  39415. {
  39416. name: "Macro",
  39417. height: math.unit(200, "feet")
  39418. },
  39419. ]
  39420. ))
  39421. characterMakers.push(() => makeCharacter(
  39422. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  39423. {
  39424. front: {
  39425. height: math.unit(4 + 2/12, "feet"),
  39426. weight: math.unit(40, "kg"),
  39427. name: "Front",
  39428. image: {
  39429. source: "./media/characters/amethyst-jones/front.svg",
  39430. extra: 1220/1150,
  39431. bottom: 101/1321
  39432. }
  39433. },
  39434. },
  39435. [
  39436. {
  39437. name: "Normal",
  39438. height: math.unit(4 + 2/12, "feet"),
  39439. default: true
  39440. },
  39441. ]
  39442. ))
  39443. characterMakers.push(() => makeCharacter(
  39444. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39445. {
  39446. front: {
  39447. height: math.unit(1.7, "m"),
  39448. weight: math.unit(135, "lb"),
  39449. name: "Front",
  39450. image: {
  39451. source: "./media/characters/jade/front.svg",
  39452. extra: 1818/1767,
  39453. bottom: 32/1850
  39454. }
  39455. },
  39456. back: {
  39457. height: math.unit(1.7, "m"),
  39458. weight: math.unit(135, "lb"),
  39459. name: "Back",
  39460. image: {
  39461. source: "./media/characters/jade/back.svg",
  39462. extra: 1869/1809,
  39463. bottom: 35/1904
  39464. }
  39465. },
  39466. hand: {
  39467. height: math.unit(0.24, "m"),
  39468. name: "Hand",
  39469. image: {
  39470. source: "./media/characters/jade/hand.svg"
  39471. }
  39472. },
  39473. foot: {
  39474. height: math.unit(0.263, "m"),
  39475. name: "Foot",
  39476. image: {
  39477. source: "./media/characters/jade/foot.svg"
  39478. }
  39479. },
  39480. dick: {
  39481. height: math.unit(0.47, "m"),
  39482. name: "Dick",
  39483. image: {
  39484. source: "./media/characters/jade/dick.svg"
  39485. }
  39486. },
  39487. },
  39488. [
  39489. {
  39490. name: "Micro",
  39491. height: math.unit(22, "cm")
  39492. },
  39493. {
  39494. name: "Normal",
  39495. height: math.unit(1.7, "m"),
  39496. default: true
  39497. },
  39498. {
  39499. name: "Macro",
  39500. height: math.unit(152, "m")
  39501. },
  39502. ]
  39503. ))
  39504. characterMakers.push(() => makeCharacter(
  39505. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39506. {
  39507. front: {
  39508. height: math.unit(100, "miles"),
  39509. weight: math.unit(20000, "tons"),
  39510. name: "Front",
  39511. image: {
  39512. source: "./media/characters/cookie/front.svg",
  39513. extra: 1125/1070,
  39514. bottom: 30/1155
  39515. }
  39516. },
  39517. },
  39518. [
  39519. {
  39520. name: "Big",
  39521. height: math.unit(50, "feet")
  39522. },
  39523. {
  39524. name: "Macro",
  39525. height: math.unit(100, "miles"),
  39526. default: true
  39527. },
  39528. {
  39529. name: "Megamacro",
  39530. height: math.unit(90000, "miles")
  39531. },
  39532. ]
  39533. ))
  39534. characterMakers.push(() => makeCharacter(
  39535. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39536. {
  39537. front: {
  39538. height: math.unit(6, "feet"),
  39539. weight: math.unit(145, "lb"),
  39540. name: "Front",
  39541. image: {
  39542. source: "./media/characters/farzian/front.svg",
  39543. extra: 1902/1693,
  39544. bottom: 108/2010
  39545. }
  39546. },
  39547. },
  39548. [
  39549. {
  39550. name: "Macro",
  39551. height: math.unit(500, "feet"),
  39552. default: true
  39553. },
  39554. ]
  39555. ))
  39556. characterMakers.push(() => makeCharacter(
  39557. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39558. {
  39559. front: {
  39560. height: math.unit(3 + 6/12, "feet"),
  39561. weight: math.unit(50, "lb"),
  39562. name: "Front",
  39563. image: {
  39564. source: "./media/characters/kimberly-tilson/front.svg",
  39565. extra: 1400/1322,
  39566. bottom: 36/1436
  39567. }
  39568. },
  39569. back: {
  39570. height: math.unit(3 + 6/12, "feet"),
  39571. weight: math.unit(50, "lb"),
  39572. name: "Back",
  39573. image: {
  39574. source: "./media/characters/kimberly-tilson/back.svg",
  39575. extra: 1370/1307,
  39576. bottom: 20/1390
  39577. }
  39578. },
  39579. },
  39580. [
  39581. {
  39582. name: "Normal",
  39583. height: math.unit(3 + 6/12, "feet"),
  39584. default: true
  39585. },
  39586. ]
  39587. ))
  39588. characterMakers.push(() => makeCharacter(
  39589. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39590. {
  39591. front: {
  39592. height: math.unit(1148, "feet"),
  39593. weight: math.unit(34057, "lb"),
  39594. name: "Front",
  39595. image: {
  39596. source: "./media/characters/harthos/front.svg",
  39597. extra: 1391/1339,
  39598. bottom: 13/1404
  39599. }
  39600. },
  39601. },
  39602. [
  39603. {
  39604. name: "Macro",
  39605. height: math.unit(1148, "feet"),
  39606. default: true
  39607. },
  39608. ]
  39609. ))
  39610. characterMakers.push(() => makeCharacter(
  39611. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39612. {
  39613. front: {
  39614. height: math.unit(15, "feet"),
  39615. name: "Front",
  39616. image: {
  39617. source: "./media/characters/hypatia/front.svg",
  39618. extra: 1653/1591,
  39619. bottom: 79/1732
  39620. }
  39621. },
  39622. },
  39623. [
  39624. {
  39625. name: "Normal",
  39626. height: math.unit(15, "feet")
  39627. },
  39628. {
  39629. name: "Small",
  39630. height: math.unit(300, "feet")
  39631. },
  39632. {
  39633. name: "Macro",
  39634. height: math.unit(2500, "feet"),
  39635. default: true
  39636. },
  39637. {
  39638. name: "Mega Macro",
  39639. height: math.unit(1500, "miles")
  39640. },
  39641. {
  39642. name: "Giga Macro",
  39643. height: math.unit(1.5e6, "miles")
  39644. },
  39645. ]
  39646. ))
  39647. characterMakers.push(() => makeCharacter(
  39648. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39649. {
  39650. front: {
  39651. height: math.unit(6, "feet"),
  39652. weight: math.unit(200, "lb"),
  39653. name: "Front",
  39654. image: {
  39655. source: "./media/characters/wulver/front.svg",
  39656. extra: 1724/1632,
  39657. bottom: 130/1854
  39658. }
  39659. },
  39660. frontNsfw: {
  39661. height: math.unit(6, "feet"),
  39662. weight: math.unit(200, "lb"),
  39663. name: "Front (NSFW)",
  39664. image: {
  39665. source: "./media/characters/wulver/front-nsfw.svg",
  39666. extra: 1724/1632,
  39667. bottom: 130/1854
  39668. }
  39669. },
  39670. },
  39671. [
  39672. {
  39673. name: "Human-Sized",
  39674. height: math.unit(6, "feet")
  39675. },
  39676. {
  39677. name: "Normal",
  39678. height: math.unit(4, "meters"),
  39679. default: true
  39680. },
  39681. {
  39682. name: "Large",
  39683. height: math.unit(6, "m")
  39684. },
  39685. ]
  39686. ))
  39687. characterMakers.push(() => makeCharacter(
  39688. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39689. {
  39690. front: {
  39691. height: math.unit(7, "feet"),
  39692. name: "Front",
  39693. image: {
  39694. source: "./media/characters/maru/front.svg",
  39695. extra: 1595/1570,
  39696. bottom: 0/1595
  39697. }
  39698. },
  39699. },
  39700. [
  39701. {
  39702. name: "Normal",
  39703. height: math.unit(7, "feet"),
  39704. default: true
  39705. },
  39706. {
  39707. name: "Macro",
  39708. height: math.unit(700, "feet")
  39709. },
  39710. {
  39711. name: "Mega Macro",
  39712. height: math.unit(25, "miles")
  39713. },
  39714. ]
  39715. ))
  39716. characterMakers.push(() => makeCharacter(
  39717. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39718. {
  39719. front: {
  39720. height: math.unit(6, "feet"),
  39721. weight: math.unit(170, "lb"),
  39722. name: "Front",
  39723. image: {
  39724. source: "./media/characters/xenon/front.svg",
  39725. extra: 1376/1305,
  39726. bottom: 56/1432
  39727. }
  39728. },
  39729. back: {
  39730. height: math.unit(6, "feet"),
  39731. weight: math.unit(170, "lb"),
  39732. name: "Back",
  39733. image: {
  39734. source: "./media/characters/xenon/back.svg",
  39735. extra: 1328/1259,
  39736. bottom: 95/1423
  39737. }
  39738. },
  39739. maw: {
  39740. height: math.unit(0.52, "feet"),
  39741. name: "Maw",
  39742. image: {
  39743. source: "./media/characters/xenon/maw.svg"
  39744. }
  39745. },
  39746. hand: {
  39747. height: math.unit(0.82, "feet"),
  39748. name: "Hand",
  39749. image: {
  39750. source: "./media/characters/xenon/hand.svg"
  39751. }
  39752. },
  39753. foot: {
  39754. height: math.unit(1.13, "feet"),
  39755. name: "Foot",
  39756. image: {
  39757. source: "./media/characters/xenon/foot.svg"
  39758. }
  39759. },
  39760. },
  39761. [
  39762. {
  39763. name: "Micro",
  39764. height: math.unit(0.8, "inches")
  39765. },
  39766. {
  39767. name: "Normal",
  39768. height: math.unit(6, "feet")
  39769. },
  39770. {
  39771. name: "Macro",
  39772. height: math.unit(50, "feet"),
  39773. default: true
  39774. },
  39775. {
  39776. name: "Macro+",
  39777. height: math.unit(250, "feet")
  39778. },
  39779. {
  39780. name: "Megamacro",
  39781. height: math.unit(1500, "feet")
  39782. },
  39783. ]
  39784. ))
  39785. characterMakers.push(() => makeCharacter(
  39786. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39787. {
  39788. front: {
  39789. height: math.unit(7 + 5/12, "feet"),
  39790. name: "Front",
  39791. image: {
  39792. source: "./media/characters/zane/front.svg",
  39793. extra: 1260/1203,
  39794. bottom: 94/1354
  39795. }
  39796. },
  39797. back: {
  39798. height: math.unit(5.05, "feet"),
  39799. name: "Back",
  39800. image: {
  39801. source: "./media/characters/zane/back.svg",
  39802. extra: 893/829,
  39803. bottom: 30/923
  39804. }
  39805. },
  39806. werewolf: {
  39807. height: math.unit(11, "feet"),
  39808. name: "Werewolf",
  39809. image: {
  39810. source: "./media/characters/zane/werewolf.svg",
  39811. extra: 1383/1323,
  39812. bottom: 89/1472
  39813. }
  39814. },
  39815. foot: {
  39816. height: math.unit(1.46, "feet"),
  39817. name: "Foot",
  39818. image: {
  39819. source: "./media/characters/zane/foot.svg"
  39820. }
  39821. },
  39822. footFront: {
  39823. height: math.unit(0.784, "feet"),
  39824. name: "Foot (Front)",
  39825. image: {
  39826. source: "./media/characters/zane/foot-front.svg"
  39827. }
  39828. },
  39829. dick: {
  39830. height: math.unit(1.95, "feet"),
  39831. name: "Dick",
  39832. image: {
  39833. source: "./media/characters/zane/dick.svg"
  39834. }
  39835. },
  39836. dickWerewolf: {
  39837. height: math.unit(3.77, "feet"),
  39838. name: "Dick (Werewolf)",
  39839. image: {
  39840. source: "./media/characters/zane/dick.svg"
  39841. }
  39842. },
  39843. },
  39844. [
  39845. {
  39846. name: "Normal",
  39847. height: math.unit(7 + 5/12, "feet"),
  39848. default: true
  39849. },
  39850. ]
  39851. ))
  39852. characterMakers.push(() => makeCharacter(
  39853. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39854. {
  39855. front: {
  39856. height: math.unit(6 + 2/12, "feet"),
  39857. weight: math.unit(284, "lb"),
  39858. name: "Front",
  39859. image: {
  39860. source: "./media/characters/benni-desparque/front.svg",
  39861. extra: 1353/1126,
  39862. bottom: 69/1422
  39863. }
  39864. },
  39865. },
  39866. [
  39867. {
  39868. name: "Civilian",
  39869. height: math.unit(6 + 2/12, "feet")
  39870. },
  39871. {
  39872. name: "Normal",
  39873. height: math.unit(98, "feet"),
  39874. default: true
  39875. },
  39876. {
  39877. name: "Kaiju Fighter",
  39878. height: math.unit(268, "feet")
  39879. },
  39880. ]
  39881. ))
  39882. characterMakers.push(() => makeCharacter(
  39883. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39884. {
  39885. front: {
  39886. height: math.unit(5, "feet"),
  39887. weight: math.unit(105, "lb"),
  39888. name: "Front",
  39889. image: {
  39890. source: "./media/characters/maxine/front.svg",
  39891. extra: 1386/1250,
  39892. bottom: 71/1457
  39893. }
  39894. },
  39895. },
  39896. [
  39897. {
  39898. name: "Normal",
  39899. height: math.unit(5, "feet"),
  39900. default: true
  39901. },
  39902. ]
  39903. ))
  39904. characterMakers.push(() => makeCharacter(
  39905. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39906. {
  39907. front: {
  39908. height: math.unit(11 + 7/12, "feet"),
  39909. weight: math.unit(9576, "lb"),
  39910. name: "Front",
  39911. image: {
  39912. source: "./media/characters/scaly/front.svg",
  39913. extra: 888/867,
  39914. bottom: 36/924
  39915. }
  39916. },
  39917. },
  39918. [
  39919. {
  39920. name: "Normal",
  39921. height: math.unit(11 + 7/12, "feet"),
  39922. default: true
  39923. },
  39924. ]
  39925. ))
  39926. characterMakers.push(() => makeCharacter(
  39927. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39928. {
  39929. front: {
  39930. height: math.unit(9, "inches"),
  39931. name: "Front",
  39932. image: {
  39933. source: "./media/characters/saelria/front.svg",
  39934. extra: 662/621,
  39935. bottom: 12/674
  39936. }
  39937. },
  39938. },
  39939. [
  39940. {
  39941. name: "Tiny",
  39942. height: math.unit(9, "inches"),
  39943. default: true
  39944. },
  39945. ]
  39946. ))
  39947. characterMakers.push(() => makeCharacter(
  39948. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39949. {
  39950. front: {
  39951. height: math.unit(80, "meters"),
  39952. weight: math.unit(7000, "tonnes"),
  39953. name: "Front",
  39954. image: {
  39955. source: "./media/characters/tef/front.svg",
  39956. extra: 2036/1991,
  39957. bottom: 54/2090
  39958. }
  39959. },
  39960. back: {
  39961. height: math.unit(80, "meters"),
  39962. weight: math.unit(7000, "tonnes"),
  39963. name: "Back",
  39964. image: {
  39965. source: "./media/characters/tef/back.svg",
  39966. extra: 2036/1991,
  39967. bottom: 54/2090
  39968. }
  39969. },
  39970. },
  39971. [
  39972. {
  39973. name: "Macro",
  39974. height: math.unit(80, "meters"),
  39975. default: true
  39976. },
  39977. ]
  39978. ))
  39979. characterMakers.push(() => makeCharacter(
  39980. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39981. {
  39982. front: {
  39983. height: math.unit(13, "feet"),
  39984. weight: math.unit(6, "tons"),
  39985. name: "Front",
  39986. image: {
  39987. source: "./media/characters/rover/front.svg",
  39988. extra: 1233/1156,
  39989. bottom: 50/1283
  39990. }
  39991. },
  39992. back: {
  39993. height: math.unit(13, "feet"),
  39994. weight: math.unit(6, "tons"),
  39995. name: "Back",
  39996. image: {
  39997. source: "./media/characters/rover/back.svg",
  39998. extra: 1327/1258,
  39999. bottom: 39/1366
  40000. }
  40001. },
  40002. },
  40003. [
  40004. {
  40005. name: "Normal",
  40006. height: math.unit(13, "feet"),
  40007. default: true
  40008. },
  40009. {
  40010. name: "Macro",
  40011. height: math.unit(1300, "feet")
  40012. },
  40013. {
  40014. name: "Megamacro",
  40015. height: math.unit(1300, "miles")
  40016. },
  40017. {
  40018. name: "Gigamacro",
  40019. height: math.unit(1300000, "miles")
  40020. },
  40021. ]
  40022. ))
  40023. characterMakers.push(() => makeCharacter(
  40024. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  40025. {
  40026. front: {
  40027. height: math.unit(6, "feet"),
  40028. weight: math.unit(150, "lb"),
  40029. name: "Front",
  40030. image: {
  40031. source: "./media/characters/ariz/front.svg",
  40032. extra: 1401/1346,
  40033. bottom: 5/1406
  40034. }
  40035. },
  40036. },
  40037. [
  40038. {
  40039. name: "Normal",
  40040. height: math.unit(10, "feet"),
  40041. default: true
  40042. },
  40043. ]
  40044. ))
  40045. characterMakers.push(() => makeCharacter(
  40046. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  40047. {
  40048. front: {
  40049. height: math.unit(6, "feet"),
  40050. weight: math.unit(140, "lb"),
  40051. name: "Front",
  40052. image: {
  40053. source: "./media/characters/sigrun/front.svg",
  40054. extra: 1418/1359,
  40055. bottom: 27/1445
  40056. }
  40057. },
  40058. },
  40059. [
  40060. {
  40061. name: "Macro",
  40062. height: math.unit(35, "feet"),
  40063. default: true
  40064. },
  40065. ]
  40066. ))
  40067. characterMakers.push(() => makeCharacter(
  40068. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  40069. {
  40070. front: {
  40071. height: math.unit(6, "feet"),
  40072. weight: math.unit(150, "lb"),
  40073. name: "Front",
  40074. image: {
  40075. source: "./media/characters/numin/front.svg",
  40076. extra: 1433/1388,
  40077. bottom: 12/1445
  40078. }
  40079. },
  40080. },
  40081. [
  40082. {
  40083. name: "Macro",
  40084. height: math.unit(21.5, "km"),
  40085. default: true
  40086. },
  40087. ]
  40088. ))
  40089. characterMakers.push(() => makeCharacter(
  40090. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  40091. {
  40092. front: {
  40093. height: math.unit(6, "feet"),
  40094. weight: math.unit(463, "lb"),
  40095. name: "Front",
  40096. image: {
  40097. source: "./media/characters/melwa/front.svg",
  40098. extra: 1307/1248,
  40099. bottom: 93/1400
  40100. }
  40101. },
  40102. },
  40103. [
  40104. {
  40105. name: "Macro",
  40106. height: math.unit(50, "meters"),
  40107. default: true
  40108. },
  40109. ]
  40110. ))
  40111. characterMakers.push(() => makeCharacter(
  40112. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  40113. {
  40114. front: {
  40115. height: math.unit(325, "feet"),
  40116. name: "Front",
  40117. image: {
  40118. source: "./media/characters/zorkaiju/front.svg",
  40119. extra: 1955/1814,
  40120. bottom: 40/1995
  40121. }
  40122. },
  40123. frontExtended: {
  40124. height: math.unit(325, "feet"),
  40125. name: "Front (Extended)",
  40126. image: {
  40127. source: "./media/characters/zorkaiju/front-extended.svg",
  40128. extra: 1955/1814,
  40129. bottom: 40/1995
  40130. }
  40131. },
  40132. side: {
  40133. height: math.unit(325, "feet"),
  40134. name: "Side",
  40135. image: {
  40136. source: "./media/characters/zorkaiju/side.svg",
  40137. extra: 1495/1396,
  40138. bottom: 17/1512
  40139. }
  40140. },
  40141. sideExtended: {
  40142. height: math.unit(325, "feet"),
  40143. name: "Side (Extended)",
  40144. image: {
  40145. source: "./media/characters/zorkaiju/side-extended.svg",
  40146. extra: 1495/1396,
  40147. bottom: 17/1512
  40148. }
  40149. },
  40150. back: {
  40151. height: math.unit(325, "feet"),
  40152. name: "Back",
  40153. image: {
  40154. source: "./media/characters/zorkaiju/back.svg",
  40155. extra: 1959/1821,
  40156. bottom: 31/1990
  40157. }
  40158. },
  40159. backExtended: {
  40160. height: math.unit(325, "feet"),
  40161. name: "Back (Extended)",
  40162. image: {
  40163. source: "./media/characters/zorkaiju/back-extended.svg",
  40164. extra: 1959/1821,
  40165. bottom: 31/1990
  40166. }
  40167. },
  40168. hand: {
  40169. height: math.unit(58.4, "feet"),
  40170. name: "Hand",
  40171. image: {
  40172. source: "./media/characters/zorkaiju/hand.svg"
  40173. }
  40174. },
  40175. handExtended: {
  40176. height: math.unit(61.4, "feet"),
  40177. name: "Hand (Extended)",
  40178. image: {
  40179. source: "./media/characters/zorkaiju/hand-extended.svg"
  40180. }
  40181. },
  40182. foot: {
  40183. height: math.unit(95, "feet"),
  40184. name: "Foot",
  40185. image: {
  40186. source: "./media/characters/zorkaiju/foot.svg"
  40187. }
  40188. },
  40189. leftArm: {
  40190. height: math.unit(59, "feet"),
  40191. name: "Left Arm",
  40192. image: {
  40193. source: "./media/characters/zorkaiju/left-arm.svg"
  40194. }
  40195. },
  40196. rightArm: {
  40197. height: math.unit(59, "feet"),
  40198. name: "Right Arm",
  40199. image: {
  40200. source: "./media/characters/zorkaiju/right-arm.svg"
  40201. }
  40202. },
  40203. tail: {
  40204. height: math.unit(104, "feet"),
  40205. name: "Tail",
  40206. image: {
  40207. source: "./media/characters/zorkaiju/tail.svg"
  40208. }
  40209. },
  40210. tailExtended: {
  40211. height: math.unit(104, "feet"),
  40212. name: "Tail (Extended)",
  40213. image: {
  40214. source: "./media/characters/zorkaiju/tail-extended.svg"
  40215. }
  40216. },
  40217. tailBottom: {
  40218. height: math.unit(104, "feet"),
  40219. name: "Tail Bottom",
  40220. image: {
  40221. source: "./media/characters/zorkaiju/tail-bottom.svg"
  40222. }
  40223. },
  40224. crystal: {
  40225. height: math.unit(27.54, "feet"),
  40226. name: "Crystal",
  40227. image: {
  40228. source: "./media/characters/zorkaiju/crystal.svg"
  40229. }
  40230. },
  40231. },
  40232. [
  40233. {
  40234. name: "Kaiju",
  40235. height: math.unit(325, "feet"),
  40236. default: true
  40237. },
  40238. ]
  40239. ))
  40240. characterMakers.push(() => makeCharacter(
  40241. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  40242. {
  40243. front: {
  40244. height: math.unit(6 + 1/12, "feet"),
  40245. weight: math.unit(115, "lb"),
  40246. name: "Front",
  40247. image: {
  40248. source: "./media/characters/bailey-belfry/front.svg",
  40249. extra: 1240/1121,
  40250. bottom: 101/1341
  40251. }
  40252. },
  40253. },
  40254. [
  40255. {
  40256. name: "Normal",
  40257. height: math.unit(6 + 1/12, "feet"),
  40258. default: true
  40259. },
  40260. ]
  40261. ))
  40262. characterMakers.push(() => makeCharacter(
  40263. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  40264. {
  40265. side: {
  40266. height: math.unit(4, "meters"),
  40267. weight: math.unit(250, "kg"),
  40268. name: "Side",
  40269. image: {
  40270. source: "./media/characters/blacky/side.svg",
  40271. extra: 1027/919,
  40272. bottom: 43/1070
  40273. }
  40274. },
  40275. maw: {
  40276. height: math.unit(1, "meters"),
  40277. name: "Maw",
  40278. image: {
  40279. source: "./media/characters/blacky/maw.svg"
  40280. }
  40281. },
  40282. paw: {
  40283. height: math.unit(1, "meters"),
  40284. name: "Paw",
  40285. image: {
  40286. source: "./media/characters/blacky/paw.svg"
  40287. }
  40288. },
  40289. },
  40290. [
  40291. {
  40292. name: "Normal",
  40293. height: math.unit(4, "meters"),
  40294. default: true
  40295. },
  40296. ]
  40297. ))
  40298. characterMakers.push(() => makeCharacter(
  40299. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  40300. {
  40301. front: {
  40302. height: math.unit(170, "cm"),
  40303. weight: math.unit(66, "kg"),
  40304. name: "Front",
  40305. image: {
  40306. source: "./media/characters/thux-ei/front.svg",
  40307. extra: 1109/1011,
  40308. bottom: 8/1117
  40309. }
  40310. },
  40311. },
  40312. [
  40313. {
  40314. name: "Normal",
  40315. height: math.unit(170, "cm"),
  40316. default: true
  40317. },
  40318. ]
  40319. ))
  40320. characterMakers.push(() => makeCharacter(
  40321. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  40322. {
  40323. front: {
  40324. height: math.unit(5, "feet"),
  40325. weight: math.unit(120, "lb"),
  40326. name: "Front",
  40327. image: {
  40328. source: "./media/characters/roxanne-voltaire/front.svg",
  40329. extra: 1901/1779,
  40330. bottom: 53/1954
  40331. }
  40332. },
  40333. },
  40334. [
  40335. {
  40336. name: "Normal",
  40337. height: math.unit(5, "feet"),
  40338. default: true
  40339. },
  40340. {
  40341. name: "Giant",
  40342. height: math.unit(50, "feet")
  40343. },
  40344. {
  40345. name: "Titan",
  40346. height: math.unit(500, "feet")
  40347. },
  40348. {
  40349. name: "Macro",
  40350. height: math.unit(5000, "feet")
  40351. },
  40352. {
  40353. name: "Megamacro",
  40354. height: math.unit(50000, "feet")
  40355. },
  40356. {
  40357. name: "Gigamacro",
  40358. height: math.unit(500000, "feet")
  40359. },
  40360. {
  40361. name: "Teramacro",
  40362. height: math.unit(5e6, "feet")
  40363. },
  40364. ]
  40365. ))
  40366. characterMakers.push(() => makeCharacter(
  40367. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  40368. {
  40369. front: {
  40370. height: math.unit(6 + 2/12, "feet"),
  40371. name: "Front",
  40372. image: {
  40373. source: "./media/characters/squeaks/front.svg",
  40374. extra: 1823/1768,
  40375. bottom: 138/1961
  40376. }
  40377. },
  40378. },
  40379. [
  40380. {
  40381. name: "Micro",
  40382. height: math.unit(0.5, "inches")
  40383. },
  40384. {
  40385. name: "Normal",
  40386. height: math.unit(6 + 2/12, "feet"),
  40387. default: true
  40388. },
  40389. {
  40390. name: "Macro",
  40391. height: math.unit(600, "feet")
  40392. },
  40393. ]
  40394. ))
  40395. characterMakers.push(() => makeCharacter(
  40396. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  40397. {
  40398. front: {
  40399. height: math.unit(1.72, "meters"),
  40400. name: "Front",
  40401. image: {
  40402. source: "./media/characters/archinger/front.svg",
  40403. extra: 1861/1675,
  40404. bottom: 125/1986
  40405. }
  40406. },
  40407. back: {
  40408. height: math.unit(1.72, "meters"),
  40409. name: "Back",
  40410. image: {
  40411. source: "./media/characters/archinger/back.svg",
  40412. extra: 1844/1701,
  40413. bottom: 104/1948
  40414. }
  40415. },
  40416. cock: {
  40417. height: math.unit(0.59, "feet"),
  40418. name: "Cock",
  40419. image: {
  40420. source: "./media/characters/archinger/cock.svg"
  40421. }
  40422. },
  40423. },
  40424. [
  40425. {
  40426. name: "Normal",
  40427. height: math.unit(1.72, "meters"),
  40428. default: true
  40429. },
  40430. {
  40431. name: "Macro",
  40432. height: math.unit(84, "meters")
  40433. },
  40434. {
  40435. name: "Macro+",
  40436. height: math.unit(112, "meters")
  40437. },
  40438. {
  40439. name: "Macro++",
  40440. height: math.unit(960, "meters")
  40441. },
  40442. {
  40443. name: "Macro+++",
  40444. height: math.unit(4, "km")
  40445. },
  40446. {
  40447. name: "Macro++++",
  40448. height: math.unit(48, "km")
  40449. },
  40450. {
  40451. name: "Macro+++++",
  40452. height: math.unit(4500, "km")
  40453. },
  40454. ]
  40455. ))
  40456. characterMakers.push(() => makeCharacter(
  40457. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  40458. {
  40459. front: {
  40460. height: math.unit(5 + 5/12, "feet"),
  40461. name: "Front",
  40462. image: {
  40463. source: "./media/characters/alsnapz/front.svg",
  40464. extra: 1157/1065,
  40465. bottom: 42/1199
  40466. }
  40467. },
  40468. },
  40469. [
  40470. {
  40471. name: "Normal",
  40472. height: math.unit(5 + 5/12, "feet"),
  40473. default: true
  40474. },
  40475. ]
  40476. ))
  40477. characterMakers.push(() => makeCharacter(
  40478. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  40479. {
  40480. side: {
  40481. height: math.unit(3.2, "earths"),
  40482. name: "Side",
  40483. image: {
  40484. source: "./media/characters/mag/side.svg",
  40485. extra: 1331/1008,
  40486. bottom: 52/1383
  40487. }
  40488. },
  40489. wing: {
  40490. height: math.unit(1.94, "earths"),
  40491. name: "Wing",
  40492. image: {
  40493. source: "./media/characters/mag/wing.svg"
  40494. }
  40495. },
  40496. dick: {
  40497. height: math.unit(1.8, "earths"),
  40498. name: "Dick",
  40499. image: {
  40500. source: "./media/characters/mag/dick.svg"
  40501. }
  40502. },
  40503. ass: {
  40504. height: math.unit(1.33, "earths"),
  40505. name: "Ass",
  40506. image: {
  40507. source: "./media/characters/mag/ass.svg"
  40508. }
  40509. },
  40510. head: {
  40511. height: math.unit(1.1, "earths"),
  40512. name: "Head",
  40513. image: {
  40514. source: "./media/characters/mag/head.svg"
  40515. }
  40516. },
  40517. maw: {
  40518. height: math.unit(1.62, "earths"),
  40519. name: "Maw",
  40520. image: {
  40521. source: "./media/characters/mag/maw.svg"
  40522. }
  40523. },
  40524. },
  40525. [
  40526. {
  40527. name: "Small",
  40528. height: math.unit(162, "feet")
  40529. },
  40530. {
  40531. name: "Normal",
  40532. height: math.unit(3.2, "earths"),
  40533. default: true
  40534. },
  40535. ]
  40536. ))
  40537. characterMakers.push(() => makeCharacter(
  40538. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40539. {
  40540. front: {
  40541. height: math.unit(512, "feet"),
  40542. weight: math.unit(63509, "tonnes"),
  40543. name: "Front",
  40544. image: {
  40545. source: "./media/characters/vorrel-harroc/front.svg",
  40546. extra: 1075/1063,
  40547. bottom: 62/1137
  40548. }
  40549. },
  40550. },
  40551. [
  40552. {
  40553. name: "Normal",
  40554. height: math.unit(10, "feet")
  40555. },
  40556. {
  40557. name: "Macro",
  40558. height: math.unit(512, "feet"),
  40559. default: true
  40560. },
  40561. {
  40562. name: "Megamacro",
  40563. height: math.unit(256, "miles")
  40564. },
  40565. {
  40566. name: "Gigamacro",
  40567. height: math.unit(4096, "miles")
  40568. },
  40569. ]
  40570. ))
  40571. characterMakers.push(() => makeCharacter(
  40572. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40573. {
  40574. side: {
  40575. height: math.unit(50, "feet"),
  40576. name: "Side",
  40577. image: {
  40578. source: "./media/characters/froimar/side.svg",
  40579. extra: 855/638,
  40580. bottom: 99/954
  40581. }
  40582. },
  40583. },
  40584. [
  40585. {
  40586. name: "Macro",
  40587. height: math.unit(50, "feet"),
  40588. default: true
  40589. },
  40590. ]
  40591. ))
  40592. characterMakers.push(() => makeCharacter(
  40593. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40594. {
  40595. front: {
  40596. height: math.unit(210, "miles"),
  40597. name: "Front",
  40598. image: {
  40599. source: "./media/characters/timothy/front.svg",
  40600. extra: 1007/943,
  40601. bottom: 62/1069
  40602. }
  40603. },
  40604. frontSkirt: {
  40605. height: math.unit(210, "miles"),
  40606. name: "Front (Skirt)",
  40607. image: {
  40608. source: "./media/characters/timothy/front-skirt.svg",
  40609. extra: 1007/943,
  40610. bottom: 62/1069
  40611. }
  40612. },
  40613. frontCoat: {
  40614. height: math.unit(210, "miles"),
  40615. name: "Front (Coat)",
  40616. image: {
  40617. source: "./media/characters/timothy/front-coat.svg",
  40618. extra: 1007/943,
  40619. bottom: 62/1069
  40620. }
  40621. },
  40622. },
  40623. [
  40624. {
  40625. name: "Macro",
  40626. height: math.unit(210, "miles"),
  40627. default: true
  40628. },
  40629. {
  40630. name: "Megamacro",
  40631. height: math.unit(210000, "miles")
  40632. },
  40633. ]
  40634. ))
  40635. characterMakers.push(() => makeCharacter(
  40636. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40637. {
  40638. front: {
  40639. height: math.unit(188, "feet"),
  40640. name: "Front",
  40641. image: {
  40642. source: "./media/characters/pyotr/front.svg",
  40643. extra: 1912/1826,
  40644. bottom: 18/1930
  40645. }
  40646. },
  40647. },
  40648. [
  40649. {
  40650. name: "Macro",
  40651. height: math.unit(188, "feet"),
  40652. default: true
  40653. },
  40654. {
  40655. name: "Megamacro",
  40656. height: math.unit(8, "miles")
  40657. },
  40658. ]
  40659. ))
  40660. characterMakers.push(() => makeCharacter(
  40661. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40662. {
  40663. side: {
  40664. height: math.unit(10, "feet"),
  40665. weight: math.unit(4500, "lb"),
  40666. name: "Side",
  40667. image: {
  40668. source: "./media/characters/ackart/side.svg",
  40669. extra: 1776/1668,
  40670. bottom: 116/1892
  40671. }
  40672. },
  40673. },
  40674. [
  40675. {
  40676. name: "Normal",
  40677. height: math.unit(10, "feet"),
  40678. default: true
  40679. },
  40680. ]
  40681. ))
  40682. characterMakers.push(() => makeCharacter(
  40683. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40684. {
  40685. side: {
  40686. height: math.unit(21, "feet"),
  40687. name: "Side",
  40688. image: {
  40689. source: "./media/characters/nolow/side.svg",
  40690. extra: 1484/1434,
  40691. bottom: 85/1569
  40692. }
  40693. },
  40694. sideErect: {
  40695. height: math.unit(21, "feet"),
  40696. name: "Side-erect",
  40697. image: {
  40698. source: "./media/characters/nolow/side-erect.svg",
  40699. extra: 1484/1434,
  40700. bottom: 85/1569
  40701. }
  40702. },
  40703. },
  40704. [
  40705. {
  40706. name: "Regular",
  40707. height: math.unit(12, "feet")
  40708. },
  40709. {
  40710. name: "Big Chee",
  40711. height: math.unit(21, "feet"),
  40712. default: true
  40713. },
  40714. ]
  40715. ))
  40716. characterMakers.push(() => makeCharacter(
  40717. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40718. {
  40719. front: {
  40720. height: math.unit(7, "feet"),
  40721. weight: math.unit(250, "lb"),
  40722. name: "Front",
  40723. image: {
  40724. source: "./media/characters/nines/front.svg",
  40725. extra: 1741/1607,
  40726. bottom: 41/1782
  40727. }
  40728. },
  40729. side: {
  40730. height: math.unit(7, "feet"),
  40731. weight: math.unit(250, "lb"),
  40732. name: "Side",
  40733. image: {
  40734. source: "./media/characters/nines/side.svg",
  40735. extra: 1854/1735,
  40736. bottom: 93/1947
  40737. }
  40738. },
  40739. back: {
  40740. height: math.unit(7, "feet"),
  40741. weight: math.unit(250, "lb"),
  40742. name: "Back",
  40743. image: {
  40744. source: "./media/characters/nines/back.svg",
  40745. extra: 1748/1615,
  40746. bottom: 20/1768
  40747. }
  40748. },
  40749. },
  40750. [
  40751. {
  40752. name: "Megamacro",
  40753. height: math.unit(99, "km"),
  40754. default: true
  40755. },
  40756. ]
  40757. ))
  40758. characterMakers.push(() => makeCharacter(
  40759. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40760. {
  40761. front: {
  40762. height: math.unit(5 + 10/12, "feet"),
  40763. weight: math.unit(210, "lb"),
  40764. name: "Front",
  40765. image: {
  40766. source: "./media/characters/zenith/front.svg",
  40767. extra: 1531/1452,
  40768. bottom: 198/1729
  40769. }
  40770. },
  40771. back: {
  40772. height: math.unit(5 + 10/12, "feet"),
  40773. weight: math.unit(210, "lb"),
  40774. name: "Back",
  40775. image: {
  40776. source: "./media/characters/zenith/back.svg",
  40777. extra: 1571/1487,
  40778. bottom: 75/1646
  40779. }
  40780. },
  40781. },
  40782. [
  40783. {
  40784. name: "Normal",
  40785. height: math.unit(5 + 10/12, "feet"),
  40786. default: true
  40787. }
  40788. ]
  40789. ))
  40790. characterMakers.push(() => makeCharacter(
  40791. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40792. {
  40793. front: {
  40794. height: math.unit(4, "feet"),
  40795. weight: math.unit(60, "lb"),
  40796. name: "Front",
  40797. image: {
  40798. source: "./media/characters/jasper/front.svg",
  40799. extra: 1450/1379,
  40800. bottom: 19/1469
  40801. }
  40802. },
  40803. },
  40804. [
  40805. {
  40806. name: "Normal",
  40807. height: math.unit(4, "feet"),
  40808. default: true
  40809. },
  40810. ]
  40811. ))
  40812. characterMakers.push(() => makeCharacter(
  40813. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40814. {
  40815. front: {
  40816. height: math.unit(6 + 5/12, "feet"),
  40817. weight: math.unit(290, "lb"),
  40818. name: "Front",
  40819. image: {
  40820. source: "./media/characters/tiberius-thyben/front.svg",
  40821. extra: 757/739,
  40822. bottom: 39/796
  40823. }
  40824. },
  40825. },
  40826. [
  40827. {
  40828. name: "Micro",
  40829. height: math.unit(1.5, "inches")
  40830. },
  40831. {
  40832. name: "Normal",
  40833. height: math.unit(6 + 5/12, "feet"),
  40834. default: true
  40835. },
  40836. {
  40837. name: "Macro",
  40838. height: math.unit(300, "feet")
  40839. },
  40840. ]
  40841. ))
  40842. characterMakers.push(() => makeCharacter(
  40843. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40844. {
  40845. front: {
  40846. height: math.unit(5 + 6/12, "feet"),
  40847. weight: math.unit(60, "kg"),
  40848. name: "Front",
  40849. image: {
  40850. source: "./media/characters/sabre/front.svg",
  40851. extra: 738/671,
  40852. bottom: 27/765
  40853. }
  40854. },
  40855. },
  40856. [
  40857. {
  40858. name: "Teeny",
  40859. height: math.unit(2, "inches")
  40860. },
  40861. {
  40862. name: "Smol",
  40863. height: math.unit(8, "inches")
  40864. },
  40865. {
  40866. name: "Normal",
  40867. height: math.unit(5 + 6/12, "feet"),
  40868. default: true
  40869. },
  40870. {
  40871. name: "Mini-Macro",
  40872. height: math.unit(15, "feet")
  40873. },
  40874. {
  40875. name: "Macro",
  40876. height: math.unit(50, "feet")
  40877. },
  40878. ]
  40879. ))
  40880. characterMakers.push(() => makeCharacter(
  40881. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40882. {
  40883. front: {
  40884. height: math.unit(6 + 4/12, "feet"),
  40885. weight: math.unit(170, "lb"),
  40886. name: "Front",
  40887. image: {
  40888. source: "./media/characters/charlie/front.svg",
  40889. extra: 1348/1228,
  40890. bottom: 15/1363
  40891. }
  40892. },
  40893. },
  40894. [
  40895. {
  40896. name: "Macro",
  40897. height: math.unit(1700, "meters"),
  40898. default: true
  40899. },
  40900. {
  40901. name: "MegaMacro",
  40902. height: math.unit(20400, "meters")
  40903. },
  40904. ]
  40905. ))
  40906. characterMakers.push(() => makeCharacter(
  40907. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40908. {
  40909. front: {
  40910. height: math.unit(6 + 3/12, "feet"),
  40911. weight: math.unit(185, "lb"),
  40912. name: "Front",
  40913. image: {
  40914. source: "./media/characters/susan-grant/front.svg",
  40915. extra: 1351/1327,
  40916. bottom: 26/1377
  40917. }
  40918. },
  40919. },
  40920. [
  40921. {
  40922. name: "Normal",
  40923. height: math.unit(6 + 3/12, "feet"),
  40924. default: true
  40925. },
  40926. {
  40927. name: "Macro",
  40928. height: math.unit(225, "feet")
  40929. },
  40930. {
  40931. name: "Macro+",
  40932. height: math.unit(900, "feet")
  40933. },
  40934. {
  40935. name: "MegaMacro",
  40936. height: math.unit(14400, "feet")
  40937. },
  40938. ]
  40939. ))
  40940. characterMakers.push(() => makeCharacter(
  40941. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40942. {
  40943. front: {
  40944. height: math.unit(5 + 4/12, "feet"),
  40945. weight: math.unit(110, "lb"),
  40946. name: "Front",
  40947. image: {
  40948. source: "./media/characters/axel-isanov/front.svg",
  40949. extra: 1096/1065,
  40950. bottom: 13/1109
  40951. }
  40952. },
  40953. },
  40954. [
  40955. {
  40956. name: "Normal",
  40957. height: math.unit(5 + 4/12, "feet"),
  40958. default: true
  40959. },
  40960. ]
  40961. ))
  40962. characterMakers.push(() => makeCharacter(
  40963. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40964. {
  40965. front: {
  40966. height: math.unit(9, "feet"),
  40967. weight: math.unit(467, "lb"),
  40968. name: "Front",
  40969. image: {
  40970. source: "./media/characters/necahual/front.svg",
  40971. extra: 920/873,
  40972. bottom: 26/946
  40973. }
  40974. },
  40975. back: {
  40976. height: math.unit(9, "feet"),
  40977. weight: math.unit(467, "lb"),
  40978. name: "Back",
  40979. image: {
  40980. source: "./media/characters/necahual/back.svg",
  40981. extra: 930/884,
  40982. bottom: 16/946
  40983. }
  40984. },
  40985. frontUnderwear: {
  40986. height: math.unit(9, "feet"),
  40987. weight: math.unit(467, "lb"),
  40988. name: "Front (Underwear)",
  40989. image: {
  40990. source: "./media/characters/necahual/front-underwear.svg",
  40991. extra: 920/873,
  40992. bottom: 26/946
  40993. }
  40994. },
  40995. frontDressed: {
  40996. height: math.unit(9, "feet"),
  40997. weight: math.unit(467, "lb"),
  40998. name: "Front (Dressed)",
  40999. image: {
  41000. source: "./media/characters/necahual/front-dressed.svg",
  41001. extra: 920/873,
  41002. bottom: 26/946
  41003. }
  41004. },
  41005. },
  41006. [
  41007. {
  41008. name: "Comprsesed",
  41009. height: math.unit(9, "feet")
  41010. },
  41011. {
  41012. name: "Natural",
  41013. height: math.unit(15, "feet"),
  41014. default: true
  41015. },
  41016. {
  41017. name: "Boosted",
  41018. height: math.unit(50, "feet")
  41019. },
  41020. {
  41021. name: "Boosted+",
  41022. height: math.unit(150, "feet")
  41023. },
  41024. {
  41025. name: "Max",
  41026. height: math.unit(500, "feet")
  41027. },
  41028. ]
  41029. ))
  41030. characterMakers.push(() => makeCharacter(
  41031. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  41032. {
  41033. front: {
  41034. height: math.unit(22 + 1/12, "feet"),
  41035. weight: math.unit(3200, "lb"),
  41036. name: "Front",
  41037. image: {
  41038. source: "./media/characters/theo-acacia/front.svg",
  41039. extra: 1796/1741,
  41040. bottom: 83/1879
  41041. }
  41042. },
  41043. frontUnderwear: {
  41044. height: math.unit(22 + 1/12, "feet"),
  41045. weight: math.unit(3200, "lb"),
  41046. name: "Front (Underwear)",
  41047. image: {
  41048. source: "./media/characters/theo-acacia/front-underwear.svg",
  41049. extra: 1796/1741,
  41050. bottom: 83/1879
  41051. }
  41052. },
  41053. frontNude: {
  41054. height: math.unit(22 + 1/12, "feet"),
  41055. weight: math.unit(3200, "lb"),
  41056. name: "Front (Nude)",
  41057. image: {
  41058. source: "./media/characters/theo-acacia/front-nude.svg",
  41059. extra: 1796/1741,
  41060. bottom: 83/1879
  41061. }
  41062. },
  41063. },
  41064. [
  41065. {
  41066. name: "Normal",
  41067. height: math.unit(22 + 1/12, "feet"),
  41068. default: true
  41069. },
  41070. ]
  41071. ))
  41072. characterMakers.push(() => makeCharacter(
  41073. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41074. {
  41075. front: {
  41076. height: math.unit(20, "feet"),
  41077. name: "Front",
  41078. image: {
  41079. source: "./media/characters/astra/front.svg",
  41080. extra: 1850/1714,
  41081. bottom: 106/1956
  41082. }
  41083. },
  41084. frontUndressed: {
  41085. height: math.unit(20, "feet"),
  41086. name: "Front (Undressed)",
  41087. image: {
  41088. source: "./media/characters/astra/front-undressed.svg",
  41089. extra: 1926/1749,
  41090. bottom: 0/1926
  41091. }
  41092. },
  41093. hand: {
  41094. height: math.unit(1.53, "feet"),
  41095. name: "Hand",
  41096. image: {
  41097. source: "./media/characters/astra/hand.svg"
  41098. }
  41099. },
  41100. paw: {
  41101. height: math.unit(1.53, "feet"),
  41102. name: "Paw",
  41103. image: {
  41104. source: "./media/characters/astra/paw.svg"
  41105. }
  41106. },
  41107. },
  41108. [
  41109. {
  41110. name: "Smallest",
  41111. height: math.unit(20, "feet")
  41112. },
  41113. {
  41114. name: "Normal",
  41115. height: math.unit(1e9, "miles"),
  41116. default: true
  41117. },
  41118. {
  41119. name: "Larger",
  41120. height: math.unit(5, "multiverses")
  41121. },
  41122. {
  41123. name: "Largest",
  41124. height: math.unit(1e9, "multiverses")
  41125. },
  41126. ]
  41127. ))
  41128. characterMakers.push(() => makeCharacter(
  41129. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41130. {
  41131. front: {
  41132. height: math.unit(8, "feet"),
  41133. name: "Front",
  41134. image: {
  41135. source: "./media/characters/breanna/front.svg",
  41136. extra: 1912/1632,
  41137. bottom: 33/1945
  41138. }
  41139. },
  41140. },
  41141. [
  41142. {
  41143. name: "Smallest",
  41144. height: math.unit(8, "feet")
  41145. },
  41146. {
  41147. name: "Normal",
  41148. height: math.unit(1, "mile"),
  41149. default: true
  41150. },
  41151. {
  41152. name: "Maximum",
  41153. height: math.unit(1500000000000, "lightyears")
  41154. },
  41155. ]
  41156. ))
  41157. characterMakers.push(() => makeCharacter(
  41158. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  41159. {
  41160. front: {
  41161. height: math.unit(5 + 11/12, "feet"),
  41162. weight: math.unit(155, "lb"),
  41163. name: "Front",
  41164. image: {
  41165. source: "./media/characters/cai/front.svg",
  41166. extra: 1823/1702,
  41167. bottom: 32/1855
  41168. }
  41169. },
  41170. back: {
  41171. height: math.unit(5 + 11/12, "feet"),
  41172. weight: math.unit(155, "lb"),
  41173. name: "Back",
  41174. image: {
  41175. source: "./media/characters/cai/back.svg",
  41176. extra: 1809/1708,
  41177. bottom: 31/1840
  41178. }
  41179. },
  41180. },
  41181. [
  41182. {
  41183. name: "Normal",
  41184. height: math.unit(5 + 11/12, "feet"),
  41185. default: true
  41186. },
  41187. {
  41188. name: "Big",
  41189. height: math.unit(15, "feet")
  41190. },
  41191. {
  41192. name: "Macro",
  41193. height: math.unit(200, "feet")
  41194. },
  41195. ]
  41196. ))
  41197. characterMakers.push(() => makeCharacter(
  41198. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  41199. {
  41200. front: {
  41201. height: math.unit(5 + 6/12, "feet"),
  41202. weight: math.unit(160, "lb"),
  41203. name: "Front",
  41204. image: {
  41205. source: "./media/characters/zanna-virtuedòttir/front.svg",
  41206. extra: 1227/1174,
  41207. bottom: 37/1264
  41208. }
  41209. },
  41210. },
  41211. [
  41212. {
  41213. name: "Macro",
  41214. height: math.unit(444, "meters"),
  41215. default: true
  41216. },
  41217. ]
  41218. ))
  41219. characterMakers.push(() => makeCharacter(
  41220. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  41221. {
  41222. front: {
  41223. height: math.unit(18 + 7/12, "feet"),
  41224. name: "Front",
  41225. image: {
  41226. source: "./media/characters/rex/front.svg",
  41227. extra: 1941/1807,
  41228. bottom: 66/2007
  41229. }
  41230. },
  41231. back: {
  41232. height: math.unit(18 + 7/12, "feet"),
  41233. name: "Back",
  41234. image: {
  41235. source: "./media/characters/rex/back.svg",
  41236. extra: 1937/1822,
  41237. bottom: 42/1979
  41238. }
  41239. },
  41240. boot: {
  41241. height: math.unit(3.45, "feet"),
  41242. name: "Boot",
  41243. image: {
  41244. source: "./media/characters/rex/boot.svg"
  41245. }
  41246. },
  41247. paw: {
  41248. height: math.unit(4.17, "feet"),
  41249. name: "Paw",
  41250. image: {
  41251. source: "./media/characters/rex/paw.svg"
  41252. }
  41253. },
  41254. head: {
  41255. height: math.unit(6.728, "feet"),
  41256. name: "Head",
  41257. image: {
  41258. source: "./media/characters/rex/head.svg"
  41259. }
  41260. },
  41261. },
  41262. [
  41263. {
  41264. name: "Nano",
  41265. height: math.unit(18 + 7/12, "feet")
  41266. },
  41267. {
  41268. name: "Micro",
  41269. height: math.unit(1.5, "megameters")
  41270. },
  41271. {
  41272. name: "Normal",
  41273. height: math.unit(440, "megameters"),
  41274. default: true
  41275. },
  41276. {
  41277. name: "Macro",
  41278. height: math.unit(2.5, "gigameters")
  41279. },
  41280. {
  41281. name: "Gigamacro",
  41282. height: math.unit(2, "galaxies")
  41283. },
  41284. ]
  41285. ))
  41286. characterMakers.push(() => makeCharacter(
  41287. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  41288. {
  41289. side: {
  41290. height: math.unit(32, "feet"),
  41291. weight: math.unit(250000, "lb"),
  41292. name: "Side",
  41293. image: {
  41294. source: "./media/characters/silverwing/side.svg",
  41295. extra: 1100/1019,
  41296. bottom: 204/1304
  41297. }
  41298. },
  41299. },
  41300. [
  41301. {
  41302. name: "Normal",
  41303. height: math.unit(32, "feet"),
  41304. default: true
  41305. },
  41306. ]
  41307. ))
  41308. characterMakers.push(() => makeCharacter(
  41309. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  41310. {
  41311. front: {
  41312. height: math.unit(6 + 6/12, "feet"),
  41313. weight: math.unit(350, "lb"),
  41314. name: "Front",
  41315. image: {
  41316. source: "./media/characters/tristan-hawthorne/front.svg",
  41317. extra: 1159/1124,
  41318. bottom: 37/1196
  41319. }
  41320. },
  41321. },
  41322. [
  41323. {
  41324. name: "Normal",
  41325. height: math.unit(6 + 6/12, "feet"),
  41326. default: true
  41327. },
  41328. ]
  41329. ))
  41330. characterMakers.push(() => makeCharacter(
  41331. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  41332. {
  41333. front: {
  41334. height: math.unit(5 + 11/12, "feet"),
  41335. weight: math.unit(190, "lb"),
  41336. name: "Front",
  41337. image: {
  41338. source: "./media/characters/mizu/front.svg",
  41339. extra: 1988/1788,
  41340. bottom: 14/2002
  41341. }
  41342. },
  41343. },
  41344. [
  41345. {
  41346. name: "Normal",
  41347. height: math.unit(5 + 11/12, "feet"),
  41348. default: true
  41349. },
  41350. ]
  41351. ))
  41352. characterMakers.push(() => makeCharacter(
  41353. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  41354. {
  41355. front: {
  41356. height: math.unit(6, "feet"),
  41357. name: "Front",
  41358. image: {
  41359. source: "./media/characters/moonlight-rose-terra/front.svg",
  41360. extra: 1434/1252,
  41361. bottom: 48/1482
  41362. }
  41363. },
  41364. },
  41365. [
  41366. {
  41367. name: "TRAPPIST-1D",
  41368. height: math.unit(4992*2, "km")
  41369. },
  41370. {
  41371. name: "Earth",
  41372. height: math.unit(6367*2, "km"),
  41373. default: true
  41374. },
  41375. {
  41376. name: "Kepler-22b",
  41377. height: math.unit(15282*2, "km")
  41378. },
  41379. ]
  41380. ))
  41381. characterMakers.push(() => makeCharacter(
  41382. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  41383. {
  41384. front: {
  41385. height: math.unit(6, "feet"),
  41386. name: "Front",
  41387. image: {
  41388. source: "./media/characters/moonlight-rose-neptune/front.svg",
  41389. extra: 1851/1712,
  41390. bottom: 0/1851
  41391. }
  41392. },
  41393. },
  41394. [
  41395. {
  41396. name: "Enceladus",
  41397. height: math.unit(513*2, "km")
  41398. },
  41399. {
  41400. name: "Europe",
  41401. height: math.unit(1560*2, "km")
  41402. },
  41403. {
  41404. name: "Neptune",
  41405. height: math.unit(24622*2, "km"),
  41406. default: true
  41407. },
  41408. {
  41409. name: "CoRoT-9b",
  41410. height: math.unit(75067*2, "km")
  41411. },
  41412. ]
  41413. ))
  41414. characterMakers.push(() => makeCharacter(
  41415. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  41416. {
  41417. front: {
  41418. height: math.unit(6, "feet"),
  41419. name: "Front",
  41420. image: {
  41421. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  41422. extra: 1367/1286,
  41423. bottom: 55/1422
  41424. }
  41425. },
  41426. },
  41427. [
  41428. {
  41429. name: "Saturn",
  41430. height: math.unit(58232*2, "km")
  41431. },
  41432. {
  41433. name: "Jupiter",
  41434. height: math.unit(69911*2, "km"),
  41435. default: true
  41436. },
  41437. {
  41438. name: "HD 100546 b",
  41439. height: math.unit(482938, "km")
  41440. },
  41441. ]
  41442. ))
  41443. characterMakers.push(() => makeCharacter(
  41444. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41445. {
  41446. front: {
  41447. height: math.unit(1.7, "feet"),
  41448. weight: math.unit(50, "lb"),
  41449. name: "Front",
  41450. image: {
  41451. source: "./media/characters/dechroma/front.svg",
  41452. extra: 1095/859,
  41453. bottom: 64/1159
  41454. }
  41455. },
  41456. },
  41457. [
  41458. {
  41459. name: "Normal",
  41460. height: math.unit(1.7, "feet"),
  41461. default: true
  41462. },
  41463. ]
  41464. ))
  41465. characterMakers.push(() => makeCharacter(
  41466. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41467. {
  41468. side: {
  41469. height: math.unit(30, "feet"),
  41470. name: "Side",
  41471. image: {
  41472. source: "./media/characters/veluren-thanazel/side.svg",
  41473. extra: 1611/633,
  41474. bottom: 118/1729
  41475. }
  41476. },
  41477. front: {
  41478. height: math.unit(30, "feet"),
  41479. name: "Front",
  41480. image: {
  41481. source: "./media/characters/veluren-thanazel/front.svg",
  41482. extra: 1486/636,
  41483. bottom: 238/1724
  41484. }
  41485. },
  41486. head: {
  41487. height: math.unit(21.4, "feet"),
  41488. name: "Head",
  41489. image: {
  41490. source: "./media/characters/veluren-thanazel/head.svg"
  41491. }
  41492. },
  41493. genitals: {
  41494. height: math.unit(19.4, "feet"),
  41495. name: "Genitals",
  41496. image: {
  41497. source: "./media/characters/veluren-thanazel/genitals.svg"
  41498. }
  41499. },
  41500. },
  41501. [
  41502. {
  41503. name: "Social",
  41504. height: math.unit(6, "feet")
  41505. },
  41506. {
  41507. name: "Play",
  41508. height: math.unit(12, "feet")
  41509. },
  41510. {
  41511. name: "True",
  41512. height: math.unit(30, "feet"),
  41513. default: true
  41514. },
  41515. ]
  41516. ))
  41517. characterMakers.push(() => makeCharacter(
  41518. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41519. {
  41520. front: {
  41521. height: math.unit(7 + 6/12, "feet"),
  41522. weight: math.unit(500, "kg"),
  41523. name: "Front",
  41524. image: {
  41525. source: "./media/characters/arcturas/front.svg",
  41526. extra: 1700/1500,
  41527. bottom: 145/1845
  41528. }
  41529. },
  41530. },
  41531. [
  41532. {
  41533. name: "Normal",
  41534. height: math.unit(7 + 6/12, "feet"),
  41535. default: true
  41536. },
  41537. ]
  41538. ))
  41539. characterMakers.push(() => makeCharacter(
  41540. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41541. {
  41542. side: {
  41543. height: math.unit(6, "feet"),
  41544. weight: math.unit(2, "tons"),
  41545. name: "Side",
  41546. image: {
  41547. source: "./media/characters/vitaen/side.svg",
  41548. extra: 1157/617,
  41549. bottom: 122/1279
  41550. }
  41551. },
  41552. },
  41553. [
  41554. {
  41555. name: "Normal",
  41556. height: math.unit(6, "feet"),
  41557. default: true
  41558. },
  41559. ]
  41560. ))
  41561. characterMakers.push(() => makeCharacter(
  41562. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41563. {
  41564. front: {
  41565. height: math.unit(19, "feet"),
  41566. name: "Front",
  41567. image: {
  41568. source: "./media/characters/fia-dreamweaver/front.svg",
  41569. extra: 1630/1504,
  41570. bottom: 25/1655
  41571. }
  41572. },
  41573. },
  41574. [
  41575. {
  41576. name: "Normal",
  41577. height: math.unit(19, "feet"),
  41578. default: true
  41579. },
  41580. ]
  41581. ))
  41582. characterMakers.push(() => makeCharacter(
  41583. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41584. {
  41585. front: {
  41586. height: math.unit(5 + 4/12, "feet"),
  41587. name: "Front",
  41588. image: {
  41589. source: "./media/characters/artan/front.svg",
  41590. extra: 1618/1535,
  41591. bottom: 46/1664
  41592. }
  41593. },
  41594. back: {
  41595. height: math.unit(5 + 4/12, "feet"),
  41596. name: "Back",
  41597. image: {
  41598. source: "./media/characters/artan/back.svg",
  41599. extra: 1618/1543,
  41600. bottom: 31/1649
  41601. }
  41602. },
  41603. },
  41604. [
  41605. {
  41606. name: "Normal",
  41607. height: math.unit(5 + 4/12, "feet"),
  41608. default: true
  41609. },
  41610. ]
  41611. ))
  41612. characterMakers.push(() => makeCharacter(
  41613. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41614. {
  41615. side: {
  41616. height: math.unit(182, "cm"),
  41617. weight: math.unit(1000, "lb"),
  41618. name: "Side",
  41619. image: {
  41620. source: "./media/characters/silver-dragon/side.svg",
  41621. extra: 710/287,
  41622. bottom: 88/798
  41623. }
  41624. },
  41625. },
  41626. [
  41627. {
  41628. name: "Normal",
  41629. height: math.unit(182, "cm"),
  41630. default: true
  41631. },
  41632. ]
  41633. ))
  41634. characterMakers.push(() => makeCharacter(
  41635. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41636. {
  41637. side: {
  41638. height: math.unit(6 + 6/12, "feet"),
  41639. weight: math.unit(1.5, "tons"),
  41640. name: "Side",
  41641. image: {
  41642. source: "./media/characters/zephyr/side.svg",
  41643. extra: 1433/586,
  41644. bottom: 109/1542
  41645. }
  41646. },
  41647. },
  41648. [
  41649. {
  41650. name: "Normal",
  41651. height: math.unit(6 + 6/12, "feet"),
  41652. default: true
  41653. },
  41654. ]
  41655. ))
  41656. characterMakers.push(() => makeCharacter(
  41657. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41658. {
  41659. side: {
  41660. height: math.unit(1, "feet"),
  41661. name: "Side",
  41662. image: {
  41663. source: "./media/characters/vixye/side.svg",
  41664. extra: 632/541,
  41665. bottom: 0/632
  41666. }
  41667. },
  41668. },
  41669. [
  41670. {
  41671. name: "Normal",
  41672. height: math.unit(1, "feet"),
  41673. default: true
  41674. },
  41675. {
  41676. name: "True",
  41677. height: math.unit(1e15, "multiverses")
  41678. },
  41679. ]
  41680. ))
  41681. characterMakers.push(() => makeCharacter(
  41682. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41683. {
  41684. front: {
  41685. height: math.unit(8 + 2/12, "feet"),
  41686. weight: math.unit(650, "lb"),
  41687. name: "Front",
  41688. image: {
  41689. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41690. extra: 1174/1137,
  41691. bottom: 82/1256
  41692. }
  41693. },
  41694. back: {
  41695. height: math.unit(8 + 2/12, "feet"),
  41696. weight: math.unit(650, "lb"),
  41697. name: "Back",
  41698. image: {
  41699. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41700. extra: 1204/1157,
  41701. bottom: 46/1250
  41702. }
  41703. },
  41704. },
  41705. [
  41706. {
  41707. name: "Wildform",
  41708. height: math.unit(8 + 2/12, "feet"),
  41709. default: true
  41710. },
  41711. ]
  41712. ))
  41713. characterMakers.push(() => makeCharacter(
  41714. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41715. {
  41716. front: {
  41717. height: math.unit(18, "feet"),
  41718. name: "Front",
  41719. image: {
  41720. source: "./media/characters/cyphin/front.svg",
  41721. extra: 970/886,
  41722. bottom: 42/1012
  41723. }
  41724. },
  41725. back: {
  41726. height: math.unit(18, "feet"),
  41727. name: "Back",
  41728. image: {
  41729. source: "./media/characters/cyphin/back.svg",
  41730. extra: 1009/894,
  41731. bottom: 24/1033
  41732. }
  41733. },
  41734. head: {
  41735. height: math.unit(5.05, "feet"),
  41736. name: "Head",
  41737. image: {
  41738. source: "./media/characters/cyphin/head.svg"
  41739. }
  41740. },
  41741. tailbud: {
  41742. height: math.unit(5, "feet"),
  41743. name: "Tailbud",
  41744. image: {
  41745. source: "./media/characters/cyphin/tailbud.svg"
  41746. }
  41747. },
  41748. },
  41749. [
  41750. ]
  41751. ))
  41752. characterMakers.push(() => makeCharacter(
  41753. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41754. {
  41755. side: {
  41756. height: math.unit(10, "feet"),
  41757. weight: math.unit(6, "tons"),
  41758. name: "Side",
  41759. image: {
  41760. source: "./media/characters/raijin/side.svg",
  41761. extra: 1529/613,
  41762. bottom: 337/1866
  41763. }
  41764. },
  41765. },
  41766. [
  41767. {
  41768. name: "Normal",
  41769. height: math.unit(10, "feet"),
  41770. default: true
  41771. },
  41772. ]
  41773. ))
  41774. characterMakers.push(() => makeCharacter(
  41775. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41776. {
  41777. side: {
  41778. height: math.unit(9, "feet"),
  41779. name: "Side",
  41780. image: {
  41781. source: "./media/characters/nilghais/side.svg",
  41782. extra: 1047/744,
  41783. bottom: 91/1138
  41784. }
  41785. },
  41786. head: {
  41787. height: math.unit(3.14, "feet"),
  41788. name: "Head",
  41789. image: {
  41790. source: "./media/characters/nilghais/head.svg"
  41791. }
  41792. },
  41793. mouth: {
  41794. height: math.unit(4.6, "feet"),
  41795. name: "Mouth",
  41796. image: {
  41797. source: "./media/characters/nilghais/mouth.svg"
  41798. }
  41799. },
  41800. wings: {
  41801. height: math.unit(24, "feet"),
  41802. name: "Wings",
  41803. image: {
  41804. source: "./media/characters/nilghais/wings.svg"
  41805. }
  41806. },
  41807. ass: {
  41808. height: math.unit(6.12, "feet"),
  41809. name: "Ass",
  41810. image: {
  41811. source: "./media/characters/nilghais/ass.svg"
  41812. }
  41813. },
  41814. },
  41815. [
  41816. {
  41817. name: "Normal",
  41818. height: math.unit(9, "feet"),
  41819. default: true
  41820. },
  41821. ]
  41822. ))
  41823. characterMakers.push(() => makeCharacter(
  41824. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41825. {
  41826. regular: {
  41827. height: math.unit(16 + 2/12, "feet"),
  41828. weight: math.unit(2300, "lb"),
  41829. name: "Regular",
  41830. image: {
  41831. source: "./media/characters/zolgar/regular.svg",
  41832. extra: 1246/1004,
  41833. bottom: 124/1370
  41834. }
  41835. },
  41836. boxers: {
  41837. height: math.unit(16 + 2/12, "feet"),
  41838. weight: math.unit(2300, "lb"),
  41839. name: "Boxers",
  41840. image: {
  41841. source: "./media/characters/zolgar/boxers.svg",
  41842. extra: 1246/1004,
  41843. bottom: 124/1370
  41844. }
  41845. },
  41846. armored: {
  41847. height: math.unit(16 + 2/12, "feet"),
  41848. weight: math.unit(2300, "lb"),
  41849. name: "Armored",
  41850. image: {
  41851. source: "./media/characters/zolgar/armored.svg",
  41852. extra: 1246/1004,
  41853. bottom: 124/1370
  41854. }
  41855. },
  41856. goth: {
  41857. height: math.unit(16 + 2/12, "feet"),
  41858. weight: math.unit(2300, "lb"),
  41859. name: "Goth",
  41860. image: {
  41861. source: "./media/characters/zolgar/goth.svg",
  41862. extra: 1246/1004,
  41863. bottom: 124/1370
  41864. }
  41865. },
  41866. },
  41867. [
  41868. {
  41869. name: "Shrunken Down",
  41870. height: math.unit(9 + 2/12, "feet")
  41871. },
  41872. {
  41873. name: "Normal",
  41874. height: math.unit(16 + 2/12, "feet"),
  41875. default: true
  41876. },
  41877. ]
  41878. ))
  41879. characterMakers.push(() => makeCharacter(
  41880. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41881. {
  41882. front: {
  41883. height: math.unit(6, "feet"),
  41884. weight: math.unit(168, "lb"),
  41885. name: "Front",
  41886. image: {
  41887. source: "./media/characters/luca/front.svg",
  41888. extra: 841/667,
  41889. bottom: 102/943
  41890. }
  41891. },
  41892. },
  41893. [
  41894. {
  41895. name: "Normal",
  41896. height: math.unit(6, "feet"),
  41897. default: true
  41898. },
  41899. ]
  41900. ))
  41901. characterMakers.push(() => makeCharacter(
  41902. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41903. {
  41904. side: {
  41905. height: math.unit(7 + 3/12, "feet"),
  41906. weight: math.unit(312, "lb"),
  41907. name: "Side",
  41908. image: {
  41909. source: "./media/characters/zezo/side.svg",
  41910. extra: 1192/1067,
  41911. bottom: 63/1255
  41912. }
  41913. },
  41914. },
  41915. [
  41916. {
  41917. name: "Normal",
  41918. height: math.unit(7 + 3/12, "feet"),
  41919. default: true
  41920. },
  41921. ]
  41922. ))
  41923. characterMakers.push(() => makeCharacter(
  41924. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41925. {
  41926. front: {
  41927. height: math.unit(5 + 5/12, "feet"),
  41928. weight: math.unit(170, "lb"),
  41929. name: "Front",
  41930. image: {
  41931. source: "./media/characters/mayso/front.svg",
  41932. extra: 1215/1108,
  41933. bottom: 16/1231
  41934. }
  41935. },
  41936. },
  41937. [
  41938. {
  41939. name: "Normal",
  41940. height: math.unit(5 + 5/12, "feet"),
  41941. default: true
  41942. },
  41943. ]
  41944. ))
  41945. characterMakers.push(() => makeCharacter(
  41946. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41947. {
  41948. front: {
  41949. height: math.unit(4 + 3/12, "feet"),
  41950. weight: math.unit(80, "lb"),
  41951. name: "Front",
  41952. image: {
  41953. source: "./media/characters/hess/front.svg",
  41954. extra: 1200/1123,
  41955. bottom: 16/1216
  41956. }
  41957. },
  41958. },
  41959. [
  41960. {
  41961. name: "Normal",
  41962. height: math.unit(4 + 3/12, "feet"),
  41963. default: true
  41964. },
  41965. ]
  41966. ))
  41967. characterMakers.push(() => makeCharacter(
  41968. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  41969. {
  41970. front: {
  41971. height: math.unit(1.9, "meters"),
  41972. name: "Front",
  41973. image: {
  41974. source: "./media/characters/ashgar/front.svg",
  41975. extra: 1177/1146,
  41976. bottom: 99/1276
  41977. }
  41978. },
  41979. back: {
  41980. height: math.unit(1.9, "meters"),
  41981. name: "Back",
  41982. image: {
  41983. source: "./media/characters/ashgar/back.svg",
  41984. extra: 1201/1183,
  41985. bottom: 53/1254
  41986. }
  41987. },
  41988. feral: {
  41989. height: math.unit(1.4, "meters"),
  41990. name: "Feral",
  41991. image: {
  41992. source: "./media/characters/ashgar/feral.svg",
  41993. extra: 370/345,
  41994. bottom: 45/415
  41995. }
  41996. },
  41997. },
  41998. [
  41999. {
  42000. name: "Normal",
  42001. height: math.unit(1.9, "meters"),
  42002. default: true
  42003. },
  42004. ]
  42005. ))
  42006. characterMakers.push(() => makeCharacter(
  42007. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  42008. {
  42009. regular: {
  42010. height: math.unit(6, "feet"),
  42011. weight: math.unit(220, "lb"),
  42012. name: "Regular",
  42013. image: {
  42014. source: "./media/characters/phillip/regular.svg",
  42015. extra: 1373/1277,
  42016. bottom: 75/1448
  42017. }
  42018. },
  42019. dressed: {
  42020. height: math.unit(6, "feet"),
  42021. weight: math.unit(220, "lb"),
  42022. name: "Dressed",
  42023. image: {
  42024. source: "./media/characters/phillip/dressed.svg",
  42025. extra: 1373/1277,
  42026. bottom: 75/1448
  42027. }
  42028. },
  42029. paw: {
  42030. height: math.unit(1.44, "feet"),
  42031. name: "Paw",
  42032. image: {
  42033. source: "./media/characters/phillip/paw.svg"
  42034. }
  42035. },
  42036. },
  42037. [
  42038. {
  42039. name: "Normal",
  42040. height: math.unit(6, "feet"),
  42041. default: true
  42042. },
  42043. ]
  42044. ))
  42045. characterMakers.push(() => makeCharacter(
  42046. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  42047. {
  42048. side: {
  42049. height: math.unit(42, "feet"),
  42050. name: "Side",
  42051. image: {
  42052. source: "./media/characters/uvula/side.svg",
  42053. extra: 683/586,
  42054. bottom: 60/743
  42055. }
  42056. },
  42057. front: {
  42058. height: math.unit(42, "feet"),
  42059. name: "Front",
  42060. image: {
  42061. source: "./media/characters/uvula/front.svg",
  42062. extra: 705/613,
  42063. bottom: 54/759
  42064. }
  42065. },
  42066. maw: {
  42067. height: math.unit(23.5, "feet"),
  42068. name: "Maw",
  42069. image: {
  42070. source: "./media/characters/uvula/maw.svg"
  42071. }
  42072. },
  42073. },
  42074. [
  42075. {
  42076. name: "Original Size",
  42077. height: math.unit(14, "inches")
  42078. },
  42079. {
  42080. name: "Human Size",
  42081. height: math.unit(6, "feet")
  42082. },
  42083. {
  42084. name: "Big",
  42085. height: math.unit(42, "feet"),
  42086. default: true
  42087. },
  42088. {
  42089. name: "Bigger",
  42090. height: math.unit(100, "feet")
  42091. },
  42092. ]
  42093. ))
  42094. characterMakers.push(() => makeCharacter(
  42095. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  42096. {
  42097. front: {
  42098. height: math.unit(5 + 11/12, "feet"),
  42099. name: "Front",
  42100. image: {
  42101. source: "./media/characters/lannah/front.svg",
  42102. extra: 1208/1113,
  42103. bottom: 97/1305
  42104. }
  42105. },
  42106. },
  42107. [
  42108. {
  42109. name: "Normal",
  42110. height: math.unit(5 + 11/12, "feet"),
  42111. default: true
  42112. },
  42113. ]
  42114. ))
  42115. characterMakers.push(() => makeCharacter(
  42116. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  42117. {
  42118. front: {
  42119. height: math.unit(6 + 3/12, "feet"),
  42120. weight: math.unit(3.5, "tons"),
  42121. name: "Front",
  42122. image: {
  42123. source: "./media/characters/emberflame/front.svg",
  42124. extra: 1198/672,
  42125. bottom: 82/1280
  42126. }
  42127. },
  42128. side: {
  42129. height: math.unit(6 + 3/12, "feet"),
  42130. weight: math.unit(3.5, "tons"),
  42131. name: "Side",
  42132. image: {
  42133. source: "./media/characters/emberflame/side.svg",
  42134. extra: 938/527,
  42135. bottom: 56/994
  42136. }
  42137. },
  42138. },
  42139. [
  42140. {
  42141. name: "Normal",
  42142. height: math.unit(6 + 3/12, "feet"),
  42143. default: true
  42144. },
  42145. ]
  42146. ))
  42147. characterMakers.push(() => makeCharacter(
  42148. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  42149. {
  42150. side: {
  42151. height: math.unit(17.5, "feet"),
  42152. weight: math.unit(35, "tons"),
  42153. name: "Side",
  42154. image: {
  42155. source: "./media/characters/sophie-ambrose/side.svg",
  42156. extra: 1573/1242,
  42157. bottom: 71/1644
  42158. }
  42159. },
  42160. maw: {
  42161. height: math.unit(7.4, "feet"),
  42162. name: "Maw",
  42163. image: {
  42164. source: "./media/characters/sophie-ambrose/maw.svg"
  42165. }
  42166. },
  42167. },
  42168. [
  42169. {
  42170. name: "Normal",
  42171. height: math.unit(17.5, "feet"),
  42172. default: true
  42173. },
  42174. ]
  42175. ))
  42176. characterMakers.push(() => makeCharacter(
  42177. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  42178. {
  42179. front: {
  42180. height: math.unit(280, "feet"),
  42181. weight: math.unit(550, "tons"),
  42182. name: "Front",
  42183. image: {
  42184. source: "./media/characters/king-mugi/front.svg",
  42185. extra: 1102/947,
  42186. bottom: 104/1206
  42187. }
  42188. },
  42189. },
  42190. [
  42191. {
  42192. name: "King Mugi",
  42193. height: math.unit(280, "feet"),
  42194. default: true
  42195. },
  42196. ]
  42197. ))
  42198. characterMakers.push(() => makeCharacter(
  42199. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  42200. {
  42201. front: {
  42202. height: math.unit(64, "meters"),
  42203. name: "Front",
  42204. image: {
  42205. source: "./media/characters/nova-fox/front.svg",
  42206. extra: 1310/1246,
  42207. bottom: 65/1375
  42208. }
  42209. },
  42210. },
  42211. [
  42212. {
  42213. name: "Macro",
  42214. height: math.unit(64, "meters"),
  42215. default: true
  42216. },
  42217. ]
  42218. ))
  42219. characterMakers.push(() => makeCharacter(
  42220. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  42221. {
  42222. front: {
  42223. height: math.unit(6 + 3/12, "feet"),
  42224. weight: math.unit(170, "lb"),
  42225. name: "Front",
  42226. image: {
  42227. source: "./media/characters/sam-bat/front.svg",
  42228. extra: 1601/1411,
  42229. bottom: 125/1726
  42230. }
  42231. },
  42232. back: {
  42233. height: math.unit(6 + 3/12, "feet"),
  42234. weight: math.unit(170, "lb"),
  42235. name: "Back",
  42236. image: {
  42237. source: "./media/characters/sam-bat/back.svg",
  42238. extra: 1577/1405,
  42239. bottom: 58/1635
  42240. }
  42241. },
  42242. },
  42243. [
  42244. {
  42245. name: "Normal",
  42246. height: math.unit(6 + 3/12, "feet"),
  42247. default: true
  42248. },
  42249. ]
  42250. ))
  42251. characterMakers.push(() => makeCharacter(
  42252. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  42253. {
  42254. front: {
  42255. height: math.unit(59, "feet"),
  42256. weight: math.unit(40000, "lb"),
  42257. name: "Front",
  42258. image: {
  42259. source: "./media/characters/inari/front.svg",
  42260. extra: 1884/1350,
  42261. bottom: 95/1979
  42262. }
  42263. },
  42264. },
  42265. [
  42266. {
  42267. name: "Gigantamax",
  42268. height: math.unit(59, "feet"),
  42269. default: true
  42270. },
  42271. ]
  42272. ))
  42273. characterMakers.push(() => makeCharacter(
  42274. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  42275. {
  42276. front: {
  42277. height: math.unit(5 + 8/12, "feet"),
  42278. name: "Front",
  42279. image: {
  42280. source: "./media/characters/elizabeth/front.svg",
  42281. extra: 1395/1298,
  42282. bottom: 54/1449
  42283. }
  42284. },
  42285. mouth: {
  42286. height: math.unit(1.97, "feet"),
  42287. name: "Mouth",
  42288. image: {
  42289. source: "./media/characters/elizabeth/mouth.svg"
  42290. }
  42291. },
  42292. foot: {
  42293. height: math.unit(1.17, "feet"),
  42294. name: "Foot",
  42295. image: {
  42296. source: "./media/characters/elizabeth/foot.svg"
  42297. }
  42298. },
  42299. },
  42300. [
  42301. {
  42302. name: "Normal",
  42303. height: math.unit(5 + 8/12, "feet"),
  42304. default: true
  42305. },
  42306. {
  42307. name: "Minimacro",
  42308. height: math.unit(18, "feet")
  42309. },
  42310. {
  42311. name: "Macro",
  42312. height: math.unit(180, "feet")
  42313. },
  42314. ]
  42315. ))
  42316. characterMakers.push(() => makeCharacter(
  42317. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  42318. {
  42319. front: {
  42320. height: math.unit(5 + 2/12, "feet"),
  42321. name: "Front",
  42322. image: {
  42323. source: "./media/characters/october-gossamer/front.svg",
  42324. extra: 505/454,
  42325. bottom: 7/512
  42326. }
  42327. },
  42328. back: {
  42329. height: math.unit(5 + 2/12, "feet"),
  42330. name: "Back",
  42331. image: {
  42332. source: "./media/characters/october-gossamer/back.svg",
  42333. extra: 501/454,
  42334. bottom: 11/512
  42335. }
  42336. },
  42337. },
  42338. [
  42339. {
  42340. name: "Normal",
  42341. height: math.unit(5 + 2/12, "feet"),
  42342. default: true
  42343. },
  42344. ]
  42345. ))
  42346. characterMakers.push(() => makeCharacter(
  42347. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  42348. {
  42349. front: {
  42350. height: math.unit(5, "feet"),
  42351. name: "Front",
  42352. image: {
  42353. source: "./media/characters/epiglottis/front.svg",
  42354. extra: 923/849,
  42355. bottom: 17/940
  42356. }
  42357. },
  42358. },
  42359. [
  42360. {
  42361. name: "Original Size",
  42362. height: math.unit(10, "inches")
  42363. },
  42364. {
  42365. name: "Human Size",
  42366. height: math.unit(5, "feet"),
  42367. default: true
  42368. },
  42369. {
  42370. name: "Big",
  42371. height: math.unit(25, "feet")
  42372. },
  42373. {
  42374. name: "Bigger",
  42375. height: math.unit(50, "feet")
  42376. },
  42377. {
  42378. name: "oh lawd",
  42379. height: math.unit(75, "feet")
  42380. },
  42381. ]
  42382. ))
  42383. characterMakers.push(() => makeCharacter(
  42384. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  42385. {
  42386. front: {
  42387. height: math.unit(2 + 4/12, "feet"),
  42388. weight: math.unit(60, "lb"),
  42389. name: "Front",
  42390. image: {
  42391. source: "./media/characters/lerm/front.svg",
  42392. extra: 796/790,
  42393. bottom: 79/875
  42394. }
  42395. },
  42396. },
  42397. [
  42398. {
  42399. name: "Normal",
  42400. height: math.unit(2 + 4/12, "feet"),
  42401. default: true
  42402. },
  42403. ]
  42404. ))
  42405. characterMakers.push(() => makeCharacter(
  42406. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  42407. {
  42408. front: {
  42409. height: math.unit(5.5, "feet"),
  42410. weight: math.unit(130, "lb"),
  42411. name: "Front",
  42412. image: {
  42413. source: "./media/characters/xena-nebadon/front.svg",
  42414. extra: 1828/1730,
  42415. bottom: 79/1907
  42416. }
  42417. },
  42418. },
  42419. [
  42420. {
  42421. name: "Tiny Puppy",
  42422. height: math.unit(3, "inches")
  42423. },
  42424. {
  42425. name: "Normal",
  42426. height: math.unit(5.5, "feet"),
  42427. default: true
  42428. },
  42429. {
  42430. name: "Lotta Lady",
  42431. height: math.unit(12, "feet")
  42432. },
  42433. {
  42434. name: "Pretty Big",
  42435. height: math.unit(100, "feet")
  42436. },
  42437. {
  42438. name: "Big",
  42439. height: math.unit(500, "feet")
  42440. },
  42441. {
  42442. name: "Skyscraper Toys",
  42443. height: math.unit(2500, "feet")
  42444. },
  42445. {
  42446. name: "Plane Catcher",
  42447. height: math.unit(8, "miles")
  42448. },
  42449. {
  42450. name: "Planet Toys",
  42451. height: math.unit(15, "earths")
  42452. },
  42453. {
  42454. name: "Stardust",
  42455. height: math.unit(0.25, "galaxies")
  42456. },
  42457. {
  42458. name: "Snacks",
  42459. height: math.unit(70, "universes")
  42460. },
  42461. ]
  42462. ))
  42463. characterMakers.push(() => makeCharacter(
  42464. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42465. {
  42466. front: {
  42467. height: math.unit(1.6, "meters"),
  42468. weight: math.unit(60, "kg"),
  42469. name: "Front",
  42470. image: {
  42471. source: "./media/characters/bounty/front.svg",
  42472. extra: 1426/1308,
  42473. bottom: 15/1441
  42474. }
  42475. },
  42476. back: {
  42477. height: math.unit(1.6, "meters"),
  42478. weight: math.unit(60, "kg"),
  42479. name: "Back",
  42480. image: {
  42481. source: "./media/characters/bounty/back.svg",
  42482. extra: 1417/1307,
  42483. bottom: 8/1425
  42484. }
  42485. },
  42486. },
  42487. [
  42488. {
  42489. name: "Normal",
  42490. height: math.unit(1.6, "meters"),
  42491. default: true
  42492. },
  42493. {
  42494. name: "Macro",
  42495. height: math.unit(300, "meters")
  42496. },
  42497. ]
  42498. ))
  42499. characterMakers.push(() => makeCharacter(
  42500. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42501. {
  42502. front: {
  42503. height: math.unit(2 + 8/12, "feet"),
  42504. weight: math.unit(15, "lb"),
  42505. name: "Front",
  42506. image: {
  42507. source: "./media/characters/mochi/front.svg",
  42508. extra: 1022/852,
  42509. bottom: 435/1457
  42510. }
  42511. },
  42512. back: {
  42513. height: math.unit(2 + 8/12, "feet"),
  42514. weight: math.unit(15, "lb"),
  42515. name: "Back",
  42516. image: {
  42517. source: "./media/characters/mochi/back.svg",
  42518. extra: 1335/1119,
  42519. bottom: 39/1374
  42520. }
  42521. },
  42522. bird: {
  42523. height: math.unit(2 + 8/12, "feet"),
  42524. weight: math.unit(15, "lb"),
  42525. name: "Bird",
  42526. image: {
  42527. source: "./media/characters/mochi/bird.svg",
  42528. extra: 1251/1113,
  42529. bottom: 178/1429
  42530. }
  42531. },
  42532. kaiju: {
  42533. height: math.unit(154, "feet"),
  42534. weight: math.unit(1e7, "lb"),
  42535. name: "Kaiju",
  42536. image: {
  42537. source: "./media/characters/mochi/kaiju.svg",
  42538. extra: 460/324,
  42539. bottom: 40/500
  42540. }
  42541. },
  42542. head: {
  42543. height: math.unit(1.21, "feet"),
  42544. name: "Head",
  42545. image: {
  42546. source: "./media/characters/mochi/head.svg"
  42547. }
  42548. },
  42549. alternateTail: {
  42550. height: math.unit(2 + 8/12, "feet"),
  42551. weight: math.unit(45, "lb"),
  42552. name: "Alternate Tail",
  42553. image: {
  42554. source: "./media/characters/mochi/alternate-tail.svg",
  42555. extra: 139/76,
  42556. bottom: 45/184
  42557. }
  42558. },
  42559. },
  42560. [
  42561. {
  42562. name: "Micro",
  42563. height: math.unit(2, "inches")
  42564. },
  42565. {
  42566. name: "Normal",
  42567. height: math.unit(2 + 8/12, "feet"),
  42568. default: true
  42569. },
  42570. {
  42571. name: "Macro",
  42572. height: math.unit(106, "feet")
  42573. },
  42574. ]
  42575. ))
  42576. characterMakers.push(() => makeCharacter(
  42577. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42578. {
  42579. front: {
  42580. height: math.unit(5.67, "feet"),
  42581. weight: math.unit(135, "lb"),
  42582. name: "Front",
  42583. image: {
  42584. source: "./media/characters/sarel/front.svg",
  42585. extra: 865/788,
  42586. bottom: 97/962
  42587. }
  42588. },
  42589. back: {
  42590. height: math.unit(5.67, "feet"),
  42591. weight: math.unit(135, "lb"),
  42592. name: "Back",
  42593. image: {
  42594. source: "./media/characters/sarel/back.svg",
  42595. extra: 857/777,
  42596. bottom: 32/889
  42597. }
  42598. },
  42599. chozoan: {
  42600. height: math.unit(5.67, "feet"),
  42601. weight: math.unit(135, "lb"),
  42602. name: "Chozoan",
  42603. image: {
  42604. source: "./media/characters/sarel/chozoan.svg",
  42605. extra: 865/788,
  42606. bottom: 97/962
  42607. }
  42608. },
  42609. current: {
  42610. height: math.unit(5.67, "feet"),
  42611. weight: math.unit(135, "lb"),
  42612. name: "Current",
  42613. image: {
  42614. source: "./media/characters/sarel/current.svg",
  42615. extra: 865/788,
  42616. bottom: 97/962
  42617. }
  42618. },
  42619. head: {
  42620. height: math.unit(1.77, "feet"),
  42621. name: "Head",
  42622. image: {
  42623. source: "./media/characters/sarel/head.svg"
  42624. }
  42625. },
  42626. claws: {
  42627. height: math.unit(1.8, "feet"),
  42628. name: "Claws",
  42629. image: {
  42630. source: "./media/characters/sarel/claws.svg"
  42631. }
  42632. },
  42633. clawsAlt: {
  42634. height: math.unit(1.8, "feet"),
  42635. name: "Claws-alt",
  42636. image: {
  42637. source: "./media/characters/sarel/claws-alt.svg"
  42638. }
  42639. },
  42640. },
  42641. [
  42642. {
  42643. name: "Normal",
  42644. height: math.unit(5.67, "feet"),
  42645. default: true
  42646. },
  42647. ]
  42648. ))
  42649. characterMakers.push(() => makeCharacter(
  42650. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42651. {
  42652. front: {
  42653. height: math.unit(5500, "feet"),
  42654. name: "Front",
  42655. image: {
  42656. source: "./media/characters/alyonia/front.svg",
  42657. extra: 1200/1135,
  42658. bottom: 29/1229
  42659. }
  42660. },
  42661. back: {
  42662. height: math.unit(5500, "feet"),
  42663. name: "Back",
  42664. image: {
  42665. source: "./media/characters/alyonia/back.svg",
  42666. extra: 1205/1138,
  42667. bottom: 10/1215
  42668. }
  42669. },
  42670. },
  42671. [
  42672. {
  42673. name: "Small",
  42674. height: math.unit(10, "feet")
  42675. },
  42676. {
  42677. name: "Macro",
  42678. height: math.unit(500, "feet")
  42679. },
  42680. {
  42681. name: "Mega Macro",
  42682. height: math.unit(5500, "feet"),
  42683. default: true
  42684. },
  42685. {
  42686. name: "Mega Macro+",
  42687. height: math.unit(500000, "feet")
  42688. },
  42689. {
  42690. name: "Giga Macro",
  42691. height: math.unit(3000, "miles")
  42692. },
  42693. {
  42694. name: "Tera Macro",
  42695. height: math.unit(2.8e6, "miles")
  42696. },
  42697. {
  42698. name: "Galactic",
  42699. height: math.unit(120000, "lightyears")
  42700. },
  42701. ]
  42702. ))
  42703. characterMakers.push(() => makeCharacter(
  42704. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42705. {
  42706. werewolf: {
  42707. height: math.unit(8, "feet"),
  42708. weight: math.unit(425, "lb"),
  42709. name: "Werewolf",
  42710. image: {
  42711. source: "./media/characters/autumn/werewolf.svg",
  42712. extra: 2154/2031,
  42713. bottom: 160/2314
  42714. }
  42715. },
  42716. human: {
  42717. height: math.unit(5 + 8/12, "feet"),
  42718. weight: math.unit(150, "lb"),
  42719. name: "Human",
  42720. image: {
  42721. source: "./media/characters/autumn/human.svg",
  42722. extra: 1200/1149,
  42723. bottom: 30/1230
  42724. }
  42725. },
  42726. },
  42727. [
  42728. {
  42729. name: "Normal",
  42730. height: math.unit(8, "feet"),
  42731. default: true
  42732. },
  42733. ]
  42734. ))
  42735. characterMakers.push(() => makeCharacter(
  42736. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42737. {
  42738. front: {
  42739. height: math.unit(8 + 5/12, "feet"),
  42740. weight: math.unit(825, "lb"),
  42741. name: "Front",
  42742. image: {
  42743. source: "./media/characters/cobalt-charizard/front.svg",
  42744. extra: 1268/1155,
  42745. bottom: 122/1390
  42746. }
  42747. },
  42748. side: {
  42749. height: math.unit(8 + 5/12, "feet"),
  42750. weight: math.unit(825, "lb"),
  42751. name: "Side",
  42752. image: {
  42753. source: "./media/characters/cobalt-charizard/side.svg",
  42754. extra: 1348/1257,
  42755. bottom: 58/1406
  42756. }
  42757. },
  42758. gMax: {
  42759. height: math.unit(134 + 11/12, "feet"),
  42760. name: "G-Max",
  42761. image: {
  42762. source: "./media/characters/cobalt-charizard/g-max.svg",
  42763. extra: 1835/1541,
  42764. bottom: 151/1986
  42765. }
  42766. },
  42767. },
  42768. [
  42769. {
  42770. name: "Normal",
  42771. height: math.unit(8 + 5/12, "feet"),
  42772. default: true
  42773. },
  42774. ]
  42775. ))
  42776. characterMakers.push(() => makeCharacter(
  42777. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42778. {
  42779. front: {
  42780. height: math.unit(6 + 3/12, "feet"),
  42781. weight: math.unit(210, "lb"),
  42782. name: "Front",
  42783. image: {
  42784. source: "./media/characters/stella/front.svg",
  42785. extra: 3549/3335,
  42786. bottom: 51/3600
  42787. }
  42788. },
  42789. },
  42790. [
  42791. {
  42792. name: "Normal",
  42793. height: math.unit(6 + 3/12, "feet"),
  42794. default: true
  42795. },
  42796. ]
  42797. ))
  42798. characterMakers.push(() => makeCharacter(
  42799. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  42800. {
  42801. front: {
  42802. height: math.unit(5, "feet"),
  42803. weight: math.unit(90, "lb"),
  42804. name: "Front",
  42805. image: {
  42806. source: "./media/characters/riley-bishop/front.svg",
  42807. extra: 1450/1428,
  42808. bottom: 152/1602
  42809. }
  42810. },
  42811. },
  42812. [
  42813. {
  42814. name: "Normal",
  42815. height: math.unit(5, "feet"),
  42816. default: true
  42817. },
  42818. ]
  42819. ))
  42820. characterMakers.push(() => makeCharacter(
  42821. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  42822. {
  42823. side: {
  42824. height: math.unit(8 + 2/12, "feet"),
  42825. weight: math.unit(500, "kg"),
  42826. name: "Side",
  42827. image: {
  42828. source: "./media/characters/theo-arcanine/side.svg",
  42829. extra: 1342/1074,
  42830. bottom: 111/1453
  42831. }
  42832. },
  42833. },
  42834. [
  42835. {
  42836. name: "Normal",
  42837. height: math.unit(8 + 2/12, "feet"),
  42838. default: true
  42839. },
  42840. ]
  42841. ))
  42842. characterMakers.push(() => makeCharacter(
  42843. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  42844. {
  42845. front: {
  42846. height: math.unit(4, "feet"),
  42847. name: "Front",
  42848. image: {
  42849. source: "./media/characters/kali/front.svg",
  42850. extra: 1921/1357,
  42851. bottom: 70/1991
  42852. }
  42853. },
  42854. },
  42855. [
  42856. {
  42857. name: "Normal",
  42858. height: math.unit(4, "feet"),
  42859. default: true
  42860. },
  42861. {
  42862. name: "Macro",
  42863. height: math.unit(32, "meters")
  42864. },
  42865. {
  42866. name: "Macro+",
  42867. height: math.unit(150, "meters")
  42868. },
  42869. {
  42870. name: "Megamacro",
  42871. height: math.unit(7500, "meters")
  42872. },
  42873. {
  42874. name: "Megamacro+",
  42875. height: math.unit(80, "kilometers")
  42876. },
  42877. ]
  42878. ))
  42879. characterMakers.push(() => makeCharacter(
  42880. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  42881. {
  42882. side: {
  42883. height: math.unit(5 + 11/12, "feet"),
  42884. weight: math.unit(236, "lb"),
  42885. name: "Side",
  42886. image: {
  42887. source: "./media/characters/gapp/side.svg",
  42888. extra: 775/340,
  42889. bottom: 58/833
  42890. }
  42891. },
  42892. mouth: {
  42893. height: math.unit(2.98, "feet"),
  42894. name: "Mouth",
  42895. image: {
  42896. source: "./media/characters/gapp/mouth.svg"
  42897. }
  42898. },
  42899. },
  42900. [
  42901. {
  42902. name: "Normal",
  42903. height: math.unit(5 + 1/12, "feet"),
  42904. default: true
  42905. },
  42906. ]
  42907. ))
  42908. characterMakers.push(() => makeCharacter(
  42909. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  42910. {
  42911. front: {
  42912. height: math.unit(6, "feet"),
  42913. name: "Front",
  42914. image: {
  42915. source: "./media/characters/persephone/front.svg",
  42916. extra: 1895/1717,
  42917. bottom: 96/1991
  42918. }
  42919. },
  42920. back: {
  42921. height: math.unit(6, "feet"),
  42922. name: "Back",
  42923. image: {
  42924. source: "./media/characters/persephone/back.svg",
  42925. extra: 1868/1679,
  42926. bottom: 26/1894
  42927. }
  42928. },
  42929. casual: {
  42930. height: math.unit(6, "feet"),
  42931. name: "Casual",
  42932. image: {
  42933. source: "./media/characters/persephone/casual.svg",
  42934. extra: 1713/1541,
  42935. bottom: 76/1789
  42936. }
  42937. },
  42938. },
  42939. [
  42940. {
  42941. name: "Human Size",
  42942. height: math.unit(6, "feet")
  42943. },
  42944. {
  42945. name: "Big Steppy",
  42946. height: math.unit(600, "meters"),
  42947. default: true
  42948. },
  42949. {
  42950. name: "Galaxy Brain",
  42951. height: math.unit(1, "zettameter")
  42952. },
  42953. ]
  42954. ))
  42955. characterMakers.push(() => makeCharacter(
  42956. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  42957. {
  42958. front: {
  42959. height: math.unit(1.85, "meters"),
  42960. name: "Front",
  42961. image: {
  42962. source: "./media/characters/riley-foxthing/front.svg",
  42963. extra: 1495/1354,
  42964. bottom: 122/1617
  42965. }
  42966. },
  42967. frontAlt: {
  42968. height: math.unit(1.85, "meters"),
  42969. name: "Front (Alt)",
  42970. image: {
  42971. source: "./media/characters/riley-foxthing/front-alt.svg",
  42972. extra: 1572/1389,
  42973. bottom: 116/1688
  42974. }
  42975. },
  42976. },
  42977. [
  42978. {
  42979. name: "Normal Sized",
  42980. height: math.unit(1.85, "meters"),
  42981. default: true
  42982. },
  42983. {
  42984. name: "Quite Sizable",
  42985. height: math.unit(5, "meters")
  42986. },
  42987. {
  42988. name: "Rather Large",
  42989. height: math.unit(20, "meters")
  42990. },
  42991. {
  42992. name: "Macro",
  42993. height: math.unit(450, "meters")
  42994. },
  42995. {
  42996. name: "Giga",
  42997. height: math.unit(5, "km")
  42998. },
  42999. ]
  43000. ))
  43001. characterMakers.push(() => makeCharacter(
  43002. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  43003. {
  43004. front: {
  43005. height: math.unit(6, "feet"),
  43006. weight: math.unit(200, "lb"),
  43007. name: "Front",
  43008. image: {
  43009. source: "./media/characters/blizzard/front.svg",
  43010. extra: 1136/990,
  43011. bottom: 136/1272
  43012. }
  43013. },
  43014. back: {
  43015. height: math.unit(6, "feet"),
  43016. weight: math.unit(200, "lb"),
  43017. name: "Back",
  43018. image: {
  43019. source: "./media/characters/blizzard/back.svg",
  43020. extra: 1175/1034,
  43021. bottom: 97/1272
  43022. }
  43023. },
  43024. sitting: {
  43025. height: math.unit(3.725, "feet"),
  43026. weight: math.unit(200, "lb"),
  43027. name: "Sitting",
  43028. image: {
  43029. source: "./media/characters/blizzard/sitting.svg",
  43030. extra: 581/485,
  43031. bottom: 90/671
  43032. }
  43033. },
  43034. frontWizard: {
  43035. height: math.unit(7.9, "feet"),
  43036. weight: math.unit(200, "lb"),
  43037. name: "Front (Wizard)",
  43038. image: {
  43039. source: "./media/characters/blizzard/front-wizard.svg"
  43040. }
  43041. },
  43042. backWizard: {
  43043. height: math.unit(7.9, "feet"),
  43044. weight: math.unit(200, "lb"),
  43045. name: "Back (Wizard)",
  43046. image: {
  43047. source: "./media/characters/blizzard/back-wizard.svg"
  43048. }
  43049. },
  43050. frontNsfw: {
  43051. height: math.unit(6, "feet"),
  43052. weight: math.unit(200, "lb"),
  43053. name: "Front (NSFW)",
  43054. image: {
  43055. source: "./media/characters/blizzard/front-nsfw.svg",
  43056. extra: 1136/990,
  43057. bottom: 136/1272
  43058. }
  43059. },
  43060. backNsfw: {
  43061. height: math.unit(6, "feet"),
  43062. weight: math.unit(200, "lb"),
  43063. name: "Back (NSFW)",
  43064. image: {
  43065. source: "./media/characters/blizzard/back-nsfw.svg",
  43066. extra: 1175/1034,
  43067. bottom: 97/1272
  43068. }
  43069. },
  43070. sittingNsfw: {
  43071. height: math.unit(3.725, "feet"),
  43072. weight: math.unit(200, "lb"),
  43073. name: "Sitting (NSFW)",
  43074. image: {
  43075. source: "./media/characters/blizzard/sitting-nsfw.svg",
  43076. extra: 581/485,
  43077. bottom: 90/671
  43078. }
  43079. },
  43080. wizardFrontNsfw: {
  43081. height: math.unit(7.9, "feet"),
  43082. weight: math.unit(200, "lb"),
  43083. name: "Wizard (Front, NSFW)",
  43084. image: {
  43085. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  43086. }
  43087. },
  43088. },
  43089. [
  43090. {
  43091. name: "Normal",
  43092. height: math.unit(6, "feet"),
  43093. default: true
  43094. },
  43095. ]
  43096. ))
  43097. characterMakers.push(() => makeCharacter(
  43098. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  43099. {
  43100. front: {
  43101. height: math.unit(5 + 2/12, "feet"),
  43102. name: "Front",
  43103. image: {
  43104. source: "./media/characters/lumi/front.svg",
  43105. extra: 1328/1268,
  43106. bottom: 103/1431
  43107. }
  43108. },
  43109. back: {
  43110. height: math.unit(5 + 2/12, "feet"),
  43111. name: "Back",
  43112. image: {
  43113. source: "./media/characters/lumi/back.svg",
  43114. extra: 1381/1327,
  43115. bottom: 43/1424
  43116. }
  43117. },
  43118. },
  43119. [
  43120. {
  43121. name: "Normal",
  43122. height: math.unit(5 + 2/12, "feet"),
  43123. default: true
  43124. },
  43125. ]
  43126. ))
  43127. characterMakers.push(() => makeCharacter(
  43128. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  43129. {
  43130. front: {
  43131. height: math.unit(5 + 9/12, "feet"),
  43132. name: "Front",
  43133. image: {
  43134. source: "./media/characters/aliya-cotton/front.svg",
  43135. extra: 577/564,
  43136. bottom: 29/606
  43137. }
  43138. },
  43139. },
  43140. [
  43141. {
  43142. name: "Normal",
  43143. height: math.unit(5 + 9/12, "feet"),
  43144. default: true
  43145. },
  43146. ]
  43147. ))
  43148. characterMakers.push(() => makeCharacter(
  43149. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  43150. {
  43151. front: {
  43152. height: math.unit(2.7, "meters"),
  43153. weight: math.unit(25000, "lb"),
  43154. name: "Front",
  43155. image: {
  43156. source: "./media/characters/noah-luxray/front.svg",
  43157. extra: 1644/825,
  43158. bottom: 339/1983
  43159. }
  43160. },
  43161. side: {
  43162. height: math.unit(2.97, "meters"),
  43163. weight: math.unit(25000, "lb"),
  43164. name: "Side",
  43165. image: {
  43166. source: "./media/characters/noah-luxray/side.svg",
  43167. extra: 1319/650,
  43168. bottom: 163/1482
  43169. }
  43170. },
  43171. dick: {
  43172. height: math.unit(7.4, "feet"),
  43173. weight: math.unit(2500, "lb"),
  43174. name: "Dick",
  43175. image: {
  43176. source: "./media/characters/noah-luxray/dick.svg"
  43177. }
  43178. },
  43179. dickAlt: {
  43180. height: math.unit(10.83, "feet"),
  43181. weight: math.unit(2500, "lb"),
  43182. name: "Dick-alt",
  43183. image: {
  43184. source: "./media/characters/noah-luxray/dick-alt.svg"
  43185. }
  43186. },
  43187. },
  43188. [
  43189. {
  43190. name: "BIG",
  43191. height: math.unit(2.7, "meters"),
  43192. default: true
  43193. },
  43194. ]
  43195. ))
  43196. characterMakers.push(() => makeCharacter(
  43197. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  43198. {
  43199. standing: {
  43200. height: math.unit(183, "cm"),
  43201. weight: math.unit(68, "kg"),
  43202. name: "Standing",
  43203. image: {
  43204. source: "./media/characters/arion/standing.svg",
  43205. extra: 1869/1807,
  43206. bottom: 93/1962
  43207. }
  43208. },
  43209. reclining: {
  43210. height: math.unit(70.5, "cm"),
  43211. weight: math.unit(68, "lb"),
  43212. name: "Reclining",
  43213. image: {
  43214. source: "./media/characters/arion/reclining.svg",
  43215. extra: 937/870,
  43216. bottom: 63/1000
  43217. }
  43218. },
  43219. },
  43220. [
  43221. {
  43222. name: "Colossus Size, Low",
  43223. height: math.unit(33, "meters"),
  43224. default: true
  43225. },
  43226. {
  43227. name: "Colossus Size, Mid",
  43228. height: math.unit(52, "meters")
  43229. },
  43230. {
  43231. name: "Colossus Size, High",
  43232. height: math.unit(60, "meters")
  43233. },
  43234. {
  43235. name: "Titan Size, Low",
  43236. height: math.unit(91, "meters"),
  43237. },
  43238. {
  43239. name: "Titan Size, Mid",
  43240. height: math.unit(122, "meters")
  43241. },
  43242. {
  43243. name: "Titan Size, High",
  43244. height: math.unit(162, "meters")
  43245. },
  43246. ]
  43247. ))
  43248. characterMakers.push(() => makeCharacter(
  43249. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  43250. {
  43251. front: {
  43252. height: math.unit(53, "meters"),
  43253. name: "Front",
  43254. image: {
  43255. source: "./media/characters/stellar-marbey/front.svg",
  43256. extra: 1913/1805,
  43257. bottom: 92/2005
  43258. }
  43259. },
  43260. back: {
  43261. height: math.unit(53, "meters"),
  43262. name: "Back",
  43263. image: {
  43264. source: "./media/characters/stellar-marbey/back.svg",
  43265. extra: 1960/1851,
  43266. bottom: 28/1988
  43267. }
  43268. },
  43269. mouth: {
  43270. height: math.unit(3.5, "meters"),
  43271. name: "Mouth",
  43272. image: {
  43273. source: "./media/characters/stellar-marbey/mouth.svg"
  43274. }
  43275. },
  43276. },
  43277. [
  43278. {
  43279. name: "Macro",
  43280. height: math.unit(53, "meters"),
  43281. default: true
  43282. },
  43283. ]
  43284. ))
  43285. characterMakers.push(() => makeCharacter(
  43286. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  43287. {
  43288. front: {
  43289. height: math.unit(8 + 1/12, "feet"),
  43290. weight: math.unit(233, "lb"),
  43291. name: "Front",
  43292. image: {
  43293. source: "./media/characters/matsu/front.svg",
  43294. extra: 832/772,
  43295. bottom: 40/872
  43296. }
  43297. },
  43298. back: {
  43299. height: math.unit(8 + 1/12, "feet"),
  43300. weight: math.unit(233, "lb"),
  43301. name: "Back",
  43302. image: {
  43303. source: "./media/characters/matsu/back.svg",
  43304. extra: 839/780,
  43305. bottom: 47/886
  43306. }
  43307. },
  43308. },
  43309. [
  43310. {
  43311. name: "Normal",
  43312. height: math.unit(8 + 1/12, "feet"),
  43313. default: true
  43314. },
  43315. ]
  43316. ))
  43317. characterMakers.push(() => makeCharacter(
  43318. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  43319. {
  43320. front: {
  43321. height: math.unit(4, "feet"),
  43322. weight: math.unit(148, "lb"),
  43323. name: "Front",
  43324. image: {
  43325. source: "./media/characters/thiz/front.svg",
  43326. extra: 1913/1748,
  43327. bottom: 62/1975
  43328. }
  43329. },
  43330. },
  43331. [
  43332. {
  43333. name: "Normal",
  43334. height: math.unit(4, "feet"),
  43335. default: true
  43336. },
  43337. ]
  43338. ))
  43339. characterMakers.push(() => makeCharacter(
  43340. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  43341. {
  43342. front: {
  43343. height: math.unit(7 + 6/12, "feet"),
  43344. weight: math.unit(267, "lb"),
  43345. name: "Front",
  43346. image: {
  43347. source: "./media/characters/marcel/front.svg",
  43348. extra: 1221/1096,
  43349. bottom: 76/1297
  43350. }
  43351. },
  43352. },
  43353. [
  43354. {
  43355. name: "Normal",
  43356. height: math.unit(7 + 6/12, "feet"),
  43357. default: true
  43358. },
  43359. ]
  43360. ))
  43361. characterMakers.push(() => makeCharacter(
  43362. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  43363. {
  43364. side: {
  43365. height: math.unit(42, "meters"),
  43366. name: "Side",
  43367. image: {
  43368. source: "./media/characters/flake/side.svg",
  43369. extra: 1525/1306,
  43370. bottom: 209/1734
  43371. }
  43372. },
  43373. },
  43374. [
  43375. {
  43376. name: "Normal",
  43377. height: math.unit(42, "meters"),
  43378. default: true
  43379. },
  43380. ]
  43381. ))
  43382. characterMakers.push(() => makeCharacter(
  43383. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  43384. {
  43385. dressed: {
  43386. height: math.unit(6 + 4/12, "feet"),
  43387. weight: math.unit(520, "lb"),
  43388. name: "Dressed",
  43389. image: {
  43390. source: "./media/characters/someonne/dressed.svg",
  43391. extra: 1020/1010,
  43392. bottom: 178/1198
  43393. }
  43394. },
  43395. undressed: {
  43396. height: math.unit(6 + 4/12, "feet"),
  43397. weight: math.unit(520, "lb"),
  43398. name: "Undressed",
  43399. image: {
  43400. source: "./media/characters/someonne/undressed.svg",
  43401. extra: 1019/1014,
  43402. bottom: 169/1188
  43403. }
  43404. },
  43405. },
  43406. [
  43407. {
  43408. name: "Normal",
  43409. height: math.unit(6 + 4/12, "feet"),
  43410. default: true
  43411. },
  43412. ]
  43413. ))
  43414. characterMakers.push(() => makeCharacter(
  43415. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  43416. {
  43417. front: {
  43418. height: math.unit(3, "feet"),
  43419. weight: math.unit(30, "lb"),
  43420. name: "Front",
  43421. image: {
  43422. source: "./media/characters/till/front.svg",
  43423. extra: 892/823,
  43424. bottom: 55/947
  43425. }
  43426. },
  43427. },
  43428. [
  43429. {
  43430. name: "Normal",
  43431. height: math.unit(3, "feet"),
  43432. default: true
  43433. },
  43434. ]
  43435. ))
  43436. characterMakers.push(() => makeCharacter(
  43437. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  43438. {
  43439. front: {
  43440. height: math.unit(9 + 8/12, "feet"),
  43441. weight: math.unit(800, "lb"),
  43442. name: "Front",
  43443. image: {
  43444. source: "./media/characters/sydney-heki/front.svg",
  43445. extra: 1360/1300,
  43446. bottom: 22/1382
  43447. }
  43448. },
  43449. back: {
  43450. height: math.unit(9 + 8/12, "feet"),
  43451. weight: math.unit(800, "lb"),
  43452. name: "Back",
  43453. image: {
  43454. source: "./media/characters/sydney-heki/back.svg",
  43455. extra: 1356/1293,
  43456. bottom: 12/1368
  43457. }
  43458. },
  43459. frontDressed: {
  43460. height: math.unit(9 + 8/12, "feet"),
  43461. weight: math.unit(800, "lb"),
  43462. name: "Front-dressed",
  43463. image: {
  43464. source: "./media/characters/sydney-heki/front-dressed.svg",
  43465. extra: 1360/1300,
  43466. bottom: 22/1382
  43467. }
  43468. },
  43469. },
  43470. [
  43471. {
  43472. name: "Normal",
  43473. height: math.unit(9 + 8/12, "feet"),
  43474. default: true
  43475. },
  43476. {
  43477. name: "Macro",
  43478. height: math.unit(500, "feet")
  43479. },
  43480. {
  43481. name: "Megamacro",
  43482. height: math.unit(3.6, "miles")
  43483. },
  43484. ]
  43485. ))
  43486. characterMakers.push(() => makeCharacter(
  43487. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43488. {
  43489. front: {
  43490. height: math.unit(200, "cm"),
  43491. weight: math.unit(250, "lb"),
  43492. name: "Front",
  43493. image: {
  43494. source: "./media/characters/fowler-karlsson/front.svg",
  43495. extra: 897/845,
  43496. bottom: 123/1020
  43497. }
  43498. },
  43499. back: {
  43500. height: math.unit(200, "cm"),
  43501. weight: math.unit(250, "lb"),
  43502. name: "Back",
  43503. image: {
  43504. source: "./media/characters/fowler-karlsson/back.svg",
  43505. extra: 999/944,
  43506. bottom: 26/1025
  43507. }
  43508. },
  43509. dick: {
  43510. height: math.unit(1.92, "feet"),
  43511. weight: math.unit(150, "lb"),
  43512. name: "Dick",
  43513. image: {
  43514. source: "./media/characters/fowler-karlsson/dick.svg"
  43515. }
  43516. },
  43517. },
  43518. [
  43519. {
  43520. name: "Normal",
  43521. height: math.unit(200, "cm"),
  43522. default: true
  43523. },
  43524. {
  43525. name: "Smaller Macro",
  43526. height: math.unit(90, "m")
  43527. },
  43528. {
  43529. name: "Macro",
  43530. height: math.unit(150, "m")
  43531. },
  43532. {
  43533. name: "Bigger Macro",
  43534. height: math.unit(300, "m")
  43535. },
  43536. ]
  43537. ))
  43538. characterMakers.push(() => makeCharacter(
  43539. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43540. {
  43541. side: {
  43542. height: math.unit(8 + 2/12, "feet"),
  43543. weight: math.unit(1, "tonne"),
  43544. name: "Side",
  43545. image: {
  43546. source: "./media/characters/rylide/side.svg",
  43547. extra: 1318/1034,
  43548. bottom: 106/1424
  43549. }
  43550. },
  43551. sitting: {
  43552. height: math.unit(303, "cm"),
  43553. weight: math.unit(1, "tonne"),
  43554. name: "Sitting",
  43555. image: {
  43556. source: "./media/characters/rylide/sitting.svg",
  43557. extra: 1303/1103,
  43558. bottom: 36/1339
  43559. }
  43560. },
  43561. },
  43562. [
  43563. {
  43564. name: "Normal",
  43565. height: math.unit(8 + 2/12, "feet"),
  43566. default: true
  43567. },
  43568. ]
  43569. ))
  43570. characterMakers.push(() => makeCharacter(
  43571. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43572. {
  43573. front: {
  43574. height: math.unit(5 + 10/12, "feet"),
  43575. weight: math.unit(160, "lb"),
  43576. name: "Front",
  43577. image: {
  43578. source: "./media/characters/pudask/front.svg",
  43579. extra: 1616/1590,
  43580. bottom: 161/1777
  43581. }
  43582. },
  43583. },
  43584. [
  43585. {
  43586. name: "Ferret Height",
  43587. height: math.unit(2 + 5/12, "feet")
  43588. },
  43589. {
  43590. name: "Canon Height",
  43591. height: math.unit(5 + 10/12, "feet"),
  43592. default: true
  43593. },
  43594. ]
  43595. ))
  43596. characterMakers.push(() => makeCharacter(
  43597. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43598. {
  43599. front: {
  43600. height: math.unit(3 + 6/12, "feet"),
  43601. weight: math.unit(60, "lb"),
  43602. name: "Front",
  43603. image: {
  43604. source: "./media/characters/ramita/front.svg",
  43605. extra: 1402/1232,
  43606. bottom: 62/1464
  43607. }
  43608. },
  43609. dressed: {
  43610. height: math.unit(3 + 6/12, "feet"),
  43611. weight: math.unit(60, "lb"),
  43612. name: "Dressed",
  43613. image: {
  43614. source: "./media/characters/ramita/dressed.svg",
  43615. extra: 1534/1249,
  43616. bottom: 50/1584
  43617. }
  43618. },
  43619. },
  43620. [
  43621. {
  43622. name: "Normal",
  43623. height: math.unit(3 + 6/12, "feet"),
  43624. default: true
  43625. },
  43626. ]
  43627. ))
  43628. characterMakers.push(() => makeCharacter(
  43629. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43630. {
  43631. front: {
  43632. height: math.unit(8, "feet"),
  43633. name: "Front",
  43634. image: {
  43635. source: "./media/characters/ark/front.svg",
  43636. extra: 772/693,
  43637. bottom: 45/817
  43638. }
  43639. },
  43640. },
  43641. [
  43642. {
  43643. name: "Normal",
  43644. height: math.unit(8, "feet"),
  43645. default: true
  43646. },
  43647. ]
  43648. ))
  43649. characterMakers.push(() => makeCharacter(
  43650. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43651. {
  43652. front: {
  43653. height: math.unit(6, "feet"),
  43654. weight: math.unit(250, "lb"),
  43655. volume: math.unit(5/8, "gallons"),
  43656. name: "Front",
  43657. image: {
  43658. source: "./media/characters/ludwig-horn/front.svg",
  43659. extra: 1782/1635,
  43660. bottom: 96/1878
  43661. }
  43662. },
  43663. back: {
  43664. height: math.unit(6, "feet"),
  43665. weight: math.unit(250, "lb"),
  43666. volume: math.unit(5/8, "gallons"),
  43667. name: "Back",
  43668. image: {
  43669. source: "./media/characters/ludwig-horn/back.svg",
  43670. extra: 1874/1729,
  43671. bottom: 27/1901
  43672. }
  43673. },
  43674. dick: {
  43675. height: math.unit(1.05, "feet"),
  43676. weight: math.unit(15, "lb"),
  43677. volume: math.unit(5/8, "gallons"),
  43678. name: "Dick",
  43679. image: {
  43680. source: "./media/characters/ludwig-horn/dick.svg"
  43681. }
  43682. },
  43683. },
  43684. [
  43685. {
  43686. name: "Small",
  43687. height: math.unit(6, "feet")
  43688. },
  43689. {
  43690. name: "Typical",
  43691. height: math.unit(12, "feet"),
  43692. default: true
  43693. },
  43694. {
  43695. name: "Building",
  43696. height: math.unit(80, "feet")
  43697. },
  43698. {
  43699. name: "Town",
  43700. height: math.unit(800, "feet")
  43701. },
  43702. {
  43703. name: "Kingdom",
  43704. height: math.unit(80000, "feet")
  43705. },
  43706. {
  43707. name: "Planet",
  43708. height: math.unit(8000000, "feet")
  43709. },
  43710. {
  43711. name: "Universe",
  43712. height: math.unit(8000000000, "feet")
  43713. },
  43714. {
  43715. name: "Transcended",
  43716. height: math.unit(8e27, "feet")
  43717. },
  43718. ]
  43719. ))
  43720. characterMakers.push(() => makeCharacter(
  43721. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  43722. {
  43723. front: {
  43724. height: math.unit(5, "feet"),
  43725. weight: math.unit(50, "kg"),
  43726. name: "Front",
  43727. image: {
  43728. source: "./media/characters/biot-avery/front.svg",
  43729. extra: 1295/1232,
  43730. bottom: 86/1381
  43731. }
  43732. },
  43733. },
  43734. [
  43735. {
  43736. name: "Normal",
  43737. height: math.unit(5, "feet"),
  43738. default: true
  43739. },
  43740. ]
  43741. ))
  43742. characterMakers.push(() => makeCharacter(
  43743. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  43744. {
  43745. front: {
  43746. height: math.unit(6, "feet"),
  43747. name: "Front",
  43748. image: {
  43749. source: "./media/characters/kitsune-kiro/front.svg",
  43750. extra: 1270/1158,
  43751. bottom: 42/1312
  43752. }
  43753. },
  43754. frontAlt: {
  43755. height: math.unit(6, "feet"),
  43756. name: "Front-alt",
  43757. image: {
  43758. source: "./media/characters/kitsune-kiro/front-alt.svg",
  43759. extra: 1130/1081,
  43760. bottom: 36/1166
  43761. }
  43762. },
  43763. },
  43764. [
  43765. {
  43766. name: "Smol",
  43767. height: math.unit(3, "feet")
  43768. },
  43769. {
  43770. name: "Normal",
  43771. height: math.unit(6, "feet"),
  43772. default: true
  43773. },
  43774. ]
  43775. ))
  43776. characterMakers.push(() => makeCharacter(
  43777. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  43778. {
  43779. front: {
  43780. height: math.unit(6, "feet"),
  43781. weight: math.unit(125, "lb"),
  43782. name: "Front",
  43783. image: {
  43784. source: "./media/characters/jack-thatcher/front.svg",
  43785. extra: 1474/1370,
  43786. bottom: 26/1500
  43787. }
  43788. },
  43789. back: {
  43790. height: math.unit(6, "feet"),
  43791. weight: math.unit(125, "lb"),
  43792. name: "Back",
  43793. image: {
  43794. source: "./media/characters/jack-thatcher/back.svg",
  43795. extra: 1489/1384,
  43796. bottom: 18/1507
  43797. }
  43798. },
  43799. },
  43800. [
  43801. {
  43802. name: "Normal",
  43803. height: math.unit(6, "feet"),
  43804. default: true
  43805. },
  43806. {
  43807. name: "Macro",
  43808. height: math.unit(75, "feet")
  43809. },
  43810. {
  43811. name: "Macro-er",
  43812. height: math.unit(250, "feet")
  43813. },
  43814. ]
  43815. ))
  43816. characterMakers.push(() => makeCharacter(
  43817. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  43818. {
  43819. front: {
  43820. height: math.unit(7, "feet"),
  43821. weight: math.unit(110, "kg"),
  43822. name: "Front",
  43823. image: {
  43824. source: "./media/characters/max-hyper/front.svg",
  43825. extra: 1969/1881,
  43826. bottom: 49/2018
  43827. }
  43828. },
  43829. },
  43830. [
  43831. {
  43832. name: "Normal",
  43833. height: math.unit(7, "feet"),
  43834. default: true
  43835. },
  43836. ]
  43837. ))
  43838. characterMakers.push(() => makeCharacter(
  43839. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  43840. {
  43841. front: {
  43842. height: math.unit(5 + 5/12, "feet"),
  43843. weight: math.unit(160, "lb"),
  43844. name: "Front",
  43845. image: {
  43846. source: "./media/characters/spook/front.svg",
  43847. extra: 794/791,
  43848. bottom: 54/848
  43849. }
  43850. },
  43851. back: {
  43852. height: math.unit(5 + 5/12, "feet"),
  43853. weight: math.unit(160, "lb"),
  43854. name: "Back",
  43855. image: {
  43856. source: "./media/characters/spook/back.svg",
  43857. extra: 812/798,
  43858. bottom: 32/844
  43859. }
  43860. },
  43861. },
  43862. [
  43863. {
  43864. name: "Normal",
  43865. height: math.unit(5 + 5/12, "feet"),
  43866. default: true
  43867. },
  43868. ]
  43869. ))
  43870. characterMakers.push(() => makeCharacter(
  43871. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  43872. {
  43873. front: {
  43874. height: math.unit(18, "feet"),
  43875. name: "Front",
  43876. image: {
  43877. source: "./media/characters/xeaduulix/front.svg",
  43878. extra: 1380/1166,
  43879. bottom: 110/1490
  43880. }
  43881. },
  43882. back: {
  43883. height: math.unit(18, "feet"),
  43884. name: "Back",
  43885. image: {
  43886. source: "./media/characters/xeaduulix/back.svg",
  43887. extra: 1592/1170,
  43888. bottom: 128/1720
  43889. }
  43890. },
  43891. frontNsfw: {
  43892. height: math.unit(18, "feet"),
  43893. name: "Front (NSFW)",
  43894. image: {
  43895. source: "./media/characters/xeaduulix/front-nsfw.svg",
  43896. extra: 1380/1166,
  43897. bottom: 110/1490
  43898. }
  43899. },
  43900. backNsfw: {
  43901. height: math.unit(18, "feet"),
  43902. name: "Back (NSFW)",
  43903. image: {
  43904. source: "./media/characters/xeaduulix/back-nsfw.svg",
  43905. extra: 1592/1170,
  43906. bottom: 128/1720
  43907. }
  43908. },
  43909. },
  43910. [
  43911. {
  43912. name: "Normal",
  43913. height: math.unit(18, "feet"),
  43914. default: true
  43915. },
  43916. ]
  43917. ))
  43918. characterMakers.push(() => makeCharacter(
  43919. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  43920. {
  43921. spreadWings: {
  43922. height: math.unit(20, "feet"),
  43923. name: "Spread Wings",
  43924. image: {
  43925. source: "./media/characters/fledge/spread-wings.svg",
  43926. extra: 693/635,
  43927. bottom: 26/719
  43928. }
  43929. },
  43930. front: {
  43931. height: math.unit(20, "feet"),
  43932. name: "Front",
  43933. image: {
  43934. source: "./media/characters/fledge/front.svg",
  43935. extra: 684/637,
  43936. bottom: 18/702
  43937. }
  43938. },
  43939. frontAlt: {
  43940. height: math.unit(20, "feet"),
  43941. name: "Front (Alt)",
  43942. image: {
  43943. source: "./media/characters/fledge/front-alt.svg",
  43944. extra: 708/664,
  43945. bottom: 13/721
  43946. }
  43947. },
  43948. back: {
  43949. height: math.unit(20, "feet"),
  43950. name: "Back",
  43951. image: {
  43952. source: "./media/characters/fledge/back.svg",
  43953. extra: 718/634,
  43954. bottom: 22/740
  43955. }
  43956. },
  43957. head: {
  43958. height: math.unit(5.55, "feet"),
  43959. name: "Head",
  43960. image: {
  43961. source: "./media/characters/fledge/head.svg"
  43962. }
  43963. },
  43964. headAlt: {
  43965. height: math.unit(5.1, "feet"),
  43966. name: "Head (Alt)",
  43967. image: {
  43968. source: "./media/characters/fledge/head-alt.svg"
  43969. }
  43970. },
  43971. },
  43972. [
  43973. {
  43974. name: "Small",
  43975. height: math.unit(6 + 2/12, "feet")
  43976. },
  43977. {
  43978. name: "Big",
  43979. height: math.unit(20, "feet"),
  43980. default: true
  43981. },
  43982. {
  43983. name: "Giant",
  43984. height: math.unit(100, "feet")
  43985. },
  43986. {
  43987. name: "Macro",
  43988. height: math.unit(200, "feet")
  43989. },
  43990. ]
  43991. ))
  43992. characterMakers.push(() => makeCharacter(
  43993. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  43994. {
  43995. front: {
  43996. height: math.unit(1, "meter"),
  43997. name: "Front",
  43998. image: {
  43999. source: "./media/characters/atlas-morenai/front.svg",
  44000. extra: 1275/1043,
  44001. bottom: 19/1294
  44002. }
  44003. },
  44004. back: {
  44005. height: math.unit(1, "meter"),
  44006. name: "Back",
  44007. image: {
  44008. source: "./media/characters/atlas-morenai/back.svg",
  44009. extra: 1141/1001,
  44010. bottom: 25/1166
  44011. }
  44012. },
  44013. },
  44014. [
  44015. {
  44016. name: "Normal",
  44017. height: math.unit(1, "meter"),
  44018. default: true
  44019. },
  44020. {
  44021. name: "Magic-Infused",
  44022. height: math.unit(5, "meters")
  44023. },
  44024. ]
  44025. ))
  44026. characterMakers.push(() => makeCharacter(
  44027. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  44028. {
  44029. front: {
  44030. height: math.unit(5, "meters"),
  44031. name: "Front",
  44032. image: {
  44033. source: "./media/characters/cintia/front.svg",
  44034. extra: 1312/1228,
  44035. bottom: 38/1350
  44036. }
  44037. },
  44038. back: {
  44039. height: math.unit(5, "meters"),
  44040. name: "Back",
  44041. image: {
  44042. source: "./media/characters/cintia/back.svg",
  44043. extra: 1260/1166,
  44044. bottom: 98/1358
  44045. }
  44046. },
  44047. frontDick: {
  44048. height: math.unit(5, "meters"),
  44049. name: "Front (Dick)",
  44050. image: {
  44051. source: "./media/characters/cintia/front-dick.svg",
  44052. extra: 1312/1228,
  44053. bottom: 38/1350
  44054. }
  44055. },
  44056. backDick: {
  44057. height: math.unit(5, "meters"),
  44058. name: "Back (Dick)",
  44059. image: {
  44060. source: "./media/characters/cintia/back-dick.svg",
  44061. extra: 1260/1166,
  44062. bottom: 98/1358
  44063. }
  44064. },
  44065. bust: {
  44066. height: math.unit(1.97, "meters"),
  44067. name: "Bust",
  44068. image: {
  44069. source: "./media/characters/cintia/bust.svg",
  44070. extra: 617/565,
  44071. bottom: 0/617
  44072. }
  44073. },
  44074. },
  44075. [
  44076. {
  44077. name: "Normal",
  44078. height: math.unit(5, "meters"),
  44079. default: true
  44080. },
  44081. ]
  44082. ))
  44083. characterMakers.push(() => makeCharacter(
  44084. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  44085. {
  44086. side: {
  44087. height: math.unit(100, "feet"),
  44088. name: "Side",
  44089. image: {
  44090. source: "./media/characters/denora/side.svg",
  44091. extra: 875/803,
  44092. bottom: 9/884
  44093. }
  44094. },
  44095. },
  44096. [
  44097. {
  44098. name: "Standard",
  44099. height: math.unit(100, "feet"),
  44100. default: true
  44101. },
  44102. {
  44103. name: "Grand",
  44104. height: math.unit(1000, "feet")
  44105. },
  44106. {
  44107. name: "Conquering",
  44108. height: math.unit(10000, "feet")
  44109. },
  44110. ]
  44111. ))
  44112. characterMakers.push(() => makeCharacter(
  44113. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  44114. {
  44115. dressed: {
  44116. height: math.unit(8 + 5/12, "feet"),
  44117. weight: math.unit(700, "lb"),
  44118. name: "Dressed",
  44119. image: {
  44120. source: "./media/characters/kiva/dressed.svg",
  44121. extra: 1102/1055,
  44122. bottom: 60/1162
  44123. }
  44124. },
  44125. nude: {
  44126. height: math.unit(8 + 5/12, "feet"),
  44127. weight: math.unit(700, "lb"),
  44128. name: "Nude",
  44129. image: {
  44130. source: "./media/characters/kiva/nude.svg",
  44131. extra: 1102/1055,
  44132. bottom: 60/1162
  44133. }
  44134. },
  44135. },
  44136. [
  44137. {
  44138. name: "Base Height",
  44139. height: math.unit(8 + 5/12, "feet"),
  44140. default: true
  44141. },
  44142. {
  44143. name: "Macro",
  44144. height: math.unit(100, "feet")
  44145. },
  44146. {
  44147. name: "Max",
  44148. height: math.unit(3280, "feet")
  44149. },
  44150. ]
  44151. ))
  44152. characterMakers.push(() => makeCharacter(
  44153. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  44154. {
  44155. front: {
  44156. height: math.unit(6 + 8/12, "feet"),
  44157. weight: math.unit(250, "lb"),
  44158. name: "Front",
  44159. image: {
  44160. source: "./media/characters/ztragon/front.svg",
  44161. extra: 1825/1684,
  44162. bottom: 98/1923
  44163. }
  44164. },
  44165. },
  44166. [
  44167. {
  44168. name: "Normal",
  44169. height: math.unit(6 + 8/12, "feet"),
  44170. default: true
  44171. },
  44172. {
  44173. name: "Macro",
  44174. height: math.unit(80, "feet")
  44175. },
  44176. ]
  44177. ))
  44178. characterMakers.push(() => makeCharacter(
  44179. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  44180. {
  44181. front: {
  44182. height: math.unit(10.4, "feet"),
  44183. weight: math.unit(2, "tons"),
  44184. name: "Front",
  44185. image: {
  44186. source: "./media/characters/yesenia/front.svg",
  44187. extra: 1479/1474,
  44188. bottom: 233/1712
  44189. }
  44190. },
  44191. },
  44192. [
  44193. {
  44194. name: "Normal",
  44195. height: math.unit(10.4, "feet"),
  44196. default: true
  44197. },
  44198. ]
  44199. ))
  44200. characterMakers.push(() => makeCharacter(
  44201. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  44202. {
  44203. normal: {
  44204. height: math.unit(6 + 1/12, "feet"),
  44205. weight: math.unit(180, "lb"),
  44206. name: "Normal",
  44207. image: {
  44208. source: "./media/characters/leanne-lycheborne/normal.svg",
  44209. extra: 1748/1660,
  44210. bottom: 98/1846
  44211. }
  44212. },
  44213. were: {
  44214. height: math.unit(12, "feet"),
  44215. weight: math.unit(1600, "lb"),
  44216. name: "Were",
  44217. image: {
  44218. source: "./media/characters/leanne-lycheborne/were.svg",
  44219. extra: 1485/1432,
  44220. bottom: 66/1551
  44221. }
  44222. },
  44223. },
  44224. [
  44225. {
  44226. name: "Normal",
  44227. height: math.unit(6 + 1/12, "feet"),
  44228. default: true
  44229. },
  44230. ]
  44231. ))
  44232. characterMakers.push(() => makeCharacter(
  44233. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  44234. {
  44235. side: {
  44236. height: math.unit(13, "feet"),
  44237. name: "Side",
  44238. image: {
  44239. source: "./media/characters/kira-tyler/side.svg",
  44240. extra: 693/393,
  44241. bottom: 58/751
  44242. }
  44243. },
  44244. },
  44245. [
  44246. {
  44247. name: "Normal",
  44248. height: math.unit(13, "feet"),
  44249. default: true
  44250. },
  44251. ]
  44252. ))
  44253. characterMakers.push(() => makeCharacter(
  44254. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  44255. {
  44256. front: {
  44257. height: math.unit(10.3, "feet"),
  44258. weight: math.unit(150, "lb"),
  44259. name: "Front",
  44260. image: {
  44261. source: "./media/characters/blaze/front.svg",
  44262. extra: 1378/1286,
  44263. bottom: 172/1550
  44264. }
  44265. },
  44266. },
  44267. [
  44268. {
  44269. name: "Normal",
  44270. height: math.unit(10.3, "feet"),
  44271. default: true
  44272. },
  44273. ]
  44274. ))
  44275. characterMakers.push(() => makeCharacter(
  44276. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  44277. {
  44278. side: {
  44279. height: math.unit(2, "meters"),
  44280. weight: math.unit(400, "kg"),
  44281. name: "Side",
  44282. image: {
  44283. source: "./media/characters/anu/side.svg",
  44284. extra: 506/394,
  44285. bottom: 18/524
  44286. }
  44287. },
  44288. },
  44289. [
  44290. {
  44291. name: "Humanoid",
  44292. height: math.unit(2, "meters")
  44293. },
  44294. {
  44295. name: "Normal",
  44296. height: math.unit(5, "meters"),
  44297. default: true
  44298. },
  44299. ]
  44300. ))
  44301. characterMakers.push(() => makeCharacter(
  44302. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  44303. {
  44304. front: {
  44305. height: math.unit(5 + 5/12, "feet"),
  44306. weight: math.unit(170, "lb"),
  44307. name: "Front",
  44308. image: {
  44309. source: "./media/characters/synx-the-lynx/front.svg",
  44310. extra: 1893/1745,
  44311. bottom: 17/1910
  44312. }
  44313. },
  44314. side: {
  44315. height: math.unit(5 + 5/12, "feet"),
  44316. weight: math.unit(170, "lb"),
  44317. name: "Side",
  44318. image: {
  44319. source: "./media/characters/synx-the-lynx/side.svg",
  44320. extra: 1884/1740,
  44321. bottom: 39/1923
  44322. }
  44323. },
  44324. back: {
  44325. height: math.unit(5 + 5/12, "feet"),
  44326. weight: math.unit(170, "lb"),
  44327. name: "Back",
  44328. image: {
  44329. source: "./media/characters/synx-the-lynx/back.svg",
  44330. extra: 1903/1755,
  44331. bottom: 14/1917
  44332. }
  44333. },
  44334. },
  44335. [
  44336. {
  44337. name: "Normal",
  44338. height: math.unit(5 + 5/12, "feet"),
  44339. default: true
  44340. },
  44341. ]
  44342. ))
  44343. characterMakers.push(() => makeCharacter(
  44344. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  44345. {
  44346. back: {
  44347. height: math.unit(15, "feet"),
  44348. name: "Back",
  44349. image: {
  44350. source: "./media/characters/nadezda-fex/back.svg",
  44351. extra: 1695/1481,
  44352. bottom: 25/1720
  44353. }
  44354. },
  44355. },
  44356. [
  44357. {
  44358. name: "Normal",
  44359. height: math.unit(15, "feet"),
  44360. default: true
  44361. },
  44362. {
  44363. name: "Macro",
  44364. height: math.unit(2.5, "miles")
  44365. },
  44366. {
  44367. name: "Goddess",
  44368. height: math.unit(2, "multiverses")
  44369. },
  44370. ]
  44371. ))
  44372. characterMakers.push(() => makeCharacter(
  44373. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  44374. {
  44375. front: {
  44376. height: math.unit(216, "cm"),
  44377. name: "Front",
  44378. image: {
  44379. source: "./media/characters/lev/front.svg",
  44380. extra: 1728/1670,
  44381. bottom: 82/1810
  44382. }
  44383. },
  44384. back: {
  44385. height: math.unit(216, "cm"),
  44386. name: "Back",
  44387. image: {
  44388. source: "./media/characters/lev/back.svg",
  44389. extra: 1738/1675,
  44390. bottom: 24/1762
  44391. }
  44392. },
  44393. dressed: {
  44394. height: math.unit(216, "cm"),
  44395. name: "Dressed",
  44396. image: {
  44397. source: "./media/characters/lev/dressed.svg",
  44398. extra: 1397/1351,
  44399. bottom: 73/1470
  44400. }
  44401. },
  44402. head: {
  44403. height: math.unit(0.51, "meter"),
  44404. name: "Head",
  44405. image: {
  44406. source: "./media/characters/lev/head.svg"
  44407. }
  44408. },
  44409. },
  44410. [
  44411. {
  44412. name: "Normal",
  44413. height: math.unit(216, "cm"),
  44414. default: true
  44415. },
  44416. {
  44417. name: "Relatively Macro",
  44418. height: math.unit(80, "meters")
  44419. },
  44420. {
  44421. name: "Megamacro",
  44422. height: math.unit(21600, "meters")
  44423. },
  44424. {
  44425. name: "Megamacro+",
  44426. height: math.unit(64800, "meters")
  44427. },
  44428. ]
  44429. ))
  44430. characterMakers.push(() => makeCharacter(
  44431. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  44432. {
  44433. front: {
  44434. height: math.unit(2, "meters"),
  44435. weight: math.unit(80, "kg"),
  44436. name: "Front",
  44437. image: {
  44438. source: "./media/characters/moka/front.svg",
  44439. extra: 1337/1255,
  44440. bottom: 58/1395
  44441. }
  44442. },
  44443. },
  44444. [
  44445. {
  44446. name: "Micro",
  44447. height: math.unit(15, "cm")
  44448. },
  44449. {
  44450. name: "Normal",
  44451. height: math.unit(2, "meters"),
  44452. default: true
  44453. },
  44454. {
  44455. name: "Macro",
  44456. height: math.unit(20, "meters"),
  44457. },
  44458. ]
  44459. ))
  44460. characterMakers.push(() => makeCharacter(
  44461. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  44462. {
  44463. front: {
  44464. height: math.unit(9, "feet"),
  44465. weight: math.unit(240, "lb"),
  44466. name: "Front",
  44467. image: {
  44468. source: "./media/characters/kuzco/front.svg",
  44469. extra: 1593/1487,
  44470. bottom: 32/1625
  44471. }
  44472. },
  44473. side: {
  44474. height: math.unit(9, "feet"),
  44475. weight: math.unit(240, "lb"),
  44476. name: "Side",
  44477. image: {
  44478. source: "./media/characters/kuzco/side.svg",
  44479. extra: 1575/1485,
  44480. bottom: 30/1605
  44481. }
  44482. },
  44483. back: {
  44484. height: math.unit(9, "feet"),
  44485. weight: math.unit(240, "lb"),
  44486. name: "Back",
  44487. image: {
  44488. source: "./media/characters/kuzco/back.svg",
  44489. extra: 1603/1514,
  44490. bottom: 14/1617
  44491. }
  44492. },
  44493. },
  44494. [
  44495. {
  44496. name: "Normal",
  44497. height: math.unit(9, "feet"),
  44498. default: true
  44499. },
  44500. ]
  44501. ))
  44502. characterMakers.push(() => makeCharacter(
  44503. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  44504. {
  44505. side: {
  44506. height: math.unit(2, "meters"),
  44507. weight: math.unit(300, "kg"),
  44508. name: "Side",
  44509. image: {
  44510. source: "./media/characters/ceruleus/side.svg",
  44511. extra: 1068/974,
  44512. bottom: 126/1194
  44513. }
  44514. },
  44515. },
  44516. [
  44517. {
  44518. name: "Normal",
  44519. height: math.unit(16, "meters"),
  44520. default: true
  44521. },
  44522. ]
  44523. ))
  44524. characterMakers.push(() => makeCharacter(
  44525. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  44526. {
  44527. front: {
  44528. height: math.unit(9, "feet"),
  44529. weight: math.unit(500, "kg"),
  44530. name: "Front",
  44531. image: {
  44532. source: "./media/characters/acouya/front.svg",
  44533. extra: 1660/1473,
  44534. bottom: 28/1688
  44535. }
  44536. },
  44537. },
  44538. [
  44539. {
  44540. name: "Normal",
  44541. height: math.unit(9, "feet"),
  44542. default: true
  44543. },
  44544. ]
  44545. ))
  44546. characterMakers.push(() => makeCharacter(
  44547. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  44548. {
  44549. front: {
  44550. height: math.unit(5 + 6/12, "feet"),
  44551. weight: math.unit(195, "lb"),
  44552. name: "Front",
  44553. image: {
  44554. source: "./media/characters/vant/front.svg",
  44555. extra: 1396/1320,
  44556. bottom: 20/1416
  44557. }
  44558. },
  44559. back: {
  44560. height: math.unit(5 + 6/12, "feet"),
  44561. weight: math.unit(195, "lb"),
  44562. name: "Back",
  44563. image: {
  44564. source: "./media/characters/vant/back.svg",
  44565. extra: 1396/1320,
  44566. bottom: 20/1416
  44567. }
  44568. },
  44569. maw: {
  44570. height: math.unit(0.75, "feet"),
  44571. name: "Maw",
  44572. image: {
  44573. source: "./media/characters/vant/maw.svg"
  44574. }
  44575. },
  44576. paw: {
  44577. height: math.unit(1.07, "feet"),
  44578. name: "Paw",
  44579. image: {
  44580. source: "./media/characters/vant/paw.svg"
  44581. }
  44582. },
  44583. },
  44584. [
  44585. {
  44586. name: "Micro",
  44587. height: math.unit(0.25, "inches")
  44588. },
  44589. {
  44590. name: "Normal",
  44591. height: math.unit(5 + 6/12, "feet"),
  44592. default: true
  44593. },
  44594. {
  44595. name: "Macro",
  44596. height: math.unit(75, "feet")
  44597. },
  44598. ]
  44599. ))
  44600. characterMakers.push(() => makeCharacter(
  44601. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  44602. {
  44603. front: {
  44604. height: math.unit(30, "meters"),
  44605. weight: math.unit(363, "tons"),
  44606. name: "Front",
  44607. image: {
  44608. source: "./media/characters/ahra/front.svg",
  44609. extra: 1914/1814,
  44610. bottom: 46/1960
  44611. }
  44612. },
  44613. },
  44614. [
  44615. {
  44616. name: "Macro",
  44617. height: math.unit(30, "meters"),
  44618. default: true
  44619. },
  44620. ]
  44621. ))
  44622. characterMakers.push(() => makeCharacter(
  44623. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  44624. {
  44625. undressed: {
  44626. height: math.unit(2, "m"),
  44627. weight: math.unit(250, "kg"),
  44628. name: "Undressed",
  44629. image: {
  44630. source: "./media/characters/coriander/undressed.svg",
  44631. extra: 1757/1606,
  44632. bottom: 107/1864
  44633. }
  44634. },
  44635. dressed: {
  44636. height: math.unit(2, "m"),
  44637. weight: math.unit(250, "kg"),
  44638. name: "Dressed",
  44639. image: {
  44640. source: "./media/characters/coriander/dressed.svg",
  44641. extra: 1757/1606,
  44642. bottom: 107/1864
  44643. }
  44644. },
  44645. },
  44646. [
  44647. {
  44648. name: "Normal",
  44649. height: math.unit(4, "meters"),
  44650. default: true
  44651. },
  44652. {
  44653. name: "XL",
  44654. height: math.unit(6, "meters")
  44655. },
  44656. {
  44657. name: "XXL",
  44658. height: math.unit(8, "meters")
  44659. },
  44660. ]
  44661. ))
  44662. characterMakers.push(() => makeCharacter(
  44663. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  44664. {
  44665. front: {
  44666. height: math.unit(6, "feet"),
  44667. name: "Front",
  44668. image: {
  44669. source: "./media/characters/syrinx/front.svg",
  44670. extra: 1557/1259,
  44671. bottom: 171/1728
  44672. }
  44673. },
  44674. },
  44675. [
  44676. {
  44677. name: "Normal",
  44678. height: math.unit(6 + 3/12, "feet"),
  44679. default: true
  44680. },
  44681. ]
  44682. ))
  44683. characterMakers.push(() => makeCharacter(
  44684. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  44685. {
  44686. front: {
  44687. height: math.unit(11 + 6/12, "feet"),
  44688. weight: math.unit(1.5, "tons"),
  44689. name: "Front",
  44690. image: {
  44691. source: "./media/characters/bor/front.svg",
  44692. extra: 1189/1109,
  44693. bottom: 170/1359
  44694. }
  44695. },
  44696. },
  44697. [
  44698. {
  44699. name: "Normal",
  44700. height: math.unit(11 + 6/12, "feet"),
  44701. default: true
  44702. },
  44703. {
  44704. name: "Macro",
  44705. height: math.unit(32 + 9/12, "feet")
  44706. },
  44707. ]
  44708. ))
  44709. characterMakers.push(() => makeCharacter(
  44710. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  44711. {
  44712. anthro: {
  44713. height: math.unit(9, "feet"),
  44714. weight: math.unit(2076, "lb"),
  44715. name: "Anthro",
  44716. image: {
  44717. source: "./media/characters/abacus/anthro.svg",
  44718. extra: 1540/1494,
  44719. bottom: 233/1773
  44720. }
  44721. },
  44722. pigeon: {
  44723. height: math.unit(1, "feet"),
  44724. name: "Pigeon",
  44725. image: {
  44726. source: "./media/characters/abacus/pigeon.svg",
  44727. extra: 528/525,
  44728. bottom: 46/574
  44729. }
  44730. },
  44731. },
  44732. [
  44733. {
  44734. name: "Normal",
  44735. height: math.unit(9, "feet"),
  44736. default: true
  44737. },
  44738. ]
  44739. ))
  44740. characterMakers.push(() => makeCharacter(
  44741. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  44742. {
  44743. side: {
  44744. height: math.unit(6, "feet"),
  44745. name: "Side",
  44746. image: {
  44747. source: "./media/characters/delkhan/side.svg",
  44748. extra: 1884/1786,
  44749. bottom: 308/2192
  44750. }
  44751. },
  44752. head: {
  44753. height: math.unit(3.38, "feet"),
  44754. name: "Head",
  44755. image: {
  44756. source: "./media/characters/delkhan/head.svg"
  44757. }
  44758. },
  44759. },
  44760. [
  44761. {
  44762. name: "Normal",
  44763. height: math.unit(72, "feet"),
  44764. default: true
  44765. },
  44766. {
  44767. name: "Giant",
  44768. height: math.unit(172, "feet")
  44769. },
  44770. ]
  44771. ))
  44772. characterMakers.push(() => makeCharacter(
  44773. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  44774. {
  44775. standing: {
  44776. height: math.unit(6, "feet"),
  44777. name: "Standing",
  44778. image: {
  44779. source: "./media/characters/euchidat/standing.svg",
  44780. extra: 1612/1553,
  44781. bottom: 116/1728
  44782. }
  44783. },
  44784. leaning: {
  44785. height: math.unit(6, "feet"),
  44786. name: "Leaning",
  44787. image: {
  44788. source: "./media/characters/euchidat/leaning.svg",
  44789. extra: 1719/1674,
  44790. bottom: 27/1746
  44791. }
  44792. },
  44793. },
  44794. [
  44795. {
  44796. name: "Normal",
  44797. height: math.unit(175, "feet"),
  44798. default: true
  44799. },
  44800. {
  44801. name: "Megamacro",
  44802. height: math.unit(190, "miles")
  44803. },
  44804. {
  44805. name: "Gigamacro",
  44806. height: math.unit(190000, "miles")
  44807. },
  44808. ]
  44809. ))
  44810. characterMakers.push(() => makeCharacter(
  44811. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  44812. {
  44813. front: {
  44814. height: math.unit(6, "feet"),
  44815. weight: math.unit(150, "lb"),
  44816. name: "Front",
  44817. image: {
  44818. source: "./media/characters/rebecca-stack/front.svg",
  44819. extra: 1256/1201,
  44820. bottom: 18/1274
  44821. }
  44822. },
  44823. },
  44824. [
  44825. {
  44826. name: "Normal",
  44827. height: math.unit(5 + 8/12, "feet"),
  44828. default: true
  44829. },
  44830. {
  44831. name: "Demolitionist",
  44832. height: math.unit(200, "feet")
  44833. },
  44834. {
  44835. name: "Out of Control",
  44836. height: math.unit(2, "miles")
  44837. },
  44838. {
  44839. name: "Giga",
  44840. height: math.unit(7200, "miles")
  44841. },
  44842. ]
  44843. ))
  44844. characterMakers.push(() => makeCharacter(
  44845. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  44846. {
  44847. front: {
  44848. height: math.unit(6, "feet"),
  44849. weight: math.unit(150, "lb"),
  44850. name: "Front",
  44851. image: {
  44852. source: "./media/characters/jenny-cartwright/front.svg",
  44853. extra: 1384/1376,
  44854. bottom: 58/1442
  44855. }
  44856. },
  44857. },
  44858. [
  44859. {
  44860. name: "Normal",
  44861. height: math.unit(6 + 7/12, "feet"),
  44862. default: true
  44863. },
  44864. {
  44865. name: "Librarian",
  44866. height: math.unit(55, "feet")
  44867. },
  44868. {
  44869. name: "Sightseer",
  44870. height: math.unit(50, "miles")
  44871. },
  44872. {
  44873. name: "Giga",
  44874. height: math.unit(30000, "miles")
  44875. },
  44876. ]
  44877. ))
  44878. characterMakers.push(() => makeCharacter(
  44879. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  44880. {
  44881. nude: {
  44882. height: math.unit(8, "feet"),
  44883. weight: math.unit(225, "lb"),
  44884. name: "Nude",
  44885. image: {
  44886. source: "./media/characters/marvy/nude.svg",
  44887. extra: 1900/1683,
  44888. bottom: 89/1989
  44889. }
  44890. },
  44891. dressed: {
  44892. height: math.unit(8, "feet"),
  44893. weight: math.unit(225, "lb"),
  44894. name: "Dressed",
  44895. image: {
  44896. source: "./media/characters/marvy/dressed.svg",
  44897. extra: 1900/1683,
  44898. bottom: 89/1989
  44899. }
  44900. },
  44901. head: {
  44902. height: math.unit(2.85, "feet"),
  44903. name: "Head",
  44904. image: {
  44905. source: "./media/characters/marvy/head.svg"
  44906. }
  44907. },
  44908. },
  44909. [
  44910. {
  44911. name: "Normal",
  44912. height: math.unit(8, "feet"),
  44913. default: true
  44914. },
  44915. ]
  44916. ))
  44917. characterMakers.push(() => makeCharacter(
  44918. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  44919. {
  44920. front: {
  44921. height: math.unit(8, "feet"),
  44922. weight: math.unit(250, "lb"),
  44923. name: "Front",
  44924. image: {
  44925. source: "./media/characters/leah/front.svg",
  44926. extra: 1257/1149,
  44927. bottom: 109/1366
  44928. }
  44929. },
  44930. },
  44931. [
  44932. {
  44933. name: "Normal",
  44934. height: math.unit(8, "feet"),
  44935. default: true
  44936. },
  44937. {
  44938. name: "Minimacro",
  44939. height: math.unit(40, "feet")
  44940. },
  44941. {
  44942. name: "Macro",
  44943. height: math.unit(124, "feet")
  44944. },
  44945. {
  44946. name: "Megamacro",
  44947. height: math.unit(850, "feet")
  44948. },
  44949. ]
  44950. ))
  44951. characterMakers.push(() => makeCharacter(
  44952. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  44953. {
  44954. side: {
  44955. height: math.unit(13 + 6/12, "feet"),
  44956. weight: math.unit(3200, "lb"),
  44957. name: "Side",
  44958. image: {
  44959. source: "./media/characters/alvir/side.svg",
  44960. extra: 896/589,
  44961. bottom: 26/922
  44962. }
  44963. },
  44964. },
  44965. [
  44966. {
  44967. name: "Normal",
  44968. height: math.unit(13 + 6/12, "feet"),
  44969. default: true
  44970. },
  44971. ]
  44972. ))
  44973. characterMakers.push(() => makeCharacter(
  44974. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  44975. {
  44976. front: {
  44977. height: math.unit(5 + 4/12, "feet"),
  44978. weight: math.unit(236, "lb"),
  44979. name: "Front",
  44980. image: {
  44981. source: "./media/characters/zaina-khalil/front.svg",
  44982. extra: 1533/1485,
  44983. bottom: 94/1627
  44984. }
  44985. },
  44986. side: {
  44987. height: math.unit(5 + 4/12, "feet"),
  44988. weight: math.unit(236, "lb"),
  44989. name: "Side",
  44990. image: {
  44991. source: "./media/characters/zaina-khalil/side.svg",
  44992. extra: 1537/1498,
  44993. bottom: 66/1603
  44994. }
  44995. },
  44996. back: {
  44997. height: math.unit(5 + 4/12, "feet"),
  44998. weight: math.unit(236, "lb"),
  44999. name: "Back",
  45000. image: {
  45001. source: "./media/characters/zaina-khalil/back.svg",
  45002. extra: 1546/1494,
  45003. bottom: 89/1635
  45004. }
  45005. },
  45006. },
  45007. [
  45008. {
  45009. name: "Normal",
  45010. height: math.unit(5 + 4/12, "feet"),
  45011. default: true
  45012. },
  45013. ]
  45014. ))
  45015. //characters
  45016. function makeCharacters() {
  45017. const results = [];
  45018. characterMakers.forEach(character => {
  45019. results.push(character());
  45020. });
  45021. return results;
  45022. }