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.
 
 
 

45304 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. }
  1795. //species
  1796. function getSpeciesInfo(speciesList) {
  1797. let result = new Set();
  1798. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1799. result.add(entry)
  1800. });
  1801. return Array.from(result);
  1802. };
  1803. function getSpeciesInfoHelper(species) {
  1804. if (!speciesData[species]) {
  1805. console.warn(species + " doesn't exist");
  1806. return [];
  1807. }
  1808. if (speciesData[species].parents) {
  1809. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1810. } else {
  1811. return [species];
  1812. }
  1813. }
  1814. characterMakers.push(() => makeCharacter(
  1815. {
  1816. name: "Fen",
  1817. species: ["crux"],
  1818. description: {
  1819. title: "Bio",
  1820. text: "Very furry. Sheds on everything."
  1821. },
  1822. tags: [
  1823. "anthro",
  1824. "goo"
  1825. ]
  1826. },
  1827. {
  1828. back: {
  1829. height: math.unit(2.2428, "meter"),
  1830. weight: math.unit(124.738, "kg"),
  1831. name: "Back",
  1832. image: {
  1833. source: "./media/characters/fen/back.svg",
  1834. },
  1835. info: {
  1836. description: {
  1837. mode: "append",
  1838. text: "\n\nHe is not currently looking at you."
  1839. }
  1840. }
  1841. },
  1842. full: {
  1843. height: math.unit(0.91, "meter"),
  1844. weight: math.unit(225, "kg"),
  1845. name: "Full",
  1846. image: {
  1847. source: "./media/characters/fen/full.svg",
  1848. extra: 1133/859,
  1849. bottom: 145/1278
  1850. },
  1851. info: {
  1852. description: {
  1853. mode: "append",
  1854. text: "\n\nMunch."
  1855. }
  1856. }
  1857. },
  1858. kneeling: {
  1859. height: math.unit(5.4, "feet"),
  1860. weight: math.unit(124.738, "kg"),
  1861. name: "Kneeling",
  1862. image: {
  1863. source: "./media/characters/fen/kneeling.svg",
  1864. extra: 563 / 507
  1865. }
  1866. },
  1867. goo: {
  1868. height: math.unit(2.8, "feet"),
  1869. weight: math.unit(125, "kg"),
  1870. capacity: math.unit(1, "people"),
  1871. name: "Goo",
  1872. image: {
  1873. source: "./media/characters/fen/goo.svg",
  1874. bottom: 116 / 613
  1875. }
  1876. },
  1877. lounging: {
  1878. height: math.unit(6.5, "feet"),
  1879. weight: math.unit(125, "kg"),
  1880. name: "Lounging",
  1881. image: {
  1882. source: "./media/characters/fen/lounging.svg"
  1883. }
  1884. },
  1885. },
  1886. [
  1887. {
  1888. name: "Small",
  1889. height: math.unit(2.2428, "meter")
  1890. },
  1891. {
  1892. name: "Normal",
  1893. height: math.unit(12, "feet"),
  1894. default: true,
  1895. },
  1896. {
  1897. name: "Minimacro",
  1898. height: math.unit(40, "feet"),
  1899. info: {
  1900. description: {
  1901. mode: "append",
  1902. text: "\n\nTOO DAMN BIG"
  1903. }
  1904. }
  1905. },
  1906. {
  1907. name: "Macro",
  1908. height: math.unit(100, "feet"),
  1909. info: {
  1910. description: {
  1911. mode: "append",
  1912. text: "\n\nTOO DAMN BIG"
  1913. }
  1914. }
  1915. },
  1916. {
  1917. name: "Macro+",
  1918. height: math.unit(300, "feet")
  1919. },
  1920. {
  1921. name: "Megamacro",
  1922. height: math.unit(2, "miles")
  1923. }
  1924. ]
  1925. ))
  1926. characterMakers.push(() => makeCharacter(
  1927. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1928. {
  1929. front: {
  1930. height: math.unit(183, "cm"),
  1931. weight: math.unit(80, "kg"),
  1932. name: "Front",
  1933. image: {
  1934. source: "./media/characters/sofia-fluttertail/front.svg",
  1935. bottom: 0.01,
  1936. extra: 2154 / 2081
  1937. }
  1938. },
  1939. frontAlt: {
  1940. height: math.unit(183, "cm"),
  1941. weight: math.unit(80, "kg"),
  1942. name: "Front (alt)",
  1943. image: {
  1944. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1945. }
  1946. },
  1947. back: {
  1948. height: math.unit(183, "cm"),
  1949. weight: math.unit(80, "kg"),
  1950. name: "Back",
  1951. image: {
  1952. source: "./media/characters/sofia-fluttertail/back.svg"
  1953. }
  1954. },
  1955. kneeling: {
  1956. height: math.unit(125, "cm"),
  1957. weight: math.unit(80, "kg"),
  1958. name: "Kneeling",
  1959. image: {
  1960. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1961. extra: 1033 / 977,
  1962. bottom: 23.7 / 1057
  1963. }
  1964. },
  1965. maw: {
  1966. height: math.unit(183 / 5, "cm"),
  1967. name: "Maw",
  1968. image: {
  1969. source: "./media/characters/sofia-fluttertail/maw.svg"
  1970. }
  1971. },
  1972. mawcloseup: {
  1973. height: math.unit(183 / 5 * 0.41, "cm"),
  1974. name: "Maw (Closeup)",
  1975. image: {
  1976. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1977. }
  1978. },
  1979. paws: {
  1980. height: math.unit(1.17, "feet"),
  1981. name: "Paws",
  1982. image: {
  1983. source: "./media/characters/sofia-fluttertail/paws.svg",
  1984. extra: 851 / 851,
  1985. bottom: 17 / 868
  1986. }
  1987. },
  1988. },
  1989. [
  1990. {
  1991. name: "Normal",
  1992. height: math.unit(1.83, "meter")
  1993. },
  1994. {
  1995. name: "Size Thief",
  1996. height: math.unit(18, "feet")
  1997. },
  1998. {
  1999. name: "50 Foot Collie",
  2000. height: math.unit(50, "feet")
  2001. },
  2002. {
  2003. name: "Macro",
  2004. height: math.unit(96, "feet"),
  2005. default: true
  2006. },
  2007. {
  2008. name: "Megamerger",
  2009. height: math.unit(650, "feet")
  2010. },
  2011. ]
  2012. ))
  2013. characterMakers.push(() => makeCharacter(
  2014. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2015. {
  2016. front: {
  2017. height: math.unit(7, "feet"),
  2018. weight: math.unit(100, "kg"),
  2019. name: "Front",
  2020. image: {
  2021. source: "./media/characters/march/front.svg",
  2022. extra: 1992/1851,
  2023. bottom: 39/2031
  2024. }
  2025. },
  2026. foot: {
  2027. height: math.unit(0.9, "feet"),
  2028. name: "Foot",
  2029. image: {
  2030. source: "./media/characters/march/foot.svg"
  2031. }
  2032. },
  2033. },
  2034. [
  2035. {
  2036. name: "Normal",
  2037. height: math.unit(7.9, "feet")
  2038. },
  2039. {
  2040. name: "Macro",
  2041. height: math.unit(220, "meters")
  2042. },
  2043. {
  2044. name: "Megamacro",
  2045. height: math.unit(2.98, "km"),
  2046. default: true
  2047. },
  2048. {
  2049. name: "Gigamacro",
  2050. height: math.unit(15963, "km")
  2051. },
  2052. {
  2053. name: "Teramacro",
  2054. height: math.unit(2980000000, "km")
  2055. },
  2056. {
  2057. name: "Examacro",
  2058. height: math.unit(250, "parsecs")
  2059. },
  2060. ]
  2061. ))
  2062. characterMakers.push(() => makeCharacter(
  2063. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2064. {
  2065. front: {
  2066. height: math.unit(6, "feet"),
  2067. weight: math.unit(60, "kg"),
  2068. name: "Front",
  2069. image: {
  2070. source: "./media/characters/noir/front.svg",
  2071. extra: 1,
  2072. bottom: 0.032
  2073. }
  2074. },
  2075. },
  2076. [
  2077. {
  2078. name: "Normal",
  2079. height: math.unit(6.6, "feet")
  2080. },
  2081. {
  2082. name: "Macro",
  2083. height: math.unit(500, "feet")
  2084. },
  2085. {
  2086. name: "Megamacro",
  2087. height: math.unit(2.5, "km"),
  2088. default: true
  2089. },
  2090. {
  2091. name: "Gigamacro",
  2092. height: math.unit(22500, "km")
  2093. },
  2094. {
  2095. name: "Teramacro",
  2096. height: math.unit(2500000000, "km")
  2097. },
  2098. {
  2099. name: "Examacro",
  2100. height: math.unit(200, "parsecs")
  2101. },
  2102. ]
  2103. ))
  2104. characterMakers.push(() => makeCharacter(
  2105. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2106. {
  2107. front: {
  2108. height: math.unit(7, "feet"),
  2109. weight: math.unit(100, "kg"),
  2110. name: "Front",
  2111. image: {
  2112. source: "./media/characters/okuri/front.svg",
  2113. extra: 1,
  2114. bottom: 0.037
  2115. }
  2116. },
  2117. back: {
  2118. height: math.unit(7, "feet"),
  2119. weight: math.unit(100, "kg"),
  2120. name: "Back",
  2121. image: {
  2122. source: "./media/characters/okuri/back.svg",
  2123. extra: 1,
  2124. bottom: 0.007
  2125. }
  2126. },
  2127. },
  2128. [
  2129. {
  2130. name: "Megamacro",
  2131. height: math.unit(100, "miles"),
  2132. default: true
  2133. },
  2134. ]
  2135. ))
  2136. characterMakers.push(() => makeCharacter(
  2137. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2138. {
  2139. front: {
  2140. height: math.unit(7, "feet"),
  2141. weight: math.unit(100, "kg"),
  2142. name: "Front",
  2143. image: {
  2144. source: "./media/characters/manny/front.svg",
  2145. extra: 1,
  2146. bottom: 0.06
  2147. }
  2148. },
  2149. back: {
  2150. height: math.unit(7, "feet"),
  2151. weight: math.unit(100, "kg"),
  2152. name: "Back",
  2153. image: {
  2154. source: "./media/characters/manny/back.svg",
  2155. extra: 1,
  2156. bottom: 0.014
  2157. }
  2158. },
  2159. },
  2160. [
  2161. {
  2162. name: "Normal",
  2163. height: math.unit(7, "feet"),
  2164. },
  2165. {
  2166. name: "Macro",
  2167. height: math.unit(78, "feet"),
  2168. default: true
  2169. },
  2170. {
  2171. name: "Macro+",
  2172. height: math.unit(300, "meters")
  2173. },
  2174. {
  2175. name: "Macro++",
  2176. height: math.unit(2400, "meters")
  2177. },
  2178. {
  2179. name: "Megamacro",
  2180. height: math.unit(5167, "meters")
  2181. },
  2182. {
  2183. name: "Gigamacro",
  2184. height: math.unit(41769, "miles")
  2185. },
  2186. ]
  2187. ))
  2188. characterMakers.push(() => makeCharacter(
  2189. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2190. {
  2191. front: {
  2192. height: math.unit(7, "feet"),
  2193. weight: math.unit(100, "kg"),
  2194. name: "Front",
  2195. image: {
  2196. source: "./media/characters/adake/front-1.svg"
  2197. }
  2198. },
  2199. frontAlt: {
  2200. height: math.unit(7, "feet"),
  2201. weight: math.unit(100, "kg"),
  2202. name: "Front (Alt)",
  2203. image: {
  2204. source: "./media/characters/adake/front-2.svg",
  2205. extra: 1,
  2206. bottom: 0.01
  2207. }
  2208. },
  2209. back: {
  2210. height: math.unit(7, "feet"),
  2211. weight: math.unit(100, "kg"),
  2212. name: "Back",
  2213. image: {
  2214. source: "./media/characters/adake/back.svg",
  2215. }
  2216. },
  2217. kneel: {
  2218. height: math.unit(5.385, "feet"),
  2219. weight: math.unit(100, "kg"),
  2220. name: "Kneeling",
  2221. image: {
  2222. source: "./media/characters/adake/kneel.svg",
  2223. bottom: 0.052
  2224. }
  2225. },
  2226. },
  2227. [
  2228. {
  2229. name: "Normal",
  2230. height: math.unit(7, "feet"),
  2231. },
  2232. {
  2233. name: "Macro",
  2234. height: math.unit(78, "feet"),
  2235. default: true
  2236. },
  2237. {
  2238. name: "Macro+",
  2239. height: math.unit(300, "meters")
  2240. },
  2241. {
  2242. name: "Macro++",
  2243. height: math.unit(2400, "meters")
  2244. },
  2245. {
  2246. name: "Megamacro",
  2247. height: math.unit(5167, "meters")
  2248. },
  2249. {
  2250. name: "Gigamacro",
  2251. height: math.unit(41769, "miles")
  2252. },
  2253. ]
  2254. ))
  2255. characterMakers.push(() => makeCharacter(
  2256. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2257. {
  2258. front: {
  2259. height: math.unit(1.65, "meters"),
  2260. weight: math.unit(50, "kg"),
  2261. name: "Front",
  2262. image: {
  2263. source: "./media/characters/elijah/front.svg",
  2264. extra: 858 / 830,
  2265. bottom: 95.5 / 953.8559
  2266. }
  2267. },
  2268. back: {
  2269. height: math.unit(1.65, "meters"),
  2270. weight: math.unit(50, "kg"),
  2271. name: "Back",
  2272. image: {
  2273. source: "./media/characters/elijah/back.svg",
  2274. extra: 895 / 850,
  2275. bottom: 5.3 / 897.956
  2276. }
  2277. },
  2278. frontNsfw: {
  2279. height: math.unit(1.65, "meters"),
  2280. weight: math.unit(50, "kg"),
  2281. name: "Front (NSFW)",
  2282. image: {
  2283. source: "./media/characters/elijah/front-nsfw.svg",
  2284. extra: 858 / 830,
  2285. bottom: 95.5 / 953.8559
  2286. }
  2287. },
  2288. backNsfw: {
  2289. height: math.unit(1.65, "meters"),
  2290. weight: math.unit(50, "kg"),
  2291. name: "Back (NSFW)",
  2292. image: {
  2293. source: "./media/characters/elijah/back-nsfw.svg",
  2294. extra: 895 / 850,
  2295. bottom: 5.3 / 897.956
  2296. }
  2297. },
  2298. dick: {
  2299. height: math.unit(1, "feet"),
  2300. name: "Dick",
  2301. image: {
  2302. source: "./media/characters/elijah/dick.svg"
  2303. }
  2304. },
  2305. beakOpen: {
  2306. height: math.unit(1.25, "feet"),
  2307. name: "Beak (Open)",
  2308. image: {
  2309. source: "./media/characters/elijah/beak-open.svg"
  2310. }
  2311. },
  2312. beakShut: {
  2313. height: math.unit(1.25, "feet"),
  2314. name: "Beak (Shut)",
  2315. image: {
  2316. source: "./media/characters/elijah/beak-shut.svg"
  2317. }
  2318. },
  2319. footFlexing: {
  2320. height: math.unit(1.61, "feet"),
  2321. name: "Foot (Flexing)",
  2322. image: {
  2323. source: "./media/characters/elijah/foot-flexing.svg"
  2324. }
  2325. },
  2326. footStepping: {
  2327. height: math.unit(1.44, "feet"),
  2328. name: "Foot (Stepping)",
  2329. image: {
  2330. source: "./media/characters/elijah/foot-stepping.svg"
  2331. }
  2332. },
  2333. plantigradeLeg: {
  2334. height: math.unit(2.34, "feet"),
  2335. name: "Plantigrade Leg",
  2336. image: {
  2337. source: "./media/characters/elijah/plantigrade-leg.svg"
  2338. }
  2339. },
  2340. plantigradeFootLeft: {
  2341. height: math.unit(0.9, "feet"),
  2342. name: "Plantigrade Foot (Left)",
  2343. image: {
  2344. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2345. }
  2346. },
  2347. plantigradeFootRight: {
  2348. height: math.unit(0.9, "feet"),
  2349. name: "Plantigrade Foot (Right)",
  2350. image: {
  2351. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2352. }
  2353. },
  2354. },
  2355. [
  2356. {
  2357. name: "Normal",
  2358. height: math.unit(1.65, "meters")
  2359. },
  2360. {
  2361. name: "Macro",
  2362. height: math.unit(55, "meters"),
  2363. default: true
  2364. },
  2365. {
  2366. name: "Macro+",
  2367. height: math.unit(105, "meters")
  2368. },
  2369. ]
  2370. ))
  2371. characterMakers.push(() => makeCharacter(
  2372. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2373. {
  2374. front: {
  2375. height: math.unit(7 + 2/12, "feet"),
  2376. weight: math.unit(320, "kg"),
  2377. name: "Front",
  2378. image: {
  2379. source: "./media/characters/rai/front.svg",
  2380. extra: 1802/1696,
  2381. bottom: 68/1870
  2382. }
  2383. },
  2384. frontDressed: {
  2385. height: math.unit(7 + 2/12, "feet"),
  2386. weight: math.unit(320, "kg"),
  2387. name: "Front (Dressed)",
  2388. image: {
  2389. source: "./media/characters/rai/front-dressed.svg",
  2390. extra: 1802/1696,
  2391. bottom: 68/1870
  2392. }
  2393. },
  2394. side: {
  2395. height: math.unit(7 + 2/12, "feet"),
  2396. weight: math.unit(320, "kg"),
  2397. name: "Side",
  2398. image: {
  2399. source: "./media/characters/rai/side.svg",
  2400. extra: 1789/1710,
  2401. bottom: 115/1904
  2402. }
  2403. },
  2404. back: {
  2405. height: math.unit(7 + 2/12, "feet"),
  2406. weight: math.unit(320, "kg"),
  2407. name: "Back",
  2408. image: {
  2409. source: "./media/characters/rai/back.svg",
  2410. extra: 1770/1707,
  2411. bottom: 28/1798
  2412. }
  2413. },
  2414. feral: {
  2415. height: math.unit(9.5, "feet"),
  2416. weight: math.unit(640, "kg"),
  2417. name: "Feral",
  2418. image: {
  2419. source: "./media/characters/rai/feral.svg",
  2420. extra: 945/553,
  2421. bottom: 176/1121
  2422. }
  2423. },
  2424. dragon: {
  2425. height: math.unit(23, "feet"),
  2426. weight: math.unit(50000, "lb"),
  2427. name: "Dragon",
  2428. image: {
  2429. source: "./media/characters/rai/dragon.svg",
  2430. extra: 2498 / 2030,
  2431. bottom: 85.2 / 2584
  2432. }
  2433. },
  2434. maw: {
  2435. height: math.unit(1.69, "feet"),
  2436. name: "Maw",
  2437. image: {
  2438. source: "./media/characters/rai/maw.svg"
  2439. }
  2440. },
  2441. },
  2442. [
  2443. {
  2444. name: "Normal",
  2445. height: math.unit(7 + 2/12, "feet")
  2446. },
  2447. {
  2448. name: "Big",
  2449. height: math.unit(11, "feet")
  2450. },
  2451. {
  2452. name: "Macro",
  2453. height: math.unit(302, "feet"),
  2454. default: true
  2455. },
  2456. ]
  2457. ))
  2458. characterMakers.push(() => makeCharacter(
  2459. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2460. {
  2461. frontDressed: {
  2462. height: math.unit(216, "feet"),
  2463. weight: math.unit(7000000, "lb"),
  2464. name: "Front (Dressed)",
  2465. image: {
  2466. source: "./media/characters/jazzy/front-dressed.svg",
  2467. extra: 2738 / 2651,
  2468. bottom: 41.8 / 2786
  2469. }
  2470. },
  2471. backDressed: {
  2472. height: math.unit(216, "feet"),
  2473. weight: math.unit(7000000, "lb"),
  2474. name: "Back (Dressed)",
  2475. image: {
  2476. source: "./media/characters/jazzy/back-dressed.svg",
  2477. extra: 2775 / 2673,
  2478. bottom: 36.8 / 2817
  2479. }
  2480. },
  2481. front: {
  2482. height: math.unit(216, "feet"),
  2483. weight: math.unit(7000000, "lb"),
  2484. name: "Front",
  2485. image: {
  2486. source: "./media/characters/jazzy/front.svg",
  2487. extra: 2738 / 2651,
  2488. bottom: 41.8 / 2786
  2489. }
  2490. },
  2491. back: {
  2492. height: math.unit(216, "feet"),
  2493. weight: math.unit(7000000, "lb"),
  2494. name: "Back",
  2495. image: {
  2496. source: "./media/characters/jazzy/back.svg",
  2497. extra: 2775 / 2673,
  2498. bottom: 36.8 / 2817
  2499. }
  2500. },
  2501. maw: {
  2502. height: math.unit(20, "feet"),
  2503. name: "Maw",
  2504. image: {
  2505. source: "./media/characters/jazzy/maw.svg"
  2506. }
  2507. },
  2508. paws: {
  2509. height: math.unit(27.5, "feet"),
  2510. name: "Paws",
  2511. image: {
  2512. source: "./media/characters/jazzy/paws.svg"
  2513. }
  2514. },
  2515. eye: {
  2516. height: math.unit(4.4, "feet"),
  2517. name: "Eye",
  2518. image: {
  2519. source: "./media/characters/jazzy/eye.svg"
  2520. }
  2521. },
  2522. droneOffense: {
  2523. height: math.unit(9.5, "inches"),
  2524. name: "Drone (Offense)",
  2525. image: {
  2526. source: "./media/characters/jazzy/drone-offense.svg"
  2527. }
  2528. },
  2529. droneRecon: {
  2530. height: math.unit(9.5, "inches"),
  2531. name: "Drone (Recon)",
  2532. image: {
  2533. source: "./media/characters/jazzy/drone-recon.svg"
  2534. }
  2535. },
  2536. droneDefense: {
  2537. height: math.unit(9.5, "inches"),
  2538. name: "Drone (Defense)",
  2539. image: {
  2540. source: "./media/characters/jazzy/drone-defense.svg"
  2541. }
  2542. },
  2543. },
  2544. [
  2545. {
  2546. name: "Macro",
  2547. height: math.unit(216, "feet"),
  2548. default: true
  2549. },
  2550. ]
  2551. ))
  2552. characterMakers.push(() => makeCharacter(
  2553. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2554. {
  2555. front: {
  2556. height: math.unit(9 + 6/12, "feet"),
  2557. weight: math.unit(700, "lb"),
  2558. name: "Front",
  2559. image: {
  2560. source: "./media/characters/flamm/front.svg",
  2561. extra: 1751/1632,
  2562. bottom: 46/1797
  2563. }
  2564. },
  2565. buff: {
  2566. height: math.unit(9 + 6/12, "feet"),
  2567. weight: math.unit(950, "lb"),
  2568. name: "Buff",
  2569. image: {
  2570. source: "./media/characters/flamm/buff.svg",
  2571. extra: 3018/2874,
  2572. bottom: 221/3239
  2573. }
  2574. },
  2575. },
  2576. [
  2577. {
  2578. name: "Normal",
  2579. height: math.unit(9.5, "feet")
  2580. },
  2581. {
  2582. name: "Macro",
  2583. height: math.unit(200, "feet"),
  2584. default: true
  2585. },
  2586. ]
  2587. ))
  2588. characterMakers.push(() => makeCharacter(
  2589. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2590. {
  2591. front: {
  2592. height: math.unit(5 + 3/12, "feet"),
  2593. weight: math.unit(60, "kg"),
  2594. name: "Front",
  2595. image: {
  2596. source: "./media/characters/zephiro/front.svg",
  2597. extra: 2309 / 2162,
  2598. bottom: 0.069
  2599. }
  2600. },
  2601. side: {
  2602. height: math.unit(5 + 3/12, "feet"),
  2603. weight: math.unit(60, "kg"),
  2604. name: "Side",
  2605. image: {
  2606. source: "./media/characters/zephiro/side.svg",
  2607. extra: 2403 / 2279,
  2608. bottom: 0.015
  2609. }
  2610. },
  2611. back: {
  2612. height: math.unit(5 + 3/12, "feet"),
  2613. weight: math.unit(60, "kg"),
  2614. name: "Back",
  2615. image: {
  2616. source: "./media/characters/zephiro/back.svg",
  2617. extra: 2373 / 2244,
  2618. bottom: 0.013
  2619. }
  2620. },
  2621. hand: {
  2622. height: math.unit(0.68, "feet"),
  2623. name: "Hand",
  2624. image: {
  2625. source: "./media/characters/zephiro/hand.svg"
  2626. }
  2627. },
  2628. paw: {
  2629. height: math.unit(1, "feet"),
  2630. name: "Paw",
  2631. image: {
  2632. source: "./media/characters/zephiro/paw.svg"
  2633. }
  2634. },
  2635. beans: {
  2636. height: math.unit(0.93, "feet"),
  2637. name: "Beans",
  2638. image: {
  2639. source: "./media/characters/zephiro/beans.svg"
  2640. }
  2641. },
  2642. },
  2643. [
  2644. {
  2645. name: "Micro",
  2646. height: math.unit(3, "inches")
  2647. },
  2648. {
  2649. name: "Normal",
  2650. height: math.unit(5 + 3 / 12, "feet"),
  2651. default: true
  2652. },
  2653. {
  2654. name: "Macro",
  2655. height: math.unit(118, "feet")
  2656. },
  2657. ]
  2658. ))
  2659. characterMakers.push(() => makeCharacter(
  2660. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2661. {
  2662. front: {
  2663. height: math.unit(5, "feet"),
  2664. weight: math.unit(90, "kg"),
  2665. name: "Front",
  2666. image: {
  2667. source: "./media/characters/fory/front.svg",
  2668. extra: 2862 / 2674,
  2669. bottom: 180 / 3043.8
  2670. }
  2671. },
  2672. back: {
  2673. height: math.unit(5, "feet"),
  2674. weight: math.unit(90, "kg"),
  2675. name: "Back",
  2676. image: {
  2677. source: "./media/characters/fory/back.svg",
  2678. extra: 2962 / 2791,
  2679. bottom: 106 / 3071.8
  2680. }
  2681. },
  2682. foot: {
  2683. height: math.unit(2.14, "feet"),
  2684. name: "Foot",
  2685. image: {
  2686. source: "./media/characters/fory/foot.svg"
  2687. }
  2688. },
  2689. },
  2690. [
  2691. {
  2692. name: "Normal",
  2693. height: math.unit(5, "feet")
  2694. },
  2695. {
  2696. name: "Macro",
  2697. height: math.unit(50, "feet"),
  2698. default: true
  2699. },
  2700. {
  2701. name: "Megamacro",
  2702. height: math.unit(10, "miles")
  2703. },
  2704. {
  2705. name: "Gigamacro",
  2706. height: math.unit(5, "earths")
  2707. },
  2708. ]
  2709. ))
  2710. characterMakers.push(() => makeCharacter(
  2711. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2712. {
  2713. front: {
  2714. height: math.unit(7, "feet"),
  2715. weight: math.unit(90, "kg"),
  2716. name: "Front",
  2717. image: {
  2718. source: "./media/characters/kurrikage/front.svg",
  2719. extra: 1845/1733,
  2720. bottom: 119/1964
  2721. }
  2722. },
  2723. back: {
  2724. height: math.unit(7, "feet"),
  2725. weight: math.unit(90, "kg"),
  2726. name: "Back",
  2727. image: {
  2728. source: "./media/characters/kurrikage/back.svg",
  2729. extra: 1790/1677,
  2730. bottom: 61/1851
  2731. }
  2732. },
  2733. dressed: {
  2734. height: math.unit(7, "feet"),
  2735. weight: math.unit(90, "kg"),
  2736. name: "Dressed",
  2737. image: {
  2738. source: "./media/characters/kurrikage/dressed.svg",
  2739. extra: 1845/1733,
  2740. bottom: 119/1964
  2741. }
  2742. },
  2743. foot: {
  2744. height: math.unit(1.5, "feet"),
  2745. name: "Foot",
  2746. image: {
  2747. source: "./media/characters/kurrikage/foot.svg"
  2748. }
  2749. },
  2750. staff: {
  2751. height: math.unit(6.7, "feet"),
  2752. name: "Staff",
  2753. image: {
  2754. source: "./media/characters/kurrikage/staff.svg"
  2755. }
  2756. },
  2757. peek: {
  2758. height: math.unit(1.05, "feet"),
  2759. name: "Peeking",
  2760. image: {
  2761. source: "./media/characters/kurrikage/peek.svg",
  2762. bottom: 0.08
  2763. }
  2764. },
  2765. },
  2766. [
  2767. {
  2768. name: "Normal",
  2769. height: math.unit(12, "feet"),
  2770. default: true
  2771. },
  2772. {
  2773. name: "Big",
  2774. height: math.unit(20, "feet")
  2775. },
  2776. {
  2777. name: "Macro",
  2778. height: math.unit(500, "feet")
  2779. },
  2780. {
  2781. name: "Megamacro",
  2782. height: math.unit(20, "miles")
  2783. },
  2784. ]
  2785. ))
  2786. characterMakers.push(() => makeCharacter(
  2787. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2788. {
  2789. front: {
  2790. height: math.unit(6, "feet"),
  2791. weight: math.unit(75, "kg"),
  2792. name: "Front",
  2793. image: {
  2794. source: "./media/characters/shingo/front.svg",
  2795. extra: 1900/1825,
  2796. bottom: 82/1982
  2797. }
  2798. },
  2799. side: {
  2800. height: math.unit(6, "feet"),
  2801. weight: math.unit(75, "kg"),
  2802. name: "Side",
  2803. image: {
  2804. source: "./media/characters/shingo/side.svg",
  2805. extra: 1930/1865,
  2806. bottom: 16/1946
  2807. }
  2808. },
  2809. back: {
  2810. height: math.unit(6, "feet"),
  2811. weight: math.unit(75, "kg"),
  2812. name: "Back",
  2813. image: {
  2814. source: "./media/characters/shingo/back.svg",
  2815. extra: 1922/1852,
  2816. bottom: 16/1938
  2817. }
  2818. },
  2819. frontDressed: {
  2820. height: math.unit(6, "feet"),
  2821. weight: math.unit(150, "lb"),
  2822. name: "Front-dressed",
  2823. image: {
  2824. source: "./media/characters/shingo/front-dressed.svg",
  2825. extra: 1900/1825,
  2826. bottom: 82/1982
  2827. }
  2828. },
  2829. paw: {
  2830. height: math.unit(1.29, "feet"),
  2831. name: "Paw",
  2832. image: {
  2833. source: "./media/characters/shingo/paw.svg"
  2834. }
  2835. },
  2836. hand: {
  2837. height: math.unit(1.07, "feet"),
  2838. name: "Hand",
  2839. image: {
  2840. source: "./media/characters/shingo/hand.svg"
  2841. }
  2842. },
  2843. frontAlt: {
  2844. height: math.unit(6, "feet"),
  2845. weight: math.unit(75, "kg"),
  2846. name: "Front (Alt)",
  2847. image: {
  2848. source: "./media/characters/shingo/front-alt.svg",
  2849. extra: 3511 / 3338,
  2850. bottom: 0.005
  2851. }
  2852. },
  2853. frontAlt2: {
  2854. height: math.unit(6, "feet"),
  2855. weight: math.unit(75, "kg"),
  2856. name: "Front (Alt 2)",
  2857. image: {
  2858. source: "./media/characters/shingo/front-alt-2.svg",
  2859. extra: 706/681,
  2860. bottom: 11/717
  2861. }
  2862. },
  2863. pawAlt: {
  2864. height: math.unit(1, "feet"),
  2865. name: "Paw (Alt)",
  2866. image: {
  2867. source: "./media/characters/shingo/paw-alt.svg"
  2868. }
  2869. },
  2870. },
  2871. [
  2872. {
  2873. name: "Micro",
  2874. height: math.unit(4, "inches")
  2875. },
  2876. {
  2877. name: "Normal",
  2878. height: math.unit(6, "feet"),
  2879. default: true
  2880. },
  2881. {
  2882. name: "Macro",
  2883. height: math.unit(108, "feet")
  2884. },
  2885. {
  2886. name: "Macro+",
  2887. height: math.unit(1500, "feet")
  2888. },
  2889. ]
  2890. ))
  2891. characterMakers.push(() => makeCharacter(
  2892. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2893. {
  2894. side: {
  2895. height: math.unit(6, "feet"),
  2896. weight: math.unit(75, "kg"),
  2897. name: "Side",
  2898. image: {
  2899. source: "./media/characters/aigey/side.svg"
  2900. }
  2901. },
  2902. },
  2903. [
  2904. {
  2905. name: "Macro",
  2906. height: math.unit(200, "feet"),
  2907. default: true
  2908. },
  2909. {
  2910. name: "Megamacro",
  2911. height: math.unit(100, "miles")
  2912. },
  2913. ]
  2914. )
  2915. )
  2916. characterMakers.push(() => makeCharacter(
  2917. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2918. {
  2919. front: {
  2920. height: math.unit(5 + 5 / 12, "feet"),
  2921. weight: math.unit(75, "kg"),
  2922. name: "Front",
  2923. image: {
  2924. source: "./media/characters/natasha/front.svg",
  2925. extra: 859 / 824,
  2926. bottom: 23 / 879.6
  2927. }
  2928. },
  2929. frontNsfw: {
  2930. height: math.unit(5 + 5 / 12, "feet"),
  2931. weight: math.unit(75, "kg"),
  2932. name: "Front (NSFW)",
  2933. image: {
  2934. source: "./media/characters/natasha/front-nsfw.svg",
  2935. extra: 859 / 824,
  2936. bottom: 23 / 879.6
  2937. }
  2938. },
  2939. frontErect: {
  2940. height: math.unit(5 + 5 / 12, "feet"),
  2941. weight: math.unit(75, "kg"),
  2942. name: "Front (Erect)",
  2943. image: {
  2944. source: "./media/characters/natasha/front-erect.svg",
  2945. extra: 859 / 824,
  2946. bottom: 23 / 879.6
  2947. }
  2948. },
  2949. back: {
  2950. height: math.unit(5 + 5 / 12, "feet"),
  2951. weight: math.unit(75, "kg"),
  2952. name: "Back",
  2953. image: {
  2954. source: "./media/characters/natasha/back.svg",
  2955. extra: 887.9 / 852.6,
  2956. bottom: 9.7 / 896.4
  2957. }
  2958. },
  2959. backAlt: {
  2960. height: math.unit(5 + 5 / 12, "feet"),
  2961. weight: math.unit(75, "kg"),
  2962. name: "Back (Alt)",
  2963. image: {
  2964. source: "./media/characters/natasha/back-alt.svg",
  2965. extra: 1236.7 / 1192,
  2966. bottom: 22.3 / 1258.2
  2967. }
  2968. },
  2969. dick: {
  2970. height: math.unit(1.772, "feet"),
  2971. name: "Dick",
  2972. image: {
  2973. source: "./media/characters/natasha/dick.svg"
  2974. }
  2975. },
  2976. paw: {
  2977. height: math.unit(0.250, "meters"),
  2978. name: "Paw",
  2979. image: {
  2980. source: "./media/characters/natasha/paw.svg"
  2981. }
  2982. },
  2983. },
  2984. [
  2985. {
  2986. name: "Normal",
  2987. height: math.unit(5 + 5 / 12, "feet")
  2988. },
  2989. {
  2990. name: "Large",
  2991. height: math.unit(12, "feet")
  2992. },
  2993. {
  2994. name: "Macro",
  2995. height: math.unit(100, "feet"),
  2996. default: true
  2997. },
  2998. {
  2999. name: "Macro+",
  3000. height: math.unit(260, "feet")
  3001. },
  3002. {
  3003. name: "Macro++",
  3004. height: math.unit(1, "mile")
  3005. },
  3006. ]
  3007. ))
  3008. characterMakers.push(() => makeCharacter(
  3009. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3010. {
  3011. front: {
  3012. height: math.unit(6, "feet"),
  3013. weight: math.unit(75, "kg"),
  3014. name: "Front",
  3015. image: {
  3016. source: "./media/characters/malik/front.svg"
  3017. }
  3018. },
  3019. side: {
  3020. height: math.unit(6, "feet"),
  3021. weight: math.unit(75, "kg"),
  3022. name: "Side",
  3023. image: {
  3024. source: "./media/characters/malik/side.svg",
  3025. extra: 1.1539
  3026. }
  3027. },
  3028. back: {
  3029. height: math.unit(6, "feet"),
  3030. weight: math.unit(75, "kg"),
  3031. name: "Back",
  3032. image: {
  3033. source: "./media/characters/malik/back.svg"
  3034. }
  3035. },
  3036. },
  3037. [
  3038. {
  3039. name: "Macro",
  3040. height: math.unit(156, "feet"),
  3041. default: true
  3042. },
  3043. {
  3044. name: "Macro+",
  3045. height: math.unit(1188, "feet")
  3046. },
  3047. ]
  3048. ))
  3049. characterMakers.push(() => makeCharacter(
  3050. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3051. {
  3052. front: {
  3053. height: math.unit(6, "feet"),
  3054. weight: math.unit(75, "kg"),
  3055. name: "Front",
  3056. image: {
  3057. source: "./media/characters/sefer/front.svg",
  3058. extra: 848 / 659,
  3059. bottom: 28.3 / 876.442
  3060. }
  3061. },
  3062. back: {
  3063. height: math.unit(6, "feet"),
  3064. weight: math.unit(75, "kg"),
  3065. name: "Back",
  3066. image: {
  3067. source: "./media/characters/sefer/back.svg",
  3068. extra: 864 / 695,
  3069. bottom: 10 / 871
  3070. }
  3071. },
  3072. frontDressed: {
  3073. height: math.unit(6, "feet"),
  3074. weight: math.unit(75, "kg"),
  3075. name: "Front (Dressed)",
  3076. image: {
  3077. source: "./media/characters/sefer/front-dressed.svg",
  3078. extra: 839 / 653,
  3079. bottom: 37.6 / 878
  3080. }
  3081. },
  3082. },
  3083. [
  3084. {
  3085. name: "Normal",
  3086. height: math.unit(6, "feet"),
  3087. default: true
  3088. },
  3089. ]
  3090. ))
  3091. characterMakers.push(() => makeCharacter(
  3092. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3093. {
  3094. body: {
  3095. height: math.unit(2.2428, "meter"),
  3096. weight: math.unit(124.738, "kg"),
  3097. name: "Body",
  3098. image: {
  3099. extra: 1225 / 1050,
  3100. source: "./media/characters/north/front.svg"
  3101. }
  3102. }
  3103. },
  3104. [
  3105. {
  3106. name: "Micro",
  3107. height: math.unit(4, "inches")
  3108. },
  3109. {
  3110. name: "Macro",
  3111. height: math.unit(63, "meters")
  3112. },
  3113. {
  3114. name: "Megamacro",
  3115. height: math.unit(101, "miles"),
  3116. default: true
  3117. }
  3118. ]
  3119. ))
  3120. characterMakers.push(() => makeCharacter(
  3121. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3122. {
  3123. angled: {
  3124. height: math.unit(4, "meter"),
  3125. weight: math.unit(150, "kg"),
  3126. name: "Angled",
  3127. image: {
  3128. source: "./media/characters/talan/angled-sfw.svg",
  3129. bottom: 29 / 3734
  3130. }
  3131. },
  3132. angledNsfw: {
  3133. height: math.unit(4, "meter"),
  3134. weight: math.unit(150, "kg"),
  3135. name: "Angled (NSFW)",
  3136. image: {
  3137. source: "./media/characters/talan/angled-nsfw.svg",
  3138. bottom: 29 / 3734
  3139. }
  3140. },
  3141. frontNsfw: {
  3142. height: math.unit(4, "meter"),
  3143. weight: math.unit(150, "kg"),
  3144. name: "Front (NSFW)",
  3145. image: {
  3146. source: "./media/characters/talan/front-nsfw.svg",
  3147. bottom: 29 / 3734
  3148. }
  3149. },
  3150. sideNsfw: {
  3151. height: math.unit(4, "meter"),
  3152. weight: math.unit(150, "kg"),
  3153. name: "Side (NSFW)",
  3154. image: {
  3155. source: "./media/characters/talan/side-nsfw.svg",
  3156. bottom: 29 / 3734
  3157. }
  3158. },
  3159. back: {
  3160. height: math.unit(4, "meter"),
  3161. weight: math.unit(150, "kg"),
  3162. name: "Back",
  3163. image: {
  3164. source: "./media/characters/talan/back.svg"
  3165. }
  3166. },
  3167. dickBottom: {
  3168. height: math.unit(0.621, "meter"),
  3169. name: "Dick (Bottom)",
  3170. image: {
  3171. source: "./media/characters/talan/dick-bottom.svg"
  3172. }
  3173. },
  3174. dickTop: {
  3175. height: math.unit(0.621, "meter"),
  3176. name: "Dick (Top)",
  3177. image: {
  3178. source: "./media/characters/talan/dick-top.svg"
  3179. }
  3180. },
  3181. dickSide: {
  3182. height: math.unit(0.305, "meter"),
  3183. name: "Dick (Side)",
  3184. image: {
  3185. source: "./media/characters/talan/dick-side.svg"
  3186. }
  3187. },
  3188. dickFront: {
  3189. height: math.unit(0.305, "meter"),
  3190. name: "Dick (Front)",
  3191. image: {
  3192. source: "./media/characters/talan/dick-front.svg"
  3193. }
  3194. },
  3195. },
  3196. [
  3197. {
  3198. name: "Normal",
  3199. height: math.unit(4, "meters")
  3200. },
  3201. {
  3202. name: "Macro",
  3203. height: math.unit(100, "meters")
  3204. },
  3205. {
  3206. name: "Megamacro",
  3207. height: math.unit(2, "miles"),
  3208. default: true
  3209. },
  3210. {
  3211. name: "Gigamacro",
  3212. height: math.unit(5000, "miles")
  3213. },
  3214. {
  3215. name: "Teramacro",
  3216. height: math.unit(100, "parsecs")
  3217. }
  3218. ]
  3219. ))
  3220. characterMakers.push(() => makeCharacter(
  3221. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3222. {
  3223. front: {
  3224. height: math.unit(2, "meter"),
  3225. weight: math.unit(90, "kg"),
  3226. name: "Front",
  3227. image: {
  3228. source: "./media/characters/gael'rathus/front.svg"
  3229. }
  3230. },
  3231. frontAlt: {
  3232. height: math.unit(2, "meter"),
  3233. weight: math.unit(90, "kg"),
  3234. name: "Front (alt)",
  3235. image: {
  3236. source: "./media/characters/gael'rathus/front-alt.svg"
  3237. }
  3238. },
  3239. frontAlt2: {
  3240. height: math.unit(2, "meter"),
  3241. weight: math.unit(90, "kg"),
  3242. name: "Front (alt 2)",
  3243. image: {
  3244. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3245. }
  3246. }
  3247. },
  3248. [
  3249. {
  3250. name: "Normal",
  3251. height: math.unit(9, "feet"),
  3252. default: true
  3253. },
  3254. {
  3255. name: "Large",
  3256. height: math.unit(25, "feet")
  3257. },
  3258. {
  3259. name: "Macro",
  3260. height: math.unit(0.25, "miles")
  3261. },
  3262. {
  3263. name: "Megamacro",
  3264. height: math.unit(10, "miles")
  3265. }
  3266. ]
  3267. ))
  3268. characterMakers.push(() => makeCharacter(
  3269. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3270. {
  3271. side: {
  3272. height: math.unit(2, "meter"),
  3273. weight: math.unit(140, "kg"),
  3274. name: "Side",
  3275. image: {
  3276. source: "./media/characters/sosha/side.svg",
  3277. bottom: 0.042
  3278. }
  3279. },
  3280. },
  3281. [
  3282. {
  3283. name: "Normal",
  3284. height: math.unit(12, "feet"),
  3285. default: true
  3286. }
  3287. ]
  3288. ))
  3289. characterMakers.push(() => makeCharacter(
  3290. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3291. {
  3292. side: {
  3293. height: math.unit(5 + 5 / 12, "feet"),
  3294. weight: math.unit(170, "kg"),
  3295. name: "Side",
  3296. image: {
  3297. source: "./media/characters/runnola/side.svg",
  3298. extra: 741 / 448,
  3299. bottom: 0.05
  3300. }
  3301. },
  3302. },
  3303. [
  3304. {
  3305. name: "Small",
  3306. height: math.unit(3, "feet")
  3307. },
  3308. {
  3309. name: "Normal",
  3310. height: math.unit(5 + 5 / 12, "feet"),
  3311. default: true
  3312. },
  3313. {
  3314. name: "Big",
  3315. height: math.unit(10, "feet")
  3316. },
  3317. ]
  3318. ))
  3319. characterMakers.push(() => makeCharacter(
  3320. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3321. {
  3322. front: {
  3323. height: math.unit(2, "meter"),
  3324. weight: math.unit(50, "kg"),
  3325. name: "Front",
  3326. image: {
  3327. source: "./media/characters/kurribird/front.svg",
  3328. bottom: 0.015
  3329. }
  3330. },
  3331. frontAlt: {
  3332. height: math.unit(1.5, "meter"),
  3333. weight: math.unit(50, "kg"),
  3334. name: "Front (Alt)",
  3335. image: {
  3336. source: "./media/characters/kurribird/front-alt.svg",
  3337. extra: 1.45
  3338. }
  3339. },
  3340. },
  3341. [
  3342. {
  3343. name: "Normal",
  3344. height: math.unit(7, "feet")
  3345. },
  3346. {
  3347. name: "Big",
  3348. height: math.unit(12, "feet"),
  3349. default: true
  3350. },
  3351. {
  3352. name: "Macro",
  3353. height: math.unit(1500, "feet")
  3354. },
  3355. {
  3356. name: "Megamacro",
  3357. height: math.unit(2, "miles")
  3358. }
  3359. ]
  3360. ))
  3361. characterMakers.push(() => makeCharacter(
  3362. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3363. {
  3364. front: {
  3365. height: math.unit(2, "meter"),
  3366. weight: math.unit(80, "kg"),
  3367. name: "Front",
  3368. image: {
  3369. source: "./media/characters/elbial/front.svg",
  3370. extra: 1643 / 1556,
  3371. bottom: 60.2 / 1696
  3372. }
  3373. },
  3374. side: {
  3375. height: math.unit(2, "meter"),
  3376. weight: math.unit(80, "kg"),
  3377. name: "Side",
  3378. image: {
  3379. source: "./media/characters/elbial/side.svg",
  3380. extra: 1630 / 1565,
  3381. bottom: 71.5 / 1697
  3382. }
  3383. },
  3384. back: {
  3385. height: math.unit(2, "meter"),
  3386. weight: math.unit(80, "kg"),
  3387. name: "Back",
  3388. image: {
  3389. source: "./media/characters/elbial/back.svg",
  3390. extra: 1668 / 1595,
  3391. bottom: 5.6 / 1672
  3392. }
  3393. },
  3394. frontDressed: {
  3395. height: math.unit(2, "meter"),
  3396. weight: math.unit(80, "kg"),
  3397. name: "Front (Dressed)",
  3398. image: {
  3399. source: "./media/characters/elbial/front-dressed.svg",
  3400. extra: 1653 / 1584,
  3401. bottom: 57 / 1708
  3402. }
  3403. },
  3404. genitals: {
  3405. height: math.unit(2 / 3.367, "meter"),
  3406. name: "Genitals",
  3407. image: {
  3408. source: "./media/characters/elbial/genitals.svg"
  3409. }
  3410. },
  3411. },
  3412. [
  3413. {
  3414. name: "Large",
  3415. height: math.unit(100, "feet")
  3416. },
  3417. {
  3418. name: "Macro",
  3419. height: math.unit(500, "feet"),
  3420. default: true
  3421. },
  3422. {
  3423. name: "Megamacro",
  3424. height: math.unit(10, "miles")
  3425. },
  3426. {
  3427. name: "Gigamacro",
  3428. height: math.unit(25000, "miles")
  3429. },
  3430. {
  3431. name: "Full-Size",
  3432. height: math.unit(8000000, "gigaparsecs")
  3433. }
  3434. ]
  3435. ))
  3436. characterMakers.push(() => makeCharacter(
  3437. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3438. {
  3439. front: {
  3440. height: math.unit(2, "meter"),
  3441. weight: math.unit(60, "kg"),
  3442. name: "Front",
  3443. image: {
  3444. source: "./media/characters/noah/front.svg"
  3445. }
  3446. },
  3447. talons: {
  3448. height: math.unit(0.315, "meter"),
  3449. name: "Talons",
  3450. image: {
  3451. source: "./media/characters/noah/talons.svg"
  3452. }
  3453. }
  3454. },
  3455. [
  3456. {
  3457. name: "Large",
  3458. height: math.unit(50, "feet")
  3459. },
  3460. {
  3461. name: "Macro",
  3462. height: math.unit(750, "feet"),
  3463. default: true
  3464. },
  3465. {
  3466. name: "Megamacro",
  3467. height: math.unit(50, "miles")
  3468. },
  3469. {
  3470. name: "Gigamacro",
  3471. height: math.unit(100000, "miles")
  3472. },
  3473. {
  3474. name: "Full-Size",
  3475. height: math.unit(3000000000, "miles")
  3476. }
  3477. ]
  3478. ))
  3479. characterMakers.push(() => makeCharacter(
  3480. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3481. {
  3482. front: {
  3483. height: math.unit(2, "meter"),
  3484. weight: math.unit(80, "kg"),
  3485. name: "Front",
  3486. image: {
  3487. source: "./media/characters/natalya/front.svg"
  3488. }
  3489. },
  3490. back: {
  3491. height: math.unit(2, "meter"),
  3492. weight: math.unit(80, "kg"),
  3493. name: "Back",
  3494. image: {
  3495. source: "./media/characters/natalya/back.svg"
  3496. }
  3497. }
  3498. },
  3499. [
  3500. {
  3501. name: "Normal",
  3502. height: math.unit(150, "feet"),
  3503. default: true
  3504. },
  3505. {
  3506. name: "Megamacro",
  3507. height: math.unit(5, "miles")
  3508. },
  3509. {
  3510. name: "Full-Size",
  3511. height: math.unit(600, "kiloparsecs")
  3512. }
  3513. ]
  3514. ))
  3515. characterMakers.push(() => makeCharacter(
  3516. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3517. {
  3518. front: {
  3519. height: math.unit(2, "meter"),
  3520. weight: math.unit(50, "kg"),
  3521. name: "Front",
  3522. image: {
  3523. source: "./media/characters/erestrebah/front.svg",
  3524. extra: 1262/1162,
  3525. bottom: 96/1358
  3526. }
  3527. },
  3528. back: {
  3529. height: math.unit(2, "meter"),
  3530. weight: math.unit(50, "kg"),
  3531. name: "Back",
  3532. image: {
  3533. source: "./media/characters/erestrebah/back.svg",
  3534. extra: 1257/1139,
  3535. bottom: 13/1270
  3536. }
  3537. },
  3538. wing: {
  3539. height: math.unit(2, "meter"),
  3540. weight: math.unit(50, "kg"),
  3541. name: "Wing",
  3542. image: {
  3543. source: "./media/characters/erestrebah/wing.svg",
  3544. extra: 1262/1162,
  3545. bottom: 96/1358
  3546. }
  3547. },
  3548. mouth: {
  3549. height: math.unit(0.39, "feet"),
  3550. name: "Mouth",
  3551. image: {
  3552. source: "./media/characters/erestrebah/mouth.svg"
  3553. }
  3554. }
  3555. },
  3556. [
  3557. {
  3558. name: "Normal",
  3559. height: math.unit(10, "feet")
  3560. },
  3561. {
  3562. name: "Large",
  3563. height: math.unit(50, "feet"),
  3564. default: true
  3565. },
  3566. {
  3567. name: "Macro",
  3568. height: math.unit(300, "feet")
  3569. },
  3570. {
  3571. name: "Macro+",
  3572. height: math.unit(750, "feet")
  3573. },
  3574. {
  3575. name: "Megamacro",
  3576. height: math.unit(3, "miles")
  3577. }
  3578. ]
  3579. ))
  3580. characterMakers.push(() => makeCharacter(
  3581. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3582. {
  3583. front: {
  3584. height: math.unit(2, "meter"),
  3585. weight: math.unit(80, "kg"),
  3586. name: "Front",
  3587. image: {
  3588. source: "./media/characters/jennifer/front.svg",
  3589. bottom: 0.11,
  3590. extra: 1.16
  3591. }
  3592. },
  3593. frontAlt: {
  3594. height: math.unit(2, "meter"),
  3595. weight: math.unit(80, "kg"),
  3596. name: "Front (Alt)",
  3597. image: {
  3598. source: "./media/characters/jennifer/front-alt.svg"
  3599. }
  3600. }
  3601. },
  3602. [
  3603. {
  3604. name: "Canon Height",
  3605. height: math.unit(120, "feet"),
  3606. default: true
  3607. },
  3608. {
  3609. name: "Macro+",
  3610. height: math.unit(300, "feet")
  3611. },
  3612. {
  3613. name: "Megamacro",
  3614. height: math.unit(20000, "feet")
  3615. }
  3616. ]
  3617. ))
  3618. characterMakers.push(() => makeCharacter(
  3619. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3620. {
  3621. front: {
  3622. height: math.unit(2, "meter"),
  3623. weight: math.unit(50, "kg"),
  3624. name: "Front",
  3625. image: {
  3626. source: "./media/characters/kalista/front.svg",
  3627. extra: 1947 / 1700,
  3628. bottom: 76.6 / 1412.98
  3629. }
  3630. },
  3631. back: {
  3632. height: math.unit(2, "meter"),
  3633. weight: math.unit(50, "kg"),
  3634. name: "Back",
  3635. image: {
  3636. source: "./media/characters/kalista/back.svg",
  3637. extra: 1366 / 1156,
  3638. bottom: 33.9 / 1362.78
  3639. }
  3640. }
  3641. },
  3642. [
  3643. {
  3644. name: "Uncomfortably Small",
  3645. height: math.unit(10, "feet")
  3646. },
  3647. {
  3648. name: "Small",
  3649. height: math.unit(30, "feet")
  3650. },
  3651. {
  3652. name: "Macro",
  3653. height: math.unit(100, "feet"),
  3654. default: true
  3655. },
  3656. {
  3657. name: "Macro+",
  3658. height: math.unit(2000, "feet")
  3659. },
  3660. {
  3661. name: "True Form",
  3662. height: math.unit(8924, "miles")
  3663. }
  3664. ]
  3665. ))
  3666. characterMakers.push(() => makeCharacter(
  3667. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3668. {
  3669. front: {
  3670. height: math.unit(2, "meter"),
  3671. weight: math.unit(120, "kg"),
  3672. name: "Front",
  3673. image: {
  3674. source: "./media/characters/ggv/front.svg"
  3675. }
  3676. },
  3677. side: {
  3678. height: math.unit(2, "meter"),
  3679. weight: math.unit(120, "kg"),
  3680. name: "Side",
  3681. image: {
  3682. source: "./media/characters/ggv/side.svg"
  3683. }
  3684. }
  3685. },
  3686. [
  3687. {
  3688. name: "Extremely Puny",
  3689. height: math.unit(9 + 5 / 12, "feet")
  3690. },
  3691. {
  3692. name: "Horribly Small",
  3693. height: math.unit(47.7, "miles"),
  3694. default: true
  3695. },
  3696. {
  3697. name: "Reasonably Sized",
  3698. height: math.unit(25000, "parsecs")
  3699. },
  3700. {
  3701. name: "Slightly Uncompressed",
  3702. height: math.unit(7.77e31, "parsecs")
  3703. },
  3704. {
  3705. name: "Omniversal",
  3706. height: math.unit(1e300, "meters")
  3707. },
  3708. ]
  3709. ))
  3710. characterMakers.push(() => makeCharacter(
  3711. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3712. {
  3713. front: {
  3714. height: math.unit(2, "meter"),
  3715. weight: math.unit(75, "lb"),
  3716. name: "Front",
  3717. image: {
  3718. source: "./media/characters/napalm/front.svg"
  3719. }
  3720. },
  3721. back: {
  3722. height: math.unit(2, "meter"),
  3723. weight: math.unit(75, "lb"),
  3724. name: "Back",
  3725. image: {
  3726. source: "./media/characters/napalm/back.svg"
  3727. }
  3728. }
  3729. },
  3730. [
  3731. {
  3732. name: "Standard",
  3733. height: math.unit(55, "feet"),
  3734. default: true
  3735. }
  3736. ]
  3737. ))
  3738. characterMakers.push(() => makeCharacter(
  3739. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3740. {
  3741. front: {
  3742. height: math.unit(7 + 5 / 6, "feet"),
  3743. weight: math.unit(325, "lb"),
  3744. name: "Front",
  3745. image: {
  3746. source: "./media/characters/asana/front.svg",
  3747. extra: 1133 / 1060,
  3748. bottom: 15.2 / 1148.6
  3749. }
  3750. },
  3751. back: {
  3752. height: math.unit(7 + 5 / 6, "feet"),
  3753. weight: math.unit(325, "lb"),
  3754. name: "Back",
  3755. image: {
  3756. source: "./media/characters/asana/back.svg",
  3757. extra: 1114 / 1043,
  3758. bottom: 5 / 1120
  3759. }
  3760. },
  3761. dressedDark: {
  3762. height: math.unit(7 + 5 / 6, "feet"),
  3763. weight: math.unit(325, "lb"),
  3764. name: "Dressed (Dark)",
  3765. image: {
  3766. source: "./media/characters/asana/dressed-dark.svg",
  3767. extra: 1133 / 1060,
  3768. bottom: 15.2 / 1148.6
  3769. }
  3770. },
  3771. dressedLight: {
  3772. height: math.unit(7 + 5 / 6, "feet"),
  3773. weight: math.unit(325, "lb"),
  3774. name: "Dressed (Light)",
  3775. image: {
  3776. source: "./media/characters/asana/dressed-light.svg",
  3777. extra: 1133 / 1060,
  3778. bottom: 15.2 / 1148.6
  3779. }
  3780. },
  3781. },
  3782. [
  3783. {
  3784. name: "Standard",
  3785. height: math.unit(7 + 5 / 6, "feet"),
  3786. default: true
  3787. },
  3788. {
  3789. name: "Large",
  3790. height: math.unit(10, "meters")
  3791. },
  3792. {
  3793. name: "Macro",
  3794. height: math.unit(2500, "meters")
  3795. },
  3796. {
  3797. name: "Megamacro",
  3798. height: math.unit(5e6, "meters")
  3799. },
  3800. {
  3801. name: "Examacro",
  3802. height: math.unit(5e12, "lightyears")
  3803. },
  3804. {
  3805. name: "Max Size",
  3806. height: math.unit(1e31, "lightyears")
  3807. }
  3808. ]
  3809. ))
  3810. characterMakers.push(() => makeCharacter(
  3811. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3812. {
  3813. front: {
  3814. height: math.unit(2, "meter"),
  3815. weight: math.unit(60, "kg"),
  3816. name: "Front",
  3817. image: {
  3818. source: "./media/characters/ebony/front.svg",
  3819. bottom: 0.03,
  3820. extra: 1045 / 810 + 0.03
  3821. }
  3822. },
  3823. side: {
  3824. height: math.unit(2, "meter"),
  3825. weight: math.unit(60, "kg"),
  3826. name: "Side",
  3827. image: {
  3828. source: "./media/characters/ebony/side.svg",
  3829. bottom: 0.03,
  3830. extra: 1045 / 810 + 0.03
  3831. }
  3832. },
  3833. back: {
  3834. height: math.unit(2, "meter"),
  3835. weight: math.unit(60, "kg"),
  3836. name: "Back",
  3837. image: {
  3838. source: "./media/characters/ebony/back.svg",
  3839. bottom: 0.01,
  3840. extra: 1045 / 810 + 0.01
  3841. }
  3842. },
  3843. },
  3844. [
  3845. // TODO check why I did this lol
  3846. {
  3847. name: "Standard",
  3848. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3849. default: true
  3850. },
  3851. {
  3852. name: "Macro",
  3853. height: math.unit(200, "feet")
  3854. },
  3855. {
  3856. name: "Gigamacro",
  3857. height: math.unit(13000, "km")
  3858. }
  3859. ]
  3860. ))
  3861. characterMakers.push(() => makeCharacter(
  3862. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3863. {
  3864. front: {
  3865. height: math.unit(6, "feet"),
  3866. weight: math.unit(175, "lb"),
  3867. name: "Front",
  3868. image: {
  3869. source: "./media/characters/mountain/front.svg",
  3870. extra: 972 / 955,
  3871. bottom: 64 / 1036.6
  3872. }
  3873. },
  3874. back: {
  3875. height: math.unit(6, "feet"),
  3876. weight: math.unit(175, "lb"),
  3877. name: "Back",
  3878. image: {
  3879. source: "./media/characters/mountain/back.svg",
  3880. extra: 970 / 950,
  3881. bottom: 28.25 / 999
  3882. }
  3883. },
  3884. },
  3885. [
  3886. {
  3887. name: "Large",
  3888. height: math.unit(20, "meters")
  3889. },
  3890. {
  3891. name: "Macro",
  3892. height: math.unit(300, "meters")
  3893. },
  3894. {
  3895. name: "Gigamacro",
  3896. height: math.unit(10000, "km"),
  3897. default: true
  3898. },
  3899. {
  3900. name: "Examacro",
  3901. height: math.unit(10e9, "lightyears")
  3902. }
  3903. ]
  3904. ))
  3905. characterMakers.push(() => makeCharacter(
  3906. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3907. {
  3908. front: {
  3909. height: math.unit(8, "feet"),
  3910. weight: math.unit(500, "lb"),
  3911. name: "Front",
  3912. image: {
  3913. source: "./media/characters/rick/front.svg"
  3914. }
  3915. }
  3916. },
  3917. [
  3918. {
  3919. name: "Normal",
  3920. height: math.unit(8, "feet"),
  3921. default: true
  3922. },
  3923. {
  3924. name: "Macro",
  3925. height: math.unit(5, "km")
  3926. }
  3927. ]
  3928. ))
  3929. characterMakers.push(() => makeCharacter(
  3930. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3931. {
  3932. front: {
  3933. height: math.unit(8, "feet"),
  3934. weight: math.unit(120, "lb"),
  3935. name: "Front",
  3936. image: {
  3937. source: "./media/characters/ona/front.svg"
  3938. }
  3939. },
  3940. frontAlt: {
  3941. height: math.unit(8, "feet"),
  3942. weight: math.unit(120, "lb"),
  3943. name: "Front (Alt)",
  3944. image: {
  3945. source: "./media/characters/ona/front-alt.svg"
  3946. }
  3947. },
  3948. back: {
  3949. height: math.unit(8, "feet"),
  3950. weight: math.unit(120, "lb"),
  3951. name: "Back",
  3952. image: {
  3953. source: "./media/characters/ona/back.svg"
  3954. }
  3955. },
  3956. foot: {
  3957. height: math.unit(1.1, "feet"),
  3958. name: "Foot",
  3959. image: {
  3960. source: "./media/characters/ona/foot.svg"
  3961. }
  3962. }
  3963. },
  3964. [
  3965. {
  3966. name: "Megamacro",
  3967. height: math.unit(70, "km"),
  3968. default: true
  3969. },
  3970. {
  3971. name: "Gigamacro",
  3972. height: math.unit(681818, "miles")
  3973. },
  3974. {
  3975. name: "Examacro",
  3976. height: math.unit(3800000, "lightyears")
  3977. },
  3978. ]
  3979. ))
  3980. characterMakers.push(() => makeCharacter(
  3981. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3982. {
  3983. front: {
  3984. height: math.unit(12, "feet"),
  3985. weight: math.unit(3000, "lb"),
  3986. name: "Front",
  3987. image: {
  3988. source: "./media/characters/mech/front.svg",
  3989. extra: 2900 / 2770,
  3990. bottom: 110 / 3010
  3991. }
  3992. },
  3993. back: {
  3994. height: math.unit(12, "feet"),
  3995. weight: math.unit(3000, "lb"),
  3996. name: "Back",
  3997. image: {
  3998. source: "./media/characters/mech/back.svg",
  3999. extra: 3011 / 2890,
  4000. bottom: 94 / 3105
  4001. }
  4002. },
  4003. maw: {
  4004. height: math.unit(3.07, "feet"),
  4005. name: "Maw",
  4006. image: {
  4007. source: "./media/characters/mech/maw.svg"
  4008. }
  4009. },
  4010. head: {
  4011. height: math.unit(2.82, "feet"),
  4012. name: "Head",
  4013. image: {
  4014. source: "./media/characters/mech/head.svg"
  4015. }
  4016. },
  4017. dick: {
  4018. height: math.unit(1.43, "feet"),
  4019. name: "Dick",
  4020. image: {
  4021. source: "./media/characters/mech/dick.svg"
  4022. }
  4023. },
  4024. },
  4025. [
  4026. {
  4027. name: "Normal",
  4028. height: math.unit(12, "feet")
  4029. },
  4030. {
  4031. name: "Macro",
  4032. height: math.unit(300, "feet"),
  4033. default: true
  4034. },
  4035. {
  4036. name: "Macro+",
  4037. height: math.unit(1500, "feet")
  4038. },
  4039. ]
  4040. ))
  4041. characterMakers.push(() => makeCharacter(
  4042. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4043. {
  4044. front: {
  4045. height: math.unit(1.3, "meter"),
  4046. weight: math.unit(30, "kg"),
  4047. name: "Front",
  4048. image: {
  4049. source: "./media/characters/gregory/front.svg",
  4050. }
  4051. }
  4052. },
  4053. [
  4054. {
  4055. name: "Normal",
  4056. height: math.unit(1.3, "meter"),
  4057. default: true
  4058. },
  4059. {
  4060. name: "Macro",
  4061. height: math.unit(20, "meter")
  4062. }
  4063. ]
  4064. ))
  4065. characterMakers.push(() => makeCharacter(
  4066. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4067. {
  4068. front: {
  4069. height: math.unit(2.8, "meter"),
  4070. weight: math.unit(200, "kg"),
  4071. name: "Front",
  4072. image: {
  4073. source: "./media/characters/elory/front.svg",
  4074. }
  4075. }
  4076. },
  4077. [
  4078. {
  4079. name: "Normal",
  4080. height: math.unit(2.8, "meter"),
  4081. default: true
  4082. },
  4083. {
  4084. name: "Macro",
  4085. height: math.unit(38, "meter")
  4086. }
  4087. ]
  4088. ))
  4089. characterMakers.push(() => makeCharacter(
  4090. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4091. {
  4092. front: {
  4093. height: math.unit(470, "feet"),
  4094. weight: math.unit(924, "tons"),
  4095. name: "Front",
  4096. image: {
  4097. source: "./media/characters/angelpatamon/front.svg",
  4098. }
  4099. }
  4100. },
  4101. [
  4102. {
  4103. name: "Normal",
  4104. height: math.unit(470, "feet"),
  4105. default: true
  4106. },
  4107. {
  4108. name: "Deity Size I",
  4109. height: math.unit(28651.2, "km")
  4110. },
  4111. {
  4112. name: "Deity Size II",
  4113. height: math.unit(171907.2, "km")
  4114. }
  4115. ]
  4116. ))
  4117. characterMakers.push(() => makeCharacter(
  4118. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4119. {
  4120. side: {
  4121. height: math.unit(7.2, "meter"),
  4122. weight: math.unit(8.2, "tons"),
  4123. name: "Side",
  4124. image: {
  4125. source: "./media/characters/cryae/side.svg",
  4126. extra: 3500 / 1500
  4127. }
  4128. }
  4129. },
  4130. [
  4131. {
  4132. name: "Normal",
  4133. height: math.unit(7.2, "meter"),
  4134. default: true
  4135. }
  4136. ]
  4137. ))
  4138. characterMakers.push(() => makeCharacter(
  4139. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4140. {
  4141. front: {
  4142. height: math.unit(6, "feet"),
  4143. weight: math.unit(175, "lb"),
  4144. name: "Front",
  4145. image: {
  4146. source: "./media/characters/xera/front.svg",
  4147. extra: 2377 / 1972,
  4148. bottom: 75.5 / 2452
  4149. }
  4150. },
  4151. side: {
  4152. height: math.unit(6, "feet"),
  4153. weight: math.unit(175, "lb"),
  4154. name: "Side",
  4155. image: {
  4156. source: "./media/characters/xera/side.svg",
  4157. extra: 2345 / 2019,
  4158. bottom: 39.7 / 2384
  4159. }
  4160. },
  4161. back: {
  4162. height: math.unit(6, "feet"),
  4163. weight: math.unit(175, "lb"),
  4164. name: "Back",
  4165. image: {
  4166. source: "./media/characters/xera/back.svg",
  4167. extra: 2095 / 1984,
  4168. bottom: 67 / 2166
  4169. }
  4170. },
  4171. },
  4172. [
  4173. {
  4174. name: "Small",
  4175. height: math.unit(10, "feet")
  4176. },
  4177. {
  4178. name: "Macro",
  4179. height: math.unit(500, "meters"),
  4180. default: true
  4181. },
  4182. {
  4183. name: "Macro+",
  4184. height: math.unit(10, "km")
  4185. },
  4186. {
  4187. name: "Gigamacro",
  4188. height: math.unit(25000, "km")
  4189. },
  4190. {
  4191. name: "Teramacro",
  4192. height: math.unit(3e6, "km")
  4193. }
  4194. ]
  4195. ))
  4196. characterMakers.push(() => makeCharacter(
  4197. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4198. {
  4199. front: {
  4200. height: math.unit(6, "feet"),
  4201. weight: math.unit(175, "lb"),
  4202. name: "Front",
  4203. image: {
  4204. source: "./media/characters/nebula/front.svg",
  4205. extra: 2566 / 2362,
  4206. bottom: 81 / 2644
  4207. }
  4208. }
  4209. },
  4210. [
  4211. {
  4212. name: "Small",
  4213. height: math.unit(4.5, "meters")
  4214. },
  4215. {
  4216. name: "Macro",
  4217. height: math.unit(1500, "meters"),
  4218. default: true
  4219. },
  4220. {
  4221. name: "Megamacro",
  4222. height: math.unit(150, "km")
  4223. },
  4224. {
  4225. name: "Gigamacro",
  4226. height: math.unit(27000, "km")
  4227. }
  4228. ]
  4229. ))
  4230. characterMakers.push(() => makeCharacter(
  4231. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4232. {
  4233. front: {
  4234. height: math.unit(6, "feet"),
  4235. weight: math.unit(225, "lb"),
  4236. name: "Front",
  4237. image: {
  4238. source: "./media/characters/abysgar/front.svg"
  4239. }
  4240. }
  4241. },
  4242. [
  4243. {
  4244. name: "Small",
  4245. height: math.unit(4.5, "meters")
  4246. },
  4247. {
  4248. name: "Macro",
  4249. height: math.unit(1250, "meters"),
  4250. default: true
  4251. },
  4252. {
  4253. name: "Megamacro",
  4254. height: math.unit(125, "km")
  4255. },
  4256. {
  4257. name: "Gigamacro",
  4258. height: math.unit(26000, "km")
  4259. }
  4260. ]
  4261. ))
  4262. characterMakers.push(() => makeCharacter(
  4263. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4264. {
  4265. front: {
  4266. height: math.unit(6, "feet"),
  4267. weight: math.unit(180, "lb"),
  4268. name: "Front",
  4269. image: {
  4270. source: "./media/characters/yakuz/front.svg"
  4271. }
  4272. }
  4273. },
  4274. [
  4275. {
  4276. name: "Small",
  4277. height: math.unit(5, "meters")
  4278. },
  4279. {
  4280. name: "Macro",
  4281. height: math.unit(1500, "meters"),
  4282. default: true
  4283. },
  4284. {
  4285. name: "Megamacro",
  4286. height: math.unit(200, "km")
  4287. },
  4288. {
  4289. name: "Gigamacro",
  4290. height: math.unit(100000, "km")
  4291. }
  4292. ]
  4293. ))
  4294. characterMakers.push(() => makeCharacter(
  4295. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4296. {
  4297. front: {
  4298. height: math.unit(6, "feet"),
  4299. weight: math.unit(175, "lb"),
  4300. name: "Front",
  4301. image: {
  4302. source: "./media/characters/mirova/front.svg",
  4303. extra: 3334 / 3071,
  4304. bottom: 42 / 3375.6
  4305. }
  4306. }
  4307. },
  4308. [
  4309. {
  4310. name: "Small",
  4311. height: math.unit(5, "meters")
  4312. },
  4313. {
  4314. name: "Macro",
  4315. height: math.unit(900, "meters"),
  4316. default: true
  4317. },
  4318. {
  4319. name: "Megamacro",
  4320. height: math.unit(135, "km")
  4321. },
  4322. {
  4323. name: "Gigamacro",
  4324. height: math.unit(20000, "km")
  4325. }
  4326. ]
  4327. ))
  4328. characterMakers.push(() => makeCharacter(
  4329. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4330. {
  4331. side: {
  4332. height: math.unit(28.35, "feet"),
  4333. weight: math.unit(99.75, "tons"),
  4334. name: "Side",
  4335. image: {
  4336. source: "./media/characters/asana-mech/side.svg",
  4337. extra: 923 / 699,
  4338. bottom: 50 / 975
  4339. }
  4340. },
  4341. chaingun: {
  4342. height: math.unit(7, "feet"),
  4343. weight: math.unit(2400, "lb"),
  4344. name: "Chaingun",
  4345. image: {
  4346. source: "./media/characters/asana-mech/chaingun.svg"
  4347. }
  4348. },
  4349. laser: {
  4350. height: math.unit(7.12, "feet"),
  4351. weight: math.unit(2000, "lb"),
  4352. name: "Laser",
  4353. image: {
  4354. source: "./media/characters/asana-mech/laser.svg"
  4355. }
  4356. },
  4357. },
  4358. [
  4359. {
  4360. name: "Normal",
  4361. height: math.unit(28.35, "feet"),
  4362. default: true
  4363. },
  4364. {
  4365. name: "Macro",
  4366. height: math.unit(2500, "feet")
  4367. },
  4368. {
  4369. name: "Megamacro",
  4370. height: math.unit(25, "miles")
  4371. },
  4372. {
  4373. name: "Examacro",
  4374. height: math.unit(6e8, "lightyears")
  4375. },
  4376. ]
  4377. ))
  4378. characterMakers.push(() => makeCharacter(
  4379. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4380. {
  4381. front: {
  4382. height: math.unit(5, "meters"),
  4383. weight: math.unit(1000, "kg"),
  4384. name: "Front",
  4385. image: {
  4386. source: "./media/characters/asche/front.svg",
  4387. extra: 1258 / 1190,
  4388. bottom: 47 / 1305
  4389. }
  4390. },
  4391. frontUnderwear: {
  4392. height: math.unit(5, "meters"),
  4393. weight: math.unit(1000, "kg"),
  4394. name: "Front (Underwear)",
  4395. image: {
  4396. source: "./media/characters/asche/front-underwear.svg",
  4397. extra: 1258 / 1190,
  4398. bottom: 47 / 1305
  4399. }
  4400. },
  4401. frontDressed: {
  4402. height: math.unit(5, "meters"),
  4403. weight: math.unit(1000, "kg"),
  4404. name: "Front (Dressed)",
  4405. image: {
  4406. source: "./media/characters/asche/front-dressed.svg",
  4407. extra: 1258 / 1190,
  4408. bottom: 47 / 1305
  4409. }
  4410. },
  4411. frontArmor: {
  4412. height: math.unit(5, "meters"),
  4413. weight: math.unit(1000, "kg"),
  4414. name: "Front (Armored)",
  4415. image: {
  4416. source: "./media/characters/asche/front-armored.svg",
  4417. extra: 1374 / 1308,
  4418. bottom: 23 / 1397
  4419. }
  4420. },
  4421. mp724: {
  4422. height: math.unit(0.96, "meters"),
  4423. weight: math.unit(38, "kg"),
  4424. name: "H&K MP724",
  4425. image: {
  4426. source: "./media/characters/asche/h&k-mp724.svg"
  4427. }
  4428. },
  4429. side: {
  4430. height: math.unit(5, "meters"),
  4431. weight: math.unit(1000, "kg"),
  4432. name: "Side",
  4433. image: {
  4434. source: "./media/characters/asche/side.svg",
  4435. extra: 1717 / 1609,
  4436. bottom: 0.005
  4437. }
  4438. },
  4439. back: {
  4440. height: math.unit(5, "meters"),
  4441. weight: math.unit(1000, "kg"),
  4442. name: "Back",
  4443. image: {
  4444. source: "./media/characters/asche/back.svg",
  4445. extra: 1570 / 1501
  4446. }
  4447. },
  4448. },
  4449. [
  4450. {
  4451. name: "DEFCON 5",
  4452. height: math.unit(5, "meters")
  4453. },
  4454. {
  4455. name: "DEFCON 4",
  4456. height: math.unit(500, "meters"),
  4457. default: true
  4458. },
  4459. {
  4460. name: "DEFCON 3",
  4461. height: math.unit(5, "km")
  4462. },
  4463. {
  4464. name: "DEFCON 2",
  4465. height: math.unit(500, "km")
  4466. },
  4467. {
  4468. name: "DEFCON 1",
  4469. height: math.unit(500000, "km")
  4470. },
  4471. {
  4472. name: "DEFCON 0",
  4473. height: math.unit(3, "gigaparsecs")
  4474. },
  4475. ]
  4476. ))
  4477. characterMakers.push(() => makeCharacter(
  4478. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4479. {
  4480. front: {
  4481. height: math.unit(2, "meters"),
  4482. weight: math.unit(76, "kg"),
  4483. name: "Front",
  4484. image: {
  4485. source: "./media/characters/gale/front.svg"
  4486. }
  4487. },
  4488. frontAlt1: {
  4489. height: math.unit(2, "meters"),
  4490. weight: math.unit(76, "kg"),
  4491. name: "Front (Alt 1)",
  4492. image: {
  4493. source: "./media/characters/gale/front-alt-1.svg"
  4494. }
  4495. },
  4496. frontAlt2: {
  4497. height: math.unit(2, "meters"),
  4498. weight: math.unit(76, "kg"),
  4499. name: "Front (Alt 2)",
  4500. image: {
  4501. source: "./media/characters/gale/front-alt-2.svg"
  4502. }
  4503. },
  4504. },
  4505. [
  4506. {
  4507. name: "Normal",
  4508. height: math.unit(7, "feet")
  4509. },
  4510. {
  4511. name: "Macro",
  4512. height: math.unit(150, "feet"),
  4513. default: true
  4514. },
  4515. {
  4516. name: "Macro+",
  4517. height: math.unit(300, "feet")
  4518. },
  4519. ]
  4520. ))
  4521. characterMakers.push(() => makeCharacter(
  4522. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4523. {
  4524. front: {
  4525. height: math.unit(5 + 10/12, "feet"),
  4526. weight: math.unit(67, "kg"),
  4527. name: "Front",
  4528. image: {
  4529. source: "./media/characters/draylen/front.svg",
  4530. extra: 832/777,
  4531. bottom: 85/917
  4532. }
  4533. }
  4534. },
  4535. [
  4536. {
  4537. name: "Normal",
  4538. height: math.unit(5 + 10/12, "feet")
  4539. },
  4540. {
  4541. name: "Macro",
  4542. height: math.unit(150, "feet"),
  4543. default: true
  4544. }
  4545. ]
  4546. ))
  4547. characterMakers.push(() => makeCharacter(
  4548. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4549. {
  4550. front: {
  4551. height: math.unit(7 + 9 / 12, "feet"),
  4552. weight: math.unit(379, "lbs"),
  4553. name: "Front",
  4554. image: {
  4555. source: "./media/characters/chez/front.svg"
  4556. }
  4557. },
  4558. side: {
  4559. height: math.unit(7 + 9 / 12, "feet"),
  4560. weight: math.unit(379, "lbs"),
  4561. name: "Side",
  4562. image: {
  4563. source: "./media/characters/chez/side.svg"
  4564. }
  4565. }
  4566. },
  4567. [
  4568. {
  4569. name: "Normal",
  4570. height: math.unit(7 + 9 / 12, "feet"),
  4571. default: true
  4572. },
  4573. {
  4574. name: "God King",
  4575. height: math.unit(9750000, "meters")
  4576. }
  4577. ]
  4578. ))
  4579. characterMakers.push(() => makeCharacter(
  4580. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4581. {
  4582. front: {
  4583. height: math.unit(6, "feet"),
  4584. weight: math.unit(275, "lbs"),
  4585. name: "Front",
  4586. image: {
  4587. source: "./media/characters/kaylum/front.svg",
  4588. bottom: 0.01,
  4589. extra: 1166 / 1031
  4590. }
  4591. },
  4592. frontWingless: {
  4593. height: math.unit(6, "feet"),
  4594. weight: math.unit(275, "lbs"),
  4595. name: "Front (Wingless)",
  4596. image: {
  4597. source: "./media/characters/kaylum/front-wingless.svg",
  4598. bottom: 0.01,
  4599. extra: 1117 / 1031
  4600. }
  4601. }
  4602. },
  4603. [
  4604. {
  4605. name: "Normal",
  4606. height: math.unit(3.05, "meters")
  4607. },
  4608. {
  4609. name: "Master",
  4610. height: math.unit(5.5, "meters")
  4611. },
  4612. {
  4613. name: "Rampage",
  4614. height: math.unit(19, "meters")
  4615. },
  4616. {
  4617. name: "Macro Lite",
  4618. height: math.unit(37, "meters")
  4619. },
  4620. {
  4621. name: "Hyper Predator",
  4622. height: math.unit(61, "meters")
  4623. },
  4624. {
  4625. name: "Macro",
  4626. height: math.unit(138, "meters"),
  4627. default: true
  4628. }
  4629. ]
  4630. ))
  4631. characterMakers.push(() => makeCharacter(
  4632. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4633. {
  4634. front: {
  4635. height: math.unit(6, "feet"),
  4636. weight: math.unit(150, "lbs"),
  4637. name: "Front",
  4638. image: {
  4639. source: "./media/characters/geta/front.svg"
  4640. }
  4641. }
  4642. },
  4643. [
  4644. {
  4645. name: "Micro",
  4646. height: math.unit(3, "inches"),
  4647. default: true
  4648. },
  4649. {
  4650. name: "Normal",
  4651. height: math.unit(5 + 5 / 12, "feet")
  4652. }
  4653. ]
  4654. ))
  4655. characterMakers.push(() => makeCharacter(
  4656. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4657. {
  4658. front: {
  4659. height: math.unit(6, "feet"),
  4660. weight: math.unit(300, "lbs"),
  4661. name: "Front",
  4662. image: {
  4663. source: "./media/characters/tyrnn/front.svg"
  4664. }
  4665. }
  4666. },
  4667. [
  4668. {
  4669. name: "Main Height",
  4670. height: math.unit(355, "feet"),
  4671. default: true
  4672. },
  4673. {
  4674. name: "Fave. Height",
  4675. height: math.unit(2400, "feet")
  4676. }
  4677. ]
  4678. ))
  4679. characterMakers.push(() => makeCharacter(
  4680. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4681. {
  4682. front: {
  4683. height: math.unit(6, "feet"),
  4684. weight: math.unit(300, "lbs"),
  4685. name: "Front",
  4686. image: {
  4687. source: "./media/characters/appledectomy/front.svg"
  4688. }
  4689. }
  4690. },
  4691. [
  4692. {
  4693. name: "Macro",
  4694. height: math.unit(2500, "feet")
  4695. },
  4696. {
  4697. name: "Megamacro",
  4698. height: math.unit(50, "miles"),
  4699. default: true
  4700. },
  4701. {
  4702. name: "Gigamacro",
  4703. height: math.unit(5000, "miles")
  4704. },
  4705. {
  4706. name: "Teramacro",
  4707. height: math.unit(250000, "miles")
  4708. },
  4709. ]
  4710. ))
  4711. characterMakers.push(() => makeCharacter(
  4712. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4713. {
  4714. front: {
  4715. height: math.unit(6, "feet"),
  4716. weight: math.unit(200, "lbs"),
  4717. name: "Front",
  4718. image: {
  4719. source: "./media/characters/vulpes/front.svg",
  4720. extra: 573 / 543,
  4721. bottom: 0.033
  4722. }
  4723. },
  4724. side: {
  4725. height: math.unit(6, "feet"),
  4726. weight: math.unit(200, "lbs"),
  4727. name: "Side",
  4728. image: {
  4729. source: "./media/characters/vulpes/side.svg",
  4730. extra: 577 / 549,
  4731. bottom: 11 / 588
  4732. }
  4733. },
  4734. back: {
  4735. height: math.unit(6, "feet"),
  4736. weight: math.unit(200, "lbs"),
  4737. name: "Back",
  4738. image: {
  4739. source: "./media/characters/vulpes/back.svg",
  4740. extra: 573 / 549,
  4741. bottom: 20 / 593
  4742. }
  4743. },
  4744. feet: {
  4745. height: math.unit(1.276, "feet"),
  4746. name: "Feet",
  4747. image: {
  4748. source: "./media/characters/vulpes/feet.svg"
  4749. }
  4750. },
  4751. maw: {
  4752. height: math.unit(1.18, "feet"),
  4753. name: "Maw",
  4754. image: {
  4755. source: "./media/characters/vulpes/maw.svg"
  4756. }
  4757. },
  4758. },
  4759. [
  4760. {
  4761. name: "Micro",
  4762. height: math.unit(2, "inches")
  4763. },
  4764. {
  4765. name: "Normal",
  4766. height: math.unit(6.3, "feet")
  4767. },
  4768. {
  4769. name: "Macro",
  4770. height: math.unit(850, "feet")
  4771. },
  4772. {
  4773. name: "Megamacro",
  4774. height: math.unit(7500, "feet"),
  4775. default: true
  4776. },
  4777. {
  4778. name: "Gigamacro",
  4779. height: math.unit(570000, "miles")
  4780. }
  4781. ]
  4782. ))
  4783. characterMakers.push(() => makeCharacter(
  4784. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4785. {
  4786. front: {
  4787. height: math.unit(6, "feet"),
  4788. weight: math.unit(210, "lbs"),
  4789. name: "Front",
  4790. image: {
  4791. source: "./media/characters/rain-fallen/front.svg"
  4792. }
  4793. },
  4794. side: {
  4795. height: math.unit(6, "feet"),
  4796. weight: math.unit(210, "lbs"),
  4797. name: "Side",
  4798. image: {
  4799. source: "./media/characters/rain-fallen/side.svg"
  4800. }
  4801. },
  4802. back: {
  4803. height: math.unit(6, "feet"),
  4804. weight: math.unit(210, "lbs"),
  4805. name: "Back",
  4806. image: {
  4807. source: "./media/characters/rain-fallen/back.svg"
  4808. }
  4809. },
  4810. feral: {
  4811. height: math.unit(9, "feet"),
  4812. weight: math.unit(700, "lbs"),
  4813. name: "Feral",
  4814. image: {
  4815. source: "./media/characters/rain-fallen/feral.svg"
  4816. }
  4817. },
  4818. },
  4819. [
  4820. {
  4821. name: "Meddling with Mortals",
  4822. height: math.unit(8 + 8/12, "feet")
  4823. },
  4824. {
  4825. name: "Normal",
  4826. height: math.unit(5, "meter")
  4827. },
  4828. {
  4829. name: "Macro",
  4830. height: math.unit(150, "meter"),
  4831. default: true
  4832. },
  4833. {
  4834. name: "Megamacro",
  4835. height: math.unit(278e6, "meter")
  4836. },
  4837. {
  4838. name: "Gigamacro",
  4839. height: math.unit(2e9, "meter")
  4840. },
  4841. {
  4842. name: "Teramacro",
  4843. height: math.unit(8e12, "meter")
  4844. },
  4845. {
  4846. name: "Devourer",
  4847. height: math.unit(14, "zettameters")
  4848. },
  4849. {
  4850. name: "Scarlet King",
  4851. height: math.unit(18, "yottameters")
  4852. },
  4853. {
  4854. name: "Void",
  4855. height: math.unit(1e88, "yottameters")
  4856. }
  4857. ]
  4858. ))
  4859. characterMakers.push(() => makeCharacter(
  4860. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4861. {
  4862. standing: {
  4863. height: math.unit(6, "feet"),
  4864. weight: math.unit(180, "lbs"),
  4865. name: "Standing",
  4866. image: {
  4867. source: "./media/characters/zaakira/standing.svg",
  4868. extra: 1599/1504,
  4869. bottom: 39/1638
  4870. }
  4871. },
  4872. laying: {
  4873. height: math.unit(3, "feet"),
  4874. weight: math.unit(180, "lbs"),
  4875. name: "Laying",
  4876. image: {
  4877. source: "./media/characters/zaakira/laying.svg"
  4878. }
  4879. },
  4880. },
  4881. [
  4882. {
  4883. name: "Normal",
  4884. height: math.unit(12, "feet")
  4885. },
  4886. {
  4887. name: "Macro",
  4888. height: math.unit(279, "feet"),
  4889. default: true
  4890. }
  4891. ]
  4892. ))
  4893. characterMakers.push(() => makeCharacter(
  4894. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4895. {
  4896. femSfw: {
  4897. height: math.unit(8, "feet"),
  4898. weight: math.unit(350, "lb"),
  4899. name: "Fem",
  4900. image: {
  4901. source: "./media/characters/sigvald/fem-sfw.svg",
  4902. extra: 182 / 164,
  4903. bottom: 8.7 / 190.5
  4904. }
  4905. },
  4906. femNsfw: {
  4907. height: math.unit(8, "feet"),
  4908. weight: math.unit(350, "lb"),
  4909. name: "Fem (NSFW)",
  4910. image: {
  4911. source: "./media/characters/sigvald/fem-nsfw.svg",
  4912. extra: 182 / 164,
  4913. bottom: 8.7 / 190.5
  4914. }
  4915. },
  4916. maleNsfw: {
  4917. height: math.unit(8, "feet"),
  4918. weight: math.unit(350, "lb"),
  4919. name: "Male (NSFW)",
  4920. image: {
  4921. source: "./media/characters/sigvald/male-nsfw.svg",
  4922. extra: 182 / 164,
  4923. bottom: 8.7 / 190.5
  4924. }
  4925. },
  4926. hermNsfw: {
  4927. height: math.unit(8, "feet"),
  4928. weight: math.unit(350, "lb"),
  4929. name: "Herm (NSFW)",
  4930. image: {
  4931. source: "./media/characters/sigvald/herm-nsfw.svg",
  4932. extra: 182 / 164,
  4933. bottom: 8.7 / 190.5
  4934. }
  4935. },
  4936. dick: {
  4937. height: math.unit(2.36, "feet"),
  4938. name: "Dick",
  4939. image: {
  4940. source: "./media/characters/sigvald/dick.svg"
  4941. }
  4942. },
  4943. eye: {
  4944. height: math.unit(0.31, "feet"),
  4945. name: "Eye",
  4946. image: {
  4947. source: "./media/characters/sigvald/eye.svg"
  4948. }
  4949. },
  4950. mouth: {
  4951. height: math.unit(0.92, "feet"),
  4952. name: "Mouth",
  4953. image: {
  4954. source: "./media/characters/sigvald/mouth.svg"
  4955. }
  4956. },
  4957. paws: {
  4958. height: math.unit(2.2, "feet"),
  4959. name: "Paws",
  4960. image: {
  4961. source: "./media/characters/sigvald/paws.svg"
  4962. }
  4963. }
  4964. },
  4965. [
  4966. {
  4967. name: "Normal",
  4968. height: math.unit(8, "feet")
  4969. },
  4970. {
  4971. name: "Large",
  4972. height: math.unit(12, "feet")
  4973. },
  4974. {
  4975. name: "Larger",
  4976. height: math.unit(20, "feet")
  4977. },
  4978. {
  4979. name: "Macro",
  4980. height: math.unit(150, "feet")
  4981. },
  4982. {
  4983. name: "Macro+",
  4984. height: math.unit(200, "feet"),
  4985. default: true
  4986. },
  4987. ]
  4988. ))
  4989. characterMakers.push(() => makeCharacter(
  4990. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4991. {
  4992. side: {
  4993. height: math.unit(12, "feet"),
  4994. weight: math.unit(2000, "kg"),
  4995. name: "Side",
  4996. image: {
  4997. source: "./media/characters/scott/side.svg",
  4998. extra: 754 / 724,
  4999. bottom: 0.069
  5000. }
  5001. },
  5002. upright: {
  5003. height: math.unit(12, "feet"),
  5004. weight: math.unit(2000, "kg"),
  5005. name: "Upright",
  5006. image: {
  5007. source: "./media/characters/scott/upright.svg",
  5008. extra: 3881 / 3722,
  5009. bottom: 0.05
  5010. }
  5011. },
  5012. },
  5013. [
  5014. {
  5015. name: "Normal",
  5016. height: math.unit(12, "feet"),
  5017. default: true
  5018. },
  5019. ]
  5020. ))
  5021. characterMakers.push(() => makeCharacter(
  5022. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5023. {
  5024. side: {
  5025. height: math.unit(8, "meters"),
  5026. weight: math.unit(84755, "lbs"),
  5027. name: "Side",
  5028. image: {
  5029. source: "./media/characters/tobias/side.svg",
  5030. extra: 1474 / 1096,
  5031. bottom: 38.9 / 1513.1235
  5032. }
  5033. },
  5034. },
  5035. [
  5036. {
  5037. name: "Normal",
  5038. height: math.unit(8, "meters"),
  5039. default: true
  5040. },
  5041. ]
  5042. ))
  5043. characterMakers.push(() => makeCharacter(
  5044. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5045. {
  5046. front: {
  5047. height: math.unit(5.5, "feet"),
  5048. weight: math.unit(400, "lbs"),
  5049. name: "Front",
  5050. image: {
  5051. source: "./media/characters/kieran/front.svg",
  5052. extra: 2694 / 2364,
  5053. bottom: 217 / 2908
  5054. }
  5055. },
  5056. side: {
  5057. height: math.unit(5.5, "feet"),
  5058. weight: math.unit(400, "lbs"),
  5059. name: "Side",
  5060. image: {
  5061. source: "./media/characters/kieran/side.svg",
  5062. extra: 875 / 777,
  5063. bottom: 84.6 / 959
  5064. }
  5065. },
  5066. },
  5067. [
  5068. {
  5069. name: "Normal",
  5070. height: math.unit(5.5, "feet"),
  5071. default: true
  5072. },
  5073. ]
  5074. ))
  5075. characterMakers.push(() => makeCharacter(
  5076. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5077. {
  5078. side: {
  5079. height: math.unit(2, "meters"),
  5080. weight: math.unit(70, "kg"),
  5081. name: "Side",
  5082. image: {
  5083. source: "./media/characters/sanya/side.svg",
  5084. bottom: 0.02,
  5085. extra: 1.02
  5086. }
  5087. },
  5088. },
  5089. [
  5090. {
  5091. name: "Small",
  5092. height: math.unit(2, "meters")
  5093. },
  5094. {
  5095. name: "Normal",
  5096. height: math.unit(3, "meters")
  5097. },
  5098. {
  5099. name: "Macro",
  5100. height: math.unit(16, "meters"),
  5101. default: true
  5102. },
  5103. ]
  5104. ))
  5105. characterMakers.push(() => makeCharacter(
  5106. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5107. {
  5108. front: {
  5109. height: math.unit(2, "meters"),
  5110. weight: math.unit(120, "kg"),
  5111. name: "Front",
  5112. image: {
  5113. source: "./media/characters/miranda/front.svg",
  5114. extra: 195 / 185,
  5115. bottom: 10.9 / 206.5
  5116. }
  5117. },
  5118. back: {
  5119. height: math.unit(2, "meters"),
  5120. weight: math.unit(120, "kg"),
  5121. name: "Back",
  5122. image: {
  5123. source: "./media/characters/miranda/back.svg",
  5124. extra: 201 / 193,
  5125. bottom: 2.3 / 203.7
  5126. }
  5127. },
  5128. },
  5129. [
  5130. {
  5131. name: "Normal",
  5132. height: math.unit(10, "feet"),
  5133. default: true
  5134. }
  5135. ]
  5136. ))
  5137. characterMakers.push(() => makeCharacter(
  5138. { name: "James", species: ["deer"], tags: ["anthro"] },
  5139. {
  5140. side: {
  5141. height: math.unit(2, "meters"),
  5142. weight: math.unit(100, "kg"),
  5143. name: "Front",
  5144. image: {
  5145. source: "./media/characters/james/front.svg",
  5146. extra: 10 / 8.5
  5147. }
  5148. },
  5149. },
  5150. [
  5151. {
  5152. name: "Normal",
  5153. height: math.unit(8.5, "feet"),
  5154. default: true
  5155. }
  5156. ]
  5157. ))
  5158. characterMakers.push(() => makeCharacter(
  5159. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5160. {
  5161. side: {
  5162. height: math.unit(9.5, "feet"),
  5163. weight: math.unit(2500, "lbs"),
  5164. name: "Side",
  5165. image: {
  5166. source: "./media/characters/heather/side.svg"
  5167. }
  5168. },
  5169. },
  5170. [
  5171. {
  5172. name: "Normal",
  5173. height: math.unit(9.5, "feet"),
  5174. default: true
  5175. }
  5176. ]
  5177. ))
  5178. characterMakers.push(() => makeCharacter(
  5179. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5180. {
  5181. side: {
  5182. height: math.unit(6.5, "feet"),
  5183. weight: math.unit(400, "lbs"),
  5184. name: "Side",
  5185. image: {
  5186. source: "./media/characters/lukas/side.svg",
  5187. extra: 7.25 / 6.5
  5188. }
  5189. },
  5190. },
  5191. [
  5192. {
  5193. name: "Normal",
  5194. height: math.unit(6.5, "feet"),
  5195. default: true
  5196. }
  5197. ]
  5198. ))
  5199. characterMakers.push(() => makeCharacter(
  5200. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5201. {
  5202. side: {
  5203. height: math.unit(5, "feet"),
  5204. weight: math.unit(3000, "lbs"),
  5205. name: "Side",
  5206. image: {
  5207. source: "./media/characters/louise/side.svg"
  5208. }
  5209. },
  5210. },
  5211. [
  5212. {
  5213. name: "Normal",
  5214. height: math.unit(5, "feet"),
  5215. default: true
  5216. }
  5217. ]
  5218. ))
  5219. characterMakers.push(() => makeCharacter(
  5220. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5221. {
  5222. side: {
  5223. height: math.unit(6, "feet"),
  5224. weight: math.unit(150, "lbs"),
  5225. name: "Side",
  5226. image: {
  5227. source: "./media/characters/ramona/side.svg"
  5228. }
  5229. },
  5230. },
  5231. [
  5232. {
  5233. name: "Normal",
  5234. height: math.unit(5.3, "meters"),
  5235. default: true
  5236. },
  5237. {
  5238. name: "Macro",
  5239. height: math.unit(20, "stories")
  5240. },
  5241. {
  5242. name: "Macro+",
  5243. height: math.unit(50, "stories")
  5244. },
  5245. ]
  5246. ))
  5247. characterMakers.push(() => makeCharacter(
  5248. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5249. {
  5250. standing: {
  5251. height: math.unit(5.75, "feet"),
  5252. weight: math.unit(160, "lbs"),
  5253. name: "Standing",
  5254. image: {
  5255. source: "./media/characters/deerpuff/standing.svg",
  5256. extra: 682 / 624
  5257. }
  5258. },
  5259. sitting: {
  5260. height: math.unit(5.75 / 1.79, "feet"),
  5261. weight: math.unit(160, "lbs"),
  5262. name: "Sitting",
  5263. image: {
  5264. source: "./media/characters/deerpuff/sitting.svg",
  5265. bottom: 44 / 400,
  5266. extra: 1
  5267. }
  5268. },
  5269. taurLaying: {
  5270. height: math.unit(6, "feet"),
  5271. weight: math.unit(400, "lbs"),
  5272. name: "Taur (Laying)",
  5273. image: {
  5274. source: "./media/characters/deerpuff/taur-laying.svg"
  5275. }
  5276. },
  5277. },
  5278. [
  5279. {
  5280. name: "Puffball",
  5281. height: math.unit(6, "inches")
  5282. },
  5283. {
  5284. name: "Normalpuff",
  5285. height: math.unit(5.75, "feet")
  5286. },
  5287. {
  5288. name: "Macropuff",
  5289. height: math.unit(1500, "feet"),
  5290. default: true
  5291. },
  5292. {
  5293. name: "Megapuff",
  5294. height: math.unit(500, "miles")
  5295. },
  5296. {
  5297. name: "Gigapuff",
  5298. height: math.unit(250000, "miles")
  5299. },
  5300. {
  5301. name: "Omegapuff",
  5302. height: math.unit(1000, "lightyears")
  5303. },
  5304. ]
  5305. ))
  5306. characterMakers.push(() => makeCharacter(
  5307. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5308. {
  5309. stomping: {
  5310. height: math.unit(6, "feet"),
  5311. weight: math.unit(170, "lbs"),
  5312. name: "Stomping",
  5313. image: {
  5314. source: "./media/characters/vivian/stomping.svg"
  5315. }
  5316. },
  5317. sitting: {
  5318. height: math.unit(6 / 1.75, "feet"),
  5319. weight: math.unit(170, "lbs"),
  5320. name: "Sitting",
  5321. image: {
  5322. source: "./media/characters/vivian/sitting.svg",
  5323. bottom: 1 / 6.4,
  5324. extra: 1,
  5325. }
  5326. },
  5327. },
  5328. [
  5329. {
  5330. name: "Normal",
  5331. height: math.unit(7, "feet"),
  5332. default: true
  5333. },
  5334. {
  5335. name: "Macro",
  5336. height: math.unit(10, "stories")
  5337. },
  5338. {
  5339. name: "Macro+",
  5340. height: math.unit(30, "stories")
  5341. },
  5342. {
  5343. name: "Megamacro",
  5344. height: math.unit(10, "miles")
  5345. },
  5346. {
  5347. name: "Megamacro+",
  5348. height: math.unit(2750000, "meters")
  5349. },
  5350. ]
  5351. ))
  5352. characterMakers.push(() => makeCharacter(
  5353. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5354. {
  5355. front: {
  5356. height: math.unit(6, "feet"),
  5357. weight: math.unit(160, "lbs"),
  5358. name: "Front",
  5359. image: {
  5360. source: "./media/characters/prince/front.svg",
  5361. extra: 3400 / 3000
  5362. }
  5363. },
  5364. jumping: {
  5365. height: math.unit(6, "feet"),
  5366. weight: math.unit(160, "lbs"),
  5367. name: "Jumping",
  5368. image: {
  5369. source: "./media/characters/prince/jump.svg",
  5370. extra: 2555 / 2134
  5371. }
  5372. },
  5373. },
  5374. [
  5375. {
  5376. name: "Normal",
  5377. height: math.unit(7.75, "feet"),
  5378. default: true
  5379. },
  5380. {
  5381. name: "Not cute",
  5382. height: math.unit(17, "feet")
  5383. },
  5384. {
  5385. name: "I said NOT",
  5386. height: math.unit(91, "feet")
  5387. },
  5388. {
  5389. name: "Please stop",
  5390. height: math.unit(560, "feet")
  5391. },
  5392. {
  5393. name: "What have you done",
  5394. height: math.unit(2200, "feet")
  5395. },
  5396. {
  5397. name: "Deer God",
  5398. height: math.unit(3.6, "miles")
  5399. },
  5400. ]
  5401. ))
  5402. characterMakers.push(() => makeCharacter(
  5403. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5404. {
  5405. standing: {
  5406. height: math.unit(6, "feet"),
  5407. weight: math.unit(300, "lbs"),
  5408. name: "Standing",
  5409. image: {
  5410. source: "./media/characters/psymon/standing.svg",
  5411. extra: 1888 / 1810,
  5412. bottom: 0.05
  5413. }
  5414. },
  5415. slithering: {
  5416. height: math.unit(6, "feet"),
  5417. weight: math.unit(300, "lbs"),
  5418. name: "Slithering",
  5419. image: {
  5420. source: "./media/characters/psymon/slithering.svg",
  5421. extra: 1330 / 1224
  5422. }
  5423. },
  5424. slitheringAlt: {
  5425. height: math.unit(6, "feet"),
  5426. weight: math.unit(300, "lbs"),
  5427. name: "Slithering (Alt)",
  5428. image: {
  5429. source: "./media/characters/psymon/slithering-alt.svg",
  5430. extra: 1330 / 1224
  5431. }
  5432. },
  5433. },
  5434. [
  5435. {
  5436. name: "Normal",
  5437. height: math.unit(11.25, "feet"),
  5438. default: true
  5439. },
  5440. {
  5441. name: "Large",
  5442. height: math.unit(27, "feet")
  5443. },
  5444. {
  5445. name: "Giant",
  5446. height: math.unit(87, "feet")
  5447. },
  5448. {
  5449. name: "Macro",
  5450. height: math.unit(365, "feet")
  5451. },
  5452. {
  5453. name: "Megamacro",
  5454. height: math.unit(3, "miles")
  5455. },
  5456. {
  5457. name: "World Serpent",
  5458. height: math.unit(8000, "miles")
  5459. },
  5460. ]
  5461. ))
  5462. characterMakers.push(() => makeCharacter(
  5463. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5464. {
  5465. front: {
  5466. height: math.unit(6, "feet"),
  5467. weight: math.unit(180, "lbs"),
  5468. name: "Front",
  5469. image: {
  5470. source: "./media/characters/daimos/front.svg",
  5471. extra: 4160 / 3897,
  5472. bottom: 0.021
  5473. }
  5474. }
  5475. },
  5476. [
  5477. {
  5478. name: "Normal",
  5479. height: math.unit(8, "feet"),
  5480. default: true
  5481. },
  5482. {
  5483. name: "Big Dog",
  5484. height: math.unit(22, "feet")
  5485. },
  5486. {
  5487. name: "Macro",
  5488. height: math.unit(127, "feet")
  5489. },
  5490. {
  5491. name: "Megamacro",
  5492. height: math.unit(3600, "feet")
  5493. },
  5494. ]
  5495. ))
  5496. characterMakers.push(() => makeCharacter(
  5497. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5498. {
  5499. side: {
  5500. height: math.unit(6, "feet"),
  5501. weight: math.unit(180, "lbs"),
  5502. name: "Side",
  5503. image: {
  5504. source: "./media/characters/blake/side.svg",
  5505. extra: 1212 / 1120,
  5506. bottom: 0.05
  5507. }
  5508. },
  5509. crouched: {
  5510. height: math.unit(6 * 0.57, "feet"),
  5511. weight: math.unit(180, "lbs"),
  5512. name: "Crouched",
  5513. image: {
  5514. source: "./media/characters/blake/crouched.svg",
  5515. extra: 840 / 587,
  5516. bottom: 0.04
  5517. }
  5518. },
  5519. bent: {
  5520. height: math.unit(6 * 0.75, "feet"),
  5521. weight: math.unit(180, "lbs"),
  5522. name: "Bent",
  5523. image: {
  5524. source: "./media/characters/blake/bent.svg",
  5525. extra: 592 / 544,
  5526. bottom: 0.035
  5527. }
  5528. },
  5529. },
  5530. [
  5531. {
  5532. name: "Normal",
  5533. height: math.unit(8 + 1 / 6, "feet"),
  5534. default: true
  5535. },
  5536. {
  5537. name: "Big Backside",
  5538. height: math.unit(37, "feet")
  5539. },
  5540. {
  5541. name: "Subway Shredder",
  5542. height: math.unit(72, "feet")
  5543. },
  5544. {
  5545. name: "City Carver",
  5546. height: math.unit(1675, "feet")
  5547. },
  5548. {
  5549. name: "Tectonic Tweaker",
  5550. height: math.unit(2300, "miles")
  5551. },
  5552. ]
  5553. ))
  5554. characterMakers.push(() => makeCharacter(
  5555. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5556. {
  5557. front: {
  5558. height: math.unit(6, "feet"),
  5559. weight: math.unit(180, "lbs"),
  5560. name: "Front",
  5561. image: {
  5562. source: "./media/characters/guisetto/front.svg",
  5563. extra: 856 / 817,
  5564. bottom: 0.06
  5565. }
  5566. },
  5567. airborne: {
  5568. height: math.unit(6, "feet"),
  5569. weight: math.unit(180, "lbs"),
  5570. name: "Airborne",
  5571. image: {
  5572. source: "./media/characters/guisetto/airborne.svg",
  5573. extra: 584 / 525
  5574. }
  5575. },
  5576. },
  5577. [
  5578. {
  5579. name: "Normal",
  5580. height: math.unit(10 + 11 / 12, "feet"),
  5581. default: true
  5582. },
  5583. {
  5584. name: "Large",
  5585. height: math.unit(35, "feet")
  5586. },
  5587. {
  5588. name: "Macro",
  5589. height: math.unit(475, "feet")
  5590. },
  5591. ]
  5592. ))
  5593. characterMakers.push(() => makeCharacter(
  5594. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5595. {
  5596. front: {
  5597. height: math.unit(6, "feet"),
  5598. weight: math.unit(180, "lbs"),
  5599. name: "Front",
  5600. image: {
  5601. source: "./media/characters/luxor/front.svg",
  5602. extra: 2940 / 2152
  5603. }
  5604. },
  5605. back: {
  5606. height: math.unit(6, "feet"),
  5607. weight: math.unit(180, "lbs"),
  5608. name: "Back",
  5609. image: {
  5610. source: "./media/characters/luxor/back.svg",
  5611. extra: 1083 / 960
  5612. }
  5613. },
  5614. },
  5615. [
  5616. {
  5617. name: "Normal",
  5618. height: math.unit(5 + 5 / 6, "feet"),
  5619. default: true
  5620. },
  5621. {
  5622. name: "Lamp",
  5623. height: math.unit(50, "feet")
  5624. },
  5625. {
  5626. name: "Lämp",
  5627. height: math.unit(300, "feet")
  5628. },
  5629. {
  5630. name: "The sun is a lamp",
  5631. height: math.unit(250000, "miles")
  5632. },
  5633. ]
  5634. ))
  5635. characterMakers.push(() => makeCharacter(
  5636. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5637. {
  5638. front: {
  5639. height: math.unit(6, "feet"),
  5640. weight: math.unit(50, "lbs"),
  5641. name: "Front",
  5642. image: {
  5643. source: "./media/characters/huoyan/front.svg"
  5644. }
  5645. },
  5646. side: {
  5647. height: math.unit(6, "feet"),
  5648. weight: math.unit(180, "lbs"),
  5649. name: "Side",
  5650. image: {
  5651. source: "./media/characters/huoyan/side.svg"
  5652. }
  5653. },
  5654. },
  5655. [
  5656. {
  5657. name: "Chef",
  5658. height: math.unit(9, "feet")
  5659. },
  5660. {
  5661. name: "Normal",
  5662. height: math.unit(65, "feet"),
  5663. default: true
  5664. },
  5665. {
  5666. name: "Macro",
  5667. height: math.unit(780, "feet")
  5668. },
  5669. {
  5670. name: "Flaming Mountain",
  5671. height: math.unit(4.8, "miles")
  5672. },
  5673. {
  5674. name: "Celestial",
  5675. height: math.unit(765000, "miles")
  5676. },
  5677. ]
  5678. ))
  5679. characterMakers.push(() => makeCharacter(
  5680. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5681. {
  5682. front: {
  5683. height: math.unit(5 + 3 / 4, "feet"),
  5684. weight: math.unit(120, "lbs"),
  5685. name: "Front",
  5686. image: {
  5687. source: "./media/characters/tails/front.svg"
  5688. }
  5689. }
  5690. },
  5691. [
  5692. {
  5693. name: "Normal",
  5694. height: math.unit(5 + 3 / 4, "feet"),
  5695. default: true
  5696. }
  5697. ]
  5698. ))
  5699. characterMakers.push(() => makeCharacter(
  5700. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5701. {
  5702. front: {
  5703. height: math.unit(4, "feet"),
  5704. weight: math.unit(50, "lbs"),
  5705. name: "Front",
  5706. image: {
  5707. source: "./media/characters/rainy/front.svg"
  5708. }
  5709. }
  5710. },
  5711. [
  5712. {
  5713. name: "Macro",
  5714. height: math.unit(800, "feet"),
  5715. default: true
  5716. }
  5717. ]
  5718. ))
  5719. characterMakers.push(() => makeCharacter(
  5720. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5721. {
  5722. front: {
  5723. height: math.unit(6, "feet"),
  5724. weight: math.unit(150, "lbs"),
  5725. name: "Front",
  5726. image: {
  5727. source: "./media/characters/rainier/front.svg"
  5728. }
  5729. }
  5730. },
  5731. [
  5732. {
  5733. name: "Micro",
  5734. height: math.unit(2, "mm"),
  5735. default: true
  5736. }
  5737. ]
  5738. ))
  5739. characterMakers.push(() => makeCharacter(
  5740. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5741. {
  5742. front: {
  5743. height: math.unit(8 + 4/12, "feet"),
  5744. name: "Front",
  5745. image: {
  5746. source: "./media/characters/andy-renard/front.svg",
  5747. extra: 1839/1726,
  5748. bottom: 134/1973
  5749. }
  5750. },
  5751. back: {
  5752. height: math.unit(8 + 4/12, "feet"),
  5753. name: "Back",
  5754. image: {
  5755. source: "./media/characters/andy-renard/back.svg",
  5756. extra: 1838/1710,
  5757. bottom: 105/1943
  5758. }
  5759. },
  5760. },
  5761. [
  5762. {
  5763. name: "Tall",
  5764. height: math.unit(8 + 4/12, "feet")
  5765. },
  5766. {
  5767. name: "Mini Macro",
  5768. height: math.unit(15, "feet"),
  5769. default: true
  5770. },
  5771. {
  5772. name: "Macro",
  5773. height: math.unit(100, "feet")
  5774. },
  5775. {
  5776. name: "Mega Macro",
  5777. height: math.unit(1000, "feet")
  5778. },
  5779. {
  5780. name: "Giga Macro",
  5781. height: math.unit(10, "miles")
  5782. },
  5783. {
  5784. name: "God Macro",
  5785. height: math.unit(1, "multiverse")
  5786. },
  5787. ]
  5788. ))
  5789. characterMakers.push(() => makeCharacter(
  5790. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5791. {
  5792. front: {
  5793. height: math.unit(6, "feet"),
  5794. weight: math.unit(210, "lbs"),
  5795. name: "Front",
  5796. image: {
  5797. source: "./media/characters/cimmaron/front-sfw.svg",
  5798. extra: 701 / 676,
  5799. bottom: 0.046
  5800. }
  5801. },
  5802. back: {
  5803. height: math.unit(6, "feet"),
  5804. weight: math.unit(210, "lbs"),
  5805. name: "Back",
  5806. image: {
  5807. source: "./media/characters/cimmaron/back-sfw.svg",
  5808. extra: 701 / 676,
  5809. bottom: 0.046
  5810. }
  5811. },
  5812. frontNsfw: {
  5813. height: math.unit(6, "feet"),
  5814. weight: math.unit(210, "lbs"),
  5815. name: "Front (NSFW)",
  5816. image: {
  5817. source: "./media/characters/cimmaron/front-nsfw.svg",
  5818. extra: 701 / 676,
  5819. bottom: 0.046
  5820. }
  5821. },
  5822. backNsfw: {
  5823. height: math.unit(6, "feet"),
  5824. weight: math.unit(210, "lbs"),
  5825. name: "Back (NSFW)",
  5826. image: {
  5827. source: "./media/characters/cimmaron/back-nsfw.svg",
  5828. extra: 701 / 676,
  5829. bottom: 0.046
  5830. }
  5831. },
  5832. dick: {
  5833. height: math.unit(1.714, "feet"),
  5834. name: "Dick",
  5835. image: {
  5836. source: "./media/characters/cimmaron/dick.svg"
  5837. }
  5838. },
  5839. },
  5840. [
  5841. {
  5842. name: "Normal",
  5843. height: math.unit(6, "feet"),
  5844. default: true
  5845. },
  5846. {
  5847. name: "Macro Mayor",
  5848. height: math.unit(350, "meters")
  5849. },
  5850. ]
  5851. ))
  5852. characterMakers.push(() => makeCharacter(
  5853. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5854. {
  5855. front: {
  5856. height: math.unit(6, "feet"),
  5857. weight: math.unit(200, "lbs"),
  5858. name: "Front",
  5859. image: {
  5860. source: "./media/characters/akari/front.svg",
  5861. extra: 962 / 901,
  5862. bottom: 0.04
  5863. }
  5864. }
  5865. },
  5866. [
  5867. {
  5868. name: "Micro",
  5869. height: math.unit(5, "inches"),
  5870. default: true
  5871. },
  5872. {
  5873. name: "Normal",
  5874. height: math.unit(7, "feet")
  5875. },
  5876. ]
  5877. ))
  5878. characterMakers.push(() => makeCharacter(
  5879. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5880. {
  5881. front: {
  5882. height: math.unit(6, "feet"),
  5883. weight: math.unit(140, "lbs"),
  5884. name: "Front",
  5885. image: {
  5886. source: "./media/characters/cynosura/front.svg",
  5887. extra: 896 / 847
  5888. }
  5889. },
  5890. back: {
  5891. height: math.unit(6, "feet"),
  5892. weight: math.unit(140, "lbs"),
  5893. name: "Back",
  5894. image: {
  5895. source: "./media/characters/cynosura/back.svg",
  5896. extra: 1365 / 1250
  5897. }
  5898. },
  5899. },
  5900. [
  5901. {
  5902. name: "Micro",
  5903. height: math.unit(4, "inches")
  5904. },
  5905. {
  5906. name: "Normal",
  5907. height: math.unit(5.75, "feet"),
  5908. default: true
  5909. },
  5910. {
  5911. name: "Tall",
  5912. height: math.unit(10, "feet")
  5913. },
  5914. {
  5915. name: "Big",
  5916. height: math.unit(20, "feet")
  5917. },
  5918. {
  5919. name: "Macro",
  5920. height: math.unit(50, "feet")
  5921. },
  5922. ]
  5923. ))
  5924. characterMakers.push(() => makeCharacter(
  5925. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5926. {
  5927. front: {
  5928. height: math.unit(13 + 2/12, "feet"),
  5929. weight: math.unit(800, "kg"),
  5930. name: "Front",
  5931. image: {
  5932. source: "./media/characters/gin/front.svg",
  5933. extra: 1312/1191,
  5934. bottom: 45/1357
  5935. }
  5936. },
  5937. mouth: {
  5938. height: math.unit(2.39 * 1.8, "feet"),
  5939. name: "Mouth",
  5940. image: {
  5941. source: "./media/characters/gin/mouth.svg"
  5942. }
  5943. },
  5944. hand: {
  5945. height: math.unit(1.57 * 2.19, "feet"),
  5946. name: "Hand",
  5947. image: {
  5948. source: "./media/characters/gin/hand.svg"
  5949. }
  5950. },
  5951. foot: {
  5952. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5953. name: "Foot",
  5954. image: {
  5955. source: "./media/characters/gin/foot.svg"
  5956. }
  5957. },
  5958. sole: {
  5959. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5960. name: "Sole",
  5961. image: {
  5962. source: "./media/characters/gin/sole.svg"
  5963. }
  5964. },
  5965. },
  5966. [
  5967. {
  5968. name: "Very Small",
  5969. height: math.unit(13 + 2 / 12, "feet")
  5970. },
  5971. {
  5972. name: "Micro",
  5973. height: math.unit(600, "miles")
  5974. },
  5975. {
  5976. name: "Regular",
  5977. height: math.unit(20, "earths"),
  5978. default: true
  5979. },
  5980. {
  5981. name: "Macro",
  5982. height: math.unit(2.2, "solarradii")
  5983. },
  5984. {
  5985. name: "Teramacro",
  5986. height: math.unit(1.2, "galaxies")
  5987. },
  5988. {
  5989. name: "Omegamacro",
  5990. height: math.unit(200, "universes")
  5991. },
  5992. ]
  5993. ))
  5994. characterMakers.push(() => makeCharacter(
  5995. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5996. {
  5997. front: {
  5998. height: math.unit(6 + 1 / 6, "feet"),
  5999. weight: math.unit(178, "lbs"),
  6000. name: "Front",
  6001. image: {
  6002. source: "./media/characters/guy/front.svg"
  6003. }
  6004. }
  6005. },
  6006. [
  6007. {
  6008. name: "Normal",
  6009. height: math.unit(6 + 1 / 6, "feet"),
  6010. default: true
  6011. },
  6012. {
  6013. name: "Large",
  6014. height: math.unit(25 + 7 / 12, "feet")
  6015. },
  6016. {
  6017. name: "Macro",
  6018. height: math.unit(60 + 9 / 12, "feet")
  6019. },
  6020. {
  6021. name: "Macro+",
  6022. height: math.unit(246, "feet")
  6023. },
  6024. {
  6025. name: "Macro++",
  6026. height: math.unit(878, "feet")
  6027. }
  6028. ]
  6029. ))
  6030. characterMakers.push(() => makeCharacter(
  6031. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6032. {
  6033. front: {
  6034. height: math.unit(9, "feet"),
  6035. weight: math.unit(800, "lbs"),
  6036. name: "Front",
  6037. image: {
  6038. source: "./media/characters/tiberius/front.svg",
  6039. extra: 2295 / 2071
  6040. }
  6041. },
  6042. back: {
  6043. height: math.unit(9, "feet"),
  6044. weight: math.unit(800, "lbs"),
  6045. name: "Back",
  6046. image: {
  6047. source: "./media/characters/tiberius/back.svg",
  6048. extra: 2373 / 2160
  6049. }
  6050. },
  6051. },
  6052. [
  6053. {
  6054. name: "Normal",
  6055. height: math.unit(9, "feet"),
  6056. default: true
  6057. }
  6058. ]
  6059. ))
  6060. characterMakers.push(() => makeCharacter(
  6061. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6062. {
  6063. front: {
  6064. height: math.unit(6, "feet"),
  6065. weight: math.unit(600, "lbs"),
  6066. name: "Front",
  6067. image: {
  6068. source: "./media/characters/surgo/front.svg",
  6069. extra: 3591 / 2227
  6070. }
  6071. },
  6072. back: {
  6073. height: math.unit(6, "feet"),
  6074. weight: math.unit(600, "lbs"),
  6075. name: "Back",
  6076. image: {
  6077. source: "./media/characters/surgo/back.svg",
  6078. extra: 3557 / 2228
  6079. }
  6080. },
  6081. laying: {
  6082. height: math.unit(6 * 0.85, "feet"),
  6083. weight: math.unit(600, "lbs"),
  6084. name: "Laying",
  6085. image: {
  6086. source: "./media/characters/surgo/laying.svg"
  6087. }
  6088. },
  6089. },
  6090. [
  6091. {
  6092. name: "Normal",
  6093. height: math.unit(6, "feet"),
  6094. default: true
  6095. }
  6096. ]
  6097. ))
  6098. characterMakers.push(() => makeCharacter(
  6099. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6100. {
  6101. side: {
  6102. height: math.unit(6, "feet"),
  6103. weight: math.unit(150, "lbs"),
  6104. name: "Side",
  6105. image: {
  6106. source: "./media/characters/cibus/side.svg",
  6107. extra: 800 / 400
  6108. }
  6109. },
  6110. },
  6111. [
  6112. {
  6113. name: "Normal",
  6114. height: math.unit(6, "feet"),
  6115. default: true
  6116. }
  6117. ]
  6118. ))
  6119. characterMakers.push(() => makeCharacter(
  6120. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6121. {
  6122. front: {
  6123. height: math.unit(6, "feet"),
  6124. weight: math.unit(240, "lbs"),
  6125. name: "Front",
  6126. image: {
  6127. source: "./media/characters/nibbles/front.svg"
  6128. }
  6129. },
  6130. side: {
  6131. height: math.unit(6, "feet"),
  6132. weight: math.unit(240, "lbs"),
  6133. name: "Side",
  6134. image: {
  6135. source: "./media/characters/nibbles/side.svg"
  6136. }
  6137. },
  6138. },
  6139. [
  6140. {
  6141. name: "Normal",
  6142. height: math.unit(9, "feet"),
  6143. default: true
  6144. }
  6145. ]
  6146. ))
  6147. characterMakers.push(() => makeCharacter(
  6148. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6149. {
  6150. side: {
  6151. height: math.unit(5 + 1 / 6, "feet"),
  6152. weight: math.unit(130, "lbs"),
  6153. name: "Side",
  6154. image: {
  6155. source: "./media/characters/rikky/side.svg",
  6156. extra: 851 / 801
  6157. }
  6158. },
  6159. },
  6160. [
  6161. {
  6162. name: "Normal",
  6163. height: math.unit(5 + 1 / 6, "feet")
  6164. },
  6165. {
  6166. name: "Macro",
  6167. height: math.unit(152, "feet"),
  6168. default: true
  6169. },
  6170. {
  6171. name: "Megamacro",
  6172. height: math.unit(7, "miles")
  6173. }
  6174. ]
  6175. ))
  6176. characterMakers.push(() => makeCharacter(
  6177. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6178. {
  6179. side: {
  6180. height: math.unit(370, "cm"),
  6181. weight: math.unit(350, "lbs"),
  6182. name: "Side",
  6183. image: {
  6184. source: "./media/characters/malfressa/side.svg"
  6185. }
  6186. },
  6187. walking: {
  6188. height: math.unit(370, "cm"),
  6189. weight: math.unit(350, "lbs"),
  6190. name: "Walking",
  6191. image: {
  6192. source: "./media/characters/malfressa/walking.svg"
  6193. }
  6194. },
  6195. feral: {
  6196. height: math.unit(2500, "cm"),
  6197. weight: math.unit(100000, "lbs"),
  6198. name: "Feral",
  6199. image: {
  6200. source: "./media/characters/malfressa/feral.svg",
  6201. extra: 2108 / 837,
  6202. bottom: 0.02
  6203. }
  6204. },
  6205. },
  6206. [
  6207. {
  6208. name: "Normal",
  6209. height: math.unit(370, "cm")
  6210. },
  6211. {
  6212. name: "Macro",
  6213. height: math.unit(300, "meters"),
  6214. default: true
  6215. }
  6216. ]
  6217. ))
  6218. characterMakers.push(() => makeCharacter(
  6219. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6220. {
  6221. front: {
  6222. height: math.unit(6, "feet"),
  6223. weight: math.unit(60, "kg"),
  6224. name: "Front",
  6225. image: {
  6226. source: "./media/characters/jaro/front.svg"
  6227. }
  6228. },
  6229. back: {
  6230. height: math.unit(6, "feet"),
  6231. weight: math.unit(60, "kg"),
  6232. name: "Back",
  6233. image: {
  6234. source: "./media/characters/jaro/back.svg"
  6235. }
  6236. },
  6237. },
  6238. [
  6239. {
  6240. name: "Micro",
  6241. height: math.unit(7, "inches")
  6242. },
  6243. {
  6244. name: "Normal",
  6245. height: math.unit(5.5, "feet"),
  6246. default: true
  6247. },
  6248. {
  6249. name: "Minimacro",
  6250. height: math.unit(20, "feet")
  6251. },
  6252. {
  6253. name: "Macro",
  6254. height: math.unit(200, "meters")
  6255. }
  6256. ]
  6257. ))
  6258. characterMakers.push(() => makeCharacter(
  6259. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6260. {
  6261. front: {
  6262. height: math.unit(6, "feet"),
  6263. weight: math.unit(195, "lb"),
  6264. name: "Front",
  6265. image: {
  6266. source: "./media/characters/rogue/front.svg"
  6267. }
  6268. },
  6269. },
  6270. [
  6271. {
  6272. name: "Macro",
  6273. height: math.unit(90, "feet"),
  6274. default: true
  6275. },
  6276. ]
  6277. ))
  6278. characterMakers.push(() => makeCharacter(
  6279. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6280. {
  6281. front: {
  6282. height: math.unit(5 + 8 / 12, "feet"),
  6283. weight: math.unit(140, "lb"),
  6284. name: "Front",
  6285. image: {
  6286. source: "./media/characters/piper/front.svg",
  6287. extra: 3948/3655,
  6288. bottom: 0/3948
  6289. }
  6290. },
  6291. },
  6292. [
  6293. {
  6294. name: "Micro",
  6295. height: math.unit(2, "inches")
  6296. },
  6297. {
  6298. name: "Normal",
  6299. height: math.unit(5 + 8 / 12, "feet")
  6300. },
  6301. {
  6302. name: "Macro",
  6303. height: math.unit(250, "feet"),
  6304. default: true
  6305. },
  6306. {
  6307. name: "Megamacro",
  6308. height: math.unit(7, "miles")
  6309. },
  6310. ]
  6311. ))
  6312. characterMakers.push(() => makeCharacter(
  6313. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6314. {
  6315. front: {
  6316. height: math.unit(6, "feet"),
  6317. weight: math.unit(220, "lb"),
  6318. name: "Front",
  6319. image: {
  6320. source: "./media/characters/gemini/front.svg"
  6321. }
  6322. },
  6323. back: {
  6324. height: math.unit(6, "feet"),
  6325. weight: math.unit(220, "lb"),
  6326. name: "Back",
  6327. image: {
  6328. source: "./media/characters/gemini/back.svg"
  6329. }
  6330. },
  6331. kneeling: {
  6332. height: math.unit(6 / 1.5, "feet"),
  6333. weight: math.unit(220, "lb"),
  6334. name: "Kneeling",
  6335. image: {
  6336. source: "./media/characters/gemini/kneeling.svg",
  6337. bottom: 0.02
  6338. }
  6339. },
  6340. },
  6341. [
  6342. {
  6343. name: "Macro",
  6344. height: math.unit(300, "meters"),
  6345. default: true
  6346. },
  6347. {
  6348. name: "Megamacro",
  6349. height: math.unit(6900, "meters")
  6350. },
  6351. ]
  6352. ))
  6353. characterMakers.push(() => makeCharacter(
  6354. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6355. {
  6356. anthro: {
  6357. height: math.unit(2.35, "meters"),
  6358. weight: math.unit(73, "kg"),
  6359. name: "Anthro",
  6360. image: {
  6361. source: "./media/characters/alicia/anthro.svg",
  6362. extra: 2571 / 2385,
  6363. bottom: 75 / 2648
  6364. }
  6365. },
  6366. paw: {
  6367. height: math.unit(1.32, "feet"),
  6368. name: "Paw",
  6369. image: {
  6370. source: "./media/characters/alicia/paw.svg"
  6371. }
  6372. },
  6373. feral: {
  6374. height: math.unit(1.69, "meters"),
  6375. weight: math.unit(73, "kg"),
  6376. name: "Feral",
  6377. image: {
  6378. source: "./media/characters/alicia/feral.svg",
  6379. extra: 2123 / 1715,
  6380. bottom: 222 / 2349
  6381. }
  6382. },
  6383. },
  6384. [
  6385. {
  6386. name: "Normal",
  6387. height: math.unit(2.35, "meters")
  6388. },
  6389. {
  6390. name: "Macro",
  6391. height: math.unit(60, "meters"),
  6392. default: true
  6393. },
  6394. {
  6395. name: "Megamacro",
  6396. height: math.unit(10000, "kilometers")
  6397. },
  6398. ]
  6399. ))
  6400. characterMakers.push(() => makeCharacter(
  6401. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6402. {
  6403. front: {
  6404. height: math.unit(7, "feet"),
  6405. weight: math.unit(250, "lbs"),
  6406. name: "Front",
  6407. image: {
  6408. source: "./media/characters/archy/front.svg"
  6409. }
  6410. }
  6411. },
  6412. [
  6413. {
  6414. name: "Micro",
  6415. height: math.unit(1, "inch")
  6416. },
  6417. {
  6418. name: "Shorty",
  6419. height: math.unit(5, "feet")
  6420. },
  6421. {
  6422. name: "Normal",
  6423. height: math.unit(7, "feet")
  6424. },
  6425. {
  6426. name: "Macro",
  6427. height: math.unit(600, "meters"),
  6428. default: true
  6429. },
  6430. {
  6431. name: "Megamacro",
  6432. height: math.unit(1, "mile")
  6433. },
  6434. ]
  6435. ))
  6436. characterMakers.push(() => makeCharacter(
  6437. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6438. {
  6439. front: {
  6440. height: math.unit(1.65, "meters"),
  6441. weight: math.unit(74, "kg"),
  6442. name: "Front",
  6443. image: {
  6444. source: "./media/characters/berri/front.svg",
  6445. extra: 857 / 837,
  6446. bottom: 18 / 877
  6447. }
  6448. },
  6449. bum: {
  6450. height: math.unit(1.46, "feet"),
  6451. name: "Bum",
  6452. image: {
  6453. source: "./media/characters/berri/bum.svg"
  6454. }
  6455. },
  6456. mouth: {
  6457. height: math.unit(0.44, "feet"),
  6458. name: "Mouth",
  6459. image: {
  6460. source: "./media/characters/berri/mouth.svg"
  6461. }
  6462. },
  6463. paw: {
  6464. height: math.unit(0.826, "feet"),
  6465. name: "Paw",
  6466. image: {
  6467. source: "./media/characters/berri/paw.svg"
  6468. }
  6469. },
  6470. },
  6471. [
  6472. {
  6473. name: "Normal",
  6474. height: math.unit(1.65, "meters")
  6475. },
  6476. {
  6477. name: "Macro",
  6478. height: math.unit(60, "m"),
  6479. default: true
  6480. },
  6481. {
  6482. name: "Megamacro",
  6483. height: math.unit(9.213, "km")
  6484. },
  6485. {
  6486. name: "Planet Eater",
  6487. height: math.unit(489, "megameters")
  6488. },
  6489. {
  6490. name: "Teramacro",
  6491. height: math.unit(2471635000000, "meters")
  6492. },
  6493. {
  6494. name: "Examacro",
  6495. height: math.unit(8.0624e+26, "meters")
  6496. }
  6497. ]
  6498. ))
  6499. characterMakers.push(() => makeCharacter(
  6500. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6501. {
  6502. front: {
  6503. height: math.unit(1.72, "meters"),
  6504. weight: math.unit(68, "kg"),
  6505. name: "Front",
  6506. image: {
  6507. source: "./media/characters/lexi/front.svg"
  6508. }
  6509. }
  6510. },
  6511. [
  6512. {
  6513. name: "Very Smol",
  6514. height: math.unit(10, "mm")
  6515. },
  6516. {
  6517. name: "Micro",
  6518. height: math.unit(6.8, "cm"),
  6519. default: true
  6520. },
  6521. {
  6522. name: "Normal",
  6523. height: math.unit(1.72, "m")
  6524. }
  6525. ]
  6526. ))
  6527. characterMakers.push(() => makeCharacter(
  6528. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6529. {
  6530. front: {
  6531. height: math.unit(1.69, "meters"),
  6532. weight: math.unit(68, "kg"),
  6533. name: "Front",
  6534. image: {
  6535. source: "./media/characters/martin/front.svg",
  6536. extra: 596 / 581
  6537. }
  6538. }
  6539. },
  6540. [
  6541. {
  6542. name: "Micro",
  6543. height: math.unit(6.85, "cm"),
  6544. default: true
  6545. },
  6546. {
  6547. name: "Normal",
  6548. height: math.unit(1.69, "m")
  6549. }
  6550. ]
  6551. ))
  6552. characterMakers.push(() => makeCharacter(
  6553. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6554. {
  6555. front: {
  6556. height: math.unit(1.69, "meters"),
  6557. weight: math.unit(68, "kg"),
  6558. name: "Front",
  6559. image: {
  6560. source: "./media/characters/juno/front.svg"
  6561. }
  6562. }
  6563. },
  6564. [
  6565. {
  6566. name: "Micro",
  6567. height: math.unit(7, "cm")
  6568. },
  6569. {
  6570. name: "Normal",
  6571. height: math.unit(1.89, "m")
  6572. },
  6573. {
  6574. name: "Macro",
  6575. height: math.unit(353, "meters"),
  6576. default: true
  6577. }
  6578. ]
  6579. ))
  6580. characterMakers.push(() => makeCharacter(
  6581. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6582. {
  6583. front: {
  6584. height: math.unit(1.93, "meters"),
  6585. weight: math.unit(83, "kg"),
  6586. name: "Front",
  6587. image: {
  6588. source: "./media/characters/samantha/front.svg"
  6589. }
  6590. },
  6591. frontClothed: {
  6592. height: math.unit(1.93, "meters"),
  6593. weight: math.unit(83, "kg"),
  6594. name: "Front (Clothed)",
  6595. image: {
  6596. source: "./media/characters/samantha/front-clothed.svg"
  6597. }
  6598. },
  6599. back: {
  6600. height: math.unit(1.93, "meters"),
  6601. weight: math.unit(83, "kg"),
  6602. name: "Back",
  6603. image: {
  6604. source: "./media/characters/samantha/back.svg"
  6605. }
  6606. },
  6607. },
  6608. [
  6609. {
  6610. name: "Normal",
  6611. height: math.unit(1.93, "m")
  6612. },
  6613. {
  6614. name: "Macro",
  6615. height: math.unit(74, "meters"),
  6616. default: true
  6617. },
  6618. {
  6619. name: "Macro+",
  6620. height: math.unit(223, "meters"),
  6621. },
  6622. {
  6623. name: "Megamacro",
  6624. height: math.unit(8381, "meters"),
  6625. },
  6626. {
  6627. name: "Megamacro+",
  6628. height: math.unit(12000, "kilometers")
  6629. },
  6630. ]
  6631. ))
  6632. characterMakers.push(() => makeCharacter(
  6633. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6634. {
  6635. front: {
  6636. height: math.unit(1.92, "meters"),
  6637. weight: math.unit(80, "kg"),
  6638. name: "Front",
  6639. image: {
  6640. source: "./media/characters/dr-clay/front.svg"
  6641. }
  6642. },
  6643. frontClothed: {
  6644. height: math.unit(1.92, "meters"),
  6645. weight: math.unit(80, "kg"),
  6646. name: "Front (Clothed)",
  6647. image: {
  6648. source: "./media/characters/dr-clay/front-clothed.svg"
  6649. }
  6650. }
  6651. },
  6652. [
  6653. {
  6654. name: "Normal",
  6655. height: math.unit(1.92, "m")
  6656. },
  6657. {
  6658. name: "Macro",
  6659. height: math.unit(214, "meters"),
  6660. default: true
  6661. },
  6662. {
  6663. name: "Macro+",
  6664. height: math.unit(12.237, "meters"),
  6665. },
  6666. {
  6667. name: "Megamacro",
  6668. height: math.unit(557, "megameters"),
  6669. },
  6670. {
  6671. name: "Unimaginable",
  6672. height: math.unit(120e9, "lightyears")
  6673. },
  6674. ]
  6675. ))
  6676. characterMakers.push(() => makeCharacter(
  6677. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6678. {
  6679. front: {
  6680. height: math.unit(2, "meters"),
  6681. weight: math.unit(80, "kg"),
  6682. name: "Front",
  6683. image: {
  6684. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6685. }
  6686. }
  6687. },
  6688. [
  6689. {
  6690. name: "Teramacro",
  6691. height: math.unit(500000, "lightyears"),
  6692. default: true
  6693. },
  6694. ]
  6695. ))
  6696. characterMakers.push(() => makeCharacter(
  6697. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6698. {
  6699. crux: {
  6700. height: math.unit(2, "meters"),
  6701. weight: math.unit(150, "kg"),
  6702. name: "Crux",
  6703. image: {
  6704. source: "./media/characters/vemus/crux.svg",
  6705. extra: 1074/936,
  6706. bottom: 23/1097
  6707. }
  6708. },
  6709. skunkTanuki: {
  6710. height: math.unit(2, "meters"),
  6711. weight: math.unit(150, "kg"),
  6712. name: "Skunk-Tanuki",
  6713. image: {
  6714. source: "./media/characters/vemus/skunk-tanuki.svg",
  6715. extra: 926/893,
  6716. bottom: 20/946
  6717. }
  6718. },
  6719. },
  6720. [
  6721. {
  6722. name: "Normal",
  6723. height: math.unit(3.75, "meters"),
  6724. default: true
  6725. },
  6726. {
  6727. name: "Big",
  6728. height: math.unit(8, "meters")
  6729. },
  6730. {
  6731. name: "Macro",
  6732. height: math.unit(100, "meters")
  6733. },
  6734. {
  6735. name: "Macro+",
  6736. height: math.unit(1500, "meters")
  6737. },
  6738. {
  6739. name: "Stellar",
  6740. height: math.unit(14e8, "meters")
  6741. },
  6742. ]
  6743. ))
  6744. characterMakers.push(() => makeCharacter(
  6745. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6746. {
  6747. front: {
  6748. height: math.unit(2, "meters"),
  6749. weight: math.unit(70, "kg"),
  6750. name: "Front",
  6751. image: {
  6752. source: "./media/characters/beherit/front.svg",
  6753. extra: 1408 / 1242
  6754. }
  6755. }
  6756. },
  6757. [
  6758. {
  6759. name: "Normal",
  6760. height: math.unit(6, "feet")
  6761. },
  6762. {
  6763. name: "Lorg",
  6764. height: math.unit(25, "feet"),
  6765. default: true
  6766. },
  6767. {
  6768. name: "Lorger",
  6769. height: math.unit(75, "feet")
  6770. },
  6771. {
  6772. name: "Macro",
  6773. height: math.unit(200, "meters")
  6774. },
  6775. ]
  6776. ))
  6777. characterMakers.push(() => makeCharacter(
  6778. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6779. {
  6780. front: {
  6781. height: math.unit(2, "meters"),
  6782. weight: math.unit(150, "kg"),
  6783. name: "Front",
  6784. image: {
  6785. source: "./media/characters/everett/front.svg",
  6786. extra: 2038 / 1737,
  6787. bottom: 0.03
  6788. }
  6789. },
  6790. paw: {
  6791. height: math.unit(2 / 3.6, "meters"),
  6792. name: "Paw",
  6793. image: {
  6794. source: "./media/characters/everett/paw.svg"
  6795. }
  6796. },
  6797. },
  6798. [
  6799. {
  6800. name: "Normal",
  6801. height: math.unit(15, "feet"),
  6802. default: true
  6803. },
  6804. {
  6805. name: "Lorg",
  6806. height: math.unit(70, "feet"),
  6807. default: true
  6808. },
  6809. {
  6810. name: "Lorger",
  6811. height: math.unit(250, "feet")
  6812. },
  6813. {
  6814. name: "Macro",
  6815. height: math.unit(500, "meters")
  6816. },
  6817. ]
  6818. ))
  6819. characterMakers.push(() => makeCharacter(
  6820. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6821. {
  6822. front: {
  6823. height: math.unit(2, "meters"),
  6824. weight: math.unit(86, "kg"),
  6825. name: "Front",
  6826. image: {
  6827. source: "./media/characters/rose/front.svg",
  6828. extra: 1785/1636,
  6829. bottom: 30/1815
  6830. }
  6831. },
  6832. frontSporty: {
  6833. height: math.unit(2, "meters"),
  6834. weight: math.unit(86, "kg"),
  6835. name: "Front (Sporty)",
  6836. image: {
  6837. source: "./media/characters/rose/front-sporty.svg",
  6838. extra: 350/335,
  6839. bottom: 10/360
  6840. }
  6841. },
  6842. frontAlt: {
  6843. height: math.unit(1.6, "meters"),
  6844. weight: math.unit(86, "kg"),
  6845. name: "Front (Alt)",
  6846. image: {
  6847. source: "./media/characters/rose/front-alt.svg",
  6848. extra: 299/283,
  6849. bottom: 3/302
  6850. }
  6851. },
  6852. plush: {
  6853. height: math.unit(2, "meters"),
  6854. weight: math.unit(86/3, "kg"),
  6855. name: "Plush",
  6856. image: {
  6857. source: "./media/characters/rose/plush.svg",
  6858. extra: 361/337,
  6859. bottom: 11/372
  6860. }
  6861. },
  6862. },
  6863. [
  6864. {
  6865. name: "True Micro",
  6866. height: math.unit(9, "cm")
  6867. },
  6868. {
  6869. name: "Micro",
  6870. height: math.unit(16, "cm")
  6871. },
  6872. {
  6873. name: "Normal",
  6874. height: math.unit(1.85, "meters"),
  6875. default: true
  6876. },
  6877. {
  6878. name: "Mini-Macro",
  6879. height: math.unit(5, "meters")
  6880. },
  6881. {
  6882. name: "Macro",
  6883. height: math.unit(15, "meters")
  6884. },
  6885. {
  6886. name: "True Macro",
  6887. height: math.unit(40, "meters")
  6888. },
  6889. {
  6890. name: "City Scale",
  6891. height: math.unit(1, "km")
  6892. },
  6893. ]
  6894. ))
  6895. characterMakers.push(() => makeCharacter(
  6896. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6897. {
  6898. front: {
  6899. height: math.unit(2, "meters"),
  6900. weight: math.unit(350, "lbs"),
  6901. name: "Front",
  6902. image: {
  6903. source: "./media/characters/regal/front.svg"
  6904. }
  6905. },
  6906. back: {
  6907. height: math.unit(2, "meters"),
  6908. weight: math.unit(350, "lbs"),
  6909. name: "Back",
  6910. image: {
  6911. source: "./media/characters/regal/back.svg"
  6912. }
  6913. },
  6914. },
  6915. [
  6916. {
  6917. name: "Macro",
  6918. height: math.unit(350, "feet"),
  6919. default: true
  6920. }
  6921. ]
  6922. ))
  6923. characterMakers.push(() => makeCharacter(
  6924. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6925. {
  6926. front: {
  6927. height: math.unit(4 + 11 / 12, "feet"),
  6928. weight: math.unit(100, "lbs"),
  6929. name: "Front",
  6930. image: {
  6931. source: "./media/characters/opal/front.svg"
  6932. }
  6933. },
  6934. frontAlt: {
  6935. height: math.unit(4 + 11 / 12, "feet"),
  6936. weight: math.unit(100, "lbs"),
  6937. name: "Front (Alt)",
  6938. image: {
  6939. source: "./media/characters/opal/front-alt.svg"
  6940. }
  6941. },
  6942. },
  6943. [
  6944. {
  6945. name: "Small",
  6946. height: math.unit(4 + 11 / 12, "feet")
  6947. },
  6948. {
  6949. name: "Normal",
  6950. height: math.unit(20, "feet"),
  6951. default: true
  6952. },
  6953. {
  6954. name: "Macro",
  6955. height: math.unit(120, "feet")
  6956. },
  6957. {
  6958. name: "Megamacro",
  6959. height: math.unit(80, "miles")
  6960. },
  6961. {
  6962. name: "True Size",
  6963. height: math.unit(100000, "lightyears")
  6964. },
  6965. ]
  6966. ))
  6967. characterMakers.push(() => makeCharacter(
  6968. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6969. {
  6970. front: {
  6971. height: math.unit(6, "feet"),
  6972. weight: math.unit(200, "lbs"),
  6973. name: "Front",
  6974. image: {
  6975. source: "./media/characters/vector-wuff/front.svg"
  6976. }
  6977. }
  6978. },
  6979. [
  6980. {
  6981. name: "Normal",
  6982. height: math.unit(2.8, "meters")
  6983. },
  6984. {
  6985. name: "Macro",
  6986. height: math.unit(450, "meters"),
  6987. default: true
  6988. },
  6989. {
  6990. name: "Megamacro",
  6991. height: math.unit(15, "kilometers")
  6992. }
  6993. ]
  6994. ))
  6995. characterMakers.push(() => makeCharacter(
  6996. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6997. {
  6998. front: {
  6999. height: math.unit(6, "feet"),
  7000. weight: math.unit(256, "lbs"),
  7001. name: "Front",
  7002. image: {
  7003. source: "./media/characters/dannik/front.svg"
  7004. }
  7005. }
  7006. },
  7007. [
  7008. {
  7009. name: "Macro",
  7010. height: math.unit(69.57, "meters"),
  7011. default: true
  7012. },
  7013. ]
  7014. ))
  7015. characterMakers.push(() => makeCharacter(
  7016. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7017. {
  7018. front: {
  7019. height: math.unit(6, "feet"),
  7020. weight: math.unit(120, "lbs"),
  7021. name: "Front",
  7022. image: {
  7023. source: "./media/characters/azura-saharah/front.svg"
  7024. }
  7025. },
  7026. back: {
  7027. height: math.unit(6, "feet"),
  7028. weight: math.unit(120, "lbs"),
  7029. name: "Back",
  7030. image: {
  7031. source: "./media/characters/azura-saharah/back.svg"
  7032. }
  7033. },
  7034. },
  7035. [
  7036. {
  7037. name: "Macro",
  7038. height: math.unit(100, "feet"),
  7039. default: true
  7040. },
  7041. ]
  7042. ))
  7043. characterMakers.push(() => makeCharacter(
  7044. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7045. {
  7046. side: {
  7047. height: math.unit(5 + 4 / 12, "feet"),
  7048. weight: math.unit(163, "lbs"),
  7049. name: "Side",
  7050. image: {
  7051. source: "./media/characters/kennedy/side.svg"
  7052. }
  7053. }
  7054. },
  7055. [
  7056. {
  7057. name: "Standard Doggo",
  7058. height: math.unit(5 + 4 / 12, "feet")
  7059. },
  7060. {
  7061. name: "Big Doggo",
  7062. height: math.unit(25 + 3 / 12, "feet"),
  7063. default: true
  7064. },
  7065. ]
  7066. ))
  7067. characterMakers.push(() => makeCharacter(
  7068. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7069. {
  7070. front: {
  7071. height: math.unit(6, "feet"),
  7072. weight: math.unit(90, "lbs"),
  7073. name: "Front",
  7074. image: {
  7075. source: "./media/characters/odi-lunar/front.svg"
  7076. }
  7077. }
  7078. },
  7079. [
  7080. {
  7081. name: "Micro",
  7082. height: math.unit(3, "inches"),
  7083. default: true
  7084. },
  7085. {
  7086. name: "Normal",
  7087. height: math.unit(5.5, "feet")
  7088. }
  7089. ]
  7090. ))
  7091. characterMakers.push(() => makeCharacter(
  7092. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7093. {
  7094. back: {
  7095. height: math.unit(6, "feet"),
  7096. weight: math.unit(220, "lbs"),
  7097. name: "Back",
  7098. image: {
  7099. source: "./media/characters/mandake/back.svg"
  7100. }
  7101. }
  7102. },
  7103. [
  7104. {
  7105. name: "Normal",
  7106. height: math.unit(7, "feet"),
  7107. default: true
  7108. },
  7109. {
  7110. name: "Macro",
  7111. height: math.unit(78, "feet")
  7112. },
  7113. {
  7114. name: "Macro+",
  7115. height: math.unit(300, "meters")
  7116. },
  7117. {
  7118. name: "Macro++",
  7119. height: math.unit(2400, "feet")
  7120. },
  7121. {
  7122. name: "Megamacro",
  7123. height: math.unit(5167, "meters")
  7124. },
  7125. {
  7126. name: "Gigamacro",
  7127. height: math.unit(41769, "miles")
  7128. },
  7129. ]
  7130. ))
  7131. characterMakers.push(() => makeCharacter(
  7132. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7133. {
  7134. front: {
  7135. height: math.unit(6, "feet"),
  7136. weight: math.unit(120, "lbs"),
  7137. name: "Front",
  7138. image: {
  7139. source: "./media/characters/yozey/front.svg"
  7140. }
  7141. },
  7142. frontAlt: {
  7143. height: math.unit(6, "feet"),
  7144. weight: math.unit(120, "lbs"),
  7145. name: "Front (Alt)",
  7146. image: {
  7147. source: "./media/characters/yozey/front-alt.svg"
  7148. }
  7149. },
  7150. side: {
  7151. height: math.unit(6, "feet"),
  7152. weight: math.unit(120, "lbs"),
  7153. name: "Side",
  7154. image: {
  7155. source: "./media/characters/yozey/side.svg"
  7156. }
  7157. },
  7158. },
  7159. [
  7160. {
  7161. name: "Micro",
  7162. height: math.unit(3, "inches"),
  7163. default: true
  7164. },
  7165. {
  7166. name: "Normal",
  7167. height: math.unit(6, "feet")
  7168. }
  7169. ]
  7170. ))
  7171. characterMakers.push(() => makeCharacter(
  7172. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7173. {
  7174. front: {
  7175. height: math.unit(6, "feet"),
  7176. weight: math.unit(103, "lbs"),
  7177. name: "Front",
  7178. image: {
  7179. source: "./media/characters/valeska-voss/front.svg"
  7180. }
  7181. }
  7182. },
  7183. [
  7184. {
  7185. name: "Mini-Sized Sub",
  7186. height: math.unit(3.1, "inches")
  7187. },
  7188. {
  7189. name: "Mid-Sized Sub",
  7190. height: math.unit(6.2, "inches")
  7191. },
  7192. {
  7193. name: "Full-Sized Sub",
  7194. height: math.unit(9.3, "inches")
  7195. },
  7196. {
  7197. name: "Normal",
  7198. height: math.unit(5 + 2 / 12, "foot"),
  7199. default: true
  7200. },
  7201. ]
  7202. ))
  7203. characterMakers.push(() => makeCharacter(
  7204. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7205. {
  7206. front: {
  7207. height: math.unit(6, "feet"),
  7208. weight: math.unit(160, "lbs"),
  7209. name: "Front",
  7210. image: {
  7211. source: "./media/characters/gene-zeta/front.svg",
  7212. extra: 3006 / 2826,
  7213. bottom: 182 / 3188
  7214. }
  7215. }
  7216. },
  7217. [
  7218. {
  7219. name: "Micro",
  7220. height: math.unit(6, "inches")
  7221. },
  7222. {
  7223. name: "Normal",
  7224. height: math.unit(5 + 11 / 12, "foot"),
  7225. default: true
  7226. },
  7227. {
  7228. name: "Macro",
  7229. height: math.unit(140, "feet")
  7230. },
  7231. {
  7232. name: "Supercharged",
  7233. height: math.unit(2500, "feet")
  7234. },
  7235. ]
  7236. ))
  7237. characterMakers.push(() => makeCharacter(
  7238. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7239. {
  7240. front: {
  7241. height: math.unit(6, "feet"),
  7242. weight: math.unit(350, "lbs"),
  7243. name: "Front",
  7244. image: {
  7245. source: "./media/characters/razinox/front.svg",
  7246. extra: 1686 / 1548,
  7247. bottom: 28.2 / 1868
  7248. }
  7249. },
  7250. back: {
  7251. height: math.unit(6, "feet"),
  7252. weight: math.unit(350, "lbs"),
  7253. name: "Back",
  7254. image: {
  7255. source: "./media/characters/razinox/back.svg",
  7256. extra: 1660 / 1590,
  7257. bottom: 15 / 1665
  7258. }
  7259. },
  7260. },
  7261. [
  7262. {
  7263. name: "Normal",
  7264. height: math.unit(10 + 8 / 12, "foot")
  7265. },
  7266. {
  7267. name: "Minimacro",
  7268. height: math.unit(15, "foot")
  7269. },
  7270. {
  7271. name: "Macro",
  7272. height: math.unit(60, "foot"),
  7273. default: true
  7274. },
  7275. {
  7276. name: "Megamacro",
  7277. height: math.unit(5, "miles")
  7278. },
  7279. {
  7280. name: "Gigamacro",
  7281. height: math.unit(6000, "miles")
  7282. },
  7283. ]
  7284. ))
  7285. characterMakers.push(() => makeCharacter(
  7286. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7287. {
  7288. front: {
  7289. height: math.unit(6, "feet"),
  7290. weight: math.unit(150, "lbs"),
  7291. name: "Front",
  7292. image: {
  7293. source: "./media/characters/cobalt/front.svg"
  7294. }
  7295. }
  7296. },
  7297. [
  7298. {
  7299. name: "Normal",
  7300. height: math.unit(8 + 1 / 12, "foot")
  7301. },
  7302. {
  7303. name: "Macro",
  7304. height: math.unit(111, "foot"),
  7305. default: true
  7306. },
  7307. {
  7308. name: "Supracosmic",
  7309. height: math.unit(1e42, "feet")
  7310. },
  7311. ]
  7312. ))
  7313. characterMakers.push(() => makeCharacter(
  7314. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7315. {
  7316. front: {
  7317. height: math.unit(6, "feet"),
  7318. weight: math.unit(140, "lbs"),
  7319. name: "Front",
  7320. image: {
  7321. source: "./media/characters/amanda/front.svg"
  7322. }
  7323. }
  7324. },
  7325. [
  7326. {
  7327. name: "Micro",
  7328. height: math.unit(5, "inches"),
  7329. default: true
  7330. },
  7331. ]
  7332. ))
  7333. characterMakers.push(() => makeCharacter(
  7334. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7335. {
  7336. front: {
  7337. height: math.unit(2.75, "meters"),
  7338. weight: math.unit(1200, "lb"),
  7339. name: "Front",
  7340. image: {
  7341. source: "./media/characters/teal/front.svg",
  7342. extra: 2463 / 2320,
  7343. bottom: 166 / 2629
  7344. }
  7345. },
  7346. back: {
  7347. height: math.unit(2.75, "meters"),
  7348. weight: math.unit(1200, "lb"),
  7349. name: "Back",
  7350. image: {
  7351. source: "./media/characters/teal/back.svg",
  7352. extra: 2580 / 2489,
  7353. bottom: 151 / 2731
  7354. }
  7355. },
  7356. sitting: {
  7357. height: math.unit(1.9, "meters"),
  7358. weight: math.unit(1200, "lb"),
  7359. name: "Sitting",
  7360. image: {
  7361. source: "./media/characters/teal/sitting.svg",
  7362. extra: 623 / 590,
  7363. bottom: 121 / 744
  7364. }
  7365. },
  7366. standing: {
  7367. height: math.unit(2.75, "meters"),
  7368. weight: math.unit(1200, "lb"),
  7369. name: "Standing",
  7370. image: {
  7371. source: "./media/characters/teal/standing.svg",
  7372. extra: 923 / 893,
  7373. bottom: 60 / 983
  7374. }
  7375. },
  7376. stretching: {
  7377. height: math.unit(3.65, "meters"),
  7378. weight: math.unit(1200, "lb"),
  7379. name: "Stretching",
  7380. image: {
  7381. source: "./media/characters/teal/stretching.svg",
  7382. extra: 1276 / 1244,
  7383. bottom: 0 / 1276
  7384. }
  7385. },
  7386. legged: {
  7387. height: math.unit(1.3, "meters"),
  7388. weight: math.unit(100, "lb"),
  7389. name: "Legged",
  7390. image: {
  7391. source: "./media/characters/teal/legged.svg",
  7392. extra: 462 / 437,
  7393. bottom: 24 / 486
  7394. }
  7395. },
  7396. naga: {
  7397. height: math.unit(5.4, "meters"),
  7398. weight: math.unit(4000, "lb"),
  7399. name: "Naga",
  7400. image: {
  7401. source: "./media/characters/teal/naga.svg",
  7402. extra: 1902 / 1858,
  7403. bottom: 0 / 1902
  7404. }
  7405. },
  7406. hand: {
  7407. height: math.unit(0.52, "meters"),
  7408. name: "Hand",
  7409. image: {
  7410. source: "./media/characters/teal/hand.svg"
  7411. }
  7412. },
  7413. maw: {
  7414. height: math.unit(0.43, "meters"),
  7415. name: "Maw",
  7416. image: {
  7417. source: "./media/characters/teal/maw.svg"
  7418. }
  7419. },
  7420. slit: {
  7421. height: math.unit(0.25, "meters"),
  7422. name: "Slit",
  7423. image: {
  7424. source: "./media/characters/teal/slit.svg"
  7425. }
  7426. },
  7427. },
  7428. [
  7429. {
  7430. name: "Normal",
  7431. height: math.unit(2.75, "meters"),
  7432. default: true
  7433. },
  7434. {
  7435. name: "Macro",
  7436. height: math.unit(300, "feet")
  7437. },
  7438. {
  7439. name: "Macro+",
  7440. height: math.unit(2000, "feet")
  7441. },
  7442. ]
  7443. ))
  7444. characterMakers.push(() => makeCharacter(
  7445. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7446. {
  7447. frontCat: {
  7448. height: math.unit(6, "feet"),
  7449. weight: math.unit(180, "lbs"),
  7450. name: "Front (Cat)",
  7451. image: {
  7452. source: "./media/characters/ravin-amulet/front-cat.svg"
  7453. }
  7454. },
  7455. frontCatAlt: {
  7456. height: math.unit(6, "feet"),
  7457. weight: math.unit(180, "lbs"),
  7458. name: "Front (Alt, Cat)",
  7459. image: {
  7460. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7461. }
  7462. },
  7463. frontWerewolf: {
  7464. height: math.unit(6 * 1.2, "feet"),
  7465. weight: math.unit(225, "lbs"),
  7466. name: "Front (Werewolf)",
  7467. image: {
  7468. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7469. }
  7470. },
  7471. backWerewolf: {
  7472. height: math.unit(6 * 1.2, "feet"),
  7473. weight: math.unit(225, "lbs"),
  7474. name: "Back (Werewolf)",
  7475. image: {
  7476. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7477. }
  7478. },
  7479. },
  7480. [
  7481. {
  7482. name: "Nano",
  7483. height: math.unit(1, "micrometer")
  7484. },
  7485. {
  7486. name: "Micro",
  7487. height: math.unit(1, "inch")
  7488. },
  7489. {
  7490. name: "Normal",
  7491. height: math.unit(6, "feet"),
  7492. default: true
  7493. },
  7494. {
  7495. name: "Macro",
  7496. height: math.unit(60, "feet")
  7497. }
  7498. ]
  7499. ))
  7500. characterMakers.push(() => makeCharacter(
  7501. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7502. {
  7503. front: {
  7504. height: math.unit(6, "feet"),
  7505. weight: math.unit(165, "lbs"),
  7506. name: "Front",
  7507. image: {
  7508. source: "./media/characters/fluoresce/front.svg"
  7509. }
  7510. }
  7511. },
  7512. [
  7513. {
  7514. name: "Micro",
  7515. height: math.unit(6, "cm")
  7516. },
  7517. {
  7518. name: "Normal",
  7519. height: math.unit(5 + 7 / 12, "feet"),
  7520. default: true
  7521. },
  7522. {
  7523. name: "Macro",
  7524. height: math.unit(56, "feet")
  7525. },
  7526. {
  7527. name: "Megamacro",
  7528. height: math.unit(1.9, "miles")
  7529. },
  7530. ]
  7531. ))
  7532. characterMakers.push(() => makeCharacter(
  7533. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7534. {
  7535. front: {
  7536. height: math.unit(9 + 6 / 12, "feet"),
  7537. weight: math.unit(523, "lbs"),
  7538. name: "Side",
  7539. image: {
  7540. source: "./media/characters/aurora/side.svg"
  7541. }
  7542. }
  7543. },
  7544. [
  7545. {
  7546. name: "Normal",
  7547. height: math.unit(9 + 6 / 12, "feet")
  7548. },
  7549. {
  7550. name: "Macro",
  7551. height: math.unit(96, "feet"),
  7552. default: true
  7553. },
  7554. {
  7555. name: "Macro+",
  7556. height: math.unit(243, "feet")
  7557. },
  7558. ]
  7559. ))
  7560. characterMakers.push(() => makeCharacter(
  7561. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7562. {
  7563. front: {
  7564. height: math.unit(194, "cm"),
  7565. weight: math.unit(90, "kg"),
  7566. name: "Front",
  7567. image: {
  7568. source: "./media/characters/ranek/front.svg"
  7569. }
  7570. },
  7571. side: {
  7572. height: math.unit(194, "cm"),
  7573. weight: math.unit(90, "kg"),
  7574. name: "Side",
  7575. image: {
  7576. source: "./media/characters/ranek/side.svg"
  7577. }
  7578. },
  7579. back: {
  7580. height: math.unit(194, "cm"),
  7581. weight: math.unit(90, "kg"),
  7582. name: "Back",
  7583. image: {
  7584. source: "./media/characters/ranek/back.svg"
  7585. }
  7586. },
  7587. feral: {
  7588. height: math.unit(30, "cm"),
  7589. weight: math.unit(1.6, "lbs"),
  7590. name: "Feral",
  7591. image: {
  7592. source: "./media/characters/ranek/feral.svg"
  7593. }
  7594. },
  7595. },
  7596. [
  7597. {
  7598. name: "Normal",
  7599. height: math.unit(194, "cm"),
  7600. default: true
  7601. },
  7602. {
  7603. name: "Macro",
  7604. height: math.unit(100, "meters")
  7605. },
  7606. ]
  7607. ))
  7608. characterMakers.push(() => makeCharacter(
  7609. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7610. {
  7611. front: {
  7612. height: math.unit(5 + 6 / 12, "feet"),
  7613. weight: math.unit(153, "lbs"),
  7614. name: "Front",
  7615. image: {
  7616. source: "./media/characters/andrew-cooper/front.svg"
  7617. }
  7618. },
  7619. },
  7620. [
  7621. {
  7622. name: "Nano",
  7623. height: math.unit(1, "mm")
  7624. },
  7625. {
  7626. name: "Micro",
  7627. height: math.unit(2, "inches")
  7628. },
  7629. {
  7630. name: "Normal",
  7631. height: math.unit(5 + 6 / 12, "feet"),
  7632. default: true
  7633. }
  7634. ]
  7635. ))
  7636. characterMakers.push(() => makeCharacter(
  7637. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7638. {
  7639. front: {
  7640. height: math.unit(6, "feet"),
  7641. weight: math.unit(180, "lbs"),
  7642. name: "Front",
  7643. image: {
  7644. source: "./media/characters/akane-sato/front.svg",
  7645. extra: 1219 / 1140
  7646. }
  7647. },
  7648. back: {
  7649. height: math.unit(6, "feet"),
  7650. weight: math.unit(180, "lbs"),
  7651. name: "Back",
  7652. image: {
  7653. source: "./media/characters/akane-sato/back.svg",
  7654. extra: 1219 / 1170
  7655. }
  7656. },
  7657. },
  7658. [
  7659. {
  7660. name: "Normal",
  7661. height: math.unit(2.5, "meters")
  7662. },
  7663. {
  7664. name: "Macro",
  7665. height: math.unit(250, "meters"),
  7666. default: true
  7667. },
  7668. {
  7669. name: "Megamacro",
  7670. height: math.unit(25, "km")
  7671. },
  7672. ]
  7673. ))
  7674. characterMakers.push(() => makeCharacter(
  7675. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7676. {
  7677. front: {
  7678. height: math.unit(6, "feet"),
  7679. weight: math.unit(65, "kg"),
  7680. name: "Front",
  7681. image: {
  7682. source: "./media/characters/rook/front.svg",
  7683. extra: 960 / 950
  7684. }
  7685. }
  7686. },
  7687. [
  7688. {
  7689. name: "Normal",
  7690. height: math.unit(8.8, "feet")
  7691. },
  7692. {
  7693. name: "Macro",
  7694. height: math.unit(88, "feet"),
  7695. default: true
  7696. },
  7697. {
  7698. name: "Megamacro",
  7699. height: math.unit(8, "miles")
  7700. },
  7701. ]
  7702. ))
  7703. characterMakers.push(() => makeCharacter(
  7704. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7705. {
  7706. front: {
  7707. height: math.unit(12 + 2 / 12, "feet"),
  7708. weight: math.unit(808, "lbs"),
  7709. name: "Front",
  7710. image: {
  7711. source: "./media/characters/prodigy/front.svg"
  7712. }
  7713. }
  7714. },
  7715. [
  7716. {
  7717. name: "Normal",
  7718. height: math.unit(12 + 2 / 12, "feet"),
  7719. default: true
  7720. },
  7721. {
  7722. name: "Macro",
  7723. height: math.unit(143, "feet")
  7724. },
  7725. {
  7726. name: "Macro+",
  7727. height: math.unit(400, "feet")
  7728. },
  7729. ]
  7730. ))
  7731. characterMakers.push(() => makeCharacter(
  7732. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7733. {
  7734. front: {
  7735. height: math.unit(6, "feet"),
  7736. weight: math.unit(225, "lbs"),
  7737. name: "Front",
  7738. image: {
  7739. source: "./media/characters/daniel/front.svg"
  7740. }
  7741. },
  7742. leaning: {
  7743. height: math.unit(6, "feet"),
  7744. weight: math.unit(225, "lbs"),
  7745. name: "Leaning",
  7746. image: {
  7747. source: "./media/characters/daniel/leaning.svg"
  7748. }
  7749. },
  7750. },
  7751. [
  7752. {
  7753. name: "Macro",
  7754. height: math.unit(1000, "feet"),
  7755. default: true
  7756. },
  7757. ]
  7758. ))
  7759. characterMakers.push(() => makeCharacter(
  7760. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7761. {
  7762. front: {
  7763. height: math.unit(6, "feet"),
  7764. weight: math.unit(88, "lbs"),
  7765. name: "Front",
  7766. image: {
  7767. source: "./media/characters/chiros/front.svg",
  7768. extra: 306 / 226
  7769. }
  7770. },
  7771. side: {
  7772. height: math.unit(6, "feet"),
  7773. weight: math.unit(88, "lbs"),
  7774. name: "Side",
  7775. image: {
  7776. source: "./media/characters/chiros/side.svg",
  7777. extra: 306 / 226
  7778. }
  7779. },
  7780. },
  7781. [
  7782. {
  7783. name: "Normal",
  7784. height: math.unit(6, "cm"),
  7785. default: true
  7786. },
  7787. ]
  7788. ))
  7789. characterMakers.push(() => makeCharacter(
  7790. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7791. {
  7792. front: {
  7793. height: math.unit(6, "feet"),
  7794. weight: math.unit(100, "lbs"),
  7795. name: "Front",
  7796. image: {
  7797. source: "./media/characters/selka/front.svg",
  7798. extra: 947 / 887
  7799. }
  7800. }
  7801. },
  7802. [
  7803. {
  7804. name: "Normal",
  7805. height: math.unit(5, "cm"),
  7806. default: true
  7807. },
  7808. ]
  7809. ))
  7810. characterMakers.push(() => makeCharacter(
  7811. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7812. {
  7813. front: {
  7814. height: math.unit(8 + 3 / 12, "feet"),
  7815. weight: math.unit(424, "lbs"),
  7816. name: "Front",
  7817. image: {
  7818. source: "./media/characters/verin/front.svg",
  7819. extra: 1845 / 1550
  7820. }
  7821. },
  7822. frontArmored: {
  7823. height: math.unit(8 + 3 / 12, "feet"),
  7824. weight: math.unit(424, "lbs"),
  7825. name: "Front (Armored)",
  7826. image: {
  7827. source: "./media/characters/verin/front-armor.svg",
  7828. extra: 1845 / 1550,
  7829. bottom: 0.01
  7830. }
  7831. },
  7832. back: {
  7833. height: math.unit(8 + 3 / 12, "feet"),
  7834. weight: math.unit(424, "lbs"),
  7835. name: "Back",
  7836. image: {
  7837. source: "./media/characters/verin/back.svg",
  7838. bottom: 0.1,
  7839. extra: 1
  7840. }
  7841. },
  7842. foot: {
  7843. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7844. name: "Foot",
  7845. image: {
  7846. source: "./media/characters/verin/foot.svg"
  7847. }
  7848. },
  7849. },
  7850. [
  7851. {
  7852. name: "Normal",
  7853. height: math.unit(8 + 3 / 12, "feet")
  7854. },
  7855. {
  7856. name: "Minimacro",
  7857. height: math.unit(21, "feet"),
  7858. default: true
  7859. },
  7860. {
  7861. name: "Macro",
  7862. height: math.unit(626, "feet")
  7863. },
  7864. ]
  7865. ))
  7866. characterMakers.push(() => makeCharacter(
  7867. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7868. {
  7869. front: {
  7870. height: math.unit(2.718, "meters"),
  7871. weight: math.unit(150, "lbs"),
  7872. name: "Front",
  7873. image: {
  7874. source: "./media/characters/sovrim-terraquian/front.svg"
  7875. }
  7876. },
  7877. back: {
  7878. height: math.unit(2.718, "meters"),
  7879. weight: math.unit(150, "lbs"),
  7880. name: "Back",
  7881. image: {
  7882. source: "./media/characters/sovrim-terraquian/back.svg"
  7883. }
  7884. }
  7885. },
  7886. [
  7887. {
  7888. name: "Micro",
  7889. height: math.unit(2, "inches")
  7890. },
  7891. {
  7892. name: "Small",
  7893. height: math.unit(1, "meter")
  7894. },
  7895. {
  7896. name: "Normal",
  7897. height: math.unit(Math.E, "meters"),
  7898. default: true
  7899. },
  7900. {
  7901. name: "Macro",
  7902. height: math.unit(20, "meters")
  7903. },
  7904. {
  7905. name: "Macro+",
  7906. height: math.unit(400, "meters")
  7907. },
  7908. ]
  7909. ))
  7910. characterMakers.push(() => makeCharacter(
  7911. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7912. {
  7913. front: {
  7914. height: math.unit(7, "feet"),
  7915. weight: math.unit(489, "lbs"),
  7916. name: "Front",
  7917. image: {
  7918. source: "./media/characters/reece-silvermane/front.svg",
  7919. bottom: 0.02,
  7920. extra: 1
  7921. }
  7922. },
  7923. },
  7924. [
  7925. {
  7926. name: "Macro",
  7927. height: math.unit(1.5, "miles"),
  7928. default: true
  7929. },
  7930. ]
  7931. ))
  7932. characterMakers.push(() => makeCharacter(
  7933. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7934. {
  7935. front: {
  7936. height: math.unit(6, "feet"),
  7937. weight: math.unit(78, "kg"),
  7938. name: "Front",
  7939. image: {
  7940. source: "./media/characters/kane/front.svg",
  7941. extra: 978 / 899
  7942. }
  7943. },
  7944. },
  7945. [
  7946. {
  7947. name: "Normal",
  7948. height: math.unit(2.1, "m"),
  7949. },
  7950. {
  7951. name: "Macro",
  7952. height: math.unit(1, "km"),
  7953. default: true
  7954. },
  7955. ]
  7956. ))
  7957. characterMakers.push(() => makeCharacter(
  7958. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7959. {
  7960. front: {
  7961. height: math.unit(6, "feet"),
  7962. weight: math.unit(200, "kg"),
  7963. name: "Front",
  7964. image: {
  7965. source: "./media/characters/tegon/front.svg",
  7966. bottom: 0.01,
  7967. extra: 1
  7968. }
  7969. },
  7970. },
  7971. [
  7972. {
  7973. name: "Micro",
  7974. height: math.unit(1, "inch")
  7975. },
  7976. {
  7977. name: "Normal",
  7978. height: math.unit(6 + 3 / 12, "feet"),
  7979. default: true
  7980. },
  7981. {
  7982. name: "Macro",
  7983. height: math.unit(300, "feet")
  7984. },
  7985. {
  7986. name: "Megamacro",
  7987. height: math.unit(69, "miles")
  7988. },
  7989. ]
  7990. ))
  7991. characterMakers.push(() => makeCharacter(
  7992. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7993. {
  7994. side: {
  7995. height: math.unit(6, "feet"),
  7996. weight: math.unit(2304, "lbs"),
  7997. name: "Side",
  7998. image: {
  7999. source: "./media/characters/arcturax/side.svg",
  8000. extra: 790 / 376,
  8001. bottom: 0.01
  8002. }
  8003. },
  8004. },
  8005. [
  8006. {
  8007. name: "Micro",
  8008. height: math.unit(2, "inch")
  8009. },
  8010. {
  8011. name: "Normal",
  8012. height: math.unit(6, "feet")
  8013. },
  8014. {
  8015. name: "Macro",
  8016. height: math.unit(39, "feet"),
  8017. default: true
  8018. },
  8019. {
  8020. name: "Megamacro",
  8021. height: math.unit(7, "miles")
  8022. },
  8023. ]
  8024. ))
  8025. characterMakers.push(() => makeCharacter(
  8026. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8027. {
  8028. front: {
  8029. height: math.unit(6, "feet"),
  8030. weight: math.unit(50, "lbs"),
  8031. name: "Front",
  8032. image: {
  8033. source: "./media/characters/sentri/front.svg",
  8034. extra: 1750 / 1570,
  8035. bottom: 0.025
  8036. }
  8037. },
  8038. frontAlt: {
  8039. height: math.unit(6, "feet"),
  8040. weight: math.unit(50, "lbs"),
  8041. name: "Front (Alt)",
  8042. image: {
  8043. source: "./media/characters/sentri/front-alt.svg",
  8044. extra: 1750 / 1570,
  8045. bottom: 0.025
  8046. }
  8047. },
  8048. },
  8049. [
  8050. {
  8051. name: "Normal",
  8052. height: math.unit(15, "feet"),
  8053. default: true
  8054. },
  8055. {
  8056. name: "Macro",
  8057. height: math.unit(2500, "feet")
  8058. }
  8059. ]
  8060. ))
  8061. characterMakers.push(() => makeCharacter(
  8062. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8063. {
  8064. front: {
  8065. height: math.unit(5 + 8 / 12, "feet"),
  8066. weight: math.unit(130, "lbs"),
  8067. name: "Front",
  8068. image: {
  8069. source: "./media/characters/corvin/front.svg",
  8070. extra: 1803 / 1629
  8071. }
  8072. },
  8073. frontShirt: {
  8074. height: math.unit(5 + 8 / 12, "feet"),
  8075. weight: math.unit(130, "lbs"),
  8076. name: "Front (Shirt)",
  8077. image: {
  8078. source: "./media/characters/corvin/front-shirt.svg",
  8079. extra: 1803 / 1629
  8080. }
  8081. },
  8082. frontPoncho: {
  8083. height: math.unit(5 + 8 / 12, "feet"),
  8084. weight: math.unit(130, "lbs"),
  8085. name: "Front (Poncho)",
  8086. image: {
  8087. source: "./media/characters/corvin/front-poncho.svg",
  8088. extra: 1803 / 1629
  8089. }
  8090. },
  8091. side: {
  8092. height: math.unit(5 + 8 / 12, "feet"),
  8093. weight: math.unit(130, "lbs"),
  8094. name: "Side",
  8095. image: {
  8096. source: "./media/characters/corvin/side.svg",
  8097. extra: 1012 / 945
  8098. }
  8099. },
  8100. back: {
  8101. height: math.unit(5 + 8 / 12, "feet"),
  8102. weight: math.unit(130, "lbs"),
  8103. name: "Back",
  8104. image: {
  8105. source: "./media/characters/corvin/back.svg",
  8106. extra: 1803 / 1629
  8107. }
  8108. },
  8109. },
  8110. [
  8111. {
  8112. name: "Micro",
  8113. height: math.unit(3, "inches")
  8114. },
  8115. {
  8116. name: "Normal",
  8117. height: math.unit(5 + 8 / 12, "feet")
  8118. },
  8119. {
  8120. name: "Macro",
  8121. height: math.unit(300, "feet"),
  8122. default: true
  8123. },
  8124. {
  8125. name: "Megamacro",
  8126. height: math.unit(500, "miles")
  8127. }
  8128. ]
  8129. ))
  8130. characterMakers.push(() => makeCharacter(
  8131. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8132. {
  8133. front: {
  8134. height: math.unit(6, "feet"),
  8135. weight: math.unit(135, "lbs"),
  8136. name: "Front",
  8137. image: {
  8138. source: "./media/characters/q/front.svg",
  8139. extra: 854 / 752,
  8140. bottom: 0.005
  8141. }
  8142. },
  8143. back: {
  8144. height: math.unit(6, "feet"),
  8145. weight: math.unit(130, "lbs"),
  8146. name: "Back",
  8147. image: {
  8148. source: "./media/characters/q/back.svg",
  8149. extra: 854 / 752
  8150. }
  8151. },
  8152. },
  8153. [
  8154. {
  8155. name: "Macro",
  8156. height: math.unit(90, "feet"),
  8157. default: true
  8158. },
  8159. {
  8160. name: "Extra Macro",
  8161. height: math.unit(300, "feet"),
  8162. },
  8163. {
  8164. name: "BIG WALF",
  8165. height: math.unit(750, "feet"),
  8166. },
  8167. ]
  8168. ))
  8169. characterMakers.push(() => makeCharacter(
  8170. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8171. {
  8172. front: {
  8173. height: math.unit(6, "feet"),
  8174. weight: math.unit(150, "lbs"),
  8175. name: "Front",
  8176. image: {
  8177. source: "./media/characters/carley/front.svg",
  8178. extra: 3927 / 3540,
  8179. bottom: 29.2 / 735
  8180. }
  8181. }
  8182. },
  8183. [
  8184. {
  8185. name: "Normal",
  8186. height: math.unit(6 + 3 / 12, "feet")
  8187. },
  8188. {
  8189. name: "Macro",
  8190. height: math.unit(185, "feet"),
  8191. default: true
  8192. },
  8193. {
  8194. name: "Megamacro",
  8195. height: math.unit(8, "miles"),
  8196. },
  8197. ]
  8198. ))
  8199. characterMakers.push(() => makeCharacter(
  8200. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8201. {
  8202. front: {
  8203. height: math.unit(3, "feet"),
  8204. weight: math.unit(28, "lbs"),
  8205. name: "Front",
  8206. image: {
  8207. source: "./media/characters/citrine/front.svg"
  8208. }
  8209. }
  8210. },
  8211. [
  8212. {
  8213. name: "Normal",
  8214. height: math.unit(3, "feet"),
  8215. default: true
  8216. }
  8217. ]
  8218. ))
  8219. characterMakers.push(() => makeCharacter(
  8220. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8221. {
  8222. front: {
  8223. height: math.unit(14, "feet"),
  8224. weight: math.unit(1450, "kg"),
  8225. capacity: math.unit(15, "people"),
  8226. name: "Front",
  8227. image: {
  8228. source: "./media/characters/aura-starwind/front.svg",
  8229. extra: 1440/1327,
  8230. bottom: 11/1451
  8231. }
  8232. },
  8233. side: {
  8234. height: math.unit(14, "feet"),
  8235. weight: math.unit(1450, "kg"),
  8236. capacity: math.unit(15, "people"),
  8237. name: "Side",
  8238. image: {
  8239. source: "./media/characters/aura-starwind/side.svg",
  8240. extra: 1654 / 1497
  8241. }
  8242. },
  8243. taur: {
  8244. height: math.unit(18, "feet"),
  8245. weight: math.unit(5500, "kg"),
  8246. capacity: math.unit(50, "people"),
  8247. name: "Taur",
  8248. image: {
  8249. source: "./media/characters/aura-starwind/taur.svg",
  8250. extra: 1760 / 1650
  8251. }
  8252. },
  8253. feral: {
  8254. height: math.unit(46, "feet"),
  8255. weight: math.unit(25000, "kg"),
  8256. capacity: math.unit(120, "people"),
  8257. name: "Feral",
  8258. image: {
  8259. source: "./media/characters/aura-starwind/feral.svg"
  8260. }
  8261. },
  8262. },
  8263. [
  8264. {
  8265. name: "Normal",
  8266. height: math.unit(14, "feet"),
  8267. default: true
  8268. },
  8269. {
  8270. name: "Macro",
  8271. height: math.unit(50, "meters")
  8272. },
  8273. {
  8274. name: "Megamacro",
  8275. height: math.unit(5000, "meters")
  8276. },
  8277. {
  8278. name: "Gigamacro",
  8279. height: math.unit(100000, "kilometers")
  8280. },
  8281. ]
  8282. ))
  8283. characterMakers.push(() => makeCharacter(
  8284. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8285. {
  8286. front: {
  8287. height: math.unit(2 + 7 / 12, "feet"),
  8288. weight: math.unit(32, "lbs"),
  8289. name: "Front",
  8290. image: {
  8291. source: "./media/characters/rivet/front.svg",
  8292. extra: 1716 / 1658,
  8293. bottom: 0.03
  8294. }
  8295. },
  8296. foot: {
  8297. height: math.unit(0.551, "feet"),
  8298. name: "Rivet's Foot",
  8299. image: {
  8300. source: "./media/characters/rivet/foot.svg"
  8301. },
  8302. rename: true
  8303. }
  8304. },
  8305. [
  8306. {
  8307. name: "Micro",
  8308. height: math.unit(1.5, "inches"),
  8309. },
  8310. {
  8311. name: "Normal",
  8312. height: math.unit(2 + 7 / 12, "feet"),
  8313. default: true
  8314. },
  8315. {
  8316. name: "Macro",
  8317. height: math.unit(85, "feet")
  8318. },
  8319. {
  8320. name: "Megamacro",
  8321. height: math.unit(2.2, "km")
  8322. }
  8323. ]
  8324. ))
  8325. characterMakers.push(() => makeCharacter(
  8326. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8327. {
  8328. front: {
  8329. height: math.unit(5 + 9 / 12, "feet"),
  8330. weight: math.unit(150, "lbs"),
  8331. name: "Front",
  8332. image: {
  8333. source: "./media/characters/coffee/front.svg",
  8334. extra: 3666 / 3032,
  8335. bottom: 0.04
  8336. }
  8337. },
  8338. foot: {
  8339. height: math.unit(1.29, "feet"),
  8340. name: "Foot",
  8341. image: {
  8342. source: "./media/characters/coffee/foot.svg"
  8343. }
  8344. },
  8345. },
  8346. [
  8347. {
  8348. name: "Micro",
  8349. height: math.unit(2, "inches"),
  8350. },
  8351. {
  8352. name: "Normal",
  8353. height: math.unit(5 + 9 / 12, "feet"),
  8354. default: true
  8355. },
  8356. {
  8357. name: "Macro",
  8358. height: math.unit(800, "feet")
  8359. },
  8360. {
  8361. name: "Megamacro",
  8362. height: math.unit(25, "miles")
  8363. }
  8364. ]
  8365. ))
  8366. characterMakers.push(() => makeCharacter(
  8367. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8368. {
  8369. front: {
  8370. height: math.unit(6, "feet"),
  8371. weight: math.unit(200, "lbs"),
  8372. name: "Front",
  8373. image: {
  8374. source: "./media/characters/chari-gal/front.svg",
  8375. extra: 1568 / 1385,
  8376. bottom: 0.047
  8377. }
  8378. },
  8379. gigantamax: {
  8380. height: math.unit(6 * 16, "feet"),
  8381. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8382. name: "Gigantamax",
  8383. image: {
  8384. source: "./media/characters/chari-gal/gigantamax.svg",
  8385. extra: 1124 / 888,
  8386. bottom: 0.03
  8387. }
  8388. },
  8389. },
  8390. [
  8391. {
  8392. name: "Normal",
  8393. height: math.unit(5 + 7 / 12, "feet")
  8394. },
  8395. {
  8396. name: "Macro",
  8397. height: math.unit(200, "feet"),
  8398. default: true
  8399. }
  8400. ]
  8401. ))
  8402. characterMakers.push(() => makeCharacter(
  8403. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8404. {
  8405. front: {
  8406. height: math.unit(6, "feet"),
  8407. weight: math.unit(150, "lbs"),
  8408. name: "Front",
  8409. image: {
  8410. source: "./media/characters/nova/front.svg",
  8411. extra: 5000 / 4722,
  8412. bottom: 0.02
  8413. }
  8414. }
  8415. },
  8416. [
  8417. {
  8418. name: "Micro-",
  8419. height: math.unit(0.8, "inches")
  8420. },
  8421. {
  8422. name: "Micro",
  8423. height: math.unit(2, "inches"),
  8424. default: true
  8425. },
  8426. ]
  8427. ))
  8428. characterMakers.push(() => makeCharacter(
  8429. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8430. {
  8431. front: {
  8432. height: math.unit(3 + 1 / 12, "feet"),
  8433. weight: math.unit(21.7, "lbs"),
  8434. name: "Front",
  8435. image: {
  8436. source: "./media/characters/argent/front.svg",
  8437. extra: 1471 / 1331,
  8438. bottom: 100.8 / 1575.5
  8439. }
  8440. }
  8441. },
  8442. [
  8443. {
  8444. name: "Micro",
  8445. height: math.unit(2, "inches")
  8446. },
  8447. {
  8448. name: "Normal",
  8449. height: math.unit(3 + 1 / 12, "feet"),
  8450. default: true
  8451. },
  8452. {
  8453. name: "Macro",
  8454. height: math.unit(120, "feet")
  8455. },
  8456. ]
  8457. ))
  8458. characterMakers.push(() => makeCharacter(
  8459. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8460. {
  8461. lamp: {
  8462. height: math.unit(7 * 1559 / 989, "feet"),
  8463. name: "Magic Lamp",
  8464. image: {
  8465. source: "./media/characters/mira-al-cul/lamp.svg",
  8466. extra: 1617 / 1559
  8467. }
  8468. },
  8469. front: {
  8470. height: math.unit(7, "feet"),
  8471. name: "Front",
  8472. image: {
  8473. source: "./media/characters/mira-al-cul/front.svg",
  8474. extra: 1044 / 990
  8475. }
  8476. },
  8477. },
  8478. [
  8479. {
  8480. name: "Heavily Restricted",
  8481. height: math.unit(7 * 1559 / 989, "feet")
  8482. },
  8483. {
  8484. name: "Freshly Freed",
  8485. height: math.unit(50 * 1559 / 989, "feet")
  8486. },
  8487. {
  8488. name: "World Encompassing",
  8489. height: math.unit(10000 * 1559 / 989, "miles")
  8490. },
  8491. {
  8492. name: "Galactic",
  8493. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8494. },
  8495. {
  8496. name: "Palmed Universe",
  8497. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8498. default: true
  8499. },
  8500. {
  8501. name: "Multiversal Matriarch",
  8502. height: math.unit(8.87e10, "yottameters")
  8503. },
  8504. {
  8505. name: "Void Mother",
  8506. height: math.unit(3.14e110, "yottaparsecs")
  8507. },
  8508. {
  8509. name: "Toying with Transcendence",
  8510. height: math.unit(1e307, "meters")
  8511. },
  8512. ]
  8513. ))
  8514. characterMakers.push(() => makeCharacter(
  8515. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8516. {
  8517. front: {
  8518. height: math.unit(17 + 1 / 12, "feet"),
  8519. weight: math.unit(476.2 * 5, "lbs"),
  8520. name: "Front",
  8521. image: {
  8522. source: "./media/characters/kuro-shi-uchū/front.svg",
  8523. extra: 2329 / 1835,
  8524. bottom: 0.02
  8525. }
  8526. },
  8527. },
  8528. [
  8529. {
  8530. name: "Micro",
  8531. height: math.unit(2, "inches")
  8532. },
  8533. {
  8534. name: "Normal",
  8535. height: math.unit(12, "meters")
  8536. },
  8537. {
  8538. name: "Planetary",
  8539. height: math.unit(0.00929, "AU"),
  8540. default: true
  8541. },
  8542. {
  8543. name: "Universal",
  8544. height: math.unit(20, "gigaparsecs")
  8545. },
  8546. ]
  8547. ))
  8548. characterMakers.push(() => makeCharacter(
  8549. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8550. {
  8551. front: {
  8552. height: math.unit(5 + 2 / 12, "feet"),
  8553. weight: math.unit(120, "lbs"),
  8554. name: "Front",
  8555. image: {
  8556. source: "./media/characters/katherine/front.svg",
  8557. extra: 2075 / 1969
  8558. }
  8559. },
  8560. dress: {
  8561. height: math.unit(5 + 2 / 12, "feet"),
  8562. weight: math.unit(120, "lbs"),
  8563. name: "Dress",
  8564. image: {
  8565. source: "./media/characters/katherine/dress.svg",
  8566. extra: 2258 / 2064
  8567. }
  8568. },
  8569. },
  8570. [
  8571. {
  8572. name: "Micro",
  8573. height: math.unit(1, "inches"),
  8574. default: true
  8575. },
  8576. {
  8577. name: "Normal",
  8578. height: math.unit(5 + 2 / 12, "feet")
  8579. },
  8580. {
  8581. name: "Macro",
  8582. height: math.unit(100, "meters")
  8583. },
  8584. {
  8585. name: "Megamacro",
  8586. height: math.unit(80, "miles")
  8587. },
  8588. ]
  8589. ))
  8590. characterMakers.push(() => makeCharacter(
  8591. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8592. {
  8593. front: {
  8594. height: math.unit(7 + 8 / 12, "feet"),
  8595. weight: math.unit(250, "lbs"),
  8596. name: "Front",
  8597. image: {
  8598. source: "./media/characters/yevis/front.svg",
  8599. extra: 1938 / 1755
  8600. }
  8601. }
  8602. },
  8603. [
  8604. {
  8605. name: "Mortal",
  8606. height: math.unit(7 + 8 / 12, "feet")
  8607. },
  8608. {
  8609. name: "Battle",
  8610. height: math.unit(25 + 11 / 12, "feet")
  8611. },
  8612. {
  8613. name: "Wrath",
  8614. height: math.unit(1654 + 11 / 12, "feet")
  8615. },
  8616. {
  8617. name: "Planet Destroyer",
  8618. height: math.unit(12000, "miles")
  8619. },
  8620. {
  8621. name: "Galaxy Conqueror",
  8622. height: math.unit(1.45, "zettameters"),
  8623. default: true
  8624. },
  8625. {
  8626. name: "Universal War",
  8627. height: math.unit(184, "gigaparsecs")
  8628. },
  8629. {
  8630. name: "Eternity War",
  8631. height: math.unit(1.98e55, "yottaparsecs")
  8632. },
  8633. ]
  8634. ))
  8635. characterMakers.push(() => makeCharacter(
  8636. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8637. {
  8638. front: {
  8639. height: math.unit(5 + 8 / 12, "feet"),
  8640. weight: math.unit(63, "kg"),
  8641. name: "Front",
  8642. image: {
  8643. source: "./media/characters/xavier/front.svg",
  8644. extra: 944 / 883
  8645. }
  8646. },
  8647. frontStretch: {
  8648. height: math.unit(5 + 8 / 12, "feet"),
  8649. weight: math.unit(63, "kg"),
  8650. name: "Stretching",
  8651. image: {
  8652. source: "./media/characters/xavier/front-stretch.svg",
  8653. extra: 962 / 820
  8654. }
  8655. },
  8656. },
  8657. [
  8658. {
  8659. name: "Normal",
  8660. height: math.unit(5 + 8 / 12, "feet")
  8661. },
  8662. {
  8663. name: "Macro",
  8664. height: math.unit(100, "meters"),
  8665. default: true
  8666. },
  8667. {
  8668. name: "McLargeHuge",
  8669. height: math.unit(10, "miles")
  8670. },
  8671. ]
  8672. ))
  8673. characterMakers.push(() => makeCharacter(
  8674. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8675. {
  8676. front: {
  8677. height: math.unit(5 + 5 / 12, "feet"),
  8678. weight: math.unit(150, "lb"),
  8679. name: "Front",
  8680. image: {
  8681. source: "./media/characters/joshii/front.svg",
  8682. extra: 765 / 653,
  8683. bottom: 51 / 816
  8684. }
  8685. },
  8686. foot: {
  8687. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8688. name: "Foot",
  8689. image: {
  8690. source: "./media/characters/joshii/foot.svg"
  8691. }
  8692. },
  8693. },
  8694. [
  8695. {
  8696. name: "Micro",
  8697. height: math.unit(2, "inches"),
  8698. default: true
  8699. },
  8700. {
  8701. name: "Normal",
  8702. height: math.unit(5 + 5 / 12, "feet")
  8703. },
  8704. {
  8705. name: "Macro",
  8706. height: math.unit(785, "feet")
  8707. },
  8708. {
  8709. name: "Megamacro",
  8710. height: math.unit(24.5, "miles")
  8711. },
  8712. ]
  8713. ))
  8714. characterMakers.push(() => makeCharacter(
  8715. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8716. {
  8717. front: {
  8718. height: math.unit(6, "feet"),
  8719. weight: math.unit(150, "lb"),
  8720. name: "Front",
  8721. image: {
  8722. source: "./media/characters/goddess-elizabeth/front.svg",
  8723. extra: 1800 / 1525,
  8724. bottom: 0.005
  8725. }
  8726. },
  8727. foot: {
  8728. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8729. name: "Foot",
  8730. image: {
  8731. source: "./media/characters/goddess-elizabeth/foot.svg"
  8732. }
  8733. },
  8734. mouth: {
  8735. height: math.unit(6, "feet"),
  8736. name: "Mouth",
  8737. image: {
  8738. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8739. }
  8740. },
  8741. },
  8742. [
  8743. {
  8744. name: "Micro",
  8745. height: math.unit(12, "feet")
  8746. },
  8747. {
  8748. name: "Normal",
  8749. height: math.unit(80, "miles"),
  8750. default: true
  8751. },
  8752. {
  8753. name: "Macro",
  8754. height: math.unit(15000, "parsecs")
  8755. },
  8756. ]
  8757. ))
  8758. characterMakers.push(() => makeCharacter(
  8759. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8760. {
  8761. front: {
  8762. height: math.unit(5 + 9 / 12, "feet"),
  8763. weight: math.unit(144, "lb"),
  8764. name: "Front",
  8765. image: {
  8766. source: "./media/characters/kara/front.svg"
  8767. }
  8768. },
  8769. feet: {
  8770. height: math.unit(6 / 6.765, "feet"),
  8771. name: "Kara's Feet",
  8772. rename: true,
  8773. image: {
  8774. source: "./media/characters/kara/feet.svg"
  8775. }
  8776. },
  8777. },
  8778. [
  8779. {
  8780. name: "Normal",
  8781. height: math.unit(5 + 9 / 12, "feet")
  8782. },
  8783. {
  8784. name: "Macro",
  8785. height: math.unit(174, "feet"),
  8786. default: true
  8787. },
  8788. ]
  8789. ))
  8790. characterMakers.push(() => makeCharacter(
  8791. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8792. {
  8793. front: {
  8794. height: math.unit(18, "feet"),
  8795. weight: math.unit(4050, "lb"),
  8796. name: "Front",
  8797. image: {
  8798. source: "./media/characters/tyrone/front.svg",
  8799. extra: 2405 / 2270,
  8800. bottom: 182 / 2587
  8801. }
  8802. },
  8803. },
  8804. [
  8805. {
  8806. name: "Normal",
  8807. height: math.unit(18, "feet"),
  8808. default: true
  8809. },
  8810. {
  8811. name: "Macro",
  8812. height: math.unit(300, "feet")
  8813. },
  8814. {
  8815. name: "Megamacro",
  8816. height: math.unit(15, "km")
  8817. },
  8818. {
  8819. name: "Gigamacro",
  8820. height: math.unit(500, "km")
  8821. },
  8822. {
  8823. name: "Teramacro",
  8824. height: math.unit(0.5, "gigameters")
  8825. },
  8826. {
  8827. name: "Omnimacro",
  8828. height: math.unit(1e252, "yottauniverse")
  8829. },
  8830. ]
  8831. ))
  8832. characterMakers.push(() => makeCharacter(
  8833. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8834. {
  8835. front: {
  8836. height: math.unit(7 + 8 / 12, "feet"),
  8837. weight: math.unit(120, "lb"),
  8838. name: "Front",
  8839. image: {
  8840. source: "./media/characters/danny/front.svg",
  8841. extra: 1490 / 1350
  8842. }
  8843. },
  8844. back: {
  8845. height: math.unit(7 + 8 / 12, "feet"),
  8846. weight: math.unit(120, "lb"),
  8847. name: "Back",
  8848. image: {
  8849. source: "./media/characters/danny/back.svg",
  8850. extra: 1490 / 1350
  8851. }
  8852. },
  8853. },
  8854. [
  8855. {
  8856. name: "Normal",
  8857. height: math.unit(7 + 8 / 12, "feet"),
  8858. default: true
  8859. },
  8860. ]
  8861. ))
  8862. characterMakers.push(() => makeCharacter(
  8863. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8864. {
  8865. front: {
  8866. height: math.unit(3.5, "inches"),
  8867. weight: math.unit(19, "grams"),
  8868. name: "Front",
  8869. image: {
  8870. source: "./media/characters/mallow/front.svg",
  8871. extra: 471 / 431
  8872. }
  8873. },
  8874. back: {
  8875. height: math.unit(3.5, "inches"),
  8876. weight: math.unit(19, "grams"),
  8877. name: "Back",
  8878. image: {
  8879. source: "./media/characters/mallow/back.svg",
  8880. extra: 471 / 431
  8881. }
  8882. },
  8883. },
  8884. [
  8885. {
  8886. name: "Normal",
  8887. height: math.unit(3.5, "inches"),
  8888. default: true
  8889. },
  8890. ]
  8891. ))
  8892. characterMakers.push(() => makeCharacter(
  8893. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8894. {
  8895. front: {
  8896. height: math.unit(9, "feet"),
  8897. weight: math.unit(230, "kg"),
  8898. name: "Front",
  8899. image: {
  8900. source: "./media/characters/starry-aqua/front.svg"
  8901. }
  8902. },
  8903. back: {
  8904. height: math.unit(9, "feet"),
  8905. weight: math.unit(230, "kg"),
  8906. name: "Back",
  8907. image: {
  8908. source: "./media/characters/starry-aqua/back.svg"
  8909. }
  8910. },
  8911. hand: {
  8912. height: math.unit(9 * 0.1168, "feet"),
  8913. name: "Hand",
  8914. image: {
  8915. source: "./media/characters/starry-aqua/hand.svg"
  8916. }
  8917. },
  8918. foot: {
  8919. height: math.unit(9 * 0.18, "feet"),
  8920. name: "Foot",
  8921. image: {
  8922. source: "./media/characters/starry-aqua/foot.svg"
  8923. }
  8924. }
  8925. },
  8926. [
  8927. {
  8928. name: "Micro",
  8929. height: math.unit(3, "inches")
  8930. },
  8931. {
  8932. name: "Normal",
  8933. height: math.unit(9, "feet")
  8934. },
  8935. {
  8936. name: "Macro",
  8937. height: math.unit(300, "feet"),
  8938. default: true
  8939. },
  8940. {
  8941. name: "Megamacro",
  8942. height: math.unit(3200, "feet")
  8943. }
  8944. ]
  8945. ))
  8946. characterMakers.push(() => makeCharacter(
  8947. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  8948. {
  8949. front: {
  8950. height: math.unit(15, "feet"),
  8951. weight: math.unit(5026, "lb"),
  8952. name: "Front",
  8953. image: {
  8954. source: "./media/characters/luka-towers/front.svg",
  8955. extra: 1269/1133,
  8956. bottom: 51/1320
  8957. }
  8958. },
  8959. },
  8960. [
  8961. {
  8962. name: "Normal",
  8963. height: math.unit(15, "feet"),
  8964. default: true
  8965. },
  8966. {
  8967. name: "Minimacro",
  8968. height: math.unit(25, "feet")
  8969. },
  8970. {
  8971. name: "Macro",
  8972. height: math.unit(320, "feet")
  8973. },
  8974. {
  8975. name: "Megamacro",
  8976. height: math.unit(35000, "feet")
  8977. },
  8978. {
  8979. name: "Gigamacro",
  8980. height: math.unit(4000, "miles")
  8981. },
  8982. {
  8983. name: "Teramacro",
  8984. height: math.unit(15000, "miles")
  8985. },
  8986. ]
  8987. ))
  8988. characterMakers.push(() => makeCharacter(
  8989. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8990. {
  8991. front: {
  8992. height: math.unit(6, "feet"),
  8993. weight: math.unit(150, "lb"),
  8994. name: "Front",
  8995. image: {
  8996. source: "./media/characters/natalie-nightring/front.svg",
  8997. extra: 1,
  8998. bottom: 0.06
  8999. }
  9000. },
  9001. },
  9002. [
  9003. {
  9004. name: "Uh Oh",
  9005. height: math.unit(0.1, "mm")
  9006. },
  9007. {
  9008. name: "Small",
  9009. height: math.unit(3, "inches")
  9010. },
  9011. {
  9012. name: "Human Scale",
  9013. height: math.unit(6, "feet")
  9014. },
  9015. {
  9016. name: "Librarian",
  9017. height: math.unit(50, "feet"),
  9018. default: true
  9019. },
  9020. {
  9021. name: "Immense",
  9022. height: math.unit(200, "miles")
  9023. },
  9024. ]
  9025. ))
  9026. characterMakers.push(() => makeCharacter(
  9027. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9028. {
  9029. front: {
  9030. height: math.unit(6, "feet"),
  9031. weight: math.unit(180, "lbs"),
  9032. name: "Front",
  9033. image: {
  9034. source: "./media/characters/danni-rosie/front.svg",
  9035. extra: 1260 / 1128,
  9036. bottom: 0.022
  9037. }
  9038. },
  9039. },
  9040. [
  9041. {
  9042. name: "Micro",
  9043. height: math.unit(2, "inches"),
  9044. default: true
  9045. },
  9046. ]
  9047. ))
  9048. characterMakers.push(() => makeCharacter(
  9049. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9050. {
  9051. front: {
  9052. height: math.unit(5 + 9 / 12, "feet"),
  9053. weight: math.unit(220, "lb"),
  9054. name: "Front",
  9055. image: {
  9056. source: "./media/characters/samantha-kruse/front.svg",
  9057. extra: (985 / 935),
  9058. bottom: 0.03
  9059. }
  9060. },
  9061. frontUndressed: {
  9062. height: math.unit(5 + 9 / 12, "feet"),
  9063. weight: math.unit(220, "lb"),
  9064. name: "Front (Undressed)",
  9065. image: {
  9066. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9067. extra: (973 / 923),
  9068. bottom: 0.025
  9069. }
  9070. },
  9071. fat: {
  9072. height: math.unit(5 + 9 / 12, "feet"),
  9073. weight: math.unit(900, "lb"),
  9074. name: "Front (Fat)",
  9075. image: {
  9076. source: "./media/characters/samantha-kruse/fat.svg",
  9077. extra: 2688 / 2561
  9078. }
  9079. },
  9080. },
  9081. [
  9082. {
  9083. name: "Normal",
  9084. height: math.unit(5 + 9 / 12, "feet"),
  9085. default: true
  9086. }
  9087. ]
  9088. ))
  9089. characterMakers.push(() => makeCharacter(
  9090. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9091. {
  9092. back: {
  9093. height: math.unit(5 + 4 / 12, "feet"),
  9094. weight: math.unit(4963, "lb"),
  9095. name: "Back",
  9096. image: {
  9097. source: "./media/characters/amelia-rosie/back.svg",
  9098. extra: 1113 / 963,
  9099. bottom: 0.01
  9100. }
  9101. },
  9102. },
  9103. [
  9104. {
  9105. name: "Level 0",
  9106. height: math.unit(5 + 4 / 12, "feet")
  9107. },
  9108. {
  9109. name: "Level 1",
  9110. height: math.unit(164597, "feet"),
  9111. default: true
  9112. },
  9113. {
  9114. name: "Level 2",
  9115. height: math.unit(956243, "miles")
  9116. },
  9117. {
  9118. name: "Level 3",
  9119. height: math.unit(29421709423, "miles")
  9120. },
  9121. {
  9122. name: "Level 4",
  9123. height: math.unit(154, "lightyears")
  9124. },
  9125. {
  9126. name: "Level 5",
  9127. height: math.unit(4738272, "lightyears")
  9128. },
  9129. {
  9130. name: "Level 6",
  9131. height: math.unit(145787152896, "lightyears")
  9132. },
  9133. ]
  9134. ))
  9135. characterMakers.push(() => makeCharacter(
  9136. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9137. {
  9138. front: {
  9139. height: math.unit(5 + 11 / 12, "feet"),
  9140. weight: math.unit(65, "kg"),
  9141. name: "Front",
  9142. image: {
  9143. source: "./media/characters/rook-kitara/front.svg",
  9144. extra: 1347 / 1274,
  9145. bottom: 0.005
  9146. }
  9147. },
  9148. },
  9149. [
  9150. {
  9151. name: "Totally Unfair",
  9152. height: math.unit(1.8, "mm")
  9153. },
  9154. {
  9155. name: "Lap Rookie",
  9156. height: math.unit(1.4, "feet")
  9157. },
  9158. {
  9159. name: "Normal",
  9160. height: math.unit(5 + 11 / 12, "feet"),
  9161. default: true
  9162. },
  9163. {
  9164. name: "How Did This Happen",
  9165. height: math.unit(80, "miles")
  9166. }
  9167. ]
  9168. ))
  9169. characterMakers.push(() => makeCharacter(
  9170. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9171. {
  9172. front: {
  9173. height: math.unit(7, "feet"),
  9174. weight: math.unit(300, "lb"),
  9175. name: "Front",
  9176. image: {
  9177. source: "./media/characters/pisces/front.svg",
  9178. extra: 2255 / 2115,
  9179. bottom: 0.03
  9180. }
  9181. },
  9182. back: {
  9183. height: math.unit(7, "feet"),
  9184. weight: math.unit(300, "lb"),
  9185. name: "Back",
  9186. image: {
  9187. source: "./media/characters/pisces/back.svg",
  9188. extra: 2146 / 2055,
  9189. bottom: 0.04
  9190. }
  9191. },
  9192. },
  9193. [
  9194. {
  9195. name: "Normal",
  9196. height: math.unit(7, "feet"),
  9197. default: true
  9198. },
  9199. {
  9200. name: "Swimming Pool",
  9201. height: math.unit(12.2, "meters")
  9202. },
  9203. {
  9204. name: "Olympic Swimming Pool",
  9205. height: math.unit(56.3, "meters")
  9206. },
  9207. {
  9208. name: "Lake Superior",
  9209. height: math.unit(93900, "meters")
  9210. },
  9211. {
  9212. name: "Mediterranean Sea",
  9213. height: math.unit(644457, "meters")
  9214. },
  9215. {
  9216. name: "World's Oceans",
  9217. height: math.unit(4567491, "meters")
  9218. },
  9219. ]
  9220. ))
  9221. characterMakers.push(() => makeCharacter(
  9222. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9223. {
  9224. front: {
  9225. height: math.unit(2.3, "meters"),
  9226. weight: math.unit(120, "kg"),
  9227. name: "Front",
  9228. image: {
  9229. source: "./media/characters/zelas/front.svg"
  9230. }
  9231. },
  9232. side: {
  9233. height: math.unit(2.3, "meters"),
  9234. weight: math.unit(120, "kg"),
  9235. name: "Side",
  9236. image: {
  9237. source: "./media/characters/zelas/side.svg"
  9238. }
  9239. },
  9240. back: {
  9241. height: math.unit(2.3, "meters"),
  9242. weight: math.unit(120, "kg"),
  9243. name: "Back",
  9244. image: {
  9245. source: "./media/characters/zelas/back.svg"
  9246. }
  9247. },
  9248. foot: {
  9249. height: math.unit(1.116, "feet"),
  9250. name: "Foot",
  9251. image: {
  9252. source: "./media/characters/zelas/foot.svg"
  9253. }
  9254. },
  9255. },
  9256. [
  9257. {
  9258. name: "Normal",
  9259. height: math.unit(2.3, "meters")
  9260. },
  9261. {
  9262. name: "Macro",
  9263. height: math.unit(30, "meters"),
  9264. default: true
  9265. },
  9266. ]
  9267. ))
  9268. characterMakers.push(() => makeCharacter(
  9269. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9270. {
  9271. front: {
  9272. height: math.unit(1, "inch"),
  9273. weight: math.unit(0.21, "grams"),
  9274. name: "Front",
  9275. image: {
  9276. source: "./media/characters/talbot/front.svg",
  9277. extra: 594 / 544
  9278. }
  9279. },
  9280. },
  9281. [
  9282. {
  9283. name: "Micro",
  9284. height: math.unit(1, "inch"),
  9285. default: true
  9286. },
  9287. ]
  9288. ))
  9289. characterMakers.push(() => makeCharacter(
  9290. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9291. {
  9292. front: {
  9293. height: math.unit(3 + 3 / 12, "feet"),
  9294. weight: math.unit(51.8, "lb"),
  9295. name: "Front",
  9296. image: {
  9297. source: "./media/characters/fliss/front.svg",
  9298. extra: 840 / 640
  9299. }
  9300. },
  9301. },
  9302. [
  9303. {
  9304. name: "Teeny Tiny",
  9305. height: math.unit(1, "mm")
  9306. },
  9307. {
  9308. name: "Small",
  9309. height: math.unit(1, "inch"),
  9310. default: true
  9311. },
  9312. {
  9313. name: "Standard Sylveon",
  9314. height: math.unit(3 + 3 / 12, "feet")
  9315. },
  9316. {
  9317. name: "Large Nuisance",
  9318. height: math.unit(33, "feet")
  9319. },
  9320. {
  9321. name: "City Filler",
  9322. height: math.unit(3000, "feet")
  9323. },
  9324. {
  9325. name: "New Horizon",
  9326. height: math.unit(6000, "miles")
  9327. },
  9328. ]
  9329. ))
  9330. characterMakers.push(() => makeCharacter(
  9331. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9332. {
  9333. front: {
  9334. height: math.unit(5, "cm"),
  9335. weight: math.unit(1.94, "g"),
  9336. name: "Front",
  9337. image: {
  9338. source: "./media/characters/fleta/front.svg",
  9339. extra: 835 / 803
  9340. }
  9341. },
  9342. back: {
  9343. height: math.unit(5, "cm"),
  9344. weight: math.unit(1.94, "g"),
  9345. name: "Back",
  9346. image: {
  9347. source: "./media/characters/fleta/back.svg",
  9348. extra: 835 / 803
  9349. }
  9350. },
  9351. },
  9352. [
  9353. {
  9354. name: "Micro",
  9355. height: math.unit(5, "cm"),
  9356. default: true
  9357. },
  9358. ]
  9359. ))
  9360. characterMakers.push(() => makeCharacter(
  9361. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9362. {
  9363. front: {
  9364. height: math.unit(6, "feet"),
  9365. weight: math.unit(225, "lb"),
  9366. name: "Front",
  9367. image: {
  9368. source: "./media/characters/dominic/front.svg",
  9369. extra: 1770 / 1620,
  9370. bottom: 0.025
  9371. }
  9372. },
  9373. back: {
  9374. height: math.unit(6, "feet"),
  9375. weight: math.unit(225, "lb"),
  9376. name: "Back",
  9377. image: {
  9378. source: "./media/characters/dominic/back.svg",
  9379. extra: 1745 / 1620,
  9380. bottom: 0.065
  9381. }
  9382. },
  9383. },
  9384. [
  9385. {
  9386. name: "Nano",
  9387. height: math.unit(0.1, "mm")
  9388. },
  9389. {
  9390. name: "Micro-",
  9391. height: math.unit(1, "mm")
  9392. },
  9393. {
  9394. name: "Micro",
  9395. height: math.unit(4, "inches")
  9396. },
  9397. {
  9398. name: "Normal",
  9399. height: math.unit(6 + 4 / 12, "feet"),
  9400. default: true
  9401. },
  9402. {
  9403. name: "Macro",
  9404. height: math.unit(115, "feet")
  9405. },
  9406. {
  9407. name: "Macro+",
  9408. height: math.unit(955, "feet")
  9409. },
  9410. {
  9411. name: "Megamacro",
  9412. height: math.unit(8990, "feet")
  9413. },
  9414. {
  9415. name: "Gigmacro",
  9416. height: math.unit(9310, "miles")
  9417. },
  9418. {
  9419. name: "Teramacro",
  9420. height: math.unit(1567005010, "miles")
  9421. },
  9422. {
  9423. name: "Examacro",
  9424. height: math.unit(1425, "parsecs")
  9425. },
  9426. ]
  9427. ))
  9428. characterMakers.push(() => makeCharacter(
  9429. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9430. {
  9431. front: {
  9432. height: math.unit(400, "feet"),
  9433. weight: math.unit(44444444, "lb"),
  9434. name: "Front",
  9435. image: {
  9436. source: "./media/characters/major-colonel/front.svg"
  9437. }
  9438. },
  9439. back: {
  9440. height: math.unit(400, "feet"),
  9441. weight: math.unit(44444444, "lb"),
  9442. name: "Back",
  9443. image: {
  9444. source: "./media/characters/major-colonel/back.svg"
  9445. }
  9446. },
  9447. },
  9448. [
  9449. {
  9450. name: "Macro",
  9451. height: math.unit(400, "feet"),
  9452. default: true
  9453. },
  9454. ]
  9455. ))
  9456. characterMakers.push(() => makeCharacter(
  9457. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9458. {
  9459. catFront: {
  9460. height: math.unit(6, "feet"),
  9461. weight: math.unit(120, "lb"),
  9462. name: "Front (Cat Side)",
  9463. image: {
  9464. source: "./media/characters/axel-lycan/cat-front.svg",
  9465. extra: 430 / 402,
  9466. bottom: 43 / 472.35
  9467. }
  9468. },
  9469. catBack: {
  9470. height: math.unit(6, "feet"),
  9471. weight: math.unit(120, "lb"),
  9472. name: "Back (Cat Side)",
  9473. image: {
  9474. source: "./media/characters/axel-lycan/cat-back.svg",
  9475. extra: 447 / 419,
  9476. bottom: 23.3 / 469
  9477. }
  9478. },
  9479. wolfFront: {
  9480. height: math.unit(6, "feet"),
  9481. weight: math.unit(120, "lb"),
  9482. name: "Front (Wolf Side)",
  9483. image: {
  9484. source: "./media/characters/axel-lycan/wolf-front.svg",
  9485. extra: 485 / 456,
  9486. bottom: 19 / 504
  9487. }
  9488. },
  9489. wolfBack: {
  9490. height: math.unit(6, "feet"),
  9491. weight: math.unit(120, "lb"),
  9492. name: "Back (Wolf Side)",
  9493. image: {
  9494. source: "./media/characters/axel-lycan/wolf-back.svg",
  9495. extra: 475 / 438,
  9496. bottom: 39.2 / 514
  9497. }
  9498. },
  9499. },
  9500. [
  9501. {
  9502. name: "Macro",
  9503. height: math.unit(1, "km"),
  9504. default: true
  9505. },
  9506. ]
  9507. ))
  9508. characterMakers.push(() => makeCharacter(
  9509. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9510. {
  9511. front: {
  9512. height: math.unit(5 + 9 / 12, "feet"),
  9513. weight: math.unit(175, "lb"),
  9514. name: "Front",
  9515. image: {
  9516. source: "./media/characters/vanrel-hyena/front.svg",
  9517. extra: 1086 / 1010,
  9518. bottom: 0.04
  9519. }
  9520. },
  9521. },
  9522. [
  9523. {
  9524. name: "Normal",
  9525. height: math.unit(5 + 9 / 12, "feet"),
  9526. default: true
  9527. },
  9528. ]
  9529. ))
  9530. characterMakers.push(() => makeCharacter(
  9531. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9532. {
  9533. front: {
  9534. height: math.unit(6, "feet"),
  9535. weight: math.unit(103, "lb"),
  9536. name: "Front",
  9537. image: {
  9538. source: "./media/characters/abbott-absol/front.svg",
  9539. extra: 2010 / 1842
  9540. }
  9541. },
  9542. },
  9543. [
  9544. {
  9545. name: "Megamicro",
  9546. height: math.unit(0.1, "mm")
  9547. },
  9548. {
  9549. name: "Micro",
  9550. height: math.unit(1, "inch")
  9551. },
  9552. {
  9553. name: "Normal",
  9554. height: math.unit(6, "feet"),
  9555. default: true
  9556. },
  9557. ]
  9558. ))
  9559. characterMakers.push(() => makeCharacter(
  9560. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9561. {
  9562. front: {
  9563. height: math.unit(6, "feet"),
  9564. weight: math.unit(264, "lb"),
  9565. name: "Front",
  9566. image: {
  9567. source: "./media/characters/hector/front.svg",
  9568. extra: 2280 / 2130,
  9569. bottom: 0.07
  9570. }
  9571. },
  9572. },
  9573. [
  9574. {
  9575. name: "Normal",
  9576. height: math.unit(12.25, "foot"),
  9577. default: true
  9578. },
  9579. {
  9580. name: "Macro",
  9581. height: math.unit(160, "feet")
  9582. },
  9583. ]
  9584. ))
  9585. characterMakers.push(() => makeCharacter(
  9586. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9587. {
  9588. front: {
  9589. height: math.unit(6, "feet"),
  9590. weight: math.unit(150, "lb"),
  9591. name: "Front",
  9592. image: {
  9593. source: "./media/characters/sal/front.svg",
  9594. extra: 1846 / 1699,
  9595. bottom: 0.04
  9596. }
  9597. },
  9598. },
  9599. [
  9600. {
  9601. name: "Megamacro",
  9602. height: math.unit(10, "miles"),
  9603. default: true
  9604. },
  9605. ]
  9606. ))
  9607. characterMakers.push(() => makeCharacter(
  9608. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9609. {
  9610. front: {
  9611. height: math.unit(3, "meters"),
  9612. weight: math.unit(450, "kg"),
  9613. name: "front",
  9614. image: {
  9615. source: "./media/characters/ranger/front.svg",
  9616. extra: 2401 / 2243,
  9617. bottom: 0.05
  9618. }
  9619. },
  9620. },
  9621. [
  9622. {
  9623. name: "Normal",
  9624. height: math.unit(3, "meters"),
  9625. default: true
  9626. },
  9627. ]
  9628. ))
  9629. characterMakers.push(() => makeCharacter(
  9630. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9631. {
  9632. front: {
  9633. height: math.unit(14, "feet"),
  9634. weight: math.unit(800, "kg"),
  9635. name: "Front",
  9636. image: {
  9637. source: "./media/characters/theresa/front.svg",
  9638. extra: 3575 / 3346,
  9639. bottom: 0.03
  9640. }
  9641. },
  9642. },
  9643. [
  9644. {
  9645. name: "Normal",
  9646. height: math.unit(14, "feet"),
  9647. default: true
  9648. },
  9649. ]
  9650. ))
  9651. characterMakers.push(() => makeCharacter(
  9652. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9653. {
  9654. front: {
  9655. height: math.unit(6, "feet"),
  9656. weight: math.unit(3, "kg"),
  9657. name: "Front",
  9658. image: {
  9659. source: "./media/characters/ine/front.svg",
  9660. extra: 678 / 539,
  9661. bottom: 0.023
  9662. }
  9663. },
  9664. },
  9665. [
  9666. {
  9667. name: "Normal",
  9668. height: math.unit(2.265, "feet"),
  9669. default: true
  9670. },
  9671. ]
  9672. ))
  9673. characterMakers.push(() => makeCharacter(
  9674. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9675. {
  9676. front: {
  9677. height: math.unit(5, "feet"),
  9678. weight: math.unit(30, "kg"),
  9679. name: "Front",
  9680. image: {
  9681. source: "./media/characters/vial/front.svg",
  9682. extra: 1365 / 1277,
  9683. bottom: 0.04
  9684. }
  9685. },
  9686. },
  9687. [
  9688. {
  9689. name: "Normal",
  9690. height: math.unit(5, "feet"),
  9691. default: true
  9692. },
  9693. ]
  9694. ))
  9695. characterMakers.push(() => makeCharacter(
  9696. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9697. {
  9698. side: {
  9699. height: math.unit(3.4, "meters"),
  9700. weight: math.unit(1000, "lb"),
  9701. name: "Side",
  9702. image: {
  9703. source: "./media/characters/rovoska/side.svg",
  9704. extra: 4403 / 1515
  9705. }
  9706. },
  9707. },
  9708. [
  9709. {
  9710. name: "Normal",
  9711. height: math.unit(3.4, "meters"),
  9712. default: true
  9713. },
  9714. ]
  9715. ))
  9716. characterMakers.push(() => makeCharacter(
  9717. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9718. {
  9719. front: {
  9720. height: math.unit(8, "feet"),
  9721. weight: math.unit(315, "lb"),
  9722. name: "Front",
  9723. image: {
  9724. source: "./media/characters/gunner-rotthbauer/front.svg"
  9725. }
  9726. },
  9727. back: {
  9728. height: math.unit(8, "feet"),
  9729. weight: math.unit(315, "lb"),
  9730. name: "Back",
  9731. image: {
  9732. source: "./media/characters/gunner-rotthbauer/back.svg"
  9733. }
  9734. },
  9735. },
  9736. [
  9737. {
  9738. name: "Micro",
  9739. height: math.unit(3.5, "inches")
  9740. },
  9741. {
  9742. name: "Normal",
  9743. height: math.unit(8, "feet"),
  9744. default: true
  9745. },
  9746. {
  9747. name: "Macro",
  9748. height: math.unit(250, "feet")
  9749. },
  9750. {
  9751. name: "Megamacro",
  9752. height: math.unit(1, "AU")
  9753. },
  9754. ]
  9755. ))
  9756. characterMakers.push(() => makeCharacter(
  9757. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9758. {
  9759. front: {
  9760. height: math.unit(5 + 5 / 12, "feet"),
  9761. weight: math.unit(140, "lb"),
  9762. name: "Front",
  9763. image: {
  9764. source: "./media/characters/allatia/front.svg",
  9765. extra: 1227 / 1180,
  9766. bottom: 0.027
  9767. }
  9768. },
  9769. },
  9770. [
  9771. {
  9772. name: "Normal",
  9773. height: math.unit(5 + 5 / 12, "feet")
  9774. },
  9775. {
  9776. name: "Macro",
  9777. height: math.unit(250, "feet"),
  9778. default: true
  9779. },
  9780. {
  9781. name: "Megamacro",
  9782. height: math.unit(8, "miles")
  9783. }
  9784. ]
  9785. ))
  9786. characterMakers.push(() => makeCharacter(
  9787. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9788. {
  9789. front: {
  9790. height: math.unit(6, "feet"),
  9791. weight: math.unit(120, "lb"),
  9792. name: "Front",
  9793. image: {
  9794. source: "./media/characters/tene/front.svg",
  9795. extra: 1728 / 1578,
  9796. bottom: 0.022
  9797. }
  9798. },
  9799. stomping: {
  9800. height: math.unit(2.025, "meters"),
  9801. weight: math.unit(120, "lb"),
  9802. name: "Stomping",
  9803. image: {
  9804. source: "./media/characters/tene/stomping.svg",
  9805. extra: 938 / 873,
  9806. bottom: 0.01
  9807. }
  9808. },
  9809. sitting: {
  9810. height: math.unit(1, "meter"),
  9811. weight: math.unit(120, "lb"),
  9812. name: "Sitting",
  9813. image: {
  9814. source: "./media/characters/tene/sitting.svg",
  9815. extra: 437 / 415,
  9816. bottom: 0.1
  9817. }
  9818. },
  9819. feral: {
  9820. height: math.unit(3.9, "feet"),
  9821. weight: math.unit(250, "lb"),
  9822. name: "Feral",
  9823. image: {
  9824. source: "./media/characters/tene/feral.svg",
  9825. extra: 717 / 458,
  9826. bottom: 0.179
  9827. }
  9828. },
  9829. },
  9830. [
  9831. {
  9832. name: "Normal",
  9833. height: math.unit(6, "feet")
  9834. },
  9835. {
  9836. name: "Macro",
  9837. height: math.unit(300, "feet"),
  9838. default: true
  9839. },
  9840. {
  9841. name: "Megamacro",
  9842. height: math.unit(5, "miles")
  9843. },
  9844. ]
  9845. ))
  9846. characterMakers.push(() => makeCharacter(
  9847. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9848. {
  9849. side: {
  9850. height: math.unit(6, "feet"),
  9851. name: "Side",
  9852. image: {
  9853. source: "./media/characters/evander/side.svg",
  9854. extra: 877 / 477
  9855. }
  9856. },
  9857. },
  9858. [
  9859. {
  9860. name: "Normal",
  9861. height: math.unit(0.83, "meters"),
  9862. default: true
  9863. },
  9864. ]
  9865. ))
  9866. characterMakers.push(() => makeCharacter(
  9867. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9868. {
  9869. front: {
  9870. height: math.unit(12, "feet"),
  9871. weight: math.unit(1000, "lb"),
  9872. name: "Front",
  9873. image: {
  9874. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9875. extra: 1762 / 1611
  9876. }
  9877. },
  9878. back: {
  9879. height: math.unit(12, "feet"),
  9880. weight: math.unit(1000, "lb"),
  9881. name: "Back",
  9882. image: {
  9883. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9884. extra: 1762 / 1611
  9885. }
  9886. },
  9887. },
  9888. [
  9889. {
  9890. name: "Normal",
  9891. height: math.unit(12, "feet"),
  9892. default: true
  9893. },
  9894. {
  9895. name: "Kaiju",
  9896. height: math.unit(150, "feet")
  9897. },
  9898. ]
  9899. ))
  9900. characterMakers.push(() => makeCharacter(
  9901. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9902. {
  9903. front: {
  9904. height: math.unit(6, "feet"),
  9905. weight: math.unit(150, "lb"),
  9906. name: "Front",
  9907. image: {
  9908. source: "./media/characters/zero-alurus/front.svg"
  9909. }
  9910. },
  9911. back: {
  9912. height: math.unit(6, "feet"),
  9913. weight: math.unit(150, "lb"),
  9914. name: "Back",
  9915. image: {
  9916. source: "./media/characters/zero-alurus/back.svg"
  9917. }
  9918. },
  9919. },
  9920. [
  9921. {
  9922. name: "Normal",
  9923. height: math.unit(5 + 10 / 12, "feet")
  9924. },
  9925. {
  9926. name: "Macro",
  9927. height: math.unit(60, "feet"),
  9928. default: true
  9929. },
  9930. {
  9931. name: "Macro+",
  9932. height: math.unit(450, "feet")
  9933. },
  9934. ]
  9935. ))
  9936. characterMakers.push(() => makeCharacter(
  9937. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9938. {
  9939. front: {
  9940. height: math.unit(6, "feet"),
  9941. weight: math.unit(200, "lb"),
  9942. name: "Front",
  9943. image: {
  9944. source: "./media/characters/mega-shi/front.svg",
  9945. extra: 1279 / 1250,
  9946. bottom: 0.02
  9947. }
  9948. },
  9949. back: {
  9950. height: math.unit(6, "feet"),
  9951. weight: math.unit(200, "lb"),
  9952. name: "Back",
  9953. image: {
  9954. source: "./media/characters/mega-shi/back.svg",
  9955. extra: 1279 / 1250,
  9956. bottom: 0.02
  9957. }
  9958. },
  9959. },
  9960. [
  9961. {
  9962. name: "Micro",
  9963. height: math.unit(16 + 6 / 12, "feet")
  9964. },
  9965. {
  9966. name: "Third Dimension",
  9967. height: math.unit(40, "meters")
  9968. },
  9969. {
  9970. name: "Normal",
  9971. height: math.unit(660, "feet"),
  9972. default: true
  9973. },
  9974. {
  9975. name: "Megamacro",
  9976. height: math.unit(10, "miles")
  9977. },
  9978. {
  9979. name: "Planetary Launch",
  9980. height: math.unit(500, "miles")
  9981. },
  9982. {
  9983. name: "Interstellar",
  9984. height: math.unit(1e9, "miles")
  9985. },
  9986. {
  9987. name: "Leaving the Universe",
  9988. height: math.unit(1, "gigaparsec")
  9989. },
  9990. {
  9991. name: "Travelling Universes",
  9992. height: math.unit(30e15, "parsecs")
  9993. },
  9994. ]
  9995. ))
  9996. characterMakers.push(() => makeCharacter(
  9997. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9998. {
  9999. front: {
  10000. height: math.unit(6, "feet"),
  10001. weight: math.unit(150, "lb"),
  10002. name: "Front",
  10003. image: {
  10004. source: "./media/characters/odyssey/front.svg",
  10005. extra: 1782 / 1582,
  10006. bottom: 0.01
  10007. }
  10008. },
  10009. side: {
  10010. height: math.unit(5.7, "feet"),
  10011. weight: math.unit(140, "lb"),
  10012. name: "Side",
  10013. image: {
  10014. source: "./media/characters/odyssey/side.svg",
  10015. extra: 6462 / 5700
  10016. }
  10017. },
  10018. },
  10019. [
  10020. {
  10021. name: "Normal",
  10022. height: math.unit(5 + 4 / 12, "feet")
  10023. },
  10024. {
  10025. name: "Macro",
  10026. height: math.unit(1, "km")
  10027. },
  10028. {
  10029. name: "Megamacro",
  10030. height: math.unit(3000, "km")
  10031. },
  10032. {
  10033. name: "Gigamacro",
  10034. height: math.unit(1, "AU"),
  10035. default: true
  10036. },
  10037. {
  10038. name: "Omniversal",
  10039. height: math.unit(100e14, "lightyears")
  10040. },
  10041. ]
  10042. ))
  10043. characterMakers.push(() => makeCharacter(
  10044. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10045. {
  10046. front: {
  10047. height: math.unit(6, "feet"),
  10048. weight: math.unit(300, "lb"),
  10049. name: "Front",
  10050. image: {
  10051. source: "./media/characters/mekuto/front.svg",
  10052. extra: 921 / 832,
  10053. bottom: 0.03
  10054. }
  10055. },
  10056. hand: {
  10057. height: math.unit(6 / 10.24, "feet"),
  10058. name: "Hand",
  10059. image: {
  10060. source: "./media/characters/mekuto/hand.svg"
  10061. }
  10062. },
  10063. foot: {
  10064. height: math.unit(6 / 5.05, "feet"),
  10065. name: "Foot",
  10066. image: {
  10067. source: "./media/characters/mekuto/foot.svg"
  10068. }
  10069. },
  10070. },
  10071. [
  10072. {
  10073. name: "Minimicro",
  10074. height: math.unit(0.2, "inches")
  10075. },
  10076. {
  10077. name: "Micro",
  10078. height: math.unit(1.5, "inches")
  10079. },
  10080. {
  10081. name: "Normal",
  10082. height: math.unit(5 + 11 / 12, "feet"),
  10083. default: true
  10084. },
  10085. {
  10086. name: "Minimacro",
  10087. height: math.unit(17 + 9 / 12, "feet")
  10088. },
  10089. {
  10090. name: "Macro",
  10091. height: math.unit(177.5, "feet")
  10092. },
  10093. {
  10094. name: "Megamacro",
  10095. height: math.unit(152, "miles")
  10096. },
  10097. ]
  10098. ))
  10099. characterMakers.push(() => makeCharacter(
  10100. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10101. {
  10102. front: {
  10103. height: math.unit(6.5, "inches"),
  10104. weight: math.unit(13, "oz"),
  10105. name: "Front",
  10106. image: {
  10107. source: "./media/characters/dafydd-tomos/front.svg",
  10108. extra: 2990 / 2603,
  10109. bottom: 0.03
  10110. }
  10111. },
  10112. },
  10113. [
  10114. {
  10115. name: "Micro",
  10116. height: math.unit(6.5, "inches"),
  10117. default: true
  10118. },
  10119. ]
  10120. ))
  10121. characterMakers.push(() => makeCharacter(
  10122. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10123. {
  10124. front: {
  10125. height: math.unit(6, "feet"),
  10126. weight: math.unit(150, "lb"),
  10127. name: "Front",
  10128. image: {
  10129. source: "./media/characters/splinter/front.svg",
  10130. extra: 2990 / 2882,
  10131. bottom: 0.04
  10132. }
  10133. },
  10134. back: {
  10135. height: math.unit(6, "feet"),
  10136. weight: math.unit(150, "lb"),
  10137. name: "Back",
  10138. image: {
  10139. source: "./media/characters/splinter/back.svg",
  10140. extra: 2990 / 2882,
  10141. bottom: 0.04
  10142. }
  10143. },
  10144. },
  10145. [
  10146. {
  10147. name: "Normal",
  10148. height: math.unit(6, "feet")
  10149. },
  10150. {
  10151. name: "Macro",
  10152. height: math.unit(230, "meters"),
  10153. default: true
  10154. },
  10155. ]
  10156. ))
  10157. characterMakers.push(() => makeCharacter(
  10158. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10159. {
  10160. front: {
  10161. height: math.unit(4 + 10 / 12, "feet"),
  10162. weight: math.unit(480, "lb"),
  10163. name: "Front",
  10164. image: {
  10165. source: "./media/characters/snow-gabumon/front.svg",
  10166. extra: 1140 / 963,
  10167. bottom: 0.058
  10168. }
  10169. },
  10170. back: {
  10171. height: math.unit(4 + 10 / 12, "feet"),
  10172. weight: math.unit(480, "lb"),
  10173. name: "Back",
  10174. image: {
  10175. source: "./media/characters/snow-gabumon/back.svg",
  10176. extra: 1115 / 962,
  10177. bottom: 0.041
  10178. }
  10179. },
  10180. frontUndresed: {
  10181. height: math.unit(4 + 10 / 12, "feet"),
  10182. weight: math.unit(480, "lb"),
  10183. name: "Front (Undressed)",
  10184. image: {
  10185. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10186. extra: 1061 / 960,
  10187. bottom: 0.045
  10188. }
  10189. },
  10190. },
  10191. [
  10192. {
  10193. name: "Micro",
  10194. height: math.unit(1, "inch")
  10195. },
  10196. {
  10197. name: "Normal",
  10198. height: math.unit(4 + 10 / 12, "feet"),
  10199. default: true
  10200. },
  10201. {
  10202. name: "Macro",
  10203. height: math.unit(200, "feet")
  10204. },
  10205. {
  10206. name: "Megamacro",
  10207. height: math.unit(120, "miles")
  10208. },
  10209. {
  10210. name: "Gigamacro",
  10211. height: math.unit(9800, "miles")
  10212. },
  10213. ]
  10214. ))
  10215. characterMakers.push(() => makeCharacter(
  10216. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10217. {
  10218. front: {
  10219. height: math.unit(1.7, "meters"),
  10220. weight: math.unit(140, "lb"),
  10221. name: "Front",
  10222. image: {
  10223. source: "./media/characters/moody/front.svg",
  10224. extra: 3226 / 3007,
  10225. bottom: 0.087
  10226. }
  10227. },
  10228. },
  10229. [
  10230. {
  10231. name: "Micro",
  10232. height: math.unit(1, "mm")
  10233. },
  10234. {
  10235. name: "Normal",
  10236. height: math.unit(1.7, "meters"),
  10237. default: true
  10238. },
  10239. {
  10240. name: "Macro",
  10241. height: math.unit(80, "meters")
  10242. },
  10243. {
  10244. name: "Macro+",
  10245. height: math.unit(500, "meters")
  10246. },
  10247. ]
  10248. ))
  10249. characterMakers.push(() => makeCharacter(
  10250. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10251. {
  10252. front: {
  10253. height: math.unit(6, "feet"),
  10254. weight: math.unit(150, "lb"),
  10255. name: "Front",
  10256. image: {
  10257. source: "./media/characters/zyas/front.svg",
  10258. extra: 1180 / 1120,
  10259. bottom: 0.045
  10260. }
  10261. },
  10262. },
  10263. [
  10264. {
  10265. name: "Normal",
  10266. height: math.unit(10, "feet"),
  10267. default: true
  10268. },
  10269. {
  10270. name: "Macro",
  10271. height: math.unit(500, "feet")
  10272. },
  10273. {
  10274. name: "Megamacro",
  10275. height: math.unit(5, "miles")
  10276. },
  10277. {
  10278. name: "Teramacro",
  10279. height: math.unit(150000, "miles")
  10280. },
  10281. ]
  10282. ))
  10283. characterMakers.push(() => makeCharacter(
  10284. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10285. {
  10286. front: {
  10287. height: math.unit(6, "feet"),
  10288. weight: math.unit(150, "lb"),
  10289. name: "Front",
  10290. image: {
  10291. source: "./media/characters/cuon/front.svg",
  10292. extra: 1390 / 1320,
  10293. bottom: 0.008
  10294. }
  10295. },
  10296. },
  10297. [
  10298. {
  10299. name: "Micro",
  10300. height: math.unit(3, "inches")
  10301. },
  10302. {
  10303. name: "Normal",
  10304. height: math.unit(18 + 9 / 12, "feet"),
  10305. default: true
  10306. },
  10307. {
  10308. name: "Macro",
  10309. height: math.unit(360, "feet")
  10310. },
  10311. {
  10312. name: "Megamacro",
  10313. height: math.unit(360, "miles")
  10314. },
  10315. ]
  10316. ))
  10317. characterMakers.push(() => makeCharacter(
  10318. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10319. {
  10320. front: {
  10321. height: math.unit(2.4, "meters"),
  10322. weight: math.unit(70, "kg"),
  10323. name: "Front",
  10324. image: {
  10325. source: "./media/characters/nyanuxk/front.svg",
  10326. extra: 1172 / 1084,
  10327. bottom: 0.065
  10328. }
  10329. },
  10330. side: {
  10331. height: math.unit(2.4, "meters"),
  10332. weight: math.unit(70, "kg"),
  10333. name: "Side",
  10334. image: {
  10335. source: "./media/characters/nyanuxk/side.svg",
  10336. extra: 1190 / 1132,
  10337. bottom: 0.007
  10338. }
  10339. },
  10340. back: {
  10341. height: math.unit(2.4, "meters"),
  10342. weight: math.unit(70, "kg"),
  10343. name: "Back",
  10344. image: {
  10345. source: "./media/characters/nyanuxk/back.svg",
  10346. extra: 1200 / 1141,
  10347. bottom: 0.015
  10348. }
  10349. },
  10350. foot: {
  10351. height: math.unit(0.52, "meters"),
  10352. name: "Foot",
  10353. image: {
  10354. source: "./media/characters/nyanuxk/foot.svg"
  10355. }
  10356. },
  10357. },
  10358. [
  10359. {
  10360. name: "Micro",
  10361. height: math.unit(2, "cm")
  10362. },
  10363. {
  10364. name: "Normal",
  10365. height: math.unit(2.4, "meters"),
  10366. default: true
  10367. },
  10368. {
  10369. name: "Smaller Macro",
  10370. height: math.unit(120, "meters")
  10371. },
  10372. {
  10373. name: "Bigger Macro",
  10374. height: math.unit(1.2, "km")
  10375. },
  10376. {
  10377. name: "Megamacro",
  10378. height: math.unit(15, "kilometers")
  10379. },
  10380. {
  10381. name: "Gigamacro",
  10382. height: math.unit(2000, "km")
  10383. },
  10384. {
  10385. name: "Teramacro",
  10386. height: math.unit(500000, "km")
  10387. },
  10388. ]
  10389. ))
  10390. characterMakers.push(() => makeCharacter(
  10391. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10392. {
  10393. side: {
  10394. height: math.unit(6, "feet"),
  10395. name: "Side",
  10396. image: {
  10397. source: "./media/characters/ailbhe/side.svg",
  10398. extra: 757 / 464,
  10399. bottom: 0.041
  10400. }
  10401. },
  10402. },
  10403. [
  10404. {
  10405. name: "Normal",
  10406. height: math.unit(1.07, "meters"),
  10407. default: true
  10408. },
  10409. ]
  10410. ))
  10411. characterMakers.push(() => makeCharacter(
  10412. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10413. {
  10414. front: {
  10415. height: math.unit(6, "feet"),
  10416. weight: math.unit(120, "kg"),
  10417. name: "Front",
  10418. image: {
  10419. source: "./media/characters/zevulfius/front.svg",
  10420. extra: 965 / 903
  10421. }
  10422. },
  10423. side: {
  10424. height: math.unit(6, "feet"),
  10425. weight: math.unit(120, "kg"),
  10426. name: "Side",
  10427. image: {
  10428. source: "./media/characters/zevulfius/side.svg",
  10429. extra: 939 / 900
  10430. }
  10431. },
  10432. back: {
  10433. height: math.unit(6, "feet"),
  10434. weight: math.unit(120, "kg"),
  10435. name: "Back",
  10436. image: {
  10437. source: "./media/characters/zevulfius/back.svg",
  10438. extra: 918 / 854,
  10439. bottom: 0.005
  10440. }
  10441. },
  10442. foot: {
  10443. height: math.unit(6 / 3.72, "feet"),
  10444. name: "Foot",
  10445. image: {
  10446. source: "./media/characters/zevulfius/foot.svg"
  10447. }
  10448. },
  10449. },
  10450. [
  10451. {
  10452. name: "Macro",
  10453. height: math.unit(750, "meters")
  10454. },
  10455. {
  10456. name: "Megamacro",
  10457. height: math.unit(20, "km"),
  10458. default: true
  10459. },
  10460. {
  10461. name: "Gigamacro",
  10462. height: math.unit(2000, "km")
  10463. },
  10464. {
  10465. name: "Teramacro",
  10466. height: math.unit(250000, "km")
  10467. },
  10468. ]
  10469. ))
  10470. characterMakers.push(() => makeCharacter(
  10471. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10472. {
  10473. front: {
  10474. height: math.unit(100, "feet"),
  10475. weight: math.unit(350, "kg"),
  10476. name: "Front",
  10477. image: {
  10478. source: "./media/characters/rikes/front.svg",
  10479. extra: 1565 / 1483,
  10480. bottom: 0.017
  10481. }
  10482. },
  10483. },
  10484. [
  10485. {
  10486. name: "Macro",
  10487. height: math.unit(100, "feet"),
  10488. default: true
  10489. },
  10490. ]
  10491. ))
  10492. characterMakers.push(() => makeCharacter(
  10493. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10494. {
  10495. front: {
  10496. height: math.unit(8, "feet"),
  10497. weight: math.unit(356, "lb"),
  10498. name: "Front",
  10499. image: {
  10500. source: "./media/characters/adam-silver-mane/front.svg",
  10501. extra: 1036/937,
  10502. bottom: 63/1099
  10503. }
  10504. },
  10505. side: {
  10506. height: math.unit(8, "feet"),
  10507. weight: math.unit(356, "lb"),
  10508. name: "Side",
  10509. image: {
  10510. source: "./media/characters/adam-silver-mane/side.svg",
  10511. extra: 997/901,
  10512. bottom: 59/1056
  10513. }
  10514. },
  10515. frontNsfw: {
  10516. height: math.unit(8, "feet"),
  10517. weight: math.unit(356, "lb"),
  10518. name: "Front (NSFW)",
  10519. image: {
  10520. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10521. extra: 1036/937,
  10522. bottom: 63/1099
  10523. }
  10524. },
  10525. sideNsfw: {
  10526. height: math.unit(8, "feet"),
  10527. weight: math.unit(356, "lb"),
  10528. name: "Side (NSFW)",
  10529. image: {
  10530. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10531. extra: 997/901,
  10532. bottom: 59/1056
  10533. }
  10534. },
  10535. dick: {
  10536. height: math.unit(2.1, "feet"),
  10537. name: "Dick",
  10538. image: {
  10539. source: "./media/characters/adam-silver-mane/dick.svg"
  10540. }
  10541. },
  10542. taur: {
  10543. height: math.unit(16, "feet"),
  10544. weight: math.unit(1500, "kg"),
  10545. name: "Taur",
  10546. image: {
  10547. source: "./media/characters/adam-silver-mane/taur.svg",
  10548. extra: 1713 / 1571,
  10549. bottom: 0.01
  10550. }
  10551. },
  10552. },
  10553. [
  10554. {
  10555. name: "Normal",
  10556. height: math.unit(8, "feet")
  10557. },
  10558. {
  10559. name: "Minimacro",
  10560. height: math.unit(80, "feet")
  10561. },
  10562. {
  10563. name: "MDA",
  10564. height: math.unit(80, "meters")
  10565. },
  10566. {
  10567. name: "Macro",
  10568. height: math.unit(800, "feet"),
  10569. default: true
  10570. },
  10571. {
  10572. name: "Megamacro",
  10573. height: math.unit(8000, "feet")
  10574. },
  10575. {
  10576. name: "Gigamacro",
  10577. height: math.unit(800, "miles")
  10578. },
  10579. {
  10580. name: "Teramacro",
  10581. height: math.unit(80000, "miles")
  10582. },
  10583. {
  10584. name: "Celestial",
  10585. height: math.unit(8e6, "miles")
  10586. },
  10587. {
  10588. name: "Star Dragon",
  10589. height: math.unit(800000, "parsecs")
  10590. },
  10591. {
  10592. name: "Godly",
  10593. height: math.unit(800, "teraparsecs")
  10594. },
  10595. ]
  10596. ))
  10597. characterMakers.push(() => makeCharacter(
  10598. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10599. {
  10600. front: {
  10601. height: math.unit(6, "feet"),
  10602. weight: math.unit(150, "lb"),
  10603. name: "Front",
  10604. image: {
  10605. source: "./media/characters/ky'owin/front.svg",
  10606. extra: 3888 / 3068,
  10607. bottom: 0.015
  10608. }
  10609. },
  10610. },
  10611. [
  10612. {
  10613. name: "Normal",
  10614. height: math.unit(6 + 8 / 12, "feet")
  10615. },
  10616. {
  10617. name: "Large",
  10618. height: math.unit(68, "feet")
  10619. },
  10620. {
  10621. name: "Macro",
  10622. height: math.unit(132, "feet")
  10623. },
  10624. {
  10625. name: "Macro+",
  10626. height: math.unit(340, "feet")
  10627. },
  10628. {
  10629. name: "Macro++",
  10630. height: math.unit(680, "feet"),
  10631. default: true
  10632. },
  10633. {
  10634. name: "Megamacro",
  10635. height: math.unit(1, "mile")
  10636. },
  10637. {
  10638. name: "Megamacro+",
  10639. height: math.unit(10, "miles")
  10640. },
  10641. ]
  10642. ))
  10643. characterMakers.push(() => makeCharacter(
  10644. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10645. {
  10646. front: {
  10647. height: math.unit(4, "feet"),
  10648. weight: math.unit(50, "lb"),
  10649. name: "Front",
  10650. image: {
  10651. source: "./media/characters/mal/front.svg",
  10652. extra: 785 / 724,
  10653. bottom: 0.07
  10654. }
  10655. },
  10656. },
  10657. [
  10658. {
  10659. name: "Micro",
  10660. height: math.unit(4, "inches")
  10661. },
  10662. {
  10663. name: "Normal",
  10664. height: math.unit(4, "feet"),
  10665. default: true
  10666. },
  10667. {
  10668. name: "Macro",
  10669. height: math.unit(200, "feet")
  10670. },
  10671. ]
  10672. ))
  10673. characterMakers.push(() => makeCharacter(
  10674. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10675. {
  10676. front: {
  10677. height: math.unit(6, "feet"),
  10678. weight: math.unit(150, "lb"),
  10679. name: "Front",
  10680. image: {
  10681. source: "./media/characters/jordan-deware/front.svg",
  10682. extra: 1191 / 1012
  10683. }
  10684. },
  10685. },
  10686. [
  10687. {
  10688. name: "Nano",
  10689. height: math.unit(0.01, "mm")
  10690. },
  10691. {
  10692. name: "Minimicro",
  10693. height: math.unit(1, "mm")
  10694. },
  10695. {
  10696. name: "Micro",
  10697. height: math.unit(0.5, "inches")
  10698. },
  10699. {
  10700. name: "Normal",
  10701. height: math.unit(4, "feet"),
  10702. default: true
  10703. },
  10704. {
  10705. name: "Minimacro",
  10706. height: math.unit(40, "meters")
  10707. },
  10708. {
  10709. name: "Small Macro",
  10710. height: math.unit(400, "meters")
  10711. },
  10712. {
  10713. name: "Macro",
  10714. height: math.unit(4, "miles")
  10715. },
  10716. {
  10717. name: "Megamacro",
  10718. height: math.unit(40, "miles")
  10719. },
  10720. {
  10721. name: "Megamacro+",
  10722. height: math.unit(400, "miles")
  10723. },
  10724. {
  10725. name: "Gigamacro",
  10726. height: math.unit(400000, "miles")
  10727. },
  10728. ]
  10729. ))
  10730. characterMakers.push(() => makeCharacter(
  10731. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10732. {
  10733. side: {
  10734. height: math.unit(6, "feet"),
  10735. weight: math.unit(150, "lb"),
  10736. name: "Side",
  10737. image: {
  10738. source: "./media/characters/kimiko/side.svg",
  10739. extra: 600 / 358
  10740. }
  10741. },
  10742. },
  10743. [
  10744. {
  10745. name: "Normal",
  10746. height: math.unit(15, "feet"),
  10747. default: true
  10748. },
  10749. {
  10750. name: "Macro",
  10751. height: math.unit(220, "feet")
  10752. },
  10753. {
  10754. name: "Macro+",
  10755. height: math.unit(1450, "feet")
  10756. },
  10757. {
  10758. name: "Megamacro",
  10759. height: math.unit(11500, "feet")
  10760. },
  10761. {
  10762. name: "Gigamacro",
  10763. height: math.unit(9500, "miles")
  10764. },
  10765. {
  10766. name: "Teramacro",
  10767. height: math.unit(2208005005, "miles")
  10768. },
  10769. {
  10770. name: "Examacro",
  10771. height: math.unit(2750, "parsecs")
  10772. },
  10773. {
  10774. name: "Zettamacro",
  10775. height: math.unit(101500, "parsecs")
  10776. },
  10777. ]
  10778. ))
  10779. characterMakers.push(() => makeCharacter(
  10780. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10781. {
  10782. front: {
  10783. height: math.unit(6, "feet"),
  10784. weight: math.unit(70, "kg"),
  10785. name: "Front",
  10786. image: {
  10787. source: "./media/characters/andrew-sleepy/front.svg"
  10788. }
  10789. },
  10790. side: {
  10791. height: math.unit(6, "feet"),
  10792. weight: math.unit(70, "kg"),
  10793. name: "Side",
  10794. image: {
  10795. source: "./media/characters/andrew-sleepy/side.svg"
  10796. }
  10797. },
  10798. },
  10799. [
  10800. {
  10801. name: "Micro",
  10802. height: math.unit(1, "mm"),
  10803. default: true
  10804. },
  10805. ]
  10806. ))
  10807. characterMakers.push(() => makeCharacter(
  10808. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10809. {
  10810. front: {
  10811. height: math.unit(6, "feet"),
  10812. weight: math.unit(150, "lb"),
  10813. name: "Front",
  10814. image: {
  10815. source: "./media/characters/judio/front.svg",
  10816. extra: 1258 / 1110
  10817. }
  10818. },
  10819. },
  10820. [
  10821. {
  10822. name: "Normal",
  10823. height: math.unit(5 + 6 / 12, "feet")
  10824. },
  10825. {
  10826. name: "Macro",
  10827. height: math.unit(1000, "feet"),
  10828. default: true
  10829. },
  10830. {
  10831. name: "Megamacro",
  10832. height: math.unit(10, "miles")
  10833. },
  10834. ]
  10835. ))
  10836. characterMakers.push(() => makeCharacter(
  10837. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10838. {
  10839. front: {
  10840. height: math.unit(6, "feet"),
  10841. weight: math.unit(68, "kg"),
  10842. name: "Front",
  10843. image: {
  10844. source: "./media/characters/nomaxice/front.svg",
  10845. extra: 1498 / 1073,
  10846. bottom: 0.075
  10847. }
  10848. },
  10849. foot: {
  10850. height: math.unit(1.1, "feet"),
  10851. name: "Foot",
  10852. image: {
  10853. source: "./media/characters/nomaxice/foot.svg"
  10854. }
  10855. },
  10856. },
  10857. [
  10858. {
  10859. name: "Micro",
  10860. height: math.unit(8, "cm")
  10861. },
  10862. {
  10863. name: "Norm",
  10864. height: math.unit(1.82, "m")
  10865. },
  10866. {
  10867. name: "Norm+",
  10868. height: math.unit(8.8, "feet")
  10869. },
  10870. {
  10871. name: "Big",
  10872. height: math.unit(8, "meters"),
  10873. default: true
  10874. },
  10875. {
  10876. name: "Macro",
  10877. height: math.unit(18, "meters")
  10878. },
  10879. {
  10880. name: "Macro+",
  10881. height: math.unit(88, "meters")
  10882. },
  10883. ]
  10884. ))
  10885. characterMakers.push(() => makeCharacter(
  10886. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10887. {
  10888. front: {
  10889. height: math.unit(12, "feet"),
  10890. weight: math.unit(1.5, "tons"),
  10891. name: "Front",
  10892. image: {
  10893. source: "./media/characters/dydros/front.svg",
  10894. extra: 863 / 800,
  10895. bottom: 0.015
  10896. }
  10897. },
  10898. back: {
  10899. height: math.unit(12, "feet"),
  10900. weight: math.unit(1.5, "tons"),
  10901. name: "Back",
  10902. image: {
  10903. source: "./media/characters/dydros/back.svg",
  10904. extra: 900 / 843,
  10905. bottom: 0.005
  10906. }
  10907. },
  10908. },
  10909. [
  10910. {
  10911. name: "Normal",
  10912. height: math.unit(12, "feet"),
  10913. default: true
  10914. },
  10915. ]
  10916. ))
  10917. characterMakers.push(() => makeCharacter(
  10918. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10919. {
  10920. front: {
  10921. height: math.unit(6, "feet"),
  10922. weight: math.unit(100, "kg"),
  10923. name: "Front",
  10924. image: {
  10925. source: "./media/characters/riggi/front.svg",
  10926. extra: 5787 / 5303
  10927. }
  10928. },
  10929. hyper: {
  10930. height: math.unit(6 * 5 / 3, "feet"),
  10931. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10932. name: "Hyper",
  10933. image: {
  10934. source: "./media/characters/riggi/hyper.svg",
  10935. extra: 3595 / 3485
  10936. }
  10937. },
  10938. },
  10939. [
  10940. {
  10941. name: "Small Macro",
  10942. height: math.unit(50, "feet")
  10943. },
  10944. {
  10945. name: "Default",
  10946. height: math.unit(200, "feet"),
  10947. default: true
  10948. },
  10949. {
  10950. name: "Loom",
  10951. height: math.unit(10000, "feet")
  10952. },
  10953. {
  10954. name: "Cruising Altitude",
  10955. height: math.unit(30000, "feet")
  10956. },
  10957. {
  10958. name: "Megamacro",
  10959. height: math.unit(100, "miles")
  10960. },
  10961. {
  10962. name: "Continent Sized",
  10963. height: math.unit(2800, "miles")
  10964. },
  10965. {
  10966. name: "Earth Sized",
  10967. height: math.unit(8000, "miles")
  10968. },
  10969. ]
  10970. ))
  10971. characterMakers.push(() => makeCharacter(
  10972. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10973. {
  10974. front: {
  10975. height: math.unit(6, "feet"),
  10976. weight: math.unit(250, "lb"),
  10977. name: "Front",
  10978. image: {
  10979. source: "./media/characters/alexi/front.svg",
  10980. extra: 3483 / 3291,
  10981. bottom: 0.04
  10982. }
  10983. },
  10984. back: {
  10985. height: math.unit(6, "feet"),
  10986. weight: math.unit(250, "lb"),
  10987. name: "Back",
  10988. image: {
  10989. source: "./media/characters/alexi/back.svg",
  10990. extra: 3533 / 3356,
  10991. bottom: 0.021
  10992. }
  10993. },
  10994. frontTransforming: {
  10995. height: math.unit(8.58, "feet"),
  10996. weight: math.unit(1300, "lb"),
  10997. name: "Transforming",
  10998. image: {
  10999. source: "./media/characters/alexi/front-transforming.svg",
  11000. extra: 437 / 409,
  11001. bottom: 19 / 458.66
  11002. }
  11003. },
  11004. frontTransformed: {
  11005. height: math.unit(12.5, "feet"),
  11006. weight: math.unit(4000, "lb"),
  11007. name: "Transformed",
  11008. image: {
  11009. source: "./media/characters/alexi/front-transformed.svg",
  11010. extra: 639 / 614,
  11011. bottom: 30.55 / 671
  11012. }
  11013. },
  11014. },
  11015. [
  11016. {
  11017. name: "Normal",
  11018. height: math.unit(14, "feet"),
  11019. default: true
  11020. },
  11021. {
  11022. name: "Minimacro",
  11023. height: math.unit(30, "meters")
  11024. },
  11025. {
  11026. name: "Macro",
  11027. height: math.unit(500, "meters")
  11028. },
  11029. {
  11030. name: "Megamacro",
  11031. height: math.unit(9000, "km")
  11032. },
  11033. {
  11034. name: "Teramacro",
  11035. height: math.unit(384000, "km")
  11036. },
  11037. ]
  11038. ))
  11039. characterMakers.push(() => makeCharacter(
  11040. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11041. {
  11042. front: {
  11043. height: math.unit(6, "feet"),
  11044. weight: math.unit(150, "lb"),
  11045. name: "Front",
  11046. image: {
  11047. source: "./media/characters/kayroo/front.svg",
  11048. extra: 1153 / 1038,
  11049. bottom: 0.06
  11050. }
  11051. },
  11052. foot: {
  11053. height: math.unit(6, "feet"),
  11054. weight: math.unit(150, "lb"),
  11055. name: "Foot",
  11056. image: {
  11057. source: "./media/characters/kayroo/foot.svg"
  11058. }
  11059. },
  11060. },
  11061. [
  11062. {
  11063. name: "Normal",
  11064. height: math.unit(8, "feet"),
  11065. default: true
  11066. },
  11067. {
  11068. name: "Minimacro",
  11069. height: math.unit(250, "feet")
  11070. },
  11071. {
  11072. name: "Macro",
  11073. height: math.unit(2800, "feet")
  11074. },
  11075. {
  11076. name: "Megamacro",
  11077. height: math.unit(5200, "feet")
  11078. },
  11079. {
  11080. name: "Gigamacro",
  11081. height: math.unit(27000, "feet")
  11082. },
  11083. {
  11084. name: "Omega",
  11085. height: math.unit(45000, "feet")
  11086. },
  11087. ]
  11088. ))
  11089. characterMakers.push(() => makeCharacter(
  11090. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11091. {
  11092. front: {
  11093. height: math.unit(18, "feet"),
  11094. weight: math.unit(5800, "lb"),
  11095. name: "Front",
  11096. image: {
  11097. source: "./media/characters/rhys/front.svg",
  11098. extra: 3386 / 3090,
  11099. bottom: 0.07
  11100. }
  11101. },
  11102. },
  11103. [
  11104. {
  11105. name: "Normal",
  11106. height: math.unit(18, "feet"),
  11107. default: true
  11108. },
  11109. {
  11110. name: "Working Size",
  11111. height: math.unit(200, "feet")
  11112. },
  11113. {
  11114. name: "Demolition Size",
  11115. height: math.unit(2000, "feet")
  11116. },
  11117. {
  11118. name: "Maximum Licensed Size",
  11119. height: math.unit(5, "miles")
  11120. },
  11121. {
  11122. name: "Maximum Observed Size",
  11123. height: math.unit(10, "yottameters")
  11124. },
  11125. ]
  11126. ))
  11127. characterMakers.push(() => makeCharacter(
  11128. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11129. {
  11130. front: {
  11131. height: math.unit(6, "feet"),
  11132. weight: math.unit(250, "lb"),
  11133. name: "Front",
  11134. image: {
  11135. source: "./media/characters/toto/front.svg",
  11136. extra: 527 / 479,
  11137. bottom: 0.05
  11138. }
  11139. },
  11140. },
  11141. [
  11142. {
  11143. name: "Micro",
  11144. height: math.unit(3, "feet")
  11145. },
  11146. {
  11147. name: "Normal",
  11148. height: math.unit(10, "feet")
  11149. },
  11150. {
  11151. name: "Macro",
  11152. height: math.unit(150, "feet"),
  11153. default: true
  11154. },
  11155. {
  11156. name: "Megamacro",
  11157. height: math.unit(1200, "feet")
  11158. },
  11159. ]
  11160. ))
  11161. characterMakers.push(() => makeCharacter(
  11162. { name: "King", species: ["lion"], tags: ["anthro"] },
  11163. {
  11164. back: {
  11165. height: math.unit(6, "feet"),
  11166. weight: math.unit(150, "lb"),
  11167. name: "Back",
  11168. image: {
  11169. source: "./media/characters/king/back.svg"
  11170. }
  11171. },
  11172. },
  11173. [
  11174. {
  11175. name: "Micro",
  11176. height: math.unit(2, "inches")
  11177. },
  11178. {
  11179. name: "Normal",
  11180. height: math.unit(8, "feet")
  11181. },
  11182. {
  11183. name: "Macro",
  11184. height: math.unit(200, "feet"),
  11185. default: true
  11186. },
  11187. {
  11188. name: "Megamacro",
  11189. height: math.unit(50, "miles")
  11190. },
  11191. ]
  11192. ))
  11193. characterMakers.push(() => makeCharacter(
  11194. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11195. {
  11196. front: {
  11197. height: math.unit(11, "feet"),
  11198. weight: math.unit(1400, "lb"),
  11199. name: "Front",
  11200. image: {
  11201. source: "./media/characters/cordite/front.svg",
  11202. extra: 1919/1827,
  11203. bottom: 40/1959
  11204. }
  11205. },
  11206. side: {
  11207. height: math.unit(11, "feet"),
  11208. weight: math.unit(1400, "lb"),
  11209. name: "Side",
  11210. image: {
  11211. source: "./media/characters/cordite/side.svg",
  11212. extra: 1908/1793,
  11213. bottom: 38/1946
  11214. }
  11215. },
  11216. back: {
  11217. height: math.unit(11, "feet"),
  11218. weight: math.unit(1400, "lb"),
  11219. name: "Back",
  11220. image: {
  11221. source: "./media/characters/cordite/back.svg",
  11222. extra: 1938/1837,
  11223. bottom: 10/1948
  11224. }
  11225. },
  11226. feral: {
  11227. height: math.unit(2, "feet"),
  11228. weight: math.unit(90, "lb"),
  11229. name: "Feral",
  11230. image: {
  11231. source: "./media/characters/cordite/feral.svg",
  11232. extra: 1260 / 755,
  11233. bottom: 0.05
  11234. }
  11235. },
  11236. },
  11237. [
  11238. {
  11239. name: "Normal",
  11240. height: math.unit(11, "feet"),
  11241. default: true
  11242. },
  11243. ]
  11244. ))
  11245. characterMakers.push(() => makeCharacter(
  11246. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11247. {
  11248. front: {
  11249. height: math.unit(6, "feet"),
  11250. weight: math.unit(150, "lb"),
  11251. name: "Front",
  11252. image: {
  11253. source: "./media/characters/pianostrong/front.svg",
  11254. extra: 6577 / 6254,
  11255. bottom: 0.02
  11256. }
  11257. },
  11258. side: {
  11259. height: math.unit(6, "feet"),
  11260. weight: math.unit(150, "lb"),
  11261. name: "Side",
  11262. image: {
  11263. source: "./media/characters/pianostrong/side.svg",
  11264. extra: 6106 / 5730
  11265. }
  11266. },
  11267. back: {
  11268. height: math.unit(6, "feet"),
  11269. weight: math.unit(150, "lb"),
  11270. name: "Back",
  11271. image: {
  11272. source: "./media/characters/pianostrong/back.svg",
  11273. extra: 6085 / 5733,
  11274. bottom: 0.01
  11275. }
  11276. },
  11277. },
  11278. [
  11279. {
  11280. name: "Macro",
  11281. height: math.unit(100, "feet")
  11282. },
  11283. {
  11284. name: "Macro+",
  11285. height: math.unit(300, "feet"),
  11286. default: true
  11287. },
  11288. {
  11289. name: "Macro++",
  11290. height: math.unit(1000, "feet")
  11291. },
  11292. ]
  11293. ))
  11294. characterMakers.push(() => makeCharacter(
  11295. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11296. {
  11297. front: {
  11298. height: math.unit(6, "feet"),
  11299. weight: math.unit(150, "lb"),
  11300. name: "Front",
  11301. image: {
  11302. source: "./media/characters/kona/front.svg",
  11303. extra: 2960 / 2629,
  11304. bottom: 0.005
  11305. }
  11306. },
  11307. },
  11308. [
  11309. {
  11310. name: "Normal",
  11311. height: math.unit(11 + 8 / 12, "feet")
  11312. },
  11313. {
  11314. name: "Macro",
  11315. height: math.unit(850, "feet"),
  11316. default: true
  11317. },
  11318. {
  11319. name: "Macro+",
  11320. height: math.unit(1.5, "km"),
  11321. default: true
  11322. },
  11323. {
  11324. name: "Megamacro",
  11325. height: math.unit(80, "miles")
  11326. },
  11327. {
  11328. name: "Gigamacro",
  11329. height: math.unit(3500, "miles")
  11330. },
  11331. ]
  11332. ))
  11333. characterMakers.push(() => makeCharacter(
  11334. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11335. {
  11336. side: {
  11337. height: math.unit(1.9, "meters"),
  11338. weight: math.unit(326, "kg"),
  11339. name: "Side",
  11340. image: {
  11341. source: "./media/characters/levi/side.svg",
  11342. extra: 1704 / 1334,
  11343. bottom: 0.02
  11344. }
  11345. },
  11346. },
  11347. [
  11348. {
  11349. name: "Normal",
  11350. height: math.unit(1.9, "meters"),
  11351. default: true
  11352. },
  11353. {
  11354. name: "Macro",
  11355. height: math.unit(20, "meters")
  11356. },
  11357. {
  11358. name: "Macro+",
  11359. height: math.unit(200, "meters")
  11360. },
  11361. {
  11362. name: "Megamacro",
  11363. height: math.unit(2, "km")
  11364. },
  11365. {
  11366. name: "Megamacro+",
  11367. height: math.unit(20, "km")
  11368. },
  11369. {
  11370. name: "Gigamacro",
  11371. height: math.unit(2500, "km")
  11372. },
  11373. {
  11374. name: "Gigamacro+",
  11375. height: math.unit(120000, "km")
  11376. },
  11377. {
  11378. name: "Teramacro",
  11379. height: math.unit(7.77e6, "km")
  11380. },
  11381. ]
  11382. ))
  11383. characterMakers.push(() => makeCharacter(
  11384. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11385. {
  11386. front: {
  11387. height: math.unit(6 + 4/12, "feet"),
  11388. weight: math.unit(190, "lb"),
  11389. name: "Front",
  11390. image: {
  11391. source: "./media/characters/bmc/front.svg",
  11392. extra: 1626/1472,
  11393. bottom: 79/1705
  11394. }
  11395. },
  11396. back: {
  11397. height: math.unit(6 + 4/12, "feet"),
  11398. weight: math.unit(190, "lb"),
  11399. name: "Back",
  11400. image: {
  11401. source: "./media/characters/bmc/back.svg",
  11402. extra: 1640/1479,
  11403. bottom: 45/1685
  11404. }
  11405. },
  11406. frontArmor: {
  11407. height: math.unit(6 + 4/12, "feet"),
  11408. weight: math.unit(190, "lb"),
  11409. name: "Front-armor",
  11410. image: {
  11411. source: "./media/characters/bmc/front-armor.svg",
  11412. extra: 1538/1468,
  11413. bottom: 79/1617
  11414. }
  11415. },
  11416. },
  11417. [
  11418. {
  11419. name: "Human-sized",
  11420. height: math.unit(6 + 4 / 12, "feet")
  11421. },
  11422. {
  11423. name: "Interactive Size",
  11424. height: math.unit(25, "feet")
  11425. },
  11426. {
  11427. name: "Small",
  11428. height: math.unit(250, "feet")
  11429. },
  11430. {
  11431. name: "Normal",
  11432. height: math.unit(1250, "feet"),
  11433. default: true
  11434. },
  11435. {
  11436. name: "Good Day",
  11437. height: math.unit(88, "miles")
  11438. },
  11439. {
  11440. name: "Largest Measured Size",
  11441. height: math.unit(105.960, "galaxies")
  11442. },
  11443. ]
  11444. ))
  11445. characterMakers.push(() => makeCharacter(
  11446. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11447. {
  11448. front: {
  11449. height: math.unit(20, "feet"),
  11450. weight: math.unit(2016, "kg"),
  11451. name: "Front",
  11452. image: {
  11453. source: "./media/characters/sven-the-kaiju/front.svg",
  11454. extra: 1277/1250,
  11455. bottom: 35/1312
  11456. }
  11457. },
  11458. mouth: {
  11459. height: math.unit(1.85, "feet"),
  11460. name: "Mouth",
  11461. image: {
  11462. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11463. }
  11464. },
  11465. },
  11466. [
  11467. {
  11468. name: "Fairy",
  11469. height: math.unit(6, "inches")
  11470. },
  11471. {
  11472. name: "Normal",
  11473. height: math.unit(20, "feet"),
  11474. default: true
  11475. },
  11476. {
  11477. name: "Rampage",
  11478. height: math.unit(200, "feet")
  11479. },
  11480. {
  11481. name: "Archfey Forest Guardian",
  11482. height: math.unit(1, "mile")
  11483. },
  11484. ]
  11485. ))
  11486. characterMakers.push(() => makeCharacter(
  11487. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11488. {
  11489. front: {
  11490. height: math.unit(4, "meters"),
  11491. weight: math.unit(2, "tons"),
  11492. name: "Front",
  11493. image: {
  11494. source: "./media/characters/marik/front.svg",
  11495. extra: 1057 / 1003,
  11496. bottom: 0.08
  11497. }
  11498. },
  11499. },
  11500. [
  11501. {
  11502. name: "Normal",
  11503. height: math.unit(4, "meters"),
  11504. default: true
  11505. },
  11506. {
  11507. name: "Macro",
  11508. height: math.unit(20, "meters")
  11509. },
  11510. {
  11511. name: "Megamacro",
  11512. height: math.unit(50, "km")
  11513. },
  11514. {
  11515. name: "Gigamacro",
  11516. height: math.unit(100, "km")
  11517. },
  11518. {
  11519. name: "Alpha Macro",
  11520. height: math.unit(7.88e7, "yottameters")
  11521. },
  11522. ]
  11523. ))
  11524. characterMakers.push(() => makeCharacter(
  11525. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11526. {
  11527. front: {
  11528. height: math.unit(6, "feet"),
  11529. weight: math.unit(110, "lb"),
  11530. name: "Front",
  11531. image: {
  11532. source: "./media/characters/mel/front.svg",
  11533. extra: 736 / 617,
  11534. bottom: 0.017
  11535. }
  11536. },
  11537. },
  11538. [
  11539. {
  11540. name: "Pico",
  11541. height: math.unit(3, "pm")
  11542. },
  11543. {
  11544. name: "Nano",
  11545. height: math.unit(3, "nm")
  11546. },
  11547. {
  11548. name: "Micro",
  11549. height: math.unit(0.3, "mm"),
  11550. default: true
  11551. },
  11552. {
  11553. name: "Micro+",
  11554. height: math.unit(3, "mm")
  11555. },
  11556. {
  11557. name: "Normal",
  11558. height: math.unit(5 + 10.5 / 12, "feet")
  11559. },
  11560. ]
  11561. ))
  11562. characterMakers.push(() => makeCharacter(
  11563. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11564. {
  11565. kaiju: {
  11566. height: math.unit(1.75, "meters"),
  11567. weight: math.unit(55, "kg"),
  11568. name: "Kaiju",
  11569. image: {
  11570. source: "./media/characters/lykonous/kaiju.svg",
  11571. extra: 1055 / 946,
  11572. bottom: 0.135
  11573. }
  11574. },
  11575. },
  11576. [
  11577. {
  11578. name: "Normal",
  11579. height: math.unit(2.5, "meters"),
  11580. default: true
  11581. },
  11582. {
  11583. name: "Kaiju Dragon",
  11584. height: math.unit(60, "meters")
  11585. },
  11586. {
  11587. name: "Mega Kaiju",
  11588. height: math.unit(120, "km")
  11589. },
  11590. {
  11591. name: "Giga Kaiju",
  11592. height: math.unit(200, "megameters")
  11593. },
  11594. {
  11595. name: "Terra Kaiju",
  11596. height: math.unit(400, "gigameters")
  11597. },
  11598. {
  11599. name: "Kaiju Dragon God",
  11600. height: math.unit(13000, "exaparsecs")
  11601. },
  11602. ]
  11603. ))
  11604. characterMakers.push(() => makeCharacter(
  11605. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11606. {
  11607. front: {
  11608. height: math.unit(6, "feet"),
  11609. weight: math.unit(150, "lb"),
  11610. name: "Front",
  11611. image: {
  11612. source: "./media/characters/blü/front.svg",
  11613. extra: 1883 / 1564,
  11614. bottom: 0.031
  11615. }
  11616. },
  11617. },
  11618. [
  11619. {
  11620. name: "Normal",
  11621. height: math.unit(13, "feet"),
  11622. default: true
  11623. },
  11624. {
  11625. name: "Big Boi",
  11626. height: math.unit(150, "meters")
  11627. },
  11628. {
  11629. name: "Mini Stomper",
  11630. height: math.unit(300, "meters")
  11631. },
  11632. {
  11633. name: "Macro",
  11634. height: math.unit(1000, "meters")
  11635. },
  11636. {
  11637. name: "Megamacro",
  11638. height: math.unit(11000, "meters")
  11639. },
  11640. {
  11641. name: "Gigamacro",
  11642. height: math.unit(11000, "km")
  11643. },
  11644. {
  11645. name: "Teramacro",
  11646. height: math.unit(420000, "km")
  11647. },
  11648. {
  11649. name: "Examacro",
  11650. height: math.unit(120, "parsecs")
  11651. },
  11652. {
  11653. name: "God Tho",
  11654. height: math.unit(98000000000, "parsecs")
  11655. },
  11656. ]
  11657. ))
  11658. characterMakers.push(() => makeCharacter(
  11659. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11660. {
  11661. taurFront: {
  11662. height: math.unit(6, "feet"),
  11663. weight: math.unit(200, "lb"),
  11664. name: "Taur (Front)",
  11665. image: {
  11666. source: "./media/characters/scales/taur-front.svg",
  11667. extra: 1,
  11668. bottom: 0.05
  11669. }
  11670. },
  11671. taurBack: {
  11672. height: math.unit(6, "feet"),
  11673. weight: math.unit(200, "lb"),
  11674. name: "Taur (Back)",
  11675. image: {
  11676. source: "./media/characters/scales/taur-back.svg",
  11677. extra: 1,
  11678. bottom: 0.08
  11679. }
  11680. },
  11681. anthro: {
  11682. height: math.unit(6 * 7 / 12, "feet"),
  11683. weight: math.unit(100, "lb"),
  11684. name: "Anthro",
  11685. image: {
  11686. source: "./media/characters/scales/anthro.svg",
  11687. extra: 1,
  11688. bottom: 0.06
  11689. }
  11690. },
  11691. },
  11692. [
  11693. {
  11694. name: "Normal",
  11695. height: math.unit(12, "feet"),
  11696. default: true
  11697. },
  11698. ]
  11699. ))
  11700. characterMakers.push(() => makeCharacter(
  11701. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11702. {
  11703. front: {
  11704. height: math.unit(6, "feet"),
  11705. weight: math.unit(150, "lb"),
  11706. name: "Front",
  11707. image: {
  11708. source: "./media/characters/koragos/front.svg",
  11709. extra: 841 / 794,
  11710. bottom: 0.035
  11711. }
  11712. },
  11713. back: {
  11714. height: math.unit(6, "feet"),
  11715. weight: math.unit(150, "lb"),
  11716. name: "Back",
  11717. image: {
  11718. source: "./media/characters/koragos/back.svg",
  11719. extra: 841 / 810,
  11720. bottom: 0.022
  11721. }
  11722. },
  11723. },
  11724. [
  11725. {
  11726. name: "Normal",
  11727. height: math.unit(6 + 11 / 12, "feet"),
  11728. default: true
  11729. },
  11730. {
  11731. name: "Macro",
  11732. height: math.unit(490, "feet")
  11733. },
  11734. {
  11735. name: "Megamacro",
  11736. height: math.unit(10, "miles")
  11737. },
  11738. {
  11739. name: "Gigamacro",
  11740. height: math.unit(50, "miles")
  11741. },
  11742. ]
  11743. ))
  11744. characterMakers.push(() => makeCharacter(
  11745. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11746. {
  11747. front: {
  11748. height: math.unit(6, "feet"),
  11749. weight: math.unit(250, "lb"),
  11750. name: "Front",
  11751. image: {
  11752. source: "./media/characters/xylrem/front.svg",
  11753. extra: 3323 / 3050,
  11754. bottom: 0.065
  11755. }
  11756. },
  11757. },
  11758. [
  11759. {
  11760. name: "Micro",
  11761. height: math.unit(4, "feet")
  11762. },
  11763. {
  11764. name: "Normal",
  11765. height: math.unit(16, "feet"),
  11766. default: true
  11767. },
  11768. {
  11769. name: "Macro",
  11770. height: math.unit(2720, "feet")
  11771. },
  11772. {
  11773. name: "Megamacro",
  11774. height: math.unit(25000, "miles")
  11775. },
  11776. ]
  11777. ))
  11778. characterMakers.push(() => makeCharacter(
  11779. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11780. {
  11781. front: {
  11782. height: math.unit(8, "feet"),
  11783. weight: math.unit(250, "kg"),
  11784. name: "Front",
  11785. image: {
  11786. source: "./media/characters/ikideru/front.svg",
  11787. extra: 930 / 870,
  11788. bottom: 0.087
  11789. }
  11790. },
  11791. back: {
  11792. height: math.unit(8, "feet"),
  11793. weight: math.unit(250, "kg"),
  11794. name: "Back",
  11795. image: {
  11796. source: "./media/characters/ikideru/back.svg",
  11797. extra: 919 / 852,
  11798. bottom: 0.055
  11799. }
  11800. },
  11801. },
  11802. [
  11803. {
  11804. name: "Rare",
  11805. height: math.unit(8, "feet"),
  11806. default: true
  11807. },
  11808. {
  11809. name: "Playful Loom",
  11810. height: math.unit(80, "feet")
  11811. },
  11812. {
  11813. name: "City Leaner",
  11814. height: math.unit(230, "feet")
  11815. },
  11816. {
  11817. name: "Megamacro",
  11818. height: math.unit(2500, "feet")
  11819. },
  11820. {
  11821. name: "Gigamacro",
  11822. height: math.unit(26400, "feet")
  11823. },
  11824. {
  11825. name: "Tectonic Shifter",
  11826. height: math.unit(1.7, "megameters")
  11827. },
  11828. {
  11829. name: "Planet Carer",
  11830. height: math.unit(21, "megameters")
  11831. },
  11832. {
  11833. name: "God",
  11834. height: math.unit(11157.22, "parsecs")
  11835. },
  11836. ]
  11837. ))
  11838. characterMakers.push(() => makeCharacter(
  11839. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11840. {
  11841. front: {
  11842. height: math.unit(6, "feet"),
  11843. weight: math.unit(120, "lb"),
  11844. name: "Front",
  11845. image: {
  11846. source: "./media/characters/neo/front.svg"
  11847. }
  11848. },
  11849. },
  11850. [
  11851. {
  11852. name: "Micro",
  11853. height: math.unit(2, "inches"),
  11854. default: true
  11855. },
  11856. {
  11857. name: "Human Size",
  11858. height: math.unit(5 + 8 / 12, "feet")
  11859. },
  11860. ]
  11861. ))
  11862. characterMakers.push(() => makeCharacter(
  11863. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11864. {
  11865. front: {
  11866. height: math.unit(13 + 10 / 12, "feet"),
  11867. weight: math.unit(5320, "lb"),
  11868. name: "Front",
  11869. image: {
  11870. source: "./media/characters/chauncey-chantz/front.svg",
  11871. extra: 1587 / 1435,
  11872. bottom: 0.02
  11873. }
  11874. },
  11875. },
  11876. [
  11877. {
  11878. name: "Normal",
  11879. height: math.unit(13 + 10 / 12, "feet"),
  11880. default: true
  11881. },
  11882. {
  11883. name: "Macro",
  11884. height: math.unit(45, "feet")
  11885. },
  11886. {
  11887. name: "Megamacro",
  11888. height: math.unit(250, "miles")
  11889. },
  11890. {
  11891. name: "Planetary",
  11892. height: math.unit(10000, "miles")
  11893. },
  11894. {
  11895. name: "Galactic",
  11896. height: math.unit(40000, "parsecs")
  11897. },
  11898. {
  11899. name: "Universal",
  11900. height: math.unit(1, "yottameter")
  11901. },
  11902. ]
  11903. ))
  11904. characterMakers.push(() => makeCharacter(
  11905. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11906. {
  11907. front: {
  11908. height: math.unit(6, "feet"),
  11909. weight: math.unit(150, "lb"),
  11910. name: "Front",
  11911. image: {
  11912. source: "./media/characters/epifox/front.svg",
  11913. extra: 1,
  11914. bottom: 0.075
  11915. }
  11916. },
  11917. },
  11918. [
  11919. {
  11920. name: "Micro",
  11921. height: math.unit(6, "inches")
  11922. },
  11923. {
  11924. name: "Normal",
  11925. height: math.unit(12, "feet"),
  11926. default: true
  11927. },
  11928. {
  11929. name: "Macro",
  11930. height: math.unit(3810, "feet")
  11931. },
  11932. {
  11933. name: "Megamacro",
  11934. height: math.unit(500, "miles")
  11935. },
  11936. ]
  11937. ))
  11938. characterMakers.push(() => makeCharacter(
  11939. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11940. {
  11941. front: {
  11942. height: math.unit(1.8796, "m"),
  11943. weight: math.unit(230, "lb"),
  11944. name: "Front",
  11945. image: {
  11946. source: "./media/characters/colin-t/front.svg",
  11947. extra: 1272 / 1193,
  11948. bottom: 0.07
  11949. }
  11950. },
  11951. },
  11952. [
  11953. {
  11954. name: "Micro",
  11955. height: math.unit(0.571, "meters")
  11956. },
  11957. {
  11958. name: "Normal",
  11959. height: math.unit(1.8796, "meters"),
  11960. default: true
  11961. },
  11962. {
  11963. name: "Tall",
  11964. height: math.unit(4, "meters")
  11965. },
  11966. {
  11967. name: "Macro",
  11968. height: math.unit(67.241, "meters")
  11969. },
  11970. {
  11971. name: "Megamacro",
  11972. height: math.unit(371.856, "meters")
  11973. },
  11974. {
  11975. name: "Planetary",
  11976. height: math.unit(12631.5689, "km")
  11977. },
  11978. ]
  11979. ))
  11980. characterMakers.push(() => makeCharacter(
  11981. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11982. {
  11983. front: {
  11984. height: math.unit(1.85, "meters"),
  11985. weight: math.unit(80, "kg"),
  11986. name: "Front",
  11987. image: {
  11988. source: "./media/characters/matvei/front.svg",
  11989. extra: 614 / 594,
  11990. bottom: 0.01
  11991. }
  11992. },
  11993. },
  11994. [
  11995. {
  11996. name: "Normal",
  11997. height: math.unit(1.85, "meters"),
  11998. default: true
  11999. },
  12000. ]
  12001. ))
  12002. characterMakers.push(() => makeCharacter(
  12003. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12004. {
  12005. front: {
  12006. height: math.unit(5 + 9 / 12, "feet"),
  12007. weight: math.unit(70, "lb"),
  12008. name: "Front",
  12009. image: {
  12010. source: "./media/characters/quincy/front.svg",
  12011. extra: 3041 / 2751
  12012. }
  12013. },
  12014. back: {
  12015. height: math.unit(5 + 9 / 12, "feet"),
  12016. weight: math.unit(70, "lb"),
  12017. name: "Back",
  12018. image: {
  12019. source: "./media/characters/quincy/back.svg",
  12020. extra: 3041 / 2751
  12021. }
  12022. },
  12023. flying: {
  12024. height: math.unit(5 + 4 / 12, "feet"),
  12025. weight: math.unit(70, "lb"),
  12026. name: "Flying",
  12027. image: {
  12028. source: "./media/characters/quincy/flying.svg",
  12029. extra: 1044 / 930
  12030. }
  12031. },
  12032. },
  12033. [
  12034. {
  12035. name: "Micro",
  12036. height: math.unit(3, "cm")
  12037. },
  12038. {
  12039. name: "Normal",
  12040. height: math.unit(5 + 9 / 12, "feet")
  12041. },
  12042. {
  12043. name: "Macro",
  12044. height: math.unit(200, "meters"),
  12045. default: true
  12046. },
  12047. {
  12048. name: "Megamacro",
  12049. height: math.unit(1000, "meters")
  12050. },
  12051. ]
  12052. ))
  12053. characterMakers.push(() => makeCharacter(
  12054. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12055. {
  12056. front: {
  12057. height: math.unit(3 + 11/12, "feet"),
  12058. weight: math.unit(50, "lb"),
  12059. name: "Front",
  12060. image: {
  12061. source: "./media/characters/vanrel/front.svg",
  12062. extra: 1104/949,
  12063. bottom: 52/1156
  12064. }
  12065. },
  12066. back: {
  12067. height: math.unit(3 + 11/12, "feet"),
  12068. weight: math.unit(50, "lb"),
  12069. name: "Back",
  12070. image: {
  12071. source: "./media/characters/vanrel/back.svg",
  12072. extra: 1119/976,
  12073. bottom: 37/1156
  12074. }
  12075. },
  12076. tome: {
  12077. height: math.unit(1.35, "feet"),
  12078. weight: math.unit(10, "lb"),
  12079. name: "Vanrel's Tome",
  12080. rename: true,
  12081. image: {
  12082. source: "./media/characters/vanrel/tome.svg"
  12083. }
  12084. },
  12085. beans: {
  12086. height: math.unit(0.89, "feet"),
  12087. name: "Beans",
  12088. image: {
  12089. source: "./media/characters/vanrel/beans.svg"
  12090. }
  12091. },
  12092. },
  12093. [
  12094. {
  12095. name: "Normal",
  12096. height: math.unit(3 + 11/12, "feet"),
  12097. default: true
  12098. },
  12099. ]
  12100. ))
  12101. characterMakers.push(() => makeCharacter(
  12102. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12103. {
  12104. front: {
  12105. height: math.unit(7 + 5 / 12, "feet"),
  12106. name: "Front",
  12107. image: {
  12108. source: "./media/characters/kuiper-vanrel/front.svg",
  12109. extra: 1219/1169,
  12110. bottom: 69/1288
  12111. }
  12112. },
  12113. back: {
  12114. height: math.unit(7 + 5 / 12, "feet"),
  12115. name: "Back",
  12116. image: {
  12117. source: "./media/characters/kuiper-vanrel/back.svg",
  12118. extra: 1236/1193,
  12119. bottom: 27/1263
  12120. }
  12121. },
  12122. foot: {
  12123. height: math.unit(0.55, "meters"),
  12124. name: "Foot",
  12125. image: {
  12126. source: "./media/characters/kuiper-vanrel/foot.svg",
  12127. }
  12128. },
  12129. battle: {
  12130. height: math.unit(6.824, "feet"),
  12131. name: "Battle",
  12132. image: {
  12133. source: "./media/characters/kuiper-vanrel/battle.svg",
  12134. extra: 1466 / 1327,
  12135. bottom: 29 / 1492.5
  12136. }
  12137. },
  12138. meerkui: {
  12139. height: math.unit(18, "inches"),
  12140. name: "Meerkui",
  12141. image: {
  12142. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12143. extra: 1354/1289,
  12144. bottom: 69/1423
  12145. }
  12146. },
  12147. },
  12148. [
  12149. {
  12150. name: "Normal",
  12151. height: math.unit(7 + 5 / 12, "feet"),
  12152. default: true
  12153. },
  12154. ]
  12155. ))
  12156. characterMakers.push(() => makeCharacter(
  12157. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12158. {
  12159. front: {
  12160. height: math.unit(8 + 5 / 12, "feet"),
  12161. name: "Front",
  12162. image: {
  12163. source: "./media/characters/keset-vanrel/front.svg",
  12164. extra: 1231/1148,
  12165. bottom: 82/1313
  12166. }
  12167. },
  12168. back: {
  12169. height: math.unit(8 + 5 / 12, "feet"),
  12170. name: "Back",
  12171. image: {
  12172. source: "./media/characters/keset-vanrel/back.svg",
  12173. extra: 1240/1174,
  12174. bottom: 33/1273
  12175. }
  12176. },
  12177. hand: {
  12178. height: math.unit(0.6, "meters"),
  12179. name: "Hand",
  12180. image: {
  12181. source: "./media/characters/keset-vanrel/hand.svg"
  12182. }
  12183. },
  12184. foot: {
  12185. height: math.unit(0.94978, "meters"),
  12186. name: "Foot",
  12187. image: {
  12188. source: "./media/characters/keset-vanrel/foot.svg"
  12189. }
  12190. },
  12191. battle: {
  12192. height: math.unit(7.408, "feet"),
  12193. name: "Battle",
  12194. image: {
  12195. source: "./media/characters/keset-vanrel/battle.svg",
  12196. extra: 1890 / 1386,
  12197. bottom: 73.28 / 1970
  12198. }
  12199. },
  12200. },
  12201. [
  12202. {
  12203. name: "Normal",
  12204. height: math.unit(8 + 5 / 12, "feet"),
  12205. default: true
  12206. },
  12207. ]
  12208. ))
  12209. characterMakers.push(() => makeCharacter(
  12210. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12211. {
  12212. front: {
  12213. height: math.unit(6, "feet"),
  12214. weight: math.unit(150, "lb"),
  12215. name: "Front",
  12216. image: {
  12217. source: "./media/characters/neos/front.svg",
  12218. extra: 1696 / 992,
  12219. bottom: 0.14
  12220. }
  12221. },
  12222. },
  12223. [
  12224. {
  12225. name: "Normal",
  12226. height: math.unit(54, "cm"),
  12227. default: true
  12228. },
  12229. {
  12230. name: "Macro",
  12231. height: math.unit(100, "m")
  12232. },
  12233. {
  12234. name: "Megamacro",
  12235. height: math.unit(10, "km")
  12236. },
  12237. {
  12238. name: "Megamacro+",
  12239. height: math.unit(100, "km")
  12240. },
  12241. {
  12242. name: "Gigamacro",
  12243. height: math.unit(100, "Mm")
  12244. },
  12245. {
  12246. name: "Teramacro",
  12247. height: math.unit(100, "Gm")
  12248. },
  12249. {
  12250. name: "Examacro",
  12251. height: math.unit(100, "Em")
  12252. },
  12253. {
  12254. name: "Godly",
  12255. height: math.unit(10000, "Ym")
  12256. },
  12257. {
  12258. name: "Beyond Godly",
  12259. height: math.unit(25, "multiverses")
  12260. },
  12261. ]
  12262. ))
  12263. characterMakers.push(() => makeCharacter(
  12264. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12265. {
  12266. feminine: {
  12267. height: math.unit(5, "feet"),
  12268. weight: math.unit(100, "lb"),
  12269. name: "Feminine",
  12270. image: {
  12271. source: "./media/characters/sammy-mouse/feminine.svg",
  12272. extra: 2526 / 2425,
  12273. bottom: 0.123
  12274. }
  12275. },
  12276. masculine: {
  12277. height: math.unit(5, "feet"),
  12278. weight: math.unit(100, "lb"),
  12279. name: "Masculine",
  12280. image: {
  12281. source: "./media/characters/sammy-mouse/masculine.svg",
  12282. extra: 2526 / 2425,
  12283. bottom: 0.123
  12284. }
  12285. },
  12286. },
  12287. [
  12288. {
  12289. name: "Micro",
  12290. height: math.unit(5, "inches")
  12291. },
  12292. {
  12293. name: "Normal",
  12294. height: math.unit(5, "feet"),
  12295. default: true
  12296. },
  12297. {
  12298. name: "Macro",
  12299. height: math.unit(60, "feet")
  12300. },
  12301. ]
  12302. ))
  12303. characterMakers.push(() => makeCharacter(
  12304. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12305. {
  12306. front: {
  12307. height: math.unit(4, "feet"),
  12308. weight: math.unit(50, "lb"),
  12309. name: "Front",
  12310. image: {
  12311. source: "./media/characters/kole/front.svg",
  12312. extra: 1423 / 1303,
  12313. bottom: 0.025
  12314. }
  12315. },
  12316. back: {
  12317. height: math.unit(4, "feet"),
  12318. weight: math.unit(50, "lb"),
  12319. name: "Back",
  12320. image: {
  12321. source: "./media/characters/kole/back.svg",
  12322. extra: 1426 / 1280,
  12323. bottom: 0.02
  12324. }
  12325. },
  12326. },
  12327. [
  12328. {
  12329. name: "Normal",
  12330. height: math.unit(4, "feet"),
  12331. default: true
  12332. },
  12333. ]
  12334. ))
  12335. characterMakers.push(() => makeCharacter(
  12336. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12337. {
  12338. front: {
  12339. height: math.unit(2.5, "feet"),
  12340. weight: math.unit(32, "lb"),
  12341. name: "Front",
  12342. image: {
  12343. source: "./media/characters/rufran/front.svg",
  12344. extra: 1313/885,
  12345. bottom: 94/1407
  12346. }
  12347. },
  12348. side: {
  12349. height: math.unit(2.5, "feet"),
  12350. weight: math.unit(32, "lb"),
  12351. name: "Side",
  12352. image: {
  12353. source: "./media/characters/rufran/side.svg",
  12354. extra: 1109/852,
  12355. bottom: 118/1227
  12356. }
  12357. },
  12358. back: {
  12359. height: math.unit(2.5, "feet"),
  12360. weight: math.unit(32, "lb"),
  12361. name: "Back",
  12362. image: {
  12363. source: "./media/characters/rufran/back.svg",
  12364. extra: 1280/878,
  12365. bottom: 131/1411
  12366. }
  12367. },
  12368. mouth: {
  12369. height: math.unit(1.13, "feet"),
  12370. name: "Mouth",
  12371. image: {
  12372. source: "./media/characters/rufran/mouth.svg"
  12373. }
  12374. },
  12375. foot: {
  12376. height: math.unit(1.33, "feet"),
  12377. name: "Foot",
  12378. image: {
  12379. source: "./media/characters/rufran/foot.svg"
  12380. }
  12381. },
  12382. koboldFront: {
  12383. height: math.unit(2 + 6 / 12, "feet"),
  12384. weight: math.unit(20, "lb"),
  12385. name: "Front (Kobold)",
  12386. image: {
  12387. source: "./media/characters/rufran/kobold-front.svg",
  12388. extra: 2041 / 1839,
  12389. bottom: 0.055
  12390. }
  12391. },
  12392. koboldBack: {
  12393. height: math.unit(2 + 6 / 12, "feet"),
  12394. weight: math.unit(20, "lb"),
  12395. name: "Back (Kobold)",
  12396. image: {
  12397. source: "./media/characters/rufran/kobold-back.svg",
  12398. extra: 2054 / 1839,
  12399. bottom: 0.01
  12400. }
  12401. },
  12402. koboldHand: {
  12403. height: math.unit(0.2166, "meters"),
  12404. name: "Hand (Kobold)",
  12405. image: {
  12406. source: "./media/characters/rufran/kobold-hand.svg"
  12407. }
  12408. },
  12409. koboldFoot: {
  12410. height: math.unit(0.185, "meters"),
  12411. name: "Foot (Kobold)",
  12412. image: {
  12413. source: "./media/characters/rufran/kobold-foot.svg"
  12414. }
  12415. },
  12416. },
  12417. [
  12418. {
  12419. name: "Micro",
  12420. height: math.unit(1, "inch")
  12421. },
  12422. {
  12423. name: "Normal",
  12424. height: math.unit(2 + 6 / 12, "feet"),
  12425. default: true
  12426. },
  12427. {
  12428. name: "Big",
  12429. height: math.unit(60, "feet")
  12430. },
  12431. {
  12432. name: "Macro",
  12433. height: math.unit(325, "feet")
  12434. },
  12435. ]
  12436. ))
  12437. characterMakers.push(() => makeCharacter(
  12438. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12439. {
  12440. front: {
  12441. height: math.unit(0.3, "meters"),
  12442. weight: math.unit(3.5, "kg"),
  12443. name: "Front",
  12444. image: {
  12445. source: "./media/characters/chip/front.svg",
  12446. extra: 748 / 674
  12447. }
  12448. },
  12449. },
  12450. [
  12451. {
  12452. name: "Micro",
  12453. height: math.unit(1, "inch"),
  12454. default: true
  12455. },
  12456. ]
  12457. ))
  12458. characterMakers.push(() => makeCharacter(
  12459. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12460. {
  12461. side: {
  12462. height: math.unit(2.3, "meters"),
  12463. weight: math.unit(3500, "lb"),
  12464. name: "Side",
  12465. image: {
  12466. source: "./media/characters/torvid/side.svg",
  12467. extra: 1972 / 722,
  12468. bottom: 0.035
  12469. }
  12470. },
  12471. },
  12472. [
  12473. {
  12474. name: "Normal",
  12475. height: math.unit(2.3, "meters"),
  12476. default: true
  12477. },
  12478. ]
  12479. ))
  12480. characterMakers.push(() => makeCharacter(
  12481. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12482. {
  12483. front: {
  12484. height: math.unit(2, "meters"),
  12485. weight: math.unit(150.5, "kg"),
  12486. name: "Front",
  12487. image: {
  12488. source: "./media/characters/susan/front.svg",
  12489. extra: 693 / 635,
  12490. bottom: 0.05
  12491. }
  12492. },
  12493. },
  12494. [
  12495. {
  12496. name: "Megamacro",
  12497. height: math.unit(505, "miles"),
  12498. default: true
  12499. },
  12500. ]
  12501. ))
  12502. characterMakers.push(() => makeCharacter(
  12503. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12504. {
  12505. front: {
  12506. height: math.unit(6, "feet"),
  12507. weight: math.unit(150, "lb"),
  12508. name: "Front",
  12509. image: {
  12510. source: "./media/characters/raindrops/front.svg",
  12511. extra: 2655 / 2461,
  12512. bottom: 49 / 2705
  12513. }
  12514. },
  12515. back: {
  12516. height: math.unit(6, "feet"),
  12517. weight: math.unit(150, "lb"),
  12518. name: "Back",
  12519. image: {
  12520. source: "./media/characters/raindrops/back.svg",
  12521. extra: 2574 / 2400,
  12522. bottom: 65 / 2634
  12523. }
  12524. },
  12525. },
  12526. [
  12527. {
  12528. name: "Micro",
  12529. height: math.unit(6, "inches")
  12530. },
  12531. {
  12532. name: "Normal",
  12533. height: math.unit(6 + 2 / 12, "feet")
  12534. },
  12535. {
  12536. name: "Macro",
  12537. height: math.unit(131, "feet"),
  12538. default: true
  12539. },
  12540. {
  12541. name: "Megamacro",
  12542. height: math.unit(15, "miles")
  12543. },
  12544. {
  12545. name: "Gigamacro",
  12546. height: math.unit(4000, "miles")
  12547. },
  12548. {
  12549. name: "Teramacro",
  12550. height: math.unit(315000, "miles")
  12551. },
  12552. ]
  12553. ))
  12554. characterMakers.push(() => makeCharacter(
  12555. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12556. {
  12557. front: {
  12558. height: math.unit(2.794, "meters"),
  12559. weight: math.unit(325, "kg"),
  12560. name: "Front",
  12561. image: {
  12562. source: "./media/characters/tezwa/front.svg",
  12563. extra: 2083 / 1906,
  12564. bottom: 0.031
  12565. }
  12566. },
  12567. foot: {
  12568. height: math.unit(0.687, "meters"),
  12569. name: "Foot",
  12570. image: {
  12571. source: "./media/characters/tezwa/foot.svg"
  12572. }
  12573. },
  12574. },
  12575. [
  12576. {
  12577. name: "Normal",
  12578. height: math.unit(9 + 2 / 12, "feet"),
  12579. default: true
  12580. },
  12581. ]
  12582. ))
  12583. characterMakers.push(() => makeCharacter(
  12584. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12585. {
  12586. front: {
  12587. height: math.unit(58, "feet"),
  12588. weight: math.unit(89000, "lb"),
  12589. name: "Front",
  12590. image: {
  12591. source: "./media/characters/typhus/front.svg",
  12592. extra: 816 / 800,
  12593. bottom: 0.065
  12594. }
  12595. },
  12596. },
  12597. [
  12598. {
  12599. name: "Macro",
  12600. height: math.unit(58, "feet"),
  12601. default: true
  12602. },
  12603. ]
  12604. ))
  12605. characterMakers.push(() => makeCharacter(
  12606. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12607. {
  12608. front: {
  12609. height: math.unit(12, "feet"),
  12610. weight: math.unit(6, "tonnes"),
  12611. name: "Front",
  12612. image: {
  12613. source: "./media/characters/lyra-von-wulf/front.svg",
  12614. extra: 1,
  12615. bottom: 0.10
  12616. }
  12617. },
  12618. frontMecha: {
  12619. height: math.unit(12, "feet"),
  12620. weight: math.unit(12, "tonnes"),
  12621. name: "Front (Mecha)",
  12622. image: {
  12623. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12624. extra: 1,
  12625. bottom: 0.042
  12626. }
  12627. },
  12628. maw: {
  12629. height: math.unit(2.2, "feet"),
  12630. name: "Maw",
  12631. image: {
  12632. source: "./media/characters/lyra-von-wulf/maw.svg"
  12633. }
  12634. },
  12635. },
  12636. [
  12637. {
  12638. name: "Normal",
  12639. height: math.unit(12, "feet"),
  12640. default: true
  12641. },
  12642. {
  12643. name: "Classic",
  12644. height: math.unit(50, "feet")
  12645. },
  12646. {
  12647. name: "Macro",
  12648. height: math.unit(500, "feet")
  12649. },
  12650. {
  12651. name: "Megamacro",
  12652. height: math.unit(1, "mile")
  12653. },
  12654. {
  12655. name: "Gigamacro",
  12656. height: math.unit(400, "miles")
  12657. },
  12658. {
  12659. name: "Teramacro",
  12660. height: math.unit(22000, "miles")
  12661. },
  12662. {
  12663. name: "Solarmacro",
  12664. height: math.unit(8600000, "miles")
  12665. },
  12666. {
  12667. name: "Galactic",
  12668. height: math.unit(1057000, "lightyears")
  12669. },
  12670. ]
  12671. ))
  12672. characterMakers.push(() => makeCharacter(
  12673. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12674. {
  12675. front: {
  12676. height: math.unit(6 + 10 / 12, "feet"),
  12677. weight: math.unit(150, "lb"),
  12678. name: "Front",
  12679. image: {
  12680. source: "./media/characters/dixon/front.svg",
  12681. extra: 3361 / 3209,
  12682. bottom: 0.01
  12683. }
  12684. },
  12685. },
  12686. [
  12687. {
  12688. name: "Normal",
  12689. height: math.unit(6 + 10 / 12, "feet"),
  12690. default: true
  12691. },
  12692. {
  12693. name: "Big",
  12694. height: math.unit(12, "meters")
  12695. },
  12696. {
  12697. name: "Macro",
  12698. height: math.unit(500, "meters")
  12699. },
  12700. {
  12701. name: "Megamacro",
  12702. height: math.unit(2, "km")
  12703. },
  12704. ]
  12705. ))
  12706. characterMakers.push(() => makeCharacter(
  12707. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12708. {
  12709. front: {
  12710. height: math.unit(185, "cm"),
  12711. weight: math.unit(68, "kg"),
  12712. name: "Front",
  12713. image: {
  12714. source: "./media/characters/kauko/front.svg",
  12715. extra: 1455 / 1421,
  12716. bottom: 0.03
  12717. }
  12718. },
  12719. back: {
  12720. height: math.unit(185, "cm"),
  12721. weight: math.unit(68, "kg"),
  12722. name: "Back",
  12723. image: {
  12724. source: "./media/characters/kauko/back.svg",
  12725. extra: 1455 / 1421,
  12726. bottom: 0.004
  12727. }
  12728. },
  12729. },
  12730. [
  12731. {
  12732. name: "Normal",
  12733. height: math.unit(185, "cm"),
  12734. default: true
  12735. },
  12736. ]
  12737. ))
  12738. characterMakers.push(() => makeCharacter(
  12739. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12740. {
  12741. front: {
  12742. height: math.unit(6, "feet"),
  12743. weight: math.unit(150, "kg"),
  12744. name: "Front",
  12745. image: {
  12746. source: "./media/characters/varg/front.svg",
  12747. extra: 1108 / 1018,
  12748. bottom: 0.0375
  12749. }
  12750. },
  12751. },
  12752. [
  12753. {
  12754. name: "Normal",
  12755. height: math.unit(5, "meters")
  12756. },
  12757. {
  12758. name: "Macro",
  12759. height: math.unit(200, "meters")
  12760. },
  12761. {
  12762. name: "Megamacro",
  12763. height: math.unit(20, "kilometers")
  12764. },
  12765. {
  12766. name: "True Size",
  12767. height: math.unit(211, "km"),
  12768. default: true
  12769. },
  12770. {
  12771. name: "Gigamacro",
  12772. height: math.unit(1000, "km")
  12773. },
  12774. {
  12775. name: "Gigamacro+",
  12776. height: math.unit(8000, "km")
  12777. },
  12778. {
  12779. name: "Teramacro",
  12780. height: math.unit(1000000, "km")
  12781. },
  12782. ]
  12783. ))
  12784. characterMakers.push(() => makeCharacter(
  12785. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12786. {
  12787. front: {
  12788. height: math.unit(7 + 7 / 12, "feet"),
  12789. weight: math.unit(267, "lb"),
  12790. name: "Front",
  12791. image: {
  12792. source: "./media/characters/dayza/front.svg",
  12793. extra: 1262 / 1200,
  12794. bottom: 0.035
  12795. }
  12796. },
  12797. side: {
  12798. height: math.unit(7 + 7 / 12, "feet"),
  12799. weight: math.unit(267, "lb"),
  12800. name: "Side",
  12801. image: {
  12802. source: "./media/characters/dayza/side.svg",
  12803. extra: 1295 / 1245,
  12804. bottom: 0.05
  12805. }
  12806. },
  12807. back: {
  12808. height: math.unit(7 + 7 / 12, "feet"),
  12809. weight: math.unit(267, "lb"),
  12810. name: "Back",
  12811. image: {
  12812. source: "./media/characters/dayza/back.svg",
  12813. extra: 1241 / 1170
  12814. }
  12815. },
  12816. },
  12817. [
  12818. {
  12819. name: "Normal",
  12820. height: math.unit(7 + 7 / 12, "feet"),
  12821. default: true
  12822. },
  12823. {
  12824. name: "Macro",
  12825. height: math.unit(155, "feet")
  12826. },
  12827. ]
  12828. ))
  12829. characterMakers.push(() => makeCharacter(
  12830. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12831. {
  12832. front: {
  12833. height: math.unit(6 + 5 / 12, "feet"),
  12834. weight: math.unit(160, "lb"),
  12835. name: "Front",
  12836. image: {
  12837. source: "./media/characters/xanthos/front.svg",
  12838. extra: 1,
  12839. bottom: 0.04
  12840. }
  12841. },
  12842. back: {
  12843. height: math.unit(6 + 5 / 12, "feet"),
  12844. weight: math.unit(160, "lb"),
  12845. name: "Back",
  12846. image: {
  12847. source: "./media/characters/xanthos/back.svg",
  12848. extra: 1,
  12849. bottom: 0.03
  12850. }
  12851. },
  12852. hand: {
  12853. height: math.unit(0.928, "feet"),
  12854. name: "Hand",
  12855. image: {
  12856. source: "./media/characters/xanthos/hand.svg"
  12857. }
  12858. },
  12859. foot: {
  12860. height: math.unit(1.286, "feet"),
  12861. name: "Foot",
  12862. image: {
  12863. source: "./media/characters/xanthos/foot.svg"
  12864. }
  12865. },
  12866. },
  12867. [
  12868. {
  12869. name: "Normal",
  12870. height: math.unit(6 + 5 / 12, "feet"),
  12871. default: true
  12872. },
  12873. {
  12874. name: "Normal+",
  12875. height: math.unit(6, "meters")
  12876. },
  12877. {
  12878. name: "Macro",
  12879. height: math.unit(40, "feet")
  12880. },
  12881. {
  12882. name: "Macro+",
  12883. height: math.unit(200, "meters")
  12884. },
  12885. {
  12886. name: "Megamacro",
  12887. height: math.unit(20, "km")
  12888. },
  12889. {
  12890. name: "Megamacro+",
  12891. height: math.unit(100, "km")
  12892. },
  12893. {
  12894. name: "Gigamacro",
  12895. height: math.unit(200, "megameters")
  12896. },
  12897. {
  12898. name: "Gigamacro+",
  12899. height: math.unit(1.5, "gigameters")
  12900. },
  12901. ]
  12902. ))
  12903. characterMakers.push(() => makeCharacter(
  12904. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12905. {
  12906. front: {
  12907. height: math.unit(6 + 3 / 12, "feet"),
  12908. weight: math.unit(215, "lb"),
  12909. name: "Front",
  12910. image: {
  12911. source: "./media/characters/grynn/front.svg",
  12912. extra: 4627 / 4209,
  12913. bottom: 0.047
  12914. }
  12915. },
  12916. },
  12917. [
  12918. {
  12919. name: "Micro",
  12920. height: math.unit(6, "inches")
  12921. },
  12922. {
  12923. name: "Normal",
  12924. height: math.unit(6 + 3 / 12, "feet"),
  12925. default: true
  12926. },
  12927. {
  12928. name: "Big",
  12929. height: math.unit(104, "feet")
  12930. },
  12931. {
  12932. name: "Macro",
  12933. height: math.unit(944, "feet")
  12934. },
  12935. {
  12936. name: "Macro+",
  12937. height: math.unit(9480, "feet")
  12938. },
  12939. {
  12940. name: "Megamacro",
  12941. height: math.unit(78752, "feet")
  12942. },
  12943. {
  12944. name: "Megamacro+",
  12945. height: math.unit(630128, "feet")
  12946. },
  12947. {
  12948. name: "Megamacro++",
  12949. height: math.unit(3150695, "feet")
  12950. },
  12951. ]
  12952. ))
  12953. characterMakers.push(() => makeCharacter(
  12954. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12955. {
  12956. front: {
  12957. height: math.unit(7 + 5 / 12, "feet"),
  12958. weight: math.unit(450, "lb"),
  12959. name: "Front",
  12960. image: {
  12961. source: "./media/characters/mocha-aura/front.svg",
  12962. extra: 1907 / 1817,
  12963. bottom: 0.04
  12964. }
  12965. },
  12966. back: {
  12967. height: math.unit(7 + 5 / 12, "feet"),
  12968. weight: math.unit(450, "lb"),
  12969. name: "Back",
  12970. image: {
  12971. source: "./media/characters/mocha-aura/back.svg",
  12972. extra: 1900 / 1825,
  12973. bottom: 0.045
  12974. }
  12975. },
  12976. },
  12977. [
  12978. {
  12979. name: "Nano",
  12980. height: math.unit(1, "nm")
  12981. },
  12982. {
  12983. name: "Megamicro",
  12984. height: math.unit(1, "mm")
  12985. },
  12986. {
  12987. name: "Micro",
  12988. height: math.unit(3, "inches")
  12989. },
  12990. {
  12991. name: "Normal",
  12992. height: math.unit(7 + 5 / 12, "feet"),
  12993. default: true
  12994. },
  12995. {
  12996. name: "Macro",
  12997. height: math.unit(30, "feet")
  12998. },
  12999. {
  13000. name: "Megamacro",
  13001. height: math.unit(3500, "feet")
  13002. },
  13003. {
  13004. name: "Teramacro",
  13005. height: math.unit(500000, "miles")
  13006. },
  13007. {
  13008. name: "Petamacro",
  13009. height: math.unit(50000000000000000, "parsecs")
  13010. },
  13011. ]
  13012. ))
  13013. characterMakers.push(() => makeCharacter(
  13014. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13015. {
  13016. front: {
  13017. height: math.unit(6, "feet"),
  13018. weight: math.unit(150, "lb"),
  13019. name: "Front",
  13020. image: {
  13021. source: "./media/characters/ilisha-devya/front.svg",
  13022. extra: 1,
  13023. bottom: 0.175
  13024. }
  13025. },
  13026. back: {
  13027. height: math.unit(6, "feet"),
  13028. weight: math.unit(150, "lb"),
  13029. name: "Back",
  13030. image: {
  13031. source: "./media/characters/ilisha-devya/back.svg",
  13032. extra: 1,
  13033. bottom: 0.015
  13034. }
  13035. },
  13036. },
  13037. [
  13038. {
  13039. name: "Macro",
  13040. height: math.unit(500, "feet"),
  13041. default: true
  13042. },
  13043. {
  13044. name: "Megamacro",
  13045. height: math.unit(10, "miles")
  13046. },
  13047. {
  13048. name: "Gigamacro",
  13049. height: math.unit(100000, "miles")
  13050. },
  13051. {
  13052. name: "Examacro",
  13053. height: math.unit(1e9, "lightyears")
  13054. },
  13055. {
  13056. name: "Omniversal",
  13057. height: math.unit(1e33, "lightyears")
  13058. },
  13059. {
  13060. name: "Beyond Infinite",
  13061. height: math.unit(1e100, "lightyears")
  13062. },
  13063. ]
  13064. ))
  13065. characterMakers.push(() => makeCharacter(
  13066. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13067. {
  13068. Side: {
  13069. height: math.unit(6, "feet"),
  13070. weight: math.unit(150, "lb"),
  13071. name: "Side",
  13072. image: {
  13073. source: "./media/characters/mira/side.svg",
  13074. extra: 900 / 799,
  13075. bottom: 0.02
  13076. }
  13077. },
  13078. },
  13079. [
  13080. {
  13081. name: "Human Size",
  13082. height: math.unit(6, "feet")
  13083. },
  13084. {
  13085. name: "Macro",
  13086. height: math.unit(100, "feet"),
  13087. default: true
  13088. },
  13089. {
  13090. name: "Megamacro",
  13091. height: math.unit(10, "miles")
  13092. },
  13093. {
  13094. name: "Gigamacro",
  13095. height: math.unit(25000, "miles")
  13096. },
  13097. {
  13098. name: "Teramacro",
  13099. height: math.unit(300, "AU")
  13100. },
  13101. {
  13102. name: "Full Size",
  13103. height: math.unit(4.5e10, "lightyears")
  13104. },
  13105. ]
  13106. ))
  13107. characterMakers.push(() => makeCharacter(
  13108. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13109. {
  13110. front: {
  13111. height: math.unit(6, "feet"),
  13112. weight: math.unit(150, "lb"),
  13113. name: "Front",
  13114. image: {
  13115. source: "./media/characters/holly/front.svg",
  13116. extra: 639 / 606
  13117. }
  13118. },
  13119. back: {
  13120. height: math.unit(6, "feet"),
  13121. weight: math.unit(150, "lb"),
  13122. name: "Back",
  13123. image: {
  13124. source: "./media/characters/holly/back.svg",
  13125. extra: 623 / 598
  13126. }
  13127. },
  13128. frontWorking: {
  13129. height: math.unit(6, "feet"),
  13130. weight: math.unit(150, "lb"),
  13131. name: "Front (Working)",
  13132. image: {
  13133. source: "./media/characters/holly/front-working.svg",
  13134. extra: 607 / 577,
  13135. bottom: 0.048
  13136. }
  13137. },
  13138. },
  13139. [
  13140. {
  13141. name: "Normal",
  13142. height: math.unit(12 + 3 / 12, "feet"),
  13143. default: true
  13144. },
  13145. ]
  13146. ))
  13147. characterMakers.push(() => makeCharacter(
  13148. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13149. {
  13150. front: {
  13151. height: math.unit(6, "feet"),
  13152. weight: math.unit(150, "lb"),
  13153. name: "Front",
  13154. image: {
  13155. source: "./media/characters/porter/front.svg",
  13156. extra: 1,
  13157. bottom: 0.01
  13158. }
  13159. },
  13160. frontRobes: {
  13161. height: math.unit(6, "feet"),
  13162. weight: math.unit(150, "lb"),
  13163. name: "Front (Robes)",
  13164. image: {
  13165. source: "./media/characters/porter/front-robes.svg",
  13166. extra: 1.01,
  13167. bottom: 0.01
  13168. }
  13169. },
  13170. },
  13171. [
  13172. {
  13173. name: "Normal",
  13174. height: math.unit(11 + 9 / 12, "feet"),
  13175. default: true
  13176. },
  13177. ]
  13178. ))
  13179. characterMakers.push(() => makeCharacter(
  13180. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13181. {
  13182. legendary: {
  13183. height: math.unit(6, "feet"),
  13184. weight: math.unit(150, "lb"),
  13185. name: "Legendary",
  13186. image: {
  13187. source: "./media/characters/lucy/legendary.svg",
  13188. extra: 1355 / 1100,
  13189. bottom: 0.045
  13190. }
  13191. },
  13192. },
  13193. [
  13194. {
  13195. name: "Legendary",
  13196. height: math.unit(86882 * 2, "miles"),
  13197. default: true
  13198. },
  13199. ]
  13200. ))
  13201. characterMakers.push(() => makeCharacter(
  13202. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13203. {
  13204. front: {
  13205. height: math.unit(6, "feet"),
  13206. weight: math.unit(150, "lb"),
  13207. name: "Front",
  13208. image: {
  13209. source: "./media/characters/drusilla/front.svg",
  13210. extra: 678 / 635,
  13211. bottom: 0.03
  13212. }
  13213. },
  13214. back: {
  13215. height: math.unit(6, "feet"),
  13216. weight: math.unit(150, "lb"),
  13217. name: "Back",
  13218. image: {
  13219. source: "./media/characters/drusilla/back.svg",
  13220. extra: 678 / 635,
  13221. bottom: 0.005
  13222. }
  13223. },
  13224. },
  13225. [
  13226. {
  13227. name: "Macro",
  13228. height: math.unit(100, "feet")
  13229. },
  13230. {
  13231. name: "Canon Height",
  13232. height: math.unit(2000, "feet"),
  13233. default: true
  13234. },
  13235. ]
  13236. ))
  13237. characterMakers.push(() => makeCharacter(
  13238. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13239. {
  13240. front: {
  13241. height: math.unit(6, "feet"),
  13242. weight: math.unit(180, "lb"),
  13243. name: "Front",
  13244. image: {
  13245. source: "./media/characters/renard-thatch/front.svg",
  13246. extra: 2411 / 2275,
  13247. bottom: 0.01
  13248. }
  13249. },
  13250. frontPosing: {
  13251. height: math.unit(6, "feet"),
  13252. weight: math.unit(180, "lb"),
  13253. name: "Front (Posing)",
  13254. image: {
  13255. source: "./media/characters/renard-thatch/front-posing.svg",
  13256. extra: 2381 / 2261,
  13257. bottom: 0.01
  13258. }
  13259. },
  13260. back: {
  13261. height: math.unit(6, "feet"),
  13262. weight: math.unit(180, "lb"),
  13263. name: "Back",
  13264. image: {
  13265. source: "./media/characters/renard-thatch/back.svg",
  13266. extra: 2428 / 2288
  13267. }
  13268. },
  13269. },
  13270. [
  13271. {
  13272. name: "Micro",
  13273. height: math.unit(3, "inches")
  13274. },
  13275. {
  13276. name: "Default",
  13277. height: math.unit(6, "feet"),
  13278. default: true
  13279. },
  13280. {
  13281. name: "Macro",
  13282. height: math.unit(75, "feet")
  13283. },
  13284. ]
  13285. ))
  13286. characterMakers.push(() => makeCharacter(
  13287. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13288. {
  13289. front: {
  13290. height: math.unit(1450, "feet"),
  13291. weight: math.unit(1.21e6, "tons"),
  13292. name: "Front",
  13293. image: {
  13294. source: "./media/characters/sekvra/front.svg",
  13295. extra: 1,
  13296. bottom: 0.03
  13297. }
  13298. },
  13299. frontClothed: {
  13300. height: math.unit(1450, "feet"),
  13301. weight: math.unit(1.21e6, "tons"),
  13302. name: "Front (Clothed)",
  13303. image: {
  13304. source: "./media/characters/sekvra/front-clothed.svg",
  13305. extra: 1,
  13306. bottom: 0.03
  13307. }
  13308. },
  13309. side: {
  13310. height: math.unit(1450, "feet"),
  13311. weight: math.unit(1.21e6, "tons"),
  13312. name: "Side",
  13313. image: {
  13314. source: "./media/characters/sekvra/side.svg",
  13315. extra: 1,
  13316. bottom: 0.025
  13317. }
  13318. },
  13319. back: {
  13320. height: math.unit(1450, "feet"),
  13321. weight: math.unit(1.21e6, "tons"),
  13322. name: "Back",
  13323. image: {
  13324. source: "./media/characters/sekvra/back.svg",
  13325. extra: 1,
  13326. bottom: 0.005
  13327. }
  13328. },
  13329. },
  13330. [
  13331. {
  13332. name: "Macro",
  13333. height: math.unit(1450, "feet"),
  13334. default: true
  13335. },
  13336. {
  13337. name: "Megamacro",
  13338. height: math.unit(15000, "feet")
  13339. },
  13340. ]
  13341. ))
  13342. characterMakers.push(() => makeCharacter(
  13343. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13344. {
  13345. front: {
  13346. height: math.unit(6, "feet"),
  13347. weight: math.unit(150, "lb"),
  13348. name: "Front",
  13349. image: {
  13350. source: "./media/characters/carmine/front.svg",
  13351. extra: 1,
  13352. bottom: 0.035
  13353. }
  13354. },
  13355. frontArmor: {
  13356. height: math.unit(6, "feet"),
  13357. weight: math.unit(150, "lb"),
  13358. name: "Front (Armor)",
  13359. image: {
  13360. source: "./media/characters/carmine/front-armor.svg",
  13361. extra: 1,
  13362. bottom: 0.035
  13363. }
  13364. },
  13365. },
  13366. [
  13367. {
  13368. name: "Large",
  13369. height: math.unit(1, "mile")
  13370. },
  13371. {
  13372. name: "Huge",
  13373. height: math.unit(40, "miles"),
  13374. default: true
  13375. },
  13376. {
  13377. name: "Colossal",
  13378. height: math.unit(2500, "miles")
  13379. },
  13380. ]
  13381. ))
  13382. characterMakers.push(() => makeCharacter(
  13383. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13384. {
  13385. front: {
  13386. height: math.unit(6, "feet"),
  13387. weight: math.unit(150, "lb"),
  13388. name: "Front",
  13389. image: {
  13390. source: "./media/characters/elyssia/front.svg",
  13391. extra: 2201 / 2035,
  13392. bottom: 0.05
  13393. }
  13394. },
  13395. frontClothed: {
  13396. height: math.unit(6, "feet"),
  13397. weight: math.unit(150, "lb"),
  13398. name: "Front (Clothed)",
  13399. image: {
  13400. source: "./media/characters/elyssia/front-clothed.svg",
  13401. extra: 2201 / 2035,
  13402. bottom: 0.05
  13403. }
  13404. },
  13405. back: {
  13406. height: math.unit(6, "feet"),
  13407. weight: math.unit(150, "lb"),
  13408. name: "Back",
  13409. image: {
  13410. source: "./media/characters/elyssia/back.svg",
  13411. extra: 2201 / 2035,
  13412. bottom: 0.013
  13413. }
  13414. },
  13415. },
  13416. [
  13417. {
  13418. name: "Smaller",
  13419. height: math.unit(150, "feet")
  13420. },
  13421. {
  13422. name: "Standard",
  13423. height: math.unit(1400, "feet"),
  13424. default: true
  13425. },
  13426. {
  13427. name: "Distracted",
  13428. height: math.unit(15000, "feet")
  13429. },
  13430. ]
  13431. ))
  13432. characterMakers.push(() => makeCharacter(
  13433. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13434. {
  13435. front: {
  13436. height: math.unit(7 + 4 / 12, "feet"),
  13437. weight: math.unit(500, "lb"),
  13438. name: "Front",
  13439. image: {
  13440. source: "./media/characters/geno-maxwell/front.svg",
  13441. extra: 2207 / 2040,
  13442. bottom: 0.015
  13443. }
  13444. },
  13445. },
  13446. [
  13447. {
  13448. name: "Micro",
  13449. height: math.unit(3, "inches")
  13450. },
  13451. {
  13452. name: "Normal",
  13453. height: math.unit(7 + 4 / 12, "feet"),
  13454. default: true
  13455. },
  13456. {
  13457. name: "Macro",
  13458. height: math.unit(220, "feet")
  13459. },
  13460. {
  13461. name: "Megamacro",
  13462. height: math.unit(11, "miles")
  13463. },
  13464. ]
  13465. ))
  13466. characterMakers.push(() => makeCharacter(
  13467. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13468. {
  13469. front: {
  13470. height: math.unit(7 + 4 / 12, "feet"),
  13471. weight: math.unit(500, "lb"),
  13472. name: "Front",
  13473. image: {
  13474. source: "./media/characters/regena-maxwell/front.svg",
  13475. extra: 3115 / 2770,
  13476. bottom: 0.02
  13477. }
  13478. },
  13479. },
  13480. [
  13481. {
  13482. name: "Normal",
  13483. height: math.unit(7 + 4 / 12, "feet"),
  13484. default: true
  13485. },
  13486. {
  13487. name: "Macro",
  13488. height: math.unit(220, "feet")
  13489. },
  13490. {
  13491. name: "Megamacro",
  13492. height: math.unit(11, "miles")
  13493. },
  13494. ]
  13495. ))
  13496. characterMakers.push(() => makeCharacter(
  13497. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13498. {
  13499. front: {
  13500. height: math.unit(6, "feet"),
  13501. weight: math.unit(150, "lb"),
  13502. name: "Front",
  13503. image: {
  13504. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13505. extra: 860 / 690,
  13506. bottom: 0.03
  13507. }
  13508. },
  13509. },
  13510. [
  13511. {
  13512. name: "Normal",
  13513. height: math.unit(1.7, "meters"),
  13514. default: true
  13515. },
  13516. ]
  13517. ))
  13518. characterMakers.push(() => makeCharacter(
  13519. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13520. {
  13521. front: {
  13522. height: math.unit(6, "feet"),
  13523. weight: math.unit(150, "lb"),
  13524. name: "Front",
  13525. image: {
  13526. source: "./media/characters/quilly/front.svg",
  13527. extra: 890 / 776
  13528. }
  13529. },
  13530. },
  13531. [
  13532. {
  13533. name: "Gigamacro",
  13534. height: math.unit(404090, "miles"),
  13535. default: true
  13536. },
  13537. ]
  13538. ))
  13539. characterMakers.push(() => makeCharacter(
  13540. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13541. {
  13542. front: {
  13543. height: math.unit(7 + 8 / 12, "feet"),
  13544. weight: math.unit(350, "lb"),
  13545. name: "Front",
  13546. image: {
  13547. source: "./media/characters/tempest/front.svg",
  13548. extra: 1175 / 1086,
  13549. bottom: 0.02
  13550. }
  13551. },
  13552. },
  13553. [
  13554. {
  13555. name: "Normal",
  13556. height: math.unit(7 + 8 / 12, "feet"),
  13557. default: true
  13558. },
  13559. ]
  13560. ))
  13561. characterMakers.push(() => makeCharacter(
  13562. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13563. {
  13564. side: {
  13565. height: math.unit(4 + 5 / 12, "feet"),
  13566. weight: math.unit(80, "lb"),
  13567. name: "Side",
  13568. image: {
  13569. source: "./media/characters/rodger/side.svg",
  13570. extra: 1235 / 1118
  13571. }
  13572. },
  13573. },
  13574. [
  13575. {
  13576. name: "Micro",
  13577. height: math.unit(1, "inch")
  13578. },
  13579. {
  13580. name: "Normal",
  13581. height: math.unit(4 + 5 / 12, "feet"),
  13582. default: true
  13583. },
  13584. {
  13585. name: "Macro",
  13586. height: math.unit(120, "feet")
  13587. },
  13588. ]
  13589. ))
  13590. characterMakers.push(() => makeCharacter(
  13591. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13592. {
  13593. front: {
  13594. height: math.unit(6, "feet"),
  13595. weight: math.unit(150, "lb"),
  13596. name: "Front",
  13597. image: {
  13598. source: "./media/characters/danyel/front.svg",
  13599. extra: 1185 / 1123,
  13600. bottom: 0.05
  13601. }
  13602. },
  13603. },
  13604. [
  13605. {
  13606. name: "Shrunken",
  13607. height: math.unit(0.5, "mm")
  13608. },
  13609. {
  13610. name: "Micro",
  13611. height: math.unit(1, "mm"),
  13612. default: true
  13613. },
  13614. {
  13615. name: "Upsized",
  13616. height: math.unit(5 + 5 / 12, "feet")
  13617. },
  13618. ]
  13619. ))
  13620. characterMakers.push(() => makeCharacter(
  13621. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13622. {
  13623. front: {
  13624. height: math.unit(5 + 6 / 12, "feet"),
  13625. weight: math.unit(200, "lb"),
  13626. name: "Front",
  13627. image: {
  13628. source: "./media/characters/vivian-bijoux/front.svg",
  13629. extra: 1,
  13630. bottom: 0.072
  13631. }
  13632. },
  13633. },
  13634. [
  13635. {
  13636. name: "Normal",
  13637. height: math.unit(5 + 6 / 12, "feet"),
  13638. default: true
  13639. },
  13640. {
  13641. name: "Bad Dream",
  13642. height: math.unit(500, "feet")
  13643. },
  13644. {
  13645. name: "Nightmare",
  13646. height: math.unit(500, "miles")
  13647. },
  13648. ]
  13649. ))
  13650. characterMakers.push(() => makeCharacter(
  13651. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13652. {
  13653. front: {
  13654. height: math.unit(6 + 1 / 12, "feet"),
  13655. weight: math.unit(260, "lb"),
  13656. name: "Front",
  13657. image: {
  13658. source: "./media/characters/zeta/front.svg",
  13659. extra: 1968 / 1889,
  13660. bottom: 0.06
  13661. }
  13662. },
  13663. back: {
  13664. height: math.unit(6 + 1 / 12, "feet"),
  13665. weight: math.unit(260, "lb"),
  13666. name: "Back",
  13667. image: {
  13668. source: "./media/characters/zeta/back.svg",
  13669. extra: 1944 / 1858,
  13670. bottom: 0.03
  13671. }
  13672. },
  13673. hand: {
  13674. height: math.unit(1.112, "feet"),
  13675. name: "Hand",
  13676. image: {
  13677. source: "./media/characters/zeta/hand.svg"
  13678. }
  13679. },
  13680. foot: {
  13681. height: math.unit(1.48, "feet"),
  13682. name: "Foot",
  13683. image: {
  13684. source: "./media/characters/zeta/foot.svg"
  13685. }
  13686. },
  13687. },
  13688. [
  13689. {
  13690. name: "Micro",
  13691. height: math.unit(6, "inches")
  13692. },
  13693. {
  13694. name: "Normal",
  13695. height: math.unit(6 + 1 / 12, "feet"),
  13696. default: true
  13697. },
  13698. {
  13699. name: "Macro",
  13700. height: math.unit(20, "feet")
  13701. },
  13702. ]
  13703. ))
  13704. characterMakers.push(() => makeCharacter(
  13705. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13706. {
  13707. front: {
  13708. height: math.unit(6, "feet"),
  13709. weight: math.unit(150, "lb"),
  13710. name: "Front",
  13711. image: {
  13712. source: "./media/characters/jamie-larsen/front.svg",
  13713. extra: 962 / 933,
  13714. bottom: 0.02
  13715. }
  13716. },
  13717. back: {
  13718. height: math.unit(6, "feet"),
  13719. weight: math.unit(150, "lb"),
  13720. name: "Back",
  13721. image: {
  13722. source: "./media/characters/jamie-larsen/back.svg",
  13723. extra: 997 / 946
  13724. }
  13725. },
  13726. },
  13727. [
  13728. {
  13729. name: "Macro",
  13730. height: math.unit(28 + 7 / 12, "feet"),
  13731. default: true
  13732. },
  13733. {
  13734. name: "Macro+",
  13735. height: math.unit(180, "feet")
  13736. },
  13737. {
  13738. name: "Megamacro",
  13739. height: math.unit(10, "miles")
  13740. },
  13741. {
  13742. name: "Gigamacro",
  13743. height: math.unit(200000, "miles")
  13744. },
  13745. ]
  13746. ))
  13747. characterMakers.push(() => makeCharacter(
  13748. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13749. {
  13750. front: {
  13751. height: math.unit(6, "feet"),
  13752. weight: math.unit(120, "lb"),
  13753. name: "Front",
  13754. image: {
  13755. source: "./media/characters/vance/front.svg",
  13756. extra: 1980 / 1890,
  13757. bottom: 0.09
  13758. }
  13759. },
  13760. back: {
  13761. height: math.unit(6, "feet"),
  13762. weight: math.unit(120, "lb"),
  13763. name: "Back",
  13764. image: {
  13765. source: "./media/characters/vance/back.svg",
  13766. extra: 2081 / 1994,
  13767. bottom: 0.014
  13768. }
  13769. },
  13770. hand: {
  13771. height: math.unit(0.88, "feet"),
  13772. name: "Hand",
  13773. image: {
  13774. source: "./media/characters/vance/hand.svg"
  13775. }
  13776. },
  13777. foot: {
  13778. height: math.unit(0.64, "feet"),
  13779. name: "Foot",
  13780. image: {
  13781. source: "./media/characters/vance/foot.svg"
  13782. }
  13783. },
  13784. },
  13785. [
  13786. {
  13787. name: "Small",
  13788. height: math.unit(90, "feet"),
  13789. default: true
  13790. },
  13791. {
  13792. name: "Macro",
  13793. height: math.unit(100, "meters")
  13794. },
  13795. {
  13796. name: "Megamacro",
  13797. height: math.unit(15, "miles")
  13798. },
  13799. ]
  13800. ))
  13801. characterMakers.push(() => makeCharacter(
  13802. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13803. {
  13804. front: {
  13805. height: math.unit(6, "feet"),
  13806. weight: math.unit(180, "lb"),
  13807. name: "Front",
  13808. image: {
  13809. source: "./media/characters/xochitl/front.svg",
  13810. extra: 2297 / 2261,
  13811. bottom: 0.065
  13812. }
  13813. },
  13814. back: {
  13815. height: math.unit(6, "feet"),
  13816. weight: math.unit(180, "lb"),
  13817. name: "Back",
  13818. image: {
  13819. source: "./media/characters/xochitl/back.svg",
  13820. extra: 2386 / 2354,
  13821. bottom: 0.01
  13822. }
  13823. },
  13824. foot: {
  13825. height: math.unit(6 / 5 * 1.15, "feet"),
  13826. weight: math.unit(150, "lb"),
  13827. name: "Foot",
  13828. image: {
  13829. source: "./media/characters/xochitl/foot.svg"
  13830. }
  13831. },
  13832. },
  13833. [
  13834. {
  13835. name: "Macro",
  13836. height: math.unit(80, "feet")
  13837. },
  13838. {
  13839. name: "Macro+",
  13840. height: math.unit(400, "feet"),
  13841. default: true
  13842. },
  13843. {
  13844. name: "Gigamacro",
  13845. height: math.unit(80000, "miles")
  13846. },
  13847. {
  13848. name: "Gigamacro+",
  13849. height: math.unit(400000, "miles")
  13850. },
  13851. {
  13852. name: "Teramacro",
  13853. height: math.unit(300, "AU")
  13854. },
  13855. ]
  13856. ))
  13857. characterMakers.push(() => makeCharacter(
  13858. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13859. {
  13860. front: {
  13861. height: math.unit(6, "feet"),
  13862. weight: math.unit(150, "lb"),
  13863. name: "Front",
  13864. image: {
  13865. source: "./media/characters/vincent/front.svg",
  13866. extra: 1130 / 1080,
  13867. bottom: 0.055
  13868. }
  13869. },
  13870. beak: {
  13871. height: math.unit(6 * 0.1, "feet"),
  13872. name: "Beak",
  13873. image: {
  13874. source: "./media/characters/vincent/beak.svg"
  13875. }
  13876. },
  13877. hand: {
  13878. height: math.unit(6 * 0.85, "feet"),
  13879. weight: math.unit(150, "lb"),
  13880. name: "Hand",
  13881. image: {
  13882. source: "./media/characters/vincent/hand.svg"
  13883. }
  13884. },
  13885. foot: {
  13886. height: math.unit(6 * 0.19, "feet"),
  13887. weight: math.unit(150, "lb"),
  13888. name: "Foot",
  13889. image: {
  13890. source: "./media/characters/vincent/foot.svg"
  13891. }
  13892. },
  13893. },
  13894. [
  13895. {
  13896. name: "Base",
  13897. height: math.unit(6 + 5 / 12, "feet"),
  13898. default: true
  13899. },
  13900. {
  13901. name: "Macro",
  13902. height: math.unit(300, "feet")
  13903. },
  13904. {
  13905. name: "Megamacro",
  13906. height: math.unit(2, "miles")
  13907. },
  13908. {
  13909. name: "Gigamacro",
  13910. height: math.unit(1000, "miles")
  13911. },
  13912. ]
  13913. ))
  13914. characterMakers.push(() => makeCharacter(
  13915. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13916. {
  13917. front: {
  13918. height: math.unit(2, "meters"),
  13919. weight: math.unit(500, "kg"),
  13920. name: "Front",
  13921. image: {
  13922. source: "./media/characters/coatl/front.svg",
  13923. extra: 3948 / 3500,
  13924. bottom: 0.082
  13925. }
  13926. },
  13927. },
  13928. [
  13929. {
  13930. name: "Normal",
  13931. height: math.unit(4, "meters")
  13932. },
  13933. {
  13934. name: "Macro",
  13935. height: math.unit(100, "meters"),
  13936. default: true
  13937. },
  13938. {
  13939. name: "Macro+",
  13940. height: math.unit(300, "meters")
  13941. },
  13942. {
  13943. name: "Megamacro",
  13944. height: math.unit(3, "gigameters")
  13945. },
  13946. {
  13947. name: "Megamacro+",
  13948. height: math.unit(300, "terameters")
  13949. },
  13950. {
  13951. name: "Megamacro++",
  13952. height: math.unit(3, "lightyears")
  13953. },
  13954. ]
  13955. ))
  13956. characterMakers.push(() => makeCharacter(
  13957. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13958. {
  13959. front: {
  13960. height: math.unit(6, "feet"),
  13961. weight: math.unit(50, "kg"),
  13962. name: "front",
  13963. image: {
  13964. source: "./media/characters/shiroryu/front.svg",
  13965. extra: 1990 / 1935
  13966. }
  13967. },
  13968. },
  13969. [
  13970. {
  13971. name: "Mortal Mingling",
  13972. height: math.unit(3, "meters")
  13973. },
  13974. {
  13975. name: "Kaiju-ish",
  13976. height: math.unit(250, "meters")
  13977. },
  13978. {
  13979. name: "Somewhat Godly",
  13980. height: math.unit(400, "km"),
  13981. default: true
  13982. },
  13983. {
  13984. name: "Planetary",
  13985. height: math.unit(300, "megameters")
  13986. },
  13987. {
  13988. name: "Galaxy-dwarfing",
  13989. height: math.unit(450, "kiloparsecs")
  13990. },
  13991. {
  13992. name: "Universe Eater",
  13993. height: math.unit(150, "gigaparsecs")
  13994. },
  13995. {
  13996. name: "Almost Immeasurable",
  13997. height: math.unit(1.3e266, "yottaparsecs")
  13998. },
  13999. ]
  14000. ))
  14001. characterMakers.push(() => makeCharacter(
  14002. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14003. {
  14004. front: {
  14005. height: math.unit(6, "feet"),
  14006. weight: math.unit(150, "lb"),
  14007. name: "Front",
  14008. image: {
  14009. source: "./media/characters/umeko/front.svg",
  14010. extra: 1,
  14011. bottom: 0.019
  14012. }
  14013. },
  14014. frontArmored: {
  14015. height: math.unit(6, "feet"),
  14016. weight: math.unit(150, "lb"),
  14017. name: "Front (Armored)",
  14018. image: {
  14019. source: "./media/characters/umeko/front-armored.svg",
  14020. extra: 1,
  14021. bottom: 0.021
  14022. }
  14023. },
  14024. },
  14025. [
  14026. {
  14027. name: "Macro",
  14028. height: math.unit(220, "feet"),
  14029. default: true
  14030. },
  14031. {
  14032. name: "Guardian Dragon",
  14033. height: math.unit(50, "miles")
  14034. },
  14035. {
  14036. name: "Cosmic",
  14037. height: math.unit(800000, "miles")
  14038. },
  14039. ]
  14040. ))
  14041. characterMakers.push(() => makeCharacter(
  14042. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14043. {
  14044. front: {
  14045. height: math.unit(6, "feet"),
  14046. weight: math.unit(150, "lb"),
  14047. name: "Front",
  14048. image: {
  14049. source: "./media/characters/cassidy/front.svg",
  14050. extra: 1,
  14051. bottom: 0.043
  14052. }
  14053. },
  14054. },
  14055. [
  14056. {
  14057. name: "Canon Height",
  14058. height: math.unit(120, "feet"),
  14059. default: true
  14060. },
  14061. {
  14062. name: "Macro+",
  14063. height: math.unit(400, "feet")
  14064. },
  14065. {
  14066. name: "Macro++",
  14067. height: math.unit(4000, "feet")
  14068. },
  14069. {
  14070. name: "Megamacro",
  14071. height: math.unit(3, "miles")
  14072. },
  14073. ]
  14074. ))
  14075. characterMakers.push(() => makeCharacter(
  14076. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14077. {
  14078. front: {
  14079. height: math.unit(6, "feet"),
  14080. weight: math.unit(150, "lb"),
  14081. name: "Front",
  14082. image: {
  14083. source: "./media/characters/isaac/front.svg",
  14084. extra: 896 / 815,
  14085. bottom: 0.11
  14086. }
  14087. },
  14088. },
  14089. [
  14090. {
  14091. name: "Human Size",
  14092. height: math.unit(8, "feet"),
  14093. default: true
  14094. },
  14095. {
  14096. name: "Macro",
  14097. height: math.unit(400, "feet")
  14098. },
  14099. {
  14100. name: "Megamacro",
  14101. height: math.unit(50, "miles")
  14102. },
  14103. {
  14104. name: "Canon Height",
  14105. height: math.unit(200, "AU")
  14106. },
  14107. ]
  14108. ))
  14109. characterMakers.push(() => makeCharacter(
  14110. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14111. {
  14112. front: {
  14113. height: math.unit(6, "feet"),
  14114. weight: math.unit(72, "kg"),
  14115. name: "Front",
  14116. image: {
  14117. source: "./media/characters/sleekit/front.svg",
  14118. extra: 4693 / 4487,
  14119. bottom: 0.012
  14120. }
  14121. },
  14122. },
  14123. [
  14124. {
  14125. name: "Minimum Height",
  14126. height: math.unit(10, "meters")
  14127. },
  14128. {
  14129. name: "Smaller",
  14130. height: math.unit(25, "meters")
  14131. },
  14132. {
  14133. name: "Larger",
  14134. height: math.unit(38, "meters"),
  14135. default: true
  14136. },
  14137. {
  14138. name: "Maximum height",
  14139. height: math.unit(100, "meters")
  14140. },
  14141. ]
  14142. ))
  14143. characterMakers.push(() => makeCharacter(
  14144. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14145. {
  14146. front: {
  14147. height: math.unit(6, "feet"),
  14148. weight: math.unit(150, "lb"),
  14149. name: "Front",
  14150. image: {
  14151. source: "./media/characters/nillia/front.svg",
  14152. extra: 2195 / 2037,
  14153. bottom: 0.005
  14154. }
  14155. },
  14156. back: {
  14157. height: math.unit(6, "feet"),
  14158. weight: math.unit(150, "lb"),
  14159. name: "Back",
  14160. image: {
  14161. source: "./media/characters/nillia/back.svg",
  14162. extra: 2195 / 2037,
  14163. bottom: 0.005
  14164. }
  14165. },
  14166. },
  14167. [
  14168. {
  14169. name: "Canon Height",
  14170. height: math.unit(489, "feet"),
  14171. default: true
  14172. }
  14173. ]
  14174. ))
  14175. characterMakers.push(() => makeCharacter(
  14176. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14177. {
  14178. front: {
  14179. height: math.unit(6, "feet"),
  14180. weight: math.unit(150, "lb"),
  14181. name: "Front",
  14182. image: {
  14183. source: "./media/characters/mesmyriza/front.svg",
  14184. extra: 2067 / 1784,
  14185. bottom: 0.035
  14186. }
  14187. },
  14188. foot: {
  14189. height: math.unit(6 / (250 / 35), "feet"),
  14190. name: "Foot",
  14191. image: {
  14192. source: "./media/characters/mesmyriza/foot.svg"
  14193. }
  14194. },
  14195. },
  14196. [
  14197. {
  14198. name: "Macro",
  14199. height: math.unit(457, "meters"),
  14200. default: true
  14201. },
  14202. {
  14203. name: "Megamacro",
  14204. height: math.unit(8, "megameters")
  14205. },
  14206. ]
  14207. ))
  14208. characterMakers.push(() => makeCharacter(
  14209. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14210. {
  14211. front: {
  14212. height: math.unit(6, "feet"),
  14213. weight: math.unit(250, "lb"),
  14214. name: "Front",
  14215. image: {
  14216. source: "./media/characters/saudade/front.svg",
  14217. extra: 1172 / 1139,
  14218. bottom: 0.035
  14219. }
  14220. },
  14221. },
  14222. [
  14223. {
  14224. name: "Micro",
  14225. height: math.unit(3, "inches")
  14226. },
  14227. {
  14228. name: "Normal",
  14229. height: math.unit(6, "feet"),
  14230. default: true
  14231. },
  14232. {
  14233. name: "Macro",
  14234. height: math.unit(50, "feet")
  14235. },
  14236. {
  14237. name: "Megamacro",
  14238. height: math.unit(2800, "feet")
  14239. },
  14240. ]
  14241. ))
  14242. characterMakers.push(() => makeCharacter(
  14243. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14244. {
  14245. front: {
  14246. height: math.unit(5 + 4 / 12, "feet"),
  14247. weight: math.unit(100, "lb"),
  14248. name: "Front",
  14249. image: {
  14250. source: "./media/characters/keireer/front.svg",
  14251. extra: 716 / 666,
  14252. bottom: 0.05
  14253. }
  14254. },
  14255. },
  14256. [
  14257. {
  14258. name: "Normal",
  14259. height: math.unit(5 + 4 / 12, "feet"),
  14260. default: true
  14261. },
  14262. ]
  14263. ))
  14264. characterMakers.push(() => makeCharacter(
  14265. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14266. {
  14267. front: {
  14268. height: math.unit(6, "feet"),
  14269. weight: math.unit(90, "kg"),
  14270. name: "Front",
  14271. image: {
  14272. source: "./media/characters/mirja/front.svg",
  14273. extra: 1789 / 1683,
  14274. bottom: 0.05
  14275. }
  14276. },
  14277. frontDressed: {
  14278. height: math.unit(6, "feet"),
  14279. weight: math.unit(90, "lb"),
  14280. name: "Front (Dressed)",
  14281. image: {
  14282. source: "./media/characters/mirja/front-dressed.svg",
  14283. extra: 1789 / 1683,
  14284. bottom: 0.05
  14285. }
  14286. },
  14287. back: {
  14288. height: math.unit(6, "feet"),
  14289. weight: math.unit(90, "lb"),
  14290. name: "Back",
  14291. image: {
  14292. source: "./media/characters/mirja/back.svg",
  14293. extra: 953 / 917,
  14294. bottom: 0.017
  14295. }
  14296. },
  14297. },
  14298. [
  14299. {
  14300. name: "\"Incognito\"",
  14301. height: math.unit(3, "meters")
  14302. },
  14303. {
  14304. name: "Strolling Size",
  14305. height: math.unit(15, "km")
  14306. },
  14307. {
  14308. name: "Larger Strolling Size",
  14309. height: math.unit(400, "km")
  14310. },
  14311. {
  14312. name: "Preferred Size",
  14313. height: math.unit(5000, "km")
  14314. },
  14315. {
  14316. name: "True Size",
  14317. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14318. default: true
  14319. },
  14320. ]
  14321. ))
  14322. characterMakers.push(() => makeCharacter(
  14323. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14324. {
  14325. front: {
  14326. height: math.unit(15, "feet"),
  14327. weight: math.unit(880, "kg"),
  14328. name: "Front",
  14329. image: {
  14330. source: "./media/characters/nightraver/front.svg",
  14331. extra: 2444 / 2160,
  14332. bottom: 0.027
  14333. }
  14334. },
  14335. back: {
  14336. height: math.unit(15, "feet"),
  14337. weight: math.unit(880, "kg"),
  14338. name: "Back",
  14339. image: {
  14340. source: "./media/characters/nightraver/back.svg",
  14341. extra: 2309 / 2180,
  14342. bottom: 0.005
  14343. }
  14344. },
  14345. sole: {
  14346. height: math.unit(2.878, "feet"),
  14347. name: "Sole",
  14348. image: {
  14349. source: "./media/characters/nightraver/sole.svg"
  14350. }
  14351. },
  14352. foot: {
  14353. height: math.unit(2.285, "feet"),
  14354. name: "Foot",
  14355. image: {
  14356. source: "./media/characters/nightraver/foot.svg"
  14357. }
  14358. },
  14359. maw: {
  14360. height: math.unit(2.67, "feet"),
  14361. name: "Maw",
  14362. image: {
  14363. source: "./media/characters/nightraver/maw.svg"
  14364. }
  14365. },
  14366. },
  14367. [
  14368. {
  14369. name: "Micro",
  14370. height: math.unit(1, "cm")
  14371. },
  14372. {
  14373. name: "Normal",
  14374. height: math.unit(15, "feet"),
  14375. default: true
  14376. },
  14377. {
  14378. name: "Macro",
  14379. height: math.unit(300, "feet")
  14380. },
  14381. {
  14382. name: "Megamacro",
  14383. height: math.unit(300, "miles")
  14384. },
  14385. {
  14386. name: "Gigamacro",
  14387. height: math.unit(10000, "miles")
  14388. },
  14389. ]
  14390. ))
  14391. characterMakers.push(() => makeCharacter(
  14392. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14393. {
  14394. side: {
  14395. height: math.unit(2, "inches"),
  14396. weight: math.unit(5, "grams"),
  14397. name: "Side",
  14398. image: {
  14399. source: "./media/characters/arc/side.svg"
  14400. }
  14401. },
  14402. },
  14403. [
  14404. {
  14405. name: "Micro",
  14406. height: math.unit(2, "inches"),
  14407. default: true
  14408. },
  14409. ]
  14410. ))
  14411. characterMakers.push(() => makeCharacter(
  14412. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14413. {
  14414. front: {
  14415. height: math.unit(1.1938, "meters"),
  14416. weight: math.unit(54, "kg"),
  14417. name: "Front",
  14418. image: {
  14419. source: "./media/characters/nebula-shahar/front.svg",
  14420. extra: 1642 / 1436,
  14421. bottom: 0.06
  14422. }
  14423. },
  14424. },
  14425. [
  14426. {
  14427. name: "Megamicro",
  14428. height: math.unit(0.3, "mm")
  14429. },
  14430. {
  14431. name: "Micro",
  14432. height: math.unit(3, "cm")
  14433. },
  14434. {
  14435. name: "Normal",
  14436. height: math.unit(138, "cm"),
  14437. default: true
  14438. },
  14439. {
  14440. name: "Macro",
  14441. height: math.unit(30, "m")
  14442. },
  14443. ]
  14444. ))
  14445. characterMakers.push(() => makeCharacter(
  14446. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14447. {
  14448. front: {
  14449. height: math.unit(5.24, "feet"),
  14450. weight: math.unit(150, "lb"),
  14451. name: "Front",
  14452. image: {
  14453. source: "./media/characters/shayla/front.svg",
  14454. extra: 1512 / 1414,
  14455. bottom: 0.01
  14456. }
  14457. },
  14458. back: {
  14459. height: math.unit(5.24, "feet"),
  14460. weight: math.unit(150, "lb"),
  14461. name: "Back",
  14462. image: {
  14463. source: "./media/characters/shayla/back.svg",
  14464. extra: 1512 / 1414
  14465. }
  14466. },
  14467. hand: {
  14468. height: math.unit(0.7781496062992126, "feet"),
  14469. name: "Hand",
  14470. image: {
  14471. source: "./media/characters/shayla/hand.svg"
  14472. }
  14473. },
  14474. foot: {
  14475. height: math.unit(1.4206036745406823, "feet"),
  14476. name: "Foot",
  14477. image: {
  14478. source: "./media/characters/shayla/foot.svg"
  14479. }
  14480. },
  14481. },
  14482. [
  14483. {
  14484. name: "Micro",
  14485. height: math.unit(0.32, "feet")
  14486. },
  14487. {
  14488. name: "Normal",
  14489. height: math.unit(5.24, "feet"),
  14490. default: true
  14491. },
  14492. {
  14493. name: "Macro",
  14494. height: math.unit(492.12, "feet")
  14495. },
  14496. {
  14497. name: "Megamacro",
  14498. height: math.unit(186.41, "miles")
  14499. },
  14500. ]
  14501. ))
  14502. characterMakers.push(() => makeCharacter(
  14503. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14504. {
  14505. front: {
  14506. height: math.unit(2.2, "m"),
  14507. weight: math.unit(120, "kg"),
  14508. name: "Front",
  14509. image: {
  14510. source: "./media/characters/pia-jr/front.svg",
  14511. extra: 1000 / 970,
  14512. bottom: 0.035
  14513. }
  14514. },
  14515. hand: {
  14516. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14517. name: "Hand",
  14518. image: {
  14519. source: "./media/characters/pia-jr/hand.svg"
  14520. }
  14521. },
  14522. paw: {
  14523. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14524. name: "Paw",
  14525. image: {
  14526. source: "./media/characters/pia-jr/paw.svg"
  14527. }
  14528. },
  14529. },
  14530. [
  14531. {
  14532. name: "Micro",
  14533. height: math.unit(1.2, "cm")
  14534. },
  14535. {
  14536. name: "Normal",
  14537. height: math.unit(2.2, "m"),
  14538. default: true
  14539. },
  14540. {
  14541. name: "Macro",
  14542. height: math.unit(180, "m")
  14543. },
  14544. {
  14545. name: "Megamacro",
  14546. height: math.unit(420, "km")
  14547. },
  14548. ]
  14549. ))
  14550. characterMakers.push(() => makeCharacter(
  14551. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14552. {
  14553. front: {
  14554. height: math.unit(2, "m"),
  14555. weight: math.unit(115, "kg"),
  14556. name: "Front",
  14557. image: {
  14558. source: "./media/characters/pia-sr/front.svg",
  14559. extra: 760 / 730,
  14560. bottom: 0.015
  14561. }
  14562. },
  14563. back: {
  14564. height: math.unit(2, "m"),
  14565. weight: math.unit(115, "kg"),
  14566. name: "Back",
  14567. image: {
  14568. source: "./media/characters/pia-sr/back.svg",
  14569. extra: 760 / 730,
  14570. bottom: 0.01
  14571. }
  14572. },
  14573. hand: {
  14574. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14575. name: "Hand",
  14576. image: {
  14577. source: "./media/characters/pia-sr/hand.svg"
  14578. }
  14579. },
  14580. foot: {
  14581. height: math.unit(1.83, "feet"),
  14582. name: "Foot",
  14583. image: {
  14584. source: "./media/characters/pia-sr/foot.svg"
  14585. }
  14586. },
  14587. },
  14588. [
  14589. {
  14590. name: "Micro",
  14591. height: math.unit(88, "mm")
  14592. },
  14593. {
  14594. name: "Normal",
  14595. height: math.unit(2, "m"),
  14596. default: true
  14597. },
  14598. {
  14599. name: "Macro",
  14600. height: math.unit(200, "m")
  14601. },
  14602. {
  14603. name: "Megamacro",
  14604. height: math.unit(420, "km")
  14605. },
  14606. ]
  14607. ))
  14608. characterMakers.push(() => makeCharacter(
  14609. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14610. {
  14611. front: {
  14612. height: math.unit(8 + 2 / 12, "feet"),
  14613. weight: math.unit(300, "lb"),
  14614. name: "Front",
  14615. image: {
  14616. source: "./media/characters/kibibyte/front.svg",
  14617. extra: 2221 / 2098,
  14618. bottom: 0.04
  14619. }
  14620. },
  14621. },
  14622. [
  14623. {
  14624. name: "Normal",
  14625. height: math.unit(8 + 2 / 12, "feet"),
  14626. default: true
  14627. },
  14628. {
  14629. name: "Socialable Macro",
  14630. height: math.unit(50, "feet")
  14631. },
  14632. {
  14633. name: "Macro",
  14634. height: math.unit(300, "feet")
  14635. },
  14636. {
  14637. name: "Megamacro",
  14638. height: math.unit(500, "miles")
  14639. },
  14640. ]
  14641. ))
  14642. characterMakers.push(() => makeCharacter(
  14643. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14644. {
  14645. front: {
  14646. height: math.unit(6, "feet"),
  14647. weight: math.unit(150, "lb"),
  14648. name: "Front",
  14649. image: {
  14650. source: "./media/characters/felix/front.svg",
  14651. extra: 762 / 722,
  14652. bottom: 0.02
  14653. }
  14654. },
  14655. frontClothed: {
  14656. height: math.unit(6, "feet"),
  14657. weight: math.unit(150, "lb"),
  14658. name: "Front (Clothed)",
  14659. image: {
  14660. source: "./media/characters/felix/front-clothed.svg",
  14661. extra: 762 / 722,
  14662. bottom: 0.02
  14663. }
  14664. },
  14665. },
  14666. [
  14667. {
  14668. name: "Normal",
  14669. height: math.unit(6 + 8 / 12, "feet"),
  14670. default: true
  14671. },
  14672. {
  14673. name: "Macro",
  14674. height: math.unit(2600, "feet")
  14675. },
  14676. {
  14677. name: "Megamacro",
  14678. height: math.unit(450, "miles")
  14679. },
  14680. ]
  14681. ))
  14682. characterMakers.push(() => makeCharacter(
  14683. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14684. {
  14685. front: {
  14686. height: math.unit(6 + 1 / 12, "feet"),
  14687. weight: math.unit(250, "lb"),
  14688. name: "Front",
  14689. image: {
  14690. source: "./media/characters/tobo/front.svg",
  14691. extra: 608 / 586,
  14692. bottom: 0.023
  14693. }
  14694. },
  14695. back: {
  14696. height: math.unit(6 + 1 / 12, "feet"),
  14697. weight: math.unit(250, "lb"),
  14698. name: "Back",
  14699. image: {
  14700. source: "./media/characters/tobo/back.svg",
  14701. extra: 608 / 586
  14702. }
  14703. },
  14704. },
  14705. [
  14706. {
  14707. name: "Nano",
  14708. height: math.unit(2, "nm")
  14709. },
  14710. {
  14711. name: "Megamicro",
  14712. height: math.unit(0.1, "mm")
  14713. },
  14714. {
  14715. name: "Micro",
  14716. height: math.unit(1, "inch"),
  14717. default: true
  14718. },
  14719. {
  14720. name: "Human-sized",
  14721. height: math.unit(6 + 1 / 12, "feet")
  14722. },
  14723. {
  14724. name: "Macro",
  14725. height: math.unit(250, "feet")
  14726. },
  14727. {
  14728. name: "Megamacro",
  14729. height: math.unit(75, "miles")
  14730. },
  14731. {
  14732. name: "Texas-sized",
  14733. height: math.unit(750, "miles")
  14734. },
  14735. {
  14736. name: "Teramacro",
  14737. height: math.unit(50000, "miles")
  14738. },
  14739. ]
  14740. ))
  14741. characterMakers.push(() => makeCharacter(
  14742. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14743. {
  14744. front: {
  14745. height: math.unit(6, "feet"),
  14746. weight: math.unit(269, "lb"),
  14747. name: "Front",
  14748. image: {
  14749. source: "./media/characters/danny-kapowsky/front.svg",
  14750. extra: 766 / 736,
  14751. bottom: 0.044
  14752. }
  14753. },
  14754. back: {
  14755. height: math.unit(6, "feet"),
  14756. weight: math.unit(269, "lb"),
  14757. name: "Back",
  14758. image: {
  14759. source: "./media/characters/danny-kapowsky/back.svg",
  14760. extra: 797 / 760,
  14761. bottom: 0.025
  14762. }
  14763. },
  14764. },
  14765. [
  14766. {
  14767. name: "Macro",
  14768. height: math.unit(150, "feet"),
  14769. default: true
  14770. },
  14771. {
  14772. name: "Macro+",
  14773. height: math.unit(200, "feet")
  14774. },
  14775. {
  14776. name: "Macro++",
  14777. height: math.unit(300, "feet")
  14778. },
  14779. {
  14780. name: "Macro+++",
  14781. height: math.unit(400, "feet")
  14782. },
  14783. ]
  14784. ))
  14785. characterMakers.push(() => makeCharacter(
  14786. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14787. {
  14788. side: {
  14789. height: math.unit(6, "feet"),
  14790. weight: math.unit(170, "lb"),
  14791. name: "Side",
  14792. image: {
  14793. source: "./media/characters/finn/side.svg",
  14794. extra: 1953 / 1807,
  14795. bottom: 0.057
  14796. }
  14797. },
  14798. },
  14799. [
  14800. {
  14801. name: "Megamacro",
  14802. height: math.unit(14445, "feet"),
  14803. default: true
  14804. },
  14805. ]
  14806. ))
  14807. characterMakers.push(() => makeCharacter(
  14808. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14809. {
  14810. front: {
  14811. height: math.unit(5 + 6 / 12, "feet"),
  14812. weight: math.unit(125, "lb"),
  14813. name: "Front",
  14814. image: {
  14815. source: "./media/characters/roy/front.svg",
  14816. extra: 1,
  14817. bottom: 0.11
  14818. }
  14819. },
  14820. },
  14821. [
  14822. {
  14823. name: "Micro",
  14824. height: math.unit(3, "inches"),
  14825. default: true
  14826. },
  14827. {
  14828. name: "Normal",
  14829. height: math.unit(5 + 6 / 12, "feet")
  14830. },
  14831. {
  14832. name: "Lesser Macro",
  14833. height: math.unit(60, "feet")
  14834. },
  14835. {
  14836. name: "Greater Macro",
  14837. height: math.unit(120, "feet")
  14838. },
  14839. ]
  14840. ))
  14841. characterMakers.push(() => makeCharacter(
  14842. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14843. {
  14844. front: {
  14845. height: math.unit(6, "feet"),
  14846. weight: math.unit(100, "lb"),
  14847. name: "Front",
  14848. image: {
  14849. source: "./media/characters/aevsivs/front.svg",
  14850. extra: 1,
  14851. bottom: 0.03
  14852. }
  14853. },
  14854. back: {
  14855. height: math.unit(6, "feet"),
  14856. weight: math.unit(100, "lb"),
  14857. name: "Back",
  14858. image: {
  14859. source: "./media/characters/aevsivs/back.svg"
  14860. }
  14861. },
  14862. },
  14863. [
  14864. {
  14865. name: "Micro",
  14866. height: math.unit(2, "inches"),
  14867. default: true
  14868. },
  14869. {
  14870. name: "Normal",
  14871. height: math.unit(5, "feet")
  14872. },
  14873. ]
  14874. ))
  14875. characterMakers.push(() => makeCharacter(
  14876. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14877. {
  14878. front: {
  14879. height: math.unit(5 + 7 / 12, "feet"),
  14880. weight: math.unit(159, "lb"),
  14881. name: "Front",
  14882. image: {
  14883. source: "./media/characters/hildegard/front.svg",
  14884. extra: 289 / 269,
  14885. bottom: 7.63 / 297.8
  14886. }
  14887. },
  14888. back: {
  14889. height: math.unit(5 + 7 / 12, "feet"),
  14890. weight: math.unit(159, "lb"),
  14891. name: "Back",
  14892. image: {
  14893. source: "./media/characters/hildegard/back.svg",
  14894. extra: 280 / 260,
  14895. bottom: 2.3 / 282
  14896. }
  14897. },
  14898. },
  14899. [
  14900. {
  14901. name: "Normal",
  14902. height: math.unit(5 + 7 / 12, "feet"),
  14903. default: true
  14904. },
  14905. ]
  14906. ))
  14907. characterMakers.push(() => makeCharacter(
  14908. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14909. {
  14910. bernard: {
  14911. height: math.unit(2 + 7 / 12, "feet"),
  14912. weight: math.unit(66, "lb"),
  14913. name: "Bernard",
  14914. rename: true,
  14915. image: {
  14916. source: "./media/characters/bernard-wilder/bernard.svg",
  14917. extra: 192 / 128,
  14918. bottom: 0.05
  14919. }
  14920. },
  14921. wilder: {
  14922. height: math.unit(5 + 8 / 12, "feet"),
  14923. weight: math.unit(143, "lb"),
  14924. name: "Wilder",
  14925. rename: true,
  14926. image: {
  14927. source: "./media/characters/bernard-wilder/wilder.svg",
  14928. extra: 361 / 312,
  14929. bottom: 0.02
  14930. }
  14931. },
  14932. },
  14933. [
  14934. {
  14935. name: "Normal",
  14936. height: math.unit(2 + 7 / 12, "feet"),
  14937. default: true
  14938. },
  14939. ]
  14940. ))
  14941. characterMakers.push(() => makeCharacter(
  14942. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14943. {
  14944. anthro: {
  14945. height: math.unit(6 + 1 / 12, "feet"),
  14946. weight: math.unit(155, "lb"),
  14947. name: "Anthro",
  14948. image: {
  14949. source: "./media/characters/hearth/anthro.svg",
  14950. extra: 260 / 250,
  14951. bottom: 0.02
  14952. }
  14953. },
  14954. feral: {
  14955. height: math.unit(3.78, "feet"),
  14956. weight: math.unit(35, "kg"),
  14957. name: "Feral",
  14958. image: {
  14959. source: "./media/characters/hearth/feral.svg",
  14960. extra: 153 / 135,
  14961. bottom: 0.03
  14962. }
  14963. },
  14964. },
  14965. [
  14966. {
  14967. name: "Normal",
  14968. height: math.unit(6 + 1 / 12, "feet"),
  14969. default: true
  14970. },
  14971. ]
  14972. ))
  14973. characterMakers.push(() => makeCharacter(
  14974. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14975. {
  14976. front: {
  14977. height: math.unit(6, "feet"),
  14978. weight: math.unit(182, "lb"),
  14979. name: "Front",
  14980. image: {
  14981. source: "./media/characters/ingrid/front.svg",
  14982. extra: 294 / 268,
  14983. bottom: 0.027
  14984. }
  14985. },
  14986. },
  14987. [
  14988. {
  14989. name: "Normal",
  14990. height: math.unit(6, "feet"),
  14991. default: true
  14992. },
  14993. ]
  14994. ))
  14995. characterMakers.push(() => makeCharacter(
  14996. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14997. {
  14998. eevee: {
  14999. height: math.unit(2 + 10 / 12, "feet"),
  15000. weight: math.unit(86, "lb"),
  15001. name: "Malgam",
  15002. image: {
  15003. source: "./media/characters/malgam/eevee.svg",
  15004. extra: 218 / 180,
  15005. bottom: 0.2
  15006. }
  15007. },
  15008. sylveon: {
  15009. height: math.unit(4, "feet"),
  15010. weight: math.unit(101, "lb"),
  15011. name: "Future Malgam",
  15012. rename: true,
  15013. image: {
  15014. source: "./media/characters/malgam/sylveon.svg",
  15015. extra: 371 / 325,
  15016. bottom: 0.015
  15017. }
  15018. },
  15019. gigantamax: {
  15020. height: math.unit(50, "feet"),
  15021. name: "Gigantamax Malgam",
  15022. rename: true,
  15023. image: {
  15024. source: "./media/characters/malgam/gigantamax.svg"
  15025. }
  15026. },
  15027. },
  15028. [
  15029. {
  15030. name: "Normal",
  15031. height: math.unit(2 + 10 / 12, "feet"),
  15032. default: true
  15033. },
  15034. ]
  15035. ))
  15036. characterMakers.push(() => makeCharacter(
  15037. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15038. {
  15039. front: {
  15040. height: math.unit(5 + 11 / 12, "feet"),
  15041. weight: math.unit(188, "lb"),
  15042. name: "Front",
  15043. image: {
  15044. source: "./media/characters/fleur/front.svg",
  15045. extra: 309 / 283,
  15046. bottom: 0.007
  15047. }
  15048. },
  15049. },
  15050. [
  15051. {
  15052. name: "Normal",
  15053. height: math.unit(5 + 11 / 12, "feet"),
  15054. default: true
  15055. },
  15056. ]
  15057. ))
  15058. characterMakers.push(() => makeCharacter(
  15059. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15060. {
  15061. front: {
  15062. height: math.unit(5 + 4 / 12, "feet"),
  15063. weight: math.unit(122, "lb"),
  15064. name: "Front",
  15065. image: {
  15066. source: "./media/characters/jude/front.svg",
  15067. extra: 288 / 273,
  15068. bottom: 0.03
  15069. }
  15070. },
  15071. },
  15072. [
  15073. {
  15074. name: "Normal",
  15075. height: math.unit(5 + 4 / 12, "feet"),
  15076. default: true
  15077. },
  15078. ]
  15079. ))
  15080. characterMakers.push(() => makeCharacter(
  15081. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15082. {
  15083. front: {
  15084. height: math.unit(5 + 11 / 12, "feet"),
  15085. weight: math.unit(190, "lb"),
  15086. name: "Front",
  15087. image: {
  15088. source: "./media/characters/seara/front.svg",
  15089. extra: 1,
  15090. bottom: 0.05
  15091. }
  15092. },
  15093. },
  15094. [
  15095. {
  15096. name: "Normal",
  15097. height: math.unit(5 + 11 / 12, "feet"),
  15098. default: true
  15099. },
  15100. ]
  15101. ))
  15102. characterMakers.push(() => makeCharacter(
  15103. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15104. {
  15105. front: {
  15106. height: math.unit(16 + 5 / 12, "feet"),
  15107. weight: math.unit(524, "lb"),
  15108. name: "Front",
  15109. image: {
  15110. source: "./media/characters/caspian/front.svg",
  15111. extra: 1,
  15112. bottom: 0.04
  15113. }
  15114. },
  15115. },
  15116. [
  15117. {
  15118. name: "Normal",
  15119. height: math.unit(16 + 5 / 12, "feet"),
  15120. default: true
  15121. },
  15122. ]
  15123. ))
  15124. characterMakers.push(() => makeCharacter(
  15125. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15126. {
  15127. front: {
  15128. height: math.unit(5 + 7 / 12, "feet"),
  15129. weight: math.unit(170, "lb"),
  15130. name: "Front",
  15131. image: {
  15132. source: "./media/characters/mika/front.svg",
  15133. extra: 1,
  15134. bottom: 0.016
  15135. }
  15136. },
  15137. },
  15138. [
  15139. {
  15140. name: "Normal",
  15141. height: math.unit(5 + 7 / 12, "feet"),
  15142. default: true
  15143. },
  15144. ]
  15145. ))
  15146. characterMakers.push(() => makeCharacter(
  15147. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15148. {
  15149. front: {
  15150. height: math.unit(6 + 2 / 12, "feet"),
  15151. weight: math.unit(268, "lb"),
  15152. name: "Front",
  15153. image: {
  15154. source: "./media/characters/sol/front.svg",
  15155. extra: 247 / 231,
  15156. bottom: 0.05
  15157. }
  15158. },
  15159. },
  15160. [
  15161. {
  15162. name: "Normal",
  15163. height: math.unit(6 + 2 / 12, "feet"),
  15164. default: true
  15165. },
  15166. ]
  15167. ))
  15168. characterMakers.push(() => makeCharacter(
  15169. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15170. {
  15171. buizel: {
  15172. height: math.unit(2 + 5 / 12, "feet"),
  15173. weight: math.unit(87, "lb"),
  15174. name: "Buizel",
  15175. image: {
  15176. source: "./media/characters/umiko/buizel.svg",
  15177. extra: 172 / 157,
  15178. bottom: 0.01
  15179. }
  15180. },
  15181. floatzel: {
  15182. height: math.unit(5 + 9 / 12, "feet"),
  15183. weight: math.unit(250, "lb"),
  15184. name: "Floatzel",
  15185. image: {
  15186. source: "./media/characters/umiko/floatzel.svg",
  15187. extra: 262 / 248
  15188. }
  15189. },
  15190. },
  15191. [
  15192. {
  15193. name: "Normal",
  15194. height: math.unit(2 + 5 / 12, "feet"),
  15195. default: true
  15196. },
  15197. ]
  15198. ))
  15199. characterMakers.push(() => makeCharacter(
  15200. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15201. {
  15202. front: {
  15203. height: math.unit(6 + 2 / 12, "feet"),
  15204. weight: math.unit(146, "lb"),
  15205. name: "Front",
  15206. image: {
  15207. source: "./media/characters/iliac/front.svg",
  15208. extra: 389 / 365,
  15209. bottom: 0.035
  15210. }
  15211. },
  15212. },
  15213. [
  15214. {
  15215. name: "Normal",
  15216. height: math.unit(6 + 2 / 12, "feet"),
  15217. default: true
  15218. },
  15219. ]
  15220. ))
  15221. characterMakers.push(() => makeCharacter(
  15222. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15223. {
  15224. front: {
  15225. height: math.unit(6, "feet"),
  15226. weight: math.unit(170, "lb"),
  15227. name: "Front",
  15228. image: {
  15229. source: "./media/characters/topaz/front.svg",
  15230. extra: 317 / 303,
  15231. bottom: 0.055
  15232. }
  15233. },
  15234. },
  15235. [
  15236. {
  15237. name: "Normal",
  15238. height: math.unit(6, "feet"),
  15239. default: true
  15240. },
  15241. ]
  15242. ))
  15243. characterMakers.push(() => makeCharacter(
  15244. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15245. {
  15246. front: {
  15247. height: math.unit(5 + 11 / 12, "feet"),
  15248. weight: math.unit(144, "lb"),
  15249. name: "Front",
  15250. image: {
  15251. source: "./media/characters/gabriel/front.svg",
  15252. extra: 285 / 262,
  15253. bottom: 0.004
  15254. }
  15255. },
  15256. },
  15257. [
  15258. {
  15259. name: "Normal",
  15260. height: math.unit(5 + 11 / 12, "feet"),
  15261. default: true
  15262. },
  15263. ]
  15264. ))
  15265. characterMakers.push(() => makeCharacter(
  15266. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15267. {
  15268. side: {
  15269. height: math.unit(6 + 5 / 12, "feet"),
  15270. weight: math.unit(300, "lb"),
  15271. name: "Side",
  15272. image: {
  15273. source: "./media/characters/tempest-suicune/side.svg",
  15274. extra: 195 / 154,
  15275. bottom: 0.04
  15276. }
  15277. },
  15278. },
  15279. [
  15280. {
  15281. name: "Normal",
  15282. height: math.unit(6 + 5 / 12, "feet"),
  15283. default: true
  15284. },
  15285. ]
  15286. ))
  15287. characterMakers.push(() => makeCharacter(
  15288. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15289. {
  15290. front: {
  15291. height: math.unit(7 + 2 / 12, "feet"),
  15292. weight: math.unit(322, "lb"),
  15293. name: "Front",
  15294. image: {
  15295. source: "./media/characters/vulcan/front.svg",
  15296. extra: 154 / 147,
  15297. bottom: 0.04
  15298. }
  15299. },
  15300. },
  15301. [
  15302. {
  15303. name: "Normal",
  15304. height: math.unit(7 + 2 / 12, "feet"),
  15305. default: true
  15306. },
  15307. ]
  15308. ))
  15309. characterMakers.push(() => makeCharacter(
  15310. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15311. {
  15312. front: {
  15313. height: math.unit(5 + 10 / 12, "feet"),
  15314. weight: math.unit(264, "lb"),
  15315. name: "Front",
  15316. image: {
  15317. source: "./media/characters/gault/front.svg",
  15318. extra: 161 / 140,
  15319. bottom: 0.028
  15320. }
  15321. },
  15322. },
  15323. [
  15324. {
  15325. name: "Normal",
  15326. height: math.unit(5 + 10 / 12, "feet"),
  15327. default: true
  15328. },
  15329. ]
  15330. ))
  15331. characterMakers.push(() => makeCharacter(
  15332. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15333. {
  15334. front: {
  15335. height: math.unit(6, "feet"),
  15336. weight: math.unit(150, "lb"),
  15337. name: "Front",
  15338. image: {
  15339. source: "./media/characters/shard/front.svg",
  15340. extra: 273 / 238,
  15341. bottom: 0.02
  15342. }
  15343. },
  15344. },
  15345. [
  15346. {
  15347. name: "Normal",
  15348. height: math.unit(3 + 6 / 12, "feet"),
  15349. default: true
  15350. },
  15351. ]
  15352. ))
  15353. characterMakers.push(() => makeCharacter(
  15354. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15355. {
  15356. front: {
  15357. height: math.unit(5 + 11 / 12, "feet"),
  15358. weight: math.unit(146, "lb"),
  15359. name: "Front",
  15360. image: {
  15361. source: "./media/characters/ashe/front.svg",
  15362. extra: 400 / 373,
  15363. bottom: 0.01
  15364. }
  15365. },
  15366. },
  15367. [
  15368. {
  15369. name: "Normal",
  15370. height: math.unit(5 + 11 / 12, "feet"),
  15371. default: true
  15372. },
  15373. ]
  15374. ))
  15375. characterMakers.push(() => makeCharacter(
  15376. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15377. {
  15378. front: {
  15379. height: math.unit(5 + 5 / 12, "feet"),
  15380. weight: math.unit(135, "lb"),
  15381. name: "Front",
  15382. image: {
  15383. source: "./media/characters/beatrix/front.svg",
  15384. extra: 392 / 379,
  15385. bottom: 0.01
  15386. }
  15387. },
  15388. },
  15389. [
  15390. {
  15391. name: "Normal",
  15392. height: math.unit(6, "feet"),
  15393. default: true
  15394. },
  15395. ]
  15396. ))
  15397. characterMakers.push(() => makeCharacter(
  15398. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15399. {
  15400. front: {
  15401. height: math.unit(6, "feet"),
  15402. weight: math.unit(150, "lb"),
  15403. name: "Front",
  15404. image: {
  15405. source: "./media/characters/ignatius/front.svg",
  15406. extra: 245 / 222,
  15407. bottom: 0.01
  15408. }
  15409. },
  15410. },
  15411. [
  15412. {
  15413. name: "Normal",
  15414. height: math.unit(5 + 5 / 12, "feet"),
  15415. default: true
  15416. },
  15417. ]
  15418. ))
  15419. characterMakers.push(() => makeCharacter(
  15420. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15421. {
  15422. front: {
  15423. height: math.unit(6 + 2 / 12, "feet"),
  15424. weight: math.unit(138, "lb"),
  15425. name: "Front",
  15426. image: {
  15427. source: "./media/characters/mei-li/front.svg",
  15428. extra: 237 / 229,
  15429. bottom: 0.03
  15430. }
  15431. },
  15432. },
  15433. [
  15434. {
  15435. name: "Normal",
  15436. height: math.unit(6 + 2 / 12, "feet"),
  15437. default: true
  15438. },
  15439. ]
  15440. ))
  15441. characterMakers.push(() => makeCharacter(
  15442. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15443. {
  15444. front: {
  15445. height: math.unit(2 + 4 / 12, "feet"),
  15446. weight: math.unit(62, "lb"),
  15447. name: "Front",
  15448. image: {
  15449. source: "./media/characters/puru/front.svg",
  15450. extra: 206 / 149,
  15451. bottom: 0.06
  15452. }
  15453. },
  15454. },
  15455. [
  15456. {
  15457. name: "Normal",
  15458. height: math.unit(2 + 4 / 12, "feet"),
  15459. default: true
  15460. },
  15461. ]
  15462. ))
  15463. characterMakers.push(() => makeCharacter(
  15464. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15465. {
  15466. anthro: {
  15467. height: math.unit(5 + 8/12, "feet"),
  15468. weight: math.unit(200, "lb"),
  15469. energyNeed: math.unit(2000, "kcal"),
  15470. name: "Anthro",
  15471. image: {
  15472. source: "./media/characters/kee/anthro.svg",
  15473. extra: 3251/3184,
  15474. bottom: 250/3501
  15475. }
  15476. },
  15477. taur: {
  15478. height: math.unit(11, "feet"),
  15479. weight: math.unit(500, "lb"),
  15480. energyNeed: math.unit(5000, "kcal"),
  15481. name: "Taur",
  15482. image: {
  15483. source: "./media/characters/kee/taur.svg",
  15484. extra: 1362/1320,
  15485. bottom: 83/1445
  15486. }
  15487. },
  15488. },
  15489. [
  15490. {
  15491. name: "Normal",
  15492. height: math.unit(5 + 8/12, "feet"),
  15493. default: true
  15494. },
  15495. {
  15496. name: "Macro",
  15497. height: math.unit(35, "feet")
  15498. },
  15499. ]
  15500. ))
  15501. characterMakers.push(() => makeCharacter(
  15502. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15503. {
  15504. anthro: {
  15505. height: math.unit(7, "feet"),
  15506. weight: math.unit(190, "lb"),
  15507. name: "Anthro",
  15508. image: {
  15509. source: "./media/characters/cobalt-dracha/anthro.svg",
  15510. extra: 231 / 225,
  15511. bottom: 0.04
  15512. }
  15513. },
  15514. feral: {
  15515. height: math.unit(9 + 7 / 12, "feet"),
  15516. weight: math.unit(294, "lb"),
  15517. name: "Feral",
  15518. image: {
  15519. source: "./media/characters/cobalt-dracha/feral.svg",
  15520. extra: 692 / 633,
  15521. bottom: 0.05
  15522. }
  15523. },
  15524. },
  15525. [
  15526. {
  15527. name: "Normal",
  15528. height: math.unit(7, "feet"),
  15529. default: true
  15530. },
  15531. ]
  15532. ))
  15533. characterMakers.push(() => makeCharacter(
  15534. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15535. {
  15536. fallen: {
  15537. height: math.unit(11 + 8 / 12, "feet"),
  15538. weight: math.unit(485, "lb"),
  15539. name: "Java (Fallen)",
  15540. rename: true,
  15541. image: {
  15542. source: "./media/characters/java/fallen.svg",
  15543. extra: 226 / 208,
  15544. bottom: 0.005
  15545. }
  15546. },
  15547. godkin: {
  15548. height: math.unit(10 + 6 / 12, "feet"),
  15549. weight: math.unit(328, "lb"),
  15550. name: "Java (Godkin)",
  15551. rename: true,
  15552. image: {
  15553. source: "./media/characters/java/godkin.svg",
  15554. extra: 270 / 262,
  15555. bottom: 0.02
  15556. }
  15557. },
  15558. },
  15559. [
  15560. {
  15561. name: "Normal",
  15562. height: math.unit(11 + 8 / 12, "feet"),
  15563. default: true
  15564. },
  15565. ]
  15566. ))
  15567. characterMakers.push(() => makeCharacter(
  15568. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15569. {
  15570. front: {
  15571. height: math.unit(7 + 8 / 12, "feet"),
  15572. weight: math.unit(320, "lb"),
  15573. name: "Front",
  15574. image: {
  15575. source: "./media/characters/skoll/front.svg",
  15576. extra: 232 / 220,
  15577. bottom: 0.02
  15578. }
  15579. },
  15580. },
  15581. [
  15582. {
  15583. name: "Normal",
  15584. height: math.unit(7 + 8 / 12, "feet"),
  15585. default: true
  15586. },
  15587. ]
  15588. ))
  15589. characterMakers.push(() => makeCharacter(
  15590. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15591. {
  15592. front: {
  15593. height: math.unit(5 + 9 / 12, "feet"),
  15594. weight: math.unit(170, "lb"),
  15595. name: "Front",
  15596. image: {
  15597. source: "./media/characters/purna/front.svg",
  15598. extra: 239 / 229,
  15599. bottom: 0.01
  15600. }
  15601. },
  15602. },
  15603. [
  15604. {
  15605. name: "Normal",
  15606. height: math.unit(5 + 9 / 12, "feet"),
  15607. default: true
  15608. },
  15609. ]
  15610. ))
  15611. characterMakers.push(() => makeCharacter(
  15612. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15613. {
  15614. front: {
  15615. height: math.unit(5 + 9 / 12, "feet"),
  15616. weight: math.unit(142, "lb"),
  15617. name: "Front",
  15618. image: {
  15619. source: "./media/characters/kuva/front.svg",
  15620. extra: 281 / 271,
  15621. bottom: 0.006
  15622. }
  15623. },
  15624. },
  15625. [
  15626. {
  15627. name: "Normal",
  15628. height: math.unit(5 + 9 / 12, "feet"),
  15629. default: true
  15630. },
  15631. ]
  15632. ))
  15633. characterMakers.push(() => makeCharacter(
  15634. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15635. {
  15636. anthro: {
  15637. height: math.unit(9 + 2 / 12, "feet"),
  15638. weight: math.unit(270, "lb"),
  15639. name: "Anthro",
  15640. image: {
  15641. source: "./media/characters/embra/anthro.svg",
  15642. extra: 200 / 187,
  15643. bottom: 0.02
  15644. }
  15645. },
  15646. feral: {
  15647. height: math.unit(18 + 8 / 12, "feet"),
  15648. weight: math.unit(576, "lb"),
  15649. name: "Feral",
  15650. image: {
  15651. source: "./media/characters/embra/feral.svg",
  15652. extra: 152 / 137,
  15653. bottom: 0.037
  15654. }
  15655. },
  15656. },
  15657. [
  15658. {
  15659. name: "Normal",
  15660. height: math.unit(9 + 2 / 12, "feet"),
  15661. default: true
  15662. },
  15663. ]
  15664. ))
  15665. characterMakers.push(() => makeCharacter(
  15666. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15667. {
  15668. anthro: {
  15669. height: math.unit(10 + 9 / 12, "feet"),
  15670. weight: math.unit(224, "lb"),
  15671. name: "Anthro",
  15672. image: {
  15673. source: "./media/characters/grottos/anthro.svg",
  15674. extra: 350 / 332,
  15675. bottom: 0.045
  15676. }
  15677. },
  15678. feral: {
  15679. height: math.unit(20 + 7 / 12, "feet"),
  15680. weight: math.unit(629, "lb"),
  15681. name: "Feral",
  15682. image: {
  15683. source: "./media/characters/grottos/feral.svg",
  15684. extra: 207 / 190,
  15685. bottom: 0.05
  15686. }
  15687. },
  15688. },
  15689. [
  15690. {
  15691. name: "Normal",
  15692. height: math.unit(10 + 9 / 12, "feet"),
  15693. default: true
  15694. },
  15695. ]
  15696. ))
  15697. characterMakers.push(() => makeCharacter(
  15698. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15699. {
  15700. anthro: {
  15701. height: math.unit(9 + 6 / 12, "feet"),
  15702. weight: math.unit(298, "lb"),
  15703. name: "Anthro",
  15704. image: {
  15705. source: "./media/characters/frifna/anthro.svg",
  15706. extra: 282 / 269,
  15707. bottom: 0.015
  15708. }
  15709. },
  15710. feral: {
  15711. height: math.unit(16 + 2 / 12, "feet"),
  15712. weight: math.unit(624, "lb"),
  15713. name: "Feral",
  15714. image: {
  15715. source: "./media/characters/frifna/feral.svg"
  15716. }
  15717. },
  15718. },
  15719. [
  15720. {
  15721. name: "Normal",
  15722. height: math.unit(9 + 6 / 12, "feet"),
  15723. default: true
  15724. },
  15725. ]
  15726. ))
  15727. characterMakers.push(() => makeCharacter(
  15728. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15729. {
  15730. front: {
  15731. height: math.unit(6 + 2 / 12, "feet"),
  15732. weight: math.unit(168, "lb"),
  15733. name: "Front",
  15734. image: {
  15735. source: "./media/characters/elise/front.svg",
  15736. extra: 276 / 271
  15737. }
  15738. },
  15739. },
  15740. [
  15741. {
  15742. name: "Normal",
  15743. height: math.unit(6 + 2 / 12, "feet"),
  15744. default: true
  15745. },
  15746. ]
  15747. ))
  15748. characterMakers.push(() => makeCharacter(
  15749. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15750. {
  15751. front: {
  15752. height: math.unit(5 + 10 / 12, "feet"),
  15753. weight: math.unit(210, "lb"),
  15754. name: "Front",
  15755. image: {
  15756. source: "./media/characters/glade/front.svg",
  15757. extra: 258 / 247,
  15758. bottom: 0.008
  15759. }
  15760. },
  15761. },
  15762. [
  15763. {
  15764. name: "Normal",
  15765. height: math.unit(5 + 10 / 12, "feet"),
  15766. default: true
  15767. },
  15768. ]
  15769. ))
  15770. characterMakers.push(() => makeCharacter(
  15771. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15772. {
  15773. front: {
  15774. height: math.unit(5 + 10 / 12, "feet"),
  15775. weight: math.unit(129, "lb"),
  15776. name: "Front",
  15777. image: {
  15778. source: "./media/characters/rina/front.svg",
  15779. extra: 266 / 255,
  15780. bottom: 0.005
  15781. }
  15782. },
  15783. },
  15784. [
  15785. {
  15786. name: "Normal",
  15787. height: math.unit(5 + 10 / 12, "feet"),
  15788. default: true
  15789. },
  15790. ]
  15791. ))
  15792. characterMakers.push(() => makeCharacter(
  15793. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15794. {
  15795. front: {
  15796. height: math.unit(6 + 1 / 12, "feet"),
  15797. weight: math.unit(192, "lb"),
  15798. name: "Front",
  15799. image: {
  15800. source: "./media/characters/veronica/front.svg",
  15801. extra: 319 / 309,
  15802. bottom: 0.005
  15803. }
  15804. },
  15805. },
  15806. [
  15807. {
  15808. name: "Normal",
  15809. height: math.unit(6 + 1 / 12, "feet"),
  15810. default: true
  15811. },
  15812. ]
  15813. ))
  15814. characterMakers.push(() => makeCharacter(
  15815. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15816. {
  15817. front: {
  15818. height: math.unit(9 + 3 / 12, "feet"),
  15819. weight: math.unit(1100, "lb"),
  15820. name: "Front",
  15821. image: {
  15822. source: "./media/characters/braxton/front.svg",
  15823. extra: 1057 / 984,
  15824. bottom: 0.05
  15825. }
  15826. },
  15827. },
  15828. [
  15829. {
  15830. name: "Normal",
  15831. height: math.unit(9 + 3 / 12, "feet")
  15832. },
  15833. {
  15834. name: "Giant",
  15835. height: math.unit(300, "feet"),
  15836. default: true
  15837. },
  15838. {
  15839. name: "Macro",
  15840. height: math.unit(700, "feet")
  15841. },
  15842. {
  15843. name: "Megamacro",
  15844. height: math.unit(6000, "feet")
  15845. },
  15846. ]
  15847. ))
  15848. characterMakers.push(() => makeCharacter(
  15849. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15850. {
  15851. front: {
  15852. height: math.unit(6 + 7 / 12, "feet"),
  15853. weight: math.unit(150, "lb"),
  15854. name: "Front",
  15855. image: {
  15856. source: "./media/characters/blue-feyonics/front.svg",
  15857. extra: 1403 / 1306,
  15858. bottom: 0.047
  15859. }
  15860. },
  15861. },
  15862. [
  15863. {
  15864. name: "Normal",
  15865. height: math.unit(6 + 7 / 12, "feet"),
  15866. default: true
  15867. },
  15868. ]
  15869. ))
  15870. characterMakers.push(() => makeCharacter(
  15871. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15872. {
  15873. front: {
  15874. height: math.unit(1.8, "meters"),
  15875. weight: math.unit(60, "kg"),
  15876. name: "Front",
  15877. image: {
  15878. source: "./media/characters/maxwell/front.svg",
  15879. extra: 2060 / 1873
  15880. }
  15881. },
  15882. },
  15883. [
  15884. {
  15885. name: "Micro",
  15886. height: math.unit(1, "mm")
  15887. },
  15888. {
  15889. name: "Normal",
  15890. height: math.unit(1.8, "meter"),
  15891. default: true
  15892. },
  15893. {
  15894. name: "Macro",
  15895. height: math.unit(30, "meters")
  15896. },
  15897. {
  15898. name: "Megamacro",
  15899. height: math.unit(10, "km")
  15900. },
  15901. ]
  15902. ))
  15903. characterMakers.push(() => makeCharacter(
  15904. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15905. {
  15906. front: {
  15907. height: math.unit(6, "feet"),
  15908. weight: math.unit(150, "lb"),
  15909. name: "Front",
  15910. image: {
  15911. source: "./media/characters/jack/front.svg",
  15912. extra: 1754 / 1640,
  15913. bottom: 0.01
  15914. }
  15915. },
  15916. },
  15917. [
  15918. {
  15919. name: "Normal",
  15920. height: math.unit(80000, "feet"),
  15921. default: true
  15922. },
  15923. {
  15924. name: "Max size",
  15925. height: math.unit(10, "lightyears")
  15926. },
  15927. ]
  15928. ))
  15929. characterMakers.push(() => makeCharacter(
  15930. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15931. {
  15932. urban: {
  15933. height: math.unit(5, "feet"),
  15934. weight: math.unit(240, "lb"),
  15935. name: "Urban",
  15936. image: {
  15937. source: "./media/characters/cafat/urban.svg",
  15938. extra: 1223/1126,
  15939. bottom: 205/1428
  15940. }
  15941. },
  15942. summer: {
  15943. height: math.unit(5, "feet"),
  15944. weight: math.unit(240, "lb"),
  15945. name: "Summer",
  15946. image: {
  15947. source: "./media/characters/cafat/summer.svg",
  15948. extra: 1223/1126,
  15949. bottom: 205/1428
  15950. }
  15951. },
  15952. winter: {
  15953. height: math.unit(5, "feet"),
  15954. weight: math.unit(240, "lb"),
  15955. name: "Winter",
  15956. image: {
  15957. source: "./media/characters/cafat/winter.svg",
  15958. extra: 1223/1126,
  15959. bottom: 205/1428
  15960. }
  15961. },
  15962. lingerie: {
  15963. height: math.unit(5, "feet"),
  15964. weight: math.unit(240, "lb"),
  15965. name: "Lingerie",
  15966. image: {
  15967. source: "./media/characters/cafat/lingerie.svg",
  15968. extra: 1223/1126,
  15969. bottom: 205/1428
  15970. }
  15971. },
  15972. upright: {
  15973. height: math.unit(6.3, "feet"),
  15974. weight: math.unit(240, "lb"),
  15975. name: "Upright",
  15976. image: {
  15977. source: "./media/characters/cafat/upright.svg",
  15978. bottom: 0.01
  15979. }
  15980. },
  15981. uprightFull: {
  15982. height: math.unit(6.3, "feet"),
  15983. weight: math.unit(240, "lb"),
  15984. name: "Upright (Full)",
  15985. image: {
  15986. source: "./media/characters/cafat/upright-full.svg",
  15987. bottom: 0.01
  15988. }
  15989. },
  15990. },
  15991. [
  15992. {
  15993. name: "Small",
  15994. height: math.unit(5, "feet"),
  15995. default: true
  15996. },
  15997. {
  15998. name: "Large",
  15999. height: math.unit(13, "feet")
  16000. },
  16001. ]
  16002. ))
  16003. characterMakers.push(() => makeCharacter(
  16004. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16005. {
  16006. front: {
  16007. height: math.unit(6, "feet"),
  16008. weight: math.unit(150, "lb"),
  16009. name: "Front",
  16010. image: {
  16011. source: "./media/characters/verin-raharra/front.svg",
  16012. extra: 5019 / 4835,
  16013. bottom: 0.023
  16014. }
  16015. },
  16016. },
  16017. [
  16018. {
  16019. name: "Normal",
  16020. height: math.unit(7 + 5 / 12, "feet"),
  16021. default: true
  16022. },
  16023. {
  16024. name: "Upsized",
  16025. height: math.unit(20, "feet")
  16026. },
  16027. ]
  16028. ))
  16029. characterMakers.push(() => makeCharacter(
  16030. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16031. {
  16032. front: {
  16033. height: math.unit(7, "feet"),
  16034. weight: math.unit(230, "lb"),
  16035. name: "Front",
  16036. image: {
  16037. source: "./media/characters/nakata/front.svg",
  16038. extra: 1.005,
  16039. bottom: 0.01
  16040. }
  16041. },
  16042. },
  16043. [
  16044. {
  16045. name: "Normal",
  16046. height: math.unit(7, "feet"),
  16047. default: true
  16048. },
  16049. {
  16050. name: "Big",
  16051. height: math.unit(14, "feet")
  16052. },
  16053. {
  16054. name: "Macro",
  16055. height: math.unit(400, "feet")
  16056. },
  16057. ]
  16058. ))
  16059. characterMakers.push(() => makeCharacter(
  16060. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16061. {
  16062. front: {
  16063. height: math.unit(4.91, "feet"),
  16064. weight: math.unit(100, "lb"),
  16065. name: "Front",
  16066. image: {
  16067. source: "./media/characters/lily/front.svg",
  16068. extra: 1585 / 1415,
  16069. bottom: 0.02
  16070. }
  16071. },
  16072. },
  16073. [
  16074. {
  16075. name: "Normal",
  16076. height: math.unit(4.91, "feet"),
  16077. default: true
  16078. },
  16079. ]
  16080. ))
  16081. characterMakers.push(() => makeCharacter(
  16082. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16083. {
  16084. laying: {
  16085. height: math.unit(4 + 4 / 12, "feet"),
  16086. weight: math.unit(600, "lb"),
  16087. name: "Laying",
  16088. image: {
  16089. source: "./media/characters/sheila/laying.svg",
  16090. extra: 1333 / 1265,
  16091. bottom: 0.16
  16092. }
  16093. },
  16094. },
  16095. [
  16096. {
  16097. name: "Normal",
  16098. height: math.unit(4 + 4 / 12, "feet"),
  16099. default: true
  16100. },
  16101. ]
  16102. ))
  16103. characterMakers.push(() => makeCharacter(
  16104. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16105. {
  16106. front: {
  16107. height: math.unit(6, "feet"),
  16108. weight: math.unit(190, "lb"),
  16109. name: "Front",
  16110. image: {
  16111. source: "./media/characters/sax/front.svg",
  16112. extra: 1187 / 973,
  16113. bottom: 0.042
  16114. }
  16115. },
  16116. },
  16117. [
  16118. {
  16119. name: "Micro",
  16120. height: math.unit(4, "inches"),
  16121. default: true
  16122. },
  16123. ]
  16124. ))
  16125. characterMakers.push(() => makeCharacter(
  16126. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16127. {
  16128. front: {
  16129. height: math.unit(6, "feet"),
  16130. weight: math.unit(150, "lb"),
  16131. name: "Front",
  16132. image: {
  16133. source: "./media/characters/pandora/front.svg",
  16134. extra: 2720 / 2556,
  16135. bottom: 0.015
  16136. }
  16137. },
  16138. back: {
  16139. height: math.unit(6, "feet"),
  16140. weight: math.unit(150, "lb"),
  16141. name: "Back",
  16142. image: {
  16143. source: "./media/characters/pandora/back.svg",
  16144. extra: 2720 / 2556,
  16145. bottom: 0.01
  16146. }
  16147. },
  16148. beans: {
  16149. height: math.unit(6 / 8, "feet"),
  16150. name: "Beans",
  16151. image: {
  16152. source: "./media/characters/pandora/beans.svg"
  16153. }
  16154. },
  16155. collar: {
  16156. height: math.unit(0.31, "feet"),
  16157. name: "Collar",
  16158. image: {
  16159. source: "./media/characters/pandora/collar.svg"
  16160. }
  16161. },
  16162. skirt: {
  16163. height: math.unit(6, "feet"),
  16164. weight: math.unit(150, "lb"),
  16165. name: "Skirt",
  16166. image: {
  16167. source: "./media/characters/pandora/skirt.svg",
  16168. extra: 1622 / 1525,
  16169. bottom: 0.015
  16170. }
  16171. },
  16172. hoodie: {
  16173. height: math.unit(6, "feet"),
  16174. weight: math.unit(150, "lb"),
  16175. name: "Hoodie",
  16176. image: {
  16177. source: "./media/characters/pandora/hoodie.svg",
  16178. extra: 1622 / 1525,
  16179. bottom: 0.015
  16180. }
  16181. },
  16182. casual: {
  16183. height: math.unit(6, "feet"),
  16184. weight: math.unit(150, "lb"),
  16185. name: "Casual",
  16186. image: {
  16187. source: "./media/characters/pandora/casual.svg",
  16188. extra: 1622 / 1525,
  16189. bottom: 0.015
  16190. }
  16191. },
  16192. },
  16193. [
  16194. {
  16195. name: "Normal",
  16196. height: math.unit(6, "feet")
  16197. },
  16198. {
  16199. name: "Big Steppy",
  16200. height: math.unit(1, "km"),
  16201. default: true
  16202. },
  16203. {
  16204. name: "Galactic Steppy",
  16205. height: math.unit(2, "gigameters")
  16206. },
  16207. ]
  16208. ))
  16209. characterMakers.push(() => makeCharacter(
  16210. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16211. {
  16212. side: {
  16213. height: math.unit(10, "feet"),
  16214. weight: math.unit(800, "kg"),
  16215. name: "Side",
  16216. image: {
  16217. source: "./media/characters/venio-darcony/side.svg",
  16218. extra: 1373 / 1003,
  16219. bottom: 0.037
  16220. }
  16221. },
  16222. front: {
  16223. height: math.unit(19, "feet"),
  16224. weight: math.unit(800, "kg"),
  16225. name: "Front",
  16226. image: {
  16227. source: "./media/characters/venio-darcony/front.svg"
  16228. }
  16229. },
  16230. back: {
  16231. height: math.unit(19, "feet"),
  16232. weight: math.unit(800, "kg"),
  16233. name: "Back",
  16234. image: {
  16235. source: "./media/characters/venio-darcony/back.svg"
  16236. }
  16237. },
  16238. sideNsfw: {
  16239. height: math.unit(10, "feet"),
  16240. weight: math.unit(800, "kg"),
  16241. name: "Side (NSFW)",
  16242. image: {
  16243. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16244. extra: 1373 / 1003,
  16245. bottom: 0.037
  16246. }
  16247. },
  16248. frontNsfw: {
  16249. height: math.unit(19, "feet"),
  16250. weight: math.unit(800, "kg"),
  16251. name: "Front (NSFW)",
  16252. image: {
  16253. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16254. }
  16255. },
  16256. backNsfw: {
  16257. height: math.unit(19, "feet"),
  16258. weight: math.unit(800, "kg"),
  16259. name: "Back (NSFW)",
  16260. image: {
  16261. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16262. }
  16263. },
  16264. sideArmored: {
  16265. height: math.unit(10, "feet"),
  16266. weight: math.unit(800, "kg"),
  16267. name: "Side (Armored)",
  16268. image: {
  16269. source: "./media/characters/venio-darcony/side-armored.svg",
  16270. extra: 1373 / 1003,
  16271. bottom: 0.037
  16272. }
  16273. },
  16274. frontArmored: {
  16275. height: math.unit(19, "feet"),
  16276. weight: math.unit(900, "kg"),
  16277. name: "Front (Armored)",
  16278. image: {
  16279. source: "./media/characters/venio-darcony/front-armored.svg"
  16280. }
  16281. },
  16282. backArmored: {
  16283. height: math.unit(19, "feet"),
  16284. weight: math.unit(900, "kg"),
  16285. name: "Back (Armored)",
  16286. image: {
  16287. source: "./media/characters/venio-darcony/back-armored.svg"
  16288. }
  16289. },
  16290. sword: {
  16291. height: math.unit(10, "feet"),
  16292. weight: math.unit(50, "lb"),
  16293. name: "Sword",
  16294. image: {
  16295. source: "./media/characters/venio-darcony/sword.svg"
  16296. }
  16297. },
  16298. },
  16299. [
  16300. {
  16301. name: "Normal",
  16302. height: math.unit(10, "feet")
  16303. },
  16304. {
  16305. name: "Macro",
  16306. height: math.unit(130, "feet"),
  16307. default: true
  16308. },
  16309. {
  16310. name: "Macro+",
  16311. height: math.unit(240, "feet")
  16312. },
  16313. ]
  16314. ))
  16315. characterMakers.push(() => makeCharacter(
  16316. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16317. {
  16318. front: {
  16319. height: math.unit(6, "feet"),
  16320. weight: math.unit(150, "lb"),
  16321. name: "Front",
  16322. image: {
  16323. source: "./media/characters/veski/front.svg",
  16324. extra: 1299 / 1225,
  16325. bottom: 0.04
  16326. }
  16327. },
  16328. back: {
  16329. height: math.unit(6, "feet"),
  16330. weight: math.unit(150, "lb"),
  16331. name: "Back",
  16332. image: {
  16333. source: "./media/characters/veski/back.svg",
  16334. extra: 1299 / 1225,
  16335. bottom: 0.008
  16336. }
  16337. },
  16338. maw: {
  16339. height: math.unit(1.5 * 1.21, "feet"),
  16340. name: "Maw",
  16341. image: {
  16342. source: "./media/characters/veski/maw.svg"
  16343. }
  16344. },
  16345. },
  16346. [
  16347. {
  16348. name: "Macro",
  16349. height: math.unit(2, "km"),
  16350. default: true
  16351. },
  16352. ]
  16353. ))
  16354. characterMakers.push(() => makeCharacter(
  16355. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16356. {
  16357. front: {
  16358. height: math.unit(5 + 7 / 12, "feet"),
  16359. name: "Front",
  16360. image: {
  16361. source: "./media/characters/isabelle/front.svg",
  16362. extra: 2130 / 1976,
  16363. bottom: 0.05
  16364. }
  16365. },
  16366. },
  16367. [
  16368. {
  16369. name: "Supermicro",
  16370. height: math.unit(10, "micrometers")
  16371. },
  16372. {
  16373. name: "Micro",
  16374. height: math.unit(1, "inch")
  16375. },
  16376. {
  16377. name: "Tiny",
  16378. height: math.unit(5, "inches")
  16379. },
  16380. {
  16381. name: "Standard",
  16382. height: math.unit(5 + 7 / 12, "inches")
  16383. },
  16384. {
  16385. name: "Macro",
  16386. height: math.unit(80, "meters"),
  16387. default: true
  16388. },
  16389. {
  16390. name: "Megamacro",
  16391. height: math.unit(250, "meters")
  16392. },
  16393. {
  16394. name: "Gigamacro",
  16395. height: math.unit(5, "km")
  16396. },
  16397. {
  16398. name: "Cosmic",
  16399. height: math.unit(2.5e6, "miles")
  16400. },
  16401. ]
  16402. ))
  16403. characterMakers.push(() => makeCharacter(
  16404. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16405. {
  16406. front: {
  16407. height: math.unit(6, "feet"),
  16408. weight: math.unit(150, "lb"),
  16409. name: "Front",
  16410. image: {
  16411. source: "./media/characters/hanzo/front.svg",
  16412. extra: 374 / 344,
  16413. bottom: 0.02
  16414. }
  16415. },
  16416. },
  16417. [
  16418. {
  16419. name: "Normal",
  16420. height: math.unit(8, "feet"),
  16421. default: true
  16422. },
  16423. ]
  16424. ))
  16425. characterMakers.push(() => makeCharacter(
  16426. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16427. {
  16428. front: {
  16429. height: math.unit(7, "feet"),
  16430. weight: math.unit(130, "lb"),
  16431. name: "Front",
  16432. image: {
  16433. source: "./media/characters/anna/front.svg",
  16434. extra: 169 / 145,
  16435. bottom: 0.06
  16436. }
  16437. },
  16438. full: {
  16439. height: math.unit(4.96, "feet"),
  16440. weight: math.unit(220, "lb"),
  16441. name: "Full",
  16442. image: {
  16443. source: "./media/characters/anna/full.svg",
  16444. extra: 138 / 114,
  16445. bottom: 0.15
  16446. }
  16447. },
  16448. tongue: {
  16449. height: math.unit(2.53, "feet"),
  16450. name: "Tongue",
  16451. image: {
  16452. source: "./media/characters/anna/tongue.svg"
  16453. }
  16454. },
  16455. },
  16456. [
  16457. {
  16458. name: "Normal",
  16459. height: math.unit(7, "feet"),
  16460. default: true
  16461. },
  16462. ]
  16463. ))
  16464. characterMakers.push(() => makeCharacter(
  16465. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16466. {
  16467. front: {
  16468. height: math.unit(7, "feet"),
  16469. weight: math.unit(150, "lb"),
  16470. name: "Front",
  16471. image: {
  16472. source: "./media/characters/ian-corvid/front.svg",
  16473. extra: 150 / 142,
  16474. bottom: 0.02
  16475. }
  16476. },
  16477. back: {
  16478. height: math.unit(7, "feet"),
  16479. weight: math.unit(150, "lb"),
  16480. name: "Back",
  16481. image: {
  16482. source: "./media/characters/ian-corvid/back.svg",
  16483. extra: 150 / 143,
  16484. bottom: 0.01
  16485. }
  16486. },
  16487. stomping: {
  16488. height: math.unit(7, "feet"),
  16489. weight: math.unit(150, "lb"),
  16490. name: "Stomping",
  16491. image: {
  16492. source: "./media/characters/ian-corvid/stomping.svg",
  16493. extra: 76 / 72
  16494. }
  16495. },
  16496. sitting: {
  16497. height: math.unit(7 / 1.8, "feet"),
  16498. weight: math.unit(150, "lb"),
  16499. name: "Sitting",
  16500. image: {
  16501. source: "./media/characters/ian-corvid/sitting.svg",
  16502. extra: 1400 / 1269,
  16503. bottom: 0.15
  16504. }
  16505. },
  16506. },
  16507. [
  16508. {
  16509. name: "Tiny Microw",
  16510. height: math.unit(1, "inch")
  16511. },
  16512. {
  16513. name: "Microw",
  16514. height: math.unit(6, "inches")
  16515. },
  16516. {
  16517. name: "Crow",
  16518. height: math.unit(7 + 1 / 12, "feet"),
  16519. default: true
  16520. },
  16521. {
  16522. name: "Macrow",
  16523. height: math.unit(176, "feet")
  16524. },
  16525. ]
  16526. ))
  16527. characterMakers.push(() => makeCharacter(
  16528. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16529. {
  16530. front: {
  16531. height: math.unit(5 + 7 / 12, "feet"),
  16532. weight: math.unit(147, "lb"),
  16533. name: "Front",
  16534. image: {
  16535. source: "./media/characters/natalie-kellon/front.svg",
  16536. extra: 1214 / 1141,
  16537. bottom: 0.02
  16538. }
  16539. },
  16540. },
  16541. [
  16542. {
  16543. name: "Micro",
  16544. height: math.unit(1 / 16, "inch")
  16545. },
  16546. {
  16547. name: "Tiny",
  16548. height: math.unit(4, "inches")
  16549. },
  16550. {
  16551. name: "Normal",
  16552. height: math.unit(5 + 7 / 12, "feet"),
  16553. default: true
  16554. },
  16555. {
  16556. name: "Amazon",
  16557. height: math.unit(12, "feet")
  16558. },
  16559. {
  16560. name: "Giantess",
  16561. height: math.unit(160, "meters")
  16562. },
  16563. {
  16564. name: "Titaness",
  16565. height: math.unit(800, "meters")
  16566. },
  16567. ]
  16568. ))
  16569. characterMakers.push(() => makeCharacter(
  16570. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16571. {
  16572. front: {
  16573. height: math.unit(6, "feet"),
  16574. weight: math.unit(150, "lb"),
  16575. name: "Front",
  16576. image: {
  16577. source: "./media/characters/alluria/front.svg",
  16578. extra: 806 / 738,
  16579. bottom: 0.01
  16580. }
  16581. },
  16582. side: {
  16583. height: math.unit(6, "feet"),
  16584. weight: math.unit(150, "lb"),
  16585. name: "Side",
  16586. image: {
  16587. source: "./media/characters/alluria/side.svg",
  16588. extra: 800 / 750,
  16589. }
  16590. },
  16591. back: {
  16592. height: math.unit(6, "feet"),
  16593. weight: math.unit(150, "lb"),
  16594. name: "Back",
  16595. image: {
  16596. source: "./media/characters/alluria/back.svg",
  16597. extra: 806 / 738,
  16598. }
  16599. },
  16600. frontMaid: {
  16601. height: math.unit(6, "feet"),
  16602. weight: math.unit(150, "lb"),
  16603. name: "Front (Maid)",
  16604. image: {
  16605. source: "./media/characters/alluria/front-maid.svg",
  16606. extra: 806 / 738,
  16607. bottom: 0.01
  16608. }
  16609. },
  16610. sideMaid: {
  16611. height: math.unit(6, "feet"),
  16612. weight: math.unit(150, "lb"),
  16613. name: "Side (Maid)",
  16614. image: {
  16615. source: "./media/characters/alluria/side-maid.svg",
  16616. extra: 800 / 750,
  16617. bottom: 0.005
  16618. }
  16619. },
  16620. backMaid: {
  16621. height: math.unit(6, "feet"),
  16622. weight: math.unit(150, "lb"),
  16623. name: "Back (Maid)",
  16624. image: {
  16625. source: "./media/characters/alluria/back-maid.svg",
  16626. extra: 806 / 738,
  16627. }
  16628. },
  16629. },
  16630. [
  16631. {
  16632. name: "Micro",
  16633. height: math.unit(6, "inches"),
  16634. default: true
  16635. },
  16636. ]
  16637. ))
  16638. characterMakers.push(() => makeCharacter(
  16639. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16640. {
  16641. front: {
  16642. height: math.unit(6, "feet"),
  16643. weight: math.unit(150, "lb"),
  16644. name: "Front",
  16645. image: {
  16646. source: "./media/characters/kyle/front.svg",
  16647. extra: 1069 / 962,
  16648. bottom: 77.228 / 1727.45
  16649. }
  16650. },
  16651. },
  16652. [
  16653. {
  16654. name: "Macro",
  16655. height: math.unit(150, "feet"),
  16656. default: true
  16657. },
  16658. ]
  16659. ))
  16660. characterMakers.push(() => makeCharacter(
  16661. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16662. {
  16663. front: {
  16664. height: math.unit(6, "feet"),
  16665. weight: math.unit(300, "lb"),
  16666. name: "Front",
  16667. image: {
  16668. source: "./media/characters/duncan/front.svg",
  16669. extra: 1650 / 1482,
  16670. bottom: 0.05
  16671. }
  16672. },
  16673. },
  16674. [
  16675. {
  16676. name: "Macro",
  16677. height: math.unit(100, "feet"),
  16678. default: true
  16679. },
  16680. ]
  16681. ))
  16682. characterMakers.push(() => makeCharacter(
  16683. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16684. {
  16685. front: {
  16686. height: math.unit(5 + 4 / 12, "feet"),
  16687. weight: math.unit(220, "lb"),
  16688. name: "Front",
  16689. image: {
  16690. source: "./media/characters/memory/front.svg",
  16691. extra: 3641 / 3545,
  16692. bottom: 0.03
  16693. }
  16694. },
  16695. back: {
  16696. height: math.unit(5 + 4 / 12, "feet"),
  16697. weight: math.unit(220, "lb"),
  16698. name: "Back",
  16699. image: {
  16700. source: "./media/characters/memory/back.svg",
  16701. extra: 3641 / 3545,
  16702. bottom: 0.025
  16703. }
  16704. },
  16705. frontSkirt: {
  16706. height: math.unit(5 + 4 / 12, "feet"),
  16707. weight: math.unit(220, "lb"),
  16708. name: "Front (Skirt)",
  16709. image: {
  16710. source: "./media/characters/memory/front-skirt.svg",
  16711. extra: 3641 / 3545,
  16712. bottom: 0.03
  16713. }
  16714. },
  16715. frontDress: {
  16716. height: math.unit(5 + 4 / 12, "feet"),
  16717. weight: math.unit(220, "lb"),
  16718. name: "Front (Dress)",
  16719. image: {
  16720. source: "./media/characters/memory/front-dress.svg",
  16721. extra: 3641 / 3545,
  16722. bottom: 0.03
  16723. }
  16724. },
  16725. },
  16726. [
  16727. {
  16728. name: "Micro",
  16729. height: math.unit(6, "inches"),
  16730. default: true
  16731. },
  16732. {
  16733. name: "Normal",
  16734. height: math.unit(5 + 4 / 12, "feet")
  16735. },
  16736. ]
  16737. ))
  16738. characterMakers.push(() => makeCharacter(
  16739. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16740. {
  16741. front: {
  16742. height: math.unit(4 + 11 / 12, "feet"),
  16743. weight: math.unit(100, "lb"),
  16744. name: "Front",
  16745. image: {
  16746. source: "./media/characters/luno/front.svg",
  16747. extra: 1535 / 1487,
  16748. bottom: 0.03
  16749. }
  16750. },
  16751. },
  16752. [
  16753. {
  16754. name: "Micro",
  16755. height: math.unit(3, "inches")
  16756. },
  16757. {
  16758. name: "Normal",
  16759. height: math.unit(4 + 11 / 12, "feet"),
  16760. default: true
  16761. },
  16762. {
  16763. name: "Macro",
  16764. height: math.unit(300, "feet")
  16765. },
  16766. {
  16767. name: "Megamacro",
  16768. height: math.unit(700, "miles")
  16769. },
  16770. ]
  16771. ))
  16772. characterMakers.push(() => makeCharacter(
  16773. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16774. {
  16775. front: {
  16776. height: math.unit(6 + 2 / 12, "feet"),
  16777. weight: math.unit(170, "lb"),
  16778. name: "Front",
  16779. image: {
  16780. source: "./media/characters/jamesy/front.svg",
  16781. extra: 440 / 382,
  16782. bottom: 0.005
  16783. }
  16784. },
  16785. },
  16786. [
  16787. {
  16788. name: "Micro",
  16789. height: math.unit(3, "inches")
  16790. },
  16791. {
  16792. name: "Normal",
  16793. height: math.unit(6 + 2 / 12, "feet"),
  16794. default: true
  16795. },
  16796. {
  16797. name: "Macro",
  16798. height: math.unit(300, "feet")
  16799. },
  16800. {
  16801. name: "Megamacro",
  16802. height: math.unit(700, "miles")
  16803. },
  16804. ]
  16805. ))
  16806. characterMakers.push(() => makeCharacter(
  16807. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16808. {
  16809. front: {
  16810. height: math.unit(6, "feet"),
  16811. weight: math.unit(160, "lb"),
  16812. name: "Front",
  16813. image: {
  16814. source: "./media/characters/mark/front.svg",
  16815. extra: 3300 / 3100,
  16816. bottom: 136.42 / 3440.47
  16817. }
  16818. },
  16819. },
  16820. [
  16821. {
  16822. name: "Macro",
  16823. height: math.unit(120, "meters")
  16824. },
  16825. {
  16826. name: "Bigger Macro",
  16827. height: math.unit(350, "meters")
  16828. },
  16829. {
  16830. name: "Megamacro",
  16831. height: math.unit(8, "km"),
  16832. default: true
  16833. },
  16834. {
  16835. name: "Continental",
  16836. height: math.unit(4550, "km")
  16837. },
  16838. {
  16839. name: "Planetary",
  16840. height: math.unit(65000, "km")
  16841. },
  16842. ]
  16843. ))
  16844. characterMakers.push(() => makeCharacter(
  16845. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16846. {
  16847. front: {
  16848. height: math.unit(6, "feet"),
  16849. weight: math.unit(400, "lb"),
  16850. name: "Front",
  16851. image: {
  16852. source: "./media/characters/mac/front.svg",
  16853. extra: 1048 / 987.7,
  16854. bottom: 60 / 1107.6,
  16855. }
  16856. },
  16857. },
  16858. [
  16859. {
  16860. name: "Macro",
  16861. height: math.unit(500, "feet"),
  16862. default: true
  16863. },
  16864. ]
  16865. ))
  16866. characterMakers.push(() => makeCharacter(
  16867. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16868. {
  16869. front: {
  16870. height: math.unit(5 + 2 / 12, "feet"),
  16871. weight: math.unit(190, "lb"),
  16872. name: "Front",
  16873. image: {
  16874. source: "./media/characters/bari/front.svg",
  16875. extra: 3156 / 2880,
  16876. bottom: 0.03
  16877. }
  16878. },
  16879. back: {
  16880. height: math.unit(5 + 2 / 12, "feet"),
  16881. weight: math.unit(190, "lb"),
  16882. name: "Back",
  16883. image: {
  16884. source: "./media/characters/bari/back.svg",
  16885. extra: 3260 / 2834,
  16886. bottom: 0.025
  16887. }
  16888. },
  16889. frontPlush: {
  16890. height: math.unit(5 + 2 / 12, "feet"),
  16891. weight: math.unit(190, "lb"),
  16892. name: "Front (Plush)",
  16893. image: {
  16894. source: "./media/characters/bari/front-plush.svg",
  16895. extra: 1112 / 1061,
  16896. bottom: 0.002
  16897. }
  16898. },
  16899. },
  16900. [
  16901. {
  16902. name: "Micro",
  16903. height: math.unit(3, "inches")
  16904. },
  16905. {
  16906. name: "Normal",
  16907. height: math.unit(5 + 2 / 12, "feet"),
  16908. default: true
  16909. },
  16910. {
  16911. name: "Macro",
  16912. height: math.unit(20, "feet")
  16913. },
  16914. ]
  16915. ))
  16916. characterMakers.push(() => makeCharacter(
  16917. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16918. {
  16919. front: {
  16920. height: math.unit(6 + 1 / 12, "feet"),
  16921. weight: math.unit(275, "lb"),
  16922. name: "Front",
  16923. image: {
  16924. source: "./media/characters/hunter-misha-raven/front.svg"
  16925. }
  16926. },
  16927. },
  16928. [
  16929. {
  16930. name: "Mortal",
  16931. height: math.unit(6 + 1 / 12, "feet")
  16932. },
  16933. {
  16934. name: "Divine",
  16935. height: math.unit(1.12134e34, "parsecs"),
  16936. default: true
  16937. },
  16938. ]
  16939. ))
  16940. characterMakers.push(() => makeCharacter(
  16941. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16942. {
  16943. front: {
  16944. height: math.unit(6 + 3 / 12, "feet"),
  16945. weight: math.unit(220, "lb"),
  16946. name: "Front",
  16947. image: {
  16948. source: "./media/characters/max-calore/front.svg",
  16949. extra: 1700 / 1648,
  16950. bottom: 0.01
  16951. }
  16952. },
  16953. back: {
  16954. height: math.unit(6 + 3 / 12, "feet"),
  16955. weight: math.unit(220, "lb"),
  16956. name: "Back",
  16957. image: {
  16958. source: "./media/characters/max-calore/back.svg",
  16959. extra: 1700 / 1648,
  16960. bottom: 0.01
  16961. }
  16962. },
  16963. },
  16964. [
  16965. {
  16966. name: "Normal",
  16967. height: math.unit(6 + 3 / 12, "feet"),
  16968. default: true
  16969. },
  16970. ]
  16971. ))
  16972. characterMakers.push(() => makeCharacter(
  16973. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16974. {
  16975. side: {
  16976. height: math.unit(2 + 8 / 12, "feet"),
  16977. weight: math.unit(99, "lb"),
  16978. name: "Side",
  16979. image: {
  16980. source: "./media/characters/aspen/side.svg",
  16981. extra: 152 / 138,
  16982. bottom: 0.032
  16983. }
  16984. },
  16985. },
  16986. [
  16987. {
  16988. name: "Normal",
  16989. height: math.unit(2 + 8 / 12, "feet"),
  16990. default: true
  16991. },
  16992. ]
  16993. ))
  16994. characterMakers.push(() => makeCharacter(
  16995. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16996. {
  16997. side: {
  16998. height: math.unit(3 + 2 / 12, "feet"),
  16999. weight: math.unit(224, "lb"),
  17000. name: "Side",
  17001. image: {
  17002. source: "./media/characters/sheila-feral-wolf/side.svg",
  17003. extra: 179 / 166,
  17004. bottom: 0.03
  17005. }
  17006. },
  17007. },
  17008. [
  17009. {
  17010. name: "Normal",
  17011. height: math.unit(3 + 2 / 12, "feet"),
  17012. default: true
  17013. },
  17014. ]
  17015. ))
  17016. characterMakers.push(() => makeCharacter(
  17017. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17018. {
  17019. side: {
  17020. height: math.unit(1 + 9 / 12, "feet"),
  17021. weight: math.unit(38, "lb"),
  17022. name: "Side",
  17023. image: {
  17024. source: "./media/characters/michelle/side.svg",
  17025. extra: 147 / 136.7,
  17026. bottom: 0.03
  17027. }
  17028. },
  17029. },
  17030. [
  17031. {
  17032. name: "Normal",
  17033. height: math.unit(1 + 9 / 12, "feet"),
  17034. default: true
  17035. },
  17036. ]
  17037. ))
  17038. characterMakers.push(() => makeCharacter(
  17039. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17040. {
  17041. front: {
  17042. height: math.unit(1 + 1 / 12, "feet"),
  17043. weight: math.unit(18, "lb"),
  17044. name: "Front",
  17045. image: {
  17046. source: "./media/characters/nino/front.svg"
  17047. }
  17048. },
  17049. },
  17050. [
  17051. {
  17052. name: "Normal",
  17053. height: math.unit(1 + 1 / 12, "feet"),
  17054. default: true
  17055. },
  17056. ]
  17057. ))
  17058. characterMakers.push(() => makeCharacter(
  17059. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17060. {
  17061. front: {
  17062. height: math.unit(1, "feet"),
  17063. weight: math.unit(16, "lb"),
  17064. name: "Front",
  17065. image: {
  17066. source: "./media/characters/viola/front.svg"
  17067. }
  17068. },
  17069. },
  17070. [
  17071. {
  17072. name: "Normal",
  17073. height: math.unit(1, "feet"),
  17074. default: true
  17075. },
  17076. ]
  17077. ))
  17078. characterMakers.push(() => makeCharacter(
  17079. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17080. {
  17081. front: {
  17082. height: math.unit(6 + 5 / 12, "feet"),
  17083. weight: math.unit(580, "lb"),
  17084. name: "Front",
  17085. image: {
  17086. source: "./media/characters/atlas/front.svg",
  17087. extra: 298.5 / 290,
  17088. bottom: 0.015
  17089. }
  17090. },
  17091. },
  17092. [
  17093. {
  17094. name: "Normal",
  17095. height: math.unit(6 + 5 / 12, "feet"),
  17096. default: true
  17097. },
  17098. ]
  17099. ))
  17100. characterMakers.push(() => makeCharacter(
  17101. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17102. {
  17103. side: {
  17104. height: math.unit(1 + 10 / 12, "feet"),
  17105. weight: math.unit(25, "lb"),
  17106. name: "Side",
  17107. image: {
  17108. source: "./media/characters/davy/side.svg",
  17109. extra: 200 / 170,
  17110. bottom: 0.01
  17111. }
  17112. },
  17113. },
  17114. [
  17115. {
  17116. name: "Normal",
  17117. height: math.unit(1 + 10 / 12, "feet"),
  17118. default: true
  17119. },
  17120. ]
  17121. ))
  17122. characterMakers.push(() => makeCharacter(
  17123. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17124. {
  17125. side: {
  17126. height: math.unit(4 + 8 / 12, "feet"),
  17127. weight: math.unit(166, "lb"),
  17128. name: "Side",
  17129. image: {
  17130. source: "./media/characters/fiona/side.svg",
  17131. extra: 232 / 220,
  17132. bottom: 0.03
  17133. }
  17134. },
  17135. },
  17136. [
  17137. {
  17138. name: "Normal",
  17139. height: math.unit(4 + 8 / 12, "feet"),
  17140. default: true
  17141. },
  17142. ]
  17143. ))
  17144. characterMakers.push(() => makeCharacter(
  17145. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17146. {
  17147. front: {
  17148. height: math.unit(2, "feet"),
  17149. weight: math.unit(62, "lb"),
  17150. name: "Front",
  17151. image: {
  17152. source: "./media/characters/lyla/front.svg",
  17153. bottom: 0.1
  17154. }
  17155. },
  17156. },
  17157. [
  17158. {
  17159. name: "Normal",
  17160. height: math.unit(2, "feet"),
  17161. default: true
  17162. },
  17163. ]
  17164. ))
  17165. characterMakers.push(() => makeCharacter(
  17166. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17167. {
  17168. side: {
  17169. height: math.unit(1.8, "feet"),
  17170. weight: math.unit(44, "lb"),
  17171. name: "Side",
  17172. image: {
  17173. source: "./media/characters/perseus/side.svg",
  17174. bottom: 0.21
  17175. }
  17176. },
  17177. },
  17178. [
  17179. {
  17180. name: "Normal",
  17181. height: math.unit(1.8, "feet"),
  17182. default: true
  17183. },
  17184. ]
  17185. ))
  17186. characterMakers.push(() => makeCharacter(
  17187. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17188. {
  17189. side: {
  17190. height: math.unit(4 + 2 / 12, "feet"),
  17191. weight: math.unit(20, "lb"),
  17192. name: "Side",
  17193. image: {
  17194. source: "./media/characters/remus/side.svg"
  17195. }
  17196. },
  17197. },
  17198. [
  17199. {
  17200. name: "Normal",
  17201. height: math.unit(4 + 2 / 12, "feet"),
  17202. default: true
  17203. },
  17204. ]
  17205. ))
  17206. characterMakers.push(() => makeCharacter(
  17207. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17208. {
  17209. front: {
  17210. height: math.unit(4 + 11 / 12, "feet"),
  17211. weight: math.unit(114, "lb"),
  17212. name: "Front",
  17213. image: {
  17214. source: "./media/characters/raf/front.svg",
  17215. bottom: 20.5 / 1863
  17216. }
  17217. },
  17218. side: {
  17219. height: math.unit(4 + 11 / 12, "feet"),
  17220. weight: math.unit(114, "lb"),
  17221. name: "Side",
  17222. image: {
  17223. source: "./media/characters/raf/side.svg",
  17224. bottom: 22 / 1822
  17225. }
  17226. },
  17227. },
  17228. [
  17229. {
  17230. name: "Micro",
  17231. height: math.unit(2, "inches")
  17232. },
  17233. {
  17234. name: "Normal",
  17235. height: math.unit(4 + 11 / 12, "feet"),
  17236. default: true
  17237. },
  17238. {
  17239. name: "Macro",
  17240. height: math.unit(70, "feet")
  17241. },
  17242. ]
  17243. ))
  17244. characterMakers.push(() => makeCharacter(
  17245. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17246. {
  17247. front: {
  17248. height: math.unit(1.5, "meters"),
  17249. weight: math.unit(68, "kg"),
  17250. name: "Front",
  17251. image: {
  17252. source: "./media/characters/liam-einarr/front.svg",
  17253. extra: 2822 / 2666
  17254. }
  17255. },
  17256. back: {
  17257. height: math.unit(1.5, "meters"),
  17258. weight: math.unit(68, "kg"),
  17259. name: "Back",
  17260. image: {
  17261. source: "./media/characters/liam-einarr/back.svg",
  17262. extra: 2822 / 2666,
  17263. bottom: 0.015
  17264. }
  17265. },
  17266. },
  17267. [
  17268. {
  17269. name: "Normal",
  17270. height: math.unit(1.5, "meters"),
  17271. default: true
  17272. },
  17273. {
  17274. name: "Macro",
  17275. height: math.unit(150, "meters")
  17276. },
  17277. {
  17278. name: "Megamacro",
  17279. height: math.unit(35, "km")
  17280. },
  17281. ]
  17282. ))
  17283. characterMakers.push(() => makeCharacter(
  17284. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17285. {
  17286. front: {
  17287. height: math.unit(6, "feet"),
  17288. weight: math.unit(75, "kg"),
  17289. name: "Front",
  17290. image: {
  17291. source: "./media/characters/linda/front.svg",
  17292. extra: 930 / 874,
  17293. bottom: 0.004
  17294. }
  17295. },
  17296. },
  17297. [
  17298. {
  17299. name: "Normal",
  17300. height: math.unit(6, "feet"),
  17301. default: true
  17302. },
  17303. ]
  17304. ))
  17305. characterMakers.push(() => makeCharacter(
  17306. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17307. {
  17308. front: {
  17309. height: math.unit(6 + 8 / 12, "feet"),
  17310. weight: math.unit(220, "lb"),
  17311. name: "Front",
  17312. image: {
  17313. source: "./media/characters/caylex/front.svg",
  17314. extra: 821 / 772,
  17315. bottom: 0.07
  17316. }
  17317. },
  17318. back: {
  17319. height: math.unit(6 + 8 / 12, "feet"),
  17320. weight: math.unit(220, "lb"),
  17321. name: "Back",
  17322. image: {
  17323. source: "./media/characters/caylex/back.svg",
  17324. extra: 821 / 772,
  17325. bottom: 0.022
  17326. }
  17327. },
  17328. hand: {
  17329. height: math.unit(1.25, "feet"),
  17330. name: "Hand",
  17331. image: {
  17332. source: "./media/characters/caylex/hand.svg"
  17333. }
  17334. },
  17335. foot: {
  17336. height: math.unit(1.6, "feet"),
  17337. name: "Foot",
  17338. image: {
  17339. source: "./media/characters/caylex/foot.svg"
  17340. }
  17341. },
  17342. armored: {
  17343. height: math.unit(6 + 8 / 12, "feet"),
  17344. weight: math.unit(250, "lb"),
  17345. name: "Armored",
  17346. image: {
  17347. source: "./media/characters/caylex/armored.svg",
  17348. extra: 1420 / 1310,
  17349. bottom: 0.045
  17350. }
  17351. },
  17352. },
  17353. [
  17354. {
  17355. name: "Normal",
  17356. height: math.unit(6 + 8 / 12, "feet"),
  17357. default: true
  17358. },
  17359. {
  17360. name: "Normal+",
  17361. height: math.unit(12, "feet")
  17362. },
  17363. ]
  17364. ))
  17365. characterMakers.push(() => makeCharacter(
  17366. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17367. {
  17368. front: {
  17369. height: math.unit(7 + 6 / 12, "feet"),
  17370. weight: math.unit(288, "lb"),
  17371. name: "Front",
  17372. image: {
  17373. source: "./media/characters/alana/front.svg",
  17374. extra: 679 / 653,
  17375. bottom: 22.5 / 701
  17376. }
  17377. },
  17378. },
  17379. [
  17380. {
  17381. name: "Normal",
  17382. height: math.unit(7 + 6 / 12, "feet")
  17383. },
  17384. {
  17385. name: "Large",
  17386. height: math.unit(50, "feet")
  17387. },
  17388. {
  17389. name: "Macro",
  17390. height: math.unit(100, "feet"),
  17391. default: true
  17392. },
  17393. {
  17394. name: "Macro+",
  17395. height: math.unit(200, "feet")
  17396. },
  17397. ]
  17398. ))
  17399. characterMakers.push(() => makeCharacter(
  17400. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17401. {
  17402. front: {
  17403. height: math.unit(6 + 1 / 12, "feet"),
  17404. weight: math.unit(210, "lb"),
  17405. name: "Front",
  17406. image: {
  17407. source: "./media/characters/hasani/front.svg",
  17408. extra: 244 / 232,
  17409. bottom: 0.01
  17410. }
  17411. },
  17412. back: {
  17413. height: math.unit(6 + 1 / 12, "feet"),
  17414. weight: math.unit(210, "lb"),
  17415. name: "Back",
  17416. image: {
  17417. source: "./media/characters/hasani/back.svg",
  17418. extra: 244 / 232,
  17419. bottom: 0.01
  17420. }
  17421. },
  17422. },
  17423. [
  17424. {
  17425. name: "Normal",
  17426. height: math.unit(6 + 1 / 12, "feet")
  17427. },
  17428. {
  17429. name: "Macro",
  17430. height: math.unit(175, "feet"),
  17431. default: true
  17432. },
  17433. ]
  17434. ))
  17435. characterMakers.push(() => makeCharacter(
  17436. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17437. {
  17438. front: {
  17439. height: math.unit(1.82, "meters"),
  17440. weight: math.unit(140, "lb"),
  17441. name: "Front",
  17442. image: {
  17443. source: "./media/characters/nita/front.svg",
  17444. extra: 2473 / 2363,
  17445. bottom: 0.01
  17446. }
  17447. },
  17448. },
  17449. [
  17450. {
  17451. name: "Normal",
  17452. height: math.unit(1.82, "m")
  17453. },
  17454. {
  17455. name: "Macro",
  17456. height: math.unit(300, "m")
  17457. },
  17458. {
  17459. name: "Mistake Canon",
  17460. height: math.unit(0.5, "miles"),
  17461. default: true
  17462. },
  17463. {
  17464. name: "Big Mistake",
  17465. height: math.unit(13, "miles")
  17466. },
  17467. {
  17468. name: "Playing God",
  17469. height: math.unit(2450, "miles")
  17470. },
  17471. ]
  17472. ))
  17473. characterMakers.push(() => makeCharacter(
  17474. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17475. {
  17476. front: {
  17477. height: math.unit(4, "feet"),
  17478. weight: math.unit(120, "lb"),
  17479. name: "Front",
  17480. image: {
  17481. source: "./media/characters/shiriko/front.svg",
  17482. extra: 970/934,
  17483. bottom: 5/975
  17484. }
  17485. },
  17486. },
  17487. [
  17488. {
  17489. name: "Normal",
  17490. height: math.unit(4, "feet"),
  17491. default: true
  17492. },
  17493. ]
  17494. ))
  17495. characterMakers.push(() => makeCharacter(
  17496. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17497. {
  17498. front: {
  17499. height: math.unit(6, "feet"),
  17500. name: "front",
  17501. image: {
  17502. source: "./media/characters/deja/front.svg",
  17503. extra: 926 / 840,
  17504. bottom: 0.07
  17505. }
  17506. },
  17507. },
  17508. [
  17509. {
  17510. name: "Planck Length",
  17511. height: math.unit(1.6e-35, "meters")
  17512. },
  17513. {
  17514. name: "Normal",
  17515. height: math.unit(30.48, "meters"),
  17516. default: true
  17517. },
  17518. {
  17519. name: "Universal",
  17520. height: math.unit(8.8e26, "meters")
  17521. },
  17522. ]
  17523. ))
  17524. characterMakers.push(() => makeCharacter(
  17525. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17526. {
  17527. side: {
  17528. height: math.unit(8, "feet"),
  17529. weight: math.unit(6300, "lb"),
  17530. name: "Side",
  17531. image: {
  17532. source: "./media/characters/anima/side.svg",
  17533. bottom: 0.035
  17534. }
  17535. },
  17536. },
  17537. [
  17538. {
  17539. name: "Normal",
  17540. height: math.unit(8, "feet"),
  17541. default: true
  17542. },
  17543. ]
  17544. ))
  17545. characterMakers.push(() => makeCharacter(
  17546. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17547. {
  17548. front: {
  17549. height: math.unit(8, "feet"),
  17550. weight: math.unit(350, "lb"),
  17551. name: "Front",
  17552. image: {
  17553. source: "./media/characters/bianca/front.svg",
  17554. extra: 234 / 225,
  17555. bottom: 0.03
  17556. }
  17557. },
  17558. },
  17559. [
  17560. {
  17561. name: "Normal",
  17562. height: math.unit(8, "feet"),
  17563. default: true
  17564. },
  17565. ]
  17566. ))
  17567. characterMakers.push(() => makeCharacter(
  17568. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17569. {
  17570. front: {
  17571. height: math.unit(6, "feet"),
  17572. weight: math.unit(150, "lb"),
  17573. name: "Front",
  17574. image: {
  17575. source: "./media/characters/adinia/front.svg",
  17576. extra: 1845 / 1672,
  17577. bottom: 0.02
  17578. }
  17579. },
  17580. back: {
  17581. height: math.unit(6, "feet"),
  17582. weight: math.unit(150, "lb"),
  17583. name: "Back",
  17584. image: {
  17585. source: "./media/characters/adinia/back.svg",
  17586. extra: 1845 / 1672,
  17587. bottom: 0.002
  17588. }
  17589. },
  17590. },
  17591. [
  17592. {
  17593. name: "Normal",
  17594. height: math.unit(11 + 5 / 12, "feet"),
  17595. default: true
  17596. },
  17597. ]
  17598. ))
  17599. characterMakers.push(() => makeCharacter(
  17600. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17601. {
  17602. front: {
  17603. height: math.unit(3, "meters"),
  17604. weight: math.unit(200, "kg"),
  17605. name: "Front",
  17606. image: {
  17607. source: "./media/characters/lykasa/front.svg",
  17608. extra: 1076 / 976,
  17609. bottom: 0.06
  17610. }
  17611. },
  17612. },
  17613. [
  17614. {
  17615. name: "Normal",
  17616. height: math.unit(3, "meters")
  17617. },
  17618. {
  17619. name: "Kaiju",
  17620. height: math.unit(120, "meters"),
  17621. default: true
  17622. },
  17623. {
  17624. name: "Mega Kaiju",
  17625. height: math.unit(240, "km")
  17626. },
  17627. {
  17628. name: "Giga Kaiju",
  17629. height: math.unit(400, "megameters")
  17630. },
  17631. {
  17632. name: "Tera Kaiju",
  17633. height: math.unit(800, "gigameters")
  17634. },
  17635. {
  17636. name: "Kaiju Dragon Goddess",
  17637. height: math.unit(26, "zettaparsecs")
  17638. },
  17639. ]
  17640. ))
  17641. characterMakers.push(() => makeCharacter(
  17642. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17643. {
  17644. side: {
  17645. height: math.unit(283 / 124 * 6, "feet"),
  17646. weight: math.unit(35000, "lb"),
  17647. name: "Side",
  17648. image: {
  17649. source: "./media/characters/malfaren/side.svg",
  17650. extra: 2500 / 1010,
  17651. bottom: 0.01
  17652. }
  17653. },
  17654. front: {
  17655. height: math.unit(22.36, "feet"),
  17656. weight: math.unit(35000, "lb"),
  17657. name: "Front",
  17658. image: {
  17659. source: "./media/characters/malfaren/front.svg",
  17660. extra: 1631 / 1476,
  17661. bottom: 0.01
  17662. }
  17663. },
  17664. maw: {
  17665. height: math.unit(6.9, "feet"),
  17666. name: "Maw",
  17667. image: {
  17668. source: "./media/characters/malfaren/maw.svg"
  17669. }
  17670. },
  17671. },
  17672. [
  17673. {
  17674. name: "Big",
  17675. height: math.unit(283 / 162 * 6, "feet"),
  17676. },
  17677. {
  17678. name: "Bigger",
  17679. height: math.unit(283 / 124 * 6, "feet")
  17680. },
  17681. {
  17682. name: "Massive",
  17683. height: math.unit(283 / 92 * 6, "feet"),
  17684. default: true
  17685. },
  17686. {
  17687. name: "👀💦",
  17688. height: math.unit(283 / 73 * 6, "feet"),
  17689. },
  17690. ]
  17691. ))
  17692. characterMakers.push(() => makeCharacter(
  17693. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17694. {
  17695. front: {
  17696. height: math.unit(1.7, "m"),
  17697. weight: math.unit(70, "kg"),
  17698. name: "Front",
  17699. image: {
  17700. source: "./media/characters/kernel/front.svg",
  17701. extra: 222 / 210,
  17702. bottom: 0.007
  17703. }
  17704. },
  17705. },
  17706. [
  17707. {
  17708. name: "Nano",
  17709. height: math.unit(17, "micrometers")
  17710. },
  17711. {
  17712. name: "Micro",
  17713. height: math.unit(1.7, "mm")
  17714. },
  17715. {
  17716. name: "Small",
  17717. height: math.unit(1.7, "cm")
  17718. },
  17719. {
  17720. name: "Normal",
  17721. height: math.unit(1.7, "m"),
  17722. default: true
  17723. },
  17724. ]
  17725. ))
  17726. characterMakers.push(() => makeCharacter(
  17727. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17728. {
  17729. front: {
  17730. height: math.unit(1.75, "meters"),
  17731. weight: math.unit(65, "kg"),
  17732. name: "Front",
  17733. image: {
  17734. source: "./media/characters/jayne-folest/front.svg",
  17735. extra: 2115 / 2007,
  17736. bottom: 0.02
  17737. }
  17738. },
  17739. back: {
  17740. height: math.unit(1.75, "meters"),
  17741. weight: math.unit(65, "kg"),
  17742. name: "Back",
  17743. image: {
  17744. source: "./media/characters/jayne-folest/back.svg",
  17745. extra: 2115 / 2007,
  17746. bottom: 0.005
  17747. }
  17748. },
  17749. frontClothed: {
  17750. height: math.unit(1.75, "meters"),
  17751. weight: math.unit(65, "kg"),
  17752. name: "Front (Clothed)",
  17753. image: {
  17754. source: "./media/characters/jayne-folest/front-clothed.svg",
  17755. extra: 2115 / 2007,
  17756. bottom: 0.035
  17757. }
  17758. },
  17759. hand: {
  17760. height: math.unit(1 / 1.260, "feet"),
  17761. name: "Hand",
  17762. image: {
  17763. source: "./media/characters/jayne-folest/hand.svg"
  17764. }
  17765. },
  17766. foot: {
  17767. height: math.unit(1 / 0.918, "feet"),
  17768. name: "Foot",
  17769. image: {
  17770. source: "./media/characters/jayne-folest/foot.svg"
  17771. }
  17772. },
  17773. },
  17774. [
  17775. {
  17776. name: "Micro",
  17777. height: math.unit(4, "cm")
  17778. },
  17779. {
  17780. name: "Normal",
  17781. height: math.unit(1.75, "meters")
  17782. },
  17783. {
  17784. name: "Macro",
  17785. height: math.unit(47.5, "meters"),
  17786. default: true
  17787. },
  17788. ]
  17789. ))
  17790. characterMakers.push(() => makeCharacter(
  17791. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17792. {
  17793. front: {
  17794. height: math.unit(180, "cm"),
  17795. weight: math.unit(70, "kg"),
  17796. name: "Front",
  17797. image: {
  17798. source: "./media/characters/algier/front.svg",
  17799. extra: 596 / 572,
  17800. bottom: 0.04
  17801. }
  17802. },
  17803. back: {
  17804. height: math.unit(180, "cm"),
  17805. weight: math.unit(70, "kg"),
  17806. name: "Back",
  17807. image: {
  17808. source: "./media/characters/algier/back.svg",
  17809. extra: 596 / 572,
  17810. bottom: 0.025
  17811. }
  17812. },
  17813. frontdressed: {
  17814. height: math.unit(180, "cm"),
  17815. weight: math.unit(150, "kg"),
  17816. name: "Front-dressed",
  17817. image: {
  17818. source: "./media/characters/algier/front-dressed.svg",
  17819. extra: 596 / 572,
  17820. bottom: 0.038
  17821. }
  17822. },
  17823. },
  17824. [
  17825. {
  17826. name: "Micro",
  17827. height: math.unit(5, "cm")
  17828. },
  17829. {
  17830. name: "Normal",
  17831. height: math.unit(180, "cm"),
  17832. default: true
  17833. },
  17834. {
  17835. name: "Macro",
  17836. height: math.unit(64, "m")
  17837. },
  17838. ]
  17839. ))
  17840. characterMakers.push(() => makeCharacter(
  17841. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17842. {
  17843. upright: {
  17844. height: math.unit(7, "feet"),
  17845. weight: math.unit(300, "lb"),
  17846. name: "Upright",
  17847. image: {
  17848. source: "./media/characters/pretzel/upright.svg",
  17849. extra: 534 / 522,
  17850. bottom: 0.065
  17851. }
  17852. },
  17853. sprawling: {
  17854. height: math.unit(3.75, "feet"),
  17855. weight: math.unit(300, "lb"),
  17856. name: "Sprawling",
  17857. image: {
  17858. source: "./media/characters/pretzel/sprawling.svg",
  17859. extra: 314 / 281,
  17860. bottom: 0.1
  17861. }
  17862. },
  17863. tongue: {
  17864. height: math.unit(2, "feet"),
  17865. name: "Tongue",
  17866. image: {
  17867. source: "./media/characters/pretzel/tongue.svg"
  17868. }
  17869. },
  17870. },
  17871. [
  17872. {
  17873. name: "Normal",
  17874. height: math.unit(7, "feet"),
  17875. default: true
  17876. },
  17877. {
  17878. name: "Oversized",
  17879. height: math.unit(15, "feet")
  17880. },
  17881. {
  17882. name: "Huge",
  17883. height: math.unit(30, "feet")
  17884. },
  17885. {
  17886. name: "Macro",
  17887. height: math.unit(250, "feet")
  17888. },
  17889. ]
  17890. ))
  17891. characterMakers.push(() => makeCharacter(
  17892. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17893. {
  17894. sideFront: {
  17895. height: math.unit(5 + 2 / 12, "feet"),
  17896. weight: math.unit(120, "lb"),
  17897. name: "Front Side",
  17898. image: {
  17899. source: "./media/characters/roxi/side-front.svg",
  17900. extra: 2924 / 2717,
  17901. bottom: 0.08
  17902. }
  17903. },
  17904. sideBack: {
  17905. height: math.unit(5 + 2 / 12, "feet"),
  17906. weight: math.unit(120, "lb"),
  17907. name: "Back Side",
  17908. image: {
  17909. source: "./media/characters/roxi/side-back.svg",
  17910. extra: 2904 / 2693,
  17911. bottom: 0.06
  17912. }
  17913. },
  17914. front: {
  17915. height: math.unit(5 + 2 / 12, "feet"),
  17916. weight: math.unit(120, "lb"),
  17917. name: "Front",
  17918. image: {
  17919. source: "./media/characters/roxi/front.svg",
  17920. extra: 2028 / 1907,
  17921. bottom: 0.01
  17922. }
  17923. },
  17924. frontAlt: {
  17925. height: math.unit(5 + 2 / 12, "feet"),
  17926. weight: math.unit(120, "lb"),
  17927. name: "Front (Alt)",
  17928. image: {
  17929. source: "./media/characters/roxi/front-alt.svg",
  17930. extra: 1828 / 1798,
  17931. bottom: 0.01
  17932. }
  17933. },
  17934. sitting: {
  17935. height: math.unit(2.8, "feet"),
  17936. weight: math.unit(120, "lb"),
  17937. name: "Sitting",
  17938. image: {
  17939. source: "./media/characters/roxi/sitting.svg",
  17940. extra: 2660 / 2462,
  17941. bottom: 0.1
  17942. }
  17943. },
  17944. },
  17945. [
  17946. {
  17947. name: "Normal",
  17948. height: math.unit(5 + 2 / 12, "feet"),
  17949. default: true
  17950. },
  17951. ]
  17952. ))
  17953. characterMakers.push(() => makeCharacter(
  17954. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17955. {
  17956. side: {
  17957. height: math.unit(55, "feet"),
  17958. weight: math.unit(153, "tons"),
  17959. name: "Side",
  17960. image: {
  17961. source: "./media/characters/shadow/side.svg",
  17962. extra: 701 / 628,
  17963. bottom: 0.02
  17964. }
  17965. },
  17966. flying: {
  17967. height: math.unit(145, "feet"),
  17968. weight: math.unit(153, "tons"),
  17969. name: "Flying",
  17970. image: {
  17971. source: "./media/characters/shadow/flying.svg"
  17972. }
  17973. },
  17974. },
  17975. [
  17976. {
  17977. name: "Normal",
  17978. height: math.unit(55, "feet"),
  17979. default: true
  17980. },
  17981. ]
  17982. ))
  17983. characterMakers.push(() => makeCharacter(
  17984. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17985. {
  17986. front: {
  17987. height: math.unit(6, "feet"),
  17988. weight: math.unit(200, "lb"),
  17989. name: "Front",
  17990. image: {
  17991. source: "./media/characters/marcie/front.svg",
  17992. extra: 960 / 876,
  17993. bottom: 58 / 1017.87
  17994. }
  17995. },
  17996. },
  17997. [
  17998. {
  17999. name: "Macro",
  18000. height: math.unit(1, "mile"),
  18001. default: true
  18002. },
  18003. ]
  18004. ))
  18005. characterMakers.push(() => makeCharacter(
  18006. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18007. {
  18008. front: {
  18009. height: math.unit(7, "feet"),
  18010. weight: math.unit(200, "lb"),
  18011. name: "Front",
  18012. image: {
  18013. source: "./media/characters/kachina/front.svg",
  18014. extra: 1290.68 / 1119,
  18015. bottom: 36.5 / 1327.18
  18016. }
  18017. },
  18018. },
  18019. [
  18020. {
  18021. name: "Normal",
  18022. height: math.unit(7, "feet"),
  18023. default: true
  18024. },
  18025. ]
  18026. ))
  18027. characterMakers.push(() => makeCharacter(
  18028. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18029. {
  18030. looking: {
  18031. height: math.unit(2, "meters"),
  18032. weight: math.unit(300, "kg"),
  18033. name: "Looking",
  18034. image: {
  18035. source: "./media/characters/kash/looking.svg",
  18036. extra: 474 / 344,
  18037. bottom: 0.03
  18038. }
  18039. },
  18040. side: {
  18041. height: math.unit(2, "meters"),
  18042. weight: math.unit(300, "kg"),
  18043. name: "Side",
  18044. image: {
  18045. source: "./media/characters/kash/side.svg",
  18046. extra: 302 / 251,
  18047. bottom: 0.03
  18048. }
  18049. },
  18050. front: {
  18051. height: math.unit(2, "meters"),
  18052. weight: math.unit(300, "kg"),
  18053. name: "Front",
  18054. image: {
  18055. source: "./media/characters/kash/front.svg",
  18056. extra: 495 / 360,
  18057. bottom: 0.015
  18058. }
  18059. },
  18060. },
  18061. [
  18062. {
  18063. name: "Normal",
  18064. height: math.unit(2, "meters"),
  18065. default: true
  18066. },
  18067. {
  18068. name: "Big",
  18069. height: math.unit(3, "meters")
  18070. },
  18071. {
  18072. name: "Large",
  18073. height: math.unit(5, "meters")
  18074. },
  18075. ]
  18076. ))
  18077. characterMakers.push(() => makeCharacter(
  18078. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18079. {
  18080. feeding: {
  18081. height: math.unit(6.7, "feet"),
  18082. weight: math.unit(350, "lb"),
  18083. name: "Feeding",
  18084. image: {
  18085. source: "./media/characters/lalim/feeding.svg",
  18086. }
  18087. },
  18088. },
  18089. [
  18090. {
  18091. name: "Normal",
  18092. height: math.unit(6.7, "feet"),
  18093. default: true
  18094. },
  18095. ]
  18096. ))
  18097. characterMakers.push(() => makeCharacter(
  18098. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18099. {
  18100. front: {
  18101. height: math.unit(9.5, "feet"),
  18102. weight: math.unit(600, "lb"),
  18103. name: "Front",
  18104. image: {
  18105. source: "./media/characters/de'vout/front.svg",
  18106. extra: 1443 / 1328,
  18107. bottom: 0.025
  18108. }
  18109. },
  18110. back: {
  18111. height: math.unit(9.5, "feet"),
  18112. weight: math.unit(600, "lb"),
  18113. name: "Back",
  18114. image: {
  18115. source: "./media/characters/de'vout/back.svg",
  18116. extra: 1443 / 1328
  18117. }
  18118. },
  18119. frontDressed: {
  18120. height: math.unit(9.5, "feet"),
  18121. weight: math.unit(600, "lb"),
  18122. name: "Front (Dressed",
  18123. image: {
  18124. source: "./media/characters/de'vout/front-dressed.svg",
  18125. extra: 1443 / 1328,
  18126. bottom: 0.025
  18127. }
  18128. },
  18129. backDressed: {
  18130. height: math.unit(9.5, "feet"),
  18131. weight: math.unit(600, "lb"),
  18132. name: "Back (Dressed",
  18133. image: {
  18134. source: "./media/characters/de'vout/back-dressed.svg",
  18135. extra: 1443 / 1328
  18136. }
  18137. },
  18138. },
  18139. [
  18140. {
  18141. name: "Normal",
  18142. height: math.unit(9.5, "feet"),
  18143. default: true
  18144. },
  18145. ]
  18146. ))
  18147. characterMakers.push(() => makeCharacter(
  18148. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18149. {
  18150. front: {
  18151. height: math.unit(8, "feet"),
  18152. weight: math.unit(225, "lb"),
  18153. name: "Front",
  18154. image: {
  18155. source: "./media/characters/talana/front.svg",
  18156. extra: 1410 / 1300,
  18157. bottom: 0.015
  18158. }
  18159. },
  18160. frontDressed: {
  18161. height: math.unit(8, "feet"),
  18162. weight: math.unit(225, "lb"),
  18163. name: "Front (Dressed",
  18164. image: {
  18165. source: "./media/characters/talana/front-dressed.svg",
  18166. extra: 1410 / 1300,
  18167. bottom: 0.015
  18168. }
  18169. },
  18170. },
  18171. [
  18172. {
  18173. name: "Normal",
  18174. height: math.unit(8, "feet"),
  18175. default: true
  18176. },
  18177. ]
  18178. ))
  18179. characterMakers.push(() => makeCharacter(
  18180. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18181. {
  18182. side: {
  18183. height: math.unit(7.2, "feet"),
  18184. weight: math.unit(150, "lb"),
  18185. name: "Side",
  18186. image: {
  18187. source: "./media/characters/xeauvok/side.svg",
  18188. extra: 1975 / 1523,
  18189. bottom: 0.07
  18190. }
  18191. },
  18192. },
  18193. [
  18194. {
  18195. name: "Normal",
  18196. height: math.unit(7.2, "feet"),
  18197. default: true
  18198. },
  18199. ]
  18200. ))
  18201. characterMakers.push(() => makeCharacter(
  18202. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18203. {
  18204. side: {
  18205. height: math.unit(10, "feet"),
  18206. weight: math.unit(900, "kg"),
  18207. name: "Side",
  18208. image: {
  18209. source: "./media/characters/zara/side.svg",
  18210. extra: 504 / 498
  18211. }
  18212. },
  18213. },
  18214. [
  18215. {
  18216. name: "Normal",
  18217. height: math.unit(10, "feet"),
  18218. default: true
  18219. },
  18220. ]
  18221. ))
  18222. characterMakers.push(() => makeCharacter(
  18223. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18224. {
  18225. side: {
  18226. height: math.unit(6, "feet"),
  18227. weight: math.unit(150, "lb"),
  18228. name: "Side",
  18229. image: {
  18230. source: "./media/characters/richard-dragon/side.svg",
  18231. extra: 845 / 340,
  18232. bottom: 0.017
  18233. }
  18234. },
  18235. maw: {
  18236. height: math.unit(2.97, "feet"),
  18237. name: "Maw",
  18238. image: {
  18239. source: "./media/characters/richard-dragon/maw.svg"
  18240. }
  18241. },
  18242. },
  18243. [
  18244. ]
  18245. ))
  18246. characterMakers.push(() => makeCharacter(
  18247. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18248. {
  18249. front: {
  18250. height: math.unit(4, "feet"),
  18251. weight: math.unit(100, "lb"),
  18252. name: "Front",
  18253. image: {
  18254. source: "./media/characters/richard-smeargle/front.svg",
  18255. extra: 2952 / 2820,
  18256. bottom: 0.028
  18257. }
  18258. },
  18259. },
  18260. [
  18261. {
  18262. name: "Normal",
  18263. height: math.unit(4, "feet"),
  18264. default: true
  18265. },
  18266. {
  18267. name: "Dynamax",
  18268. height: math.unit(20, "meters")
  18269. },
  18270. ]
  18271. ))
  18272. characterMakers.push(() => makeCharacter(
  18273. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18274. {
  18275. front: {
  18276. height: math.unit(6, "feet"),
  18277. weight: math.unit(110, "lb"),
  18278. name: "Front",
  18279. image: {
  18280. source: "./media/characters/klay/front.svg",
  18281. extra: 962 / 883,
  18282. bottom: 0.04
  18283. }
  18284. },
  18285. back: {
  18286. height: math.unit(6, "feet"),
  18287. weight: math.unit(110, "lb"),
  18288. name: "Back",
  18289. image: {
  18290. source: "./media/characters/klay/back.svg",
  18291. extra: 962 / 883
  18292. }
  18293. },
  18294. beans: {
  18295. height: math.unit(1.15, "feet"),
  18296. name: "Beans",
  18297. image: {
  18298. source: "./media/characters/klay/beans.svg"
  18299. }
  18300. },
  18301. },
  18302. [
  18303. {
  18304. name: "Micro",
  18305. height: math.unit(6, "inches")
  18306. },
  18307. {
  18308. name: "Mini",
  18309. height: math.unit(3, "feet")
  18310. },
  18311. {
  18312. name: "Normal",
  18313. height: math.unit(6, "feet"),
  18314. default: true
  18315. },
  18316. {
  18317. name: "Big",
  18318. height: math.unit(25, "feet")
  18319. },
  18320. {
  18321. name: "Macro",
  18322. height: math.unit(100, "feet")
  18323. },
  18324. {
  18325. name: "Megamacro",
  18326. height: math.unit(400, "feet")
  18327. },
  18328. ]
  18329. ))
  18330. characterMakers.push(() => makeCharacter(
  18331. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18332. {
  18333. front: {
  18334. height: math.unit(6, "feet"),
  18335. weight: math.unit(160, "lb"),
  18336. name: "Front",
  18337. image: {
  18338. source: "./media/characters/marcus/front.svg",
  18339. extra: 734 / 676,
  18340. bottom: 0.03
  18341. }
  18342. },
  18343. },
  18344. [
  18345. {
  18346. name: "Little",
  18347. height: math.unit(6, "feet")
  18348. },
  18349. {
  18350. name: "Normal",
  18351. height: math.unit(110, "feet"),
  18352. default: true
  18353. },
  18354. {
  18355. name: "Macro",
  18356. height: math.unit(250, "feet")
  18357. },
  18358. {
  18359. name: "Megamacro",
  18360. height: math.unit(1000, "feet")
  18361. },
  18362. ]
  18363. ))
  18364. characterMakers.push(() => makeCharacter(
  18365. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18366. {
  18367. front: {
  18368. height: math.unit(7, "feet"),
  18369. weight: math.unit(275, "lb"),
  18370. name: "Front",
  18371. image: {
  18372. source: "./media/characters/claude-delroute/front.svg",
  18373. extra: 230 / 214,
  18374. bottom: 0.007
  18375. }
  18376. },
  18377. side: {
  18378. height: math.unit(7, "feet"),
  18379. weight: math.unit(275, "lb"),
  18380. name: "Side",
  18381. image: {
  18382. source: "./media/characters/claude-delroute/side.svg",
  18383. extra: 222 / 214,
  18384. bottom: 0.01
  18385. }
  18386. },
  18387. back: {
  18388. height: math.unit(7, "feet"),
  18389. weight: math.unit(275, "lb"),
  18390. name: "Back",
  18391. image: {
  18392. source: "./media/characters/claude-delroute/back.svg",
  18393. extra: 230 / 214,
  18394. bottom: 0.015
  18395. }
  18396. },
  18397. maw: {
  18398. height: math.unit(0.6407, "meters"),
  18399. name: "Maw",
  18400. image: {
  18401. source: "./media/characters/claude-delroute/maw.svg"
  18402. }
  18403. },
  18404. },
  18405. [
  18406. {
  18407. name: "Normal",
  18408. height: math.unit(7, "feet"),
  18409. default: true
  18410. },
  18411. {
  18412. name: "Lorge",
  18413. height: math.unit(20, "feet")
  18414. },
  18415. ]
  18416. ))
  18417. characterMakers.push(() => makeCharacter(
  18418. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18419. {
  18420. front: {
  18421. height: math.unit(8 + 4 / 12, "feet"),
  18422. weight: math.unit(600, "lb"),
  18423. name: "Front",
  18424. image: {
  18425. source: "./media/characters/dragonien/front.svg",
  18426. extra: 100 / 94,
  18427. bottom: 3.3 / 103.3445
  18428. }
  18429. },
  18430. back: {
  18431. height: math.unit(8 + 4 / 12, "feet"),
  18432. weight: math.unit(600, "lb"),
  18433. name: "Back",
  18434. image: {
  18435. source: "./media/characters/dragonien/back.svg",
  18436. extra: 776 / 746,
  18437. bottom: 6.4 / 782.0616
  18438. }
  18439. },
  18440. foot: {
  18441. height: math.unit(1.54, "feet"),
  18442. name: "Foot",
  18443. image: {
  18444. source: "./media/characters/dragonien/foot.svg",
  18445. }
  18446. },
  18447. },
  18448. [
  18449. {
  18450. name: "Normal",
  18451. height: math.unit(8 + 4 / 12, "feet"),
  18452. default: true
  18453. },
  18454. {
  18455. name: "Macro",
  18456. height: math.unit(200, "feet")
  18457. },
  18458. {
  18459. name: "Megamacro",
  18460. height: math.unit(1, "mile")
  18461. },
  18462. {
  18463. name: "Gigamacro",
  18464. height: math.unit(1000, "miles")
  18465. },
  18466. ]
  18467. ))
  18468. characterMakers.push(() => makeCharacter(
  18469. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18470. {
  18471. front: {
  18472. height: math.unit(5 + 2 / 12, "feet"),
  18473. weight: math.unit(110, "lb"),
  18474. name: "Front",
  18475. image: {
  18476. source: "./media/characters/desta/front.svg",
  18477. extra: 767 / 726,
  18478. bottom: 11.7 / 779
  18479. }
  18480. },
  18481. back: {
  18482. height: math.unit(5 + 2 / 12, "feet"),
  18483. weight: math.unit(110, "lb"),
  18484. name: "Back",
  18485. image: {
  18486. source: "./media/characters/desta/back.svg",
  18487. extra: 777 / 728,
  18488. bottom: 6 / 784
  18489. }
  18490. },
  18491. frontAlt: {
  18492. height: math.unit(5 + 2 / 12, "feet"),
  18493. weight: math.unit(110, "lb"),
  18494. name: "Front",
  18495. image: {
  18496. source: "./media/characters/desta/front-alt.svg",
  18497. extra: 1482 / 1417
  18498. }
  18499. },
  18500. side: {
  18501. height: math.unit(5 + 2 / 12, "feet"),
  18502. weight: math.unit(110, "lb"),
  18503. name: "Side",
  18504. image: {
  18505. source: "./media/characters/desta/side.svg",
  18506. extra: 2579 / 2491,
  18507. bottom: 0.053
  18508. }
  18509. },
  18510. },
  18511. [
  18512. {
  18513. name: "Micro",
  18514. height: math.unit(6, "inches")
  18515. },
  18516. {
  18517. name: "Normal",
  18518. height: math.unit(5 + 2 / 12, "feet"),
  18519. default: true
  18520. },
  18521. {
  18522. name: "Macro",
  18523. height: math.unit(62, "feet")
  18524. },
  18525. {
  18526. name: "Megamacro",
  18527. height: math.unit(1800, "feet")
  18528. },
  18529. ]
  18530. ))
  18531. characterMakers.push(() => makeCharacter(
  18532. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18533. {
  18534. front: {
  18535. height: math.unit(10, "feet"),
  18536. weight: math.unit(700, "lb"),
  18537. name: "Front",
  18538. image: {
  18539. source: "./media/characters/storm-alystar/front.svg",
  18540. extra: 2112 / 1898,
  18541. bottom: 0.034
  18542. }
  18543. },
  18544. },
  18545. [
  18546. {
  18547. name: "Micro",
  18548. height: math.unit(3.5, "inches")
  18549. },
  18550. {
  18551. name: "Normal",
  18552. height: math.unit(10, "feet"),
  18553. default: true
  18554. },
  18555. {
  18556. name: "Macro",
  18557. height: math.unit(400, "feet")
  18558. },
  18559. {
  18560. name: "Deific",
  18561. height: math.unit(60, "miles")
  18562. },
  18563. ]
  18564. ))
  18565. characterMakers.push(() => makeCharacter(
  18566. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18567. {
  18568. front: {
  18569. height: math.unit(2.35, "meters"),
  18570. weight: math.unit(119, "kg"),
  18571. name: "Front",
  18572. image: {
  18573. source: "./media/characters/ilia/front.svg",
  18574. extra: 1285 / 1255,
  18575. bottom: 0.06
  18576. }
  18577. },
  18578. },
  18579. [
  18580. {
  18581. name: "Normal",
  18582. height: math.unit(2.35, "meters")
  18583. },
  18584. {
  18585. name: "Macro",
  18586. height: math.unit(140, "meters"),
  18587. default: true
  18588. },
  18589. {
  18590. name: "Megamacro",
  18591. height: math.unit(100, "miles")
  18592. },
  18593. ]
  18594. ))
  18595. characterMakers.push(() => makeCharacter(
  18596. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18597. {
  18598. front: {
  18599. height: math.unit(6 + 5 / 12, "feet"),
  18600. weight: math.unit(190, "lb"),
  18601. name: "Front",
  18602. image: {
  18603. source: "./media/characters/kingdead/front.svg",
  18604. extra: 1228 / 1177
  18605. }
  18606. },
  18607. },
  18608. [
  18609. {
  18610. name: "Micro",
  18611. height: math.unit(7, "inches")
  18612. },
  18613. {
  18614. name: "Normal",
  18615. height: math.unit(6 + 5 / 12, "feet")
  18616. },
  18617. {
  18618. name: "Macro",
  18619. height: math.unit(150, "feet"),
  18620. default: true
  18621. },
  18622. {
  18623. name: "Megamacro",
  18624. height: math.unit(200, "miles")
  18625. },
  18626. ]
  18627. ))
  18628. characterMakers.push(() => makeCharacter(
  18629. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18630. {
  18631. front: {
  18632. height: math.unit(8, "feet"),
  18633. weight: math.unit(600, "lb"),
  18634. name: "Front",
  18635. image: {
  18636. source: "./media/characters/kyrehx/front.svg",
  18637. extra: 1195 / 1095,
  18638. bottom: 0.034
  18639. }
  18640. },
  18641. },
  18642. [
  18643. {
  18644. name: "Micro",
  18645. height: math.unit(2, "inches")
  18646. },
  18647. {
  18648. name: "Normal",
  18649. height: math.unit(8, "feet"),
  18650. default: true
  18651. },
  18652. {
  18653. name: "Macro",
  18654. height: math.unit(255, "feet")
  18655. },
  18656. ]
  18657. ))
  18658. characterMakers.push(() => makeCharacter(
  18659. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18660. {
  18661. front: {
  18662. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18663. weight: math.unit(184, "lb"),
  18664. name: "Front",
  18665. image: {
  18666. source: "./media/characters/xang/front.svg",
  18667. extra: 845 / 755
  18668. }
  18669. },
  18670. },
  18671. [
  18672. {
  18673. name: "Normal",
  18674. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18675. default: true
  18676. },
  18677. {
  18678. name: "Macro",
  18679. height: math.unit(0.935 * 146, "feet")
  18680. },
  18681. {
  18682. name: "Megamacro",
  18683. height: math.unit(0.935 * 3, "miles")
  18684. },
  18685. ]
  18686. ))
  18687. characterMakers.push(() => makeCharacter(
  18688. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18689. {
  18690. frontDressed: {
  18691. height: math.unit(5 + 7 / 12, "feet"),
  18692. weight: math.unit(140, "lb"),
  18693. name: "Front (Dressed)",
  18694. image: {
  18695. source: "./media/characters/doc-weardno/front-dressed.svg",
  18696. extra: 263 / 234
  18697. }
  18698. },
  18699. backDressed: {
  18700. height: math.unit(5 + 7 / 12, "feet"),
  18701. weight: math.unit(140, "lb"),
  18702. name: "Back (Dressed)",
  18703. image: {
  18704. source: "./media/characters/doc-weardno/back-dressed.svg",
  18705. extra: 266 / 238
  18706. }
  18707. },
  18708. front: {
  18709. height: math.unit(5 + 7 / 12, "feet"),
  18710. weight: math.unit(140, "lb"),
  18711. name: "Front",
  18712. image: {
  18713. source: "./media/characters/doc-weardno/front.svg",
  18714. extra: 254 / 233
  18715. }
  18716. },
  18717. },
  18718. [
  18719. {
  18720. name: "Micro",
  18721. height: math.unit(3, "inches")
  18722. },
  18723. {
  18724. name: "Normal",
  18725. height: math.unit(5 + 7 / 12, "feet"),
  18726. default: true
  18727. },
  18728. {
  18729. name: "Macro",
  18730. height: math.unit(25, "feet")
  18731. },
  18732. {
  18733. name: "Megamacro",
  18734. height: math.unit(2, "miles")
  18735. },
  18736. ]
  18737. ))
  18738. characterMakers.push(() => makeCharacter(
  18739. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18740. {
  18741. front: {
  18742. height: math.unit(6 + 2 / 12, "feet"),
  18743. weight: math.unit(153, "lb"),
  18744. name: "Front",
  18745. image: {
  18746. source: "./media/characters/seth-whilst/front.svg",
  18747. bottom: 0.07
  18748. }
  18749. },
  18750. },
  18751. [
  18752. {
  18753. name: "Micro",
  18754. height: math.unit(5, "inches")
  18755. },
  18756. {
  18757. name: "Normal",
  18758. height: math.unit(6 + 2 / 12, "feet"),
  18759. default: true
  18760. },
  18761. ]
  18762. ))
  18763. characterMakers.push(() => makeCharacter(
  18764. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18765. {
  18766. front: {
  18767. height: math.unit(3, "inches"),
  18768. weight: math.unit(8, "grams"),
  18769. name: "Front",
  18770. image: {
  18771. source: "./media/characters/pocket-jabari/front.svg",
  18772. extra: 1024 / 974,
  18773. bottom: 0.039
  18774. }
  18775. },
  18776. },
  18777. [
  18778. {
  18779. name: "Minimicro",
  18780. height: math.unit(8, "mm")
  18781. },
  18782. {
  18783. name: "Micro",
  18784. height: math.unit(3, "inches"),
  18785. default: true
  18786. },
  18787. {
  18788. name: "Normal",
  18789. height: math.unit(3, "feet")
  18790. },
  18791. ]
  18792. ))
  18793. characterMakers.push(() => makeCharacter(
  18794. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18795. {
  18796. front: {
  18797. height: math.unit(15, "feet"),
  18798. weight: math.unit(3280, "lb"),
  18799. name: "Front",
  18800. image: {
  18801. source: "./media/characters/sapphy/front.svg",
  18802. extra: 671 / 577,
  18803. bottom: 0.085
  18804. }
  18805. },
  18806. back: {
  18807. height: math.unit(15, "feet"),
  18808. weight: math.unit(3280, "lb"),
  18809. name: "Back",
  18810. image: {
  18811. source: "./media/characters/sapphy/back.svg",
  18812. extra: 631 / 607,
  18813. bottom: 0.045
  18814. }
  18815. },
  18816. },
  18817. [
  18818. {
  18819. name: "Normal",
  18820. height: math.unit(15, "feet")
  18821. },
  18822. {
  18823. name: "Casual Macro",
  18824. height: math.unit(120, "feet")
  18825. },
  18826. {
  18827. name: "Macro",
  18828. height: math.unit(2150, "feet"),
  18829. default: true
  18830. },
  18831. {
  18832. name: "Megamacro",
  18833. height: math.unit(8, "miles")
  18834. },
  18835. {
  18836. name: "Galaxy Mom",
  18837. height: math.unit(6, "megalightyears")
  18838. },
  18839. ]
  18840. ))
  18841. characterMakers.push(() => makeCharacter(
  18842. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18843. {
  18844. front: {
  18845. height: math.unit(6, "feet"),
  18846. weight: math.unit(170, "lb"),
  18847. name: "Front",
  18848. image: {
  18849. source: "./media/characters/kiro/front.svg",
  18850. extra: 1064 / 1012,
  18851. bottom: 0.052
  18852. }
  18853. },
  18854. },
  18855. [
  18856. {
  18857. name: "Micro",
  18858. height: math.unit(6, "inches")
  18859. },
  18860. {
  18861. name: "Normal",
  18862. height: math.unit(6, "feet"),
  18863. default: true
  18864. },
  18865. {
  18866. name: "Macro",
  18867. height: math.unit(72, "feet")
  18868. },
  18869. ]
  18870. ))
  18871. characterMakers.push(() => makeCharacter(
  18872. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18873. {
  18874. front: {
  18875. height: math.unit(5 + 9 / 12, "feet"),
  18876. weight: math.unit(175, "lb"),
  18877. name: "Front",
  18878. image: {
  18879. source: "./media/characters/irishfox/front.svg",
  18880. extra: 1912 / 1680,
  18881. bottom: 0.02
  18882. }
  18883. },
  18884. },
  18885. [
  18886. {
  18887. name: "Nano",
  18888. height: math.unit(1, "mm")
  18889. },
  18890. {
  18891. name: "Micro",
  18892. height: math.unit(2, "inches")
  18893. },
  18894. {
  18895. name: "Normal",
  18896. height: math.unit(5 + 9 / 12, "feet"),
  18897. default: true
  18898. },
  18899. {
  18900. name: "Macro",
  18901. height: math.unit(45, "feet")
  18902. },
  18903. ]
  18904. ))
  18905. characterMakers.push(() => makeCharacter(
  18906. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18907. {
  18908. front: {
  18909. height: math.unit(6 + 1 / 12, "feet"),
  18910. weight: math.unit(75, "lb"),
  18911. name: "Front",
  18912. image: {
  18913. source: "./media/characters/aronai-sieyes/front.svg",
  18914. extra: 1556 / 1480,
  18915. bottom: 0.015
  18916. }
  18917. },
  18918. side: {
  18919. height: math.unit(6 + 1 / 12, "feet"),
  18920. weight: math.unit(75, "lb"),
  18921. name: "Side",
  18922. image: {
  18923. source: "./media/characters/aronai-sieyes/side.svg",
  18924. extra: 1433 / 1390,
  18925. bottom: 0.0393
  18926. }
  18927. },
  18928. back: {
  18929. height: math.unit(6 + 1 / 12, "feet"),
  18930. weight: math.unit(75, "lb"),
  18931. name: "Back",
  18932. image: {
  18933. source: "./media/characters/aronai-sieyes/back.svg",
  18934. extra: 1544 / 1494,
  18935. bottom: 0.02
  18936. }
  18937. },
  18938. frontClothed: {
  18939. height: math.unit(6 + 1 / 12, "feet"),
  18940. weight: math.unit(75, "lb"),
  18941. name: "Front (Clothed)",
  18942. image: {
  18943. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18944. extra: 1582 / 1527
  18945. }
  18946. },
  18947. feral: {
  18948. height: math.unit(18, "feet"),
  18949. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18950. name: "Feral",
  18951. image: {
  18952. source: "./media/characters/aronai-sieyes/feral.svg",
  18953. extra: 1530 / 1240,
  18954. bottom: 0.035
  18955. }
  18956. },
  18957. },
  18958. [
  18959. {
  18960. name: "Micro",
  18961. height: math.unit(2, "inches")
  18962. },
  18963. {
  18964. name: "Normal",
  18965. height: math.unit(6 + 1 / 12, "feet"),
  18966. default: true
  18967. }
  18968. ]
  18969. ))
  18970. characterMakers.push(() => makeCharacter(
  18971. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18972. {
  18973. front: {
  18974. height: math.unit(12, "feet"),
  18975. weight: math.unit(410, "kg"),
  18976. name: "Front",
  18977. image: {
  18978. source: "./media/characters/xuna/front.svg",
  18979. extra: 2184 / 1980
  18980. }
  18981. },
  18982. side: {
  18983. height: math.unit(12, "feet"),
  18984. weight: math.unit(410, "kg"),
  18985. name: "Side",
  18986. image: {
  18987. source: "./media/characters/xuna/side.svg",
  18988. extra: 2184 / 1980
  18989. }
  18990. },
  18991. back: {
  18992. height: math.unit(12, "feet"),
  18993. weight: math.unit(410, "kg"),
  18994. name: "Back",
  18995. image: {
  18996. source: "./media/characters/xuna/back.svg",
  18997. extra: 2184 / 1980
  18998. }
  18999. },
  19000. },
  19001. [
  19002. {
  19003. name: "Nano glow",
  19004. height: math.unit(10, "nm")
  19005. },
  19006. {
  19007. name: "Micro floof",
  19008. height: math.unit(0.3, "m")
  19009. },
  19010. {
  19011. name: "Huggable softy boi",
  19012. height: math.unit(3.6576, "m"),
  19013. default: true
  19014. },
  19015. {
  19016. name: "Admirable floof",
  19017. height: math.unit(80, "meters")
  19018. },
  19019. {
  19020. name: "Gentle macro",
  19021. height: math.unit(300, "meters")
  19022. },
  19023. {
  19024. name: "Very careful floof",
  19025. height: math.unit(3200, "meters")
  19026. },
  19027. {
  19028. name: "The mega floof",
  19029. height: math.unit(36000, "meters")
  19030. },
  19031. {
  19032. name: "Giga-fur-Wicker",
  19033. height: math.unit(4800000, "meters")
  19034. },
  19035. {
  19036. name: "Licky world",
  19037. height: math.unit(20000000, "meters")
  19038. },
  19039. {
  19040. name: "Floofy cyan sun",
  19041. height: math.unit(1500000000, "meters")
  19042. },
  19043. {
  19044. name: "Milky Wicker",
  19045. height: math.unit(1000000000000000000000, "meters")
  19046. },
  19047. {
  19048. name: "The observing Wicker",
  19049. height: math.unit(999999999999999999999999999, "meters")
  19050. },
  19051. ]
  19052. ))
  19053. characterMakers.push(() => makeCharacter(
  19054. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19055. {
  19056. front: {
  19057. height: math.unit(5 + 9 / 12, "feet"),
  19058. weight: math.unit(150, "lb"),
  19059. name: "Front",
  19060. image: {
  19061. source: "./media/characters/arokha-sieyes/front.svg",
  19062. extra: 1425 / 1284,
  19063. bottom: 0.05
  19064. }
  19065. },
  19066. },
  19067. [
  19068. {
  19069. name: "Normal",
  19070. height: math.unit(5 + 9 / 12, "feet")
  19071. },
  19072. {
  19073. name: "Macro",
  19074. height: math.unit(30, "meters"),
  19075. default: true
  19076. },
  19077. ]
  19078. ))
  19079. characterMakers.push(() => makeCharacter(
  19080. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19081. {
  19082. front: {
  19083. height: math.unit(6, "feet"),
  19084. weight: math.unit(180, "lb"),
  19085. name: "Front",
  19086. image: {
  19087. source: "./media/characters/arokh-sieyes/front.svg",
  19088. extra: 1830 / 1769,
  19089. bottom: 0.01
  19090. }
  19091. },
  19092. },
  19093. [
  19094. {
  19095. name: "Normal",
  19096. height: math.unit(6, "feet")
  19097. },
  19098. {
  19099. name: "Macro",
  19100. height: math.unit(30, "meters"),
  19101. default: true
  19102. },
  19103. ]
  19104. ))
  19105. characterMakers.push(() => makeCharacter(
  19106. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19107. {
  19108. side: {
  19109. height: math.unit(13 + 1 / 12, "feet"),
  19110. weight: math.unit(8.5, "tonnes"),
  19111. name: "Side",
  19112. image: {
  19113. source: "./media/characters/goldeneye/side.svg",
  19114. extra: 1182 / 778,
  19115. bottom: 0.067
  19116. }
  19117. },
  19118. paw: {
  19119. height: math.unit(3.4, "feet"),
  19120. name: "Paw",
  19121. image: {
  19122. source: "./media/characters/goldeneye/paw.svg"
  19123. }
  19124. },
  19125. },
  19126. [
  19127. {
  19128. name: "Normal",
  19129. height: math.unit(13 + 1 / 12, "feet"),
  19130. default: true
  19131. },
  19132. ]
  19133. ))
  19134. characterMakers.push(() => makeCharacter(
  19135. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19136. {
  19137. front: {
  19138. height: math.unit(6 + 1 / 12, "feet"),
  19139. weight: math.unit(210, "lb"),
  19140. name: "Front",
  19141. image: {
  19142. source: "./media/characters/leonardo-lycheborne/front.svg",
  19143. extra: 776/723,
  19144. bottom: 34/810
  19145. }
  19146. },
  19147. side: {
  19148. height: math.unit(6 + 1 / 12, "feet"),
  19149. weight: math.unit(210, "lb"),
  19150. name: "Side",
  19151. image: {
  19152. source: "./media/characters/leonardo-lycheborne/side.svg",
  19153. extra: 780/728,
  19154. bottom: 12/792
  19155. }
  19156. },
  19157. back: {
  19158. height: math.unit(6 + 1 / 12, "feet"),
  19159. weight: math.unit(210, "lb"),
  19160. name: "Back",
  19161. image: {
  19162. source: "./media/characters/leonardo-lycheborne/back.svg",
  19163. extra: 775/721,
  19164. bottom: 17/792
  19165. }
  19166. },
  19167. hand: {
  19168. height: math.unit(1.08, "feet"),
  19169. name: "Hand",
  19170. image: {
  19171. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19172. }
  19173. },
  19174. foot: {
  19175. height: math.unit(1.32, "feet"),
  19176. name: "Foot",
  19177. image: {
  19178. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19179. }
  19180. },
  19181. maw: {
  19182. height: math.unit(1, "feet"),
  19183. name: "Maw",
  19184. image: {
  19185. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19186. }
  19187. },
  19188. were: {
  19189. height: math.unit(20, "feet"),
  19190. weight: math.unit(7800, "lb"),
  19191. name: "Were",
  19192. image: {
  19193. source: "./media/characters/leonardo-lycheborne/were.svg",
  19194. extra: 1224/1165,
  19195. bottom: 72/1296
  19196. }
  19197. },
  19198. feral: {
  19199. height: math.unit(7.5, "feet"),
  19200. weight: math.unit(600, "lb"),
  19201. name: "Feral",
  19202. image: {
  19203. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19204. extra: 797/702,
  19205. bottom: 139/936
  19206. }
  19207. },
  19208. taur: {
  19209. height: math.unit(11, "feet"),
  19210. weight: math.unit(3300, "lb"),
  19211. name: "Taur",
  19212. image: {
  19213. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19214. extra: 1271/1197,
  19215. bottom: 47/1318
  19216. }
  19217. },
  19218. barghest: {
  19219. height: math.unit(11, "feet"),
  19220. weight: math.unit(1300, "lb"),
  19221. name: "Barghest",
  19222. image: {
  19223. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19224. extra: 1291/1204,
  19225. bottom: 37/1328
  19226. }
  19227. },
  19228. dick: {
  19229. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19230. name: "Dick",
  19231. image: {
  19232. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19233. }
  19234. },
  19235. dickWere: {
  19236. height: math.unit((20) / 3.8, "feet"),
  19237. name: "Dick (Were)",
  19238. image: {
  19239. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19240. }
  19241. },
  19242. },
  19243. [
  19244. {
  19245. name: "Normal",
  19246. height: math.unit(6 + 1 / 12, "feet"),
  19247. default: true
  19248. },
  19249. ]
  19250. ))
  19251. characterMakers.push(() => makeCharacter(
  19252. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19253. {
  19254. front: {
  19255. height: math.unit(10, "feet"),
  19256. weight: math.unit(350, "lb"),
  19257. name: "Front",
  19258. image: {
  19259. source: "./media/characters/jet/front.svg",
  19260. extra: 2050 / 1980,
  19261. bottom: 0.013
  19262. }
  19263. },
  19264. back: {
  19265. height: math.unit(10, "feet"),
  19266. weight: math.unit(350, "lb"),
  19267. name: "Back",
  19268. image: {
  19269. source: "./media/characters/jet/back.svg",
  19270. extra: 2050 / 1980,
  19271. bottom: 0.013
  19272. }
  19273. },
  19274. },
  19275. [
  19276. {
  19277. name: "Micro",
  19278. height: math.unit(6, "inches")
  19279. },
  19280. {
  19281. name: "Normal",
  19282. height: math.unit(10, "feet"),
  19283. default: true
  19284. },
  19285. {
  19286. name: "Macro",
  19287. height: math.unit(100, "feet")
  19288. },
  19289. ]
  19290. ))
  19291. characterMakers.push(() => makeCharacter(
  19292. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19293. {
  19294. front: {
  19295. height: math.unit(15, "feet"),
  19296. weight: math.unit(2800, "lb"),
  19297. name: "Front",
  19298. image: {
  19299. source: "./media/characters/tanarath/front.svg",
  19300. extra: 2392 / 2220,
  19301. bottom: 0.03
  19302. }
  19303. },
  19304. back: {
  19305. height: math.unit(15, "feet"),
  19306. weight: math.unit(2800, "lb"),
  19307. name: "Back",
  19308. image: {
  19309. source: "./media/characters/tanarath/back.svg",
  19310. extra: 2392 / 2220,
  19311. bottom: 0.03
  19312. }
  19313. },
  19314. },
  19315. [
  19316. {
  19317. name: "Normal",
  19318. height: math.unit(15, "feet"),
  19319. default: true
  19320. },
  19321. ]
  19322. ))
  19323. characterMakers.push(() => makeCharacter(
  19324. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19325. {
  19326. front: {
  19327. height: math.unit(7 + 1 / 12, "feet"),
  19328. weight: math.unit(175, "lb"),
  19329. name: "Front",
  19330. image: {
  19331. source: "./media/characters/patty-cattybatty/front.svg",
  19332. extra: 908 / 874,
  19333. bottom: 0.025
  19334. }
  19335. },
  19336. },
  19337. [
  19338. {
  19339. name: "Micro",
  19340. height: math.unit(1, "inch")
  19341. },
  19342. {
  19343. name: "Normal",
  19344. height: math.unit(7 + 1 / 12, "feet")
  19345. },
  19346. {
  19347. name: "Mini Macro",
  19348. height: math.unit(155, "feet")
  19349. },
  19350. {
  19351. name: "Macro",
  19352. height: math.unit(1077, "feet")
  19353. },
  19354. {
  19355. name: "Mega Macro",
  19356. height: math.unit(47650, "feet"),
  19357. default: true
  19358. },
  19359. {
  19360. name: "Giga Macro",
  19361. height: math.unit(440, "miles")
  19362. },
  19363. {
  19364. name: "Tera Macro",
  19365. height: math.unit(8700, "miles")
  19366. },
  19367. {
  19368. name: "Planetary Macro",
  19369. height: math.unit(32700, "miles")
  19370. },
  19371. {
  19372. name: "Solar Macro",
  19373. height: math.unit(550000, "miles")
  19374. },
  19375. {
  19376. name: "Celestial Macro",
  19377. height: math.unit(2.5, "AU")
  19378. },
  19379. ]
  19380. ))
  19381. characterMakers.push(() => makeCharacter(
  19382. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19383. {
  19384. front: {
  19385. height: math.unit(4 + 5 / 12, "feet"),
  19386. weight: math.unit(90, "lb"),
  19387. name: "Front",
  19388. image: {
  19389. source: "./media/characters/cappu/front.svg",
  19390. extra: 1247 / 1152,
  19391. bottom: 0.012
  19392. }
  19393. },
  19394. },
  19395. [
  19396. {
  19397. name: "Normal",
  19398. height: math.unit(4 + 5 / 12, "feet"),
  19399. default: true
  19400. },
  19401. ]
  19402. ))
  19403. characterMakers.push(() => makeCharacter(
  19404. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19405. {
  19406. frontDressed: {
  19407. height: math.unit(70, "cm"),
  19408. weight: math.unit(6, "kg"),
  19409. name: "Front (Dressed)",
  19410. image: {
  19411. source: "./media/characters/sebi/front-dressed.svg",
  19412. extra: 713.5 / 686.5,
  19413. bottom: 0.003
  19414. }
  19415. },
  19416. front: {
  19417. height: math.unit(70, "cm"),
  19418. weight: math.unit(5, "kg"),
  19419. name: "Front",
  19420. image: {
  19421. source: "./media/characters/sebi/front.svg",
  19422. extra: 713.5 / 686.5,
  19423. bottom: 0.003
  19424. }
  19425. }
  19426. },
  19427. [
  19428. {
  19429. name: "Normal",
  19430. height: math.unit(70, "cm"),
  19431. default: true
  19432. },
  19433. {
  19434. name: "Macro",
  19435. height: math.unit(8, "meters")
  19436. },
  19437. ]
  19438. ))
  19439. characterMakers.push(() => makeCharacter(
  19440. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19441. {
  19442. front: {
  19443. height: math.unit(6, "feet"),
  19444. weight: math.unit(150, "lb"),
  19445. name: "Front",
  19446. image: {
  19447. source: "./media/characters/typhek/front.svg",
  19448. extra: 1948 / 1929,
  19449. bottom: 0.025
  19450. }
  19451. },
  19452. side: {
  19453. height: math.unit(6, "feet"),
  19454. weight: math.unit(150, "lb"),
  19455. name: "Side",
  19456. image: {
  19457. source: "./media/characters/typhek/side.svg",
  19458. extra: 2034 / 2010,
  19459. bottom: 0.003
  19460. }
  19461. },
  19462. back: {
  19463. height: math.unit(6, "feet"),
  19464. weight: math.unit(150, "lb"),
  19465. name: "Back",
  19466. image: {
  19467. source: "./media/characters/typhek/back.svg",
  19468. extra: 2005 / 1978,
  19469. bottom: 0.004
  19470. }
  19471. },
  19472. palm: {
  19473. height: math.unit(1.2, "feet"),
  19474. name: "Palm",
  19475. image: {
  19476. source: "./media/characters/typhek/palm.svg"
  19477. }
  19478. },
  19479. fist: {
  19480. height: math.unit(1.1, "feet"),
  19481. name: "Fist",
  19482. image: {
  19483. source: "./media/characters/typhek/fist.svg"
  19484. }
  19485. },
  19486. foot: {
  19487. height: math.unit(1.57, "feet"),
  19488. name: "Foot",
  19489. image: {
  19490. source: "./media/characters/typhek/foot.svg"
  19491. }
  19492. },
  19493. sole: {
  19494. height: math.unit(2.05, "feet"),
  19495. name: "Sole",
  19496. image: {
  19497. source: "./media/characters/typhek/sole.svg"
  19498. }
  19499. },
  19500. },
  19501. [
  19502. {
  19503. name: "Macro",
  19504. height: math.unit(40, "stories"),
  19505. default: true
  19506. },
  19507. {
  19508. name: "Megamacro",
  19509. height: math.unit(1, "mile")
  19510. },
  19511. {
  19512. name: "Gigamacro",
  19513. height: math.unit(4000, "solarradii")
  19514. },
  19515. {
  19516. name: "Universal",
  19517. height: math.unit(1.1, "universes")
  19518. }
  19519. ]
  19520. ))
  19521. characterMakers.push(() => makeCharacter(
  19522. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19523. {
  19524. side: {
  19525. height: math.unit(5 + 7 / 12, "feet"),
  19526. weight: math.unit(150, "lb"),
  19527. name: "Side",
  19528. image: {
  19529. source: "./media/characters/kassy/side.svg",
  19530. extra: 1280 / 1225,
  19531. bottom: 0.002
  19532. }
  19533. },
  19534. front: {
  19535. height: math.unit(5 + 7 / 12, "feet"),
  19536. weight: math.unit(150, "lb"),
  19537. name: "Front",
  19538. image: {
  19539. source: "./media/characters/kassy/front.svg",
  19540. extra: 1280 / 1225,
  19541. bottom: 0.025
  19542. }
  19543. },
  19544. back: {
  19545. height: math.unit(5 + 7 / 12, "feet"),
  19546. weight: math.unit(150, "lb"),
  19547. name: "Back",
  19548. image: {
  19549. source: "./media/characters/kassy/back.svg",
  19550. extra: 1280 / 1225,
  19551. bottom: 0.002
  19552. }
  19553. },
  19554. foot: {
  19555. height: math.unit(1.266, "feet"),
  19556. name: "Foot",
  19557. image: {
  19558. source: "./media/characters/kassy/foot.svg"
  19559. }
  19560. },
  19561. },
  19562. [
  19563. {
  19564. name: "Normal",
  19565. height: math.unit(5 + 7 / 12, "feet")
  19566. },
  19567. {
  19568. name: "Macro",
  19569. height: math.unit(137, "feet"),
  19570. default: true
  19571. },
  19572. {
  19573. name: "Megamacro",
  19574. height: math.unit(1, "mile")
  19575. },
  19576. ]
  19577. ))
  19578. characterMakers.push(() => makeCharacter(
  19579. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19580. {
  19581. front: {
  19582. height: math.unit(6 + 1 / 12, "feet"),
  19583. weight: math.unit(200, "lb"),
  19584. name: "Front",
  19585. image: {
  19586. source: "./media/characters/neil/front.svg",
  19587. extra: 1326 / 1250,
  19588. bottom: 0.023
  19589. }
  19590. },
  19591. },
  19592. [
  19593. {
  19594. name: "Normal",
  19595. height: math.unit(6 + 1 / 12, "feet"),
  19596. default: true
  19597. },
  19598. {
  19599. name: "Macro",
  19600. height: math.unit(200, "feet")
  19601. },
  19602. ]
  19603. ))
  19604. characterMakers.push(() => makeCharacter(
  19605. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19606. {
  19607. front: {
  19608. height: math.unit(5 + 9 / 12, "feet"),
  19609. weight: math.unit(190, "lb"),
  19610. name: "Front",
  19611. image: {
  19612. source: "./media/characters/atticus/front.svg",
  19613. extra: 2934 / 2785,
  19614. bottom: 0.025
  19615. }
  19616. },
  19617. },
  19618. [
  19619. {
  19620. name: "Normal",
  19621. height: math.unit(5 + 9 / 12, "feet"),
  19622. default: true
  19623. },
  19624. {
  19625. name: "Macro",
  19626. height: math.unit(180, "feet")
  19627. },
  19628. ]
  19629. ))
  19630. characterMakers.push(() => makeCharacter(
  19631. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19632. {
  19633. side: {
  19634. height: math.unit(9, "feet"),
  19635. weight: math.unit(650, "lb"),
  19636. name: "Side",
  19637. image: {
  19638. source: "./media/characters/milo/side.svg",
  19639. extra: 2644 / 2310,
  19640. bottom: 0.032
  19641. }
  19642. },
  19643. },
  19644. [
  19645. {
  19646. name: "Normal",
  19647. height: math.unit(9, "feet"),
  19648. default: true
  19649. },
  19650. {
  19651. name: "Macro",
  19652. height: math.unit(300, "feet")
  19653. },
  19654. ]
  19655. ))
  19656. characterMakers.push(() => makeCharacter(
  19657. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19658. {
  19659. side: {
  19660. height: math.unit(8, "meters"),
  19661. weight: math.unit(90000, "kg"),
  19662. name: "Side",
  19663. image: {
  19664. source: "./media/characters/ijzer/side.svg",
  19665. extra: 2756 / 1600,
  19666. bottom: 0.01
  19667. }
  19668. },
  19669. },
  19670. [
  19671. {
  19672. name: "Small",
  19673. height: math.unit(3, "meters")
  19674. },
  19675. {
  19676. name: "Normal",
  19677. height: math.unit(8, "meters"),
  19678. default: true
  19679. },
  19680. {
  19681. name: "Normal+",
  19682. height: math.unit(10, "meters")
  19683. },
  19684. {
  19685. name: "Bigger",
  19686. height: math.unit(24, "meters")
  19687. },
  19688. {
  19689. name: "Huge",
  19690. height: math.unit(80, "meters")
  19691. },
  19692. ]
  19693. ))
  19694. characterMakers.push(() => makeCharacter(
  19695. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19696. {
  19697. front: {
  19698. height: math.unit(6 + 2 / 12, "feet"),
  19699. weight: math.unit(153, "lb"),
  19700. name: "Front",
  19701. image: {
  19702. source: "./media/characters/luca-cervicum/front.svg",
  19703. extra: 370 / 327,
  19704. bottom: 0.015
  19705. }
  19706. },
  19707. back: {
  19708. height: math.unit(6 + 2 / 12, "feet"),
  19709. weight: math.unit(153, "lb"),
  19710. name: "Back",
  19711. image: {
  19712. source: "./media/characters/luca-cervicum/back.svg",
  19713. extra: 367 / 333,
  19714. bottom: 0.005
  19715. }
  19716. },
  19717. frontGear: {
  19718. height: math.unit(6 + 2 / 12, "feet"),
  19719. weight: math.unit(173, "lb"),
  19720. name: "Front (Gear)",
  19721. image: {
  19722. source: "./media/characters/luca-cervicum/front-gear.svg",
  19723. extra: 377 / 333,
  19724. bottom: 0.006
  19725. }
  19726. },
  19727. },
  19728. [
  19729. {
  19730. name: "Normal",
  19731. height: math.unit(6 + 2 / 12, "feet"),
  19732. default: true
  19733. },
  19734. ]
  19735. ))
  19736. characterMakers.push(() => makeCharacter(
  19737. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19738. {
  19739. front: {
  19740. height: math.unit(6 + 1 / 12, "feet"),
  19741. weight: math.unit(304, "lb"),
  19742. name: "Front",
  19743. image: {
  19744. source: "./media/characters/oliver/front.svg",
  19745. extra: 157 / 143,
  19746. bottom: 0.08
  19747. }
  19748. },
  19749. },
  19750. [
  19751. {
  19752. name: "Normal",
  19753. height: math.unit(6 + 1 / 12, "feet"),
  19754. default: true
  19755. },
  19756. ]
  19757. ))
  19758. characterMakers.push(() => makeCharacter(
  19759. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19760. {
  19761. front: {
  19762. height: math.unit(5 + 7 / 12, "feet"),
  19763. weight: math.unit(140, "lb"),
  19764. name: "Front",
  19765. image: {
  19766. source: "./media/characters/shane/front.svg",
  19767. extra: 304 / 289,
  19768. bottom: 0.005
  19769. }
  19770. },
  19771. },
  19772. [
  19773. {
  19774. name: "Normal",
  19775. height: math.unit(5 + 7 / 12, "feet"),
  19776. default: true
  19777. },
  19778. ]
  19779. ))
  19780. characterMakers.push(() => makeCharacter(
  19781. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19782. {
  19783. front: {
  19784. height: math.unit(5 + 9 / 12, "feet"),
  19785. weight: math.unit(178, "lb"),
  19786. name: "Front",
  19787. image: {
  19788. source: "./media/characters/shin/front.svg",
  19789. extra: 159 / 151,
  19790. bottom: 0.015
  19791. }
  19792. },
  19793. },
  19794. [
  19795. {
  19796. name: "Normal",
  19797. height: math.unit(5 + 9 / 12, "feet"),
  19798. default: true
  19799. },
  19800. ]
  19801. ))
  19802. characterMakers.push(() => makeCharacter(
  19803. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19804. {
  19805. front: {
  19806. height: math.unit(5 + 10 / 12, "feet"),
  19807. weight: math.unit(168, "lb"),
  19808. name: "Front",
  19809. image: {
  19810. source: "./media/characters/xerxes/front.svg",
  19811. extra: 282 / 260,
  19812. bottom: 0.045
  19813. }
  19814. },
  19815. },
  19816. [
  19817. {
  19818. name: "Normal",
  19819. height: math.unit(5 + 10 / 12, "feet"),
  19820. default: true
  19821. },
  19822. ]
  19823. ))
  19824. characterMakers.push(() => makeCharacter(
  19825. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19826. {
  19827. front: {
  19828. height: math.unit(6 + 7 / 12, "feet"),
  19829. weight: math.unit(208, "lb"),
  19830. name: "Front",
  19831. image: {
  19832. source: "./media/characters/chaska/front.svg",
  19833. extra: 332 / 319,
  19834. bottom: 0.015
  19835. }
  19836. },
  19837. },
  19838. [
  19839. {
  19840. name: "Normal",
  19841. height: math.unit(6 + 7 / 12, "feet"),
  19842. default: true
  19843. },
  19844. ]
  19845. ))
  19846. characterMakers.push(() => makeCharacter(
  19847. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19848. {
  19849. front: {
  19850. height: math.unit(5 + 8 / 12, "feet"),
  19851. weight: math.unit(208, "lb"),
  19852. name: "Front",
  19853. image: {
  19854. source: "./media/characters/enuk/front.svg",
  19855. extra: 437 / 406,
  19856. bottom: 0.02
  19857. }
  19858. },
  19859. },
  19860. [
  19861. {
  19862. name: "Normal",
  19863. height: math.unit(5 + 8 / 12, "feet"),
  19864. default: true
  19865. },
  19866. ]
  19867. ))
  19868. characterMakers.push(() => makeCharacter(
  19869. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19870. {
  19871. front: {
  19872. height: math.unit(5 + 10 / 12, "feet"),
  19873. weight: math.unit(252, "lb"),
  19874. name: "Front",
  19875. image: {
  19876. source: "./media/characters/bruun/front.svg",
  19877. extra: 197 / 187,
  19878. bottom: 0.012
  19879. }
  19880. },
  19881. },
  19882. [
  19883. {
  19884. name: "Normal",
  19885. height: math.unit(5 + 10 / 12, "feet"),
  19886. default: true
  19887. },
  19888. ]
  19889. ))
  19890. characterMakers.push(() => makeCharacter(
  19891. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19892. {
  19893. front: {
  19894. height: math.unit(6 + 10 / 12, "feet"),
  19895. weight: math.unit(255, "lb"),
  19896. name: "Front",
  19897. image: {
  19898. source: "./media/characters/alexeev/front.svg",
  19899. extra: 213 / 200,
  19900. bottom: 0.05
  19901. }
  19902. },
  19903. },
  19904. [
  19905. {
  19906. name: "Normal",
  19907. height: math.unit(6 + 10 / 12, "feet"),
  19908. default: true
  19909. },
  19910. ]
  19911. ))
  19912. characterMakers.push(() => makeCharacter(
  19913. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19914. {
  19915. front: {
  19916. height: math.unit(2 + 8 / 12, "feet"),
  19917. weight: math.unit(22, "lb"),
  19918. name: "Front",
  19919. image: {
  19920. source: "./media/characters/evelyn/front.svg",
  19921. extra: 208 / 180
  19922. }
  19923. },
  19924. },
  19925. [
  19926. {
  19927. name: "Normal",
  19928. height: math.unit(2 + 8 / 12, "feet"),
  19929. default: true
  19930. },
  19931. ]
  19932. ))
  19933. characterMakers.push(() => makeCharacter(
  19934. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19935. {
  19936. front: {
  19937. height: math.unit(5 + 9 / 12, "feet"),
  19938. weight: math.unit(139, "lb"),
  19939. name: "Front",
  19940. image: {
  19941. source: "./media/characters/inca/front.svg",
  19942. extra: 294 / 291,
  19943. bottom: 0.03
  19944. }
  19945. },
  19946. },
  19947. [
  19948. {
  19949. name: "Normal",
  19950. height: math.unit(5 + 9 / 12, "feet"),
  19951. default: true
  19952. },
  19953. ]
  19954. ))
  19955. characterMakers.push(() => makeCharacter(
  19956. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19957. {
  19958. front: {
  19959. height: math.unit(5 + 1 / 12, "feet"),
  19960. weight: math.unit(84, "lb"),
  19961. name: "Front",
  19962. image: {
  19963. source: "./media/characters/magdalene/front.svg",
  19964. extra: 293 / 273
  19965. }
  19966. },
  19967. },
  19968. [
  19969. {
  19970. name: "Normal",
  19971. height: math.unit(5 + 1 / 12, "feet"),
  19972. default: true
  19973. },
  19974. ]
  19975. ))
  19976. characterMakers.push(() => makeCharacter(
  19977. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19978. {
  19979. front: {
  19980. height: math.unit(6 + 3 / 12, "feet"),
  19981. weight: math.unit(185, "lb"),
  19982. name: "Front",
  19983. image: {
  19984. source: "./media/characters/mera/front.svg",
  19985. extra: 291 / 277,
  19986. bottom: 0.03
  19987. }
  19988. },
  19989. },
  19990. [
  19991. {
  19992. name: "Normal",
  19993. height: math.unit(6 + 3 / 12, "feet"),
  19994. default: true
  19995. },
  19996. ]
  19997. ))
  19998. characterMakers.push(() => makeCharacter(
  19999. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20000. {
  20001. front: {
  20002. height: math.unit(6 + 7 / 12, "feet"),
  20003. weight: math.unit(160, "lb"),
  20004. name: "Front",
  20005. image: {
  20006. source: "./media/characters/ceres/front.svg",
  20007. extra: 1023 / 950,
  20008. bottom: 0.027
  20009. }
  20010. },
  20011. back: {
  20012. height: math.unit(6 + 7 / 12, "feet"),
  20013. weight: math.unit(160, "lb"),
  20014. name: "Back",
  20015. image: {
  20016. source: "./media/characters/ceres/back.svg",
  20017. extra: 1023 / 950
  20018. }
  20019. },
  20020. },
  20021. [
  20022. {
  20023. name: "Normal",
  20024. height: math.unit(6 + 7 / 12, "feet"),
  20025. default: true
  20026. },
  20027. ]
  20028. ))
  20029. characterMakers.push(() => makeCharacter(
  20030. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20031. {
  20032. front: {
  20033. height: math.unit(5 + 10 / 12, "feet"),
  20034. weight: math.unit(150, "lb"),
  20035. name: "Front",
  20036. image: {
  20037. source: "./media/characters/kris/front.svg",
  20038. extra: 885 / 803,
  20039. bottom: 0.03
  20040. }
  20041. },
  20042. },
  20043. [
  20044. {
  20045. name: "Normal",
  20046. height: math.unit(5 + 10 / 12, "feet"),
  20047. default: true
  20048. },
  20049. ]
  20050. ))
  20051. characterMakers.push(() => makeCharacter(
  20052. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20053. {
  20054. front: {
  20055. height: math.unit(7, "feet"),
  20056. weight: math.unit(120, "kg"),
  20057. name: "Front",
  20058. image: {
  20059. source: "./media/characters/taluthus/front.svg",
  20060. extra: 903 / 833,
  20061. bottom: 0.015
  20062. }
  20063. },
  20064. },
  20065. [
  20066. {
  20067. name: "Normal",
  20068. height: math.unit(7, "feet"),
  20069. default: true
  20070. },
  20071. {
  20072. name: "Macro",
  20073. height: math.unit(300, "feet")
  20074. },
  20075. ]
  20076. ))
  20077. characterMakers.push(() => makeCharacter(
  20078. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20079. {
  20080. front: {
  20081. height: math.unit(5 + 9 / 12, "feet"),
  20082. weight: math.unit(145, "lb"),
  20083. name: "Front",
  20084. image: {
  20085. source: "./media/characters/dawn/front.svg",
  20086. extra: 2094 / 2016,
  20087. bottom: 0.025
  20088. }
  20089. },
  20090. back: {
  20091. height: math.unit(5 + 9 / 12, "feet"),
  20092. weight: math.unit(160, "lb"),
  20093. name: "Back",
  20094. image: {
  20095. source: "./media/characters/dawn/back.svg",
  20096. extra: 2112 / 2080,
  20097. bottom: 0.005
  20098. }
  20099. },
  20100. },
  20101. [
  20102. {
  20103. name: "Normal",
  20104. height: math.unit(6 + 7 / 12, "feet"),
  20105. default: true
  20106. },
  20107. ]
  20108. ))
  20109. characterMakers.push(() => makeCharacter(
  20110. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20111. {
  20112. anthro: {
  20113. height: math.unit(8 + 3 / 12, "feet"),
  20114. weight: math.unit(450, "lb"),
  20115. name: "Anthro",
  20116. image: {
  20117. source: "./media/characters/arador/anthro.svg",
  20118. extra: 1835 / 1718,
  20119. bottom: 0.025
  20120. }
  20121. },
  20122. feral: {
  20123. height: math.unit(4, "feet"),
  20124. weight: math.unit(200, "lb"),
  20125. name: "Feral",
  20126. image: {
  20127. source: "./media/characters/arador/feral.svg",
  20128. extra: 1683 / 1514,
  20129. bottom: 0.07
  20130. }
  20131. },
  20132. },
  20133. [
  20134. {
  20135. name: "Normal",
  20136. height: math.unit(8 + 3 / 12, "feet")
  20137. },
  20138. {
  20139. name: "Macro",
  20140. height: math.unit(82.5, "feet"),
  20141. default: true
  20142. },
  20143. ]
  20144. ))
  20145. characterMakers.push(() => makeCharacter(
  20146. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20147. {
  20148. front: {
  20149. height: math.unit(5 + 10 / 12, "feet"),
  20150. weight: math.unit(125, "lb"),
  20151. name: "Front",
  20152. image: {
  20153. source: "./media/characters/dharsi/front.svg",
  20154. extra: 716 / 630,
  20155. bottom: 0.035
  20156. }
  20157. },
  20158. },
  20159. [
  20160. {
  20161. name: "Nano",
  20162. height: math.unit(100, "nm")
  20163. },
  20164. {
  20165. name: "Micro",
  20166. height: math.unit(2, "inches")
  20167. },
  20168. {
  20169. name: "Normal",
  20170. height: math.unit(5 + 10 / 12, "feet"),
  20171. default: true
  20172. },
  20173. {
  20174. name: "Macro",
  20175. height: math.unit(1000, "feet")
  20176. },
  20177. {
  20178. name: "Megamacro",
  20179. height: math.unit(10, "miles")
  20180. },
  20181. {
  20182. name: "Gigamacro",
  20183. height: math.unit(3000, "miles")
  20184. },
  20185. {
  20186. name: "Teramacro",
  20187. height: math.unit(500000, "miles")
  20188. },
  20189. {
  20190. name: "Teramacro+",
  20191. height: math.unit(30, "galaxies")
  20192. },
  20193. ]
  20194. ))
  20195. characterMakers.push(() => makeCharacter(
  20196. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20197. {
  20198. front: {
  20199. height: math.unit(6, "feet"),
  20200. weight: math.unit(150, "lb"),
  20201. name: "Front",
  20202. image: {
  20203. source: "./media/characters/deathy/front.svg",
  20204. extra: 1552 / 1463,
  20205. bottom: 0.025
  20206. }
  20207. },
  20208. side: {
  20209. height: math.unit(6, "feet"),
  20210. weight: math.unit(150, "lb"),
  20211. name: "Side",
  20212. image: {
  20213. source: "./media/characters/deathy/side.svg",
  20214. extra: 1604 / 1455,
  20215. bottom: 0.025
  20216. }
  20217. },
  20218. back: {
  20219. height: math.unit(6, "feet"),
  20220. weight: math.unit(150, "lb"),
  20221. name: "Back",
  20222. image: {
  20223. source: "./media/characters/deathy/back.svg",
  20224. extra: 1580 / 1463,
  20225. bottom: 0.005
  20226. }
  20227. },
  20228. },
  20229. [
  20230. {
  20231. name: "Micro",
  20232. height: math.unit(5, "millimeters")
  20233. },
  20234. {
  20235. name: "Normal",
  20236. height: math.unit(6 + 5 / 12, "feet"),
  20237. default: true
  20238. },
  20239. ]
  20240. ))
  20241. characterMakers.push(() => makeCharacter(
  20242. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20243. {
  20244. front: {
  20245. height: math.unit(16, "feet"),
  20246. weight: math.unit(4000, "lb"),
  20247. name: "Front",
  20248. image: {
  20249. source: "./media/characters/juniper/front.svg",
  20250. bottom: 0.04
  20251. }
  20252. },
  20253. },
  20254. [
  20255. {
  20256. name: "Normal",
  20257. height: math.unit(16, "feet"),
  20258. default: true
  20259. },
  20260. ]
  20261. ))
  20262. characterMakers.push(() => makeCharacter(
  20263. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20264. {
  20265. front: {
  20266. height: math.unit(6, "feet"),
  20267. weight: math.unit(150, "lb"),
  20268. name: "Front",
  20269. image: {
  20270. source: "./media/characters/hipster/front.svg",
  20271. extra: 1312 / 1209,
  20272. bottom: 0.025
  20273. }
  20274. },
  20275. back: {
  20276. height: math.unit(6, "feet"),
  20277. weight: math.unit(150, "lb"),
  20278. name: "Back",
  20279. image: {
  20280. source: "./media/characters/hipster/back.svg",
  20281. extra: 1281 / 1196,
  20282. bottom: 0.01
  20283. }
  20284. },
  20285. },
  20286. [
  20287. {
  20288. name: "Micro",
  20289. height: math.unit(1, "mm")
  20290. },
  20291. {
  20292. name: "Normal",
  20293. height: math.unit(4, "inches"),
  20294. default: true
  20295. },
  20296. {
  20297. name: "Macro",
  20298. height: math.unit(500, "feet")
  20299. },
  20300. {
  20301. name: "Megamacro",
  20302. height: math.unit(1000, "miles")
  20303. },
  20304. ]
  20305. ))
  20306. characterMakers.push(() => makeCharacter(
  20307. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20308. {
  20309. front: {
  20310. height: math.unit(6, "feet"),
  20311. weight: math.unit(150, "lb"),
  20312. name: "Front",
  20313. image: {
  20314. source: "./media/characters/tendirmuldr/front.svg",
  20315. extra: 1878 / 1772,
  20316. bottom: 0.015
  20317. }
  20318. },
  20319. },
  20320. [
  20321. {
  20322. name: "Megamacro",
  20323. height: math.unit(1500, "miles"),
  20324. default: true
  20325. },
  20326. ]
  20327. ))
  20328. characterMakers.push(() => makeCharacter(
  20329. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20330. {
  20331. front: {
  20332. height: math.unit(14, "feet"),
  20333. weight: math.unit(12000, "lb"),
  20334. name: "Front",
  20335. image: {
  20336. source: "./media/characters/mort/front.svg",
  20337. extra: 365 / 318,
  20338. bottom: 0.01
  20339. }
  20340. },
  20341. side: {
  20342. height: math.unit(14, "feet"),
  20343. weight: math.unit(12000, "lb"),
  20344. name: "Side",
  20345. image: {
  20346. source: "./media/characters/mort/side.svg",
  20347. extra: 365 / 318,
  20348. bottom: 0.052
  20349. },
  20350. default: true
  20351. },
  20352. back: {
  20353. height: math.unit(14, "feet"),
  20354. weight: math.unit(12000, "lb"),
  20355. name: "Back",
  20356. image: {
  20357. source: "./media/characters/mort/back.svg",
  20358. extra: 371 / 332,
  20359. bottom: 0.18
  20360. }
  20361. },
  20362. },
  20363. [
  20364. {
  20365. name: "Normal",
  20366. height: math.unit(14, "feet"),
  20367. default: true
  20368. },
  20369. ]
  20370. ))
  20371. characterMakers.push(() => makeCharacter(
  20372. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20373. {
  20374. front: {
  20375. height: math.unit(8, "feet"),
  20376. weight: math.unit(1, "ton"),
  20377. name: "Front",
  20378. image: {
  20379. source: "./media/characters/lycoa/front.svg",
  20380. extra: 1875 / 1789,
  20381. bottom: 0.022
  20382. }
  20383. },
  20384. back: {
  20385. height: math.unit(8, "feet"),
  20386. weight: math.unit(1, "ton"),
  20387. name: "Back",
  20388. image: {
  20389. source: "./media/characters/lycoa/back.svg",
  20390. extra: 1835 / 1781,
  20391. bottom: 0.03
  20392. }
  20393. },
  20394. head: {
  20395. height: math.unit(2.1, "feet"),
  20396. name: "Head",
  20397. image: {
  20398. source: "./media/characters/lycoa/head.svg"
  20399. }
  20400. },
  20401. tailmaw: {
  20402. height: math.unit(1.9, "feet"),
  20403. name: "Tailmaw",
  20404. image: {
  20405. source: "./media/characters/lycoa/tailmaw.svg"
  20406. }
  20407. },
  20408. tentacles: {
  20409. height: math.unit(2.1, "feet"),
  20410. name: "Tentacles",
  20411. image: {
  20412. source: "./media/characters/lycoa/tentacles.svg"
  20413. }
  20414. },
  20415. dick: {
  20416. height: math.unit(1.73, "feet"),
  20417. name: "Dick",
  20418. image: {
  20419. source: "./media/characters/lycoa/dick.svg"
  20420. }
  20421. },
  20422. },
  20423. [
  20424. {
  20425. name: "Normal",
  20426. height: math.unit(8, "feet"),
  20427. default: true
  20428. },
  20429. {
  20430. name: "Macro",
  20431. height: math.unit(30, "feet")
  20432. },
  20433. ]
  20434. ))
  20435. characterMakers.push(() => makeCharacter(
  20436. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20437. {
  20438. front: {
  20439. height: math.unit(4 + 2 / 12, "feet"),
  20440. weight: math.unit(70, "lb"),
  20441. name: "Front",
  20442. image: {
  20443. source: "./media/characters/naldara/front.svg",
  20444. extra: 841 / 720,
  20445. bottom: 0.04
  20446. }
  20447. },
  20448. naga: {
  20449. height: math.unit(23, "feet"),
  20450. weight: math.unit(15000, "kg"),
  20451. name: "Naga",
  20452. image: {
  20453. source: "./media/characters/naldara/naga.svg",
  20454. extra: 3290 / 2959,
  20455. bottom: 124 / 3432
  20456. }
  20457. },
  20458. },
  20459. [
  20460. {
  20461. name: "Normal",
  20462. height: math.unit(4 + 2 / 12, "feet"),
  20463. default: true
  20464. },
  20465. ]
  20466. ))
  20467. characterMakers.push(() => makeCharacter(
  20468. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20469. {
  20470. front: {
  20471. height: math.unit(13 + 7 / 12, "feet"),
  20472. weight: math.unit(1500, "lb"),
  20473. name: "Front",
  20474. image: {
  20475. source: "./media/characters/briar/front.svg",
  20476. extra: 626 / 596,
  20477. bottom: 0.08
  20478. }
  20479. },
  20480. },
  20481. [
  20482. {
  20483. name: "Normal",
  20484. height: math.unit(13 + 7 / 12, "feet"),
  20485. default: true
  20486. },
  20487. ]
  20488. ))
  20489. characterMakers.push(() => makeCharacter(
  20490. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20491. {
  20492. side: {
  20493. height: math.unit(10, "feet"),
  20494. weight: math.unit(500, "lb"),
  20495. name: "Side",
  20496. image: {
  20497. source: "./media/characters/vanguard/side.svg",
  20498. extra: 502 / 425,
  20499. bottom: 0.087
  20500. }
  20501. },
  20502. },
  20503. [
  20504. {
  20505. name: "Normal",
  20506. height: math.unit(10, "feet"),
  20507. default: true
  20508. },
  20509. ]
  20510. ))
  20511. characterMakers.push(() => makeCharacter(
  20512. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20513. {
  20514. front: {
  20515. height: math.unit(7.5, "feet"),
  20516. weight: math.unit(2, "lb"),
  20517. name: "Front",
  20518. image: {
  20519. source: "./media/characters/artemis/front.svg",
  20520. extra: 1192 / 1075,
  20521. bottom: 0.07
  20522. }
  20523. },
  20524. frontNsfw: {
  20525. height: math.unit(7.5, "feet"),
  20526. weight: math.unit(2, "lb"),
  20527. name: "Front (NSFW)",
  20528. image: {
  20529. source: "./media/characters/artemis/front-nsfw.svg",
  20530. extra: 1192 / 1075,
  20531. bottom: 0.07
  20532. }
  20533. },
  20534. frontNsfwer: {
  20535. height: math.unit(7.5, "feet"),
  20536. weight: math.unit(2, "lb"),
  20537. name: "Front (NSFW-er)",
  20538. image: {
  20539. source: "./media/characters/artemis/front-nsfwer.svg",
  20540. extra: 1192 / 1075,
  20541. bottom: 0.07
  20542. }
  20543. },
  20544. side: {
  20545. height: math.unit(7.5, "feet"),
  20546. weight: math.unit(2, "lb"),
  20547. name: "Side",
  20548. image: {
  20549. source: "./media/characters/artemis/side.svg",
  20550. extra: 1192 / 1075,
  20551. bottom: 0.07
  20552. }
  20553. },
  20554. sideNsfw: {
  20555. height: math.unit(7.5, "feet"),
  20556. weight: math.unit(2, "lb"),
  20557. name: "Side (NSFW)",
  20558. image: {
  20559. source: "./media/characters/artemis/side-nsfw.svg",
  20560. extra: 1192 / 1075,
  20561. bottom: 0.07
  20562. }
  20563. },
  20564. sideNsfwer: {
  20565. height: math.unit(7.5, "feet"),
  20566. weight: math.unit(2, "lb"),
  20567. name: "Side (NSFW-er)",
  20568. image: {
  20569. source: "./media/characters/artemis/side-nsfwer.svg",
  20570. extra: 1192 / 1075,
  20571. bottom: 0.07
  20572. }
  20573. },
  20574. maw: {
  20575. height: math.unit(1.1, "feet"),
  20576. name: "Maw",
  20577. image: {
  20578. source: "./media/characters/artemis/maw.svg"
  20579. }
  20580. },
  20581. stomach: {
  20582. height: math.unit(0.95, "feet"),
  20583. name: "Stomach",
  20584. image: {
  20585. source: "./media/characters/artemis/stomach.svg"
  20586. }
  20587. },
  20588. dickCanine: {
  20589. height: math.unit(1, "feet"),
  20590. name: "Dick (Canine)",
  20591. image: {
  20592. source: "./media/characters/artemis/dick-canine.svg"
  20593. }
  20594. },
  20595. dickEquine: {
  20596. height: math.unit(0.85, "feet"),
  20597. name: "Dick (Equine)",
  20598. image: {
  20599. source: "./media/characters/artemis/dick-equine.svg"
  20600. }
  20601. },
  20602. dickExotic: {
  20603. height: math.unit(0.85, "feet"),
  20604. name: "Dick (Exotic)",
  20605. image: {
  20606. source: "./media/characters/artemis/dick-exotic.svg"
  20607. }
  20608. },
  20609. },
  20610. [
  20611. {
  20612. name: "Normal",
  20613. height: math.unit(7.5, "feet"),
  20614. default: true
  20615. },
  20616. {
  20617. name: "Enlarged",
  20618. height: math.unit(12, "feet")
  20619. },
  20620. ]
  20621. ))
  20622. characterMakers.push(() => makeCharacter(
  20623. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20624. {
  20625. front: {
  20626. height: math.unit(5 + 3 / 12, "feet"),
  20627. weight: math.unit(160, "lb"),
  20628. name: "Front",
  20629. image: {
  20630. source: "./media/characters/kira/front.svg",
  20631. extra: 906 / 786,
  20632. bottom: 0.01
  20633. }
  20634. },
  20635. back: {
  20636. height: math.unit(5 + 3 / 12, "feet"),
  20637. weight: math.unit(160, "lb"),
  20638. name: "Back",
  20639. image: {
  20640. source: "./media/characters/kira/back.svg",
  20641. extra: 882 / 757,
  20642. bottom: 0.005
  20643. }
  20644. },
  20645. frontDressed: {
  20646. height: math.unit(5 + 3 / 12, "feet"),
  20647. weight: math.unit(160, "lb"),
  20648. name: "Front (Dressed)",
  20649. image: {
  20650. source: "./media/characters/kira/front-dressed.svg",
  20651. extra: 906 / 786,
  20652. bottom: 0.01
  20653. }
  20654. },
  20655. beans: {
  20656. height: math.unit(0.92, "feet"),
  20657. name: "Beans",
  20658. image: {
  20659. source: "./media/characters/kira/beans.svg"
  20660. }
  20661. },
  20662. },
  20663. [
  20664. {
  20665. name: "Normal",
  20666. height: math.unit(5 + 3 / 12, "feet"),
  20667. default: true
  20668. },
  20669. ]
  20670. ))
  20671. characterMakers.push(() => makeCharacter(
  20672. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20673. {
  20674. front: {
  20675. height: math.unit(5 + 4 / 12, "feet"),
  20676. weight: math.unit(145, "lb"),
  20677. name: "Front",
  20678. image: {
  20679. source: "./media/characters/scramble/front.svg",
  20680. extra: 763 / 727,
  20681. bottom: 0.05
  20682. }
  20683. },
  20684. back: {
  20685. height: math.unit(5 + 4 / 12, "feet"),
  20686. weight: math.unit(145, "lb"),
  20687. name: "Back",
  20688. image: {
  20689. source: "./media/characters/scramble/back.svg",
  20690. extra: 826 / 737,
  20691. bottom: 0.002
  20692. }
  20693. },
  20694. },
  20695. [
  20696. {
  20697. name: "Normal",
  20698. height: math.unit(5 + 4 / 12, "feet"),
  20699. default: true
  20700. },
  20701. ]
  20702. ))
  20703. characterMakers.push(() => makeCharacter(
  20704. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20705. {
  20706. side: {
  20707. height: math.unit(6 + 2 / 12, "feet"),
  20708. weight: math.unit(190, "lb"),
  20709. name: "Side",
  20710. image: {
  20711. source: "./media/characters/biscuit/side.svg",
  20712. extra: 858 / 791,
  20713. bottom: 0.044
  20714. }
  20715. },
  20716. },
  20717. [
  20718. {
  20719. name: "Normal",
  20720. height: math.unit(6 + 2 / 12, "feet"),
  20721. default: true
  20722. },
  20723. ]
  20724. ))
  20725. characterMakers.push(() => makeCharacter(
  20726. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20727. {
  20728. front: {
  20729. height: math.unit(5 + 2 / 12, "feet"),
  20730. weight: math.unit(120, "lb"),
  20731. name: "Front",
  20732. image: {
  20733. source: "./media/characters/poffin/front.svg",
  20734. extra: 786 / 680,
  20735. bottom: 0.005
  20736. }
  20737. },
  20738. },
  20739. [
  20740. {
  20741. name: "Normal",
  20742. height: math.unit(5 + 2 / 12, "feet"),
  20743. default: true
  20744. },
  20745. ]
  20746. ))
  20747. characterMakers.push(() => makeCharacter(
  20748. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20749. {
  20750. front: {
  20751. height: math.unit(6 + 3 / 12, "feet"),
  20752. weight: math.unit(519, "lb"),
  20753. name: "Front",
  20754. image: {
  20755. source: "./media/characters/dhari/front.svg",
  20756. extra: 1048 / 946,
  20757. bottom: 0.015
  20758. }
  20759. },
  20760. back: {
  20761. height: math.unit(6 + 3 / 12, "feet"),
  20762. weight: math.unit(519, "lb"),
  20763. name: "Back",
  20764. image: {
  20765. source: "./media/characters/dhari/back.svg",
  20766. extra: 1048 / 931,
  20767. bottom: 0.005
  20768. }
  20769. },
  20770. frontDressed: {
  20771. height: math.unit(6 + 3 / 12, "feet"),
  20772. weight: math.unit(519, "lb"),
  20773. name: "Front (Dressed)",
  20774. image: {
  20775. source: "./media/characters/dhari/front-dressed.svg",
  20776. extra: 1713 / 1546,
  20777. bottom: 0.02
  20778. }
  20779. },
  20780. backDressed: {
  20781. height: math.unit(6 + 3 / 12, "feet"),
  20782. weight: math.unit(519, "lb"),
  20783. name: "Back (Dressed)",
  20784. image: {
  20785. source: "./media/characters/dhari/back-dressed.svg",
  20786. extra: 1699 / 1537,
  20787. bottom: 0.01
  20788. }
  20789. },
  20790. maw: {
  20791. height: math.unit(0.95, "feet"),
  20792. name: "Maw",
  20793. image: {
  20794. source: "./media/characters/dhari/maw.svg"
  20795. }
  20796. },
  20797. wereFront: {
  20798. height: math.unit(12 + 8 / 12, "feet"),
  20799. weight: math.unit(4000, "lb"),
  20800. name: "Front (Were)",
  20801. image: {
  20802. source: "./media/characters/dhari/were-front.svg",
  20803. extra: 1065 / 969,
  20804. bottom: 0.015
  20805. }
  20806. },
  20807. wereBack: {
  20808. height: math.unit(12 + 8 / 12, "feet"),
  20809. weight: math.unit(4000, "lb"),
  20810. name: "Back (Were)",
  20811. image: {
  20812. source: "./media/characters/dhari/were-back.svg",
  20813. extra: 1065 / 969,
  20814. bottom: 0.012
  20815. }
  20816. },
  20817. wereMaw: {
  20818. height: math.unit(0.625, "meters"),
  20819. name: "Maw (Were)",
  20820. image: {
  20821. source: "./media/characters/dhari/were-maw.svg"
  20822. }
  20823. },
  20824. },
  20825. [
  20826. {
  20827. name: "Normal",
  20828. height: math.unit(6 + 3 / 12, "feet"),
  20829. default: true
  20830. },
  20831. ]
  20832. ))
  20833. characterMakers.push(() => makeCharacter(
  20834. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20835. {
  20836. anthro: {
  20837. height: math.unit(5 + 7 / 12, "feet"),
  20838. weight: math.unit(175, "lb"),
  20839. name: "Anthro",
  20840. image: {
  20841. source: "./media/characters/rena-dyne/anthro.svg",
  20842. extra: 1849 / 1785,
  20843. bottom: 0.005
  20844. }
  20845. },
  20846. taur: {
  20847. height: math.unit(15 + 6 / 12, "feet"),
  20848. weight: math.unit(8000, "lb"),
  20849. name: "Taur",
  20850. image: {
  20851. source: "./media/characters/rena-dyne/taur.svg",
  20852. extra: 2315 / 2234,
  20853. bottom: 0.033
  20854. }
  20855. },
  20856. },
  20857. [
  20858. {
  20859. name: "Normal",
  20860. height: math.unit(5 + 7 / 12, "feet"),
  20861. default: true
  20862. },
  20863. ]
  20864. ))
  20865. characterMakers.push(() => makeCharacter(
  20866. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20867. {
  20868. front: {
  20869. height: math.unit(8, "feet"),
  20870. weight: math.unit(600, "lb"),
  20871. name: "Front",
  20872. image: {
  20873. source: "./media/characters/weremeep/front.svg",
  20874. extra: 967 / 862,
  20875. bottom: 0.01
  20876. }
  20877. },
  20878. },
  20879. [
  20880. {
  20881. name: "Normal",
  20882. height: math.unit(8, "feet"),
  20883. default: true
  20884. },
  20885. {
  20886. name: "Lorg",
  20887. height: math.unit(12, "feet")
  20888. },
  20889. {
  20890. name: "Oh Lawd She Comin'",
  20891. height: math.unit(20, "feet")
  20892. },
  20893. ]
  20894. ))
  20895. characterMakers.push(() => makeCharacter(
  20896. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20897. {
  20898. front: {
  20899. height: math.unit(4, "feet"),
  20900. weight: math.unit(90, "lb"),
  20901. name: "Front",
  20902. image: {
  20903. source: "./media/characters/reza/front.svg",
  20904. extra: 1183 / 1111,
  20905. bottom: 0.017
  20906. }
  20907. },
  20908. back: {
  20909. height: math.unit(4, "feet"),
  20910. weight: math.unit(90, "lb"),
  20911. name: "Back",
  20912. image: {
  20913. source: "./media/characters/reza/back.svg",
  20914. extra: 1183 / 1111,
  20915. bottom: 0.01
  20916. }
  20917. },
  20918. drake: {
  20919. height: math.unit(30, "feet"),
  20920. weight: math.unit(246960, "lb"),
  20921. name: "Drake",
  20922. image: {
  20923. source: "./media/characters/reza/drake.svg",
  20924. extra: 2350 / 2024,
  20925. bottom: 60.7 / 2403
  20926. }
  20927. },
  20928. },
  20929. [
  20930. {
  20931. name: "Normal",
  20932. height: math.unit(4, "feet"),
  20933. default: true
  20934. },
  20935. ]
  20936. ))
  20937. characterMakers.push(() => makeCharacter(
  20938. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20939. {
  20940. side: {
  20941. height: math.unit(15, "feet"),
  20942. weight: math.unit(14, "tons"),
  20943. name: "Side",
  20944. image: {
  20945. source: "./media/characters/athea/side.svg",
  20946. extra: 960 / 540,
  20947. bottom: 0.003
  20948. }
  20949. },
  20950. sitting: {
  20951. height: math.unit(6 * 2.85, "feet"),
  20952. weight: math.unit(14, "tons"),
  20953. name: "Sitting",
  20954. image: {
  20955. source: "./media/characters/athea/sitting.svg",
  20956. extra: 621 / 581,
  20957. bottom: 0.075
  20958. }
  20959. },
  20960. maw: {
  20961. height: math.unit(7.59498031496063, "feet"),
  20962. name: "Maw",
  20963. image: {
  20964. source: "./media/characters/athea/maw.svg"
  20965. }
  20966. },
  20967. },
  20968. [
  20969. {
  20970. name: "Lap Cat",
  20971. height: math.unit(2.5, "feet")
  20972. },
  20973. {
  20974. name: "Minimacro",
  20975. height: math.unit(15, "feet"),
  20976. default: true
  20977. },
  20978. {
  20979. name: "Macro",
  20980. height: math.unit(120, "feet")
  20981. },
  20982. {
  20983. name: "Macro+",
  20984. height: math.unit(640, "feet")
  20985. },
  20986. {
  20987. name: "Colossus",
  20988. height: math.unit(2.2, "miles")
  20989. },
  20990. ]
  20991. ))
  20992. characterMakers.push(() => makeCharacter(
  20993. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20994. {
  20995. front: {
  20996. height: math.unit(8 + 8 / 12, "feet"),
  20997. weight: math.unit(130, "kg"),
  20998. name: "Front",
  20999. image: {
  21000. source: "./media/characters/seroko/front.svg",
  21001. extra: 1385 / 1280,
  21002. bottom: 0.025
  21003. }
  21004. },
  21005. back: {
  21006. height: math.unit(8 + 8 / 12, "feet"),
  21007. weight: math.unit(130, "kg"),
  21008. name: "Back",
  21009. image: {
  21010. source: "./media/characters/seroko/back.svg",
  21011. extra: 1369 / 1238,
  21012. bottom: 0.018
  21013. }
  21014. },
  21015. frontDressed: {
  21016. height: math.unit(8 + 8 / 12, "feet"),
  21017. weight: math.unit(130, "kg"),
  21018. name: "Front (Dressed)",
  21019. image: {
  21020. source: "./media/characters/seroko/front-dressed.svg",
  21021. extra: 1366 / 1275,
  21022. bottom: 0.03
  21023. }
  21024. },
  21025. },
  21026. [
  21027. {
  21028. name: "Normal",
  21029. height: math.unit(8 + 8 / 12, "feet"),
  21030. default: true
  21031. },
  21032. ]
  21033. ))
  21034. characterMakers.push(() => makeCharacter(
  21035. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21036. {
  21037. front: {
  21038. height: math.unit(5.5, "feet"),
  21039. weight: math.unit(160, "lb"),
  21040. name: "Front",
  21041. image: {
  21042. source: "./media/characters/quatzi/front.svg",
  21043. extra: 2346 / 2242,
  21044. bottom: 0.015
  21045. }
  21046. },
  21047. },
  21048. [
  21049. {
  21050. name: "Normal",
  21051. height: math.unit(5.5, "feet"),
  21052. default: true
  21053. },
  21054. {
  21055. name: "Big",
  21056. height: math.unit(7.7, "feet")
  21057. },
  21058. ]
  21059. ))
  21060. characterMakers.push(() => makeCharacter(
  21061. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21062. {
  21063. front: {
  21064. height: math.unit(5 + 11 / 12, "feet"),
  21065. weight: math.unit(180, "lb"),
  21066. name: "Front",
  21067. image: {
  21068. source: "./media/characters/sen/front.svg",
  21069. extra: 1321 / 1254,
  21070. bottom: 0.015
  21071. }
  21072. },
  21073. side: {
  21074. height: math.unit(5 + 11 / 12, "feet"),
  21075. weight: math.unit(180, "lb"),
  21076. name: "Side",
  21077. image: {
  21078. source: "./media/characters/sen/side.svg",
  21079. extra: 1321 / 1254,
  21080. bottom: 0.007
  21081. }
  21082. },
  21083. back: {
  21084. height: math.unit(5 + 11 / 12, "feet"),
  21085. weight: math.unit(180, "lb"),
  21086. name: "Back",
  21087. image: {
  21088. source: "./media/characters/sen/back.svg",
  21089. extra: 1321 / 1254
  21090. }
  21091. },
  21092. },
  21093. [
  21094. {
  21095. name: "Normal",
  21096. height: math.unit(5 + 11 / 12, "feet"),
  21097. default: true
  21098. },
  21099. ]
  21100. ))
  21101. characterMakers.push(() => makeCharacter(
  21102. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21103. {
  21104. front: {
  21105. height: math.unit(166.6, "cm"),
  21106. weight: math.unit(66.6, "kg"),
  21107. name: "Front",
  21108. image: {
  21109. source: "./media/characters/fruity/front.svg",
  21110. extra: 1510 / 1386,
  21111. bottom: 0.04
  21112. }
  21113. },
  21114. back: {
  21115. height: math.unit(166.6, "cm"),
  21116. weight: math.unit(66.6, "lb"),
  21117. name: "Back",
  21118. image: {
  21119. source: "./media/characters/fruity/back.svg",
  21120. extra: 1563 / 1435,
  21121. bottom: 0.005
  21122. }
  21123. },
  21124. },
  21125. [
  21126. {
  21127. name: "Normal",
  21128. height: math.unit(166.6, "cm"),
  21129. default: true
  21130. },
  21131. {
  21132. name: "Demonic",
  21133. height: math.unit(166.6, "feet")
  21134. },
  21135. ]
  21136. ))
  21137. characterMakers.push(() => makeCharacter(
  21138. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21139. {
  21140. side: {
  21141. height: math.unit(10, "feet"),
  21142. weight: math.unit(500, "lb"),
  21143. name: "Side",
  21144. image: {
  21145. source: "./media/characters/zost/side.svg",
  21146. extra: 966 / 880,
  21147. bottom: 0.075
  21148. }
  21149. },
  21150. mawFront: {
  21151. height: math.unit(1.08, "meters"),
  21152. name: "Maw (Front)",
  21153. image: {
  21154. source: "./media/characters/zost/maw-front.svg"
  21155. }
  21156. },
  21157. mawSide: {
  21158. height: math.unit(2.66, "feet"),
  21159. name: "Maw (Side)",
  21160. image: {
  21161. source: "./media/characters/zost/maw-side.svg"
  21162. }
  21163. },
  21164. },
  21165. [
  21166. {
  21167. name: "Normal",
  21168. height: math.unit(10, "feet"),
  21169. default: true
  21170. },
  21171. ]
  21172. ))
  21173. characterMakers.push(() => makeCharacter(
  21174. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21175. {
  21176. front: {
  21177. height: math.unit(5 + 4 / 12, "feet"),
  21178. weight: math.unit(120, "lb"),
  21179. name: "Front",
  21180. image: {
  21181. source: "./media/characters/luci/front.svg",
  21182. extra: 1985 / 1884,
  21183. bottom: 0.04
  21184. }
  21185. },
  21186. back: {
  21187. height: math.unit(5 + 4 / 12, "feet"),
  21188. weight: math.unit(120, "lb"),
  21189. name: "Back",
  21190. image: {
  21191. source: "./media/characters/luci/back.svg",
  21192. extra: 1892 / 1791,
  21193. bottom: 0.002
  21194. }
  21195. },
  21196. },
  21197. [
  21198. {
  21199. name: "Normal",
  21200. height: math.unit(5 + 4 / 12, "feet"),
  21201. default: true
  21202. },
  21203. ]
  21204. ))
  21205. characterMakers.push(() => makeCharacter(
  21206. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21207. {
  21208. front: {
  21209. height: math.unit(1500, "feet"),
  21210. weight: math.unit(3.8e6, "tons"),
  21211. name: "Front",
  21212. image: {
  21213. source: "./media/characters/2th/front.svg",
  21214. extra: 3489 / 3350,
  21215. bottom: 0.1
  21216. }
  21217. },
  21218. foot: {
  21219. height: math.unit(461, "feet"),
  21220. name: "Foot",
  21221. image: {
  21222. source: "./media/characters/2th/foot.svg"
  21223. }
  21224. },
  21225. },
  21226. [
  21227. {
  21228. name: "\"Micro\"",
  21229. height: math.unit(15 + 7 / 12, "feet")
  21230. },
  21231. {
  21232. name: "Normal",
  21233. height: math.unit(1500, "feet"),
  21234. default: true
  21235. },
  21236. {
  21237. name: "Macro",
  21238. height: math.unit(5000, "feet")
  21239. },
  21240. {
  21241. name: "Megamacro",
  21242. height: math.unit(15, "miles")
  21243. },
  21244. {
  21245. name: "Gigamacro",
  21246. height: math.unit(4000, "miles")
  21247. },
  21248. {
  21249. name: "Galactic",
  21250. height: math.unit(50, "AU")
  21251. },
  21252. ]
  21253. ))
  21254. characterMakers.push(() => makeCharacter(
  21255. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21256. {
  21257. front: {
  21258. height: math.unit(5 + 6 / 12, "feet"),
  21259. weight: math.unit(220, "lb"),
  21260. name: "Front",
  21261. image: {
  21262. source: "./media/characters/amethyst/front.svg",
  21263. extra: 2078 / 2040,
  21264. bottom: 0.045
  21265. }
  21266. },
  21267. back: {
  21268. height: math.unit(5 + 6 / 12, "feet"),
  21269. weight: math.unit(220, "lb"),
  21270. name: "Back",
  21271. image: {
  21272. source: "./media/characters/amethyst/back.svg",
  21273. extra: 2021 / 1989,
  21274. bottom: 0.02
  21275. }
  21276. },
  21277. },
  21278. [
  21279. {
  21280. name: "Normal",
  21281. height: math.unit(5 + 6 / 12, "feet"),
  21282. default: true
  21283. },
  21284. ]
  21285. ))
  21286. characterMakers.push(() => makeCharacter(
  21287. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21288. {
  21289. front: {
  21290. height: math.unit(4 + 11 / 12, "feet"),
  21291. weight: math.unit(120, "lb"),
  21292. name: "Front",
  21293. image: {
  21294. source: "./media/characters/yumi-akiyama/front.svg",
  21295. extra: 1327 / 1235,
  21296. bottom: 0.02
  21297. }
  21298. },
  21299. back: {
  21300. height: math.unit(4 + 11 / 12, "feet"),
  21301. weight: math.unit(120, "lb"),
  21302. name: "Back",
  21303. image: {
  21304. source: "./media/characters/yumi-akiyama/back.svg",
  21305. extra: 1287 / 1245,
  21306. bottom: 0.002
  21307. }
  21308. },
  21309. },
  21310. [
  21311. {
  21312. name: "Galactic",
  21313. height: math.unit(50, "galaxies"),
  21314. default: true
  21315. },
  21316. {
  21317. name: "Universal",
  21318. height: math.unit(100, "universes")
  21319. },
  21320. ]
  21321. ))
  21322. characterMakers.push(() => makeCharacter(
  21323. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21324. {
  21325. front: {
  21326. height: math.unit(8, "feet"),
  21327. weight: math.unit(500, "lb"),
  21328. name: "Front",
  21329. image: {
  21330. source: "./media/characters/rifter-yrmori/front.svg",
  21331. extra: 1180 / 1125,
  21332. bottom: 0.02
  21333. }
  21334. },
  21335. back: {
  21336. height: math.unit(8, "feet"),
  21337. weight: math.unit(500, "lb"),
  21338. name: "Back",
  21339. image: {
  21340. source: "./media/characters/rifter-yrmori/back.svg",
  21341. extra: 1190 / 1145,
  21342. bottom: 0.001
  21343. }
  21344. },
  21345. wings: {
  21346. height: math.unit(7.75, "feet"),
  21347. weight: math.unit(500, "lb"),
  21348. name: "Wings",
  21349. image: {
  21350. source: "./media/characters/rifter-yrmori/wings.svg",
  21351. extra: 1357 / 1285
  21352. }
  21353. },
  21354. maw: {
  21355. height: math.unit(0.8, "feet"),
  21356. name: "Maw",
  21357. image: {
  21358. source: "./media/characters/rifter-yrmori/maw.svg"
  21359. }
  21360. },
  21361. mawfront: {
  21362. height: math.unit(1.45, "feet"),
  21363. name: "Maw (Front)",
  21364. image: {
  21365. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21366. }
  21367. },
  21368. },
  21369. [
  21370. {
  21371. name: "Normal",
  21372. height: math.unit(8, "feet"),
  21373. default: true
  21374. },
  21375. {
  21376. name: "Macro",
  21377. height: math.unit(42, "meters")
  21378. },
  21379. ]
  21380. ))
  21381. characterMakers.push(() => makeCharacter(
  21382. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21383. {
  21384. were: {
  21385. height: math.unit(25 + 6 / 12, "feet"),
  21386. weight: math.unit(10000, "lb"),
  21387. name: "Were",
  21388. image: {
  21389. source: "./media/characters/tahajin/were.svg",
  21390. extra: 801 / 770,
  21391. bottom: 0.042
  21392. }
  21393. },
  21394. aquatic: {
  21395. height: math.unit(6 + 4 / 12, "feet"),
  21396. weight: math.unit(160, "lb"),
  21397. name: "Aquatic",
  21398. image: {
  21399. source: "./media/characters/tahajin/aquatic.svg",
  21400. extra: 572 / 542,
  21401. bottom: 0.04
  21402. }
  21403. },
  21404. chow: {
  21405. height: math.unit(8 + 11 / 12, "feet"),
  21406. weight: math.unit(450, "lb"),
  21407. name: "Chow",
  21408. image: {
  21409. source: "./media/characters/tahajin/chow.svg",
  21410. extra: 660 / 640,
  21411. bottom: 0.015
  21412. }
  21413. },
  21414. demiNaga: {
  21415. height: math.unit(6 + 8 / 12, "feet"),
  21416. weight: math.unit(300, "lb"),
  21417. name: "Demi Naga",
  21418. image: {
  21419. source: "./media/characters/tahajin/demi-naga.svg",
  21420. extra: 643 / 615,
  21421. bottom: 0.1
  21422. }
  21423. },
  21424. data: {
  21425. height: math.unit(5, "inches"),
  21426. weight: math.unit(0.1, "lb"),
  21427. name: "Data",
  21428. image: {
  21429. source: "./media/characters/tahajin/data.svg"
  21430. }
  21431. },
  21432. fluu: {
  21433. height: math.unit(5 + 7 / 12, "feet"),
  21434. weight: math.unit(140, "lb"),
  21435. name: "Fluu",
  21436. image: {
  21437. source: "./media/characters/tahajin/fluu.svg",
  21438. extra: 628 / 592,
  21439. bottom: 0.02
  21440. }
  21441. },
  21442. starWarrior: {
  21443. height: math.unit(4 + 5 / 12, "feet"),
  21444. weight: math.unit(50, "lb"),
  21445. name: "Star Warrior",
  21446. image: {
  21447. source: "./media/characters/tahajin/star-warrior.svg"
  21448. }
  21449. },
  21450. },
  21451. [
  21452. {
  21453. name: "Normal",
  21454. height: math.unit(25 + 6 / 12, "feet"),
  21455. default: true
  21456. },
  21457. ]
  21458. ))
  21459. characterMakers.push(() => makeCharacter(
  21460. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21461. {
  21462. front: {
  21463. height: math.unit(8, "feet"),
  21464. weight: math.unit(350, "lb"),
  21465. name: "Front",
  21466. image: {
  21467. source: "./media/characters/gabira/front.svg",
  21468. extra: 608 / 580,
  21469. bottom: 0.03
  21470. }
  21471. },
  21472. back: {
  21473. height: math.unit(8, "feet"),
  21474. weight: math.unit(350, "lb"),
  21475. name: "Back",
  21476. image: {
  21477. source: "./media/characters/gabira/back.svg",
  21478. extra: 608 / 580,
  21479. bottom: 0.03
  21480. }
  21481. },
  21482. },
  21483. [
  21484. {
  21485. name: "Normal",
  21486. height: math.unit(8, "feet"),
  21487. default: true
  21488. },
  21489. ]
  21490. ))
  21491. characterMakers.push(() => makeCharacter(
  21492. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21493. {
  21494. front: {
  21495. height: math.unit(5 + 3 / 12, "feet"),
  21496. weight: math.unit(137, "lb"),
  21497. name: "Front",
  21498. image: {
  21499. source: "./media/characters/sasha-katraine/front.svg",
  21500. bottom: 0.045
  21501. }
  21502. },
  21503. },
  21504. [
  21505. {
  21506. name: "Micro",
  21507. height: math.unit(5, "inches")
  21508. },
  21509. {
  21510. name: "Normal",
  21511. height: math.unit(5 + 3 / 12, "feet"),
  21512. default: true
  21513. },
  21514. ]
  21515. ))
  21516. characterMakers.push(() => makeCharacter(
  21517. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21518. {
  21519. side: {
  21520. height: math.unit(4, "inches"),
  21521. weight: math.unit(200, "grams"),
  21522. name: "Side",
  21523. image: {
  21524. source: "./media/characters/der/side.svg",
  21525. extra: 719 / 400,
  21526. bottom: 30.6 / 749.9187
  21527. }
  21528. },
  21529. },
  21530. [
  21531. {
  21532. name: "Micro",
  21533. height: math.unit(4, "inches"),
  21534. default: true
  21535. },
  21536. ]
  21537. ))
  21538. characterMakers.push(() => makeCharacter(
  21539. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21540. {
  21541. side: {
  21542. height: math.unit(30, "meters"),
  21543. weight: math.unit(700, "tonnes"),
  21544. name: "Side",
  21545. image: {
  21546. source: "./media/characters/fixerdragon/side.svg",
  21547. extra: (1293.0514 - 116.03) / 1106.86,
  21548. bottom: 116.03 / 1293.0514
  21549. }
  21550. },
  21551. },
  21552. [
  21553. {
  21554. name: "Planck",
  21555. height: math.unit(1.6e-35, "meters")
  21556. },
  21557. {
  21558. name: "Micro",
  21559. height: math.unit(0.4, "meters")
  21560. },
  21561. {
  21562. name: "Normal",
  21563. height: math.unit(30, "meters"),
  21564. default: true
  21565. },
  21566. {
  21567. name: "Megamacro",
  21568. height: math.unit(1.2, "megameters")
  21569. },
  21570. {
  21571. name: "Teramacro",
  21572. height: math.unit(130, "terameters")
  21573. },
  21574. {
  21575. name: "Yottamacro",
  21576. height: math.unit(6200, "yottameters")
  21577. },
  21578. ]
  21579. ));
  21580. characterMakers.push(() => makeCharacter(
  21581. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21582. {
  21583. front: {
  21584. height: math.unit(8, "feet"),
  21585. weight: math.unit(250, "lb"),
  21586. name: "Front",
  21587. image: {
  21588. source: "./media/characters/kite/front.svg",
  21589. extra: 2796 / 2659,
  21590. bottom: 0.002
  21591. }
  21592. },
  21593. },
  21594. [
  21595. {
  21596. name: "Normal",
  21597. height: math.unit(8, "feet"),
  21598. default: true
  21599. },
  21600. {
  21601. name: "Macro",
  21602. height: math.unit(360, "feet")
  21603. },
  21604. {
  21605. name: "Megamacro",
  21606. height: math.unit(1500, "feet")
  21607. },
  21608. ]
  21609. ))
  21610. characterMakers.push(() => makeCharacter(
  21611. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21612. {
  21613. front: {
  21614. height: math.unit(5 + 10 / 12, "feet"),
  21615. weight: math.unit(150, "lb"),
  21616. name: "Front",
  21617. image: {
  21618. source: "./media/characters/poojawa-vynar/front.svg",
  21619. extra: (1506.1547 - 55) / 1356.6,
  21620. bottom: 55 / 1506.1547
  21621. }
  21622. },
  21623. frontTailless: {
  21624. height: math.unit(5 + 10 / 12, "feet"),
  21625. weight: math.unit(150, "lb"),
  21626. name: "Front (Tailless)",
  21627. image: {
  21628. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21629. extra: (1506.1547 - 55) / 1356.6,
  21630. bottom: 55 / 1506.1547
  21631. }
  21632. },
  21633. },
  21634. [
  21635. {
  21636. name: "Normal",
  21637. height: math.unit(5 + 10 / 12, "feet"),
  21638. default: true
  21639. },
  21640. ]
  21641. ))
  21642. characterMakers.push(() => makeCharacter(
  21643. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21644. {
  21645. front: {
  21646. height: math.unit(293, "meters"),
  21647. weight: math.unit(70400, "tons"),
  21648. name: "Front",
  21649. image: {
  21650. source: "./media/characters/violette/front.svg",
  21651. extra: 1227 / 1180,
  21652. bottom: 0.005
  21653. }
  21654. },
  21655. back: {
  21656. height: math.unit(293, "meters"),
  21657. weight: math.unit(70400, "tons"),
  21658. name: "Back",
  21659. image: {
  21660. source: "./media/characters/violette/back.svg",
  21661. extra: 1227 / 1180,
  21662. bottom: 0.005
  21663. }
  21664. },
  21665. },
  21666. [
  21667. {
  21668. name: "Macro",
  21669. height: math.unit(293, "meters"),
  21670. default: true
  21671. },
  21672. ]
  21673. ))
  21674. characterMakers.push(() => makeCharacter(
  21675. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21676. {
  21677. front: {
  21678. height: math.unit(1050, "feet"),
  21679. weight: math.unit(200000, "tons"),
  21680. name: "Front",
  21681. image: {
  21682. source: "./media/characters/alessandra/front.svg",
  21683. extra: 960 / 912,
  21684. bottom: 0.06
  21685. }
  21686. },
  21687. },
  21688. [
  21689. {
  21690. name: "Macro",
  21691. height: math.unit(1050, "feet")
  21692. },
  21693. {
  21694. name: "Macro+",
  21695. height: math.unit(900, "meters"),
  21696. default: true
  21697. },
  21698. ]
  21699. ))
  21700. characterMakers.push(() => makeCharacter(
  21701. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21702. {
  21703. front: {
  21704. height: math.unit(5, "feet"),
  21705. weight: math.unit(187, "lb"),
  21706. name: "Front",
  21707. image: {
  21708. source: "./media/characters/person/front.svg",
  21709. extra: 3087 / 2945,
  21710. bottom: 91 / 3181
  21711. }
  21712. },
  21713. },
  21714. [
  21715. {
  21716. name: "Micro",
  21717. height: math.unit(3, "inches")
  21718. },
  21719. {
  21720. name: "Normal",
  21721. height: math.unit(5, "feet"),
  21722. default: true
  21723. },
  21724. {
  21725. name: "Macro",
  21726. height: math.unit(90, "feet")
  21727. },
  21728. {
  21729. name: "Max Size",
  21730. height: math.unit(280, "feet")
  21731. },
  21732. ]
  21733. ))
  21734. characterMakers.push(() => makeCharacter(
  21735. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21736. {
  21737. front: {
  21738. height: math.unit(4.5, "meters"),
  21739. weight: math.unit(3200, "lb"),
  21740. name: "Front",
  21741. image: {
  21742. source: "./media/characters/ty/front.svg",
  21743. extra: 1038 / 960,
  21744. bottom: 31.156 / 1068
  21745. }
  21746. },
  21747. back: {
  21748. height: math.unit(4.5, "meters"),
  21749. weight: math.unit(3200, "lb"),
  21750. name: "Back",
  21751. image: {
  21752. source: "./media/characters/ty/back.svg",
  21753. extra: 1044 / 966,
  21754. bottom: 7.48 / 1049
  21755. }
  21756. },
  21757. },
  21758. [
  21759. {
  21760. name: "Normal",
  21761. height: math.unit(4.5, "meters"),
  21762. default: true
  21763. },
  21764. ]
  21765. ))
  21766. characterMakers.push(() => makeCharacter(
  21767. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21768. {
  21769. front: {
  21770. height: math.unit(5 + 4 / 12, "feet"),
  21771. weight: math.unit(115, "lb"),
  21772. name: "Front",
  21773. image: {
  21774. source: "./media/characters/rocky/front.svg",
  21775. extra: 1012 / 975,
  21776. bottom: 54 / 1066
  21777. }
  21778. },
  21779. },
  21780. [
  21781. {
  21782. name: "Normal",
  21783. height: math.unit(5 + 4 / 12, "feet"),
  21784. default: true
  21785. },
  21786. ]
  21787. ))
  21788. characterMakers.push(() => makeCharacter(
  21789. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21790. {
  21791. upright: {
  21792. height: math.unit(6, "meters"),
  21793. weight: math.unit(4000, "kg"),
  21794. name: "Upright",
  21795. image: {
  21796. source: "./media/characters/ruin/upright.svg",
  21797. extra: 668 / 661,
  21798. bottom: 42 / 799.8396
  21799. }
  21800. },
  21801. },
  21802. [
  21803. {
  21804. name: "Normal",
  21805. height: math.unit(6, "meters"),
  21806. default: true
  21807. },
  21808. ]
  21809. ))
  21810. characterMakers.push(() => makeCharacter(
  21811. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21812. {
  21813. front: {
  21814. height: math.unit(5, "feet"),
  21815. weight: math.unit(106, "lb"),
  21816. name: "Front",
  21817. image: {
  21818. source: "./media/characters/robin/front.svg",
  21819. extra: 862 / 799,
  21820. bottom: 42.4 / 914.8856
  21821. }
  21822. },
  21823. },
  21824. [
  21825. {
  21826. name: "Normal",
  21827. height: math.unit(5, "feet"),
  21828. default: true
  21829. },
  21830. ]
  21831. ))
  21832. characterMakers.push(() => makeCharacter(
  21833. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21834. {
  21835. side: {
  21836. height: math.unit(3, "feet"),
  21837. weight: math.unit(225, "lb"),
  21838. name: "Side",
  21839. image: {
  21840. source: "./media/characters/saian/side.svg",
  21841. extra: 566 / 356,
  21842. bottom: 79.7 / 643
  21843. }
  21844. },
  21845. maw: {
  21846. height: math.unit(2.85, "feet"),
  21847. name: "Maw",
  21848. image: {
  21849. source: "./media/characters/saian/maw.svg"
  21850. }
  21851. },
  21852. },
  21853. [
  21854. {
  21855. name: "Normal",
  21856. height: math.unit(3, "feet"),
  21857. default: true
  21858. },
  21859. ]
  21860. ))
  21861. characterMakers.push(() => makeCharacter(
  21862. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21863. {
  21864. side: {
  21865. height: math.unit(8, "feet"),
  21866. weight: math.unit(300, "lb"),
  21867. name: "Side",
  21868. image: {
  21869. source: "./media/characters/equus-silvermane/side.svg",
  21870. extra: 2176 / 2050,
  21871. bottom: 65.7 / 2245
  21872. }
  21873. },
  21874. front: {
  21875. height: math.unit(8, "feet"),
  21876. weight: math.unit(300, "lb"),
  21877. name: "Front",
  21878. image: {
  21879. source: "./media/characters/equus-silvermane/front.svg",
  21880. extra: 4633 / 4400,
  21881. bottom: 71.3 / 4706.915
  21882. }
  21883. },
  21884. sideStepping: {
  21885. height: math.unit(8, "feet"),
  21886. weight: math.unit(300, "lb"),
  21887. name: "Side (Stepping)",
  21888. image: {
  21889. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21890. extra: 1968 / 1860,
  21891. bottom: 16.4 / 1989
  21892. }
  21893. },
  21894. },
  21895. [
  21896. {
  21897. name: "Normal",
  21898. height: math.unit(8, "feet")
  21899. },
  21900. {
  21901. name: "Minimacro",
  21902. height: math.unit(75, "feet"),
  21903. default: true
  21904. },
  21905. {
  21906. name: "Macro",
  21907. height: math.unit(150, "feet")
  21908. },
  21909. {
  21910. name: "Macro+",
  21911. height: math.unit(1000, "feet")
  21912. },
  21913. {
  21914. name: "Megamacro",
  21915. height: math.unit(1, "mile")
  21916. },
  21917. ]
  21918. ))
  21919. characterMakers.push(() => makeCharacter(
  21920. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21921. {
  21922. side: {
  21923. height: math.unit(20, "feet"),
  21924. weight: math.unit(30000, "kg"),
  21925. name: "Side",
  21926. image: {
  21927. source: "./media/characters/windar/side.svg",
  21928. extra: 1491 / 1248,
  21929. bottom: 82.56 / 1568
  21930. }
  21931. },
  21932. },
  21933. [
  21934. {
  21935. name: "Normal",
  21936. height: math.unit(20, "feet"),
  21937. default: true
  21938. },
  21939. ]
  21940. ))
  21941. characterMakers.push(() => makeCharacter(
  21942. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21943. {
  21944. side: {
  21945. height: math.unit(15.66, "feet"),
  21946. weight: math.unit(150, "lb"),
  21947. name: "Side",
  21948. image: {
  21949. source: "./media/characters/melody/side.svg",
  21950. extra: 1097 / 944,
  21951. bottom: 11.8 / 1109
  21952. }
  21953. },
  21954. sideOutfit: {
  21955. height: math.unit(15.66, "feet"),
  21956. weight: math.unit(150, "lb"),
  21957. name: "Side (Outfit)",
  21958. image: {
  21959. source: "./media/characters/melody/side-outfit.svg",
  21960. extra: 1097 / 944,
  21961. bottom: 11.8 / 1109
  21962. }
  21963. },
  21964. },
  21965. [
  21966. {
  21967. name: "Normal",
  21968. height: math.unit(15.66, "feet"),
  21969. default: true
  21970. },
  21971. ]
  21972. ))
  21973. characterMakers.push(() => makeCharacter(
  21974. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21975. {
  21976. front: {
  21977. height: math.unit(8, "feet"),
  21978. weight: math.unit(325, "lb"),
  21979. name: "Front",
  21980. image: {
  21981. source: "./media/characters/windera/front.svg",
  21982. extra: 3180 / 2845,
  21983. bottom: 178 / 3365
  21984. }
  21985. },
  21986. },
  21987. [
  21988. {
  21989. name: "Normal",
  21990. height: math.unit(8, "feet"),
  21991. default: true
  21992. },
  21993. ]
  21994. ))
  21995. characterMakers.push(() => makeCharacter(
  21996. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21997. {
  21998. front: {
  21999. height: math.unit(28.75, "feet"),
  22000. weight: math.unit(2000, "kg"),
  22001. name: "Front",
  22002. image: {
  22003. source: "./media/characters/sonear/front.svg",
  22004. extra: 1041.1 / 964.9,
  22005. bottom: 53.7 / 1096.6
  22006. }
  22007. },
  22008. },
  22009. [
  22010. {
  22011. name: "Normal",
  22012. height: math.unit(28.75, "feet"),
  22013. default: true
  22014. },
  22015. ]
  22016. ))
  22017. characterMakers.push(() => makeCharacter(
  22018. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22019. {
  22020. side: {
  22021. height: math.unit(25.5, "feet"),
  22022. weight: math.unit(23000, "kg"),
  22023. name: "Side",
  22024. image: {
  22025. source: "./media/characters/kanara/side.svg"
  22026. }
  22027. },
  22028. },
  22029. [
  22030. {
  22031. name: "Normal",
  22032. height: math.unit(25.5, "feet"),
  22033. default: true
  22034. },
  22035. ]
  22036. ))
  22037. characterMakers.push(() => makeCharacter(
  22038. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22039. {
  22040. side: {
  22041. height: math.unit(10, "feet"),
  22042. weight: math.unit(1000, "kg"),
  22043. name: "Side",
  22044. image: {
  22045. source: "./media/characters/ereus/side.svg",
  22046. extra: 1157 / 959,
  22047. bottom: 153 / 1312.5
  22048. }
  22049. },
  22050. },
  22051. [
  22052. {
  22053. name: "Normal",
  22054. height: math.unit(10, "feet"),
  22055. default: true
  22056. },
  22057. ]
  22058. ))
  22059. characterMakers.push(() => makeCharacter(
  22060. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22061. {
  22062. side: {
  22063. height: math.unit(4.5, "feet"),
  22064. weight: math.unit(500, "lb"),
  22065. name: "Side",
  22066. image: {
  22067. source: "./media/characters/e-ter/side.svg",
  22068. extra: 1550 / 1248,
  22069. bottom: 146 / 1694
  22070. }
  22071. },
  22072. },
  22073. [
  22074. {
  22075. name: "Normal",
  22076. height: math.unit(4.5, "feet"),
  22077. default: true
  22078. },
  22079. ]
  22080. ))
  22081. characterMakers.push(() => makeCharacter(
  22082. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22083. {
  22084. side: {
  22085. height: math.unit(9.7, "feet"),
  22086. weight: math.unit(4000, "kg"),
  22087. name: "Side",
  22088. image: {
  22089. source: "./media/characters/yamie/side.svg"
  22090. }
  22091. },
  22092. },
  22093. [
  22094. {
  22095. name: "Normal",
  22096. height: math.unit(9.7, "feet"),
  22097. default: true
  22098. },
  22099. ]
  22100. ))
  22101. characterMakers.push(() => makeCharacter(
  22102. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22103. {
  22104. front: {
  22105. height: math.unit(50, "feet"),
  22106. weight: math.unit(50000, "kg"),
  22107. name: "Front",
  22108. image: {
  22109. source: "./media/characters/anders/front.svg",
  22110. extra: 570 / 539,
  22111. bottom: 14.7 / 586.7
  22112. }
  22113. },
  22114. },
  22115. [
  22116. {
  22117. name: "Large",
  22118. height: math.unit(50, "feet")
  22119. },
  22120. {
  22121. name: "Macro",
  22122. height: math.unit(2000, "feet"),
  22123. default: true
  22124. },
  22125. {
  22126. name: "Megamacro",
  22127. height: math.unit(12, "miles")
  22128. },
  22129. ]
  22130. ))
  22131. characterMakers.push(() => makeCharacter(
  22132. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22133. {
  22134. front: {
  22135. height: math.unit(7 + 2 / 12, "feet"),
  22136. weight: math.unit(300, "lb"),
  22137. name: "Front",
  22138. image: {
  22139. source: "./media/characters/reban/front.svg",
  22140. extra: 516 / 487,
  22141. bottom: 42.82 / 558.356
  22142. }
  22143. },
  22144. dick: {
  22145. height: math.unit(7 / 5, "feet"),
  22146. name: "Dick",
  22147. image: {
  22148. source: "./media/characters/reban/dick.svg"
  22149. }
  22150. },
  22151. },
  22152. [
  22153. {
  22154. name: "Natural Height",
  22155. height: math.unit(7 + 2 / 12, "feet")
  22156. },
  22157. {
  22158. name: "Macro",
  22159. height: math.unit(500, "feet"),
  22160. default: true
  22161. },
  22162. {
  22163. name: "Canon Height",
  22164. height: math.unit(50, "AU")
  22165. },
  22166. ]
  22167. ))
  22168. characterMakers.push(() => makeCharacter(
  22169. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22170. {
  22171. front: {
  22172. height: math.unit(6, "feet"),
  22173. weight: math.unit(150, "lb"),
  22174. name: "Front",
  22175. image: {
  22176. source: "./media/characters/terrance-keayes/front.svg",
  22177. extra: 1.005,
  22178. bottom: 151 / 1615
  22179. }
  22180. },
  22181. side: {
  22182. height: math.unit(6, "feet"),
  22183. weight: math.unit(150, "lb"),
  22184. name: "Side",
  22185. image: {
  22186. source: "./media/characters/terrance-keayes/side.svg",
  22187. extra: 1.005,
  22188. bottom: 129.4 / 1544
  22189. }
  22190. },
  22191. back: {
  22192. height: math.unit(6, "feet"),
  22193. weight: math.unit(150, "lb"),
  22194. name: "Back",
  22195. image: {
  22196. source: "./media/characters/terrance-keayes/back.svg",
  22197. extra: 1.005,
  22198. bottom: 58.4 / 1557.3
  22199. }
  22200. },
  22201. dick: {
  22202. height: math.unit(6 * 0.208, "feet"),
  22203. name: "Dick",
  22204. image: {
  22205. source: "./media/characters/terrance-keayes/dick.svg"
  22206. }
  22207. },
  22208. },
  22209. [
  22210. {
  22211. name: "Canon Height",
  22212. height: math.unit(35, "miles"),
  22213. default: true
  22214. },
  22215. ]
  22216. ))
  22217. characterMakers.push(() => makeCharacter(
  22218. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22219. {
  22220. front: {
  22221. height: math.unit(6, "feet"),
  22222. weight: math.unit(150, "lb"),
  22223. name: "Front",
  22224. image: {
  22225. source: "./media/characters/ofelia/front.svg",
  22226. extra: 546 / 541,
  22227. bottom: 39 / 583
  22228. }
  22229. },
  22230. back: {
  22231. height: math.unit(6, "feet"),
  22232. weight: math.unit(150, "lb"),
  22233. name: "Back",
  22234. image: {
  22235. source: "./media/characters/ofelia/back.svg",
  22236. extra: 564 / 559.5,
  22237. bottom: 8.69 / 573.02
  22238. }
  22239. },
  22240. maw: {
  22241. height: math.unit(1, "feet"),
  22242. name: "Maw",
  22243. image: {
  22244. source: "./media/characters/ofelia/maw.svg"
  22245. }
  22246. },
  22247. foot: {
  22248. height: math.unit(1.949, "feet"),
  22249. name: "Foot",
  22250. image: {
  22251. source: "./media/characters/ofelia/foot.svg"
  22252. }
  22253. },
  22254. },
  22255. [
  22256. {
  22257. name: "Canon Height",
  22258. height: math.unit(2000, "miles"),
  22259. default: true
  22260. },
  22261. ]
  22262. ))
  22263. characterMakers.push(() => makeCharacter(
  22264. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22265. {
  22266. front: {
  22267. height: math.unit(6, "feet"),
  22268. weight: math.unit(150, "lb"),
  22269. name: "Front",
  22270. image: {
  22271. source: "./media/characters/samuel/front.svg",
  22272. extra: 265 / 258,
  22273. bottom: 2 / 266.1566
  22274. }
  22275. },
  22276. },
  22277. [
  22278. {
  22279. name: "Macro",
  22280. height: math.unit(100, "feet"),
  22281. default: true
  22282. },
  22283. {
  22284. name: "Full Size",
  22285. height: math.unit(1000, "miles")
  22286. },
  22287. ]
  22288. ))
  22289. characterMakers.push(() => makeCharacter(
  22290. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22291. {
  22292. front: {
  22293. height: math.unit(6, "feet"),
  22294. weight: math.unit(300, "lb"),
  22295. name: "Front",
  22296. image: {
  22297. source: "./media/characters/beishir-kiel/front.svg",
  22298. extra: 569 / 547,
  22299. bottom: 41.9 / 609
  22300. }
  22301. },
  22302. maw: {
  22303. height: math.unit(6 * 0.202, "feet"),
  22304. name: "Maw",
  22305. image: {
  22306. source: "./media/characters/beishir-kiel/maw.svg"
  22307. }
  22308. },
  22309. },
  22310. [
  22311. {
  22312. name: "Macro",
  22313. height: math.unit(300, "feet"),
  22314. default: true
  22315. },
  22316. ]
  22317. ))
  22318. characterMakers.push(() => makeCharacter(
  22319. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22320. {
  22321. front: {
  22322. height: math.unit(5 + 7/12, "feet"),
  22323. weight: math.unit(120, "lb"),
  22324. name: "Front",
  22325. image: {
  22326. source: "./media/characters/logan-grey/front.svg",
  22327. extra: 1836/1738,
  22328. bottom: 108/1944
  22329. }
  22330. },
  22331. back: {
  22332. height: math.unit(5 + 7/12, "feet"),
  22333. weight: math.unit(120, "lb"),
  22334. name: "Back",
  22335. image: {
  22336. source: "./media/characters/logan-grey/back.svg",
  22337. extra: 1880/1794,
  22338. bottom: 24/1904
  22339. }
  22340. },
  22341. frontSfw: {
  22342. height: math.unit(5 + 7/12, "feet"),
  22343. weight: math.unit(120, "lb"),
  22344. name: "Front (SFW)",
  22345. image: {
  22346. source: "./media/characters/logan-grey/front-sfw.svg",
  22347. extra: 1836/1738,
  22348. bottom: 108/1944
  22349. }
  22350. },
  22351. backSfw: {
  22352. height: math.unit(5 + 7/12, "feet"),
  22353. weight: math.unit(120, "lb"),
  22354. name: "Back (SFW)",
  22355. image: {
  22356. source: "./media/characters/logan-grey/back-sfw.svg",
  22357. extra: 1880/1794,
  22358. bottom: 24/1904
  22359. }
  22360. },
  22361. hands: {
  22362. height: math.unit(0.84, "feet"),
  22363. name: "Hands",
  22364. image: {
  22365. source: "./media/characters/logan-grey/hands.svg"
  22366. }
  22367. },
  22368. paws: {
  22369. height: math.unit(0.72, "feet"),
  22370. name: "Paws",
  22371. image: {
  22372. source: "./media/characters/logan-grey/paws.svg"
  22373. }
  22374. },
  22375. cock: {
  22376. height: math.unit(1.45, "feet"),
  22377. name: "Cock",
  22378. image: {
  22379. source: "./media/characters/logan-grey/cock.svg"
  22380. }
  22381. },
  22382. cockAlt: {
  22383. height: math.unit(1.437, "feet"),
  22384. name: "Cock (alt)",
  22385. image: {
  22386. source: "./media/characters/logan-grey/cock-alt.svg"
  22387. }
  22388. },
  22389. },
  22390. [
  22391. {
  22392. name: "Normal",
  22393. height: math.unit(5 + 8 / 12, "feet")
  22394. },
  22395. {
  22396. name: "The 500 Foot Femboy",
  22397. height: math.unit(500, "feet"),
  22398. default: true
  22399. },
  22400. {
  22401. name: "Megmacro",
  22402. height: math.unit(20, "miles")
  22403. },
  22404. ]
  22405. ))
  22406. characterMakers.push(() => makeCharacter(
  22407. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22408. {
  22409. front: {
  22410. height: math.unit(8 + 2 / 12, "feet"),
  22411. weight: math.unit(275, "lb"),
  22412. name: "Front",
  22413. image: {
  22414. source: "./media/characters/draganta/front.svg",
  22415. extra: 1177 / 1135,
  22416. bottom: 33.46 / 1212.1
  22417. }
  22418. },
  22419. },
  22420. [
  22421. {
  22422. name: "Normal",
  22423. height: math.unit(8 + 6 / 12, "feet"),
  22424. default: true
  22425. },
  22426. {
  22427. name: "Macro",
  22428. height: math.unit(150, "feet")
  22429. },
  22430. {
  22431. name: "Megamacro",
  22432. height: math.unit(1000, "miles")
  22433. },
  22434. ]
  22435. ))
  22436. characterMakers.push(() => makeCharacter(
  22437. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22438. {
  22439. front: {
  22440. height: math.unit(1.72, "m"),
  22441. weight: math.unit(80, "lb"),
  22442. name: "Front",
  22443. image: {
  22444. source: "./media/characters/voski/front.svg",
  22445. extra: 2076.22 / 2022.4,
  22446. bottom: 102.7 / 2177.3866
  22447. }
  22448. },
  22449. frontNsfw: {
  22450. height: math.unit(1.72, "m"),
  22451. weight: math.unit(80, "lb"),
  22452. name: "Front (NSFW)",
  22453. image: {
  22454. source: "./media/characters/voski/front-nsfw.svg",
  22455. extra: 2076.22 / 2022.4,
  22456. bottom: 102.7 / 2177.3866
  22457. }
  22458. },
  22459. back: {
  22460. height: math.unit(1.72, "m"),
  22461. weight: math.unit(80, "lb"),
  22462. name: "Back",
  22463. image: {
  22464. source: "./media/characters/voski/back.svg",
  22465. extra: 2104 / 2051,
  22466. bottom: 10.45 / 2113.63
  22467. }
  22468. },
  22469. },
  22470. [
  22471. {
  22472. name: "Normal",
  22473. height: math.unit(1.72, "m")
  22474. },
  22475. {
  22476. name: "Macro",
  22477. height: math.unit(55, "m"),
  22478. default: true
  22479. },
  22480. {
  22481. name: "Macro+",
  22482. height: math.unit(300, "m")
  22483. },
  22484. {
  22485. name: "Macro++",
  22486. height: math.unit(700, "m")
  22487. },
  22488. {
  22489. name: "Macro+++",
  22490. height: math.unit(4500, "m")
  22491. },
  22492. {
  22493. name: "Macro++++",
  22494. height: math.unit(45, "km")
  22495. },
  22496. {
  22497. name: "Macro+++++",
  22498. height: math.unit(1220, "km")
  22499. },
  22500. ]
  22501. ))
  22502. characterMakers.push(() => makeCharacter(
  22503. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22504. {
  22505. front: {
  22506. height: math.unit(2.3, "m"),
  22507. weight: math.unit(304, "kg"),
  22508. name: "Front",
  22509. image: {
  22510. source: "./media/characters/icowom-lee/front.svg",
  22511. extra: 985 / 955,
  22512. bottom: 25.4 / 1012
  22513. }
  22514. },
  22515. fronttentacles: {
  22516. height: math.unit(2.3, "m"),
  22517. weight: math.unit(304, "kg"),
  22518. name: "Front-tentacles",
  22519. image: {
  22520. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22521. extra: 985 / 955,
  22522. bottom: 25.4 / 1012
  22523. }
  22524. },
  22525. back: {
  22526. height: math.unit(2.3, "m"),
  22527. weight: math.unit(304, "kg"),
  22528. name: "Back",
  22529. image: {
  22530. source: "./media/characters/icowom-lee/back.svg",
  22531. extra: 975 / 954,
  22532. bottom: 9.5 / 985
  22533. }
  22534. },
  22535. backtentacles: {
  22536. height: math.unit(2.3, "m"),
  22537. weight: math.unit(304, "kg"),
  22538. name: "Back-tentacles",
  22539. image: {
  22540. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22541. extra: 975 / 954,
  22542. bottom: 9.5 / 985
  22543. }
  22544. },
  22545. frontDressed: {
  22546. height: math.unit(2.3, "m"),
  22547. weight: math.unit(304, "kg"),
  22548. name: "Front (Dressed)",
  22549. image: {
  22550. source: "./media/characters/icowom-lee/front-dressed.svg",
  22551. extra: 3076 / 2933,
  22552. bottom: 51.4 / 3125.1889
  22553. }
  22554. },
  22555. rump: {
  22556. height: math.unit(0.776, "meters"),
  22557. name: "Rump",
  22558. image: {
  22559. source: "./media/characters/icowom-lee/rump.svg"
  22560. }
  22561. },
  22562. genitals: {
  22563. height: math.unit(0.78, "meters"),
  22564. name: "Genitals",
  22565. image: {
  22566. source: "./media/characters/icowom-lee/genitals.svg"
  22567. }
  22568. },
  22569. },
  22570. [
  22571. {
  22572. name: "Normal",
  22573. height: math.unit(2.3, "meters"),
  22574. default: true
  22575. },
  22576. {
  22577. name: "Macro",
  22578. height: math.unit(94, "meters"),
  22579. default: true
  22580. },
  22581. ]
  22582. ))
  22583. characterMakers.push(() => makeCharacter(
  22584. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22585. {
  22586. front: {
  22587. height: math.unit(22, "meters"),
  22588. weight: math.unit(21000, "kg"),
  22589. name: "Front",
  22590. image: {
  22591. source: "./media/characters/shock-diamond/front.svg",
  22592. extra: 2204 / 2053,
  22593. bottom: 65 / 2239.47
  22594. }
  22595. },
  22596. frontNude: {
  22597. height: math.unit(22, "meters"),
  22598. weight: math.unit(21000, "kg"),
  22599. name: "Front (Nude)",
  22600. image: {
  22601. source: "./media/characters/shock-diamond/front-nude.svg",
  22602. extra: 2514 / 2285,
  22603. bottom: 13 / 2527.56
  22604. }
  22605. },
  22606. },
  22607. [
  22608. {
  22609. name: "Normal",
  22610. height: math.unit(3, "meters")
  22611. },
  22612. {
  22613. name: "Macro",
  22614. height: math.unit(22, "meters"),
  22615. default: true
  22616. },
  22617. ]
  22618. ))
  22619. characterMakers.push(() => makeCharacter(
  22620. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22621. {
  22622. front: {
  22623. height: math.unit(5 + 4 / 12, "feet"),
  22624. weight: math.unit(120, "lb"),
  22625. name: "Front",
  22626. image: {
  22627. source: "./media/characters/rory/front.svg",
  22628. extra: 1318/1241,
  22629. bottom: 42/1360
  22630. }
  22631. },
  22632. back: {
  22633. height: math.unit(5 + 4 / 12, "feet"),
  22634. weight: math.unit(120, "lb"),
  22635. name: "Back",
  22636. image: {
  22637. source: "./media/characters/rory/back.svg",
  22638. extra: 1318/1241,
  22639. bottom: 42/1360
  22640. }
  22641. },
  22642. butt: {
  22643. height: math.unit(1.74, "feet"),
  22644. name: "Butt",
  22645. image: {
  22646. source: "./media/characters/rory/butt.svg"
  22647. }
  22648. },
  22649. dick: {
  22650. height: math.unit(1.02, "feet"),
  22651. name: "Dick",
  22652. image: {
  22653. source: "./media/characters/rory/dick.svg"
  22654. }
  22655. },
  22656. paws: {
  22657. height: math.unit(1, "feet"),
  22658. name: "Paws",
  22659. image: {
  22660. source: "./media/characters/rory/paws.svg"
  22661. }
  22662. },
  22663. frontAlt: {
  22664. height: math.unit(5 + 4 / 12, "feet"),
  22665. weight: math.unit(120, "lb"),
  22666. name: "Front (Alt)",
  22667. image: {
  22668. source: "./media/characters/rory/front-alt.svg",
  22669. extra: 589 / 556,
  22670. bottom: 45.7 / 635.76
  22671. }
  22672. },
  22673. frontAltNude: {
  22674. height: math.unit(5 + 4 / 12, "feet"),
  22675. weight: math.unit(120, "lb"),
  22676. name: "Front (Alt, Nude)",
  22677. image: {
  22678. source: "./media/characters/rory/front-alt-nude.svg",
  22679. extra: 589 / 556,
  22680. bottom: 45.7 / 635.76
  22681. }
  22682. },
  22683. side: {
  22684. height: math.unit(5 + 4 / 12, "feet"),
  22685. weight: math.unit(120, "lb"),
  22686. name: "Side",
  22687. image: {
  22688. source: "./media/characters/rory/side.svg",
  22689. extra: 597 / 564,
  22690. bottom: 55 / 653
  22691. }
  22692. },
  22693. backAlt: {
  22694. height: math.unit(5 + 4 / 12, "feet"),
  22695. weight: math.unit(120, "lb"),
  22696. name: "Back (Alt)",
  22697. image: {
  22698. source: "./media/characters/rory/back-alt.svg",
  22699. extra: 620 / 585,
  22700. bottom: 8.86 / 630.43
  22701. }
  22702. },
  22703. dickAlt: {
  22704. height: math.unit(0.86, "feet"),
  22705. name: "Dick (Alt)",
  22706. image: {
  22707. source: "./media/characters/rory/dick-alt.svg"
  22708. }
  22709. },
  22710. },
  22711. [
  22712. {
  22713. name: "Normal",
  22714. height: math.unit(5 + 4 / 12, "feet"),
  22715. default: true
  22716. },
  22717. {
  22718. name: "Macro",
  22719. height: math.unit(100, "feet")
  22720. },
  22721. {
  22722. name: "Macro+",
  22723. height: math.unit(140, "feet")
  22724. },
  22725. {
  22726. name: "Macro++",
  22727. height: math.unit(300, "feet")
  22728. },
  22729. ]
  22730. ))
  22731. characterMakers.push(() => makeCharacter(
  22732. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22733. {
  22734. front: {
  22735. height: math.unit(5 + 9 / 12, "feet"),
  22736. weight: math.unit(190, "lb"),
  22737. name: "Front",
  22738. image: {
  22739. source: "./media/characters/sprisk/front.svg",
  22740. extra: 1225 / 1180,
  22741. bottom: 42.7 / 1266.4
  22742. }
  22743. },
  22744. frontNsfw: {
  22745. height: math.unit(5 + 9 / 12, "feet"),
  22746. weight: math.unit(190, "lb"),
  22747. name: "Front (NSFW)",
  22748. image: {
  22749. source: "./media/characters/sprisk/front-nsfw.svg",
  22750. extra: 1225 / 1180,
  22751. bottom: 42.7 / 1266.4
  22752. }
  22753. },
  22754. back: {
  22755. height: math.unit(5 + 9 / 12, "feet"),
  22756. weight: math.unit(190, "lb"),
  22757. name: "Back",
  22758. image: {
  22759. source: "./media/characters/sprisk/back.svg",
  22760. extra: 1247 / 1200,
  22761. bottom: 5.6 / 1253.04
  22762. }
  22763. },
  22764. },
  22765. [
  22766. {
  22767. name: "Tiny",
  22768. height: math.unit(2, "inches")
  22769. },
  22770. {
  22771. name: "Normal",
  22772. height: math.unit(5 + 9 / 12, "feet"),
  22773. default: true
  22774. },
  22775. {
  22776. name: "Mini Macro",
  22777. height: math.unit(18, "feet")
  22778. },
  22779. {
  22780. name: "Macro",
  22781. height: math.unit(100, "feet")
  22782. },
  22783. {
  22784. name: "MACRO",
  22785. height: math.unit(50, "miles")
  22786. },
  22787. {
  22788. name: "M A C R O",
  22789. height: math.unit(300, "miles")
  22790. },
  22791. ]
  22792. ))
  22793. characterMakers.push(() => makeCharacter(
  22794. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22795. {
  22796. side: {
  22797. height: math.unit(15.6, "meters"),
  22798. weight: math.unit(700000, "kg"),
  22799. name: "Side",
  22800. image: {
  22801. source: "./media/characters/bunsen/side.svg",
  22802. extra: 1644 / 358
  22803. }
  22804. },
  22805. foot: {
  22806. height: math.unit(1.611 * 1644 / 358, "meter"),
  22807. name: "Foot",
  22808. image: {
  22809. source: "./media/characters/bunsen/foot.svg"
  22810. }
  22811. },
  22812. },
  22813. [
  22814. {
  22815. name: "Small",
  22816. height: math.unit(10, "feet")
  22817. },
  22818. {
  22819. name: "Normal",
  22820. height: math.unit(15.6, "meters"),
  22821. default: true
  22822. },
  22823. ]
  22824. ))
  22825. characterMakers.push(() => makeCharacter(
  22826. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22827. {
  22828. front: {
  22829. height: math.unit(4 + 11 / 12, "feet"),
  22830. weight: math.unit(140, "lb"),
  22831. name: "Front",
  22832. image: {
  22833. source: "./media/characters/sesh/front.svg",
  22834. extra: 3420 / 3231,
  22835. bottom: 72 / 3949.5
  22836. }
  22837. },
  22838. },
  22839. [
  22840. {
  22841. name: "Normal",
  22842. height: math.unit(4 + 11 / 12, "feet")
  22843. },
  22844. {
  22845. name: "Grown",
  22846. height: math.unit(15, "feet"),
  22847. default: true
  22848. },
  22849. {
  22850. name: "Macro",
  22851. height: math.unit(1500, "feet")
  22852. },
  22853. {
  22854. name: "Megamacro",
  22855. height: math.unit(30, "miles")
  22856. },
  22857. {
  22858. name: "Continental",
  22859. height: math.unit(3000, "miles")
  22860. },
  22861. {
  22862. name: "Gravity Mass",
  22863. height: math.unit(300000, "miles")
  22864. },
  22865. {
  22866. name: "Planet Buster",
  22867. height: math.unit(30000000, "miles")
  22868. },
  22869. {
  22870. name: "Big",
  22871. height: math.unit(3000000000, "miles")
  22872. },
  22873. ]
  22874. ))
  22875. characterMakers.push(() => makeCharacter(
  22876. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22877. {
  22878. front: {
  22879. height: math.unit(9, "feet"),
  22880. weight: math.unit(350, "lb"),
  22881. name: "Front",
  22882. image: {
  22883. source: "./media/characters/pepper/front.svg",
  22884. extra: 1448 / 1312,
  22885. bottom: 9.4 / 1457.88
  22886. }
  22887. },
  22888. back: {
  22889. height: math.unit(9, "feet"),
  22890. weight: math.unit(350, "lb"),
  22891. name: "Back",
  22892. image: {
  22893. source: "./media/characters/pepper/back.svg",
  22894. extra: 1423 / 1300,
  22895. bottom: 4.6 / 1429
  22896. }
  22897. },
  22898. maw: {
  22899. height: math.unit(0.932, "feet"),
  22900. name: "Maw",
  22901. image: {
  22902. source: "./media/characters/pepper/maw.svg"
  22903. }
  22904. },
  22905. },
  22906. [
  22907. {
  22908. name: "Normal",
  22909. height: math.unit(9, "feet"),
  22910. default: true
  22911. },
  22912. ]
  22913. ))
  22914. characterMakers.push(() => makeCharacter(
  22915. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22916. {
  22917. front: {
  22918. height: math.unit(6, "feet"),
  22919. weight: math.unit(150, "lb"),
  22920. name: "Front",
  22921. image: {
  22922. source: "./media/characters/maelstrom/front.svg",
  22923. extra: 2100 / 1883,
  22924. bottom: 94 / 2196.7
  22925. }
  22926. },
  22927. },
  22928. [
  22929. {
  22930. name: "Less Kaiju",
  22931. height: math.unit(200, "feet")
  22932. },
  22933. {
  22934. name: "Kaiju",
  22935. height: math.unit(400, "feet"),
  22936. default: true
  22937. },
  22938. {
  22939. name: "Kaiju-er",
  22940. height: math.unit(600, "feet")
  22941. },
  22942. ]
  22943. ))
  22944. characterMakers.push(() => makeCharacter(
  22945. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22946. {
  22947. front: {
  22948. height: math.unit(6 + 5 / 12, "feet"),
  22949. weight: math.unit(180, "lb"),
  22950. name: "Front",
  22951. image: {
  22952. source: "./media/characters/lexir/front.svg",
  22953. extra: 180 / 172,
  22954. bottom: 12 / 192
  22955. }
  22956. },
  22957. back: {
  22958. height: math.unit(6 + 5 / 12, "feet"),
  22959. weight: math.unit(180, "lb"),
  22960. name: "Back",
  22961. image: {
  22962. source: "./media/characters/lexir/back.svg",
  22963. extra: 183.84 / 175.5,
  22964. bottom: 3.1 / 187
  22965. }
  22966. },
  22967. },
  22968. [
  22969. {
  22970. name: "Very Smal",
  22971. height: math.unit(1, "nm")
  22972. },
  22973. {
  22974. name: "Normal",
  22975. height: math.unit(6 + 5 / 12, "feet"),
  22976. default: true
  22977. },
  22978. {
  22979. name: "Macro",
  22980. height: math.unit(1, "mile")
  22981. },
  22982. {
  22983. name: "Megamacro",
  22984. height: math.unit(50, "miles")
  22985. },
  22986. ]
  22987. ))
  22988. characterMakers.push(() => makeCharacter(
  22989. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22990. {
  22991. front: {
  22992. height: math.unit(1.5, "meters"),
  22993. weight: math.unit(100, "lb"),
  22994. name: "Front",
  22995. image: {
  22996. source: "./media/characters/maksio/front.svg",
  22997. extra: 1549 / 1531,
  22998. bottom: 123.7 / 1674.5429
  22999. }
  23000. },
  23001. back: {
  23002. height: math.unit(1.5, "meters"),
  23003. weight: math.unit(100, "lb"),
  23004. name: "Back",
  23005. image: {
  23006. source: "./media/characters/maksio/back.svg",
  23007. extra: 1541 / 1509,
  23008. bottom: 97 / 1639
  23009. }
  23010. },
  23011. hand: {
  23012. height: math.unit(0.621, "feet"),
  23013. name: "Hand",
  23014. image: {
  23015. source: "./media/characters/maksio/hand.svg"
  23016. }
  23017. },
  23018. foot: {
  23019. height: math.unit(1.611, "feet"),
  23020. name: "Foot",
  23021. image: {
  23022. source: "./media/characters/maksio/foot.svg"
  23023. }
  23024. },
  23025. },
  23026. [
  23027. {
  23028. name: "Shrunken",
  23029. height: math.unit(10, "cm")
  23030. },
  23031. {
  23032. name: "Normal",
  23033. height: math.unit(150, "cm"),
  23034. default: true
  23035. },
  23036. ]
  23037. ))
  23038. characterMakers.push(() => makeCharacter(
  23039. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23040. {
  23041. front: {
  23042. height: math.unit(100, "feet"),
  23043. name: "Front",
  23044. image: {
  23045. source: "./media/characters/erza-bear/front.svg",
  23046. extra: 2449 / 2390,
  23047. bottom: 46 / 2494
  23048. }
  23049. },
  23050. back: {
  23051. height: math.unit(100, "feet"),
  23052. name: "Back",
  23053. image: {
  23054. source: "./media/characters/erza-bear/back.svg",
  23055. extra: 2489 / 2430,
  23056. bottom: 85.4 / 2480
  23057. }
  23058. },
  23059. tail: {
  23060. height: math.unit(42, "feet"),
  23061. name: "Tail",
  23062. image: {
  23063. source: "./media/characters/erza-bear/tail.svg"
  23064. }
  23065. },
  23066. tongue: {
  23067. height: math.unit(8, "feet"),
  23068. name: "Tongue",
  23069. image: {
  23070. source: "./media/characters/erza-bear/tongue.svg"
  23071. }
  23072. },
  23073. dick: {
  23074. height: math.unit(10.5, "feet"),
  23075. name: "Dick",
  23076. image: {
  23077. source: "./media/characters/erza-bear/dick.svg"
  23078. }
  23079. },
  23080. dickVertical: {
  23081. height: math.unit(16.9, "feet"),
  23082. name: "Dick (Vertical)",
  23083. image: {
  23084. source: "./media/characters/erza-bear/dick-vertical.svg"
  23085. }
  23086. },
  23087. },
  23088. [
  23089. {
  23090. name: "Macro",
  23091. height: math.unit(100, "feet"),
  23092. default: true
  23093. },
  23094. ]
  23095. ))
  23096. characterMakers.push(() => makeCharacter(
  23097. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23098. {
  23099. front: {
  23100. height: math.unit(172, "cm"),
  23101. weight: math.unit(73, "kg"),
  23102. name: "Front",
  23103. image: {
  23104. source: "./media/characters/violet-flor/front.svg",
  23105. extra: 1530 / 1442,
  23106. bottom: 61.9 / 1588.8
  23107. }
  23108. },
  23109. back: {
  23110. height: math.unit(180, "cm"),
  23111. weight: math.unit(73, "kg"),
  23112. name: "Back",
  23113. image: {
  23114. source: "./media/characters/violet-flor/back.svg",
  23115. extra: 1692 / 1630,
  23116. bottom: 20 / 1712
  23117. }
  23118. },
  23119. },
  23120. [
  23121. {
  23122. name: "Normal",
  23123. height: math.unit(172, "cm"),
  23124. default: true
  23125. },
  23126. ]
  23127. ))
  23128. characterMakers.push(() => makeCharacter(
  23129. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23130. {
  23131. front: {
  23132. height: math.unit(6, "feet"),
  23133. weight: math.unit(220, "lb"),
  23134. name: "Front",
  23135. image: {
  23136. source: "./media/characters/lynn-rhea/front.svg",
  23137. extra: 310 / 273
  23138. }
  23139. },
  23140. back: {
  23141. height: math.unit(6, "feet"),
  23142. weight: math.unit(220, "lb"),
  23143. name: "Back",
  23144. image: {
  23145. source: "./media/characters/lynn-rhea/back.svg",
  23146. extra: 310 / 273
  23147. }
  23148. },
  23149. dicks: {
  23150. height: math.unit(0.9, "feet"),
  23151. name: "Dicks",
  23152. image: {
  23153. source: "./media/characters/lynn-rhea/dicks.svg"
  23154. }
  23155. },
  23156. slit: {
  23157. height: math.unit(0.4, "feet"),
  23158. name: "Slit",
  23159. image: {
  23160. source: "./media/characters/lynn-rhea/slit.svg"
  23161. }
  23162. },
  23163. },
  23164. [
  23165. {
  23166. name: "Micro",
  23167. height: math.unit(1, "inch")
  23168. },
  23169. {
  23170. name: "Macro",
  23171. height: math.unit(60, "feet"),
  23172. default: true
  23173. },
  23174. {
  23175. name: "Megamacro",
  23176. height: math.unit(2, "miles")
  23177. },
  23178. {
  23179. name: "Gigamacro",
  23180. height: math.unit(3, "earths")
  23181. },
  23182. {
  23183. name: "Galactic",
  23184. height: math.unit(0.8, "galaxies")
  23185. },
  23186. ]
  23187. ))
  23188. characterMakers.push(() => makeCharacter(
  23189. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23190. {
  23191. front: {
  23192. height: math.unit(1600, "feet"),
  23193. weight: math.unit(85758785169, "kg"),
  23194. name: "Front",
  23195. image: {
  23196. source: "./media/characters/valathos/front.svg",
  23197. extra: 1451 / 1339
  23198. }
  23199. },
  23200. },
  23201. [
  23202. {
  23203. name: "Macro",
  23204. height: math.unit(1600, "feet"),
  23205. default: true
  23206. },
  23207. ]
  23208. ))
  23209. characterMakers.push(() => makeCharacter(
  23210. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23211. {
  23212. front: {
  23213. height: math.unit(7 + 5 / 12, "feet"),
  23214. weight: math.unit(300, "lb"),
  23215. name: "Front",
  23216. image: {
  23217. source: "./media/characters/azula/front.svg",
  23218. extra: 3208 / 2880,
  23219. bottom: 80.2 / 3277
  23220. }
  23221. },
  23222. back: {
  23223. height: math.unit(7 + 5 / 12, "feet"),
  23224. weight: math.unit(300, "lb"),
  23225. name: "Back",
  23226. image: {
  23227. source: "./media/characters/azula/back.svg",
  23228. extra: 3169 / 2822,
  23229. bottom: 150.6 / 3321
  23230. }
  23231. },
  23232. },
  23233. [
  23234. {
  23235. name: "Normal",
  23236. height: math.unit(7 + 5 / 12, "feet"),
  23237. default: true
  23238. },
  23239. {
  23240. name: "Big",
  23241. height: math.unit(20, "feet")
  23242. },
  23243. ]
  23244. ))
  23245. characterMakers.push(() => makeCharacter(
  23246. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23247. {
  23248. front: {
  23249. height: math.unit(5 + 1 / 12, "feet"),
  23250. weight: math.unit(110, "lb"),
  23251. name: "Front",
  23252. image: {
  23253. source: "./media/characters/rupert/front.svg",
  23254. extra: 1549 / 1495,
  23255. bottom: 54.2 / 1604.4
  23256. }
  23257. },
  23258. },
  23259. [
  23260. {
  23261. name: "Normal",
  23262. height: math.unit(5 + 1 / 12, "feet"),
  23263. default: true
  23264. },
  23265. ]
  23266. ))
  23267. characterMakers.push(() => makeCharacter(
  23268. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23269. {
  23270. front: {
  23271. height: math.unit(8 + 4 / 12, "feet"),
  23272. weight: math.unit(350, "lb"),
  23273. name: "Front",
  23274. image: {
  23275. source: "./media/characters/sheera-castellar/front.svg",
  23276. extra: 1957 / 1894,
  23277. bottom: 26.97 / 1975.017
  23278. }
  23279. },
  23280. side: {
  23281. height: math.unit(8 + 4 / 12, "feet"),
  23282. weight: math.unit(350, "lb"),
  23283. name: "Side",
  23284. image: {
  23285. source: "./media/characters/sheera-castellar/side.svg",
  23286. extra: 1957 / 1894
  23287. }
  23288. },
  23289. back: {
  23290. height: math.unit(8 + 4 / 12, "feet"),
  23291. weight: math.unit(350, "lb"),
  23292. name: "Back",
  23293. image: {
  23294. source: "./media/characters/sheera-castellar/back.svg",
  23295. extra: 1957 / 1894
  23296. }
  23297. },
  23298. angled: {
  23299. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23300. weight: math.unit(350, "lb"),
  23301. name: "Angled",
  23302. image: {
  23303. source: "./media/characters/sheera-castellar/angled.svg",
  23304. extra: 1807 / 1707,
  23305. bottom: 68 / 1875
  23306. }
  23307. },
  23308. genitals: {
  23309. height: math.unit(2.2, "feet"),
  23310. name: "Genitals",
  23311. image: {
  23312. source: "./media/characters/sheera-castellar/genitals.svg"
  23313. }
  23314. },
  23315. taur: {
  23316. height: math.unit(10 + 6/12, "feet"),
  23317. name: "Taur",
  23318. image: {
  23319. source: "./media/characters/sheera-castellar/taur.svg",
  23320. extra: 2017/1909,
  23321. bottom: 185/2202
  23322. }
  23323. },
  23324. },
  23325. [
  23326. {
  23327. name: "Normal",
  23328. height: math.unit(8 + 4 / 12, "feet")
  23329. },
  23330. {
  23331. name: "Macro",
  23332. height: math.unit(150, "feet"),
  23333. default: true
  23334. },
  23335. {
  23336. name: "Macro+",
  23337. height: math.unit(800, "feet")
  23338. },
  23339. ]
  23340. ))
  23341. characterMakers.push(() => makeCharacter(
  23342. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23343. {
  23344. front: {
  23345. height: math.unit(6, "feet"),
  23346. weight: math.unit(150, "lb"),
  23347. name: "Front",
  23348. image: {
  23349. source: "./media/characters/jaipur/front.svg",
  23350. extra: 3860 / 3731,
  23351. bottom: 287 / 4140
  23352. }
  23353. },
  23354. back: {
  23355. height: math.unit(6, "feet"),
  23356. weight: math.unit(150, "lb"),
  23357. name: "Back",
  23358. image: {
  23359. source: "./media/characters/jaipur/back.svg",
  23360. extra: 4060 / 3930,
  23361. bottom: 151 / 4200
  23362. }
  23363. },
  23364. },
  23365. [
  23366. {
  23367. name: "Normal",
  23368. height: math.unit(1.85, "meters"),
  23369. default: true
  23370. },
  23371. {
  23372. name: "Macro",
  23373. height: math.unit(150, "meters")
  23374. },
  23375. {
  23376. name: "Macro+",
  23377. height: math.unit(0.5, "miles")
  23378. },
  23379. {
  23380. name: "Macro++",
  23381. height: math.unit(2.5, "miles")
  23382. },
  23383. {
  23384. name: "Macro+++",
  23385. height: math.unit(12, "miles")
  23386. },
  23387. {
  23388. name: "Macro++++",
  23389. height: math.unit(120, "miles")
  23390. },
  23391. {
  23392. name: "Macro+++++",
  23393. height: math.unit(1200, "miles")
  23394. },
  23395. ]
  23396. ))
  23397. characterMakers.push(() => makeCharacter(
  23398. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23399. {
  23400. front: {
  23401. height: math.unit(6, "feet"),
  23402. weight: math.unit(150, "lb"),
  23403. name: "Front",
  23404. image: {
  23405. source: "./media/characters/sheila-wolf/front.svg",
  23406. extra: 1931 / 1808,
  23407. bottom: 29.5 / 1960
  23408. }
  23409. },
  23410. dick: {
  23411. height: math.unit(1.464, "feet"),
  23412. name: "Dick",
  23413. image: {
  23414. source: "./media/characters/sheila-wolf/dick.svg"
  23415. }
  23416. },
  23417. muzzle: {
  23418. height: math.unit(0.513, "feet"),
  23419. name: "Muzzle",
  23420. image: {
  23421. source: "./media/characters/sheila-wolf/muzzle.svg"
  23422. }
  23423. },
  23424. },
  23425. [
  23426. {
  23427. name: "Macro",
  23428. height: math.unit(70, "feet"),
  23429. default: true
  23430. },
  23431. ]
  23432. ))
  23433. characterMakers.push(() => makeCharacter(
  23434. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23435. {
  23436. front: {
  23437. height: math.unit(32, "meters"),
  23438. weight: math.unit(300000, "kg"),
  23439. name: "Front",
  23440. image: {
  23441. source: "./media/characters/almor/front.svg",
  23442. extra: 1408 / 1322,
  23443. bottom: 94.6 / 1506.5
  23444. }
  23445. },
  23446. },
  23447. [
  23448. {
  23449. name: "Macro",
  23450. height: math.unit(32, "meters"),
  23451. default: true
  23452. },
  23453. ]
  23454. ))
  23455. characterMakers.push(() => makeCharacter(
  23456. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23457. {
  23458. front: {
  23459. height: math.unit(7, "feet"),
  23460. weight: math.unit(200, "lb"),
  23461. name: "Front",
  23462. image: {
  23463. source: "./media/characters/silver/front.svg",
  23464. extra: 472.1 / 450.5,
  23465. bottom: 26.5 / 499.424
  23466. }
  23467. },
  23468. },
  23469. [
  23470. {
  23471. name: "Normal",
  23472. height: math.unit(7, "feet"),
  23473. default: true
  23474. },
  23475. {
  23476. name: "Macro",
  23477. height: math.unit(800, "feet")
  23478. },
  23479. {
  23480. name: "Megamacro",
  23481. height: math.unit(250, "miles")
  23482. },
  23483. ]
  23484. ))
  23485. characterMakers.push(() => makeCharacter(
  23486. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23487. {
  23488. front: {
  23489. height: math.unit(6, "feet"),
  23490. weight: math.unit(150, "lb"),
  23491. name: "Front",
  23492. image: {
  23493. source: "./media/characters/pliskin/front.svg",
  23494. extra: 1469 / 1359,
  23495. bottom: 70 / 1540
  23496. }
  23497. },
  23498. },
  23499. [
  23500. {
  23501. name: "Micro",
  23502. height: math.unit(3, "inches")
  23503. },
  23504. {
  23505. name: "Normal",
  23506. height: math.unit(5 + 11 / 12, "feet"),
  23507. default: true
  23508. },
  23509. {
  23510. name: "Macro",
  23511. height: math.unit(120, "feet")
  23512. },
  23513. ]
  23514. ))
  23515. characterMakers.push(() => makeCharacter(
  23516. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23517. {
  23518. front: {
  23519. height: math.unit(6, "feet"),
  23520. weight: math.unit(150, "lb"),
  23521. name: "Front",
  23522. image: {
  23523. source: "./media/characters/sammy/front.svg",
  23524. extra: 1193 / 1089,
  23525. bottom: 30.5 / 1226
  23526. }
  23527. },
  23528. },
  23529. [
  23530. {
  23531. name: "Macro",
  23532. height: math.unit(1700, "feet"),
  23533. default: true
  23534. },
  23535. {
  23536. name: "Examacro",
  23537. height: math.unit(2.5e9, "lightyears")
  23538. },
  23539. ]
  23540. ))
  23541. characterMakers.push(() => makeCharacter(
  23542. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23543. {
  23544. front: {
  23545. height: math.unit(21, "meters"),
  23546. weight: math.unit(12, "tonnes"),
  23547. name: "Front",
  23548. image: {
  23549. source: "./media/characters/kuru/front.svg",
  23550. extra: 4301 / 3785,
  23551. bottom: 371.3 / 4691
  23552. }
  23553. },
  23554. },
  23555. [
  23556. {
  23557. name: "Macro",
  23558. height: math.unit(21, "meters"),
  23559. default: true
  23560. },
  23561. ]
  23562. ))
  23563. characterMakers.push(() => makeCharacter(
  23564. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23565. {
  23566. front: {
  23567. height: math.unit(23, "meters"),
  23568. weight: math.unit(12.2, "tonnes"),
  23569. name: "Front",
  23570. image: {
  23571. source: "./media/characters/rakka/front.svg",
  23572. extra: 4670 / 4169,
  23573. bottom: 301 / 4968.7
  23574. }
  23575. },
  23576. },
  23577. [
  23578. {
  23579. name: "Macro",
  23580. height: math.unit(23, "meters"),
  23581. default: true
  23582. },
  23583. ]
  23584. ))
  23585. characterMakers.push(() => makeCharacter(
  23586. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23587. {
  23588. front: {
  23589. height: math.unit(6, "feet"),
  23590. weight: math.unit(150, "lb"),
  23591. name: "Front",
  23592. image: {
  23593. source: "./media/characters/rhys-feline/front.svg",
  23594. extra: 2488 / 2308,
  23595. bottom: 35.67 / 2519.19
  23596. }
  23597. },
  23598. },
  23599. [
  23600. {
  23601. name: "Really Small",
  23602. height: math.unit(1, "nm")
  23603. },
  23604. {
  23605. name: "Micro",
  23606. height: math.unit(4, "inches")
  23607. },
  23608. {
  23609. name: "Normal",
  23610. height: math.unit(4 + 10 / 12, "feet"),
  23611. default: true
  23612. },
  23613. {
  23614. name: "Macro",
  23615. height: math.unit(100, "feet")
  23616. },
  23617. {
  23618. name: "Megamacto",
  23619. height: math.unit(50, "miles")
  23620. },
  23621. ]
  23622. ))
  23623. characterMakers.push(() => makeCharacter(
  23624. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23625. {
  23626. side: {
  23627. height: math.unit(30, "feet"),
  23628. weight: math.unit(35000, "kg"),
  23629. name: "Side",
  23630. image: {
  23631. source: "./media/characters/alydar/side.svg",
  23632. extra: 234 / 222,
  23633. bottom: 6.5 / 241
  23634. }
  23635. },
  23636. front: {
  23637. height: math.unit(30, "feet"),
  23638. weight: math.unit(35000, "kg"),
  23639. name: "Front",
  23640. image: {
  23641. source: "./media/characters/alydar/front.svg",
  23642. extra: 223.37 / 210.2,
  23643. bottom: 22.3 / 246.76
  23644. }
  23645. },
  23646. top: {
  23647. height: math.unit(64.54, "feet"),
  23648. weight: math.unit(35000, "kg"),
  23649. name: "Top",
  23650. image: {
  23651. source: "./media/characters/alydar/top.svg"
  23652. }
  23653. },
  23654. anthro: {
  23655. height: math.unit(30, "feet"),
  23656. weight: math.unit(9000, "kg"),
  23657. name: "Anthro",
  23658. image: {
  23659. source: "./media/characters/alydar/anthro.svg",
  23660. extra: 432 / 421,
  23661. bottom: 7.18 / 440
  23662. }
  23663. },
  23664. maw: {
  23665. height: math.unit(11.693, "feet"),
  23666. name: "Maw",
  23667. image: {
  23668. source: "./media/characters/alydar/maw.svg"
  23669. }
  23670. },
  23671. head: {
  23672. height: math.unit(11.693, "feet"),
  23673. name: "Head",
  23674. image: {
  23675. source: "./media/characters/alydar/head.svg"
  23676. }
  23677. },
  23678. headAlt: {
  23679. height: math.unit(12.861, "feet"),
  23680. name: "Head (Alt)",
  23681. image: {
  23682. source: "./media/characters/alydar/head-alt.svg"
  23683. }
  23684. },
  23685. wing: {
  23686. height: math.unit(20.712, "feet"),
  23687. name: "Wing",
  23688. image: {
  23689. source: "./media/characters/alydar/wing.svg"
  23690. }
  23691. },
  23692. wingFeather: {
  23693. height: math.unit(9.662, "feet"),
  23694. name: "Wing Feather",
  23695. image: {
  23696. source: "./media/characters/alydar/wing-feather.svg"
  23697. }
  23698. },
  23699. countourFeather: {
  23700. height: math.unit(4.154, "feet"),
  23701. name: "Contour Feather",
  23702. image: {
  23703. source: "./media/characters/alydar/contour-feather.svg"
  23704. }
  23705. },
  23706. },
  23707. [
  23708. {
  23709. name: "Diplomatic",
  23710. height: math.unit(13, "feet"),
  23711. default: true
  23712. },
  23713. {
  23714. name: "Small",
  23715. height: math.unit(30, "feet")
  23716. },
  23717. {
  23718. name: "Normal",
  23719. height: math.unit(95, "feet"),
  23720. default: true
  23721. },
  23722. {
  23723. name: "Large",
  23724. height: math.unit(285, "feet")
  23725. },
  23726. {
  23727. name: "Incomprehensible",
  23728. height: math.unit(450, "megameters")
  23729. },
  23730. ]
  23731. ))
  23732. characterMakers.push(() => makeCharacter(
  23733. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23734. {
  23735. side: {
  23736. height: math.unit(11, "feet"),
  23737. weight: math.unit(1750, "kg"),
  23738. name: "Side",
  23739. image: {
  23740. source: "./media/characters/selicia/side.svg",
  23741. extra: 440 / 396,
  23742. bottom: 24.8 / 465.979
  23743. }
  23744. },
  23745. maw: {
  23746. height: math.unit(4.665, "feet"),
  23747. name: "Maw",
  23748. image: {
  23749. source: "./media/characters/selicia/maw.svg"
  23750. }
  23751. },
  23752. },
  23753. [
  23754. {
  23755. name: "Normal",
  23756. height: math.unit(11, "feet"),
  23757. default: true
  23758. },
  23759. ]
  23760. ))
  23761. characterMakers.push(() => makeCharacter(
  23762. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23763. {
  23764. side: {
  23765. height: math.unit(2 + 6 / 12, "feet"),
  23766. weight: math.unit(30, "lb"),
  23767. name: "Side",
  23768. image: {
  23769. source: "./media/characters/layla/side.svg",
  23770. extra: 244 / 188,
  23771. bottom: 18.2 / 262.1
  23772. }
  23773. },
  23774. back: {
  23775. height: math.unit(2 + 6 / 12, "feet"),
  23776. weight: math.unit(30, "lb"),
  23777. name: "Back",
  23778. image: {
  23779. source: "./media/characters/layla/back.svg",
  23780. extra: 308 / 241.5,
  23781. bottom: 8.9 / 316.8
  23782. }
  23783. },
  23784. cumming: {
  23785. height: math.unit(2 + 6 / 12, "feet"),
  23786. weight: math.unit(30, "lb"),
  23787. name: "Cumming",
  23788. image: {
  23789. source: "./media/characters/layla/cumming.svg",
  23790. extra: 342 / 279,
  23791. bottom: 595 / 938
  23792. }
  23793. },
  23794. dickFlaccid: {
  23795. height: math.unit(2.595, "feet"),
  23796. name: "Flaccid Genitals",
  23797. image: {
  23798. source: "./media/characters/layla/dick-flaccid.svg"
  23799. }
  23800. },
  23801. dickErect: {
  23802. height: math.unit(2.359, "feet"),
  23803. name: "Erect Genitals",
  23804. image: {
  23805. source: "./media/characters/layla/dick-erect.svg"
  23806. }
  23807. },
  23808. dragon: {
  23809. height: math.unit(40, "feet"),
  23810. name: "Dragon",
  23811. image: {
  23812. source: "./media/characters/layla/dragon.svg",
  23813. extra: 610/535,
  23814. bottom: 367/977
  23815. }
  23816. },
  23817. taur: {
  23818. height: math.unit(30, "feet"),
  23819. name: "Taur",
  23820. image: {
  23821. source: "./media/characters/layla/taur.svg",
  23822. extra: 1268/1199,
  23823. bottom: 112/1380
  23824. }
  23825. },
  23826. },
  23827. [
  23828. {
  23829. name: "Micro",
  23830. height: math.unit(1, "inch")
  23831. },
  23832. {
  23833. name: "Small",
  23834. height: math.unit(1, "foot")
  23835. },
  23836. {
  23837. name: "Normal",
  23838. height: math.unit(2 + 6 / 12, "feet"),
  23839. default: true
  23840. },
  23841. {
  23842. name: "Macro",
  23843. height: math.unit(200, "feet")
  23844. },
  23845. {
  23846. name: "Megamacro",
  23847. height: math.unit(1000, "miles")
  23848. },
  23849. {
  23850. name: "Planetary",
  23851. height: math.unit(8000, "miles")
  23852. },
  23853. {
  23854. name: "True Layla",
  23855. height: math.unit(200000 * 7, "multiverses")
  23856. },
  23857. ]
  23858. ))
  23859. characterMakers.push(() => makeCharacter(
  23860. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23861. {
  23862. back: {
  23863. height: math.unit(10.5, "feet"),
  23864. weight: math.unit(800, "lb"),
  23865. name: "Back",
  23866. image: {
  23867. source: "./media/characters/knox/back.svg",
  23868. extra: 1486 / 1089,
  23869. bottom: 107 / 1601.4
  23870. }
  23871. },
  23872. side: {
  23873. height: math.unit(10.5, "feet"),
  23874. weight: math.unit(800, "lb"),
  23875. name: "Side",
  23876. image: {
  23877. source: "./media/characters/knox/side.svg",
  23878. extra: 244 / 218,
  23879. bottom: 14 / 260
  23880. }
  23881. },
  23882. },
  23883. [
  23884. {
  23885. name: "Compact",
  23886. height: math.unit(10.5, "feet"),
  23887. default: true
  23888. },
  23889. {
  23890. name: "Dynamax",
  23891. height: math.unit(210, "feet")
  23892. },
  23893. {
  23894. name: "Full Macro",
  23895. height: math.unit(850, "feet")
  23896. },
  23897. ]
  23898. ))
  23899. characterMakers.push(() => makeCharacter(
  23900. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23901. {
  23902. front: {
  23903. height: math.unit(28, "feet"),
  23904. weight: math.unit(10500, "lb"),
  23905. name: "Front",
  23906. image: {
  23907. source: "./media/characters/kayda/front.svg",
  23908. extra: 1536 / 1428,
  23909. bottom: 68.7 / 1603
  23910. }
  23911. },
  23912. back: {
  23913. height: math.unit(28, "feet"),
  23914. weight: math.unit(10500, "lb"),
  23915. name: "Back",
  23916. image: {
  23917. source: "./media/characters/kayda/back.svg",
  23918. extra: 1557 / 1464,
  23919. bottom: 39.5 / 1597.49
  23920. }
  23921. },
  23922. dick: {
  23923. height: math.unit(3.858, "feet"),
  23924. name: "Dick",
  23925. image: {
  23926. source: "./media/characters/kayda/dick.svg"
  23927. }
  23928. },
  23929. },
  23930. [
  23931. {
  23932. name: "Macro",
  23933. height: math.unit(28, "feet"),
  23934. default: true
  23935. },
  23936. ]
  23937. ))
  23938. characterMakers.push(() => makeCharacter(
  23939. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23940. {
  23941. front: {
  23942. height: math.unit(10 + 11 / 12, "feet"),
  23943. weight: math.unit(1400, "lb"),
  23944. name: "Front",
  23945. image: {
  23946. source: "./media/characters/brian/front.svg",
  23947. extra: 737 / 692,
  23948. bottom: 55.4 / 785
  23949. }
  23950. },
  23951. },
  23952. [
  23953. {
  23954. name: "Normal",
  23955. height: math.unit(10 + 11 / 12, "feet"),
  23956. default: true
  23957. },
  23958. ]
  23959. ))
  23960. characterMakers.push(() => makeCharacter(
  23961. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23962. {
  23963. front: {
  23964. height: math.unit(5 + 8 / 12, "feet"),
  23965. weight: math.unit(140, "lb"),
  23966. name: "Front",
  23967. image: {
  23968. source: "./media/characters/khemri/front.svg",
  23969. extra: 4780 / 4059,
  23970. bottom: 80.1 / 4859.25
  23971. }
  23972. },
  23973. },
  23974. [
  23975. {
  23976. name: "Micro",
  23977. height: math.unit(6, "inches")
  23978. },
  23979. {
  23980. name: "Normal",
  23981. height: math.unit(5 + 8 / 12, "feet"),
  23982. default: true
  23983. },
  23984. ]
  23985. ))
  23986. characterMakers.push(() => makeCharacter(
  23987. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23988. {
  23989. front: {
  23990. height: math.unit(13, "feet"),
  23991. weight: math.unit(1700, "lb"),
  23992. name: "Front",
  23993. image: {
  23994. source: "./media/characters/felix-braveheart/front.svg",
  23995. extra: 1222 / 1157,
  23996. bottom: 53.2 / 1280
  23997. }
  23998. },
  23999. back: {
  24000. height: math.unit(13, "feet"),
  24001. weight: math.unit(1700, "lb"),
  24002. name: "Back",
  24003. image: {
  24004. source: "./media/characters/felix-braveheart/back.svg",
  24005. extra: 1277 / 1203,
  24006. bottom: 50.2 / 1327
  24007. }
  24008. },
  24009. feral: {
  24010. height: math.unit(6, "feet"),
  24011. weight: math.unit(400, "lb"),
  24012. name: "Feral",
  24013. image: {
  24014. source: "./media/characters/felix-braveheart/feral.svg",
  24015. extra: 682 / 625,
  24016. bottom: 6.9 / 688
  24017. }
  24018. },
  24019. },
  24020. [
  24021. {
  24022. name: "Normal",
  24023. height: math.unit(13, "feet"),
  24024. default: true
  24025. },
  24026. ]
  24027. ))
  24028. characterMakers.push(() => makeCharacter(
  24029. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24030. {
  24031. side: {
  24032. height: math.unit(5 + 11 / 12, "feet"),
  24033. weight: math.unit(1400, "lb"),
  24034. name: "Side",
  24035. image: {
  24036. source: "./media/characters/shadow-blade/side.svg",
  24037. extra: 1726 / 1267,
  24038. bottom: 58.4 / 1785
  24039. }
  24040. },
  24041. },
  24042. [
  24043. {
  24044. name: "Normal",
  24045. height: math.unit(5 + 11 / 12, "feet"),
  24046. default: true
  24047. },
  24048. ]
  24049. ))
  24050. characterMakers.push(() => makeCharacter(
  24051. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24052. {
  24053. front: {
  24054. height: math.unit(1 + 6 / 12, "feet"),
  24055. weight: math.unit(25, "lb"),
  24056. name: "Front",
  24057. image: {
  24058. source: "./media/characters/karla-halldor/front.svg",
  24059. extra: 1459 / 1383,
  24060. bottom: 12 / 1472
  24061. }
  24062. },
  24063. },
  24064. [
  24065. {
  24066. name: "Normal",
  24067. height: math.unit(1 + 6 / 12, "feet"),
  24068. default: true
  24069. },
  24070. ]
  24071. ))
  24072. characterMakers.push(() => makeCharacter(
  24073. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24074. {
  24075. front: {
  24076. height: math.unit(6 + 2 / 12, "feet"),
  24077. weight: math.unit(160, "lb"),
  24078. name: "Front",
  24079. image: {
  24080. source: "./media/characters/ariam/front.svg",
  24081. extra: 1073/976,
  24082. bottom: 52/1125
  24083. }
  24084. },
  24085. back: {
  24086. height: math.unit(6 + 2/12, "feet"),
  24087. weight: math.unit(160, "lb"),
  24088. name: "Back",
  24089. image: {
  24090. source: "./media/characters/ariam/back.svg",
  24091. extra: 1103/1023,
  24092. bottom: 9/1112
  24093. }
  24094. },
  24095. dressed: {
  24096. height: math.unit(6 + 2/12, "feet"),
  24097. weight: math.unit(160, "lb"),
  24098. name: "Dressed",
  24099. image: {
  24100. source: "./media/characters/ariam/dressed.svg",
  24101. extra: 1099/1009,
  24102. bottom: 25/1124
  24103. }
  24104. },
  24105. squatting: {
  24106. height: math.unit(4.1, "feet"),
  24107. weight: math.unit(160, "lb"),
  24108. name: "Squatting",
  24109. image: {
  24110. source: "./media/characters/ariam/squatting.svg",
  24111. extra: 2617 / 2112,
  24112. bottom: 61.2 / 2681,
  24113. }
  24114. },
  24115. },
  24116. [
  24117. {
  24118. name: "Normal",
  24119. height: math.unit(6 + 2 / 12, "feet"),
  24120. default: true
  24121. },
  24122. {
  24123. name: "Normal+",
  24124. height: math.unit(4, "meters")
  24125. },
  24126. {
  24127. name: "Macro",
  24128. height: math.unit(50, "meters")
  24129. },
  24130. {
  24131. name: "Macro+",
  24132. height: math.unit(100, "meters")
  24133. },
  24134. {
  24135. name: "Megamacro",
  24136. height: math.unit(20, "km")
  24137. },
  24138. {
  24139. name: "Caretaker",
  24140. height: math.unit(444, "megameters")
  24141. },
  24142. ]
  24143. ))
  24144. characterMakers.push(() => makeCharacter(
  24145. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24146. {
  24147. front: {
  24148. height: math.unit(1.67, "meters"),
  24149. weight: math.unit(140, "lb"),
  24150. name: "Front",
  24151. image: {
  24152. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24153. extra: 438 / 410,
  24154. bottom: 0.75 / 439
  24155. }
  24156. },
  24157. },
  24158. [
  24159. {
  24160. name: "Shrunken",
  24161. height: math.unit(7.6, "cm")
  24162. },
  24163. {
  24164. name: "Human Scale",
  24165. height: math.unit(1.67, "meters")
  24166. },
  24167. {
  24168. name: "Wolxi Scale",
  24169. height: math.unit(36.7, "meters"),
  24170. default: true
  24171. },
  24172. ]
  24173. ))
  24174. characterMakers.push(() => makeCharacter(
  24175. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24176. {
  24177. front: {
  24178. height: math.unit(1.73, "meters"),
  24179. weight: math.unit(240, "lb"),
  24180. name: "Front",
  24181. image: {
  24182. source: "./media/characters/izue-two-mothers/front.svg",
  24183. extra: 469 / 437,
  24184. bottom: 1.24 / 470.6
  24185. }
  24186. },
  24187. },
  24188. [
  24189. {
  24190. name: "Shrunken",
  24191. height: math.unit(7.86, "cm")
  24192. },
  24193. {
  24194. name: "Human Scale",
  24195. height: math.unit(1.73, "meters")
  24196. },
  24197. {
  24198. name: "Wolxi Scale",
  24199. height: math.unit(38, "meters"),
  24200. default: true
  24201. },
  24202. ]
  24203. ))
  24204. characterMakers.push(() => makeCharacter(
  24205. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24206. {
  24207. front: {
  24208. height: math.unit(1.55, "meters"),
  24209. weight: math.unit(120, "lb"),
  24210. name: "Front",
  24211. image: {
  24212. source: "./media/characters/teeku-love-shack/front.svg",
  24213. extra: 387 / 362,
  24214. bottom: 1.51 / 388
  24215. }
  24216. },
  24217. },
  24218. [
  24219. {
  24220. name: "Shrunken",
  24221. height: math.unit(7, "cm")
  24222. },
  24223. {
  24224. name: "Human Scale",
  24225. height: math.unit(1.55, "meters")
  24226. },
  24227. {
  24228. name: "Wolxi Scale",
  24229. height: math.unit(34.1, "meters"),
  24230. default: true
  24231. },
  24232. ]
  24233. ))
  24234. characterMakers.push(() => makeCharacter(
  24235. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24236. {
  24237. front: {
  24238. height: math.unit(1.83, "meters"),
  24239. weight: math.unit(135, "lb"),
  24240. name: "Front",
  24241. image: {
  24242. source: "./media/characters/dejma-the-red/front.svg",
  24243. extra: 480 / 458,
  24244. bottom: 1.8 / 482
  24245. }
  24246. },
  24247. },
  24248. [
  24249. {
  24250. name: "Shrunken",
  24251. height: math.unit(8.3, "cm")
  24252. },
  24253. {
  24254. name: "Human Scale",
  24255. height: math.unit(1.83, "meters")
  24256. },
  24257. {
  24258. name: "Wolxi Scale",
  24259. height: math.unit(40, "meters"),
  24260. default: true
  24261. },
  24262. ]
  24263. ))
  24264. characterMakers.push(() => makeCharacter(
  24265. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24266. {
  24267. front: {
  24268. height: math.unit(1.78, "meters"),
  24269. weight: math.unit(65, "kg"),
  24270. name: "Front",
  24271. image: {
  24272. source: "./media/characters/aki/front.svg",
  24273. extra: 452 / 415
  24274. }
  24275. },
  24276. frontNsfw: {
  24277. height: math.unit(1.78, "meters"),
  24278. weight: math.unit(65, "kg"),
  24279. name: "Front (NSFW)",
  24280. image: {
  24281. source: "./media/characters/aki/front-nsfw.svg",
  24282. extra: 452 / 415
  24283. }
  24284. },
  24285. back: {
  24286. height: math.unit(1.78, "meters"),
  24287. weight: math.unit(65, "kg"),
  24288. name: "Back",
  24289. image: {
  24290. source: "./media/characters/aki/back.svg",
  24291. extra: 452 / 415
  24292. }
  24293. },
  24294. rump: {
  24295. height: math.unit(2.05, "feet"),
  24296. name: "Rump",
  24297. image: {
  24298. source: "./media/characters/aki/rump.svg"
  24299. }
  24300. },
  24301. dick: {
  24302. height: math.unit(0.95, "feet"),
  24303. name: "Dick",
  24304. image: {
  24305. source: "./media/characters/aki/dick.svg"
  24306. }
  24307. },
  24308. },
  24309. [
  24310. {
  24311. name: "Micro",
  24312. height: math.unit(15, "cm")
  24313. },
  24314. {
  24315. name: "Normal",
  24316. height: math.unit(178, "cm"),
  24317. default: true
  24318. },
  24319. {
  24320. name: "Macro",
  24321. height: math.unit(214, "m")
  24322. },
  24323. {
  24324. name: "Macro+",
  24325. height: math.unit(534, "m")
  24326. },
  24327. ]
  24328. ))
  24329. characterMakers.push(() => makeCharacter(
  24330. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24331. {
  24332. front: {
  24333. height: math.unit(5 + 5 / 12, "feet"),
  24334. weight: math.unit(120, "lb"),
  24335. name: "Front",
  24336. image: {
  24337. source: "./media/characters/ari/front.svg",
  24338. extra: 714.5 / 682,
  24339. bottom: 8 / 722.5
  24340. }
  24341. },
  24342. },
  24343. [
  24344. {
  24345. name: "Normal",
  24346. height: math.unit(5 + 5 / 12, "feet")
  24347. },
  24348. {
  24349. name: "Macro",
  24350. height: math.unit(100, "feet"),
  24351. default: true
  24352. },
  24353. {
  24354. name: "Megamacro",
  24355. height: math.unit(100, "miles")
  24356. },
  24357. {
  24358. name: "Gigamacro",
  24359. height: math.unit(80000, "miles")
  24360. },
  24361. ]
  24362. ))
  24363. characterMakers.push(() => makeCharacter(
  24364. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24365. {
  24366. side: {
  24367. height: math.unit(9, "feet"),
  24368. weight: math.unit(400, "kg"),
  24369. name: "Side",
  24370. image: {
  24371. source: "./media/characters/bolt/side.svg",
  24372. extra: 1126 / 896,
  24373. bottom: 60 / 1187.3,
  24374. }
  24375. },
  24376. },
  24377. [
  24378. {
  24379. name: "Micro",
  24380. height: math.unit(5, "inches")
  24381. },
  24382. {
  24383. name: "Normal",
  24384. height: math.unit(9, "feet"),
  24385. default: true
  24386. },
  24387. {
  24388. name: "Macro",
  24389. height: math.unit(700, "feet")
  24390. },
  24391. {
  24392. name: "Max Size",
  24393. height: math.unit(1.52e22, "yottameters")
  24394. },
  24395. ]
  24396. ))
  24397. characterMakers.push(() => makeCharacter(
  24398. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24399. {
  24400. front: {
  24401. height: math.unit(4.53, "meters"),
  24402. weight: math.unit(3, "tons"),
  24403. name: "Front",
  24404. image: {
  24405. source: "./media/characters/draekon-sylviar/front.svg",
  24406. extra: 1228 / 1068,
  24407. bottom: 41 / 1270
  24408. }
  24409. },
  24410. tail: {
  24411. height: math.unit(1.772, "meter"),
  24412. name: "Tail",
  24413. image: {
  24414. source: "./media/characters/draekon-sylviar/tail.svg"
  24415. }
  24416. },
  24417. head: {
  24418. height: math.unit(1.331, "meter"),
  24419. name: "Head",
  24420. image: {
  24421. source: "./media/characters/draekon-sylviar/head.svg"
  24422. }
  24423. },
  24424. hand: {
  24425. height: math.unit(0.564, "meter"),
  24426. name: "Hand",
  24427. image: {
  24428. source: "./media/characters/draekon-sylviar/hand.svg"
  24429. }
  24430. },
  24431. foot: {
  24432. height: math.unit(0.621, "meter"),
  24433. name: "Foot",
  24434. image: {
  24435. source: "./media/characters/draekon-sylviar/foot.svg",
  24436. bottom: 32 / 324
  24437. }
  24438. },
  24439. dick: {
  24440. height: math.unit(61, "cm"),
  24441. name: "Dick",
  24442. image: {
  24443. source: "./media/characters/draekon-sylviar/dick.svg"
  24444. }
  24445. },
  24446. dickseparated: {
  24447. height: math.unit(61, "cm"),
  24448. name: "Dick-separated",
  24449. image: {
  24450. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24451. }
  24452. },
  24453. },
  24454. [
  24455. {
  24456. name: "Small",
  24457. height: math.unit(4.53 / 2, "meters"),
  24458. default: true
  24459. },
  24460. {
  24461. name: "Normal",
  24462. height: math.unit(4.53, "meters"),
  24463. default: true
  24464. },
  24465. {
  24466. name: "Large",
  24467. height: math.unit(4.53 * 2, "meters"),
  24468. },
  24469. ]
  24470. ))
  24471. characterMakers.push(() => makeCharacter(
  24472. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24473. {
  24474. front: {
  24475. height: math.unit(6 + 2 / 12, "feet"),
  24476. weight: math.unit(180, "lb"),
  24477. name: "Front",
  24478. image: {
  24479. source: "./media/characters/brawler/front.svg",
  24480. extra: 3301 / 3027,
  24481. bottom: 138 / 3439
  24482. }
  24483. },
  24484. },
  24485. [
  24486. {
  24487. name: "Normal",
  24488. height: math.unit(6 + 2 / 12, "feet"),
  24489. default: true
  24490. },
  24491. ]
  24492. ))
  24493. characterMakers.push(() => makeCharacter(
  24494. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24495. {
  24496. front: {
  24497. height: math.unit(11, "feet"),
  24498. weight: math.unit(1000, "lb"),
  24499. name: "Front",
  24500. image: {
  24501. source: "./media/characters/alex/front.svg",
  24502. bottom: 44.5 / 620
  24503. }
  24504. },
  24505. },
  24506. [
  24507. {
  24508. name: "Micro",
  24509. height: math.unit(5, "inches")
  24510. },
  24511. {
  24512. name: "Normal",
  24513. height: math.unit(11, "feet"),
  24514. default: true
  24515. },
  24516. {
  24517. name: "Macro",
  24518. height: math.unit(9.5e9, "feet")
  24519. },
  24520. {
  24521. name: "Max Size",
  24522. height: math.unit(1.4e283, "yottameters")
  24523. },
  24524. ]
  24525. ))
  24526. characterMakers.push(() => makeCharacter(
  24527. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24528. {
  24529. female: {
  24530. height: math.unit(29.9, "m"),
  24531. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24532. name: "Female",
  24533. image: {
  24534. source: "./media/characters/zenari/female.svg",
  24535. extra: 3281.6 / 3217,
  24536. bottom: 72.2 / 3353
  24537. }
  24538. },
  24539. male: {
  24540. height: math.unit(27.7, "m"),
  24541. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24542. name: "Male",
  24543. image: {
  24544. source: "./media/characters/zenari/male.svg",
  24545. extra: 3008 / 2991,
  24546. bottom: 54.6 / 3069
  24547. }
  24548. },
  24549. },
  24550. [
  24551. {
  24552. name: "Macro",
  24553. height: math.unit(29.7, "meters"),
  24554. default: true
  24555. },
  24556. ]
  24557. ))
  24558. characterMakers.push(() => makeCharacter(
  24559. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24560. {
  24561. female: {
  24562. height: math.unit(23.8, "m"),
  24563. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24564. name: "Female",
  24565. image: {
  24566. source: "./media/characters/mactarian/female.svg",
  24567. extra: 2662 / 2569,
  24568. bottom: 73 / 2736
  24569. }
  24570. },
  24571. male: {
  24572. height: math.unit(23.8, "m"),
  24573. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24574. name: "Male",
  24575. image: {
  24576. source: "./media/characters/mactarian/male.svg",
  24577. extra: 2673 / 2600,
  24578. bottom: 76 / 2750
  24579. }
  24580. },
  24581. },
  24582. [
  24583. {
  24584. name: "Macro",
  24585. height: math.unit(23.8, "meters"),
  24586. default: true
  24587. },
  24588. ]
  24589. ))
  24590. characterMakers.push(() => makeCharacter(
  24591. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24592. {
  24593. female: {
  24594. height: math.unit(19.3, "m"),
  24595. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24596. name: "Female",
  24597. image: {
  24598. source: "./media/characters/umok/female.svg",
  24599. extra: 2186 / 2078,
  24600. bottom: 87 / 2277
  24601. }
  24602. },
  24603. male: {
  24604. height: math.unit(19.5, "m"),
  24605. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24606. name: "Male",
  24607. image: {
  24608. source: "./media/characters/umok/male.svg",
  24609. extra: 2233 / 2140,
  24610. bottom: 24.4 / 2258
  24611. }
  24612. },
  24613. },
  24614. [
  24615. {
  24616. name: "Macro",
  24617. height: math.unit(19.3, "meters"),
  24618. default: true
  24619. },
  24620. ]
  24621. ))
  24622. characterMakers.push(() => makeCharacter(
  24623. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24624. {
  24625. female: {
  24626. height: math.unit(26.15, "m"),
  24627. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24628. name: "Female",
  24629. image: {
  24630. source: "./media/characters/joraxian/female.svg",
  24631. extra: 2912 / 2824,
  24632. bottom: 36 / 2956
  24633. }
  24634. },
  24635. male: {
  24636. height: math.unit(25.4, "m"),
  24637. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24638. name: "Male",
  24639. image: {
  24640. source: "./media/characters/joraxian/male.svg",
  24641. extra: 2877 / 2721,
  24642. bottom: 82 / 2967
  24643. }
  24644. },
  24645. },
  24646. [
  24647. {
  24648. name: "Macro",
  24649. height: math.unit(26.15, "meters"),
  24650. default: true
  24651. },
  24652. ]
  24653. ))
  24654. characterMakers.push(() => makeCharacter(
  24655. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24656. {
  24657. female: {
  24658. height: math.unit(21.6, "m"),
  24659. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24660. name: "Female",
  24661. image: {
  24662. source: "./media/characters/sthara/female.svg",
  24663. extra: 2516 / 2347,
  24664. bottom: 21.5 / 2537
  24665. }
  24666. },
  24667. male: {
  24668. height: math.unit(24, "m"),
  24669. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24670. name: "Male",
  24671. image: {
  24672. source: "./media/characters/sthara/male.svg",
  24673. extra: 2732 / 2607,
  24674. bottom: 23 / 2732
  24675. }
  24676. },
  24677. },
  24678. [
  24679. {
  24680. name: "Macro",
  24681. height: math.unit(21.6, "meters"),
  24682. default: true
  24683. },
  24684. ]
  24685. ))
  24686. characterMakers.push(() => makeCharacter(
  24687. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24688. {
  24689. front: {
  24690. height: math.unit(6 + 4 / 12, "feet"),
  24691. weight: math.unit(175, "lb"),
  24692. name: "Front",
  24693. image: {
  24694. source: "./media/characters/luka-bryzant/front.svg",
  24695. extra: 311 / 289,
  24696. bottom: 4 / 315
  24697. }
  24698. },
  24699. back: {
  24700. height: math.unit(6 + 4 / 12, "feet"),
  24701. weight: math.unit(175, "lb"),
  24702. name: "Back",
  24703. image: {
  24704. source: "./media/characters/luka-bryzant/back.svg",
  24705. extra: 311 / 289,
  24706. bottom: 3.8 / 313.7
  24707. }
  24708. },
  24709. },
  24710. [
  24711. {
  24712. name: "Micro",
  24713. height: math.unit(10, "inches")
  24714. },
  24715. {
  24716. name: "Normal",
  24717. height: math.unit(6 + 4 / 12, "feet"),
  24718. default: true
  24719. },
  24720. {
  24721. name: "Large",
  24722. height: math.unit(12, "feet")
  24723. },
  24724. ]
  24725. ))
  24726. characterMakers.push(() => makeCharacter(
  24727. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24728. {
  24729. front: {
  24730. height: math.unit(5 + 7 / 12, "feet"),
  24731. weight: math.unit(185, "lb"),
  24732. name: "Front",
  24733. image: {
  24734. source: "./media/characters/aman-aquila/front.svg",
  24735. extra: 1013 / 976,
  24736. bottom: 45.6 / 1057
  24737. }
  24738. },
  24739. side: {
  24740. height: math.unit(5 + 7 / 12, "feet"),
  24741. weight: math.unit(185, "lb"),
  24742. name: "Side",
  24743. image: {
  24744. source: "./media/characters/aman-aquila/side.svg",
  24745. extra: 1054 / 1011,
  24746. bottom: 15 / 1070
  24747. }
  24748. },
  24749. back: {
  24750. height: math.unit(5 + 7 / 12, "feet"),
  24751. weight: math.unit(185, "lb"),
  24752. name: "Back",
  24753. image: {
  24754. source: "./media/characters/aman-aquila/back.svg",
  24755. extra: 1026 / 970,
  24756. bottom: 12 / 1039
  24757. }
  24758. },
  24759. head: {
  24760. height: math.unit(1.211, "feet"),
  24761. name: "Head",
  24762. image: {
  24763. source: "./media/characters/aman-aquila/head.svg",
  24764. }
  24765. },
  24766. },
  24767. [
  24768. {
  24769. name: "Minimicro",
  24770. height: math.unit(0.057, "inches")
  24771. },
  24772. {
  24773. name: "Micro",
  24774. height: math.unit(7, "inches")
  24775. },
  24776. {
  24777. name: "Mini",
  24778. height: math.unit(3 + 7 / 12, "feet")
  24779. },
  24780. {
  24781. name: "Normal",
  24782. height: math.unit(5 + 7 / 12, "feet"),
  24783. default: true
  24784. },
  24785. {
  24786. name: "Macro",
  24787. height: math.unit(157 + 7 / 12, "feet")
  24788. },
  24789. {
  24790. name: "Megamacro",
  24791. height: math.unit(1557 + 7 / 12, "feet")
  24792. },
  24793. {
  24794. name: "Gigamacro",
  24795. height: math.unit(15557 + 7 / 12, "feet")
  24796. },
  24797. ]
  24798. ))
  24799. characterMakers.push(() => makeCharacter(
  24800. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24801. {
  24802. front: {
  24803. height: math.unit(3 + 2 / 12, "inches"),
  24804. weight: math.unit(0.3, "ounces"),
  24805. name: "Front",
  24806. image: {
  24807. source: "./media/characters/hiphae/front.svg",
  24808. extra: 1931 / 1683,
  24809. bottom: 24 / 1955
  24810. }
  24811. },
  24812. },
  24813. [
  24814. {
  24815. name: "Normal",
  24816. height: math.unit(3 + 1 / 2, "inches"),
  24817. default: true
  24818. },
  24819. ]
  24820. ))
  24821. characterMakers.push(() => makeCharacter(
  24822. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24823. {
  24824. front: {
  24825. height: math.unit(5 + 10 / 12, "feet"),
  24826. weight: math.unit(165, "lb"),
  24827. name: "Front",
  24828. image: {
  24829. source: "./media/characters/nicky/front.svg",
  24830. extra: 3144 / 2886,
  24831. bottom: 45.6 / 3192
  24832. }
  24833. },
  24834. back: {
  24835. height: math.unit(5 + 10 / 12, "feet"),
  24836. weight: math.unit(165, "lb"),
  24837. name: "Back",
  24838. image: {
  24839. source: "./media/characters/nicky/back.svg",
  24840. extra: 3055 / 2804,
  24841. bottom: 28.4 / 3087
  24842. }
  24843. },
  24844. frontclothed: {
  24845. height: math.unit(5 + 10 / 12, "feet"),
  24846. weight: math.unit(165, "lb"),
  24847. name: "Front-clothed",
  24848. image: {
  24849. source: "./media/characters/nicky/front-clothed.svg",
  24850. extra: 3184.9 / 2926.9,
  24851. bottom: 86.5 / 3239.9
  24852. }
  24853. },
  24854. foot: {
  24855. height: math.unit(1.16, "feet"),
  24856. name: "Foot",
  24857. image: {
  24858. source: "./media/characters/nicky/foot.svg"
  24859. }
  24860. },
  24861. feet: {
  24862. height: math.unit(1.34, "feet"),
  24863. name: "Feet",
  24864. image: {
  24865. source: "./media/characters/nicky/feet.svg"
  24866. }
  24867. },
  24868. maw: {
  24869. height: math.unit(0.9, "feet"),
  24870. name: "Maw",
  24871. image: {
  24872. source: "./media/characters/nicky/maw.svg"
  24873. }
  24874. },
  24875. },
  24876. [
  24877. {
  24878. name: "Normal",
  24879. height: math.unit(5 + 10 / 12, "feet"),
  24880. default: true
  24881. },
  24882. {
  24883. name: "Macro",
  24884. height: math.unit(60, "feet")
  24885. },
  24886. {
  24887. name: "Megamacro",
  24888. height: math.unit(1, "mile")
  24889. },
  24890. ]
  24891. ))
  24892. characterMakers.push(() => makeCharacter(
  24893. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24894. {
  24895. side: {
  24896. height: math.unit(10, "feet"),
  24897. weight: math.unit(600, "lb"),
  24898. name: "Side",
  24899. image: {
  24900. source: "./media/characters/blair/side.svg",
  24901. bottom: 16.6 / 475,
  24902. extra: 458 / 431
  24903. }
  24904. },
  24905. },
  24906. [
  24907. {
  24908. name: "Micro",
  24909. height: math.unit(8, "inches")
  24910. },
  24911. {
  24912. name: "Normal",
  24913. height: math.unit(10, "feet"),
  24914. default: true
  24915. },
  24916. {
  24917. name: "Macro",
  24918. height: math.unit(180, "feet")
  24919. },
  24920. ]
  24921. ))
  24922. characterMakers.push(() => makeCharacter(
  24923. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24924. {
  24925. front: {
  24926. height: math.unit(5 + 4 / 12, "feet"),
  24927. weight: math.unit(125, "lb"),
  24928. name: "Front",
  24929. image: {
  24930. source: "./media/characters/fisher/front.svg",
  24931. extra: 444 / 390,
  24932. bottom: 2 / 444.8
  24933. }
  24934. },
  24935. },
  24936. [
  24937. {
  24938. name: "Micro",
  24939. height: math.unit(4, "inches")
  24940. },
  24941. {
  24942. name: "Normal",
  24943. height: math.unit(5 + 4 / 12, "feet"),
  24944. default: true
  24945. },
  24946. {
  24947. name: "Macro",
  24948. height: math.unit(100, "feet")
  24949. },
  24950. ]
  24951. ))
  24952. characterMakers.push(() => makeCharacter(
  24953. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24954. {
  24955. front: {
  24956. height: math.unit(6.71, "feet"),
  24957. weight: math.unit(200, "lb"),
  24958. capacity: math.unit(1000000, "people"),
  24959. name: "Front",
  24960. image: {
  24961. source: "./media/characters/gliss/front.svg",
  24962. extra: 2347 / 2231,
  24963. bottom: 113 / 2462
  24964. }
  24965. },
  24966. hammerspaceSize: {
  24967. height: math.unit(6.71 * 717, "feet"),
  24968. weight: math.unit(200, "lb"),
  24969. capacity: math.unit(1000000, "people"),
  24970. name: "Hammerspace Size",
  24971. image: {
  24972. source: "./media/characters/gliss/front.svg",
  24973. extra: 2347 / 2231,
  24974. bottom: 113 / 2462
  24975. }
  24976. },
  24977. },
  24978. [
  24979. {
  24980. name: "Normal",
  24981. height: math.unit(6.71, "feet"),
  24982. default: true
  24983. },
  24984. ]
  24985. ))
  24986. characterMakers.push(() => makeCharacter(
  24987. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24988. {
  24989. side: {
  24990. height: math.unit(1.44, "m"),
  24991. weight: math.unit(80, "kg"),
  24992. name: "Side",
  24993. image: {
  24994. source: "./media/characters/dune-anderson/side.svg",
  24995. bottom: 49 / 1426
  24996. }
  24997. },
  24998. },
  24999. [
  25000. {
  25001. name: "Wolf-sized",
  25002. height: math.unit(1.44, "meters")
  25003. },
  25004. {
  25005. name: "Normal",
  25006. height: math.unit(5.05, "meters"),
  25007. default: true
  25008. },
  25009. {
  25010. name: "Big",
  25011. height: math.unit(14.4, "meters")
  25012. },
  25013. {
  25014. name: "Huge",
  25015. height: math.unit(144, "meters")
  25016. },
  25017. ]
  25018. ))
  25019. characterMakers.push(() => makeCharacter(
  25020. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25021. {
  25022. front: {
  25023. height: math.unit(7, "feet"),
  25024. weight: math.unit(425, "lb"),
  25025. name: "Front",
  25026. image: {
  25027. source: "./media/characters/hind/front.svg",
  25028. extra: 2091 / 1860,
  25029. bottom: 129 / 2220
  25030. }
  25031. },
  25032. back: {
  25033. height: math.unit(7, "feet"),
  25034. weight: math.unit(425, "lb"),
  25035. name: "Back",
  25036. image: {
  25037. source: "./media/characters/hind/back.svg",
  25038. extra: 2091 / 1860,
  25039. bottom: 24.6 / 2309
  25040. }
  25041. },
  25042. tail: {
  25043. height: math.unit(2.8, "feet"),
  25044. name: "Tail",
  25045. image: {
  25046. source: "./media/characters/hind/tail.svg"
  25047. }
  25048. },
  25049. head: {
  25050. height: math.unit(2.55, "feet"),
  25051. name: "Head",
  25052. image: {
  25053. source: "./media/characters/hind/head.svg"
  25054. }
  25055. },
  25056. },
  25057. [
  25058. {
  25059. name: "XS",
  25060. height: math.unit(0.7, "feet")
  25061. },
  25062. {
  25063. name: "Normal",
  25064. height: math.unit(7, "feet"),
  25065. default: true
  25066. },
  25067. {
  25068. name: "XL",
  25069. height: math.unit(70, "feet")
  25070. },
  25071. ]
  25072. ))
  25073. characterMakers.push(() => makeCharacter(
  25074. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25075. {
  25076. front: {
  25077. height: math.unit(2.1, "meters"),
  25078. weight: math.unit(150, "lb"),
  25079. name: "Front",
  25080. image: {
  25081. source: "./media/characters/tharquench-sizestealer/front.svg",
  25082. extra: 1605/1470,
  25083. bottom: 36/1641
  25084. }
  25085. },
  25086. frontAlt: {
  25087. height: math.unit(2.1, "meters"),
  25088. weight: math.unit(150, "lb"),
  25089. name: "Front (Alt)",
  25090. image: {
  25091. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25092. extra: 2318 / 2063,
  25093. bottom: 93.4 / 2410
  25094. }
  25095. },
  25096. },
  25097. [
  25098. {
  25099. name: "Nano",
  25100. height: math.unit(1, "mm")
  25101. },
  25102. {
  25103. name: "Micro",
  25104. height: math.unit(1, "cm")
  25105. },
  25106. {
  25107. name: "Normal",
  25108. height: math.unit(2.1, "meters"),
  25109. default: true
  25110. },
  25111. ]
  25112. ))
  25113. characterMakers.push(() => makeCharacter(
  25114. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25115. {
  25116. front: {
  25117. height: math.unit(7 + 5 / 12, "feet"),
  25118. weight: math.unit(357, "lb"),
  25119. name: "Front",
  25120. image: {
  25121. source: "./media/characters/solex-draconov/front.svg",
  25122. extra: 1993 / 1865,
  25123. bottom: 117 / 2111
  25124. }
  25125. },
  25126. },
  25127. [
  25128. {
  25129. name: "Natural Height",
  25130. height: math.unit(7 + 5 / 12, "feet"),
  25131. default: true
  25132. },
  25133. {
  25134. name: "Macro",
  25135. height: math.unit(350, "feet")
  25136. },
  25137. {
  25138. name: "Macro+",
  25139. height: math.unit(1000, "feet")
  25140. },
  25141. {
  25142. name: "Megamacro",
  25143. height: math.unit(20, "km")
  25144. },
  25145. {
  25146. name: "Megamacro+",
  25147. height: math.unit(1000, "km")
  25148. },
  25149. {
  25150. name: "Gigamacro",
  25151. height: math.unit(2.5, "Gm")
  25152. },
  25153. {
  25154. name: "Teramacro",
  25155. height: math.unit(15, "Tm")
  25156. },
  25157. {
  25158. name: "Galactic",
  25159. height: math.unit(30, "Zm")
  25160. },
  25161. {
  25162. name: "Universal",
  25163. height: math.unit(21000, "Ym")
  25164. },
  25165. {
  25166. name: "Omniversal",
  25167. height: math.unit(9.861e50, "Ym")
  25168. },
  25169. {
  25170. name: "Existential",
  25171. height: math.unit(1e300, "meters")
  25172. },
  25173. ]
  25174. ))
  25175. characterMakers.push(() => makeCharacter(
  25176. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25177. {
  25178. side: {
  25179. height: math.unit(25, "feet"),
  25180. weight: math.unit(90000, "lb"),
  25181. name: "Side",
  25182. image: {
  25183. source: "./media/characters/mandarax/side.svg",
  25184. extra: 614 / 332,
  25185. bottom: 55 / 630
  25186. }
  25187. },
  25188. head: {
  25189. height: math.unit(11.4, "feet"),
  25190. name: "Head",
  25191. image: {
  25192. source: "./media/characters/mandarax/head.svg"
  25193. }
  25194. },
  25195. belly: {
  25196. height: math.unit(33, "feet"),
  25197. name: "Belly",
  25198. capacity: math.unit(500, "people"),
  25199. image: {
  25200. source: "./media/characters/mandarax/belly.svg"
  25201. }
  25202. },
  25203. dick: {
  25204. height: math.unit(8.46, "feet"),
  25205. name: "Dick",
  25206. image: {
  25207. source: "./media/characters/mandarax/dick.svg"
  25208. }
  25209. },
  25210. top: {
  25211. height: math.unit(28, "meters"),
  25212. name: "Top",
  25213. image: {
  25214. source: "./media/characters/mandarax/top.svg"
  25215. }
  25216. },
  25217. },
  25218. [
  25219. {
  25220. name: "Normal",
  25221. height: math.unit(25, "feet"),
  25222. default: true
  25223. },
  25224. ]
  25225. ))
  25226. characterMakers.push(() => makeCharacter(
  25227. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25228. {
  25229. front: {
  25230. height: math.unit(5, "feet"),
  25231. weight: math.unit(90, "lb"),
  25232. name: "Front",
  25233. image: {
  25234. source: "./media/characters/pixil/front.svg",
  25235. extra: 2000 / 1618,
  25236. bottom: 12.3 / 2011
  25237. }
  25238. },
  25239. },
  25240. [
  25241. {
  25242. name: "Normal",
  25243. height: math.unit(5, "feet"),
  25244. default: true
  25245. },
  25246. {
  25247. name: "Megamacro",
  25248. height: math.unit(10, "miles"),
  25249. },
  25250. ]
  25251. ))
  25252. characterMakers.push(() => makeCharacter(
  25253. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25254. {
  25255. front: {
  25256. height: math.unit(7 + 2 / 12, "feet"),
  25257. weight: math.unit(200, "lb"),
  25258. name: "Front",
  25259. image: {
  25260. source: "./media/characters/angel/front.svg",
  25261. extra: 1830 / 1737,
  25262. bottom: 22.6 / 1854,
  25263. }
  25264. },
  25265. },
  25266. [
  25267. {
  25268. name: "Normal",
  25269. height: math.unit(7 + 2 / 12, "feet"),
  25270. default: true
  25271. },
  25272. {
  25273. name: "Macro",
  25274. height: math.unit(1000, "feet")
  25275. },
  25276. {
  25277. name: "Megamacro",
  25278. height: math.unit(2, "miles")
  25279. },
  25280. {
  25281. name: "Gigamacro",
  25282. height: math.unit(20, "earths")
  25283. },
  25284. ]
  25285. ))
  25286. characterMakers.push(() => makeCharacter(
  25287. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25288. {
  25289. front: {
  25290. height: math.unit(5, "feet"),
  25291. weight: math.unit(180, "lb"),
  25292. name: "Front",
  25293. image: {
  25294. source: "./media/characters/mekana/front.svg",
  25295. extra: 1671 / 1605,
  25296. bottom: 3.5 / 1691
  25297. }
  25298. },
  25299. side: {
  25300. height: math.unit(5, "feet"),
  25301. weight: math.unit(180, "lb"),
  25302. name: "Side",
  25303. image: {
  25304. source: "./media/characters/mekana/side.svg",
  25305. extra: 1671 / 1605,
  25306. bottom: 3.5 / 1691
  25307. }
  25308. },
  25309. back: {
  25310. height: math.unit(5, "feet"),
  25311. weight: math.unit(180, "lb"),
  25312. name: "Back",
  25313. image: {
  25314. source: "./media/characters/mekana/back.svg",
  25315. extra: 1671 / 1605,
  25316. bottom: 3.5 / 1691
  25317. }
  25318. },
  25319. },
  25320. [
  25321. {
  25322. name: "Normal",
  25323. height: math.unit(5, "feet"),
  25324. default: true
  25325. },
  25326. ]
  25327. ))
  25328. characterMakers.push(() => makeCharacter(
  25329. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25330. {
  25331. front: {
  25332. height: math.unit(4 + 6 / 12, "feet"),
  25333. weight: math.unit(80, "lb"),
  25334. name: "Front",
  25335. image: {
  25336. source: "./media/characters/pixie/front.svg",
  25337. extra: 1924 / 1825,
  25338. bottom: 22.4 / 1946
  25339. }
  25340. },
  25341. },
  25342. [
  25343. {
  25344. name: "Normal",
  25345. height: math.unit(4 + 6 / 12, "feet"),
  25346. default: true
  25347. },
  25348. {
  25349. name: "Macro",
  25350. height: math.unit(40, "feet")
  25351. },
  25352. ]
  25353. ))
  25354. characterMakers.push(() => makeCharacter(
  25355. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25356. {
  25357. front: {
  25358. height: math.unit(2.1, "meters"),
  25359. weight: math.unit(200, "lb"),
  25360. name: "Front",
  25361. image: {
  25362. source: "./media/characters/the-lascivious/front.svg",
  25363. extra: 1 / 0.893,
  25364. bottom: 3.5 / 573.7
  25365. }
  25366. },
  25367. },
  25368. [
  25369. {
  25370. name: "Human Scale",
  25371. height: math.unit(2.1, "meters")
  25372. },
  25373. {
  25374. name: "Wolxi Scale",
  25375. height: math.unit(46.2, "m"),
  25376. default: true
  25377. },
  25378. {
  25379. name: "Boinker of Buildings",
  25380. height: math.unit(10, "km")
  25381. },
  25382. {
  25383. name: "Shagger of Skyscrapers",
  25384. height: math.unit(40, "km")
  25385. },
  25386. {
  25387. name: "Banger of Boroughs",
  25388. height: math.unit(4000, "km")
  25389. },
  25390. {
  25391. name: "Screwer of States",
  25392. height: math.unit(100000, "km")
  25393. },
  25394. {
  25395. name: "Pounder of Planets",
  25396. height: math.unit(2000000, "km")
  25397. },
  25398. ]
  25399. ))
  25400. characterMakers.push(() => makeCharacter(
  25401. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25402. {
  25403. front: {
  25404. height: math.unit(6, "feet"),
  25405. weight: math.unit(150, "lb"),
  25406. name: "Front",
  25407. image: {
  25408. source: "./media/characters/aj/front.svg",
  25409. extra: 2039 / 1562,
  25410. bottom: 40 / 2079
  25411. }
  25412. },
  25413. },
  25414. [
  25415. {
  25416. name: "Normal",
  25417. height: math.unit(11 + 6 / 12, "feet"),
  25418. default: true
  25419. },
  25420. {
  25421. name: "Megamacro",
  25422. height: math.unit(60, "megameters")
  25423. },
  25424. ]
  25425. ))
  25426. characterMakers.push(() => makeCharacter(
  25427. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25428. {
  25429. side: {
  25430. height: math.unit(31 + 8 / 12, "feet"),
  25431. weight: math.unit(75000, "kg"),
  25432. name: "Side",
  25433. image: {
  25434. source: "./media/characters/koros/side.svg",
  25435. extra: 1442 / 1297,
  25436. bottom: 122.7 / 1562
  25437. }
  25438. },
  25439. dicksKingsCrown: {
  25440. height: math.unit(6, "feet"),
  25441. name: "Dicks (King's Crown)",
  25442. image: {
  25443. source: "./media/characters/koros/dicks-kings-crown.svg"
  25444. }
  25445. },
  25446. dicksTailSet: {
  25447. height: math.unit(3, "feet"),
  25448. name: "Dicks (Tail Set)",
  25449. image: {
  25450. source: "./media/characters/koros/dicks-tail-set.svg"
  25451. }
  25452. },
  25453. dickCumming: {
  25454. height: math.unit(7.98, "feet"),
  25455. name: "Dick (Cumming)",
  25456. image: {
  25457. source: "./media/characters/koros/dick-cumming.svg"
  25458. }
  25459. },
  25460. dicksBack: {
  25461. height: math.unit(5.9, "feet"),
  25462. name: "Dicks (Back)",
  25463. image: {
  25464. source: "./media/characters/koros/dicks-back.svg"
  25465. }
  25466. },
  25467. dicksFront: {
  25468. height: math.unit(3.72, "feet"),
  25469. name: "Dicks (Front)",
  25470. image: {
  25471. source: "./media/characters/koros/dicks-front.svg"
  25472. }
  25473. },
  25474. dicksPeeking: {
  25475. height: math.unit(3.0, "feet"),
  25476. name: "Dicks (Peeking)",
  25477. image: {
  25478. source: "./media/characters/koros/dicks-peeking.svg"
  25479. }
  25480. },
  25481. eye: {
  25482. height: math.unit(1.7, "feet"),
  25483. name: "Eye",
  25484. image: {
  25485. source: "./media/characters/koros/eye.svg"
  25486. }
  25487. },
  25488. headFront: {
  25489. height: math.unit(11.69, "feet"),
  25490. name: "Head (Front)",
  25491. image: {
  25492. source: "./media/characters/koros/head-front.svg"
  25493. }
  25494. },
  25495. headSide: {
  25496. height: math.unit(14, "feet"),
  25497. name: "Head (Side)",
  25498. image: {
  25499. source: "./media/characters/koros/head-side.svg"
  25500. }
  25501. },
  25502. leg: {
  25503. height: math.unit(17, "feet"),
  25504. name: "Leg",
  25505. image: {
  25506. source: "./media/characters/koros/leg.svg"
  25507. }
  25508. },
  25509. mawSide: {
  25510. height: math.unit(12.8, "feet"),
  25511. name: "Maw (Side)",
  25512. image: {
  25513. source: "./media/characters/koros/maw-side.svg"
  25514. }
  25515. },
  25516. mawSpitting: {
  25517. height: math.unit(17, "feet"),
  25518. name: "Maw (Spitting)",
  25519. image: {
  25520. source: "./media/characters/koros/maw-spitting.svg"
  25521. }
  25522. },
  25523. slit: {
  25524. height: math.unit(2.8, "feet"),
  25525. name: "Slit",
  25526. image: {
  25527. source: "./media/characters/koros/slit.svg"
  25528. }
  25529. },
  25530. stomach: {
  25531. height: math.unit(6.8, "feet"),
  25532. capacity: math.unit(20, "people"),
  25533. name: "Stomach",
  25534. image: {
  25535. source: "./media/characters/koros/stomach.svg"
  25536. }
  25537. },
  25538. wingspanBottom: {
  25539. height: math.unit(114, "feet"),
  25540. name: "Wingspan (Bottom)",
  25541. image: {
  25542. source: "./media/characters/koros/wingspan-bottom.svg"
  25543. }
  25544. },
  25545. wingspanTop: {
  25546. height: math.unit(104, "feet"),
  25547. name: "Wingspan (Top)",
  25548. image: {
  25549. source: "./media/characters/koros/wingspan-top.svg"
  25550. }
  25551. },
  25552. },
  25553. [
  25554. {
  25555. name: "Normal",
  25556. height: math.unit(31 + 8 / 12, "feet"),
  25557. default: true
  25558. },
  25559. ]
  25560. ))
  25561. characterMakers.push(() => makeCharacter(
  25562. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25563. {
  25564. front: {
  25565. height: math.unit(18 + 5 / 12, "feet"),
  25566. weight: math.unit(3750, "kg"),
  25567. name: "Front",
  25568. image: {
  25569. source: "./media/characters/vexx/front.svg",
  25570. extra: 426 / 396,
  25571. bottom: 31.5 / 458
  25572. }
  25573. },
  25574. maw: {
  25575. height: math.unit(6, "feet"),
  25576. name: "Maw",
  25577. image: {
  25578. source: "./media/characters/vexx/maw.svg"
  25579. }
  25580. },
  25581. },
  25582. [
  25583. {
  25584. name: "Normal",
  25585. height: math.unit(18 + 5 / 12, "feet"),
  25586. default: true
  25587. },
  25588. ]
  25589. ))
  25590. characterMakers.push(() => makeCharacter(
  25591. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25592. {
  25593. front: {
  25594. height: math.unit(17 + 6 / 12, "feet"),
  25595. weight: math.unit(150, "lb"),
  25596. name: "Front",
  25597. image: {
  25598. source: "./media/characters/baadra/front.svg",
  25599. extra: 3137 / 2890,
  25600. bottom: 168.4 / 3305
  25601. }
  25602. },
  25603. back: {
  25604. height: math.unit(17 + 6 / 12, "feet"),
  25605. weight: math.unit(150, "lb"),
  25606. name: "Back",
  25607. image: {
  25608. source: "./media/characters/baadra/back.svg",
  25609. extra: 3142 / 2890,
  25610. bottom: 220 / 3371
  25611. }
  25612. },
  25613. head: {
  25614. height: math.unit(5.45, "feet"),
  25615. name: "Head",
  25616. image: {
  25617. source: "./media/characters/baadra/head.svg"
  25618. }
  25619. },
  25620. headAngry: {
  25621. height: math.unit(4.95, "feet"),
  25622. name: "Head (Angry)",
  25623. image: {
  25624. source: "./media/characters/baadra/head-angry.svg"
  25625. }
  25626. },
  25627. headOpen: {
  25628. height: math.unit(6, "feet"),
  25629. name: "Head (Open)",
  25630. image: {
  25631. source: "./media/characters/baadra/head-open.svg"
  25632. }
  25633. },
  25634. },
  25635. [
  25636. {
  25637. name: "Normal",
  25638. height: math.unit(17 + 6 / 12, "feet"),
  25639. default: true
  25640. },
  25641. ]
  25642. ))
  25643. characterMakers.push(() => makeCharacter(
  25644. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25645. {
  25646. front: {
  25647. height: math.unit(7 + 3 / 12, "feet"),
  25648. weight: math.unit(180, "lb"),
  25649. name: "Front",
  25650. image: {
  25651. source: "./media/characters/juri/front.svg",
  25652. extra: 1401 / 1237,
  25653. bottom: 18.5 / 1418
  25654. }
  25655. },
  25656. side: {
  25657. height: math.unit(7 + 3 / 12, "feet"),
  25658. weight: math.unit(180, "lb"),
  25659. name: "Side",
  25660. image: {
  25661. source: "./media/characters/juri/side.svg",
  25662. extra: 1424 / 1242,
  25663. bottom: 18.5 / 1447
  25664. }
  25665. },
  25666. sitting: {
  25667. height: math.unit(6, "feet"),
  25668. weight: math.unit(180, "lb"),
  25669. name: "Sitting",
  25670. image: {
  25671. source: "./media/characters/juri/sitting.svg",
  25672. extra: 1270 / 1143,
  25673. bottom: 100 / 1343
  25674. }
  25675. },
  25676. back: {
  25677. height: math.unit(7 + 3 / 12, "feet"),
  25678. weight: math.unit(180, "lb"),
  25679. name: "Back",
  25680. image: {
  25681. source: "./media/characters/juri/back.svg",
  25682. extra: 1377 / 1240,
  25683. bottom: 23.7 / 1405
  25684. }
  25685. },
  25686. maw: {
  25687. height: math.unit(2.8, "feet"),
  25688. name: "Maw",
  25689. image: {
  25690. source: "./media/characters/juri/maw.svg"
  25691. }
  25692. },
  25693. stomach: {
  25694. height: math.unit(0.89, "feet"),
  25695. capacity: math.unit(4, "liters"),
  25696. name: "Stomach",
  25697. image: {
  25698. source: "./media/characters/juri/stomach.svg"
  25699. }
  25700. },
  25701. },
  25702. [
  25703. {
  25704. name: "Normal",
  25705. height: math.unit(7 + 3 / 12, "feet"),
  25706. default: true
  25707. },
  25708. ]
  25709. ))
  25710. characterMakers.push(() => makeCharacter(
  25711. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25712. {
  25713. fox: {
  25714. height: math.unit(5 + 6 / 12, "feet"),
  25715. weight: math.unit(140, "lb"),
  25716. name: "Fox",
  25717. image: {
  25718. source: "./media/characters/maxene-sita/fox.svg",
  25719. extra: 146 / 138,
  25720. bottom: 2.1 / 148.19
  25721. }
  25722. },
  25723. foxLaying: {
  25724. height: math.unit(1.70, "feet"),
  25725. weight: math.unit(140, "lb"),
  25726. name: "Fox (Laying)",
  25727. image: {
  25728. source: "./media/characters/maxene-sita/fox-laying.svg",
  25729. extra: 910 / 572,
  25730. bottom: 71 / 981
  25731. }
  25732. },
  25733. kitsune: {
  25734. height: math.unit(10, "feet"),
  25735. weight: math.unit(800, "lb"),
  25736. name: "Kitsune",
  25737. image: {
  25738. source: "./media/characters/maxene-sita/kitsune.svg",
  25739. extra: 185 / 176,
  25740. bottom: 4.7 / 189.9
  25741. }
  25742. },
  25743. hellhound: {
  25744. height: math.unit(10, "feet"),
  25745. weight: math.unit(700, "lb"),
  25746. name: "Hellhound",
  25747. image: {
  25748. source: "./media/characters/maxene-sita/hellhound.svg",
  25749. extra: 1600 / 1545,
  25750. bottom: 81 / 1681
  25751. }
  25752. },
  25753. },
  25754. [
  25755. {
  25756. name: "Normal",
  25757. height: math.unit(5 + 6 / 12, "feet"),
  25758. default: true
  25759. },
  25760. ]
  25761. ))
  25762. characterMakers.push(() => makeCharacter(
  25763. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25764. {
  25765. front: {
  25766. height: math.unit(3 + 4 / 12, "feet"),
  25767. weight: math.unit(70, "lb"),
  25768. name: "Front",
  25769. image: {
  25770. source: "./media/characters/maia/front.svg",
  25771. extra: 227 / 219.5,
  25772. bottom: 40 / 267
  25773. }
  25774. },
  25775. back: {
  25776. height: math.unit(3 + 4 / 12, "feet"),
  25777. weight: math.unit(70, "lb"),
  25778. name: "Back",
  25779. image: {
  25780. source: "./media/characters/maia/back.svg",
  25781. extra: 237 / 225
  25782. }
  25783. },
  25784. },
  25785. [
  25786. {
  25787. name: "Normal",
  25788. height: math.unit(3 + 4 / 12, "feet"),
  25789. default: true
  25790. },
  25791. ]
  25792. ))
  25793. characterMakers.push(() => makeCharacter(
  25794. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25795. {
  25796. front: {
  25797. height: math.unit(5 + 10 / 12, "feet"),
  25798. weight: math.unit(197, "lb"),
  25799. name: "Front",
  25800. image: {
  25801. source: "./media/characters/jabaro/front.svg",
  25802. extra: 225 / 216,
  25803. bottom: 5.06 / 230
  25804. }
  25805. },
  25806. back: {
  25807. height: math.unit(5 + 10 / 12, "feet"),
  25808. weight: math.unit(197, "lb"),
  25809. name: "Back",
  25810. image: {
  25811. source: "./media/characters/jabaro/back.svg",
  25812. extra: 225 / 219,
  25813. bottom: 1.9 / 227
  25814. }
  25815. },
  25816. },
  25817. [
  25818. {
  25819. name: "Normal",
  25820. height: math.unit(5 + 10 / 12, "feet"),
  25821. default: true
  25822. },
  25823. ]
  25824. ))
  25825. characterMakers.push(() => makeCharacter(
  25826. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25827. {
  25828. front: {
  25829. height: math.unit(5 + 8 / 12, "feet"),
  25830. weight: math.unit(139, "lb"),
  25831. name: "Front",
  25832. image: {
  25833. source: "./media/characters/risa/front.svg",
  25834. extra: 270 / 260,
  25835. bottom: 11.2 / 282
  25836. }
  25837. },
  25838. back: {
  25839. height: math.unit(5 + 8 / 12, "feet"),
  25840. weight: math.unit(139, "lb"),
  25841. name: "Back",
  25842. image: {
  25843. source: "./media/characters/risa/back.svg",
  25844. extra: 264 / 255,
  25845. bottom: 4 / 268
  25846. }
  25847. },
  25848. },
  25849. [
  25850. {
  25851. name: "Normal",
  25852. height: math.unit(5 + 8 / 12, "feet"),
  25853. default: true
  25854. },
  25855. ]
  25856. ))
  25857. characterMakers.push(() => makeCharacter(
  25858. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25859. {
  25860. front: {
  25861. height: math.unit(2 + 11 / 12, "feet"),
  25862. weight: math.unit(30, "lb"),
  25863. name: "Front",
  25864. image: {
  25865. source: "./media/characters/weatley/front.svg",
  25866. bottom: 10.7 / 414,
  25867. extra: 403.5 / 362
  25868. }
  25869. },
  25870. back: {
  25871. height: math.unit(2 + 11 / 12, "feet"),
  25872. weight: math.unit(30, "lb"),
  25873. name: "Back",
  25874. image: {
  25875. source: "./media/characters/weatley/back.svg",
  25876. bottom: 10.7 / 414,
  25877. extra: 403.5 / 362
  25878. }
  25879. },
  25880. },
  25881. [
  25882. {
  25883. name: "Normal",
  25884. height: math.unit(2 + 11 / 12, "feet"),
  25885. default: true
  25886. },
  25887. ]
  25888. ))
  25889. characterMakers.push(() => makeCharacter(
  25890. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25891. {
  25892. front: {
  25893. height: math.unit(5 + 2 / 12, "feet"),
  25894. weight: math.unit(50, "kg"),
  25895. name: "Front",
  25896. image: {
  25897. source: "./media/characters/mercury-crescent/front.svg",
  25898. extra: 1088 / 1033,
  25899. bottom: 18.9 / 1109
  25900. }
  25901. },
  25902. },
  25903. [
  25904. {
  25905. name: "Normal",
  25906. height: math.unit(5 + 2 / 12, "feet"),
  25907. default: true
  25908. },
  25909. ]
  25910. ))
  25911. characterMakers.push(() => makeCharacter(
  25912. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25913. {
  25914. front: {
  25915. height: math.unit(2, "feet"),
  25916. weight: math.unit(15, "kg"),
  25917. name: "Front",
  25918. image: {
  25919. source: "./media/characters/diamond-jones/front.svg",
  25920. extra: 727/723,
  25921. bottom: 46/773
  25922. }
  25923. },
  25924. },
  25925. [
  25926. {
  25927. name: "Normal",
  25928. height: math.unit(2, "feet"),
  25929. default: true
  25930. },
  25931. ]
  25932. ))
  25933. characterMakers.push(() => makeCharacter(
  25934. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25935. {
  25936. front: {
  25937. height: math.unit(3, "feet"),
  25938. weight: math.unit(30, "kg"),
  25939. name: "Front",
  25940. image: {
  25941. source: "./media/characters/sweet-bit/front.svg",
  25942. extra: 675 / 567,
  25943. bottom: 27.7 / 703
  25944. }
  25945. },
  25946. },
  25947. [
  25948. {
  25949. name: "Normal",
  25950. height: math.unit(3, "feet"),
  25951. default: true
  25952. },
  25953. ]
  25954. ))
  25955. characterMakers.push(() => makeCharacter(
  25956. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25957. {
  25958. side: {
  25959. height: math.unit(9.178, "feet"),
  25960. weight: math.unit(500, "lb"),
  25961. name: "Side",
  25962. image: {
  25963. source: "./media/characters/umbrazen/side.svg",
  25964. extra: 1730 / 1473,
  25965. bottom: 34.6 / 1765
  25966. }
  25967. },
  25968. },
  25969. [
  25970. {
  25971. name: "Normal",
  25972. height: math.unit(9.178, "feet"),
  25973. default: true
  25974. },
  25975. ]
  25976. ))
  25977. characterMakers.push(() => makeCharacter(
  25978. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25979. {
  25980. front: {
  25981. height: math.unit(10, "feet"),
  25982. weight: math.unit(750, "lb"),
  25983. name: "Front",
  25984. image: {
  25985. source: "./media/characters/arlist/front.svg",
  25986. extra: 961 / 778,
  25987. bottom: 6.2 / 986
  25988. }
  25989. },
  25990. },
  25991. [
  25992. {
  25993. name: "Normal",
  25994. height: math.unit(10, "feet"),
  25995. default: true
  25996. },
  25997. ]
  25998. ))
  25999. characterMakers.push(() => makeCharacter(
  26000. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26001. {
  26002. front: {
  26003. height: math.unit(5 + 1 / 12, "feet"),
  26004. weight: math.unit(110, "lb"),
  26005. name: "Front",
  26006. image: {
  26007. source: "./media/characters/aradel/front.svg",
  26008. extra: 324 / 303,
  26009. bottom: 3.6 / 329.4
  26010. }
  26011. },
  26012. },
  26013. [
  26014. {
  26015. name: "Normal",
  26016. height: math.unit(5 + 1 / 12, "feet"),
  26017. default: true
  26018. },
  26019. ]
  26020. ))
  26021. characterMakers.push(() => makeCharacter(
  26022. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26023. {
  26024. front: {
  26025. height: math.unit(3 + 8 / 12, "feet"),
  26026. weight: math.unit(50, "lb"),
  26027. name: "Front",
  26028. image: {
  26029. source: "./media/characters/serryn/front.svg",
  26030. extra: 1792 / 1656,
  26031. bottom: 43.5 / 1840
  26032. }
  26033. },
  26034. },
  26035. [
  26036. {
  26037. name: "Normal",
  26038. height: math.unit(3 + 8 / 12, "feet"),
  26039. default: true
  26040. },
  26041. ]
  26042. ))
  26043. characterMakers.push(() => makeCharacter(
  26044. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26045. {
  26046. front: {
  26047. height: math.unit(7 + 10 / 12, "feet"),
  26048. weight: math.unit(255, "lb"),
  26049. name: "Front",
  26050. image: {
  26051. source: "./media/characters/xavier-thyme/front.svg",
  26052. extra: 3733 / 3642,
  26053. bottom: 131 / 3869
  26054. }
  26055. },
  26056. frontRaven: {
  26057. height: math.unit(7 + 10 / 12, "feet"),
  26058. weight: math.unit(255, "lb"),
  26059. name: "Front (Raven)",
  26060. image: {
  26061. source: "./media/characters/xavier-thyme/front-raven.svg",
  26062. extra: 4385 / 3642,
  26063. bottom: 131 / 4517
  26064. }
  26065. },
  26066. },
  26067. [
  26068. {
  26069. name: "Normal",
  26070. height: math.unit(7 + 10 / 12, "feet"),
  26071. default: true
  26072. },
  26073. ]
  26074. ))
  26075. characterMakers.push(() => makeCharacter(
  26076. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26077. {
  26078. front: {
  26079. height: math.unit(1.6, "m"),
  26080. weight: math.unit(50, "kg"),
  26081. name: "Front",
  26082. image: {
  26083. source: "./media/characters/kiki/front.svg",
  26084. extra: 4682 / 3610,
  26085. bottom: 115 / 4777
  26086. }
  26087. },
  26088. },
  26089. [
  26090. {
  26091. name: "Normal",
  26092. height: math.unit(1.6, "meters"),
  26093. default: true
  26094. },
  26095. ]
  26096. ))
  26097. characterMakers.push(() => makeCharacter(
  26098. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26099. {
  26100. front: {
  26101. height: math.unit(50, "m"),
  26102. weight: math.unit(500, "tonnes"),
  26103. name: "Front",
  26104. image: {
  26105. source: "./media/characters/ryoko/front.svg",
  26106. extra: 4632 / 3926,
  26107. bottom: 193 / 4823
  26108. }
  26109. },
  26110. },
  26111. [
  26112. {
  26113. name: "Normal",
  26114. height: math.unit(50, "meters"),
  26115. default: true
  26116. },
  26117. ]
  26118. ))
  26119. characterMakers.push(() => makeCharacter(
  26120. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26121. {
  26122. front: {
  26123. height: math.unit(30, "m"),
  26124. weight: math.unit(22, "tonnes"),
  26125. name: "Front",
  26126. image: {
  26127. source: "./media/characters/elio/front.svg",
  26128. extra: 4582 / 3720,
  26129. bottom: 236 / 4828
  26130. }
  26131. },
  26132. },
  26133. [
  26134. {
  26135. name: "Normal",
  26136. height: math.unit(30, "meters"),
  26137. default: true
  26138. },
  26139. ]
  26140. ))
  26141. characterMakers.push(() => makeCharacter(
  26142. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26143. {
  26144. front: {
  26145. height: math.unit(6 + 3 / 12, "feet"),
  26146. weight: math.unit(120, "lb"),
  26147. name: "Front",
  26148. image: {
  26149. source: "./media/characters/azura/front.svg",
  26150. extra: 1149 / 1135,
  26151. bottom: 45 / 1194
  26152. }
  26153. },
  26154. frontClothed: {
  26155. height: math.unit(6 + 3 / 12, "feet"),
  26156. weight: math.unit(120, "lb"),
  26157. name: "Front (Clothed)",
  26158. image: {
  26159. source: "./media/characters/azura/front-clothed.svg",
  26160. extra: 1149 / 1135,
  26161. bottom: 45 / 1194
  26162. }
  26163. },
  26164. },
  26165. [
  26166. {
  26167. name: "Normal",
  26168. height: math.unit(6 + 3 / 12, "feet"),
  26169. default: true
  26170. },
  26171. {
  26172. name: "Macro",
  26173. height: math.unit(20 + 6 / 12, "feet")
  26174. },
  26175. {
  26176. name: "Megamacro",
  26177. height: math.unit(12, "miles")
  26178. },
  26179. {
  26180. name: "Gigamacro",
  26181. height: math.unit(10000, "miles")
  26182. },
  26183. {
  26184. name: "Teramacro",
  26185. height: math.unit(900000, "miles")
  26186. },
  26187. ]
  26188. ))
  26189. characterMakers.push(() => makeCharacter(
  26190. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26191. {
  26192. front: {
  26193. height: math.unit(12, "feet"),
  26194. weight: math.unit(1, "ton"),
  26195. capacity: math.unit(660000, "gallons"),
  26196. name: "Front",
  26197. image: {
  26198. source: "./media/characters/zeus/front.svg",
  26199. extra: 5005 / 4717,
  26200. bottom: 363 / 5388
  26201. }
  26202. },
  26203. },
  26204. [
  26205. {
  26206. name: "Normal",
  26207. height: math.unit(12, "feet")
  26208. },
  26209. {
  26210. name: "Preferred Size",
  26211. height: math.unit(0.5, "miles"),
  26212. default: true
  26213. },
  26214. {
  26215. name: "Giga Horse",
  26216. height: math.unit(300, "miles")
  26217. },
  26218. {
  26219. name: "Riding Planets",
  26220. height: math.unit(30, "megameters")
  26221. },
  26222. {
  26223. name: "Cosmic Giant",
  26224. height: math.unit(3, "zettameters")
  26225. },
  26226. {
  26227. name: "Breeding God",
  26228. height: math.unit(9.92e22, "yottameters")
  26229. },
  26230. ]
  26231. ))
  26232. characterMakers.push(() => makeCharacter(
  26233. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26234. {
  26235. side: {
  26236. height: math.unit(9, "feet"),
  26237. weight: math.unit(1500, "kg"),
  26238. name: "Side",
  26239. image: {
  26240. source: "./media/characters/fang/side.svg",
  26241. extra: 924 / 866,
  26242. bottom: 47.5 / 972.3
  26243. }
  26244. },
  26245. },
  26246. [
  26247. {
  26248. name: "Normal",
  26249. height: math.unit(9, "feet"),
  26250. default: true
  26251. },
  26252. {
  26253. name: "Macro",
  26254. height: math.unit(75 + 6 / 12, "feet")
  26255. },
  26256. {
  26257. name: "Teramacro",
  26258. height: math.unit(50000, "miles")
  26259. },
  26260. ]
  26261. ))
  26262. characterMakers.push(() => makeCharacter(
  26263. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26264. {
  26265. front: {
  26266. height: math.unit(10, "feet"),
  26267. weight: math.unit(2, "tons"),
  26268. name: "Front",
  26269. image: {
  26270. source: "./media/characters/rekhit/front.svg",
  26271. extra: 2796 / 2590,
  26272. bottom: 225 / 3022
  26273. }
  26274. },
  26275. },
  26276. [
  26277. {
  26278. name: "Normal",
  26279. height: math.unit(10, "feet"),
  26280. default: true
  26281. },
  26282. {
  26283. name: "Macro",
  26284. height: math.unit(500, "feet")
  26285. },
  26286. ]
  26287. ))
  26288. characterMakers.push(() => makeCharacter(
  26289. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26290. {
  26291. front: {
  26292. height: math.unit(7 + 6.451 / 12, "feet"),
  26293. weight: math.unit(310, "lb"),
  26294. name: "Front",
  26295. image: {
  26296. source: "./media/characters/dahlia-verrick/front.svg",
  26297. extra: 1488 / 1365,
  26298. bottom: 6.2 / 1495
  26299. }
  26300. },
  26301. back: {
  26302. height: math.unit(7 + 6.451 / 12, "feet"),
  26303. weight: math.unit(310, "lb"),
  26304. name: "Back",
  26305. image: {
  26306. source: "./media/characters/dahlia-verrick/back.svg",
  26307. extra: 1472 / 1351,
  26308. bottom: 5.28 / 1477
  26309. }
  26310. },
  26311. frontBusiness: {
  26312. height: math.unit(7 + 6.451 / 12, "feet"),
  26313. weight: math.unit(200, "lb"),
  26314. name: "Front (Business)",
  26315. image: {
  26316. source: "./media/characters/dahlia-verrick/front-business.svg",
  26317. extra: 1478 / 1381,
  26318. bottom: 5.5 / 1484
  26319. }
  26320. },
  26321. frontCasual: {
  26322. height: math.unit(7 + 6.451 / 12, "feet"),
  26323. weight: math.unit(200, "lb"),
  26324. name: "Front (Casual)",
  26325. image: {
  26326. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26327. extra: 1478 / 1381,
  26328. bottom: 5.5 / 1484
  26329. }
  26330. },
  26331. },
  26332. [
  26333. {
  26334. name: "Travel-Sized",
  26335. height: math.unit(7.45, "inches")
  26336. },
  26337. {
  26338. name: "Normal",
  26339. height: math.unit(7 + 6.451 / 12, "feet"),
  26340. default: true
  26341. },
  26342. {
  26343. name: "Hitting the Town",
  26344. height: math.unit(37 + 8 / 12, "feet")
  26345. },
  26346. {
  26347. name: "Stomp in the Suburbs",
  26348. height: math.unit(964 + 9.728 / 12, "feet")
  26349. },
  26350. {
  26351. name: "Sit on the City",
  26352. height: math.unit(61747 + 10.592 / 12, "feet")
  26353. },
  26354. {
  26355. name: "Glomp the Globe",
  26356. height: math.unit(252919327 + 4.832 / 12, "feet")
  26357. },
  26358. ]
  26359. ))
  26360. characterMakers.push(() => makeCharacter(
  26361. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26362. {
  26363. front: {
  26364. height: math.unit(6 + 4 / 12, "feet"),
  26365. weight: math.unit(320, "lb"),
  26366. name: "Front",
  26367. image: {
  26368. source: "./media/characters/balina-mahigan/front.svg",
  26369. extra: 447 / 428,
  26370. bottom: 18 / 466
  26371. }
  26372. },
  26373. back: {
  26374. height: math.unit(6 + 4 / 12, "feet"),
  26375. weight: math.unit(320, "lb"),
  26376. name: "Back",
  26377. image: {
  26378. source: "./media/characters/balina-mahigan/back.svg",
  26379. extra: 445 / 428,
  26380. bottom: 4.07 / 448
  26381. }
  26382. },
  26383. arm: {
  26384. height: math.unit(1.88, "feet"),
  26385. name: "Arm",
  26386. image: {
  26387. source: "./media/characters/balina-mahigan/arm.svg"
  26388. }
  26389. },
  26390. backPort: {
  26391. height: math.unit(0.685, "feet"),
  26392. name: "Back Port",
  26393. image: {
  26394. source: "./media/characters/balina-mahigan/back-port.svg"
  26395. }
  26396. },
  26397. hoofpaw: {
  26398. height: math.unit(1.41, "feet"),
  26399. name: "Hoofpaw",
  26400. image: {
  26401. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26402. }
  26403. },
  26404. leftHandBack: {
  26405. height: math.unit(0.938, "feet"),
  26406. name: "Left Hand (Back)",
  26407. image: {
  26408. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26409. }
  26410. },
  26411. leftHandFront: {
  26412. height: math.unit(0.938, "feet"),
  26413. name: "Left Hand (Front)",
  26414. image: {
  26415. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26416. }
  26417. },
  26418. rightHandBack: {
  26419. height: math.unit(0.95, "feet"),
  26420. name: "Right Hand (Back)",
  26421. image: {
  26422. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26423. }
  26424. },
  26425. rightHandFront: {
  26426. height: math.unit(0.95, "feet"),
  26427. name: "Right Hand (Front)",
  26428. image: {
  26429. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26430. }
  26431. },
  26432. },
  26433. [
  26434. {
  26435. name: "Normal",
  26436. height: math.unit(6 + 4 / 12, "feet"),
  26437. default: true
  26438. },
  26439. ]
  26440. ))
  26441. characterMakers.push(() => makeCharacter(
  26442. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26443. {
  26444. front: {
  26445. height: math.unit(6, "feet"),
  26446. weight: math.unit(320, "lb"),
  26447. name: "Front",
  26448. image: {
  26449. source: "./media/characters/balina-mejeri/front.svg",
  26450. extra: 517 / 488,
  26451. bottom: 44.2 / 561
  26452. }
  26453. },
  26454. },
  26455. [
  26456. {
  26457. name: "Normal",
  26458. height: math.unit(6 + 4 / 12, "feet")
  26459. },
  26460. {
  26461. name: "Business",
  26462. height: math.unit(155, "feet"),
  26463. default: true
  26464. },
  26465. ]
  26466. ))
  26467. characterMakers.push(() => makeCharacter(
  26468. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26469. {
  26470. kneeling: {
  26471. height: math.unit(6 + 4 / 12, "feet"),
  26472. weight: math.unit(300 * 20, "lb"),
  26473. name: "Kneeling",
  26474. image: {
  26475. source: "./media/characters/balbarian/kneeling.svg",
  26476. extra: 922 / 862,
  26477. bottom: 42.4 / 965
  26478. }
  26479. },
  26480. },
  26481. [
  26482. {
  26483. name: "Normal",
  26484. height: math.unit(6 + 4 / 12, "feet")
  26485. },
  26486. {
  26487. name: "Treasured",
  26488. height: math.unit(18 + 9 / 12, "feet"),
  26489. default: true
  26490. },
  26491. {
  26492. name: "Macro",
  26493. height: math.unit(900, "feet")
  26494. },
  26495. ]
  26496. ))
  26497. characterMakers.push(() => makeCharacter(
  26498. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26499. {
  26500. front: {
  26501. height: math.unit(6 + 4 / 12, "feet"),
  26502. weight: math.unit(325, "lb"),
  26503. name: "Front",
  26504. image: {
  26505. source: "./media/characters/balina-amarini/front.svg",
  26506. extra: 415 / 403,
  26507. bottom: 19 / 433.4
  26508. }
  26509. },
  26510. back: {
  26511. height: math.unit(6 + 4 / 12, "feet"),
  26512. weight: math.unit(325, "lb"),
  26513. name: "Back",
  26514. image: {
  26515. source: "./media/characters/balina-amarini/back.svg",
  26516. extra: 415 / 403,
  26517. bottom: 13.5 / 432
  26518. }
  26519. },
  26520. overdrive: {
  26521. height: math.unit(6 + 4 / 12, "feet"),
  26522. weight: math.unit(400, "lb"),
  26523. name: "Overdrive",
  26524. image: {
  26525. source: "./media/characters/balina-amarini/overdrive.svg",
  26526. extra: 269 / 259,
  26527. bottom: 12 / 282
  26528. }
  26529. },
  26530. },
  26531. [
  26532. {
  26533. name: "Boom",
  26534. height: math.unit(9 + 10 / 12, "feet"),
  26535. default: true
  26536. },
  26537. {
  26538. name: "Macro",
  26539. height: math.unit(280, "feet")
  26540. },
  26541. ]
  26542. ))
  26543. characterMakers.push(() => makeCharacter(
  26544. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26545. {
  26546. goddess: {
  26547. height: math.unit(600, "feet"),
  26548. weight: math.unit(2000000, "tons"),
  26549. name: "Goddess",
  26550. image: {
  26551. source: "./media/characters/lady-kubwa/goddess.svg",
  26552. extra: 1240.5 / 1223,
  26553. bottom: 22 / 1263
  26554. }
  26555. },
  26556. goddesser: {
  26557. height: math.unit(900, "feet"),
  26558. weight: math.unit(20000000, "lb"),
  26559. name: "Goddess-er",
  26560. image: {
  26561. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26562. extra: 899 / 888,
  26563. bottom: 12.6 / 912
  26564. }
  26565. },
  26566. },
  26567. [
  26568. {
  26569. name: "Macro",
  26570. height: math.unit(600, "feet"),
  26571. default: true
  26572. },
  26573. {
  26574. name: "Megamacro",
  26575. height: math.unit(250, "miles")
  26576. },
  26577. ]
  26578. ))
  26579. characterMakers.push(() => makeCharacter(
  26580. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26581. {
  26582. front: {
  26583. height: math.unit(7 + 7 / 12, "feet"),
  26584. weight: math.unit(250, "lb"),
  26585. name: "Front",
  26586. image: {
  26587. source: "./media/characters/tala-grovehorn/front.svg",
  26588. extra: 2636 / 2525,
  26589. bottom: 147 / 2781
  26590. }
  26591. },
  26592. back: {
  26593. height: math.unit(7 + 7 / 12, "feet"),
  26594. weight: math.unit(250, "lb"),
  26595. name: "Back",
  26596. image: {
  26597. source: "./media/characters/tala-grovehorn/back.svg",
  26598. extra: 2635 / 2539,
  26599. bottom: 100 / 2732.8
  26600. }
  26601. },
  26602. mouth: {
  26603. height: math.unit(1.15, "feet"),
  26604. name: "Mouth",
  26605. image: {
  26606. source: "./media/characters/tala-grovehorn/mouth.svg"
  26607. }
  26608. },
  26609. dick: {
  26610. height: math.unit(2.36, "feet"),
  26611. name: "Dick",
  26612. image: {
  26613. source: "./media/characters/tala-grovehorn/dick.svg"
  26614. }
  26615. },
  26616. slit: {
  26617. height: math.unit(0.61, "feet"),
  26618. name: "Slit",
  26619. image: {
  26620. source: "./media/characters/tala-grovehorn/slit.svg"
  26621. }
  26622. },
  26623. },
  26624. [
  26625. ]
  26626. ))
  26627. characterMakers.push(() => makeCharacter(
  26628. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26629. {
  26630. front: {
  26631. height: math.unit(7 + 7 / 12, "feet"),
  26632. weight: math.unit(225, "lb"),
  26633. name: "Front",
  26634. image: {
  26635. source: "./media/characters/epona/front.svg",
  26636. extra: 2445 / 2290,
  26637. bottom: 251 / 2696
  26638. }
  26639. },
  26640. back: {
  26641. height: math.unit(7 + 7 / 12, "feet"),
  26642. weight: math.unit(225, "lb"),
  26643. name: "Back",
  26644. image: {
  26645. source: "./media/characters/epona/back.svg",
  26646. extra: 2546 / 2408,
  26647. bottom: 44 / 2589
  26648. }
  26649. },
  26650. genitals: {
  26651. height: math.unit(1.5, "feet"),
  26652. name: "Genitals",
  26653. image: {
  26654. source: "./media/characters/epona/genitals.svg"
  26655. }
  26656. },
  26657. },
  26658. [
  26659. {
  26660. name: "Normal",
  26661. height: math.unit(7 + 7 / 12, "feet"),
  26662. default: true
  26663. },
  26664. ]
  26665. ))
  26666. characterMakers.push(() => makeCharacter(
  26667. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26668. {
  26669. front: {
  26670. height: math.unit(7, "feet"),
  26671. weight: math.unit(518, "lb"),
  26672. name: "Front",
  26673. image: {
  26674. source: "./media/characters/avia-bloodbourn/front.svg",
  26675. extra: 1466 / 1350,
  26676. bottom: 65 / 1527
  26677. }
  26678. },
  26679. },
  26680. [
  26681. ]
  26682. ))
  26683. characterMakers.push(() => makeCharacter(
  26684. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26685. {
  26686. front: {
  26687. height: math.unit(9.35, "feet"),
  26688. weight: math.unit(600, "lb"),
  26689. name: "Front",
  26690. image: {
  26691. source: "./media/characters/amera/front.svg",
  26692. extra: 891 / 818,
  26693. bottom: 30 / 922.7
  26694. }
  26695. },
  26696. back: {
  26697. height: math.unit(9.35, "feet"),
  26698. weight: math.unit(600, "lb"),
  26699. name: "Back",
  26700. image: {
  26701. source: "./media/characters/amera/back.svg",
  26702. extra: 876 / 824,
  26703. bottom: 6.8 / 884
  26704. }
  26705. },
  26706. dick: {
  26707. height: math.unit(2.14, "feet"),
  26708. name: "Dick",
  26709. image: {
  26710. source: "./media/characters/amera/dick.svg"
  26711. }
  26712. },
  26713. },
  26714. [
  26715. {
  26716. name: "Normal",
  26717. height: math.unit(9.35, "feet"),
  26718. default: true
  26719. },
  26720. ]
  26721. ))
  26722. characterMakers.push(() => makeCharacter(
  26723. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26724. {
  26725. kneeling: {
  26726. height: math.unit(3 + 4 / 12, "feet"),
  26727. weight: math.unit(90, "lb"),
  26728. name: "Kneeling",
  26729. image: {
  26730. source: "./media/characters/rosewen/kneeling.svg",
  26731. extra: 1835 / 1571,
  26732. bottom: 27.7 / 1862
  26733. }
  26734. },
  26735. },
  26736. [
  26737. {
  26738. name: "Normal",
  26739. height: math.unit(3 + 4 / 12, "feet"),
  26740. default: true
  26741. },
  26742. ]
  26743. ))
  26744. characterMakers.push(() => makeCharacter(
  26745. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26746. {
  26747. front: {
  26748. height: math.unit(5 + 10 / 12, "feet"),
  26749. weight: math.unit(200, "lb"),
  26750. name: "Front",
  26751. image: {
  26752. source: "./media/characters/sabah/front.svg",
  26753. extra: 849 / 763,
  26754. bottom: 33.9 / 881
  26755. }
  26756. },
  26757. },
  26758. [
  26759. {
  26760. name: "Normal",
  26761. height: math.unit(5 + 10 / 12, "feet"),
  26762. default: true
  26763. },
  26764. ]
  26765. ))
  26766. characterMakers.push(() => makeCharacter(
  26767. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26768. {
  26769. front: {
  26770. height: math.unit(3 + 5 / 12, "feet"),
  26771. weight: math.unit(40, "kg"),
  26772. name: "Front",
  26773. image: {
  26774. source: "./media/characters/purple-flame/front.svg",
  26775. extra: 1577 / 1412,
  26776. bottom: 97 / 1694
  26777. }
  26778. },
  26779. frontDressed: {
  26780. height: math.unit(3 + 5 / 12, "feet"),
  26781. weight: math.unit(40, "kg"),
  26782. name: "Front (Dressed)",
  26783. image: {
  26784. source: "./media/characters/purple-flame/front-dressed.svg",
  26785. extra: 1577 / 1412,
  26786. bottom: 97 / 1694
  26787. }
  26788. },
  26789. headphones: {
  26790. height: math.unit(0.85, "feet"),
  26791. name: "Headphones",
  26792. image: {
  26793. source: "./media/characters/purple-flame/headphones.svg"
  26794. }
  26795. },
  26796. },
  26797. [
  26798. {
  26799. name: "Really Small",
  26800. height: math.unit(5, "cm")
  26801. },
  26802. {
  26803. name: "Micro",
  26804. height: math.unit(1 + 5 / 12, "feet")
  26805. },
  26806. {
  26807. name: "Normal",
  26808. height: math.unit(3 + 5 / 12, "feet"),
  26809. default: true
  26810. },
  26811. {
  26812. name: "Minimacro",
  26813. height: math.unit(125, "feet")
  26814. },
  26815. {
  26816. name: "Macro",
  26817. height: math.unit(0.5, "miles")
  26818. },
  26819. {
  26820. name: "Megamacro",
  26821. height: math.unit(50, "miles")
  26822. },
  26823. {
  26824. name: "Gigantic",
  26825. height: math.unit(750, "miles")
  26826. },
  26827. {
  26828. name: "Planetary",
  26829. height: math.unit(15000, "miles")
  26830. },
  26831. ]
  26832. ))
  26833. characterMakers.push(() => makeCharacter(
  26834. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26835. {
  26836. front: {
  26837. height: math.unit(14, "feet"),
  26838. weight: math.unit(959, "lb"),
  26839. name: "Front",
  26840. image: {
  26841. source: "./media/characters/arsenal/front.svg",
  26842. extra: 2357 / 2157,
  26843. bottom: 93 / 2458
  26844. }
  26845. },
  26846. },
  26847. [
  26848. {
  26849. name: "Normal",
  26850. height: math.unit(14, "feet"),
  26851. default: true
  26852. },
  26853. ]
  26854. ))
  26855. characterMakers.push(() => makeCharacter(
  26856. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26857. {
  26858. front: {
  26859. height: math.unit(6, "feet"),
  26860. weight: math.unit(150, "lb"),
  26861. name: "Front",
  26862. image: {
  26863. source: "./media/characters/adira/front.svg",
  26864. extra: 1078 / 1029,
  26865. bottom: 87 / 1166
  26866. }
  26867. },
  26868. },
  26869. [
  26870. {
  26871. name: "Micro",
  26872. height: math.unit(4, "inches"),
  26873. default: true
  26874. },
  26875. {
  26876. name: "Macro",
  26877. height: math.unit(50, "feet")
  26878. },
  26879. ]
  26880. ))
  26881. characterMakers.push(() => makeCharacter(
  26882. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26883. {
  26884. front: {
  26885. height: math.unit(16, "feet"),
  26886. weight: math.unit(1000, "lb"),
  26887. name: "Front",
  26888. image: {
  26889. source: "./media/characters/grim/front.svg",
  26890. extra: 622 / 614,
  26891. bottom: 18.1 / 642
  26892. }
  26893. },
  26894. back: {
  26895. height: math.unit(16, "feet"),
  26896. weight: math.unit(1000, "lb"),
  26897. name: "Back",
  26898. image: {
  26899. source: "./media/characters/grim/back.svg",
  26900. extra: 610.6 / 602,
  26901. bottom: 40.8 / 652
  26902. }
  26903. },
  26904. hunched: {
  26905. height: math.unit(9.75, "feet"),
  26906. weight: math.unit(1000, "lb"),
  26907. name: "Hunched",
  26908. image: {
  26909. source: "./media/characters/grim/hunched.svg",
  26910. extra: 304 / 297,
  26911. bottom: 35.4 / 394
  26912. }
  26913. },
  26914. },
  26915. [
  26916. {
  26917. name: "Normal",
  26918. height: math.unit(16, "feet"),
  26919. default: true
  26920. },
  26921. ]
  26922. ))
  26923. characterMakers.push(() => makeCharacter(
  26924. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26925. {
  26926. front: {
  26927. height: math.unit(2.3, "meters"),
  26928. weight: math.unit(300, "lb"),
  26929. name: "Front",
  26930. image: {
  26931. source: "./media/characters/sinja/front-sfw.svg",
  26932. extra: 1393 / 1294,
  26933. bottom: 70 / 1463
  26934. }
  26935. },
  26936. frontNsfw: {
  26937. height: math.unit(2.3, "meters"),
  26938. weight: math.unit(300, "lb"),
  26939. name: "Front (NSFW)",
  26940. image: {
  26941. source: "./media/characters/sinja/front-nsfw.svg",
  26942. extra: 1393 / 1294,
  26943. bottom: 70 / 1463
  26944. }
  26945. },
  26946. back: {
  26947. height: math.unit(2.3, "meters"),
  26948. weight: math.unit(300, "lb"),
  26949. name: "Back",
  26950. image: {
  26951. source: "./media/characters/sinja/back.svg",
  26952. extra: 1393 / 1294,
  26953. bottom: 70 / 1463
  26954. }
  26955. },
  26956. head: {
  26957. height: math.unit(1.771, "feet"),
  26958. name: "Head",
  26959. image: {
  26960. source: "./media/characters/sinja/head.svg"
  26961. }
  26962. },
  26963. slit: {
  26964. height: math.unit(0.8, "feet"),
  26965. name: "Slit",
  26966. image: {
  26967. source: "./media/characters/sinja/slit.svg"
  26968. }
  26969. },
  26970. },
  26971. [
  26972. {
  26973. name: "Normal",
  26974. height: math.unit(2.3, "meters")
  26975. },
  26976. {
  26977. name: "Macro",
  26978. height: math.unit(91, "meters"),
  26979. default: true
  26980. },
  26981. {
  26982. name: "Megamacro",
  26983. height: math.unit(91440, "meters")
  26984. },
  26985. {
  26986. name: "Gigamacro",
  26987. height: math.unit(60960000, "meters")
  26988. },
  26989. {
  26990. name: "Teramacro",
  26991. height: math.unit(9144000000, "meters")
  26992. },
  26993. ]
  26994. ))
  26995. characterMakers.push(() => makeCharacter(
  26996. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26997. {
  26998. front: {
  26999. height: math.unit(1.7, "meters"),
  27000. weight: math.unit(130, "lb"),
  27001. name: "Front",
  27002. image: {
  27003. source: "./media/characters/kyu/front.svg",
  27004. extra: 415 / 395,
  27005. bottom: 5 / 420
  27006. }
  27007. },
  27008. head: {
  27009. height: math.unit(1.75, "feet"),
  27010. name: "Head",
  27011. image: {
  27012. source: "./media/characters/kyu/head.svg"
  27013. }
  27014. },
  27015. foot: {
  27016. height: math.unit(0.81, "feet"),
  27017. name: "Foot",
  27018. image: {
  27019. source: "./media/characters/kyu/foot.svg"
  27020. }
  27021. },
  27022. },
  27023. [
  27024. {
  27025. name: "Normal",
  27026. height: math.unit(1.7, "meters")
  27027. },
  27028. {
  27029. name: "Macro",
  27030. height: math.unit(131, "feet"),
  27031. default: true
  27032. },
  27033. {
  27034. name: "Megamacro",
  27035. height: math.unit(91440, "meters")
  27036. },
  27037. {
  27038. name: "Gigamacro",
  27039. height: math.unit(60960000, "meters")
  27040. },
  27041. {
  27042. name: "Teramacro",
  27043. height: math.unit(9144000000, "meters")
  27044. },
  27045. ]
  27046. ))
  27047. characterMakers.push(() => makeCharacter(
  27048. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27049. {
  27050. front: {
  27051. height: math.unit(7 + 1 / 12, "feet"),
  27052. weight: math.unit(250, "lb"),
  27053. name: "Front",
  27054. image: {
  27055. source: "./media/characters/joey/front.svg",
  27056. extra: 1791 / 1537,
  27057. bottom: 28 / 1816
  27058. }
  27059. },
  27060. },
  27061. [
  27062. {
  27063. name: "Micro",
  27064. height: math.unit(3, "inches")
  27065. },
  27066. {
  27067. name: "Normal",
  27068. height: math.unit(7 + 1 / 12, "feet"),
  27069. default: true
  27070. },
  27071. ]
  27072. ))
  27073. characterMakers.push(() => makeCharacter(
  27074. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27075. {
  27076. front: {
  27077. height: math.unit(165, "cm"),
  27078. weight: math.unit(140, "lb"),
  27079. name: "Front",
  27080. image: {
  27081. source: "./media/characters/sam-evans/front.svg",
  27082. extra: 3417 / 3230,
  27083. bottom: 41.3 / 3417
  27084. }
  27085. },
  27086. frontSixTails: {
  27087. height: math.unit(165, "cm"),
  27088. weight: math.unit(140, "lb"),
  27089. name: "Front-six-tails",
  27090. image: {
  27091. source: "./media/characters/sam-evans/front-six-tails.svg",
  27092. extra: 3417 / 3230,
  27093. bottom: 41.3 / 3417
  27094. }
  27095. },
  27096. back: {
  27097. height: math.unit(165, "cm"),
  27098. weight: math.unit(140, "lb"),
  27099. name: "Back",
  27100. image: {
  27101. source: "./media/characters/sam-evans/back.svg",
  27102. extra: 3227 / 3032,
  27103. bottom: 6.8 / 3234
  27104. }
  27105. },
  27106. face: {
  27107. height: math.unit(0.68, "feet"),
  27108. name: "Face",
  27109. image: {
  27110. source: "./media/characters/sam-evans/face.svg"
  27111. }
  27112. },
  27113. },
  27114. [
  27115. {
  27116. name: "Normal",
  27117. height: math.unit(165, "cm"),
  27118. default: true
  27119. },
  27120. {
  27121. name: "Macro",
  27122. height: math.unit(100, "meters")
  27123. },
  27124. {
  27125. name: "Macro+",
  27126. height: math.unit(800, "meters")
  27127. },
  27128. {
  27129. name: "Macro++",
  27130. height: math.unit(3, "km")
  27131. },
  27132. {
  27133. name: "Macro+++",
  27134. height: math.unit(30, "km")
  27135. },
  27136. ]
  27137. ))
  27138. characterMakers.push(() => makeCharacter(
  27139. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27140. {
  27141. front: {
  27142. height: math.unit(10, "feet"),
  27143. weight: math.unit(750, "lb"),
  27144. name: "Front",
  27145. image: {
  27146. source: "./media/characters/juliet-a/front.svg",
  27147. extra: 1766 / 1720,
  27148. bottom: 43 / 1809
  27149. }
  27150. },
  27151. back: {
  27152. height: math.unit(10, "feet"),
  27153. weight: math.unit(750, "lb"),
  27154. name: "Back",
  27155. image: {
  27156. source: "./media/characters/juliet-a/back.svg",
  27157. extra: 1781 / 1734,
  27158. bottom: 35 / 1810,
  27159. }
  27160. },
  27161. },
  27162. [
  27163. {
  27164. name: "Normal",
  27165. height: math.unit(10, "feet"),
  27166. default: true
  27167. },
  27168. {
  27169. name: "Dragon Form",
  27170. height: math.unit(250, "feet")
  27171. },
  27172. {
  27173. name: "Macro",
  27174. height: math.unit(1000, "feet")
  27175. },
  27176. {
  27177. name: "Megamacro",
  27178. height: math.unit(10000, "feet")
  27179. }
  27180. ]
  27181. ))
  27182. characterMakers.push(() => makeCharacter(
  27183. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27184. {
  27185. regular: {
  27186. height: math.unit(7 + 3 / 12, "feet"),
  27187. weight: math.unit(260, "lb"),
  27188. name: "Regular",
  27189. image: {
  27190. source: "./media/characters/wild/regular.svg",
  27191. extra: 97.45 / 92,
  27192. bottom: 6.8 / 104.3
  27193. }
  27194. },
  27195. biggums: {
  27196. height: math.unit(8 + 6 / 12, "feet"),
  27197. weight: math.unit(425, "lb"),
  27198. name: "Biggums",
  27199. image: {
  27200. source: "./media/characters/wild/biggums.svg",
  27201. extra: 97.45 / 92,
  27202. bottom: 7.5 / 132.34
  27203. }
  27204. },
  27205. mawRegular: {
  27206. height: math.unit(1.24, "feet"),
  27207. name: "Maw (Regular)",
  27208. image: {
  27209. source: "./media/characters/wild/maw.svg"
  27210. }
  27211. },
  27212. mawBiggums: {
  27213. height: math.unit(1.47, "feet"),
  27214. name: "Maw (Biggums)",
  27215. image: {
  27216. source: "./media/characters/wild/maw.svg"
  27217. }
  27218. },
  27219. },
  27220. [
  27221. {
  27222. name: "Normal",
  27223. height: math.unit(7 + 3 / 12, "feet"),
  27224. default: true
  27225. },
  27226. ]
  27227. ))
  27228. characterMakers.push(() => makeCharacter(
  27229. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27230. {
  27231. front: {
  27232. height: math.unit(2.5, "meters"),
  27233. weight: math.unit(200, "kg"),
  27234. name: "Front",
  27235. image: {
  27236. source: "./media/characters/vidar/front.svg",
  27237. extra: 2994 / 2795,
  27238. bottom: 56 / 3061
  27239. }
  27240. },
  27241. back: {
  27242. height: math.unit(2.5, "meters"),
  27243. weight: math.unit(200, "kg"),
  27244. name: "Back",
  27245. image: {
  27246. source: "./media/characters/vidar/back.svg",
  27247. extra: 3131 / 2928,
  27248. bottom: 13.5 / 3141.5
  27249. }
  27250. },
  27251. feral: {
  27252. height: math.unit(2.5, "meters"),
  27253. weight: math.unit(2000, "kg"),
  27254. name: "Feral",
  27255. image: {
  27256. source: "./media/characters/vidar/feral.svg",
  27257. extra: 2790 / 1765,
  27258. bottom: 6 / 2796
  27259. }
  27260. },
  27261. },
  27262. [
  27263. {
  27264. name: "Normal",
  27265. height: math.unit(2.5, "meters"),
  27266. default: true
  27267. },
  27268. {
  27269. name: "Macro",
  27270. height: math.unit(100, "meters")
  27271. },
  27272. ]
  27273. ))
  27274. characterMakers.push(() => makeCharacter(
  27275. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27276. {
  27277. front: {
  27278. height: math.unit(5 + 9 / 12, "feet"),
  27279. weight: math.unit(120, "lb"),
  27280. name: "Front",
  27281. image: {
  27282. source: "./media/characters/ash/front.svg",
  27283. extra: 2189 / 1961,
  27284. bottom: 5.2 / 2194
  27285. }
  27286. },
  27287. },
  27288. [
  27289. {
  27290. name: "Normal",
  27291. height: math.unit(5 + 9 / 12, "feet"),
  27292. default: true
  27293. },
  27294. ]
  27295. ))
  27296. characterMakers.push(() => makeCharacter(
  27297. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27298. {
  27299. front: {
  27300. height: math.unit(9, "feet"),
  27301. weight: math.unit(10000, "lb"),
  27302. name: "Front",
  27303. image: {
  27304. source: "./media/characters/gygabite/front.svg",
  27305. bottom: 31.7 / 537.8,
  27306. extra: 505 / 370
  27307. }
  27308. },
  27309. },
  27310. [
  27311. {
  27312. name: "Normal",
  27313. height: math.unit(9, "feet"),
  27314. default: true
  27315. },
  27316. ]
  27317. ))
  27318. characterMakers.push(() => makeCharacter(
  27319. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27320. {
  27321. front: {
  27322. height: math.unit(12, "feet"),
  27323. weight: math.unit(35000, "lb"),
  27324. name: "Front",
  27325. image: {
  27326. source: "./media/characters/p0tat0/front.svg",
  27327. extra: 1065 / 921,
  27328. bottom: 55.7 / 1121.25
  27329. }
  27330. },
  27331. },
  27332. [
  27333. {
  27334. name: "Normal",
  27335. height: math.unit(12, "feet"),
  27336. default: true
  27337. },
  27338. ]
  27339. ))
  27340. characterMakers.push(() => makeCharacter(
  27341. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27342. {
  27343. side: {
  27344. height: math.unit(6.5, "feet"),
  27345. weight: math.unit(800, "lb"),
  27346. name: "Side",
  27347. image: {
  27348. source: "./media/characters/dusk/side.svg",
  27349. extra: 615 / 373,
  27350. bottom: 53 / 664
  27351. }
  27352. },
  27353. sitting: {
  27354. height: math.unit(7, "feet"),
  27355. weight: math.unit(800, "lb"),
  27356. name: "Sitting",
  27357. image: {
  27358. source: "./media/characters/dusk/sitting.svg",
  27359. extra: 753 / 425,
  27360. bottom: 33 / 774
  27361. }
  27362. },
  27363. head: {
  27364. height: math.unit(6.1, "feet"),
  27365. name: "Head",
  27366. image: {
  27367. source: "./media/characters/dusk/head.svg"
  27368. }
  27369. },
  27370. },
  27371. [
  27372. {
  27373. name: "Normal",
  27374. height: math.unit(7, "feet"),
  27375. default: true
  27376. },
  27377. ]
  27378. ))
  27379. characterMakers.push(() => makeCharacter(
  27380. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27381. {
  27382. front: {
  27383. height: math.unit(15, "feet"),
  27384. weight: math.unit(7000, "lb"),
  27385. name: "Front",
  27386. image: {
  27387. source: "./media/characters/jay-direwolf/front.svg",
  27388. extra: 1810 / 1732,
  27389. bottom: 66 / 1892
  27390. }
  27391. },
  27392. },
  27393. [
  27394. {
  27395. name: "Normal",
  27396. height: math.unit(15, "feet"),
  27397. default: true
  27398. },
  27399. ]
  27400. ))
  27401. characterMakers.push(() => makeCharacter(
  27402. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27403. {
  27404. front: {
  27405. height: math.unit(4 + 9 / 12, "feet"),
  27406. weight: math.unit(130, "lb"),
  27407. name: "Front",
  27408. image: {
  27409. source: "./media/characters/anchovie/front.svg",
  27410. extra: 382 / 350,
  27411. bottom: 25 / 409
  27412. }
  27413. },
  27414. back: {
  27415. height: math.unit(4 + 9 / 12, "feet"),
  27416. weight: math.unit(130, "lb"),
  27417. name: "Back",
  27418. image: {
  27419. source: "./media/characters/anchovie/back.svg",
  27420. extra: 385 / 352,
  27421. bottom: 16.6 / 402
  27422. }
  27423. },
  27424. frontDressed: {
  27425. height: math.unit(4 + 9 / 12, "feet"),
  27426. weight: math.unit(130, "lb"),
  27427. name: "Front (Dressed)",
  27428. image: {
  27429. source: "./media/characters/anchovie/front-dressed.svg",
  27430. extra: 382 / 350,
  27431. bottom: 25 / 409
  27432. }
  27433. },
  27434. backDressed: {
  27435. height: math.unit(4 + 9 / 12, "feet"),
  27436. weight: math.unit(130, "lb"),
  27437. name: "Back (Dressed)",
  27438. image: {
  27439. source: "./media/characters/anchovie/back-dressed.svg",
  27440. extra: 385 / 352,
  27441. bottom: 16.6 / 402
  27442. }
  27443. },
  27444. },
  27445. [
  27446. {
  27447. name: "Micro",
  27448. height: math.unit(6.4, "inches")
  27449. },
  27450. {
  27451. name: "Normal",
  27452. height: math.unit(4 + 9 / 12, "feet"),
  27453. default: true
  27454. },
  27455. ]
  27456. ))
  27457. characterMakers.push(() => makeCharacter(
  27458. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27459. {
  27460. front: {
  27461. height: math.unit(2, "meters"),
  27462. weight: math.unit(180, "lb"),
  27463. name: "Front",
  27464. image: {
  27465. source: "./media/characters/acidrenamon/front.svg",
  27466. extra: 987 / 890,
  27467. bottom: 22.8 / 1009
  27468. }
  27469. },
  27470. back: {
  27471. height: math.unit(2, "meters"),
  27472. weight: math.unit(180, "lb"),
  27473. name: "Back",
  27474. image: {
  27475. source: "./media/characters/acidrenamon/back.svg",
  27476. extra: 983 / 891,
  27477. bottom: 8.4 / 992
  27478. }
  27479. },
  27480. head: {
  27481. height: math.unit(1.92, "feet"),
  27482. name: "Head",
  27483. image: {
  27484. source: "./media/characters/acidrenamon/head.svg"
  27485. }
  27486. },
  27487. rump: {
  27488. height: math.unit(1.72, "feet"),
  27489. name: "Rump",
  27490. image: {
  27491. source: "./media/characters/acidrenamon/rump.svg"
  27492. }
  27493. },
  27494. tail: {
  27495. height: math.unit(4.2, "feet"),
  27496. name: "Tail",
  27497. image: {
  27498. source: "./media/characters/acidrenamon/tail.svg"
  27499. }
  27500. },
  27501. },
  27502. [
  27503. {
  27504. name: "Normal",
  27505. height: math.unit(2, "meters"),
  27506. default: true
  27507. },
  27508. {
  27509. name: "Minimacro",
  27510. height: math.unit(7, "meters")
  27511. },
  27512. {
  27513. name: "Macro",
  27514. height: math.unit(200, "meters")
  27515. },
  27516. {
  27517. name: "Gigamacro",
  27518. height: math.unit(0.2, "earths")
  27519. },
  27520. ]
  27521. ))
  27522. characterMakers.push(() => makeCharacter(
  27523. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27524. {
  27525. front: {
  27526. height: math.unit(6, "feet"),
  27527. weight: math.unit(150, "lb"),
  27528. name: "Front",
  27529. image: {
  27530. source: "./media/characters/kenzie-lee/front.svg",
  27531. extra: 1525 / 1465,
  27532. bottom: 45 / 1570
  27533. }
  27534. },
  27535. side: {
  27536. height: math.unit(6, "feet"),
  27537. weight: math.unit(150, "lb"),
  27538. name: "Side",
  27539. image: {
  27540. source: "./media/characters/kenzie-lee/side.svg",
  27541. extra: 5505 / 5383,
  27542. bottom: 60 / 5573
  27543. }
  27544. },
  27545. paw: {
  27546. height: math.unit(0.57, "feet"),
  27547. name: "Paw",
  27548. image: {
  27549. source: "./media/characters/kenzie-lee/paw.svg"
  27550. }
  27551. },
  27552. },
  27553. [
  27554. {
  27555. name: "Normal",
  27556. height: math.unit(152, "feet"),
  27557. default: true
  27558. },
  27559. {
  27560. name: "Megamacro",
  27561. height: math.unit(7, "miles")
  27562. },
  27563. {
  27564. name: "Gigamacro",
  27565. height: math.unit(8000, "miles")
  27566. },
  27567. ]
  27568. ))
  27569. characterMakers.push(() => makeCharacter(
  27570. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27571. {
  27572. side: {
  27573. height: math.unit(6, "feet"),
  27574. weight: math.unit(150, "lb"),
  27575. name: "Side",
  27576. image: {
  27577. source: "./media/characters/withers/side.svg",
  27578. extra: 1830 / 1728,
  27579. bottom: 96 / 1927
  27580. }
  27581. },
  27582. front: {
  27583. height: math.unit(6, "feet"),
  27584. weight: math.unit(150, "lb"),
  27585. name: "Front",
  27586. image: {
  27587. source: "./media/characters/withers/front.svg",
  27588. extra: 1514 / 1438,
  27589. bottom: 118 / 1632
  27590. }
  27591. },
  27592. },
  27593. [
  27594. {
  27595. name: "Macro",
  27596. height: math.unit(168, "feet"),
  27597. default: true
  27598. },
  27599. {
  27600. name: "Megamacro",
  27601. height: math.unit(15, "miles")
  27602. }
  27603. ]
  27604. ))
  27605. characterMakers.push(() => makeCharacter(
  27606. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27607. {
  27608. front: {
  27609. height: math.unit(6 + 7 / 12, "feet"),
  27610. weight: math.unit(250, "lb"),
  27611. name: "Front",
  27612. image: {
  27613. source: "./media/characters/nemoskii/front.svg",
  27614. extra: 2270 / 1734,
  27615. bottom: 86 / 2354
  27616. }
  27617. },
  27618. back: {
  27619. height: math.unit(6 + 7 / 12, "feet"),
  27620. weight: math.unit(250, "lb"),
  27621. name: "Back",
  27622. image: {
  27623. source: "./media/characters/nemoskii/back.svg",
  27624. extra: 1845 / 1788,
  27625. bottom: 10.5 / 1852
  27626. }
  27627. },
  27628. head: {
  27629. height: math.unit(1.31, "feet"),
  27630. name: "Head",
  27631. image: {
  27632. source: "./media/characters/nemoskii/head.svg"
  27633. }
  27634. },
  27635. },
  27636. [
  27637. {
  27638. name: "Micro",
  27639. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27640. },
  27641. {
  27642. name: "Normal",
  27643. height: math.unit(6 + 7 / 12, "feet"),
  27644. default: true
  27645. },
  27646. {
  27647. name: "Macro",
  27648. height: math.unit((6 + 7 / 12) * 150, "feet")
  27649. },
  27650. {
  27651. name: "Macro+",
  27652. height: math.unit((6 + 7 / 12) * 500, "feet")
  27653. },
  27654. {
  27655. name: "Megamacro",
  27656. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27657. },
  27658. ]
  27659. ))
  27660. characterMakers.push(() => makeCharacter(
  27661. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27662. {
  27663. front: {
  27664. height: math.unit(1, "mile"),
  27665. weight: math.unit(265261.9, "lb"),
  27666. name: "Front",
  27667. image: {
  27668. source: "./media/characters/shui/front.svg",
  27669. extra: 1633 / 1564,
  27670. bottom: 91.5 / 1726
  27671. }
  27672. },
  27673. },
  27674. [
  27675. {
  27676. name: "Macro",
  27677. height: math.unit(1, "mile"),
  27678. default: true
  27679. },
  27680. ]
  27681. ))
  27682. characterMakers.push(() => makeCharacter(
  27683. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27684. {
  27685. front: {
  27686. height: math.unit(12 + 6 / 12, "feet"),
  27687. weight: math.unit(1342, "lb"),
  27688. name: "Front",
  27689. image: {
  27690. source: "./media/characters/arokh-takakura/front.svg",
  27691. extra: 1089 / 1043,
  27692. bottom: 77.4 / 1176.7
  27693. }
  27694. },
  27695. back: {
  27696. height: math.unit(12 + 6 / 12, "feet"),
  27697. weight: math.unit(1342, "lb"),
  27698. name: "Back",
  27699. image: {
  27700. source: "./media/characters/arokh-takakura/back.svg",
  27701. extra: 1046 / 1019,
  27702. bottom: 102 / 1150
  27703. }
  27704. },
  27705. },
  27706. [
  27707. {
  27708. name: "Big",
  27709. height: math.unit(12 + 6 / 12, "feet"),
  27710. default: true
  27711. },
  27712. ]
  27713. ))
  27714. characterMakers.push(() => makeCharacter(
  27715. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27716. {
  27717. front: {
  27718. height: math.unit(5 + 6 / 12, "feet"),
  27719. weight: math.unit(150, "lb"),
  27720. name: "Front",
  27721. image: {
  27722. source: "./media/characters/theo/front.svg",
  27723. extra: 1184 / 1131,
  27724. bottom: 7.4 / 1191
  27725. }
  27726. },
  27727. },
  27728. [
  27729. {
  27730. name: "Micro",
  27731. height: math.unit(5, "inches")
  27732. },
  27733. {
  27734. name: "Normal",
  27735. height: math.unit(5 + 6 / 12, "feet"),
  27736. default: true
  27737. },
  27738. ]
  27739. ))
  27740. characterMakers.push(() => makeCharacter(
  27741. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27742. {
  27743. front: {
  27744. height: math.unit(5 + 9 / 12, "feet"),
  27745. weight: math.unit(130, "lb"),
  27746. name: "Front",
  27747. image: {
  27748. source: "./media/characters/cecelia-swift/front.svg",
  27749. extra: 502 / 484,
  27750. bottom: 23 / 523
  27751. }
  27752. },
  27753. back: {
  27754. height: math.unit(5 + 9 / 12, "feet"),
  27755. weight: math.unit(130, "lb"),
  27756. name: "Back",
  27757. image: {
  27758. source: "./media/characters/cecelia-swift/back.svg",
  27759. extra: 499 / 485,
  27760. bottom: 12 / 511
  27761. }
  27762. },
  27763. head: {
  27764. height: math.unit(0.90, "feet"),
  27765. name: "Head",
  27766. image: {
  27767. source: "./media/characters/cecelia-swift/head.svg"
  27768. }
  27769. },
  27770. rump: {
  27771. height: math.unit(1.75, "feet"),
  27772. name: "Rump",
  27773. image: {
  27774. source: "./media/characters/cecelia-swift/rump.svg"
  27775. }
  27776. },
  27777. },
  27778. [
  27779. {
  27780. name: "Normal",
  27781. height: math.unit(5 + 9 / 12, "feet"),
  27782. default: true
  27783. },
  27784. {
  27785. name: "Big",
  27786. height: math.unit(50, "feet")
  27787. },
  27788. {
  27789. name: "Macro",
  27790. height: math.unit(100, "feet")
  27791. },
  27792. {
  27793. name: "Macro+",
  27794. height: math.unit(500, "feet")
  27795. },
  27796. {
  27797. name: "Macro++",
  27798. height: math.unit(1000, "feet")
  27799. },
  27800. ]
  27801. ))
  27802. characterMakers.push(() => makeCharacter(
  27803. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27804. {
  27805. front: {
  27806. height: math.unit(6, "feet"),
  27807. weight: math.unit(150, "lb"),
  27808. name: "Front",
  27809. image: {
  27810. source: "./media/characters/kaunan/front.svg",
  27811. extra: 2890 / 2523,
  27812. bottom: 49 / 2939
  27813. }
  27814. },
  27815. },
  27816. [
  27817. {
  27818. name: "Macro",
  27819. height: math.unit(150, "feet"),
  27820. default: true
  27821. },
  27822. ]
  27823. ))
  27824. characterMakers.push(() => makeCharacter(
  27825. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27826. {
  27827. front: {
  27828. height: math.unit(175, "cm"),
  27829. weight: math.unit(60, "kg"),
  27830. name: "Front",
  27831. image: {
  27832. source: "./media/characters/fei/front.svg",
  27833. extra: 1873/1723,
  27834. bottom: 53/1926
  27835. }
  27836. },
  27837. },
  27838. [
  27839. {
  27840. name: "Mortal",
  27841. height: math.unit(175, "cm")
  27842. },
  27843. {
  27844. name: "Normal",
  27845. height: math.unit(3500, "m"),
  27846. default: true
  27847. },
  27848. {
  27849. name: "Stroll",
  27850. height: math.unit(17.5, "km")
  27851. },
  27852. {
  27853. name: "Showoff",
  27854. height: math.unit(175, "km")
  27855. },
  27856. ]
  27857. ))
  27858. characterMakers.push(() => makeCharacter(
  27859. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27860. {
  27861. front: {
  27862. height: math.unit(7, "feet"),
  27863. weight: math.unit(1000, "kg"),
  27864. name: "Front",
  27865. image: {
  27866. source: "./media/characters/edrax/front.svg",
  27867. extra: 2838 / 2550,
  27868. bottom: 130 / 2968
  27869. }
  27870. },
  27871. },
  27872. [
  27873. {
  27874. name: "Small",
  27875. height: math.unit(7, "feet")
  27876. },
  27877. {
  27878. name: "Normal",
  27879. height: math.unit(1500, "meters")
  27880. },
  27881. {
  27882. name: "Mega",
  27883. height: math.unit(12000000, "km"),
  27884. default: true
  27885. },
  27886. {
  27887. name: "Megamacro",
  27888. height: math.unit(10600000, "lightyears")
  27889. },
  27890. {
  27891. name: "Hypermacro",
  27892. height: math.unit(256, "yottameters")
  27893. },
  27894. ]
  27895. ))
  27896. characterMakers.push(() => makeCharacter(
  27897. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27898. {
  27899. front: {
  27900. height: math.unit(10, "feet"),
  27901. weight: math.unit(750, "lb"),
  27902. name: "Front",
  27903. image: {
  27904. source: "./media/characters/clove/front.svg",
  27905. extra: 2031 / 1860,
  27906. bottom: 47.8 / 2080
  27907. }
  27908. },
  27909. back: {
  27910. height: math.unit(10, "feet"),
  27911. weight: math.unit(750, "lb"),
  27912. name: "Back",
  27913. image: {
  27914. source: "./media/characters/clove/back.svg",
  27915. extra: 2025 / 1859,
  27916. bottom: 46 / 2071
  27917. }
  27918. },
  27919. },
  27920. [
  27921. {
  27922. name: "Normal",
  27923. height: math.unit(10, "feet"),
  27924. default: true
  27925. },
  27926. ]
  27927. ))
  27928. characterMakers.push(() => makeCharacter(
  27929. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27930. {
  27931. front: {
  27932. height: math.unit(4, "feet"),
  27933. weight: math.unit(50, "lb"),
  27934. name: "Front",
  27935. image: {
  27936. source: "./media/characters/alex-rabbit/front.svg",
  27937. extra: 507 / 458,
  27938. bottom: 18.5 / 527
  27939. }
  27940. },
  27941. back: {
  27942. height: math.unit(4, "feet"),
  27943. weight: math.unit(50, "lb"),
  27944. name: "Back",
  27945. image: {
  27946. source: "./media/characters/alex-rabbit/back.svg",
  27947. extra: 502 / 460,
  27948. bottom: 18.9 / 521
  27949. }
  27950. },
  27951. },
  27952. [
  27953. {
  27954. name: "Normal",
  27955. height: math.unit(4, "feet"),
  27956. default: true
  27957. },
  27958. ]
  27959. ))
  27960. characterMakers.push(() => makeCharacter(
  27961. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27962. {
  27963. front: {
  27964. height: math.unit(1 + 3 / 12, "feet"),
  27965. weight: math.unit(80, "lb"),
  27966. name: "Front",
  27967. image: {
  27968. source: "./media/characters/zander-rose/front.svg",
  27969. extra: 916 / 797,
  27970. bottom: 17 / 933
  27971. }
  27972. },
  27973. back: {
  27974. height: math.unit(1 + 3 / 12, "feet"),
  27975. weight: math.unit(80, "lb"),
  27976. name: "Back",
  27977. image: {
  27978. source: "./media/characters/zander-rose/back.svg",
  27979. extra: 903 / 779,
  27980. bottom: 31 / 934
  27981. }
  27982. },
  27983. },
  27984. [
  27985. {
  27986. name: "Normal",
  27987. height: math.unit(1 + 3 / 12, "feet"),
  27988. default: true
  27989. },
  27990. ]
  27991. ))
  27992. characterMakers.push(() => makeCharacter(
  27993. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27994. {
  27995. anthro: {
  27996. height: math.unit(6, "feet"),
  27997. weight: math.unit(150, "lb"),
  27998. name: "Anthro",
  27999. image: {
  28000. source: "./media/characters/razz/anthro.svg",
  28001. extra: 1437 / 1343,
  28002. bottom: 48 / 1485
  28003. }
  28004. },
  28005. feral: {
  28006. height: math.unit(6, "feet"),
  28007. weight: math.unit(150, "lb"),
  28008. name: "Feral",
  28009. image: {
  28010. source: "./media/characters/razz/feral.svg",
  28011. extra: 2569 / 1385,
  28012. bottom: 95 / 2664
  28013. }
  28014. },
  28015. },
  28016. [
  28017. {
  28018. name: "Normal",
  28019. height: math.unit(6, "feet"),
  28020. default: true
  28021. },
  28022. ]
  28023. ))
  28024. characterMakers.push(() => makeCharacter(
  28025. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28026. {
  28027. front: {
  28028. height: math.unit(9 + 4 / 12, "feet"),
  28029. weight: math.unit(500, "lb"),
  28030. name: "Front",
  28031. image: {
  28032. source: "./media/characters/morrigan/front.svg",
  28033. extra: 2707 / 2579,
  28034. bottom: 156 / 2863
  28035. }
  28036. },
  28037. },
  28038. [
  28039. {
  28040. name: "Normal",
  28041. height: math.unit(9 + 4 / 12, "feet"),
  28042. default: true
  28043. },
  28044. ]
  28045. ))
  28046. characterMakers.push(() => makeCharacter(
  28047. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28048. {
  28049. front: {
  28050. height: math.unit(5, "stories"),
  28051. weight: math.unit(4000, "lb"),
  28052. name: "Front",
  28053. image: {
  28054. source: "./media/characters/jenene/front.svg",
  28055. extra: 1780 / 1710,
  28056. bottom: 57 / 1837
  28057. }
  28058. },
  28059. },
  28060. [
  28061. {
  28062. name: "Normal",
  28063. height: math.unit(5, "stories"),
  28064. default: true
  28065. },
  28066. ]
  28067. ))
  28068. characterMakers.push(() => makeCharacter(
  28069. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28070. {
  28071. taurSfw: {
  28072. height: math.unit(10, "meters"),
  28073. weight: math.unit(17500, "kg"),
  28074. name: "Taur",
  28075. image: {
  28076. source: "./media/characters/faey/taur-sfw.svg",
  28077. extra: 1200 / 968,
  28078. bottom: 41 / 1241
  28079. }
  28080. },
  28081. chestmaw: {
  28082. height: math.unit(2.01, "meters"),
  28083. name: "Chestmaw",
  28084. image: {
  28085. source: "./media/characters/faey/chestmaw.svg"
  28086. }
  28087. },
  28088. foot: {
  28089. height: math.unit(2.43, "meters"),
  28090. name: "Foot",
  28091. image: {
  28092. source: "./media/characters/faey/foot.svg"
  28093. }
  28094. },
  28095. jaws: {
  28096. height: math.unit(1.66, "meters"),
  28097. name: "Jaws",
  28098. image: {
  28099. source: "./media/characters/faey/jaws.svg"
  28100. }
  28101. },
  28102. tongues: {
  28103. height: math.unit(2.01, "meters"),
  28104. name: "Tongues",
  28105. image: {
  28106. source: "./media/characters/faey/tongues.svg"
  28107. }
  28108. },
  28109. },
  28110. [
  28111. {
  28112. name: "Small",
  28113. height: math.unit(10, "meters"),
  28114. default: true
  28115. },
  28116. {
  28117. name: "Big",
  28118. height: math.unit(500000, "km")
  28119. },
  28120. ]
  28121. ))
  28122. characterMakers.push(() => makeCharacter(
  28123. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28124. {
  28125. front: {
  28126. height: math.unit(7, "feet"),
  28127. weight: math.unit(275, "lb"),
  28128. name: "Front",
  28129. image: {
  28130. source: "./media/characters/roku/front.svg",
  28131. extra: 903 / 878,
  28132. bottom: 37 / 940
  28133. }
  28134. },
  28135. },
  28136. [
  28137. {
  28138. name: "Normal",
  28139. height: math.unit(7, "feet"),
  28140. default: true
  28141. },
  28142. {
  28143. name: "Macro",
  28144. height: math.unit(500, "feet")
  28145. },
  28146. {
  28147. name: "Megamacro",
  28148. height: math.unit(200, "miles")
  28149. },
  28150. ]
  28151. ))
  28152. characterMakers.push(() => makeCharacter(
  28153. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28154. {
  28155. front: {
  28156. height: math.unit(6 + 2 / 12, "feet"),
  28157. weight: math.unit(150, "lb"),
  28158. name: "Front",
  28159. image: {
  28160. source: "./media/characters/lira/front.svg",
  28161. extra: 1727 / 1605,
  28162. bottom: 26 / 1753
  28163. }
  28164. },
  28165. back: {
  28166. height: math.unit(6 + 2 / 12, "feet"),
  28167. weight: math.unit(150, "lb"),
  28168. name: "Back",
  28169. image: {
  28170. source: "./media/characters/lira/back.svg",
  28171. extra: 1713/1621,
  28172. bottom: 20/1733
  28173. }
  28174. },
  28175. hand: {
  28176. height: math.unit(0.75, "feet"),
  28177. name: "Hand",
  28178. image: {
  28179. source: "./media/characters/lira/hand.svg"
  28180. }
  28181. },
  28182. maw: {
  28183. height: math.unit(0.65, "feet"),
  28184. name: "Maw",
  28185. image: {
  28186. source: "./media/characters/lira/maw.svg"
  28187. }
  28188. },
  28189. pawDigi: {
  28190. height: math.unit(1.6, "feet"),
  28191. name: "Paw Digi",
  28192. image: {
  28193. source: "./media/characters/lira/paw-digi.svg"
  28194. }
  28195. },
  28196. pawPlanti: {
  28197. height: math.unit(1.4, "feet"),
  28198. name: "Paw Planti",
  28199. image: {
  28200. source: "./media/characters/lira/paw-planti.svg"
  28201. }
  28202. },
  28203. },
  28204. [
  28205. {
  28206. name: "Normal",
  28207. height: math.unit(6 + 2 / 12, "feet"),
  28208. default: true
  28209. },
  28210. {
  28211. name: "Macro",
  28212. height: math.unit(100, "feet")
  28213. },
  28214. {
  28215. name: "Macro²",
  28216. height: math.unit(1600, "feet")
  28217. },
  28218. {
  28219. name: "Planetary",
  28220. height: math.unit(20, "earths")
  28221. },
  28222. ]
  28223. ))
  28224. characterMakers.push(() => makeCharacter(
  28225. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28226. {
  28227. front: {
  28228. height: math.unit(6, "feet"),
  28229. weight: math.unit(150, "lb"),
  28230. name: "Front",
  28231. image: {
  28232. source: "./media/characters/hadjet/front.svg",
  28233. extra: 1480 / 1346,
  28234. bottom: 26 / 1506
  28235. }
  28236. },
  28237. frontNsfw: {
  28238. height: math.unit(6, "feet"),
  28239. weight: math.unit(150, "lb"),
  28240. name: "Front (NSFW)",
  28241. image: {
  28242. source: "./media/characters/hadjet/front-nsfw.svg",
  28243. extra: 1440 / 1358,
  28244. bottom: 52 / 1492
  28245. }
  28246. },
  28247. },
  28248. [
  28249. {
  28250. name: "Macro",
  28251. height: math.unit(10, "stories"),
  28252. default: true
  28253. },
  28254. {
  28255. name: "Megamacro",
  28256. height: math.unit(1.5, "miles")
  28257. },
  28258. {
  28259. name: "Megamacro+",
  28260. height: math.unit(5, "miles")
  28261. },
  28262. ]
  28263. ))
  28264. characterMakers.push(() => makeCharacter(
  28265. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28266. {
  28267. side: {
  28268. height: math.unit(106, "feet"),
  28269. weight: math.unit(500, "tonnes"),
  28270. name: "Side",
  28271. image: {
  28272. source: "./media/characters/kodran/side.svg",
  28273. extra: 553 / 480,
  28274. bottom: 33 / 586
  28275. }
  28276. },
  28277. front: {
  28278. height: math.unit(132, "feet"),
  28279. weight: math.unit(500, "tonnes"),
  28280. name: "Front",
  28281. image: {
  28282. source: "./media/characters/kodran/front.svg",
  28283. extra: 667 / 643,
  28284. bottom: 42 / 709
  28285. }
  28286. },
  28287. flying: {
  28288. height: math.unit(350, "feet"),
  28289. weight: math.unit(500, "tonnes"),
  28290. name: "Flying",
  28291. image: {
  28292. source: "./media/characters/kodran/flying.svg"
  28293. }
  28294. },
  28295. foot: {
  28296. height: math.unit(33, "feet"),
  28297. name: "Foot",
  28298. image: {
  28299. source: "./media/characters/kodran/foot.svg"
  28300. }
  28301. },
  28302. footFront: {
  28303. height: math.unit(19, "feet"),
  28304. name: "Foot (Front)",
  28305. image: {
  28306. source: "./media/characters/kodran/foot-front.svg",
  28307. extra: 261 / 261,
  28308. bottom: 91 / 352
  28309. }
  28310. },
  28311. headFront: {
  28312. height: math.unit(53, "feet"),
  28313. name: "Head (Front)",
  28314. image: {
  28315. source: "./media/characters/kodran/head-front.svg"
  28316. }
  28317. },
  28318. headSide: {
  28319. height: math.unit(65, "feet"),
  28320. name: "Head (Side)",
  28321. image: {
  28322. source: "./media/characters/kodran/head-side.svg"
  28323. }
  28324. },
  28325. throat: {
  28326. height: math.unit(79, "feet"),
  28327. name: "Throat",
  28328. image: {
  28329. source: "./media/characters/kodran/throat.svg"
  28330. }
  28331. },
  28332. },
  28333. [
  28334. {
  28335. name: "Large",
  28336. height: math.unit(106, "feet"),
  28337. default: true
  28338. },
  28339. ]
  28340. ))
  28341. characterMakers.push(() => makeCharacter(
  28342. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28343. {
  28344. side: {
  28345. height: math.unit(11, "feet"),
  28346. weight: math.unit(150, "lb"),
  28347. name: "Side",
  28348. image: {
  28349. source: "./media/characters/pyxaron/side.svg",
  28350. extra: 305 / 195,
  28351. bottom: 17 / 322
  28352. }
  28353. },
  28354. },
  28355. [
  28356. {
  28357. name: "Normal",
  28358. height: math.unit(11, "feet"),
  28359. default: true
  28360. },
  28361. ]
  28362. ))
  28363. characterMakers.push(() => makeCharacter(
  28364. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28365. {
  28366. front: {
  28367. height: math.unit(6, "feet"),
  28368. weight: math.unit(150, "lb"),
  28369. name: "Front",
  28370. image: {
  28371. source: "./media/characters/meep/front.svg",
  28372. extra: 88 / 80,
  28373. bottom: 6 / 94
  28374. }
  28375. },
  28376. },
  28377. [
  28378. {
  28379. name: "Fun Sized",
  28380. height: math.unit(2, "inches"),
  28381. default: true
  28382. },
  28383. {
  28384. name: "Friend Sized",
  28385. height: math.unit(8, "inches")
  28386. },
  28387. ]
  28388. ))
  28389. characterMakers.push(() => makeCharacter(
  28390. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28391. {
  28392. front: {
  28393. height: math.unit(15, "feet"),
  28394. weight: math.unit(2500, "lb"),
  28395. name: "Front",
  28396. image: {
  28397. source: "./media/characters/holly-rabbit/front.svg",
  28398. extra: 1433 / 1233,
  28399. bottom: 125 / 1558
  28400. }
  28401. },
  28402. dick: {
  28403. height: math.unit(4.6, "feet"),
  28404. name: "Dick",
  28405. image: {
  28406. source: "./media/characters/holly-rabbit/dick.svg"
  28407. }
  28408. },
  28409. },
  28410. [
  28411. {
  28412. name: "Normal",
  28413. height: math.unit(15, "feet"),
  28414. default: true
  28415. },
  28416. {
  28417. name: "Macro",
  28418. height: math.unit(250, "feet")
  28419. },
  28420. {
  28421. name: "Macro+",
  28422. height: math.unit(2500, "feet")
  28423. },
  28424. ]
  28425. ))
  28426. characterMakers.push(() => makeCharacter(
  28427. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28428. {
  28429. front: {
  28430. height: math.unit(3.02, "meters"),
  28431. weight: math.unit(500, "kg"),
  28432. name: "Front",
  28433. image: {
  28434. source: "./media/characters/drena/front.svg",
  28435. extra: 282 / 243,
  28436. bottom: 8 / 290
  28437. }
  28438. },
  28439. side: {
  28440. height: math.unit(3.02, "meters"),
  28441. weight: math.unit(500, "kg"),
  28442. name: "Side",
  28443. image: {
  28444. source: "./media/characters/drena/side.svg",
  28445. extra: 280 / 245,
  28446. bottom: 10 / 290
  28447. }
  28448. },
  28449. back: {
  28450. height: math.unit(3.02, "meters"),
  28451. weight: math.unit(500, "kg"),
  28452. name: "Back",
  28453. image: {
  28454. source: "./media/characters/drena/back.svg",
  28455. extra: 278 / 243,
  28456. bottom: 2 / 280
  28457. }
  28458. },
  28459. foot: {
  28460. height: math.unit(0.75, "meters"),
  28461. name: "Foot",
  28462. image: {
  28463. source: "./media/characters/drena/foot.svg"
  28464. }
  28465. },
  28466. maw: {
  28467. height: math.unit(0.82, "meters"),
  28468. name: "Maw",
  28469. image: {
  28470. source: "./media/characters/drena/maw.svg"
  28471. }
  28472. },
  28473. rump: {
  28474. height: math.unit(0.93, "meters"),
  28475. name: "Rump",
  28476. image: {
  28477. source: "./media/characters/drena/rump.svg"
  28478. }
  28479. },
  28480. },
  28481. [
  28482. {
  28483. name: "Normal",
  28484. height: math.unit(3.02, "meters"),
  28485. default: true
  28486. },
  28487. ]
  28488. ))
  28489. characterMakers.push(() => makeCharacter(
  28490. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28491. {
  28492. front: {
  28493. height: math.unit(6 + 4 / 12, "feet"),
  28494. weight: math.unit(250, "lb"),
  28495. name: "Front",
  28496. image: {
  28497. source: "./media/characters/remmyzilla/front.svg",
  28498. extra: 4033 / 3588,
  28499. bottom: 123 / 4156
  28500. }
  28501. },
  28502. back: {
  28503. height: math.unit(6 + 4 / 12, "feet"),
  28504. weight: math.unit(250, "lb"),
  28505. name: "Back",
  28506. image: {
  28507. source: "./media/characters/remmyzilla/back.svg",
  28508. extra: 2687 / 2555,
  28509. bottom: 48 / 2735
  28510. }
  28511. },
  28512. paw: {
  28513. height: math.unit(1.73, "feet"),
  28514. name: "Paw",
  28515. image: {
  28516. source: "./media/characters/remmyzilla/paw.svg"
  28517. }
  28518. },
  28519. maw: {
  28520. height: math.unit(1.73, "feet"),
  28521. name: "Maw",
  28522. image: {
  28523. source: "./media/characters/remmyzilla/maw.svg"
  28524. }
  28525. },
  28526. },
  28527. [
  28528. {
  28529. name: "Normal",
  28530. height: math.unit(6 + 4 / 12, "feet")
  28531. },
  28532. {
  28533. name: "Minimacro",
  28534. height: math.unit(12 + 8 / 12, "feet")
  28535. },
  28536. {
  28537. name: "Normal",
  28538. height: math.unit(640, "feet"),
  28539. default: true
  28540. },
  28541. {
  28542. name: "Megamacro",
  28543. height: math.unit(6400, "feet")
  28544. },
  28545. {
  28546. name: "Gigamacro",
  28547. height: math.unit(64000, "miles")
  28548. },
  28549. ]
  28550. ))
  28551. characterMakers.push(() => makeCharacter(
  28552. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28553. {
  28554. front: {
  28555. height: math.unit(2.5, "meters"),
  28556. weight: math.unit(300, "lb"),
  28557. name: "Front",
  28558. image: {
  28559. source: "./media/characters/lawrence/front.svg",
  28560. extra: 357 / 335,
  28561. bottom: 30 / 387
  28562. }
  28563. },
  28564. back: {
  28565. height: math.unit(2.5, "meters"),
  28566. weight: math.unit(300, "lb"),
  28567. name: "Back",
  28568. image: {
  28569. source: "./media/characters/lawrence/back.svg",
  28570. extra: 357 / 338,
  28571. bottom: 16 / 373
  28572. }
  28573. },
  28574. head: {
  28575. height: math.unit(0.9, "meter"),
  28576. name: "Head",
  28577. image: {
  28578. source: "./media/characters/lawrence/head.svg"
  28579. }
  28580. },
  28581. maw: {
  28582. height: math.unit(0.7, "meter"),
  28583. name: "Maw",
  28584. image: {
  28585. source: "./media/characters/lawrence/maw.svg"
  28586. }
  28587. },
  28588. footBottom: {
  28589. height: math.unit(0.5, "meter"),
  28590. name: "Foot (Bottom)",
  28591. image: {
  28592. source: "./media/characters/lawrence/foot-bottom.svg"
  28593. }
  28594. },
  28595. footTop: {
  28596. height: math.unit(0.5, "meter"),
  28597. name: "Foot (Top)",
  28598. image: {
  28599. source: "./media/characters/lawrence/foot-top.svg"
  28600. }
  28601. },
  28602. },
  28603. [
  28604. {
  28605. name: "Normal",
  28606. height: math.unit(2.5, "meters"),
  28607. default: true
  28608. },
  28609. {
  28610. name: "Macro",
  28611. height: math.unit(95, "meters")
  28612. },
  28613. {
  28614. name: "Megamacro",
  28615. height: math.unit(150, "km")
  28616. },
  28617. ]
  28618. ))
  28619. characterMakers.push(() => makeCharacter(
  28620. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28621. {
  28622. front: {
  28623. height: math.unit(4.2, "meters"),
  28624. name: "Front",
  28625. image: {
  28626. source: "./media/characters/sydney/front.svg",
  28627. extra: 1323 / 1277,
  28628. bottom: 111 / 1434
  28629. }
  28630. },
  28631. },
  28632. [
  28633. {
  28634. name: "Normal",
  28635. height: math.unit(4.2, "meters"),
  28636. default: true
  28637. },
  28638. ]
  28639. ))
  28640. characterMakers.push(() => makeCharacter(
  28641. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28642. {
  28643. back: {
  28644. height: math.unit(201, "feet"),
  28645. name: "Back",
  28646. image: {
  28647. source: "./media/characters/jessica/back.svg",
  28648. extra: 273 / 259,
  28649. bottom: 7 / 280
  28650. }
  28651. },
  28652. },
  28653. [
  28654. {
  28655. name: "Normal",
  28656. height: math.unit(201, "feet"),
  28657. default: true
  28658. },
  28659. {
  28660. name: "Megamacro",
  28661. height: math.unit(8, "miles")
  28662. },
  28663. ]
  28664. ))
  28665. characterMakers.push(() => makeCharacter(
  28666. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28667. {
  28668. side: {
  28669. height: math.unit(320, "cm"),
  28670. name: "Side",
  28671. image: {
  28672. source: "./media/characters/victoria/side.svg",
  28673. extra: 778 / 346,
  28674. bottom: 56 / 834
  28675. }
  28676. },
  28677. maw: {
  28678. height: math.unit(5.9, "feet"),
  28679. name: "Maw",
  28680. image: {
  28681. source: "./media/characters/victoria/maw.svg"
  28682. }
  28683. },
  28684. },
  28685. [
  28686. {
  28687. name: "Normal",
  28688. height: math.unit(320, "cm"),
  28689. default: true
  28690. },
  28691. ]
  28692. ))
  28693. characterMakers.push(() => makeCharacter(
  28694. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28695. {
  28696. front: {
  28697. height: math.unit(5 + 6 / 12, "feet"),
  28698. name: "Front",
  28699. image: {
  28700. source: "./media/characters/cat/front.svg",
  28701. extra: 1449/1295,
  28702. bottom: 34/1483
  28703. }
  28704. },
  28705. back: {
  28706. height: math.unit(5 + 6 / 12, "feet"),
  28707. name: "Back",
  28708. image: {
  28709. source: "./media/characters/cat/back.svg",
  28710. extra: 1466/1301,
  28711. bottom: 19/1485
  28712. }
  28713. },
  28714. taur: {
  28715. height: math.unit(7, "feet"),
  28716. name: "Taur",
  28717. image: {
  28718. source: "./media/characters/cat/taur.svg",
  28719. extra: 1389/1233,
  28720. bottom: 83/1472
  28721. }
  28722. },
  28723. lucarioFront: {
  28724. height: math.unit(4, "feet"),
  28725. name: "Lucario (Front)",
  28726. image: {
  28727. source: "./media/characters/cat/lucario-front.svg",
  28728. extra: 1149/1019,
  28729. bottom: 84/1233
  28730. }
  28731. },
  28732. lucarioBack: {
  28733. height: math.unit(4, "feet"),
  28734. name: "Lucario (Back)",
  28735. image: {
  28736. source: "./media/characters/cat/lucario-back.svg",
  28737. extra: 1190/1059,
  28738. bottom: 33/1223
  28739. }
  28740. },
  28741. megaLucario: {
  28742. height: math.unit(4, "feet"),
  28743. name: "Mega Lucario",
  28744. image: {
  28745. source: "./media/characters/cat/mega-lucario.svg",
  28746. extra: 1515 / 1319,
  28747. bottom: 63 / 1578
  28748. }
  28749. },
  28750. nickit: {
  28751. height: math.unit(2, "feet"),
  28752. name: "Nickit",
  28753. image: {
  28754. source: "./media/characters/cat/nickit.svg",
  28755. extra: 1980 / 1585,
  28756. bottom: 102 / 2082
  28757. }
  28758. },
  28759. lopunnyFront: {
  28760. height: math.unit(5, "feet"),
  28761. name: "Lopunny (Front)",
  28762. image: {
  28763. source: "./media/characters/cat/lopunny-front.svg",
  28764. extra: 1782 / 1469,
  28765. bottom: 38 / 1820
  28766. }
  28767. },
  28768. lopunnyBack: {
  28769. height: math.unit(5, "feet"),
  28770. name: "Lopunny (Back)",
  28771. image: {
  28772. source: "./media/characters/cat/lopunny-back.svg",
  28773. extra: 1660 / 1490,
  28774. bottom: 25 / 1685
  28775. }
  28776. },
  28777. },
  28778. [
  28779. {
  28780. name: "Really small",
  28781. height: math.unit(1, "nm")
  28782. },
  28783. {
  28784. name: "Micro",
  28785. height: math.unit(5, "inches")
  28786. },
  28787. {
  28788. name: "Normal",
  28789. height: math.unit(5 + 6 / 12, "feet"),
  28790. default: true
  28791. },
  28792. {
  28793. name: "Macro",
  28794. height: math.unit(50, "feet")
  28795. },
  28796. {
  28797. name: "Macro+",
  28798. height: math.unit(150, "feet")
  28799. },
  28800. {
  28801. name: "Megamacro",
  28802. height: math.unit(100, "miles")
  28803. },
  28804. ]
  28805. ))
  28806. characterMakers.push(() => makeCharacter(
  28807. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28808. {
  28809. front: {
  28810. height: math.unit(63.4, "meters"),
  28811. weight: math.unit(3.28349e+6, "kilograms"),
  28812. name: "Front",
  28813. image: {
  28814. source: "./media/characters/kirina-violet/front.svg",
  28815. extra: 2812 / 2725,
  28816. bottom: 0 / 2812
  28817. }
  28818. },
  28819. back: {
  28820. height: math.unit(63.4, "meters"),
  28821. weight: math.unit(3.28349e+6, "kilograms"),
  28822. name: "Back",
  28823. image: {
  28824. source: "./media/characters/kirina-violet/back.svg",
  28825. extra: 2812 / 2725,
  28826. bottom: 0 / 2812
  28827. }
  28828. },
  28829. mouth: {
  28830. height: math.unit(4.35, "meters"),
  28831. name: "Mouth",
  28832. image: {
  28833. source: "./media/characters/kirina-violet/mouth.svg"
  28834. }
  28835. },
  28836. paw: {
  28837. height: math.unit(5.6, "meters"),
  28838. name: "Paw",
  28839. image: {
  28840. source: "./media/characters/kirina-violet/paw.svg"
  28841. }
  28842. },
  28843. tail: {
  28844. height: math.unit(18, "meters"),
  28845. name: "Tail",
  28846. image: {
  28847. source: "./media/characters/kirina-violet/tail.svg"
  28848. }
  28849. },
  28850. },
  28851. [
  28852. {
  28853. name: "Macro",
  28854. height: math.unit(63.4, "meters"),
  28855. default: true
  28856. },
  28857. ]
  28858. ))
  28859. characterMakers.push(() => makeCharacter(
  28860. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28861. {
  28862. front: {
  28863. height: math.unit(75, "feet"),
  28864. name: "Front",
  28865. image: {
  28866. source: "./media/characters/cat-gigachu/front.svg",
  28867. extra: 1239/1027,
  28868. bottom: 32/1271
  28869. }
  28870. },
  28871. back: {
  28872. height: math.unit(75, "feet"),
  28873. name: "Back",
  28874. image: {
  28875. source: "./media/characters/cat-gigachu/back.svg",
  28876. extra: 1229/1030,
  28877. bottom: 9/1238
  28878. }
  28879. },
  28880. },
  28881. [
  28882. {
  28883. name: "Dynamax",
  28884. height: math.unit(75, "feet"),
  28885. default: true
  28886. },
  28887. ]
  28888. ))
  28889. characterMakers.push(() => makeCharacter(
  28890. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28891. {
  28892. front: {
  28893. height: math.unit(6, "feet"),
  28894. weight: math.unit(150, "lb"),
  28895. name: "Front",
  28896. image: {
  28897. source: "./media/characters/sfaiyan/front.svg",
  28898. extra: 999 / 978,
  28899. bottom: 5 / 1004
  28900. }
  28901. },
  28902. },
  28903. [
  28904. {
  28905. name: "Normal",
  28906. height: math.unit(1.82, "meters")
  28907. },
  28908. {
  28909. name: "Giant",
  28910. height: math.unit(2.27, "km"),
  28911. default: true
  28912. },
  28913. ]
  28914. ))
  28915. characterMakers.push(() => makeCharacter(
  28916. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28917. {
  28918. front: {
  28919. height: math.unit(179, "cm"),
  28920. weight: math.unit(100, "kg"),
  28921. name: "Front",
  28922. image: {
  28923. source: "./media/characters/raunehkeli/front.svg",
  28924. extra: 1934 / 1926,
  28925. bottom: 0 / 1934
  28926. }
  28927. },
  28928. },
  28929. [
  28930. {
  28931. name: "Normal",
  28932. height: math.unit(179, "cm")
  28933. },
  28934. {
  28935. name: "Maximum",
  28936. height: math.unit(575, "meters"),
  28937. default: true
  28938. },
  28939. ]
  28940. ))
  28941. characterMakers.push(() => makeCharacter(
  28942. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28943. {
  28944. front: {
  28945. height: math.unit(6, "feet"),
  28946. weight: math.unit(150, "lb"),
  28947. name: "Front",
  28948. image: {
  28949. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28950. extra: 2625 / 2518,
  28951. bottom: 60 / 2685
  28952. }
  28953. },
  28954. },
  28955. [
  28956. {
  28957. name: "Normal",
  28958. height: math.unit(6 + 2 / 12, "feet")
  28959. },
  28960. {
  28961. name: "Macro",
  28962. height: math.unit(1180, "feet"),
  28963. default: true
  28964. },
  28965. ]
  28966. ))
  28967. characterMakers.push(() => makeCharacter(
  28968. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28969. {
  28970. front: {
  28971. height: math.unit(5 + 6 / 12, "feet"),
  28972. weight: math.unit(108, "lb"),
  28973. name: "Front",
  28974. image: {
  28975. source: "./media/characters/lilith-zott/front.svg",
  28976. extra: 2510 / 2238,
  28977. bottom: 100 / 2610
  28978. }
  28979. },
  28980. frontDressed: {
  28981. height: math.unit(5 + 6 / 12, "feet"),
  28982. weight: math.unit(108, "lb"),
  28983. name: "Front (Dressed)",
  28984. image: {
  28985. source: "./media/characters/lilith-zott/front-dressed.svg",
  28986. extra: 2510 / 2238,
  28987. bottom: 100 / 2610
  28988. }
  28989. },
  28990. },
  28991. [
  28992. {
  28993. name: "Normal",
  28994. height: math.unit(5 + 6 / 12, "feet")
  28995. },
  28996. {
  28997. name: "Macro",
  28998. height: math.unit(1030, "feet"),
  28999. default: true
  29000. },
  29001. ]
  29002. ))
  29003. characterMakers.push(() => makeCharacter(
  29004. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29005. {
  29006. front: {
  29007. height: math.unit(6, "feet"),
  29008. weight: math.unit(150, "lb"),
  29009. name: "Front",
  29010. image: {
  29011. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29012. extra: 2567 / 2435,
  29013. bottom: 39 / 2606
  29014. }
  29015. },
  29016. frontSuper: {
  29017. height: math.unit(6, "feet"),
  29018. name: "Front (Super)",
  29019. image: {
  29020. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29021. extra: 2567 / 2435,
  29022. bottom: 39 / 2606
  29023. }
  29024. },
  29025. },
  29026. [
  29027. {
  29028. name: "Normal",
  29029. height: math.unit(5 + 10 / 12, "feet")
  29030. },
  29031. {
  29032. name: "Macro",
  29033. height: math.unit(1100, "feet"),
  29034. default: true
  29035. },
  29036. ]
  29037. ))
  29038. characterMakers.push(() => makeCharacter(
  29039. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29040. {
  29041. front: {
  29042. height: math.unit(100, "miles"),
  29043. name: "Front",
  29044. image: {
  29045. source: "./media/characters/sona/front.svg",
  29046. extra: 2433 / 2201,
  29047. bottom: 53 / 2486
  29048. }
  29049. },
  29050. foot: {
  29051. height: math.unit(16.1, "miles"),
  29052. name: "Foot",
  29053. image: {
  29054. source: "./media/characters/sona/foot.svg"
  29055. }
  29056. },
  29057. },
  29058. [
  29059. {
  29060. name: "Macro",
  29061. height: math.unit(100, "miles"),
  29062. default: true
  29063. },
  29064. ]
  29065. ))
  29066. characterMakers.push(() => makeCharacter(
  29067. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29068. {
  29069. front: {
  29070. height: math.unit(6, "feet"),
  29071. weight: math.unit(150, "lb"),
  29072. name: "Front",
  29073. image: {
  29074. source: "./media/characters/bailey/front.svg",
  29075. extra: 1778 / 1724,
  29076. bottom: 30 / 1808
  29077. }
  29078. },
  29079. },
  29080. [
  29081. {
  29082. name: "Micro",
  29083. height: math.unit(4, "inches")
  29084. },
  29085. {
  29086. name: "Normal",
  29087. height: math.unit(5 + 5 / 12, "feet"),
  29088. default: true
  29089. },
  29090. {
  29091. name: "Macro",
  29092. height: math.unit(250, "feet")
  29093. },
  29094. {
  29095. name: "Megamacro",
  29096. height: math.unit(100, "miles")
  29097. },
  29098. ]
  29099. ))
  29100. characterMakers.push(() => makeCharacter(
  29101. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29102. {
  29103. front: {
  29104. height: math.unit(5 + 2 / 12, "feet"),
  29105. weight: math.unit(120, "lb"),
  29106. name: "Front",
  29107. image: {
  29108. source: "./media/characters/snaps/front.svg",
  29109. extra: 2370 / 2177,
  29110. bottom: 48 / 2418
  29111. }
  29112. },
  29113. back: {
  29114. height: math.unit(5 + 2 / 12, "feet"),
  29115. weight: math.unit(120, "lb"),
  29116. name: "Back",
  29117. image: {
  29118. source: "./media/characters/snaps/back.svg",
  29119. extra: 2408 / 2258,
  29120. bottom: 15 / 2423
  29121. }
  29122. },
  29123. },
  29124. [
  29125. {
  29126. name: "Micro",
  29127. height: math.unit(9, "inches")
  29128. },
  29129. {
  29130. name: "Normal",
  29131. height: math.unit(5 + 2 / 12, "feet"),
  29132. default: true
  29133. },
  29134. {
  29135. name: "Mini Macro",
  29136. height: math.unit(10, "feet")
  29137. },
  29138. ]
  29139. ))
  29140. characterMakers.push(() => makeCharacter(
  29141. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29142. {
  29143. front: {
  29144. height: math.unit(1.8, "meters"),
  29145. weight: math.unit(85, "kg"),
  29146. name: "Front",
  29147. image: {
  29148. source: "./media/characters/azteck/front.svg",
  29149. extra: 2815 / 2625,
  29150. bottom: 89 / 2904
  29151. }
  29152. },
  29153. back: {
  29154. height: math.unit(1.8, "meters"),
  29155. weight: math.unit(85, "kg"),
  29156. name: "Back",
  29157. image: {
  29158. source: "./media/characters/azteck/back.svg",
  29159. extra: 2856 / 2648,
  29160. bottom: 85 / 2941
  29161. }
  29162. },
  29163. frontDressed: {
  29164. height: math.unit(1.8, "meters"),
  29165. weight: math.unit(85, "kg"),
  29166. name: "Front (Dressed)",
  29167. image: {
  29168. source: "./media/characters/azteck/front-dressed.svg",
  29169. extra: 2147 / 2003,
  29170. bottom: 68 / 2215
  29171. }
  29172. },
  29173. head: {
  29174. height: math.unit(0.47, "meters"),
  29175. weight: math.unit(85, "kg"),
  29176. name: "Head",
  29177. image: {
  29178. source: "./media/characters/azteck/head.svg"
  29179. }
  29180. },
  29181. },
  29182. [
  29183. {
  29184. name: "Bite sized",
  29185. height: math.unit(16, "cm")
  29186. },
  29187. {
  29188. name: "Normal",
  29189. height: math.unit(1.8, "meters"),
  29190. default: true
  29191. },
  29192. ]
  29193. ))
  29194. characterMakers.push(() => makeCharacter(
  29195. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29196. {
  29197. front: {
  29198. height: math.unit(6, "feet"),
  29199. weight: math.unit(150, "lb"),
  29200. name: "Front",
  29201. image: {
  29202. source: "./media/characters/pidge/front.svg",
  29203. extra: 620 / 588,
  29204. bottom: 9 / 629
  29205. }
  29206. },
  29207. back: {
  29208. height: math.unit(6, "feet"),
  29209. weight: math.unit(150, "lb"),
  29210. name: "Back",
  29211. image: {
  29212. source: "./media/characters/pidge/back.svg",
  29213. extra: 620 / 588,
  29214. bottom: 9 / 629
  29215. }
  29216. },
  29217. },
  29218. [
  29219. {
  29220. name: "Macro",
  29221. height: math.unit(1, "mile"),
  29222. default: true
  29223. },
  29224. ]
  29225. ))
  29226. characterMakers.push(() => makeCharacter(
  29227. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29228. {
  29229. front: {
  29230. height: math.unit(6, "feet"),
  29231. weight: math.unit(150, "lb"),
  29232. name: "Front",
  29233. image: {
  29234. source: "./media/characters/en/front.svg",
  29235. extra: 1697 / 1563,
  29236. bottom: 103 / 1800
  29237. }
  29238. },
  29239. back: {
  29240. height: math.unit(6, "feet"),
  29241. weight: math.unit(150, "lb"),
  29242. name: "Back",
  29243. image: {
  29244. source: "./media/characters/en/back.svg",
  29245. extra: 1700 / 1570,
  29246. bottom: 51 / 1751
  29247. }
  29248. },
  29249. frontDressed: {
  29250. height: math.unit(6, "feet"),
  29251. weight: math.unit(150, "lb"),
  29252. name: "Front (Dressed)",
  29253. image: {
  29254. source: "./media/characters/en/front-dressed.svg",
  29255. extra: 1697 / 1563,
  29256. bottom: 103 / 1800
  29257. }
  29258. },
  29259. backDressed: {
  29260. height: math.unit(6, "feet"),
  29261. weight: math.unit(150, "lb"),
  29262. name: "Back (Dressed)",
  29263. image: {
  29264. source: "./media/characters/en/back-dressed.svg",
  29265. extra: 1700 / 1570,
  29266. bottom: 51 / 1751
  29267. }
  29268. },
  29269. },
  29270. [
  29271. {
  29272. name: "Macro",
  29273. height: math.unit(210, "feet"),
  29274. default: true
  29275. },
  29276. ]
  29277. ))
  29278. characterMakers.push(() => makeCharacter(
  29279. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29280. {
  29281. front: {
  29282. height: math.unit(6, "feet"),
  29283. weight: math.unit(150, "lb"),
  29284. name: "Front",
  29285. image: {
  29286. source: "./media/characters/haze-orris/front.svg",
  29287. extra: 3975 / 3525,
  29288. bottom: 137 / 4112
  29289. }
  29290. },
  29291. },
  29292. [
  29293. {
  29294. name: "Micro",
  29295. height: math.unit(150, "mm"),
  29296. default: true
  29297. },
  29298. ]
  29299. ))
  29300. characterMakers.push(() => makeCharacter(
  29301. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29302. {
  29303. front: {
  29304. height: math.unit(6, "feet"),
  29305. weight: math.unit(150, "lb"),
  29306. name: "Front",
  29307. image: {
  29308. source: "./media/characters/casselene-yaro/front.svg",
  29309. extra: 4721 / 4541,
  29310. bottom: 82 / 4803
  29311. }
  29312. },
  29313. back: {
  29314. height: math.unit(6, "feet"),
  29315. weight: math.unit(150, "lb"),
  29316. name: "Back",
  29317. image: {
  29318. source: "./media/characters/casselene-yaro/back.svg",
  29319. extra: 4569 / 4377,
  29320. bottom: 69 / 4638
  29321. }
  29322. },
  29323. frontDressed: {
  29324. height: math.unit(6, "feet"),
  29325. weight: math.unit(150, "lb"),
  29326. name: "Front-dressed",
  29327. image: {
  29328. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29329. extra: 4721 / 4541,
  29330. bottom: 82 / 4803
  29331. }
  29332. },
  29333. },
  29334. [
  29335. {
  29336. name: "Macro",
  29337. height: math.unit(190, "feet"),
  29338. default: true
  29339. },
  29340. ]
  29341. ))
  29342. characterMakers.push(() => makeCharacter(
  29343. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29344. {
  29345. front: {
  29346. height: math.unit(6, "feet"),
  29347. weight: math.unit(150, "lb"),
  29348. name: "Front",
  29349. image: {
  29350. source: "./media/characters/myra-rue-delore/front.svg",
  29351. extra: 1340 / 1308,
  29352. bottom: 67 / 1407
  29353. }
  29354. },
  29355. back: {
  29356. height: math.unit(6, "feet"),
  29357. weight: math.unit(150, "lb"),
  29358. name: "Back",
  29359. image: {
  29360. source: "./media/characters/myra-rue-delore/back.svg",
  29361. extra: 1341 / 1310,
  29362. bottom: 40 / 1381
  29363. }
  29364. },
  29365. frontDressed: {
  29366. height: math.unit(6, "feet"),
  29367. weight: math.unit(150, "lb"),
  29368. name: "Front (Dressed)",
  29369. image: {
  29370. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29371. extra: 1340 / 1308,
  29372. bottom: 67 / 1407
  29373. }
  29374. },
  29375. },
  29376. [
  29377. {
  29378. name: "Macro",
  29379. height: math.unit(150, "feet"),
  29380. default: true
  29381. },
  29382. ]
  29383. ))
  29384. characterMakers.push(() => makeCharacter(
  29385. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29386. {
  29387. front: {
  29388. height: math.unit(10, "feet"),
  29389. weight: math.unit(15015, "lb"),
  29390. name: "Front",
  29391. image: {
  29392. source: "./media/characters/fem!plat/front.svg",
  29393. extra: 2799 / 2604,
  29394. bottom: 149 / 2948
  29395. }
  29396. },
  29397. },
  29398. [
  29399. {
  29400. name: "Normal",
  29401. height: math.unit(10, "feet"),
  29402. default: true
  29403. },
  29404. {
  29405. name: "Macro",
  29406. height: math.unit(100, "feet")
  29407. },
  29408. {
  29409. name: "Megamacro",
  29410. height: math.unit(1000, "feet")
  29411. },
  29412. ]
  29413. ))
  29414. characterMakers.push(() => makeCharacter(
  29415. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29416. {
  29417. front: {
  29418. height: math.unit(15 + 5 / 12, "feet"),
  29419. weight: math.unit(4600, "lb"),
  29420. name: "Front",
  29421. image: {
  29422. source: "./media/characters/neapolitan-ananassa/front.svg",
  29423. extra: 2903 / 2736,
  29424. bottom: 0 / 2903
  29425. }
  29426. },
  29427. side: {
  29428. height: math.unit(15 + 5 / 12, "feet"),
  29429. weight: math.unit(4600, "lb"),
  29430. name: "Side",
  29431. image: {
  29432. source: "./media/characters/neapolitan-ananassa/side.svg",
  29433. extra: 2925 / 2719,
  29434. bottom: 0 / 2925
  29435. }
  29436. },
  29437. back: {
  29438. height: math.unit(15 + 5 / 12, "feet"),
  29439. weight: math.unit(4600, "lb"),
  29440. name: "Back",
  29441. image: {
  29442. source: "./media/characters/neapolitan-ananassa/back.svg",
  29443. extra: 2903 / 2736,
  29444. bottom: 0 / 2903
  29445. }
  29446. },
  29447. },
  29448. [
  29449. {
  29450. name: "Normal",
  29451. height: math.unit(15 + 5 / 12, "feet"),
  29452. default: true
  29453. },
  29454. {
  29455. name: "Post-Millenium",
  29456. height: math.unit(35 + 5 / 12, "feet")
  29457. },
  29458. {
  29459. name: "Post-Era",
  29460. height: math.unit(450 + 5 / 12, "feet")
  29461. },
  29462. ]
  29463. ))
  29464. characterMakers.push(() => makeCharacter(
  29465. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29466. {
  29467. front: {
  29468. height: math.unit(300, "meters"),
  29469. weight: math.unit(125000, "tonnes"),
  29470. name: "Front",
  29471. image: {
  29472. source: "./media/characters/pazuzu/front.svg",
  29473. extra: 877 / 794,
  29474. bottom: 47 / 924
  29475. }
  29476. },
  29477. },
  29478. [
  29479. {
  29480. name: "Macro",
  29481. height: math.unit(300, "meters"),
  29482. default: true
  29483. },
  29484. ]
  29485. ))
  29486. characterMakers.push(() => makeCharacter(
  29487. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29488. {
  29489. side: {
  29490. height: math.unit(10 + 7 / 12, "feet"),
  29491. weight: math.unit(2.5, "tons"),
  29492. name: "Side",
  29493. image: {
  29494. source: "./media/characters/aasha/side.svg",
  29495. extra: 1345 / 1245,
  29496. bottom: 111 / 1456
  29497. }
  29498. },
  29499. back: {
  29500. height: math.unit(10 + 7 / 12, "feet"),
  29501. weight: math.unit(2.5, "tons"),
  29502. name: "Back",
  29503. image: {
  29504. source: "./media/characters/aasha/back.svg",
  29505. extra: 1133 / 1057,
  29506. bottom: 257 / 1390
  29507. }
  29508. },
  29509. },
  29510. [
  29511. {
  29512. name: "Normal",
  29513. height: math.unit(10 + 7 / 12, "feet"),
  29514. default: true
  29515. },
  29516. ]
  29517. ))
  29518. characterMakers.push(() => makeCharacter(
  29519. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29520. {
  29521. front: {
  29522. height: math.unit(6 + 3 / 12, "feet"),
  29523. name: "Front",
  29524. image: {
  29525. source: "./media/characters/nevan/front.svg",
  29526. extra: 704 / 704,
  29527. bottom: 28 / 732
  29528. }
  29529. },
  29530. back: {
  29531. height: math.unit(6 + 3 / 12, "feet"),
  29532. name: "Back",
  29533. image: {
  29534. source: "./media/characters/nevan/back.svg",
  29535. extra: 714 / 714,
  29536. bottom: 21 / 735
  29537. }
  29538. },
  29539. frontFlaccid: {
  29540. height: math.unit(6 + 3 / 12, "feet"),
  29541. name: "Front (Flaccid)",
  29542. image: {
  29543. source: "./media/characters/nevan/front-flaccid.svg",
  29544. extra: 704 / 704,
  29545. bottom: 28 / 732
  29546. }
  29547. },
  29548. frontErect: {
  29549. height: math.unit(6 + 3 / 12, "feet"),
  29550. name: "Front (Erect)",
  29551. image: {
  29552. source: "./media/characters/nevan/front-erect.svg",
  29553. extra: 704 / 704,
  29554. bottom: 28 / 732
  29555. }
  29556. },
  29557. backFlaccid: {
  29558. height: math.unit(6 + 3 / 12, "feet"),
  29559. name: "Back (Flaccid)",
  29560. image: {
  29561. source: "./media/characters/nevan/back-flaccid.svg",
  29562. extra: 714 / 714,
  29563. bottom: 21 / 735
  29564. }
  29565. },
  29566. },
  29567. [
  29568. {
  29569. name: "Normal",
  29570. height: math.unit(6 + 3 / 12, "feet"),
  29571. default: true
  29572. },
  29573. ]
  29574. ))
  29575. characterMakers.push(() => makeCharacter(
  29576. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29577. {
  29578. front: {
  29579. height: math.unit(4, "feet"),
  29580. name: "Front",
  29581. image: {
  29582. source: "./media/characters/arhan/front.svg",
  29583. extra: 3368 / 3133,
  29584. bottom: 0 / 3368
  29585. }
  29586. },
  29587. side: {
  29588. height: math.unit(4, "feet"),
  29589. name: "Side",
  29590. image: {
  29591. source: "./media/characters/arhan/side.svg",
  29592. extra: 3347 / 3105,
  29593. bottom: 0 / 3347
  29594. }
  29595. },
  29596. tongue: {
  29597. height: math.unit(1.42, "feet"),
  29598. name: "Tongue",
  29599. image: {
  29600. source: "./media/characters/arhan/tongue.svg"
  29601. }
  29602. },
  29603. head: {
  29604. height: math.unit(0.85, "feet"),
  29605. name: "Head",
  29606. image: {
  29607. source: "./media/characters/arhan/head.svg"
  29608. }
  29609. },
  29610. },
  29611. [
  29612. {
  29613. name: "Normal",
  29614. height: math.unit(4, "feet"),
  29615. default: true
  29616. },
  29617. ]
  29618. ))
  29619. characterMakers.push(() => makeCharacter(
  29620. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29621. {
  29622. front: {
  29623. height: math.unit(5 + 7.5 / 12, "feet"),
  29624. weight: math.unit(120, "lb"),
  29625. name: "Front",
  29626. image: {
  29627. source: "./media/characters/digi-duncan/front.svg",
  29628. extra: 330 / 326,
  29629. bottom: 16 / 346
  29630. }
  29631. },
  29632. side: {
  29633. height: math.unit(5 + 7.5 / 12, "feet"),
  29634. weight: math.unit(120, "lb"),
  29635. name: "Side",
  29636. image: {
  29637. source: "./media/characters/digi-duncan/side.svg",
  29638. extra: 341 / 337,
  29639. bottom: 1 / 342
  29640. }
  29641. },
  29642. back: {
  29643. height: math.unit(5 + 7.5 / 12, "feet"),
  29644. weight: math.unit(120, "lb"),
  29645. name: "Back",
  29646. image: {
  29647. source: "./media/characters/digi-duncan/back.svg",
  29648. extra: 330 / 326,
  29649. bottom: 12 / 342
  29650. }
  29651. },
  29652. },
  29653. [
  29654. {
  29655. name: "Speck",
  29656. height: math.unit(0.25, "mm")
  29657. },
  29658. {
  29659. name: "Micro",
  29660. height: math.unit(5, "mm")
  29661. },
  29662. {
  29663. name: "Tiny",
  29664. height: math.unit(0.5, "inches"),
  29665. default: true
  29666. },
  29667. {
  29668. name: "Human",
  29669. height: math.unit(5 + 7.5 / 12, "feet")
  29670. },
  29671. {
  29672. name: "Minigiant",
  29673. height: math.unit(8 + 5.25, "feet")
  29674. },
  29675. {
  29676. name: "Giant",
  29677. height: math.unit(2000, "feet")
  29678. },
  29679. {
  29680. name: "Mega",
  29681. height: math.unit(371.1, "miles")
  29682. },
  29683. ]
  29684. ))
  29685. characterMakers.push(() => makeCharacter(
  29686. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29687. {
  29688. front: {
  29689. height: math.unit(2, "meters"),
  29690. weight: math.unit(350, "kg"),
  29691. name: "Front",
  29692. image: {
  29693. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29694. extra: 898 / 838,
  29695. bottom: 9 / 907
  29696. }
  29697. },
  29698. },
  29699. [
  29700. {
  29701. name: "Micro",
  29702. height: math.unit(8, "meters")
  29703. },
  29704. {
  29705. name: "Normal",
  29706. height: math.unit(50, "meters"),
  29707. default: true
  29708. },
  29709. {
  29710. name: "Macro",
  29711. height: math.unit(500, "meters")
  29712. },
  29713. ]
  29714. ))
  29715. characterMakers.push(() => makeCharacter(
  29716. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29717. {
  29718. front: {
  29719. height: math.unit(6 + 6 / 12, "feet"),
  29720. name: "Front",
  29721. image: {
  29722. source: "./media/characters/khardesh/front.svg",
  29723. extra: 888 / 797,
  29724. bottom: 25 / 913
  29725. }
  29726. },
  29727. },
  29728. [
  29729. {
  29730. name: "Normal",
  29731. height: math.unit(6 + 6 / 12, "feet"),
  29732. default: true
  29733. },
  29734. {
  29735. name: "Normal+",
  29736. height: math.unit(4, "meters")
  29737. },
  29738. {
  29739. name: "Macro",
  29740. height: math.unit(50, "meters")
  29741. },
  29742. {
  29743. name: "Macro+",
  29744. height: math.unit(100, "meters")
  29745. },
  29746. {
  29747. name: "Megamacro",
  29748. height: math.unit(20, "km")
  29749. },
  29750. ]
  29751. ))
  29752. characterMakers.push(() => makeCharacter(
  29753. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29754. {
  29755. front: {
  29756. height: math.unit(6, "feet"),
  29757. weight: math.unit(150, "lb"),
  29758. name: "Front",
  29759. image: {
  29760. source: "./media/characters/kosho/front.svg",
  29761. extra: 1847 / 1847,
  29762. bottom: 86 / 1933
  29763. }
  29764. },
  29765. },
  29766. [
  29767. {
  29768. name: "Second-stage micro",
  29769. height: math.unit(0.5, "inches")
  29770. },
  29771. {
  29772. name: "First-stage micro",
  29773. height: math.unit(6, "inches")
  29774. },
  29775. {
  29776. name: "Normal",
  29777. height: math.unit(6, "feet"),
  29778. default: true
  29779. },
  29780. {
  29781. name: "First-stage macro",
  29782. height: math.unit(72, "feet")
  29783. },
  29784. {
  29785. name: "Second-stage macro",
  29786. height: math.unit(864, "feet")
  29787. },
  29788. ]
  29789. ))
  29790. characterMakers.push(() => makeCharacter(
  29791. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29792. {
  29793. normal: {
  29794. height: math.unit(4 + 6 / 12, "feet"),
  29795. name: "Normal",
  29796. image: {
  29797. source: "./media/characters/hydra/normal.svg",
  29798. extra: 2833 / 2634,
  29799. bottom: 68 / 2901
  29800. }
  29801. },
  29802. smol: {
  29803. height: math.unit(0.705, "inches"),
  29804. name: "Smol",
  29805. image: {
  29806. source: "./media/characters/hydra/smol.svg",
  29807. extra: 2715 / 2540,
  29808. bottom: 0 / 2715
  29809. }
  29810. },
  29811. },
  29812. [
  29813. {
  29814. name: "Normal",
  29815. height: math.unit(4 + 6 / 12, "feet"),
  29816. default: true
  29817. }
  29818. ]
  29819. ))
  29820. characterMakers.push(() => makeCharacter(
  29821. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29822. {
  29823. front: {
  29824. height: math.unit(0.6, "cm"),
  29825. name: "Front",
  29826. image: {
  29827. source: "./media/characters/daz/front.svg",
  29828. extra: 1682 / 1164,
  29829. bottom: 42 / 1724
  29830. }
  29831. },
  29832. },
  29833. [
  29834. {
  29835. name: "Normal",
  29836. height: math.unit(0.6, "cm"),
  29837. default: true
  29838. },
  29839. ]
  29840. ))
  29841. characterMakers.push(() => makeCharacter(
  29842. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29843. {
  29844. front: {
  29845. height: math.unit(6, "feet"),
  29846. weight: math.unit(235, "lb"),
  29847. name: "Front",
  29848. image: {
  29849. source: "./media/characters/theo-pangolin/front.svg",
  29850. extra: 1996 / 1969,
  29851. bottom: 115 / 2111
  29852. }
  29853. },
  29854. back: {
  29855. height: math.unit(6, "feet"),
  29856. weight: math.unit(235, "lb"),
  29857. name: "Back",
  29858. image: {
  29859. source: "./media/characters/theo-pangolin/back.svg",
  29860. extra: 1979 / 1979,
  29861. bottom: 40 / 2019
  29862. }
  29863. },
  29864. feral: {
  29865. height: math.unit(2, "feet"),
  29866. weight: math.unit(30, "lb"),
  29867. name: "Feral",
  29868. image: {
  29869. source: "./media/characters/theo-pangolin/feral.svg",
  29870. extra: 803 / 791,
  29871. bottom: 181 / 984
  29872. }
  29873. },
  29874. footFive: {
  29875. height: math.unit(1.43, "feet"),
  29876. name: "Foot (Five Toes)",
  29877. image: {
  29878. source: "./media/characters/theo-pangolin/foot-five.svg"
  29879. }
  29880. },
  29881. footFour: {
  29882. height: math.unit(1.43, "feet"),
  29883. name: "Foot (Four Toes)",
  29884. image: {
  29885. source: "./media/characters/theo-pangolin/foot-four.svg"
  29886. }
  29887. },
  29888. handFour: {
  29889. height: math.unit(0.81, "feet"),
  29890. name: "Hand (Four Fingers)",
  29891. image: {
  29892. source: "./media/characters/theo-pangolin/hand-four.svg"
  29893. }
  29894. },
  29895. handThree: {
  29896. height: math.unit(0.81, "feet"),
  29897. name: "Hand (Three Fingers)",
  29898. image: {
  29899. source: "./media/characters/theo-pangolin/hand-three.svg"
  29900. }
  29901. },
  29902. headFront: {
  29903. height: math.unit(1.37, "feet"),
  29904. name: "Head (Front)",
  29905. image: {
  29906. source: "./media/characters/theo-pangolin/head-front.svg"
  29907. }
  29908. },
  29909. headSide: {
  29910. height: math.unit(1.43, "feet"),
  29911. name: "Head (Side)",
  29912. image: {
  29913. source: "./media/characters/theo-pangolin/head-side.svg"
  29914. }
  29915. },
  29916. tongue: {
  29917. height: math.unit(2.29, "feet"),
  29918. name: "Tongue",
  29919. image: {
  29920. source: "./media/characters/theo-pangolin/tongue.svg"
  29921. }
  29922. },
  29923. },
  29924. [
  29925. {
  29926. name: "Normal",
  29927. height: math.unit(6, "feet")
  29928. },
  29929. {
  29930. name: "Macro",
  29931. height: math.unit(400, "feet"),
  29932. default: true
  29933. },
  29934. ]
  29935. ))
  29936. characterMakers.push(() => makeCharacter(
  29937. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29938. {
  29939. front: {
  29940. height: math.unit(6, "inches"),
  29941. weight: math.unit(0.036, "kg"),
  29942. name: "Front",
  29943. image: {
  29944. source: "./media/characters/renée/front.svg",
  29945. extra: 900 / 886,
  29946. bottom: 8 / 908
  29947. }
  29948. },
  29949. },
  29950. [
  29951. {
  29952. name: "Nano",
  29953. height: math.unit(1, "nm")
  29954. },
  29955. {
  29956. name: "Micro",
  29957. height: math.unit(1, "mm")
  29958. },
  29959. {
  29960. name: "Normal",
  29961. height: math.unit(6, "inches")
  29962. },
  29963. {
  29964. name: "Macro",
  29965. height: math.unit(2000, "feet"),
  29966. default: true
  29967. },
  29968. {
  29969. name: "Megamacro",
  29970. height: math.unit(2, "km")
  29971. },
  29972. {
  29973. name: "Gigamacro",
  29974. height: math.unit(2000, "km")
  29975. },
  29976. {
  29977. name: "Teramacro",
  29978. height: math.unit(250000, "km")
  29979. },
  29980. ]
  29981. ))
  29982. characterMakers.push(() => makeCharacter(
  29983. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29984. {
  29985. front: {
  29986. height: math.unit(4, "meters"),
  29987. weight: math.unit(150, "kg"),
  29988. name: "Front",
  29989. image: {
  29990. source: "./media/characters/caledvwlch/front.svg",
  29991. extra: 1760 / 1551,
  29992. bottom: 28 / 1788
  29993. }
  29994. },
  29995. side: {
  29996. height: math.unit(4, "meters"),
  29997. weight: math.unit(150, "kg"),
  29998. name: "Side",
  29999. image: {
  30000. source: "./media/characters/caledvwlch/side.svg",
  30001. extra: 1605 / 1536,
  30002. bottom: 31 / 1636
  30003. }
  30004. },
  30005. back: {
  30006. height: math.unit(4, "meters"),
  30007. weight: math.unit(150, "kg"),
  30008. name: "Back",
  30009. image: {
  30010. source: "./media/characters/caledvwlch/back.svg",
  30011. extra: 1635 / 1565,
  30012. bottom: 27 / 1662
  30013. }
  30014. },
  30015. },
  30016. [
  30017. {
  30018. name: "\"Incognito\"",
  30019. height: math.unit(4, "meters")
  30020. },
  30021. {
  30022. name: "Small rampage",
  30023. height: math.unit(600, "meters")
  30024. },
  30025. {
  30026. name: "Mega",
  30027. height: math.unit(30, "km")
  30028. },
  30029. {
  30030. name: "Home-size",
  30031. height: math.unit(50, "km"),
  30032. default: true
  30033. },
  30034. {
  30035. name: "Giga",
  30036. height: math.unit(300, "km")
  30037. },
  30038. {
  30039. name: "Lounging",
  30040. height: math.unit(11000, "km")
  30041. },
  30042. {
  30043. name: "Planet snacking",
  30044. height: math.unit(2000000, "km")
  30045. },
  30046. ]
  30047. ))
  30048. characterMakers.push(() => makeCharacter(
  30049. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30050. {
  30051. front: {
  30052. height: math.unit(6, "feet"),
  30053. weight: math.unit(215, "lb"),
  30054. name: "Front",
  30055. image: {
  30056. source: "./media/characters/sapphire-svell/front.svg",
  30057. extra: 495 / 455,
  30058. bottom: 20 / 515
  30059. }
  30060. },
  30061. back: {
  30062. height: math.unit(6, "feet"),
  30063. weight: math.unit(216, "lb"),
  30064. name: "Back",
  30065. image: {
  30066. source: "./media/characters/sapphire-svell/back.svg",
  30067. extra: 497 / 477,
  30068. bottom: 7 / 504
  30069. }
  30070. },
  30071. maw: {
  30072. height: math.unit(1.57, "feet"),
  30073. name: "Maw",
  30074. image: {
  30075. source: "./media/characters/sapphire-svell/maw.svg"
  30076. }
  30077. },
  30078. foot: {
  30079. height: math.unit(1.07, "feet"),
  30080. name: "Foot",
  30081. image: {
  30082. source: "./media/characters/sapphire-svell/foot.svg"
  30083. }
  30084. },
  30085. toering: {
  30086. height: math.unit(1.7, "inch"),
  30087. name: "Toering",
  30088. image: {
  30089. source: "./media/characters/sapphire-svell/toering.svg"
  30090. }
  30091. },
  30092. },
  30093. [
  30094. {
  30095. name: "Normal",
  30096. height: math.unit(300, "feet"),
  30097. default: true
  30098. },
  30099. {
  30100. name: "Augmented",
  30101. height: math.unit(1250, "feet")
  30102. },
  30103. {
  30104. name: "Unleashed",
  30105. height: math.unit(3000, "feet")
  30106. },
  30107. ]
  30108. ))
  30109. characterMakers.push(() => makeCharacter(
  30110. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30111. {
  30112. side: {
  30113. height: math.unit(2 + 3 / 12, "feet"),
  30114. weight: math.unit(110, "lb"),
  30115. name: "Side",
  30116. image: {
  30117. source: "./media/characters/glitch-flux/side.svg",
  30118. extra: 997 / 805,
  30119. bottom: 20 / 1017
  30120. }
  30121. },
  30122. },
  30123. [
  30124. {
  30125. name: "Normal",
  30126. height: math.unit(2 + 3 / 12, "feet"),
  30127. default: true
  30128. },
  30129. ]
  30130. ))
  30131. characterMakers.push(() => makeCharacter(
  30132. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30133. {
  30134. front: {
  30135. height: math.unit(4, "meters"),
  30136. name: "Front",
  30137. image: {
  30138. source: "./media/characters/mid/front.svg",
  30139. extra: 507 / 476,
  30140. bottom: 17 / 524
  30141. }
  30142. },
  30143. back: {
  30144. height: math.unit(4, "meters"),
  30145. name: "Back",
  30146. image: {
  30147. source: "./media/characters/mid/back.svg",
  30148. extra: 519 / 487,
  30149. bottom: 7 / 526
  30150. }
  30151. },
  30152. stuck: {
  30153. height: math.unit(2.2, "meters"),
  30154. name: "Stuck",
  30155. image: {
  30156. source: "./media/characters/mid/stuck.svg",
  30157. extra: 1951 / 1869,
  30158. bottom: 88 / 2039
  30159. }
  30160. }
  30161. },
  30162. [
  30163. {
  30164. name: "Normal",
  30165. height: math.unit(4, "meters"),
  30166. default: true
  30167. },
  30168. {
  30169. name: "Big",
  30170. height: math.unit(10, "meters")
  30171. },
  30172. {
  30173. name: "Macro",
  30174. height: math.unit(800, "meters")
  30175. },
  30176. {
  30177. name: "Megamacro",
  30178. height: math.unit(100, "km")
  30179. },
  30180. {
  30181. name: "Overgrown",
  30182. height: math.unit(1, "parsec")
  30183. },
  30184. ]
  30185. ))
  30186. characterMakers.push(() => makeCharacter(
  30187. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30188. {
  30189. front: {
  30190. height: math.unit(2.5, "meters"),
  30191. weight: math.unit(225, "kg"),
  30192. name: "Front",
  30193. image: {
  30194. source: "./media/characters/iris/front.svg",
  30195. extra: 3348 / 3251,
  30196. bottom: 205 / 3553
  30197. }
  30198. },
  30199. maw: {
  30200. height: math.unit(0.56, "meter"),
  30201. name: "Maw",
  30202. image: {
  30203. source: "./media/characters/iris/maw.svg"
  30204. }
  30205. },
  30206. },
  30207. [
  30208. {
  30209. name: "Mewter cat",
  30210. height: math.unit(1.2, "meters")
  30211. },
  30212. {
  30213. name: "Minimacro",
  30214. height: math.unit(2.5, "meters"),
  30215. default: true
  30216. },
  30217. {
  30218. name: "Macro",
  30219. height: math.unit(180, "meters")
  30220. },
  30221. {
  30222. name: "Megamacro",
  30223. height: math.unit(2746, "meters")
  30224. },
  30225. ]
  30226. ))
  30227. characterMakers.push(() => makeCharacter(
  30228. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30229. {
  30230. front: {
  30231. height: math.unit(6, "feet"),
  30232. weight: math.unit(135, "lb"),
  30233. name: "Front",
  30234. image: {
  30235. source: "./media/characters/axel/front.svg",
  30236. extra: 908 / 908,
  30237. bottom: 58 / 966
  30238. }
  30239. },
  30240. side: {
  30241. height: math.unit(6, "feet"),
  30242. weight: math.unit(135, "lb"),
  30243. name: "Side",
  30244. image: {
  30245. source: "./media/characters/axel/side.svg",
  30246. extra: 958 / 958,
  30247. bottom: 11 / 969
  30248. }
  30249. },
  30250. back: {
  30251. height: math.unit(6, "feet"),
  30252. weight: math.unit(135, "lb"),
  30253. name: "Back",
  30254. image: {
  30255. source: "./media/characters/axel/back.svg",
  30256. extra: 887 / 887,
  30257. bottom: 34 / 921
  30258. }
  30259. },
  30260. head: {
  30261. height: math.unit(1.07, "feet"),
  30262. name: "Head",
  30263. image: {
  30264. source: "./media/characters/axel/head.svg"
  30265. }
  30266. },
  30267. beak: {
  30268. height: math.unit(1.4, "feet"),
  30269. name: "Beak",
  30270. image: {
  30271. source: "./media/characters/axel/beak.svg"
  30272. }
  30273. },
  30274. beakSide: {
  30275. height: math.unit(1.4, "feet"),
  30276. name: "Beak Side",
  30277. image: {
  30278. source: "./media/characters/axel/beak-side.svg"
  30279. }
  30280. },
  30281. sheath: {
  30282. height: math.unit(0.5, "feet"),
  30283. name: "Sheath",
  30284. image: {
  30285. source: "./media/characters/axel/sheath.svg"
  30286. }
  30287. },
  30288. dick: {
  30289. height: math.unit(0.98, "feet"),
  30290. name: "Dick",
  30291. image: {
  30292. source: "./media/characters/axel/dick.svg"
  30293. }
  30294. },
  30295. },
  30296. [
  30297. {
  30298. name: "Macro",
  30299. height: math.unit(68, "meters"),
  30300. default: true
  30301. },
  30302. ]
  30303. ))
  30304. characterMakers.push(() => makeCharacter(
  30305. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30306. {
  30307. front: {
  30308. height: math.unit(3.5, "meters"),
  30309. weight: math.unit(1200, "kg"),
  30310. name: "Front",
  30311. image: {
  30312. source: "./media/characters/joanna/front.svg",
  30313. extra: 1596 / 1488,
  30314. bottom: 29 / 1625
  30315. }
  30316. },
  30317. back: {
  30318. height: math.unit(3.5, "meters"),
  30319. weight: math.unit(1200, "kg"),
  30320. name: "Back",
  30321. image: {
  30322. source: "./media/characters/joanna/back.svg",
  30323. extra: 1594 / 1495,
  30324. bottom: 26 / 1620
  30325. }
  30326. },
  30327. frontShorts: {
  30328. height: math.unit(3.5, "meters"),
  30329. weight: math.unit(1200, "kg"),
  30330. name: "Front (Shorts)",
  30331. image: {
  30332. source: "./media/characters/joanna/front-shorts.svg",
  30333. extra: 1596 / 1488,
  30334. bottom: 29 / 1625
  30335. }
  30336. },
  30337. frontBiker: {
  30338. height: math.unit(3.5, "meters"),
  30339. weight: math.unit(1200, "kg"),
  30340. name: "Front (Biker)",
  30341. image: {
  30342. source: "./media/characters/joanna/front-biker.svg",
  30343. extra: 1596 / 1488,
  30344. bottom: 29 / 1625
  30345. }
  30346. },
  30347. backBiker: {
  30348. height: math.unit(3.5, "meters"),
  30349. weight: math.unit(1200, "kg"),
  30350. name: "Back (Biker)",
  30351. image: {
  30352. source: "./media/characters/joanna/back-biker.svg",
  30353. extra: 1594 / 1495,
  30354. bottom: 88 / 1682
  30355. }
  30356. },
  30357. bikeLeft: {
  30358. height: math.unit(2.4, "meters"),
  30359. weight: math.unit(1600, "kg"),
  30360. name: "Bike (Left)",
  30361. image: {
  30362. source: "./media/characters/joanna/bike-left.svg",
  30363. extra: 720 / 720,
  30364. bottom: 8 / 728
  30365. }
  30366. },
  30367. bikeRight: {
  30368. height: math.unit(2.4, "meters"),
  30369. weight: math.unit(1600, "kg"),
  30370. name: "Bike (Right)",
  30371. image: {
  30372. source: "./media/characters/joanna/bike-right.svg",
  30373. extra: 720 / 720,
  30374. bottom: 8 / 728
  30375. }
  30376. },
  30377. },
  30378. [
  30379. {
  30380. name: "Incognito",
  30381. height: math.unit(3.5, "meters")
  30382. },
  30383. {
  30384. name: "Casual Big",
  30385. height: math.unit(200, "meters")
  30386. },
  30387. {
  30388. name: "Macro",
  30389. height: math.unit(600, "meters")
  30390. },
  30391. {
  30392. name: "Original",
  30393. height: math.unit(20, "km"),
  30394. default: true
  30395. },
  30396. {
  30397. name: "Giga",
  30398. height: math.unit(400, "km")
  30399. },
  30400. {
  30401. name: "Lounging",
  30402. height: math.unit(1500, "km")
  30403. },
  30404. {
  30405. name: "Planetary",
  30406. height: math.unit(200000, "km")
  30407. },
  30408. ]
  30409. ))
  30410. characterMakers.push(() => makeCharacter(
  30411. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30412. {
  30413. front: {
  30414. height: math.unit(6, "feet"),
  30415. weight: math.unit(150, "lb"),
  30416. name: "Front",
  30417. image: {
  30418. source: "./media/characters/hugo-sigil/front.svg",
  30419. extra: 522 / 500,
  30420. bottom: 2 / 524
  30421. }
  30422. },
  30423. back: {
  30424. height: math.unit(6, "feet"),
  30425. weight: math.unit(150, "lb"),
  30426. name: "Back",
  30427. image: {
  30428. source: "./media/characters/hugo-sigil/back.svg",
  30429. extra: 519 / 495,
  30430. bottom: 5 / 524
  30431. }
  30432. },
  30433. maw: {
  30434. height: math.unit(1.4, "feet"),
  30435. weight: math.unit(150, "lb"),
  30436. name: "Maw",
  30437. image: {
  30438. source: "./media/characters/hugo-sigil/maw.svg"
  30439. }
  30440. },
  30441. feet: {
  30442. height: math.unit(1.56, "feet"),
  30443. weight: math.unit(150, "lb"),
  30444. name: "Feet",
  30445. image: {
  30446. source: "./media/characters/hugo-sigil/feet.svg",
  30447. extra: 177 / 177,
  30448. bottom: 12 / 189
  30449. }
  30450. },
  30451. },
  30452. [
  30453. {
  30454. name: "Normal",
  30455. height: math.unit(6, "feet")
  30456. },
  30457. {
  30458. name: "Macro",
  30459. height: math.unit(200, "feet"),
  30460. default: true
  30461. },
  30462. ]
  30463. ))
  30464. characterMakers.push(() => makeCharacter(
  30465. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30466. {
  30467. front: {
  30468. height: math.unit(6, "feet"),
  30469. weight: math.unit(150, "lb"),
  30470. name: "Front",
  30471. image: {
  30472. source: "./media/characters/peri/front.svg",
  30473. extra: 2354 / 2233,
  30474. bottom: 49 / 2403
  30475. }
  30476. },
  30477. },
  30478. [
  30479. {
  30480. name: "Really Small",
  30481. height: math.unit(1, "nm")
  30482. },
  30483. {
  30484. name: "Micro",
  30485. height: math.unit(4, "inches")
  30486. },
  30487. {
  30488. name: "Normal",
  30489. height: math.unit(7, "inches"),
  30490. default: true
  30491. },
  30492. {
  30493. name: "Macro",
  30494. height: math.unit(400, "feet")
  30495. },
  30496. {
  30497. name: "Megamacro",
  30498. height: math.unit(100, "miles")
  30499. },
  30500. ]
  30501. ))
  30502. characterMakers.push(() => makeCharacter(
  30503. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30504. {
  30505. frontSlim: {
  30506. height: math.unit(7, "feet"),
  30507. name: "Front (Slim)",
  30508. image: {
  30509. source: "./media/characters/issilora/front-slim.svg",
  30510. extra: 529 / 449,
  30511. bottom: 53 / 582
  30512. }
  30513. },
  30514. sideSlim: {
  30515. height: math.unit(7, "feet"),
  30516. name: "Side (Slim)",
  30517. image: {
  30518. source: "./media/characters/issilora/side-slim.svg",
  30519. extra: 570 / 480,
  30520. bottom: 30 / 600
  30521. }
  30522. },
  30523. backSlim: {
  30524. height: math.unit(7, "feet"),
  30525. name: "Back (Slim)",
  30526. image: {
  30527. source: "./media/characters/issilora/back-slim.svg",
  30528. extra: 537 / 455,
  30529. bottom: 46 / 583
  30530. }
  30531. },
  30532. frontBuff: {
  30533. height: math.unit(7, "feet"),
  30534. name: "Front (Buff)",
  30535. image: {
  30536. source: "./media/characters/issilora/front-buff.svg",
  30537. extra: 2310 / 2035,
  30538. bottom: 335 / 2645
  30539. }
  30540. },
  30541. head: {
  30542. height: math.unit(1.94, "feet"),
  30543. name: "Head",
  30544. image: {
  30545. source: "./media/characters/issilora/head.svg"
  30546. }
  30547. },
  30548. },
  30549. [
  30550. {
  30551. name: "Minimum",
  30552. height: math.unit(7, "feet")
  30553. },
  30554. {
  30555. name: "Comfortable",
  30556. height: math.unit(17, "feet")
  30557. },
  30558. {
  30559. name: "Fun Size",
  30560. height: math.unit(47, "feet")
  30561. },
  30562. {
  30563. name: "Natural Macro",
  30564. height: math.unit(137, "feet"),
  30565. default: true
  30566. },
  30567. {
  30568. name: "Maximum Kaiju",
  30569. height: math.unit(397, "feet")
  30570. },
  30571. ]
  30572. ))
  30573. characterMakers.push(() => makeCharacter(
  30574. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30575. {
  30576. front: {
  30577. height: math.unit(50 + 9/12, "feet"),
  30578. weight: math.unit(32.8, "tons"),
  30579. name: "Front",
  30580. image: {
  30581. source: "./media/characters/irb'iiritaahn/front.svg",
  30582. extra: 1878/1826,
  30583. bottom: 326/2204
  30584. }
  30585. },
  30586. back: {
  30587. height: math.unit(50 + 9/12, "feet"),
  30588. weight: math.unit(32.8, "tons"),
  30589. name: "Back",
  30590. image: {
  30591. source: "./media/characters/irb'iiritaahn/back.svg",
  30592. extra: 2052/2018,
  30593. bottom: 152/2204
  30594. }
  30595. },
  30596. head: {
  30597. height: math.unit(12.86, "feet"),
  30598. name: "Head",
  30599. image: {
  30600. source: "./media/characters/irb'iiritaahn/head.svg"
  30601. }
  30602. },
  30603. maw: {
  30604. height: math.unit(9.66, "feet"),
  30605. name: "Maw",
  30606. image: {
  30607. source: "./media/characters/irb'iiritaahn/maw.svg"
  30608. }
  30609. },
  30610. frontDick: {
  30611. height: math.unit(8.78461, "feet"),
  30612. name: "Front Dick",
  30613. image: {
  30614. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30615. }
  30616. },
  30617. rearDick: {
  30618. height: math.unit(8.78461, "feet"),
  30619. name: "Rear Dick",
  30620. image: {
  30621. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30622. }
  30623. },
  30624. rearDickUnfolded: {
  30625. height: math.unit(8.78, "feet"),
  30626. name: "Rear Dick (Unfolded)",
  30627. image: {
  30628. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30629. }
  30630. },
  30631. wings: {
  30632. height: math.unit(43, "feet"),
  30633. name: "Wings",
  30634. image: {
  30635. source: "./media/characters/irb'iiritaahn/wings.svg"
  30636. }
  30637. },
  30638. },
  30639. [
  30640. {
  30641. name: "Macro",
  30642. height: math.unit(50 + 9/12, "feet"),
  30643. default: true
  30644. },
  30645. ]
  30646. ))
  30647. characterMakers.push(() => makeCharacter(
  30648. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30649. {
  30650. front: {
  30651. height: math.unit(205, "cm"),
  30652. weight: math.unit(102, "kg"),
  30653. name: "Front",
  30654. image: {
  30655. source: "./media/characters/irbisgreif/front.svg",
  30656. extra: 785/706,
  30657. bottom: 13/798
  30658. }
  30659. },
  30660. back: {
  30661. height: math.unit(205, "cm"),
  30662. weight: math.unit(102, "kg"),
  30663. name: "Back",
  30664. image: {
  30665. source: "./media/characters/irbisgreif/back.svg",
  30666. extra: 713/701,
  30667. bottom: 26/739
  30668. }
  30669. },
  30670. frontDressed: {
  30671. height: math.unit(216, "cm"),
  30672. weight: math.unit(102, "kg"),
  30673. name: "Front-dressed",
  30674. image: {
  30675. source: "./media/characters/irbisgreif/front-dressed.svg",
  30676. extra: 902/776,
  30677. bottom: 14/916
  30678. }
  30679. },
  30680. sideDressed: {
  30681. height: math.unit(195, "cm"),
  30682. weight: math.unit(102, "kg"),
  30683. name: "Side-dressed",
  30684. image: {
  30685. source: "./media/characters/irbisgreif/side-dressed.svg",
  30686. extra: 788/688,
  30687. bottom: 21/809
  30688. }
  30689. },
  30690. backDressed: {
  30691. height: math.unit(216, "cm"),
  30692. weight: math.unit(102, "kg"),
  30693. name: "Back-dressed",
  30694. image: {
  30695. source: "./media/characters/irbisgreif/back-dressed.svg",
  30696. extra: 901/783,
  30697. bottom: 10/911
  30698. }
  30699. },
  30700. dick: {
  30701. height: math.unit(0.49, "feet"),
  30702. name: "Dick",
  30703. image: {
  30704. source: "./media/characters/irbisgreif/dick.svg"
  30705. }
  30706. },
  30707. wingTop: {
  30708. height: math.unit(1.93 , "feet"),
  30709. name: "Wing-top",
  30710. image: {
  30711. source: "./media/characters/irbisgreif/wing-top.svg"
  30712. }
  30713. },
  30714. wingBottom: {
  30715. height: math.unit(1.93 , "feet"),
  30716. name: "Wing-bottom",
  30717. image: {
  30718. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30719. }
  30720. },
  30721. },
  30722. [
  30723. {
  30724. name: "Normal",
  30725. height: math.unit(216, "cm"),
  30726. default: true
  30727. },
  30728. ]
  30729. ))
  30730. characterMakers.push(() => makeCharacter(
  30731. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30732. {
  30733. front: {
  30734. height: math.unit(6, "feet"),
  30735. weight: math.unit(150, "lb"),
  30736. name: "Front",
  30737. image: {
  30738. source: "./media/characters/pride/front.svg",
  30739. extra: 1299/1230,
  30740. bottom: 18/1317
  30741. }
  30742. },
  30743. },
  30744. [
  30745. {
  30746. name: "Normal",
  30747. height: math.unit(7, "feet")
  30748. },
  30749. {
  30750. name: "Mini-macro",
  30751. height: math.unit(11, "feet")
  30752. },
  30753. {
  30754. name: "Macro",
  30755. height: math.unit(15, "meters"),
  30756. default: true
  30757. },
  30758. {
  30759. name: "Macro+",
  30760. height: math.unit(40, "meters")
  30761. },
  30762. ]
  30763. ))
  30764. characterMakers.push(() => makeCharacter(
  30765. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30766. {
  30767. front: {
  30768. height: math.unit(4 + 2 / 12, "feet"),
  30769. weight: math.unit(95, "lb"),
  30770. name: "Front",
  30771. image: {
  30772. source: "./media/characters/vaelophis-nyx/front.svg",
  30773. extra: 2532/2330,
  30774. bottom: 0/2532
  30775. }
  30776. },
  30777. back: {
  30778. height: math.unit(4 + 2 / 12, "feet"),
  30779. weight: math.unit(95, "lb"),
  30780. name: "Back",
  30781. image: {
  30782. source: "./media/characters/vaelophis-nyx/back.svg",
  30783. extra: 2484/2361,
  30784. bottom: 0/2484
  30785. }
  30786. },
  30787. feralSide: {
  30788. height: math.unit(2 + 1/12, "feet"),
  30789. weight: math.unit(20, "lb"),
  30790. name: "Feral (Side)",
  30791. image: {
  30792. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30793. extra: 1721/1581,
  30794. bottom: 70/1791
  30795. }
  30796. },
  30797. feralLazing: {
  30798. height: math.unit(1.08, "feet"),
  30799. weight: math.unit(20, "lb"),
  30800. name: "Feral (Lazing)",
  30801. image: {
  30802. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30803. extra: 822/822,
  30804. bottom: 248/1070
  30805. }
  30806. },
  30807. ear: {
  30808. height: math.unit(0.416, "feet"),
  30809. name: "Ear",
  30810. image: {
  30811. source: "./media/characters/vaelophis-nyx/ear.svg"
  30812. }
  30813. },
  30814. eye: {
  30815. height: math.unit(0.0748, "feet"),
  30816. name: "Eye",
  30817. image: {
  30818. source: "./media/characters/vaelophis-nyx/eye.svg"
  30819. }
  30820. },
  30821. mouth: {
  30822. height: math.unit(0.378, "feet"),
  30823. name: "Mouth",
  30824. image: {
  30825. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30826. }
  30827. },
  30828. spade: {
  30829. height: math.unit(0.55, "feet"),
  30830. name: "Spade",
  30831. image: {
  30832. source: "./media/characters/vaelophis-nyx/spade.svg"
  30833. }
  30834. },
  30835. },
  30836. [
  30837. {
  30838. name: "Normal",
  30839. height: math.unit(4 + 2/12, "feet"),
  30840. default: true
  30841. },
  30842. ]
  30843. ))
  30844. characterMakers.push(() => makeCharacter(
  30845. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30846. {
  30847. front: {
  30848. height: math.unit(7, "feet"),
  30849. weight: math.unit(231, "lb"),
  30850. name: "Front",
  30851. image: {
  30852. source: "./media/characters/flux/front.svg",
  30853. extra: 919/871,
  30854. bottom: 0/919
  30855. }
  30856. },
  30857. back: {
  30858. height: math.unit(7, "feet"),
  30859. weight: math.unit(231, "lb"),
  30860. name: "Back",
  30861. image: {
  30862. source: "./media/characters/flux/back.svg",
  30863. extra: 1040/992,
  30864. bottom: 0/1040
  30865. }
  30866. },
  30867. frontDressed: {
  30868. height: math.unit(7, "feet"),
  30869. weight: math.unit(231, "lb"),
  30870. name: "Front (Dressed)",
  30871. image: {
  30872. source: "./media/characters/flux/front-dressed.svg",
  30873. extra: 919/871,
  30874. bottom: 0/919
  30875. }
  30876. },
  30877. feralSide: {
  30878. height: math.unit(5, "feet"),
  30879. weight: math.unit(150, "lb"),
  30880. name: "Feral (Side)",
  30881. image: {
  30882. source: "./media/characters/flux/feral-side.svg",
  30883. extra: 598/528,
  30884. bottom: 28/626
  30885. }
  30886. },
  30887. head: {
  30888. height: math.unit(1.585, "feet"),
  30889. name: "Head",
  30890. image: {
  30891. source: "./media/characters/flux/head.svg"
  30892. }
  30893. },
  30894. headSide: {
  30895. height: math.unit(1.74, "feet"),
  30896. name: "Head (Side)",
  30897. image: {
  30898. source: "./media/characters/flux/head-side.svg"
  30899. }
  30900. },
  30901. headSideFire: {
  30902. height: math.unit(1.76, "feet"),
  30903. name: "Head (Side, Fire)",
  30904. image: {
  30905. source: "./media/characters/flux/head-side-fire.svg"
  30906. }
  30907. },
  30908. },
  30909. [
  30910. {
  30911. name: "Normal",
  30912. height: math.unit(7, "feet"),
  30913. default: true
  30914. },
  30915. ]
  30916. ))
  30917. characterMakers.push(() => makeCharacter(
  30918. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30919. {
  30920. front: {
  30921. height: math.unit(9, "feet"),
  30922. weight: math.unit(1012, "lb"),
  30923. name: "Front",
  30924. image: {
  30925. source: "./media/characters/ulfra-lupae/front.svg",
  30926. extra: 1083/1011,
  30927. bottom: 67/1150
  30928. }
  30929. },
  30930. },
  30931. [
  30932. {
  30933. name: "Micro",
  30934. height: math.unit(6, "inches")
  30935. },
  30936. {
  30937. name: "Socializing",
  30938. height: math.unit(6 + 5/12, "feet")
  30939. },
  30940. {
  30941. name: "Normal",
  30942. height: math.unit(9, "feet"),
  30943. default: true
  30944. },
  30945. {
  30946. name: "Macro",
  30947. height: math.unit(150, "feet")
  30948. },
  30949. ]
  30950. ))
  30951. characterMakers.push(() => makeCharacter(
  30952. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30953. {
  30954. front: {
  30955. height: math.unit(5 + 2/12, "feet"),
  30956. weight: math.unit(120, "lb"),
  30957. name: "Front",
  30958. image: {
  30959. source: "./media/characters/timber/front.svg",
  30960. extra: 2814/2705,
  30961. bottom: 181/2995
  30962. }
  30963. },
  30964. },
  30965. [
  30966. {
  30967. name: "Normal",
  30968. height: math.unit(5 + 2/12, "feet"),
  30969. default: true
  30970. },
  30971. ]
  30972. ))
  30973. characterMakers.push(() => makeCharacter(
  30974. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30975. {
  30976. front: {
  30977. height: math.unit(5 + 7/12, "feet"),
  30978. weight: math.unit(220, "lb"),
  30979. name: "Front",
  30980. image: {
  30981. source: "./media/characters/nicki/front.svg",
  30982. extra: 453/419,
  30983. bottom: 7/460
  30984. }
  30985. },
  30986. frontAlt: {
  30987. height: math.unit(5 + 7/12, "feet"),
  30988. weight: math.unit(220, "lb"),
  30989. name: "Front-alt",
  30990. image: {
  30991. source: "./media/characters/nicki/front-alt.svg",
  30992. extra: 435/411,
  30993. bottom: 12/447
  30994. }
  30995. },
  30996. back: {
  30997. height: math.unit(5 + 7/12, "feet"),
  30998. weight: math.unit(220, "lb"),
  30999. name: "Back",
  31000. image: {
  31001. source: "./media/characters/nicki/back.svg",
  31002. extra: 440/413,
  31003. bottom: 19/459
  31004. }
  31005. },
  31006. taur: {
  31007. height: math.unit(7 + 6/12, "feet"),
  31008. weight: math.unit(700, "lb"),
  31009. name: "Taur",
  31010. image: {
  31011. source: "./media/characters/nicki/taur.svg",
  31012. extra: 975/773,
  31013. bottom: 0/975
  31014. }
  31015. },
  31016. frontNsfw: {
  31017. height: math.unit(5 + 7/12, "feet"),
  31018. weight: math.unit(220, "lb"),
  31019. name: "Front (NSFW)",
  31020. image: {
  31021. source: "./media/characters/nicki/front-nsfw.svg",
  31022. extra: 453/419,
  31023. bottom: 7/460
  31024. }
  31025. },
  31026. frontNsfwAlt: {
  31027. height: math.unit(5 + 7/12, "feet"),
  31028. weight: math.unit(220, "lb"),
  31029. name: "Front (Alt, NSFW)",
  31030. image: {
  31031. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31032. extra: 435/411,
  31033. bottom: 12/447
  31034. }
  31035. },
  31036. backNsfw: {
  31037. height: math.unit(5 + 7/12, "feet"),
  31038. weight: math.unit(220, "lb"),
  31039. name: "Back (NSFW)",
  31040. image: {
  31041. source: "./media/characters/nicki/back-nsfw.svg",
  31042. extra: 440/413,
  31043. bottom: 19/459
  31044. }
  31045. },
  31046. head: {
  31047. height: math.unit(2.1, "feet"),
  31048. name: "Head",
  31049. image: {
  31050. source: "./media/characters/nicki/head.svg"
  31051. }
  31052. },
  31053. paw: {
  31054. height: math.unit(1.88, "feet"),
  31055. name: "Paw",
  31056. image: {
  31057. source: "./media/characters/nicki/paw.svg"
  31058. }
  31059. },
  31060. },
  31061. [
  31062. {
  31063. name: "Normal",
  31064. height: math.unit(5 + 7/12, "feet"),
  31065. default: true
  31066. },
  31067. ]
  31068. ))
  31069. characterMakers.push(() => makeCharacter(
  31070. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31071. {
  31072. front: {
  31073. height: math.unit(7 + 10/12, "feet"),
  31074. weight: math.unit(3.5, "tons"),
  31075. name: "Front",
  31076. image: {
  31077. source: "./media/characters/lee/front.svg",
  31078. extra: 1773/1615,
  31079. bottom: 86/1859
  31080. }
  31081. },
  31082. hand: {
  31083. height: math.unit(1.78, "feet"),
  31084. name: "Hand",
  31085. image: {
  31086. source: "./media/characters/lee/hand.svg"
  31087. }
  31088. },
  31089. maw: {
  31090. height: math.unit(1.18, "feet"),
  31091. name: "Maw",
  31092. image: {
  31093. source: "./media/characters/lee/maw.svg"
  31094. }
  31095. },
  31096. },
  31097. [
  31098. {
  31099. name: "Normal",
  31100. height: math.unit(7 + 10/12, "feet"),
  31101. default: true
  31102. },
  31103. ]
  31104. ))
  31105. characterMakers.push(() => makeCharacter(
  31106. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31107. {
  31108. front: {
  31109. height: math.unit(9, "feet"),
  31110. name: "Front",
  31111. image: {
  31112. source: "./media/characters/guti/front.svg",
  31113. extra: 4551/4355,
  31114. bottom: 123/4674
  31115. }
  31116. },
  31117. tongue: {
  31118. height: math.unit(1, "feet"),
  31119. name: "Tongue",
  31120. image: {
  31121. source: "./media/characters/guti/tongue.svg"
  31122. }
  31123. },
  31124. paw: {
  31125. height: math.unit(1.18, "feet"),
  31126. name: "Paw",
  31127. image: {
  31128. source: "./media/characters/guti/paw.svg"
  31129. }
  31130. },
  31131. },
  31132. [
  31133. {
  31134. name: "Normal",
  31135. height: math.unit(9, "feet"),
  31136. default: true
  31137. },
  31138. ]
  31139. ))
  31140. characterMakers.push(() => makeCharacter(
  31141. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31142. {
  31143. side: {
  31144. height: math.unit(5, "meters"),
  31145. name: "Side",
  31146. image: {
  31147. source: "./media/characters/vesper/side.svg",
  31148. extra: 1605/1518,
  31149. bottom: 0/1605
  31150. }
  31151. },
  31152. },
  31153. [
  31154. {
  31155. name: "Small",
  31156. height: math.unit(5, "meters")
  31157. },
  31158. {
  31159. name: "Sage",
  31160. height: math.unit(100, "meters"),
  31161. default: true
  31162. },
  31163. {
  31164. name: "Fun Size",
  31165. height: math.unit(600, "meters")
  31166. },
  31167. {
  31168. name: "Goddess",
  31169. height: math.unit(20000, "km")
  31170. },
  31171. {
  31172. name: "Maximum",
  31173. height: math.unit(5, "galaxies")
  31174. },
  31175. ]
  31176. ))
  31177. characterMakers.push(() => makeCharacter(
  31178. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31179. {
  31180. front: {
  31181. height: math.unit(6 + 3/12, "feet"),
  31182. weight: math.unit(190, "lb"),
  31183. name: "Front",
  31184. image: {
  31185. source: "./media/characters/gawain/front.svg",
  31186. extra: 2222/2139,
  31187. bottom: 90/2312
  31188. }
  31189. },
  31190. back: {
  31191. height: math.unit(6 + 3/12, "feet"),
  31192. weight: math.unit(190, "lb"),
  31193. name: "Back",
  31194. image: {
  31195. source: "./media/characters/gawain/back.svg",
  31196. extra: 2199/2111,
  31197. bottom: 73/2272
  31198. }
  31199. },
  31200. },
  31201. [
  31202. {
  31203. name: "Normal",
  31204. height: math.unit(6 + 3/12, "feet"),
  31205. default: true
  31206. },
  31207. ]
  31208. ))
  31209. characterMakers.push(() => makeCharacter(
  31210. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31211. {
  31212. side: {
  31213. height: math.unit(3.5, "meters"),
  31214. weight: math.unit(16000, "lb"),
  31215. name: "Side",
  31216. image: {
  31217. source: "./media/characters/dascalti/side.svg",
  31218. extra: 392/273,
  31219. bottom: 47/439
  31220. }
  31221. },
  31222. breath: {
  31223. height: math.unit(7.4, "feet"),
  31224. name: "Breath",
  31225. image: {
  31226. source: "./media/characters/dascalti/breath.svg"
  31227. }
  31228. },
  31229. fed: {
  31230. height: math.unit(3.6, "meters"),
  31231. weight: math.unit(16000, "lb"),
  31232. name: "Fed",
  31233. image: {
  31234. source: "./media/characters/dascalti/fed.svg",
  31235. extra: 1419/820,
  31236. bottom: 95/1514
  31237. }
  31238. },
  31239. },
  31240. [
  31241. {
  31242. name: "Normal",
  31243. height: math.unit(3.5, "meters"),
  31244. default: true
  31245. },
  31246. ]
  31247. ))
  31248. characterMakers.push(() => makeCharacter(
  31249. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31250. {
  31251. front: {
  31252. height: math.unit(3 + 5/12, "feet"),
  31253. name: "Front",
  31254. image: {
  31255. source: "./media/characters/mauve/front.svg",
  31256. extra: 1126/1033,
  31257. bottom: 65/1191
  31258. }
  31259. },
  31260. side: {
  31261. height: math.unit(3 + 5/12, "feet"),
  31262. name: "Side",
  31263. image: {
  31264. source: "./media/characters/mauve/side.svg",
  31265. extra: 1089/1001,
  31266. bottom: 29/1118
  31267. }
  31268. },
  31269. back: {
  31270. height: math.unit(3 + 5/12, "feet"),
  31271. name: "Back",
  31272. image: {
  31273. source: "./media/characters/mauve/back.svg",
  31274. extra: 1173/1053,
  31275. bottom: 109/1282
  31276. }
  31277. },
  31278. },
  31279. [
  31280. {
  31281. name: "Normal",
  31282. height: math.unit(3 + 5/12, "feet"),
  31283. default: true
  31284. },
  31285. ]
  31286. ))
  31287. characterMakers.push(() => makeCharacter(
  31288. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31289. {
  31290. front: {
  31291. height: math.unit(6 + 3/12, "feet"),
  31292. weight: math.unit(430, "lb"),
  31293. name: "Front",
  31294. image: {
  31295. source: "./media/characters/carlos/front.svg",
  31296. extra: 1964/1913,
  31297. bottom: 70/2034
  31298. }
  31299. },
  31300. },
  31301. [
  31302. {
  31303. name: "Normal",
  31304. height: math.unit(6 + 3/12, "feet"),
  31305. default: true
  31306. },
  31307. ]
  31308. ))
  31309. characterMakers.push(() => makeCharacter(
  31310. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31311. {
  31312. back: {
  31313. height: math.unit(5 + 10/12, "feet"),
  31314. weight: math.unit(200, "lb"),
  31315. name: "Back",
  31316. image: {
  31317. source: "./media/characters/jax/back.svg",
  31318. extra: 764/739,
  31319. bottom: 25/789
  31320. }
  31321. },
  31322. },
  31323. [
  31324. {
  31325. name: "Normal",
  31326. height: math.unit(5 + 10/12, "feet"),
  31327. default: true
  31328. },
  31329. ]
  31330. ))
  31331. characterMakers.push(() => makeCharacter(
  31332. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31333. {
  31334. front: {
  31335. height: math.unit(8, "feet"),
  31336. weight: math.unit(250, "lb"),
  31337. name: "Front",
  31338. image: {
  31339. source: "./media/characters/eikthynir/front.svg",
  31340. extra: 1332/1166,
  31341. bottom: 82/1414
  31342. }
  31343. },
  31344. back: {
  31345. height: math.unit(8, "feet"),
  31346. weight: math.unit(250, "lb"),
  31347. name: "Back",
  31348. image: {
  31349. source: "./media/characters/eikthynir/back.svg",
  31350. extra: 1342/1190,
  31351. bottom: 19/1361
  31352. }
  31353. },
  31354. dick: {
  31355. height: math.unit(2.35, "feet"),
  31356. name: "Dick",
  31357. image: {
  31358. source: "./media/characters/eikthynir/dick.svg"
  31359. }
  31360. },
  31361. },
  31362. [
  31363. {
  31364. name: "Normal",
  31365. height: math.unit(8, "feet"),
  31366. default: true
  31367. },
  31368. ]
  31369. ))
  31370. characterMakers.push(() => makeCharacter(
  31371. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31372. {
  31373. front: {
  31374. height: math.unit(99, "meters"),
  31375. weight: math.unit(13000, "tons"),
  31376. name: "Front",
  31377. image: {
  31378. source: "./media/characters/zlmos/front.svg",
  31379. extra: 2202/1992,
  31380. bottom: 315/2517
  31381. }
  31382. },
  31383. },
  31384. [
  31385. {
  31386. name: "Macro",
  31387. height: math.unit(99, "meters"),
  31388. default: true
  31389. },
  31390. ]
  31391. ))
  31392. characterMakers.push(() => makeCharacter(
  31393. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31394. {
  31395. front: {
  31396. height: math.unit(6 + 5/12, "feet"),
  31397. name: "Front",
  31398. image: {
  31399. source: "./media/characters/purri/front.svg",
  31400. extra: 1698/1610,
  31401. bottom: 32/1730
  31402. }
  31403. },
  31404. frontAlt: {
  31405. height: math.unit(6 + 5/12, "feet"),
  31406. name: "Front (Alt)",
  31407. image: {
  31408. source: "./media/characters/purri/front-alt.svg",
  31409. extra: 450/420,
  31410. bottom: 26/476
  31411. }
  31412. },
  31413. boots: {
  31414. height: math.unit(5.5, "feet"),
  31415. name: "Boots",
  31416. image: {
  31417. source: "./media/characters/purri/boots.svg",
  31418. extra: 905/853,
  31419. bottom: 18/923
  31420. }
  31421. },
  31422. lying: {
  31423. height: math.unit(2, "feet"),
  31424. name: "Lying",
  31425. image: {
  31426. source: "./media/characters/purri/lying.svg",
  31427. extra: 940/843,
  31428. bottom: 146/1086
  31429. }
  31430. },
  31431. devious: {
  31432. height: math.unit(1.77, "feet"),
  31433. name: "Devious",
  31434. image: {
  31435. source: "./media/characters/purri/devious.svg",
  31436. extra: 1440/1155,
  31437. bottom: 147/1587
  31438. }
  31439. },
  31440. bean: {
  31441. height: math.unit(1.94, "feet"),
  31442. name: "Bean",
  31443. image: {
  31444. source: "./media/characters/purri/bean.svg"
  31445. }
  31446. },
  31447. },
  31448. [
  31449. {
  31450. name: "Micro",
  31451. height: math.unit(1, "mm")
  31452. },
  31453. {
  31454. name: "Normal",
  31455. height: math.unit(6 + 5/12, "feet"),
  31456. default: true
  31457. },
  31458. {
  31459. name: "Macro :3c",
  31460. height: math.unit(2, "miles")
  31461. },
  31462. ]
  31463. ))
  31464. characterMakers.push(() => makeCharacter(
  31465. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31466. {
  31467. front: {
  31468. height: math.unit(6 + 2/12, "feet"),
  31469. weight: math.unit(250, "lb"),
  31470. name: "Front",
  31471. image: {
  31472. source: "./media/characters/moonlight/front.svg",
  31473. extra: 1044/908,
  31474. bottom: 56/1100
  31475. }
  31476. },
  31477. feral: {
  31478. height: math.unit(3 + 1/12, "feet"),
  31479. weight: math.unit(50, "kg"),
  31480. name: "Feral",
  31481. image: {
  31482. source: "./media/characters/moonlight/feral.svg",
  31483. extra: 3705/2791,
  31484. bottom: 145/3850
  31485. }
  31486. },
  31487. paw: {
  31488. height: math.unit(1, "feet"),
  31489. name: "Paw",
  31490. image: {
  31491. source: "./media/characters/moonlight/paw.svg"
  31492. }
  31493. },
  31494. paws: {
  31495. height: math.unit(0.98, "feet"),
  31496. name: "Paws",
  31497. image: {
  31498. source: "./media/characters/moonlight/paws.svg",
  31499. extra: 939/939,
  31500. bottom: 50/989
  31501. }
  31502. },
  31503. mouth: {
  31504. height: math.unit(0.48, "feet"),
  31505. name: "Mouth",
  31506. image: {
  31507. source: "./media/characters/moonlight/mouth.svg"
  31508. }
  31509. },
  31510. dick: {
  31511. height: math.unit(1.46, "feet"),
  31512. name: "Dick",
  31513. image: {
  31514. source: "./media/characters/moonlight/dick.svg"
  31515. }
  31516. },
  31517. },
  31518. [
  31519. {
  31520. name: "Normal",
  31521. height: math.unit(6 + 2/12, "feet"),
  31522. default: true
  31523. },
  31524. {
  31525. name: "Macro",
  31526. height: math.unit(300, "feet")
  31527. },
  31528. {
  31529. name: "Macro+",
  31530. height: math.unit(1, "mile")
  31531. },
  31532. {
  31533. name: "Mt. Moon",
  31534. height: math.unit(5, "miles")
  31535. },
  31536. {
  31537. name: "Megamacro",
  31538. height: math.unit(15, "miles")
  31539. },
  31540. ]
  31541. ))
  31542. characterMakers.push(() => makeCharacter(
  31543. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31544. {
  31545. back: {
  31546. height: math.unit(6, "feet"),
  31547. weight: math.unit(150, "lb"),
  31548. name: "Back",
  31549. image: {
  31550. source: "./media/characters/sylen/back.svg",
  31551. extra: 1335/1273,
  31552. bottom: 107/1442
  31553. }
  31554. },
  31555. },
  31556. [
  31557. {
  31558. name: "Normal",
  31559. height: math.unit(5 + 5/12, "feet")
  31560. },
  31561. {
  31562. name: "Megamacro",
  31563. height: math.unit(3, "miles"),
  31564. default: true
  31565. },
  31566. ]
  31567. ))
  31568. characterMakers.push(() => makeCharacter(
  31569. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31570. {
  31571. front: {
  31572. height: math.unit(6, "feet"),
  31573. weight: math.unit(190, "lb"),
  31574. name: "Front",
  31575. image: {
  31576. source: "./media/characters/huttser/front.svg",
  31577. extra: 1152/1058,
  31578. bottom: 23/1175
  31579. }
  31580. },
  31581. side: {
  31582. height: math.unit(6, "feet"),
  31583. weight: math.unit(190, "lb"),
  31584. name: "Side",
  31585. image: {
  31586. source: "./media/characters/huttser/side.svg",
  31587. extra: 1174/1065,
  31588. bottom: 18/1192
  31589. }
  31590. },
  31591. back: {
  31592. height: math.unit(6, "feet"),
  31593. weight: math.unit(190, "lb"),
  31594. name: "Back",
  31595. image: {
  31596. source: "./media/characters/huttser/back.svg",
  31597. extra: 1158/1056,
  31598. bottom: 12/1170
  31599. }
  31600. },
  31601. },
  31602. [
  31603. ]
  31604. ))
  31605. characterMakers.push(() => makeCharacter(
  31606. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31607. {
  31608. side: {
  31609. height: math.unit(12 + 9/12, "feet"),
  31610. weight: math.unit(15000, "lb"),
  31611. name: "Side",
  31612. image: {
  31613. source: "./media/characters/faan/side.svg",
  31614. extra: 2747/2697,
  31615. bottom: 0/2747
  31616. }
  31617. },
  31618. front: {
  31619. height: math.unit(12 + 9/12, "feet"),
  31620. weight: math.unit(15000, "lb"),
  31621. name: "Front",
  31622. image: {
  31623. source: "./media/characters/faan/front.svg",
  31624. extra: 607/571,
  31625. bottom: 24/631
  31626. }
  31627. },
  31628. head: {
  31629. height: math.unit(2.85, "feet"),
  31630. name: "Head",
  31631. image: {
  31632. source: "./media/characters/faan/head.svg"
  31633. }
  31634. },
  31635. headAlt: {
  31636. height: math.unit(3.13, "feet"),
  31637. name: "Head-alt",
  31638. image: {
  31639. source: "./media/characters/faan/head-alt.svg"
  31640. }
  31641. },
  31642. },
  31643. [
  31644. {
  31645. name: "Normal",
  31646. height: math.unit(12 + 9/12, "feet"),
  31647. default: true
  31648. },
  31649. ]
  31650. ))
  31651. characterMakers.push(() => makeCharacter(
  31652. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31653. {
  31654. front: {
  31655. height: math.unit(6, "feet"),
  31656. weight: math.unit(300, "lb"),
  31657. name: "Front",
  31658. image: {
  31659. source: "./media/characters/tanio/front.svg",
  31660. extra: 711/673,
  31661. bottom: 25/736
  31662. }
  31663. },
  31664. },
  31665. [
  31666. {
  31667. name: "Normal",
  31668. height: math.unit(6, "feet"),
  31669. default: true
  31670. },
  31671. ]
  31672. ))
  31673. characterMakers.push(() => makeCharacter(
  31674. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31675. {
  31676. front: {
  31677. height: math.unit(3, "inches"),
  31678. name: "Front",
  31679. image: {
  31680. source: "./media/characters/noboru/front.svg",
  31681. extra: 1039/932,
  31682. bottom: 18/1057
  31683. }
  31684. },
  31685. },
  31686. [
  31687. {
  31688. name: "Micro",
  31689. height: math.unit(3, "inches"),
  31690. default: true
  31691. },
  31692. ]
  31693. ))
  31694. characterMakers.push(() => makeCharacter(
  31695. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31696. {
  31697. front: {
  31698. height: math.unit(1.85, "meters"),
  31699. weight: math.unit(80, "kg"),
  31700. name: "Front",
  31701. image: {
  31702. source: "./media/characters/daniel-barrett/front.svg",
  31703. extra: 355/337,
  31704. bottom: 9/364
  31705. }
  31706. },
  31707. },
  31708. [
  31709. {
  31710. name: "Pico",
  31711. height: math.unit(0.0433, "mm")
  31712. },
  31713. {
  31714. name: "Nano",
  31715. height: math.unit(1.5, "mm")
  31716. },
  31717. {
  31718. name: "Micro",
  31719. height: math.unit(5.3, "cm"),
  31720. default: true
  31721. },
  31722. {
  31723. name: "Normal",
  31724. height: math.unit(1.85, "meters")
  31725. },
  31726. {
  31727. name: "Macro",
  31728. height: math.unit(64.7, "meters")
  31729. },
  31730. {
  31731. name: "Megamacro",
  31732. height: math.unit(2.26, "km")
  31733. },
  31734. {
  31735. name: "Gigamacro",
  31736. height: math.unit(79, "km")
  31737. },
  31738. {
  31739. name: "Teramacro",
  31740. height: math.unit(2765, "km")
  31741. },
  31742. {
  31743. name: "Petamacro",
  31744. height: math.unit(96678, "km")
  31745. },
  31746. ]
  31747. ))
  31748. characterMakers.push(() => makeCharacter(
  31749. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31750. {
  31751. front: {
  31752. height: math.unit(30, "meters"),
  31753. weight: math.unit(400, "tons"),
  31754. name: "Front",
  31755. image: {
  31756. source: "./media/characters/zeel/front.svg",
  31757. extra: 2599/2599,
  31758. bottom: 226/2825
  31759. }
  31760. },
  31761. },
  31762. [
  31763. {
  31764. name: "Macro",
  31765. height: math.unit(30, "meters"),
  31766. default: true
  31767. },
  31768. ]
  31769. ))
  31770. characterMakers.push(() => makeCharacter(
  31771. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31772. {
  31773. front: {
  31774. height: math.unit(6 + 7/12, "feet"),
  31775. weight: math.unit(210, "lb"),
  31776. name: "Front",
  31777. image: {
  31778. source: "./media/characters/tarn/front.svg",
  31779. extra: 3517/3220,
  31780. bottom: 91/3608
  31781. }
  31782. },
  31783. back: {
  31784. height: math.unit(6 + 7/12, "feet"),
  31785. weight: math.unit(210, "lb"),
  31786. name: "Back",
  31787. image: {
  31788. source: "./media/characters/tarn/back.svg",
  31789. extra: 3566/3241,
  31790. bottom: 34/3600
  31791. }
  31792. },
  31793. dick: {
  31794. height: math.unit(1.65, "feet"),
  31795. name: "Dick",
  31796. image: {
  31797. source: "./media/characters/tarn/dick.svg"
  31798. }
  31799. },
  31800. paw: {
  31801. height: math.unit(1.80, "feet"),
  31802. name: "Paw",
  31803. image: {
  31804. source: "./media/characters/tarn/paw.svg"
  31805. }
  31806. },
  31807. tongue: {
  31808. height: math.unit(0.97, "feet"),
  31809. name: "Tongue",
  31810. image: {
  31811. source: "./media/characters/tarn/tongue.svg"
  31812. }
  31813. },
  31814. },
  31815. [
  31816. {
  31817. name: "Micro",
  31818. height: math.unit(4, "inches")
  31819. },
  31820. {
  31821. name: "Normal",
  31822. height: math.unit(6 + 7/12, "feet"),
  31823. default: true
  31824. },
  31825. {
  31826. name: "Macro",
  31827. height: math.unit(300, "feet")
  31828. },
  31829. ]
  31830. ))
  31831. characterMakers.push(() => makeCharacter(
  31832. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31833. {
  31834. front: {
  31835. height: math.unit(5 + 7/12, "feet"),
  31836. weight: math.unit(80, "kg"),
  31837. name: "Front",
  31838. image: {
  31839. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31840. extra: 3023/2865,
  31841. bottom: 33/3056
  31842. }
  31843. },
  31844. back: {
  31845. height: math.unit(5 + 7/12, "feet"),
  31846. weight: math.unit(80, "kg"),
  31847. name: "Back",
  31848. image: {
  31849. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31850. extra: 3020/2886,
  31851. bottom: 30/3050
  31852. }
  31853. },
  31854. dick: {
  31855. height: math.unit(0.98, "feet"),
  31856. name: "Dick",
  31857. image: {
  31858. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31859. }
  31860. },
  31861. anatomy: {
  31862. height: math.unit(2.86, "feet"),
  31863. name: "Anatomy",
  31864. image: {
  31865. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31866. }
  31867. },
  31868. },
  31869. [
  31870. {
  31871. name: "Really Small",
  31872. height: math.unit(2, "inches")
  31873. },
  31874. {
  31875. name: "Micro",
  31876. height: math.unit(5.583, "inches")
  31877. },
  31878. {
  31879. name: "Normal",
  31880. height: math.unit(5 + 7/12, "feet"),
  31881. default: true
  31882. },
  31883. {
  31884. name: "Macro",
  31885. height: math.unit(67, "feet")
  31886. },
  31887. {
  31888. name: "Megamacro",
  31889. height: math.unit(134, "feet")
  31890. },
  31891. ]
  31892. ))
  31893. characterMakers.push(() => makeCharacter(
  31894. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31895. {
  31896. front: {
  31897. height: math.unit(9, "feet"),
  31898. weight: math.unit(120, "lb"),
  31899. name: "Front",
  31900. image: {
  31901. source: "./media/characters/sally/front.svg",
  31902. extra: 1506/1349,
  31903. bottom: 66/1572
  31904. }
  31905. },
  31906. },
  31907. [
  31908. {
  31909. name: "Normal",
  31910. height: math.unit(9, "feet"),
  31911. default: true
  31912. },
  31913. ]
  31914. ))
  31915. characterMakers.push(() => makeCharacter(
  31916. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31917. {
  31918. front: {
  31919. height: math.unit(8, "feet"),
  31920. weight: math.unit(900, "lb"),
  31921. name: "Front",
  31922. image: {
  31923. source: "./media/characters/owen/front.svg",
  31924. extra: 1761/1657,
  31925. bottom: 74/1835
  31926. }
  31927. },
  31928. side: {
  31929. height: math.unit(8, "feet"),
  31930. weight: math.unit(900, "lb"),
  31931. name: "Side",
  31932. image: {
  31933. source: "./media/characters/owen/side.svg",
  31934. extra: 1797/1734,
  31935. bottom: 30/1827
  31936. }
  31937. },
  31938. back: {
  31939. height: math.unit(8, "feet"),
  31940. weight: math.unit(900, "lb"),
  31941. name: "Back",
  31942. image: {
  31943. source: "./media/characters/owen/back.svg",
  31944. extra: 1796/1706,
  31945. bottom: 59/1855
  31946. }
  31947. },
  31948. maw: {
  31949. height: math.unit(1.76, "feet"),
  31950. name: "Maw",
  31951. image: {
  31952. source: "./media/characters/owen/maw.svg"
  31953. }
  31954. },
  31955. },
  31956. [
  31957. {
  31958. name: "Normal",
  31959. height: math.unit(8, "feet"),
  31960. default: true
  31961. },
  31962. ]
  31963. ))
  31964. characterMakers.push(() => makeCharacter(
  31965. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31966. {
  31967. front: {
  31968. height: math.unit(4, "feet"),
  31969. weight: math.unit(400, "lb"),
  31970. name: "Front",
  31971. image: {
  31972. source: "./media/characters/ryth/front.svg",
  31973. extra: 1920/1748,
  31974. bottom: 42/1962
  31975. }
  31976. },
  31977. back: {
  31978. height: math.unit(4, "feet"),
  31979. weight: math.unit(400, "lb"),
  31980. name: "Back",
  31981. image: {
  31982. source: "./media/characters/ryth/back.svg",
  31983. extra: 1897/1690,
  31984. bottom: 89/1986
  31985. }
  31986. },
  31987. mouth: {
  31988. height: math.unit(1.39, "feet"),
  31989. name: "Mouth",
  31990. image: {
  31991. source: "./media/characters/ryth/mouth.svg"
  31992. }
  31993. },
  31994. tailmaw: {
  31995. height: math.unit(1.23, "feet"),
  31996. name: "Tailmaw",
  31997. image: {
  31998. source: "./media/characters/ryth/tailmaw.svg"
  31999. }
  32000. },
  32001. goia: {
  32002. height: math.unit(12, "feet"),
  32003. weight: math.unit(10800, "lb"),
  32004. name: "Goia",
  32005. image: {
  32006. source: "./media/characters/ryth/goia.svg",
  32007. extra: 3450/3198,
  32008. bottom: 61/3511
  32009. }
  32010. },
  32011. },
  32012. [
  32013. {
  32014. name: "Normal",
  32015. height: math.unit(4, "feet"),
  32016. default: true
  32017. },
  32018. ]
  32019. ))
  32020. characterMakers.push(() => makeCharacter(
  32021. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32022. {
  32023. front: {
  32024. height: math.unit(7, "feet"),
  32025. weight: math.unit(180, "lb"),
  32026. name: "Front",
  32027. image: {
  32028. source: "./media/characters/necrolance/front.svg",
  32029. extra: 1062/947,
  32030. bottom: 41/1103
  32031. }
  32032. },
  32033. back: {
  32034. height: math.unit(7, "feet"),
  32035. weight: math.unit(180, "lb"),
  32036. name: "Back",
  32037. image: {
  32038. source: "./media/characters/necrolance/back.svg",
  32039. extra: 1045/984,
  32040. bottom: 14/1059
  32041. }
  32042. },
  32043. wing: {
  32044. height: math.unit(2.67, "feet"),
  32045. name: "Wing",
  32046. image: {
  32047. source: "./media/characters/necrolance/wing.svg"
  32048. }
  32049. },
  32050. },
  32051. [
  32052. {
  32053. name: "Normal",
  32054. height: math.unit(7, "feet"),
  32055. default: true
  32056. },
  32057. ]
  32058. ))
  32059. characterMakers.push(() => makeCharacter(
  32060. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32061. {
  32062. front: {
  32063. height: math.unit(76, "meters"),
  32064. weight: math.unit(30000, "tons"),
  32065. name: "Front",
  32066. image: {
  32067. source: "./media/characters/tyler/front.svg",
  32068. extra: 1640/1640,
  32069. bottom: 114/1754
  32070. }
  32071. },
  32072. },
  32073. [
  32074. {
  32075. name: "Macro",
  32076. height: math.unit(76, "meters"),
  32077. default: true
  32078. },
  32079. ]
  32080. ))
  32081. characterMakers.push(() => makeCharacter(
  32082. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32083. {
  32084. front: {
  32085. height: math.unit(4 + 11/12, "feet"),
  32086. weight: math.unit(132, "lb"),
  32087. name: "Front",
  32088. image: {
  32089. source: "./media/characters/icey/front.svg",
  32090. extra: 2750/2550,
  32091. bottom: 33/2783
  32092. }
  32093. },
  32094. back: {
  32095. height: math.unit(4 + 11/12, "feet"),
  32096. weight: math.unit(132, "lb"),
  32097. name: "Back",
  32098. image: {
  32099. source: "./media/characters/icey/back.svg",
  32100. extra: 2624/2481,
  32101. bottom: 35/2659
  32102. }
  32103. },
  32104. },
  32105. [
  32106. {
  32107. name: "Normal",
  32108. height: math.unit(4 + 11/12, "feet"),
  32109. default: true
  32110. },
  32111. ]
  32112. ))
  32113. characterMakers.push(() => makeCharacter(
  32114. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32115. {
  32116. front: {
  32117. height: math.unit(100, "feet"),
  32118. weight: math.unit(0, "lb"),
  32119. name: "Front",
  32120. image: {
  32121. source: "./media/characters/smile/front.svg",
  32122. extra: 2983/2912,
  32123. bottom: 162/3145
  32124. }
  32125. },
  32126. back: {
  32127. height: math.unit(100, "feet"),
  32128. weight: math.unit(0, "lb"),
  32129. name: "Back",
  32130. image: {
  32131. source: "./media/characters/smile/back.svg",
  32132. extra: 3143/3031,
  32133. bottom: 91/3234
  32134. }
  32135. },
  32136. head: {
  32137. height: math.unit(26.3, "feet"),
  32138. weight: math.unit(0, "lb"),
  32139. name: "Head",
  32140. image: {
  32141. source: "./media/characters/smile/head.svg"
  32142. }
  32143. },
  32144. collar: {
  32145. height: math.unit(5.3, "feet"),
  32146. weight: math.unit(0, "lb"),
  32147. name: "Collar",
  32148. image: {
  32149. source: "./media/characters/smile/collar.svg"
  32150. }
  32151. },
  32152. },
  32153. [
  32154. {
  32155. name: "Macro",
  32156. height: math.unit(100, "feet"),
  32157. default: true
  32158. },
  32159. ]
  32160. ))
  32161. characterMakers.push(() => makeCharacter(
  32162. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32163. {
  32164. dragon: {
  32165. height: math.unit(26, "feet"),
  32166. weight: math.unit(36, "tons"),
  32167. name: "Dragon",
  32168. image: {
  32169. source: "./media/characters/arimphae/dragon.svg",
  32170. extra: 1574/983,
  32171. bottom: 357/1931
  32172. }
  32173. },
  32174. drake: {
  32175. height: math.unit(9, "feet"),
  32176. weight: math.unit(1.5, "tons"),
  32177. name: "Drake",
  32178. image: {
  32179. source: "./media/characters/arimphae/drake.svg",
  32180. extra: 1120/925,
  32181. bottom: 435/1555
  32182. }
  32183. },
  32184. },
  32185. [
  32186. {
  32187. name: "Small",
  32188. height: math.unit(26*5/9, "feet")
  32189. },
  32190. {
  32191. name: "Normal",
  32192. height: math.unit(26, "feet"),
  32193. default: true
  32194. },
  32195. ]
  32196. ))
  32197. characterMakers.push(() => makeCharacter(
  32198. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32199. {
  32200. front: {
  32201. height: math.unit(8 + 9/12, "feet"),
  32202. name: "Front",
  32203. image: {
  32204. source: "./media/characters/xander/front.svg",
  32205. extra: 1237/974,
  32206. bottom: 94/1331
  32207. }
  32208. },
  32209. },
  32210. [
  32211. {
  32212. name: "Normal",
  32213. height: math.unit(8 + 9/12, "feet"),
  32214. default: true
  32215. },
  32216. {
  32217. name: "Gaze Grabber",
  32218. height: math.unit(13 + 8/12, "feet")
  32219. },
  32220. {
  32221. name: "Jaw Dropper",
  32222. height: math.unit(27, "feet")
  32223. },
  32224. {
  32225. name: "Show Stopper",
  32226. height: math.unit(136, "feet")
  32227. },
  32228. {
  32229. name: "Superstar",
  32230. height: math.unit(1.9e6, "miles")
  32231. },
  32232. ]
  32233. ))
  32234. characterMakers.push(() => makeCharacter(
  32235. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32236. {
  32237. side: {
  32238. height: math.unit(2100, "feet"),
  32239. name: "Side",
  32240. image: {
  32241. source: "./media/characters/osiris/side.svg",
  32242. extra: 1105/939,
  32243. bottom: 167/1272
  32244. }
  32245. },
  32246. },
  32247. [
  32248. {
  32249. name: "Macro",
  32250. height: math.unit(2100, "feet"),
  32251. default: true
  32252. },
  32253. ]
  32254. ))
  32255. characterMakers.push(() => makeCharacter(
  32256. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32257. {
  32258. front: {
  32259. height: math.unit(6 + 8/12, "feet"),
  32260. weight: math.unit(225, "lb"),
  32261. name: "Front",
  32262. image: {
  32263. source: "./media/characters/rhys-londe/front.svg",
  32264. extra: 2258/2141,
  32265. bottom: 188/2446
  32266. }
  32267. },
  32268. back: {
  32269. height: math.unit(6 + 8/12, "feet"),
  32270. weight: math.unit(225, "lb"),
  32271. name: "Back",
  32272. image: {
  32273. source: "./media/characters/rhys-londe/back.svg",
  32274. extra: 2237/2137,
  32275. bottom: 63/2300
  32276. }
  32277. },
  32278. frontNsfw: {
  32279. height: math.unit(6 + 8/12, "feet"),
  32280. weight: math.unit(225, "lb"),
  32281. name: "Front (NSFW)",
  32282. image: {
  32283. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32284. extra: 2258/2141,
  32285. bottom: 188/2446
  32286. }
  32287. },
  32288. backNsfw: {
  32289. height: math.unit(6 + 8/12, "feet"),
  32290. weight: math.unit(225, "lb"),
  32291. name: "Back (NSFW)",
  32292. image: {
  32293. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32294. extra: 2237/2137,
  32295. bottom: 63/2300
  32296. }
  32297. },
  32298. dick: {
  32299. height: math.unit(30, "inches"),
  32300. name: "Dick",
  32301. image: {
  32302. source: "./media/characters/rhys-londe/dick.svg"
  32303. }
  32304. },
  32305. maw: {
  32306. height: math.unit(1.6, "feet"),
  32307. name: "Maw",
  32308. image: {
  32309. source: "./media/characters/rhys-londe/maw.svg"
  32310. }
  32311. },
  32312. },
  32313. [
  32314. {
  32315. name: "Normal",
  32316. height: math.unit(6 + 8/12, "feet"),
  32317. default: true
  32318. },
  32319. ]
  32320. ))
  32321. characterMakers.push(() => makeCharacter(
  32322. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32323. {
  32324. front: {
  32325. height: math.unit(3 + 10/12, "feet"),
  32326. weight: math.unit(90, "lb"),
  32327. name: "Front",
  32328. image: {
  32329. source: "./media/characters/taivas-ensim/front.svg",
  32330. extra: 1327/1216,
  32331. bottom: 96/1423
  32332. }
  32333. },
  32334. back: {
  32335. height: math.unit(3 + 10/12, "feet"),
  32336. weight: math.unit(90, "lb"),
  32337. name: "Back",
  32338. image: {
  32339. source: "./media/characters/taivas-ensim/back.svg",
  32340. extra: 1355/1247,
  32341. bottom: 11/1366
  32342. }
  32343. },
  32344. frontNsfw: {
  32345. height: math.unit(3 + 10/12, "feet"),
  32346. weight: math.unit(90, "lb"),
  32347. name: "Front (NSFW)",
  32348. image: {
  32349. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32350. extra: 1327/1216,
  32351. bottom: 96/1423
  32352. }
  32353. },
  32354. backNsfw: {
  32355. height: math.unit(3 + 10/12, "feet"),
  32356. weight: math.unit(90, "lb"),
  32357. name: "Back (NSFW)",
  32358. image: {
  32359. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32360. extra: 1355/1247,
  32361. bottom: 11/1366
  32362. }
  32363. },
  32364. },
  32365. [
  32366. {
  32367. name: "Normal",
  32368. height: math.unit(3 + 10/12, "feet"),
  32369. default: true
  32370. },
  32371. ]
  32372. ))
  32373. characterMakers.push(() => makeCharacter(
  32374. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32375. {
  32376. front: {
  32377. height: math.unit(9 + 6/12, "feet"),
  32378. weight: math.unit(940, "lb"),
  32379. name: "Front",
  32380. image: {
  32381. source: "./media/characters/byliss/front.svg",
  32382. extra: 1327/1290,
  32383. bottom: 82/1409
  32384. }
  32385. },
  32386. back: {
  32387. height: math.unit(9 + 6/12, "feet"),
  32388. weight: math.unit(940, "lb"),
  32389. name: "Back",
  32390. image: {
  32391. source: "./media/characters/byliss/back.svg",
  32392. extra: 1376/1349,
  32393. bottom: 9/1385
  32394. }
  32395. },
  32396. frontNsfw: {
  32397. height: math.unit(9 + 6/12, "feet"),
  32398. weight: math.unit(940, "lb"),
  32399. name: "Front (NSFW)",
  32400. image: {
  32401. source: "./media/characters/byliss/front-nsfw.svg",
  32402. extra: 1327/1290,
  32403. bottom: 82/1409
  32404. }
  32405. },
  32406. backNsfw: {
  32407. height: math.unit(9 + 6/12, "feet"),
  32408. weight: math.unit(940, "lb"),
  32409. name: "Back (NSFW)",
  32410. image: {
  32411. source: "./media/characters/byliss/back-nsfw.svg",
  32412. extra: 1376/1349,
  32413. bottom: 9/1385
  32414. }
  32415. },
  32416. },
  32417. [
  32418. {
  32419. name: "Normal",
  32420. height: math.unit(9 + 6/12, "feet"),
  32421. default: true
  32422. },
  32423. ]
  32424. ))
  32425. characterMakers.push(() => makeCharacter(
  32426. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32427. {
  32428. front: {
  32429. height: math.unit(5 + 2/12, "feet"),
  32430. weight: math.unit(200, "lb"),
  32431. name: "Front",
  32432. image: {
  32433. source: "./media/characters/noraly/front.svg",
  32434. extra: 4985/4773,
  32435. bottom: 150/5135
  32436. }
  32437. },
  32438. full: {
  32439. height: math.unit(5 + 2/12, "feet"),
  32440. weight: math.unit(164, "lb"),
  32441. name: "Full",
  32442. image: {
  32443. source: "./media/characters/noraly/full.svg",
  32444. extra: 1114/1059,
  32445. bottom: 35/1149
  32446. }
  32447. },
  32448. fuller: {
  32449. height: math.unit(5 + 2/12, "feet"),
  32450. weight: math.unit(230, "lb"),
  32451. name: "Fuller",
  32452. image: {
  32453. source: "./media/characters/noraly/fuller.svg",
  32454. extra: 1114/1059,
  32455. bottom: 35/1149
  32456. }
  32457. },
  32458. fullest: {
  32459. height: math.unit(5 + 2/12, "feet"),
  32460. weight: math.unit(300, "lb"),
  32461. name: "Fullest",
  32462. image: {
  32463. source: "./media/characters/noraly/fullest.svg",
  32464. extra: 1114/1059,
  32465. bottom: 35/1149
  32466. }
  32467. },
  32468. },
  32469. [
  32470. {
  32471. name: "Normal",
  32472. height: math.unit(5 + 2/12, "feet"),
  32473. default: true
  32474. },
  32475. ]
  32476. ))
  32477. characterMakers.push(() => makeCharacter(
  32478. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32479. {
  32480. front: {
  32481. height: math.unit(5 + 2/12, "feet"),
  32482. weight: math.unit(210, "lb"),
  32483. name: "Front",
  32484. image: {
  32485. source: "./media/characters/pera/front.svg",
  32486. extra: 1560/1531,
  32487. bottom: 165/1725
  32488. }
  32489. },
  32490. back: {
  32491. height: math.unit(5 + 2/12, "feet"),
  32492. weight: math.unit(210, "lb"),
  32493. name: "Back",
  32494. image: {
  32495. source: "./media/characters/pera/back.svg",
  32496. extra: 1523/1493,
  32497. bottom: 152/1675
  32498. }
  32499. },
  32500. dick: {
  32501. height: math.unit(2.4, "feet"),
  32502. name: "Dick",
  32503. image: {
  32504. source: "./media/characters/pera/dick.svg"
  32505. }
  32506. },
  32507. },
  32508. [
  32509. {
  32510. name: "Normal",
  32511. height: math.unit(5 + 2/12, "feet"),
  32512. default: true
  32513. },
  32514. ]
  32515. ))
  32516. characterMakers.push(() => makeCharacter(
  32517. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32518. {
  32519. front: {
  32520. height: math.unit(12, "feet"),
  32521. weight: math.unit(3200, "lb"),
  32522. name: "Front",
  32523. image: {
  32524. source: "./media/characters/julian/front.svg",
  32525. extra: 2962/2701,
  32526. bottom: 184/3146
  32527. }
  32528. },
  32529. maw: {
  32530. height: math.unit(5.35, "feet"),
  32531. name: "Maw",
  32532. image: {
  32533. source: "./media/characters/julian/maw.svg"
  32534. }
  32535. },
  32536. paw: {
  32537. height: math.unit(3.07, "feet"),
  32538. name: "Paw",
  32539. image: {
  32540. source: "./media/characters/julian/paw.svg"
  32541. }
  32542. },
  32543. },
  32544. [
  32545. {
  32546. name: "Default",
  32547. height: math.unit(12, "feet"),
  32548. default: true
  32549. },
  32550. {
  32551. name: "Big",
  32552. height: math.unit(50, "feet")
  32553. },
  32554. {
  32555. name: "Really Big",
  32556. height: math.unit(1, "mile")
  32557. },
  32558. {
  32559. name: "Extremely Big",
  32560. height: math.unit(100, "miles")
  32561. },
  32562. {
  32563. name: "Planet Hugger",
  32564. height: math.unit(200, "megameters")
  32565. },
  32566. {
  32567. name: "Unreasonably Big",
  32568. height: math.unit(1e300, "meters")
  32569. },
  32570. ]
  32571. ))
  32572. characterMakers.push(() => makeCharacter(
  32573. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32574. {
  32575. solgooleo: {
  32576. height: math.unit(4, "meters"),
  32577. weight: math.unit(6000*1.5, "kg"),
  32578. volume: math.unit(6000, "liters"),
  32579. name: "Solgooleo",
  32580. image: {
  32581. source: "./media/characters/pi/solgooleo.svg",
  32582. extra: 388/331,
  32583. bottom: 29/417
  32584. }
  32585. },
  32586. },
  32587. [
  32588. {
  32589. name: "Normal",
  32590. height: math.unit(4, "meters"),
  32591. default: true
  32592. },
  32593. ]
  32594. ))
  32595. characterMakers.push(() => makeCharacter(
  32596. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32597. {
  32598. front: {
  32599. height: math.unit(8 + 2/12, "feet"),
  32600. weight: math.unit(4, "tons"),
  32601. name: "Front",
  32602. image: {
  32603. source: "./media/characters/shaun/front.svg",
  32604. extra: 1550/1505,
  32605. bottom: 353/1903
  32606. }
  32607. },
  32608. },
  32609. [
  32610. {
  32611. name: "Lorg",
  32612. height: math.unit(8 + 2/12, "feet"),
  32613. default: true
  32614. },
  32615. ]
  32616. ))
  32617. characterMakers.push(() => makeCharacter(
  32618. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32619. {
  32620. front: {
  32621. height: math.unit(7, "feet"),
  32622. name: "Front",
  32623. image: {
  32624. source: "./media/characters/sini/front.svg",
  32625. extra: 726/678,
  32626. bottom: 35/761
  32627. }
  32628. },
  32629. back: {
  32630. height: math.unit(7, "feet"),
  32631. name: "Back",
  32632. image: {
  32633. source: "./media/characters/sini/back.svg",
  32634. extra: 743/701,
  32635. bottom: 12/755
  32636. }
  32637. },
  32638. mawAnthro: {
  32639. height: math.unit(2.14, "feet"),
  32640. name: "Maw (Anthro)",
  32641. image: {
  32642. source: "./media/characters/sini/maw-anthro.svg"
  32643. }
  32644. },
  32645. dick: {
  32646. height: math.unit(1.45, "feet"),
  32647. name: "Dick (Anthro)",
  32648. image: {
  32649. source: "./media/characters/sini/dick-anthro.svg"
  32650. }
  32651. },
  32652. feral: {
  32653. height: math.unit(16, "feet"),
  32654. name: "Feral",
  32655. image: {
  32656. source: "./media/characters/sini/feral.svg",
  32657. extra: 814/605,
  32658. bottom: 11/825
  32659. }
  32660. },
  32661. mawFeral: {
  32662. height: math.unit(5.66, "feet"),
  32663. name: "Maw-feral",
  32664. image: {
  32665. source: "./media/characters/sini/maw-feral.svg"
  32666. }
  32667. },
  32668. footFeral: {
  32669. height: math.unit(5.17, "feet"),
  32670. name: "Foot-feral",
  32671. image: {
  32672. source: "./media/characters/sini/foot-feral.svg"
  32673. }
  32674. },
  32675. },
  32676. [
  32677. {
  32678. name: "Normal",
  32679. height: math.unit(7, "feet"),
  32680. default: true
  32681. },
  32682. ]
  32683. ))
  32684. characterMakers.push(() => makeCharacter(
  32685. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32686. {
  32687. side: {
  32688. height: math.unit(13, "meters"),
  32689. weight: math.unit(9072, "kg"),
  32690. name: "Side",
  32691. image: {
  32692. source: "./media/characters/raylldo/side.svg",
  32693. extra: 403/344,
  32694. bottom: 42/445
  32695. }
  32696. },
  32697. leaping: {
  32698. height: math.unit(12.3, "meters"),
  32699. weight: math.unit(9072, "kg"),
  32700. name: "Leaping",
  32701. image: {
  32702. source: "./media/characters/raylldo/leaping.svg",
  32703. extra: 470/249,
  32704. bottom: 13/483
  32705. }
  32706. },
  32707. flying: {
  32708. height: math.unit(18, "meters"),
  32709. weight: math.unit(9072, "kg"),
  32710. name: "Flying",
  32711. image: {
  32712. source: "./media/characters/raylldo/flying.svg"
  32713. }
  32714. },
  32715. head: {
  32716. height: math.unit(5.85, "meters"),
  32717. name: "Head",
  32718. image: {
  32719. source: "./media/characters/raylldo/head.svg"
  32720. }
  32721. },
  32722. maw: {
  32723. height: math.unit(5.32, "meters"),
  32724. name: "Maw",
  32725. image: {
  32726. source: "./media/characters/raylldo/maw.svg"
  32727. }
  32728. },
  32729. eye: {
  32730. height: math.unit(0.54, "meters"),
  32731. name: "Eye",
  32732. image: {
  32733. source: "./media/characters/raylldo/eye.svg"
  32734. }
  32735. },
  32736. },
  32737. [
  32738. {
  32739. name: "Normal",
  32740. height: math.unit(13, "meters"),
  32741. default: true
  32742. },
  32743. ]
  32744. ))
  32745. characterMakers.push(() => makeCharacter(
  32746. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32747. {
  32748. anthroFront: {
  32749. height: math.unit(9, "feet"),
  32750. weight: math.unit(600, "lb"),
  32751. name: "Anthro (Front)",
  32752. image: {
  32753. source: "./media/characters/glint/anthro-front.svg",
  32754. extra: 1097/1018,
  32755. bottom: 28/1125
  32756. }
  32757. },
  32758. anthroBack: {
  32759. height: math.unit(9, "feet"),
  32760. weight: math.unit(600, "lb"),
  32761. name: "Anthro (Back)",
  32762. image: {
  32763. source: "./media/characters/glint/anthro-back.svg",
  32764. extra: 1154/997,
  32765. bottom: 36/1190
  32766. }
  32767. },
  32768. feral: {
  32769. height: math.unit(11, "feet"),
  32770. weight: math.unit(50000, "lb"),
  32771. name: "Feral",
  32772. image: {
  32773. source: "./media/characters/glint/feral.svg",
  32774. extra: 3035/1585,
  32775. bottom: 1169/4204
  32776. }
  32777. },
  32778. dickAnthro: {
  32779. height: math.unit(0.7, "meters"),
  32780. name: "Dick (Anthro)",
  32781. image: {
  32782. source: "./media/characters/glint/dick-anthro.svg"
  32783. }
  32784. },
  32785. dickFeral: {
  32786. height: math.unit(2.65, "meters"),
  32787. name: "Dick (Feral)",
  32788. image: {
  32789. source: "./media/characters/glint/dick-feral.svg"
  32790. }
  32791. },
  32792. slitHidden: {
  32793. height: math.unit(5.85, "meters"),
  32794. name: "Slit (Hidden)",
  32795. image: {
  32796. source: "./media/characters/glint/slit-hidden.svg"
  32797. }
  32798. },
  32799. slitErect: {
  32800. height: math.unit(5.85, "meters"),
  32801. name: "Slit (Erect)",
  32802. image: {
  32803. source: "./media/characters/glint/slit-erect.svg"
  32804. }
  32805. },
  32806. mawAnthro: {
  32807. height: math.unit(0.63, "meters"),
  32808. name: "Maw (Anthro)",
  32809. image: {
  32810. source: "./media/characters/glint/maw.svg"
  32811. }
  32812. },
  32813. mawFeral: {
  32814. height: math.unit(2.89, "meters"),
  32815. name: "Maw (Feral)",
  32816. image: {
  32817. source: "./media/characters/glint/maw.svg"
  32818. }
  32819. },
  32820. },
  32821. [
  32822. {
  32823. name: "Normal",
  32824. height: math.unit(9, "feet"),
  32825. default: true
  32826. },
  32827. ]
  32828. ))
  32829. characterMakers.push(() => makeCharacter(
  32830. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32831. {
  32832. side: {
  32833. height: math.unit(15, "feet"),
  32834. weight: math.unit(5000, "kg"),
  32835. name: "Side",
  32836. image: {
  32837. source: "./media/characters/kairne/side.svg",
  32838. extra: 979/811,
  32839. bottom: 13/992
  32840. }
  32841. },
  32842. front: {
  32843. height: math.unit(15, "feet"),
  32844. weight: math.unit(5000, "kg"),
  32845. name: "Front",
  32846. image: {
  32847. source: "./media/characters/kairne/front.svg",
  32848. extra: 908/814,
  32849. bottom: 26/934
  32850. }
  32851. },
  32852. sideNsfw: {
  32853. height: math.unit(15, "feet"),
  32854. weight: math.unit(5000, "kg"),
  32855. name: "Side (NSFW)",
  32856. image: {
  32857. source: "./media/characters/kairne/side-nsfw.svg",
  32858. extra: 979/811,
  32859. bottom: 13/992
  32860. }
  32861. },
  32862. frontNsfw: {
  32863. height: math.unit(15, "feet"),
  32864. weight: math.unit(5000, "kg"),
  32865. name: "Front (NSFW)",
  32866. image: {
  32867. source: "./media/characters/kairne/front-nsfw.svg",
  32868. extra: 908/814,
  32869. bottom: 26/934
  32870. }
  32871. },
  32872. dickCaged: {
  32873. height: math.unit(0.65, "meters"),
  32874. name: "Dick-caged",
  32875. image: {
  32876. source: "./media/characters/kairne/dick-caged.svg"
  32877. }
  32878. },
  32879. dick: {
  32880. height: math.unit(0.79, "meters"),
  32881. name: "Dick",
  32882. image: {
  32883. source: "./media/characters/kairne/dick.svg"
  32884. }
  32885. },
  32886. genitals: {
  32887. height: math.unit(1.29, "meters"),
  32888. name: "Genitals",
  32889. image: {
  32890. source: "./media/characters/kairne/genitals.svg"
  32891. }
  32892. },
  32893. maw: {
  32894. height: math.unit(1.73, "meters"),
  32895. name: "Maw",
  32896. image: {
  32897. source: "./media/characters/kairne/maw.svg"
  32898. }
  32899. },
  32900. },
  32901. [
  32902. {
  32903. name: "Normal",
  32904. height: math.unit(15, "feet"),
  32905. default: true
  32906. },
  32907. ]
  32908. ))
  32909. characterMakers.push(() => makeCharacter(
  32910. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32911. {
  32912. front: {
  32913. height: math.unit(5 + 8/12, "feet"),
  32914. weight: math.unit(139, "lb"),
  32915. name: "Front",
  32916. image: {
  32917. source: "./media/characters/biscuit-jackal/front.svg",
  32918. extra: 2106/1961,
  32919. bottom: 58/2164
  32920. }
  32921. },
  32922. back: {
  32923. height: math.unit(5 + 8/12, "feet"),
  32924. weight: math.unit(139, "lb"),
  32925. name: "Back",
  32926. image: {
  32927. source: "./media/characters/biscuit-jackal/back.svg",
  32928. extra: 2132/1976,
  32929. bottom: 57/2189
  32930. }
  32931. },
  32932. werejackal: {
  32933. height: math.unit(6 + 3/12, "feet"),
  32934. weight: math.unit(188, "lb"),
  32935. name: "Werejackal",
  32936. image: {
  32937. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32938. extra: 2373/2178,
  32939. bottom: 53/2426
  32940. }
  32941. },
  32942. },
  32943. [
  32944. {
  32945. name: "Normal",
  32946. height: math.unit(5 + 8/12, "feet"),
  32947. default: true
  32948. },
  32949. ]
  32950. ))
  32951. characterMakers.push(() => makeCharacter(
  32952. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32953. {
  32954. front: {
  32955. height: math.unit(140, "cm"),
  32956. weight: math.unit(45, "kg"),
  32957. name: "Front",
  32958. image: {
  32959. source: "./media/characters/tayra-white/front.svg",
  32960. extra: 2229/2192,
  32961. bottom: 75/2304
  32962. }
  32963. },
  32964. },
  32965. [
  32966. {
  32967. name: "Normal",
  32968. height: math.unit(140, "cm"),
  32969. default: true
  32970. },
  32971. ]
  32972. ))
  32973. characterMakers.push(() => makeCharacter(
  32974. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32975. {
  32976. front: {
  32977. height: math.unit(4 + 5/12, "feet"),
  32978. name: "Front",
  32979. image: {
  32980. source: "./media/characters/scoop/front.svg",
  32981. extra: 1257/1136,
  32982. bottom: 69/1326
  32983. }
  32984. },
  32985. back: {
  32986. height: math.unit(4 + 5/12, "feet"),
  32987. name: "Back",
  32988. image: {
  32989. source: "./media/characters/scoop/back.svg",
  32990. extra: 1321/1152,
  32991. bottom: 32/1353
  32992. }
  32993. },
  32994. maw: {
  32995. height: math.unit(0.68, "feet"),
  32996. name: "Maw",
  32997. image: {
  32998. source: "./media/characters/scoop/maw.svg"
  32999. }
  33000. },
  33001. },
  33002. [
  33003. {
  33004. name: "Really Small",
  33005. height: math.unit(1, "mm")
  33006. },
  33007. {
  33008. name: "Micro",
  33009. height: math.unit(1, "inch")
  33010. },
  33011. {
  33012. name: "Normal",
  33013. height: math.unit(4 + 5/12, "feet"),
  33014. default: true
  33015. },
  33016. {
  33017. name: "Macro",
  33018. height: math.unit(200, "feet")
  33019. },
  33020. {
  33021. name: "Megamacro",
  33022. height: math.unit(3240, "feet")
  33023. },
  33024. {
  33025. name: "Teramacro",
  33026. height: math.unit(2500, "miles")
  33027. },
  33028. ]
  33029. ))
  33030. characterMakers.push(() => makeCharacter(
  33031. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33032. {
  33033. front: {
  33034. height: math.unit(15 + 7/12, "feet"),
  33035. name: "Front",
  33036. image: {
  33037. source: "./media/characters/saphinara/front.svg",
  33038. extra: 604/546,
  33039. bottom: 19/623
  33040. }
  33041. },
  33042. side: {
  33043. height: math.unit(15 + 7/12, "feet"),
  33044. name: "Side",
  33045. image: {
  33046. source: "./media/characters/saphinara/side.svg",
  33047. extra: 605/547,
  33048. bottom: 6/611
  33049. }
  33050. },
  33051. back: {
  33052. height: math.unit(15 + 7/12, "feet"),
  33053. name: "Back",
  33054. image: {
  33055. source: "./media/characters/saphinara/back.svg",
  33056. extra: 591/531,
  33057. bottom: 13/604
  33058. }
  33059. },
  33060. frontTail: {
  33061. height: math.unit(15 + 7/12, "feet"),
  33062. name: "Front (Full Tail)",
  33063. image: {
  33064. source: "./media/characters/saphinara/front-tail.svg",
  33065. extra: 748/547,
  33066. bottom: 66/814
  33067. }
  33068. },
  33069. },
  33070. [
  33071. {
  33072. name: "Normal",
  33073. height: math.unit(15 + 7/12, "feet"),
  33074. default: true
  33075. },
  33076. {
  33077. name: "Angry",
  33078. height: math.unit(30 + 6/12, "feet")
  33079. },
  33080. {
  33081. name: "Enraged",
  33082. height: math.unit(102 + 1/12, "feet")
  33083. },
  33084. ]
  33085. ))
  33086. characterMakers.push(() => makeCharacter(
  33087. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  33088. {
  33089. front: {
  33090. height: math.unit(6 + 8/12, "feet"),
  33091. weight: math.unit(300, "lb"),
  33092. name: "Front",
  33093. image: {
  33094. source: "./media/characters/jrain/front.svg",
  33095. extra: 3039/2865,
  33096. bottom: 399/3438
  33097. }
  33098. },
  33099. back: {
  33100. height: math.unit(6 + 8/12, "feet"),
  33101. weight: math.unit(300, "lb"),
  33102. name: "Back",
  33103. image: {
  33104. source: "./media/characters/jrain/back.svg",
  33105. extra: 3089/2938,
  33106. bottom: 172/3261
  33107. }
  33108. },
  33109. head: {
  33110. height: math.unit(2.14, "feet"),
  33111. name: "Head",
  33112. image: {
  33113. source: "./media/characters/jrain/head.svg"
  33114. }
  33115. },
  33116. maw: {
  33117. height: math.unit(1.77, "feet"),
  33118. name: "Maw",
  33119. image: {
  33120. source: "./media/characters/jrain/maw.svg"
  33121. }
  33122. },
  33123. leftHand: {
  33124. height: math.unit(1.1, "feet"),
  33125. name: "Left Hand",
  33126. image: {
  33127. source: "./media/characters/jrain/left-hand.svg"
  33128. }
  33129. },
  33130. rightHand: {
  33131. height: math.unit(1.1, "feet"),
  33132. name: "Right Hand",
  33133. image: {
  33134. source: "./media/characters/jrain/right-hand.svg"
  33135. }
  33136. },
  33137. eye: {
  33138. height: math.unit(0.35, "feet"),
  33139. name: "Eye",
  33140. image: {
  33141. source: "./media/characters/jrain/eye.svg"
  33142. }
  33143. },
  33144. },
  33145. [
  33146. {
  33147. name: "Normal",
  33148. height: math.unit(6 + 8/12, "feet"),
  33149. default: true
  33150. },
  33151. {
  33152. name: "Casually Large",
  33153. height: math.unit(25, "feet")
  33154. },
  33155. {
  33156. name: "Giant",
  33157. height: math.unit(100, "feet")
  33158. },
  33159. {
  33160. name: "Kaiju",
  33161. height: math.unit(300, "feet")
  33162. },
  33163. ]
  33164. ))
  33165. characterMakers.push(() => makeCharacter(
  33166. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33167. {
  33168. dragon: {
  33169. height: math.unit(5, "meters"),
  33170. name: "Dragon",
  33171. image: {
  33172. source: "./media/characters/sabrina/dragon.svg",
  33173. extra: 3670 / 2365,
  33174. bottom: 333 / 4003
  33175. }
  33176. },
  33177. gryphon: {
  33178. height: math.unit(3, "meters"),
  33179. name: "Gryphon",
  33180. image: {
  33181. source: "./media/characters/sabrina/gryphon.svg",
  33182. extra: 1576 / 945,
  33183. bottom: 71 / 1647
  33184. }
  33185. },
  33186. snake: {
  33187. height: math.unit(12, "meters"),
  33188. name: "Snake",
  33189. image: {
  33190. source: "./media/characters/sabrina/snake.svg",
  33191. extra: 1758 / 1320,
  33192. bottom: 186 / 1944
  33193. }
  33194. },
  33195. collar: {
  33196. height: math.unit(1.86, "meters"),
  33197. name: "Collar",
  33198. image: {
  33199. source: "./media/characters/sabrina/collar.svg"
  33200. }
  33201. },
  33202. eye: {
  33203. height: math.unit(0.53, "meters"),
  33204. name: "Eye",
  33205. image: {
  33206. source: "./media/characters/sabrina/eye.svg"
  33207. }
  33208. },
  33209. foot: {
  33210. height: math.unit(1.86, "meters"),
  33211. name: "Foot",
  33212. image: {
  33213. source: "./media/characters/sabrina/foot.svg"
  33214. }
  33215. },
  33216. hand: {
  33217. height: math.unit(1.32, "meters"),
  33218. name: "Hand",
  33219. image: {
  33220. source: "./media/characters/sabrina/hand.svg"
  33221. }
  33222. },
  33223. head: {
  33224. height: math.unit(2.44, "meters"),
  33225. name: "Head",
  33226. image: {
  33227. source: "./media/characters/sabrina/head.svg"
  33228. }
  33229. },
  33230. headAngry: {
  33231. height: math.unit(2.44, "meters"),
  33232. name: "Head (Angry))",
  33233. image: {
  33234. source: "./media/characters/sabrina/head-angry.svg"
  33235. }
  33236. },
  33237. maw: {
  33238. height: math.unit(1.65, "meters"),
  33239. name: "Maw",
  33240. image: {
  33241. source: "./media/characters/sabrina/maw.svg"
  33242. }
  33243. },
  33244. spikes: {
  33245. height: math.unit(1.69, "meters"),
  33246. name: "Spikes",
  33247. image: {
  33248. source: "./media/characters/sabrina/spikes.svg"
  33249. }
  33250. },
  33251. stomach: {
  33252. height: math.unit(1.15, "meters"),
  33253. name: "Stomach",
  33254. image: {
  33255. source: "./media/characters/sabrina/stomach.svg"
  33256. }
  33257. },
  33258. tongue: {
  33259. height: math.unit(1.27, "meters"),
  33260. name: "Tongue",
  33261. image: {
  33262. source: "./media/characters/sabrina/tongue.svg"
  33263. }
  33264. },
  33265. wingDorsal: {
  33266. height: math.unit(4.85, "meters"),
  33267. name: "Wing (Dorsal)",
  33268. image: {
  33269. source: "./media/characters/sabrina/wing-dorsal.svg"
  33270. }
  33271. },
  33272. wingVentral: {
  33273. height: math.unit(4.85, "meters"),
  33274. name: "Wing (Ventral)",
  33275. image: {
  33276. source: "./media/characters/sabrina/wing-ventral.svg"
  33277. }
  33278. },
  33279. },
  33280. [
  33281. {
  33282. name: "Normal",
  33283. height: math.unit(5, "meters"),
  33284. default: true
  33285. },
  33286. ]
  33287. ))
  33288. characterMakers.push(() => makeCharacter(
  33289. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33290. {
  33291. frontMaid: {
  33292. height: math.unit(5 + 5/12, "feet"),
  33293. weight: math.unit(130, "lb"),
  33294. name: "Front (Maid)",
  33295. image: {
  33296. source: "./media/characters/midnight-tales/front-maid.svg",
  33297. extra: 489/454,
  33298. bottom: 61/550
  33299. }
  33300. },
  33301. frontFormal: {
  33302. height: math.unit(5 + 5/12, "feet"),
  33303. weight: math.unit(130, "lb"),
  33304. name: "Front (Formal)",
  33305. image: {
  33306. source: "./media/characters/midnight-tales/front-formal.svg",
  33307. extra: 489/454,
  33308. bottom: 61/550
  33309. }
  33310. },
  33311. back: {
  33312. height: math.unit(5 + 5/12, "feet"),
  33313. weight: math.unit(130, "lb"),
  33314. name: "Back",
  33315. image: {
  33316. source: "./media/characters/midnight-tales/back.svg",
  33317. extra: 498/456,
  33318. bottom: 33/531
  33319. }
  33320. },
  33321. frontBeast: {
  33322. height: math.unit(40, "feet"),
  33323. weight: math.unit(64000, "lb"),
  33324. name: "Front (Beast)",
  33325. image: {
  33326. source: "./media/characters/midnight-tales/front-beast.svg",
  33327. extra: 927/860,
  33328. bottom: 53/980
  33329. }
  33330. },
  33331. backBeast: {
  33332. height: math.unit(40, "feet"),
  33333. weight: math.unit(64000, "lb"),
  33334. name: "Back (Beast)",
  33335. image: {
  33336. source: "./media/characters/midnight-tales/back-beast.svg",
  33337. extra: 929/855,
  33338. bottom: 16/945
  33339. }
  33340. },
  33341. footBeast: {
  33342. height: math.unit(6.7, "feet"),
  33343. name: "Foot (Beast)",
  33344. image: {
  33345. source: "./media/characters/midnight-tales/foot-beast.svg"
  33346. }
  33347. },
  33348. headBeast: {
  33349. height: math.unit(8, "feet"),
  33350. name: "Head (Beast)",
  33351. image: {
  33352. source: "./media/characters/midnight-tales/head-beast.svg"
  33353. }
  33354. },
  33355. },
  33356. [
  33357. {
  33358. name: "Normal",
  33359. height: math.unit(5 + 5 / 12, "feet"),
  33360. default: true
  33361. },
  33362. {
  33363. name: "Macro",
  33364. height: math.unit(25, "feet")
  33365. },
  33366. ]
  33367. ))
  33368. characterMakers.push(() => makeCharacter(
  33369. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33370. {
  33371. front: {
  33372. height: math.unit(5 + 10/12, "feet"),
  33373. name: "Front",
  33374. image: {
  33375. source: "./media/characters/argon/front.svg",
  33376. extra: 2009/1935,
  33377. bottom: 118/2127
  33378. }
  33379. },
  33380. back: {
  33381. height: math.unit(5 + 10/12, "feet"),
  33382. name: "Back",
  33383. image: {
  33384. source: "./media/characters/argon/back.svg",
  33385. extra: 2047/1992,
  33386. bottom: 20/2067
  33387. }
  33388. },
  33389. frontDressed: {
  33390. height: math.unit(5 + 10/12, "feet"),
  33391. name: "Front (Dressed)",
  33392. image: {
  33393. source: "./media/characters/argon/front-dressed.svg",
  33394. extra: 2009/1935,
  33395. bottom: 118/2127
  33396. }
  33397. },
  33398. },
  33399. [
  33400. {
  33401. name: "Normal",
  33402. height: math.unit(5 + 10/12, "feet"),
  33403. default: true
  33404. },
  33405. ]
  33406. ))
  33407. characterMakers.push(() => makeCharacter(
  33408. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33409. {
  33410. front: {
  33411. height: math.unit(8 + 6/12, "feet"),
  33412. weight: math.unit(1150, "lb"),
  33413. name: "Front",
  33414. image: {
  33415. source: "./media/characters/kichi/front.svg",
  33416. extra: 1267/1164,
  33417. bottom: 61/1328
  33418. }
  33419. },
  33420. back: {
  33421. height: math.unit(8 + 6/12, "feet"),
  33422. weight: math.unit(1150, "lb"),
  33423. name: "Back",
  33424. image: {
  33425. source: "./media/characters/kichi/back.svg",
  33426. extra: 1273/1166,
  33427. bottom: 33/1306
  33428. }
  33429. },
  33430. },
  33431. [
  33432. {
  33433. name: "Normal",
  33434. height: math.unit(8 + 6/12, "feet"),
  33435. default: true
  33436. },
  33437. ]
  33438. ))
  33439. characterMakers.push(() => makeCharacter(
  33440. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33441. {
  33442. front: {
  33443. height: math.unit(6, "feet"),
  33444. weight: math.unit(210, "lb"),
  33445. name: "Front",
  33446. image: {
  33447. source: "./media/characters/manetel-greyscale/front.svg",
  33448. extra: 350/312,
  33449. bottom: 8/358
  33450. }
  33451. },
  33452. },
  33453. [
  33454. {
  33455. name: "Micro",
  33456. height: math.unit(2, "inches")
  33457. },
  33458. {
  33459. name: "Normal",
  33460. height: math.unit(6, "feet"),
  33461. default: true
  33462. },
  33463. {
  33464. name: "Minimacro",
  33465. height: math.unit(17, "feet")
  33466. },
  33467. {
  33468. name: "Macro",
  33469. height: math.unit(117, "feet")
  33470. },
  33471. ]
  33472. ))
  33473. characterMakers.push(() => makeCharacter(
  33474. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33475. {
  33476. side: {
  33477. height: math.unit(5 + 1/12, "feet"),
  33478. weight: math.unit(418, "lb"),
  33479. name: "Side",
  33480. image: {
  33481. source: "./media/characters/softpurr/side.svg",
  33482. extra: 1993/1945,
  33483. bottom: 134/2127
  33484. }
  33485. },
  33486. front: {
  33487. height: math.unit(5 + 1/12, "feet"),
  33488. weight: math.unit(418, "lb"),
  33489. name: "Front",
  33490. image: {
  33491. source: "./media/characters/softpurr/front.svg",
  33492. extra: 1950/1856,
  33493. bottom: 174/2124
  33494. }
  33495. },
  33496. paw: {
  33497. height: math.unit(1, "feet"),
  33498. name: "Paw",
  33499. image: {
  33500. source: "./media/characters/softpurr/paw.svg"
  33501. }
  33502. },
  33503. },
  33504. [
  33505. {
  33506. name: "Normal",
  33507. height: math.unit(5 + 1/12, "feet"),
  33508. default: true
  33509. },
  33510. ]
  33511. ))
  33512. characterMakers.push(() => makeCharacter(
  33513. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33514. {
  33515. front: {
  33516. height: math.unit(260, "meters"),
  33517. name: "Front",
  33518. image: {
  33519. source: "./media/characters/anahita/front.svg",
  33520. extra: 665/635,
  33521. bottom: 89/754
  33522. }
  33523. },
  33524. },
  33525. [
  33526. {
  33527. name: "Macro",
  33528. height: math.unit(260, "meters"),
  33529. default: true
  33530. },
  33531. ]
  33532. ))
  33533. characterMakers.push(() => makeCharacter(
  33534. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33535. {
  33536. front: {
  33537. height: math.unit(4 + 10/12, "feet"),
  33538. weight: math.unit(160, "lb"),
  33539. name: "Front",
  33540. image: {
  33541. source: "./media/characters/chip-mouse/front.svg",
  33542. extra: 3528/3408,
  33543. bottom: 0/3528
  33544. }
  33545. },
  33546. frontNsfw: {
  33547. height: math.unit(4 + 10/12, "feet"),
  33548. weight: math.unit(160, "lb"),
  33549. name: "Front (NSFW)",
  33550. image: {
  33551. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33552. extra: 3528/3408,
  33553. bottom: 0/3528
  33554. }
  33555. },
  33556. },
  33557. [
  33558. {
  33559. name: "Normal",
  33560. height: math.unit(4 + 10/12, "feet"),
  33561. default: true
  33562. },
  33563. ]
  33564. ))
  33565. characterMakers.push(() => makeCharacter(
  33566. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33567. {
  33568. side: {
  33569. height: math.unit(10, "feet"),
  33570. weight: math.unit(14000, "lb"),
  33571. name: "Side",
  33572. image: {
  33573. source: "./media/characters/kremm/side.svg",
  33574. extra: 1390/1053,
  33575. bottom: 90/1480
  33576. }
  33577. },
  33578. gut: {
  33579. height: math.unit(5.8, "feet"),
  33580. name: "Gut",
  33581. image: {
  33582. source: "./media/characters/kremm/gut.svg"
  33583. }
  33584. },
  33585. ass: {
  33586. height: math.unit(6.1, "feet"),
  33587. name: "Ass",
  33588. image: {
  33589. source: "./media/characters/kremm/ass.svg"
  33590. }
  33591. },
  33592. jaws: {
  33593. height: math.unit(2.2, "feet"),
  33594. name: "Jaws",
  33595. image: {
  33596. source: "./media/characters/kremm/jaws.svg"
  33597. }
  33598. },
  33599. dick: {
  33600. height: math.unit(4.26, "feet"),
  33601. name: "Dick",
  33602. image: {
  33603. source: "./media/characters/kremm/dick.svg"
  33604. }
  33605. },
  33606. },
  33607. [
  33608. {
  33609. name: "Normal",
  33610. height: math.unit(10, "feet"),
  33611. default: true
  33612. },
  33613. ]
  33614. ))
  33615. characterMakers.push(() => makeCharacter(
  33616. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33617. {
  33618. front: {
  33619. height: math.unit(30, "stories"),
  33620. name: "Front",
  33621. image: {
  33622. source: "./media/characters/kai/front.svg",
  33623. extra: 1892/1718,
  33624. bottom: 162/2054
  33625. }
  33626. },
  33627. },
  33628. [
  33629. {
  33630. name: "Macro",
  33631. height: math.unit(30, "stories"),
  33632. default: true
  33633. },
  33634. ]
  33635. ))
  33636. characterMakers.push(() => makeCharacter(
  33637. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33638. {
  33639. front: {
  33640. height: math.unit(6 + 4/12, "feet"),
  33641. weight: math.unit(145, "lb"),
  33642. name: "Front",
  33643. image: {
  33644. source: "./media/characters/sykes/front.svg",
  33645. extra: 1321 / 1187,
  33646. bottom: 66 / 1387
  33647. }
  33648. },
  33649. back: {
  33650. height: math.unit(6 + 4/12, "feet"),
  33651. weight: math.unit(145, "lb"),
  33652. name: "Back",
  33653. image: {
  33654. source: "./media/characters/sykes/back.svg",
  33655. extra: 1326/1181,
  33656. bottom: 31/1357
  33657. }
  33658. },
  33659. handBack: {
  33660. height: math.unit(0.9, "feet"),
  33661. name: "Hand (Back)",
  33662. image: {
  33663. source: "./media/characters/sykes/hand-back.svg"
  33664. }
  33665. },
  33666. handFront: {
  33667. height: math.unit(0.839, "feet"),
  33668. name: "Hand (Front)",
  33669. image: {
  33670. source: "./media/characters/sykes/hand-front.svg"
  33671. }
  33672. },
  33673. leftFoot: {
  33674. height: math.unit(1.2, "feet"),
  33675. name: "Foot (Left)",
  33676. image: {
  33677. source: "./media/characters/sykes/foot-left.svg"
  33678. }
  33679. },
  33680. rightFoot: {
  33681. height: math.unit(1.2, "feet"),
  33682. name: "Foot (Right)",
  33683. image: {
  33684. source: "./media/characters/sykes/foot-right.svg"
  33685. }
  33686. },
  33687. maw: {
  33688. height: math.unit(1.93, "feet"),
  33689. name: "Maw",
  33690. image: {
  33691. source: "./media/characters/sykes/maw.svg"
  33692. }
  33693. },
  33694. teeth: {
  33695. height: math.unit(0.51, "feet"),
  33696. name: "Teeth",
  33697. image: {
  33698. source: "./media/characters/sykes/teeth.svg"
  33699. }
  33700. },
  33701. tongue: {
  33702. height: math.unit(2.13, "feet"),
  33703. name: "Tongue",
  33704. image: {
  33705. source: "./media/characters/sykes/tongue.svg"
  33706. }
  33707. },
  33708. uvula: {
  33709. height: math.unit(0.16, "feet"),
  33710. name: "Uvula",
  33711. image: {
  33712. source: "./media/characters/sykes/uvula.svg"
  33713. }
  33714. },
  33715. collar: {
  33716. height: math.unit(0.287, "feet"),
  33717. name: "Collar",
  33718. image: {
  33719. source: "./media/characters/sykes/collar.svg"
  33720. }
  33721. },
  33722. },
  33723. [
  33724. {
  33725. name: "Shrunken",
  33726. height: math.unit(5, "inches")
  33727. },
  33728. {
  33729. name: "Normal",
  33730. height: math.unit(6 + 4 / 12, "feet"),
  33731. default: true
  33732. },
  33733. {
  33734. name: "Big",
  33735. height: math.unit(15, "feet")
  33736. },
  33737. ]
  33738. ))
  33739. characterMakers.push(() => makeCharacter(
  33740. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33741. {
  33742. front: {
  33743. height: math.unit(5 + 8/12, "feet"),
  33744. weight: math.unit(190, "lb"),
  33745. name: "Front",
  33746. image: {
  33747. source: "./media/characters/oven-otter/front.svg",
  33748. extra: 1809/1740,
  33749. bottom: 181/1990
  33750. }
  33751. },
  33752. back: {
  33753. height: math.unit(5 + 8/12, "feet"),
  33754. weight: math.unit(190, "lb"),
  33755. name: "Back",
  33756. image: {
  33757. source: "./media/characters/oven-otter/back.svg",
  33758. extra: 1709/1635,
  33759. bottom: 118/1827
  33760. }
  33761. },
  33762. hand: {
  33763. height: math.unit(1.07, "feet"),
  33764. name: "Hand",
  33765. image: {
  33766. source: "./media/characters/oven-otter/hand.svg"
  33767. }
  33768. },
  33769. beans: {
  33770. height: math.unit(1.74, "feet"),
  33771. name: "Beans",
  33772. image: {
  33773. source: "./media/characters/oven-otter/beans.svg"
  33774. }
  33775. },
  33776. },
  33777. [
  33778. {
  33779. name: "Micro",
  33780. height: math.unit(0.5, "inches")
  33781. },
  33782. {
  33783. name: "Normal",
  33784. height: math.unit(5 + 8/12, "feet"),
  33785. default: true
  33786. },
  33787. {
  33788. name: "Macro",
  33789. height: math.unit(250, "feet")
  33790. },
  33791. {
  33792. name: "Really High",
  33793. height: math.unit(420, "feet")
  33794. },
  33795. ]
  33796. ))
  33797. characterMakers.push(() => makeCharacter(
  33798. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33799. {
  33800. front: {
  33801. height: math.unit(5, "meters"),
  33802. weight: math.unit(292000000000000, "kg"),
  33803. name: "Front",
  33804. image: {
  33805. source: "./media/characters/devourer/front.svg",
  33806. extra: 1800/1733,
  33807. bottom: 211/2011
  33808. }
  33809. },
  33810. maw: {
  33811. height: math.unit(1.1, "meter"),
  33812. name: "Maw",
  33813. image: {
  33814. source: "./media/characters/devourer/maw.svg"
  33815. }
  33816. },
  33817. },
  33818. [
  33819. {
  33820. name: "Small",
  33821. height: math.unit(3, "meters")
  33822. },
  33823. {
  33824. name: "Large",
  33825. height: math.unit(5, "meters"),
  33826. default: true
  33827. },
  33828. ]
  33829. ))
  33830. characterMakers.push(() => makeCharacter(
  33831. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33832. {
  33833. front: {
  33834. height: math.unit(6, "feet"),
  33835. weight: math.unit(400, "lb"),
  33836. name: "Front",
  33837. image: {
  33838. source: "./media/characters/ellarby/front.svg",
  33839. extra: 1909/1763,
  33840. bottom: 80/1989
  33841. }
  33842. },
  33843. back: {
  33844. height: math.unit(6, "feet"),
  33845. weight: math.unit(400, "lb"),
  33846. name: "Back",
  33847. image: {
  33848. source: "./media/characters/ellarby/back.svg",
  33849. extra: 1914/1784,
  33850. bottom: 172/2086
  33851. }
  33852. },
  33853. },
  33854. [
  33855. {
  33856. name: "Mischief",
  33857. height: math.unit(18, "inches")
  33858. },
  33859. {
  33860. name: "Trouble",
  33861. height: math.unit(12, "feet")
  33862. },
  33863. {
  33864. name: "Havoc",
  33865. height: math.unit(200, "feet"),
  33866. default: true
  33867. },
  33868. {
  33869. name: "Pandemonium",
  33870. height: math.unit(1, "mile")
  33871. },
  33872. {
  33873. name: "Catastrophe",
  33874. height: math.unit(100, "miles")
  33875. },
  33876. ]
  33877. ))
  33878. characterMakers.push(() => makeCharacter(
  33879. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33880. {
  33881. front: {
  33882. height: math.unit(4.7, "meters"),
  33883. weight: math.unit(6500, "kg"),
  33884. name: "Front",
  33885. image: {
  33886. source: "./media/characters/vex/front.svg",
  33887. extra: 1288/1140,
  33888. bottom: 100/1388
  33889. }
  33890. },
  33891. },
  33892. [
  33893. {
  33894. name: "Normal",
  33895. height: math.unit(4.7, "meters"),
  33896. default: true
  33897. },
  33898. ]
  33899. ))
  33900. characterMakers.push(() => makeCharacter(
  33901. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33902. {
  33903. normal: {
  33904. height: math.unit(6, "feet"),
  33905. weight: math.unit(350, "lb"),
  33906. name: "Normal",
  33907. image: {
  33908. source: "./media/characters/teshy/normal.svg",
  33909. extra: 1795/1735,
  33910. bottom: 16/1811
  33911. }
  33912. },
  33913. monsterFront: {
  33914. height: math.unit(12, "feet"),
  33915. weight: math.unit(4700, "lb"),
  33916. name: "Monster (Front)",
  33917. image: {
  33918. source: "./media/characters/teshy/monster-front.svg",
  33919. extra: 2042/2034,
  33920. bottom: 128/2170
  33921. }
  33922. },
  33923. monsterSide: {
  33924. height: math.unit(12, "feet"),
  33925. weight: math.unit(4700, "lb"),
  33926. name: "Monster (Side)",
  33927. image: {
  33928. source: "./media/characters/teshy/monster-side.svg",
  33929. extra: 2067/2056,
  33930. bottom: 70/2137
  33931. }
  33932. },
  33933. monsterBack: {
  33934. height: math.unit(12, "feet"),
  33935. weight: math.unit(4700, "lb"),
  33936. name: "Monster (Back)",
  33937. image: {
  33938. source: "./media/characters/teshy/monster-back.svg",
  33939. extra: 1921/1914,
  33940. bottom: 171/2092
  33941. }
  33942. },
  33943. },
  33944. [
  33945. {
  33946. name: "Normal",
  33947. height: math.unit(6, "feet"),
  33948. default: true
  33949. },
  33950. ]
  33951. ))
  33952. characterMakers.push(() => makeCharacter(
  33953. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33954. {
  33955. front: {
  33956. height: math.unit(6, "feet"),
  33957. name: "Front",
  33958. image: {
  33959. source: "./media/characters/ramey/front.svg",
  33960. extra: 790/787,
  33961. bottom: 27/817
  33962. }
  33963. },
  33964. },
  33965. [
  33966. {
  33967. name: "Normal",
  33968. height: math.unit(6, "feet"),
  33969. default: true
  33970. },
  33971. ]
  33972. ))
  33973. characterMakers.push(() => makeCharacter(
  33974. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33975. {
  33976. front: {
  33977. height: math.unit(5 + 5/12, "feet"),
  33978. weight: math.unit(120, "lb"),
  33979. name: "Front",
  33980. image: {
  33981. source: "./media/characters/phirae/front.svg",
  33982. extra: 2491/2436,
  33983. bottom: 38/2529
  33984. }
  33985. },
  33986. },
  33987. [
  33988. {
  33989. name: "Normal",
  33990. height: math.unit(5 + 5/12, "feet"),
  33991. default: true
  33992. },
  33993. ]
  33994. ))
  33995. characterMakers.push(() => makeCharacter(
  33996. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  33997. {
  33998. front: {
  33999. height: math.unit(5 + 3/12, "feet"),
  34000. name: "Front",
  34001. image: {
  34002. source: "./media/characters/stagglas/front.svg",
  34003. extra: 962/882,
  34004. bottom: 53/1015
  34005. }
  34006. },
  34007. feral: {
  34008. height: math.unit(335, "cm"),
  34009. name: "Feral",
  34010. image: {
  34011. source: "./media/characters/stagglas/feral.svg",
  34012. extra: 1732/1090,
  34013. bottom: 48/1780
  34014. }
  34015. },
  34016. },
  34017. [
  34018. {
  34019. name: "Normal",
  34020. height: math.unit(5 + 3/12, "feet"),
  34021. default: true
  34022. },
  34023. ]
  34024. ))
  34025. characterMakers.push(() => makeCharacter(
  34026. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  34027. {
  34028. front: {
  34029. height: math.unit(5 + 4/12, "feet"),
  34030. weight: math.unit(145, "lb"),
  34031. name: "Front",
  34032. image: {
  34033. source: "./media/characters/starra/front.svg",
  34034. extra: 1790/1691,
  34035. bottom: 91/1881
  34036. }
  34037. },
  34038. },
  34039. [
  34040. {
  34041. name: "Normal",
  34042. height: math.unit(5 + 4/12, "feet"),
  34043. default: true
  34044. },
  34045. ]
  34046. ))
  34047. characterMakers.push(() => makeCharacter(
  34048. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  34049. {
  34050. front: {
  34051. height: math.unit(2.2, "meters"),
  34052. name: "Front",
  34053. image: {
  34054. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  34055. extra: 1194/1005,
  34056. bottom: 25/1219
  34057. }
  34058. },
  34059. },
  34060. [
  34061. {
  34062. name: "Normal",
  34063. height: math.unit(2.2, "meters"),
  34064. default: true
  34065. },
  34066. ]
  34067. ))
  34068. characterMakers.push(() => makeCharacter(
  34069. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  34070. {
  34071. side: {
  34072. height: math.unit(8 + 2/12, "feet"),
  34073. weight: math.unit(1240, "lb"),
  34074. name: "Side",
  34075. image: {
  34076. source: "./media/characters/mika-valentine/side.svg",
  34077. extra: 2670/2501,
  34078. bottom: 250/2920
  34079. }
  34080. },
  34081. },
  34082. [
  34083. {
  34084. name: "Normal",
  34085. height: math.unit(8 + 2/12, "feet"),
  34086. default: true
  34087. },
  34088. ]
  34089. ))
  34090. characterMakers.push(() => makeCharacter(
  34091. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34092. {
  34093. front: {
  34094. height: math.unit(7 + 2/12, "feet"),
  34095. name: "Front",
  34096. image: {
  34097. source: "./media/characters/xoltol/front.svg",
  34098. extra: 2212/2124,
  34099. bottom: 84/2296
  34100. }
  34101. },
  34102. side: {
  34103. height: math.unit(7 + 2/12, "feet"),
  34104. name: "Side",
  34105. image: {
  34106. source: "./media/characters/xoltol/side.svg",
  34107. extra: 2273/2197,
  34108. bottom: 26/2299
  34109. }
  34110. },
  34111. hand: {
  34112. height: math.unit(2.5, "feet"),
  34113. name: "Hand",
  34114. image: {
  34115. source: "./media/characters/xoltol/hand.svg"
  34116. }
  34117. },
  34118. },
  34119. [
  34120. {
  34121. name: "Small-ish",
  34122. height: math.unit(5 + 11/12, "feet")
  34123. },
  34124. {
  34125. name: "Normal",
  34126. height: math.unit(7 + 2/12, "feet")
  34127. },
  34128. {
  34129. name: "\"Macro\"",
  34130. height: math.unit(14 + 9/12, "feet"),
  34131. default: true
  34132. },
  34133. {
  34134. name: "Alternate Height",
  34135. height: math.unit(20, "feet")
  34136. },
  34137. {
  34138. name: "Actually Macro",
  34139. height: math.unit(100, "feet")
  34140. },
  34141. ]
  34142. ))
  34143. characterMakers.push(() => makeCharacter(
  34144. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34145. {
  34146. front: {
  34147. height: math.unit(5 + 2/12, "feet"),
  34148. name: "Front",
  34149. image: {
  34150. source: "./media/characters/kotetsu-redwood/front.svg",
  34151. extra: 1053/942,
  34152. bottom: 60/1113
  34153. }
  34154. },
  34155. },
  34156. [
  34157. {
  34158. name: "Normal",
  34159. height: math.unit(5 + 2/12, "feet"),
  34160. default: true
  34161. },
  34162. ]
  34163. ))
  34164. characterMakers.push(() => makeCharacter(
  34165. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34166. {
  34167. front: {
  34168. height: math.unit(2.4, "meters"),
  34169. weight: math.unit(125, "kg"),
  34170. name: "Front",
  34171. image: {
  34172. source: "./media/characters/lilith/front.svg",
  34173. extra: 1590/1513,
  34174. bottom: 203/1793
  34175. }
  34176. },
  34177. },
  34178. [
  34179. {
  34180. name: "Humanoid",
  34181. height: math.unit(2.4, "meters")
  34182. },
  34183. {
  34184. name: "Normal",
  34185. height: math.unit(6, "meters"),
  34186. default: true
  34187. },
  34188. {
  34189. name: "Largest",
  34190. height: math.unit(55, "meters")
  34191. },
  34192. ]
  34193. ))
  34194. characterMakers.push(() => makeCharacter(
  34195. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34196. {
  34197. front: {
  34198. height: math.unit(8 + 4/12, "feet"),
  34199. weight: math.unit(535, "lb"),
  34200. name: "Front",
  34201. image: {
  34202. source: "./media/characters/beh'kah-bolger/front.svg",
  34203. extra: 1660/1603,
  34204. bottom: 37/1697
  34205. }
  34206. },
  34207. },
  34208. [
  34209. {
  34210. name: "Normal",
  34211. height: math.unit(8 + 4/12, "feet"),
  34212. default: true
  34213. },
  34214. {
  34215. name: "Kaiju",
  34216. height: math.unit(250, "feet")
  34217. },
  34218. {
  34219. name: "Still Growing",
  34220. height: math.unit(10, "miles")
  34221. },
  34222. {
  34223. name: "Continental",
  34224. height: math.unit(5000, "miles")
  34225. },
  34226. {
  34227. name: "Final Form",
  34228. height: math.unit(2500000, "miles")
  34229. },
  34230. ]
  34231. ))
  34232. characterMakers.push(() => makeCharacter(
  34233. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34234. {
  34235. front: {
  34236. height: math.unit(7 + 2/12, "feet"),
  34237. weight: math.unit(230, "kg"),
  34238. name: "Front",
  34239. image: {
  34240. source: "./media/characters/tatyana-milewska/front.svg",
  34241. extra: 1199/1150,
  34242. bottom: 86/1285
  34243. }
  34244. },
  34245. },
  34246. [
  34247. {
  34248. name: "Normal",
  34249. height: math.unit(7 + 2/12, "feet"),
  34250. default: true
  34251. },
  34252. {
  34253. name: "Big",
  34254. height: math.unit(12, "feet")
  34255. },
  34256. {
  34257. name: "Minimacro",
  34258. height: math.unit(20, "feet")
  34259. },
  34260. {
  34261. name: "Macro",
  34262. height: math.unit(120, "feet")
  34263. },
  34264. ]
  34265. ))
  34266. characterMakers.push(() => makeCharacter(
  34267. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34268. {
  34269. front: {
  34270. height: math.unit(7 + 8/12, "feet"),
  34271. weight: math.unit(152, "kg"),
  34272. name: "Front",
  34273. image: {
  34274. source: "./media/characters/helen-arri/front.svg",
  34275. extra: 440/423,
  34276. bottom: 14/454
  34277. }
  34278. },
  34279. back: {
  34280. height: math.unit(7 + 8/12, "feet"),
  34281. weight: math.unit(152, "kg"),
  34282. name: "Back",
  34283. image: {
  34284. source: "./media/characters/helen-arri/back.svg",
  34285. extra: 443/426,
  34286. bottom: 8/451
  34287. }
  34288. },
  34289. },
  34290. [
  34291. {
  34292. name: "Normal",
  34293. height: math.unit(7 + 8/12, "feet"),
  34294. default: true
  34295. },
  34296. {
  34297. name: "Big",
  34298. height: math.unit(14, "feet")
  34299. },
  34300. {
  34301. name: "Minimacro",
  34302. height: math.unit(24, "feet")
  34303. },
  34304. {
  34305. name: "Macro",
  34306. height: math.unit(140, "feet")
  34307. },
  34308. ]
  34309. ))
  34310. characterMakers.push(() => makeCharacter(
  34311. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34312. {
  34313. front: {
  34314. height: math.unit(6, "meters"),
  34315. name: "Front",
  34316. image: {
  34317. source: "./media/characters/ehanu-rehu/front.svg",
  34318. extra: 1800/1800,
  34319. bottom: 59/1859
  34320. }
  34321. },
  34322. },
  34323. [
  34324. {
  34325. name: "Normal",
  34326. height: math.unit(6, "meters"),
  34327. default: true
  34328. },
  34329. ]
  34330. ))
  34331. characterMakers.push(() => makeCharacter(
  34332. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34333. {
  34334. front: {
  34335. height: math.unit(7 + 3/12, "feet"),
  34336. name: "Front",
  34337. image: {
  34338. source: "./media/characters/renholder/front.svg",
  34339. extra: 3096/2960,
  34340. bottom: 250/3346
  34341. }
  34342. },
  34343. },
  34344. [
  34345. {
  34346. name: "Normal Bat",
  34347. height: math.unit(7 + 3/12, "feet"),
  34348. default: true
  34349. },
  34350. {
  34351. name: "Slightly Tall Bat",
  34352. height: math.unit(100, "feet")
  34353. },
  34354. {
  34355. name: "Big Bat",
  34356. height: math.unit(1000, "feet")
  34357. },
  34358. {
  34359. name: "City-Sized Bat",
  34360. height: math.unit(200000, "feet")
  34361. },
  34362. {
  34363. name: "Bigger Bat",
  34364. height: math.unit(10000, "miles")
  34365. },
  34366. {
  34367. name: "Solar Sized Bat",
  34368. height: math.unit(100, "AU")
  34369. },
  34370. {
  34371. name: "Galactic Bat",
  34372. height: math.unit(200000, "lightyears")
  34373. },
  34374. {
  34375. name: "Universally Known Bat",
  34376. height: math.unit(1, "universe")
  34377. },
  34378. ]
  34379. ))
  34380. characterMakers.push(() => makeCharacter(
  34381. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34382. {
  34383. front: {
  34384. height: math.unit(6 + 11/12, "feet"),
  34385. weight: math.unit(250, "lb"),
  34386. name: "Front",
  34387. image: {
  34388. source: "./media/characters/cookiecat/front.svg",
  34389. extra: 893/827,
  34390. bottom: 14/907
  34391. }
  34392. },
  34393. },
  34394. [
  34395. {
  34396. name: "Micro",
  34397. height: math.unit(3, "inches")
  34398. },
  34399. {
  34400. name: "Normal",
  34401. height: math.unit(6 + 11/12, "feet"),
  34402. default: true
  34403. },
  34404. {
  34405. name: "Macro",
  34406. height: math.unit(100, "feet")
  34407. },
  34408. {
  34409. name: "Macro+",
  34410. height: math.unit(404, "feet")
  34411. },
  34412. {
  34413. name: "Megamacro",
  34414. height: math.unit(165, "miles")
  34415. },
  34416. {
  34417. name: "Planetary",
  34418. height: math.unit(4600, "miles")
  34419. },
  34420. ]
  34421. ))
  34422. characterMakers.push(() => makeCharacter(
  34423. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34424. {
  34425. front: {
  34426. height: math.unit(10 + 3/12, "feet"),
  34427. weight: math.unit(1500, "lb"),
  34428. name: "Front",
  34429. image: {
  34430. source: "./media/characters/tux-kusanagi/front.svg",
  34431. extra: 944/840,
  34432. bottom: 39/983
  34433. }
  34434. },
  34435. back: {
  34436. height: math.unit(10 + 3/12, "feet"),
  34437. weight: math.unit(1500, "lb"),
  34438. name: "Back",
  34439. image: {
  34440. source: "./media/characters/tux-kusanagi/back.svg",
  34441. extra: 941/842,
  34442. bottom: 28/969
  34443. }
  34444. },
  34445. rump: {
  34446. height: math.unit(5.25, "feet"),
  34447. name: "Rump",
  34448. image: {
  34449. source: "./media/characters/tux-kusanagi/rump.svg"
  34450. }
  34451. },
  34452. beak: {
  34453. height: math.unit(1.54, "feet"),
  34454. name: "Beak",
  34455. image: {
  34456. source: "./media/characters/tux-kusanagi/beak.svg"
  34457. }
  34458. },
  34459. },
  34460. [
  34461. {
  34462. name: "Normal",
  34463. height: math.unit(10 + 3/12, "feet"),
  34464. default: true
  34465. },
  34466. ]
  34467. ))
  34468. characterMakers.push(() => makeCharacter(
  34469. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34470. {
  34471. front: {
  34472. height: math.unit(58, "feet"),
  34473. weight: math.unit(200, "tons"),
  34474. name: "Front",
  34475. image: {
  34476. source: "./media/characters/uzarmazari/front.svg",
  34477. extra: 1575/1455,
  34478. bottom: 152/1727
  34479. }
  34480. },
  34481. back: {
  34482. height: math.unit(58, "feet"),
  34483. weight: math.unit(200, "tons"),
  34484. name: "Back",
  34485. image: {
  34486. source: "./media/characters/uzarmazari/back.svg",
  34487. extra: 1585/1510,
  34488. bottom: 157/1742
  34489. }
  34490. },
  34491. head: {
  34492. height: math.unit(26, "feet"),
  34493. name: "Head",
  34494. image: {
  34495. source: "./media/characters/uzarmazari/head.svg"
  34496. }
  34497. },
  34498. },
  34499. [
  34500. {
  34501. name: "Normal",
  34502. height: math.unit(58, "feet"),
  34503. default: true
  34504. },
  34505. ]
  34506. ))
  34507. characterMakers.push(() => makeCharacter(
  34508. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34509. {
  34510. side: {
  34511. height: math.unit(15, "feet"),
  34512. name: "Side",
  34513. image: {
  34514. source: "./media/characters/akitu/side.svg",
  34515. extra: 1421/1321,
  34516. bottom: 157/1578
  34517. }
  34518. },
  34519. front: {
  34520. height: math.unit(15, "feet"),
  34521. name: "Front",
  34522. image: {
  34523. source: "./media/characters/akitu/front.svg",
  34524. extra: 1435/1326,
  34525. bottom: 232/1667
  34526. }
  34527. },
  34528. },
  34529. [
  34530. {
  34531. name: "Normal",
  34532. height: math.unit(15, "feet"),
  34533. default: true
  34534. },
  34535. ]
  34536. ))
  34537. characterMakers.push(() => makeCharacter(
  34538. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34539. {
  34540. front: {
  34541. height: math.unit(10 + 8/12, "feet"),
  34542. name: "Front",
  34543. image: {
  34544. source: "./media/characters/azalie-croixland/front.svg",
  34545. extra: 1972/1856,
  34546. bottom: 31/2003
  34547. }
  34548. },
  34549. },
  34550. [
  34551. {
  34552. name: "Original Height",
  34553. height: math.unit(5 + 4/12, "feet")
  34554. },
  34555. {
  34556. name: "Normal Height",
  34557. height: math.unit(10 + 8/12, "feet"),
  34558. default: true
  34559. },
  34560. ]
  34561. ))
  34562. characterMakers.push(() => makeCharacter(
  34563. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34564. {
  34565. side: {
  34566. height: math.unit(7 + 1/12, "feet"),
  34567. weight: math.unit(245, "lb"),
  34568. name: "Side",
  34569. image: {
  34570. source: "./media/characters/kavus-kazian/side.svg",
  34571. extra: 349/342,
  34572. bottom: 15/364
  34573. }
  34574. },
  34575. },
  34576. [
  34577. {
  34578. name: "Normal",
  34579. height: math.unit(7 + 1/12, "feet"),
  34580. default: true
  34581. },
  34582. ]
  34583. ))
  34584. characterMakers.push(() => makeCharacter(
  34585. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34586. {
  34587. normal: {
  34588. height: math.unit(5 + 11/12, "feet"),
  34589. name: "Normal",
  34590. image: {
  34591. source: "./media/characters/moonlight-rose/normal.svg",
  34592. extra: 1979/1835,
  34593. bottom: 14/1993
  34594. }
  34595. },
  34596. demon: {
  34597. height: math.unit(5, "km"),
  34598. name: "Demon",
  34599. image: {
  34600. source: "./media/characters/moonlight-rose/demon.svg",
  34601. extra: 986/916,
  34602. bottom: 28/1014
  34603. }
  34604. },
  34605. },
  34606. [
  34607. {
  34608. name: "\"Natural\" height",
  34609. height: math.unit(5 + 11/12, "feet")
  34610. },
  34611. {
  34612. name: "Comfortable Size",
  34613. height: math.unit(40, "meters")
  34614. },
  34615. {
  34616. name: "Common Size",
  34617. height: math.unit(50, "km"),
  34618. default: true
  34619. },
  34620. {
  34621. name: "Demonic",
  34622. height: math.unit(1.24415e+21, "meters")
  34623. },
  34624. ]
  34625. ))
  34626. characterMakers.push(() => makeCharacter(
  34627. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34628. {
  34629. front: {
  34630. height: math.unit(16, "feet"),
  34631. weight: math.unit(610, "kg"),
  34632. name: "Front",
  34633. image: {
  34634. source: "./media/characters/huckle/front.svg",
  34635. extra: 1731/1625,
  34636. bottom: 33/1764
  34637. }
  34638. },
  34639. back: {
  34640. height: math.unit(16, "feet"),
  34641. weight: math.unit(610, "kg"),
  34642. name: "Back",
  34643. image: {
  34644. source: "./media/characters/huckle/back.svg",
  34645. extra: 1738/1651,
  34646. bottom: 37/1775
  34647. }
  34648. },
  34649. laughing: {
  34650. height: math.unit(3.75, "feet"),
  34651. name: "Laughing",
  34652. image: {
  34653. source: "./media/characters/huckle/laughing.svg"
  34654. }
  34655. },
  34656. angry: {
  34657. height: math.unit(4.15, "feet"),
  34658. name: "Angry",
  34659. image: {
  34660. source: "./media/characters/huckle/angry.svg"
  34661. }
  34662. },
  34663. },
  34664. [
  34665. {
  34666. name: "Normal",
  34667. height: math.unit(16, "feet"),
  34668. default: true
  34669. },
  34670. {
  34671. name: "Mini Macro",
  34672. height: math.unit(463, "feet")
  34673. },
  34674. {
  34675. name: "Macro",
  34676. height: math.unit(1680, "meters")
  34677. },
  34678. {
  34679. name: "Mega Macro",
  34680. height: math.unit(175, "km")
  34681. },
  34682. {
  34683. name: "Terra Macro",
  34684. height: math.unit(32, "gigameters")
  34685. },
  34686. {
  34687. name: "Multiverse+",
  34688. height: math.unit(2.56e23, "yottameters")
  34689. },
  34690. ]
  34691. ))
  34692. characterMakers.push(() => makeCharacter(
  34693. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34694. {
  34695. front: {
  34696. height: math.unit(6 + 9/12, "feet"),
  34697. weight: math.unit(280, "lb"),
  34698. name: "Front",
  34699. image: {
  34700. source: "./media/characters/candy/front.svg",
  34701. extra: 234/217,
  34702. bottom: 11/245
  34703. }
  34704. },
  34705. },
  34706. [
  34707. {
  34708. name: "Really Small",
  34709. height: math.unit(0.1, "nm")
  34710. },
  34711. {
  34712. name: "Micro",
  34713. height: math.unit(2, "inches")
  34714. },
  34715. {
  34716. name: "Normal",
  34717. height: math.unit(6 + 9/12, "feet"),
  34718. default: true
  34719. },
  34720. {
  34721. name: "Small Macro",
  34722. height: math.unit(69, "feet")
  34723. },
  34724. {
  34725. name: "Macro",
  34726. height: math.unit(160, "feet")
  34727. },
  34728. {
  34729. name: "Megamacro",
  34730. height: math.unit(22000, "miles")
  34731. },
  34732. {
  34733. name: "Gigamacro",
  34734. height: math.unit(50000, "miles")
  34735. },
  34736. ]
  34737. ))
  34738. characterMakers.push(() => makeCharacter(
  34739. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  34740. {
  34741. front: {
  34742. height: math.unit(4, "feet"),
  34743. weight: math.unit(90, "lb"),
  34744. name: "Front",
  34745. image: {
  34746. source: "./media/characters/joey-mcdonald/front.svg",
  34747. extra: 1059/852,
  34748. bottom: 33/1092
  34749. }
  34750. },
  34751. back: {
  34752. height: math.unit(4, "feet"),
  34753. weight: math.unit(90, "lb"),
  34754. name: "Back",
  34755. image: {
  34756. source: "./media/characters/joey-mcdonald/back.svg",
  34757. extra: 1077/879,
  34758. bottom: 5/1082
  34759. }
  34760. },
  34761. frontKobold: {
  34762. height: math.unit(4, "feet"),
  34763. weight: math.unit(100, "lb"),
  34764. name: "Front-kobold",
  34765. image: {
  34766. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  34767. extra: 1480/1367,
  34768. bottom: 0/1480
  34769. }
  34770. },
  34771. backKobold: {
  34772. height: math.unit(4, "feet"),
  34773. weight: math.unit(100, "lb"),
  34774. name: "Back-kobold",
  34775. image: {
  34776. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  34777. extra: 1449/1361,
  34778. bottom: 0/1449
  34779. }
  34780. },
  34781. },
  34782. [
  34783. {
  34784. name: "Normal",
  34785. height: math.unit(4, "feet"),
  34786. default: true
  34787. },
  34788. ]
  34789. ))
  34790. characterMakers.push(() => makeCharacter(
  34791. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34792. {
  34793. front: {
  34794. height: math.unit(12 + 6/12, "feet"),
  34795. name: "Front",
  34796. image: {
  34797. source: "./media/characters/kass-lockheed/front.svg",
  34798. extra: 354/343,
  34799. bottom: 9/363
  34800. }
  34801. },
  34802. back: {
  34803. height: math.unit(12 + 6/12, "feet"),
  34804. name: "Back",
  34805. image: {
  34806. source: "./media/characters/kass-lockheed/back.svg",
  34807. extra: 364/352,
  34808. bottom: 3/367
  34809. }
  34810. },
  34811. dick: {
  34812. height: math.unit(3.12, "feet"),
  34813. name: "Dick",
  34814. image: {
  34815. source: "./media/characters/kass-lockheed/dick.svg"
  34816. }
  34817. },
  34818. head: {
  34819. height: math.unit(2.6, "feet"),
  34820. name: "Head",
  34821. image: {
  34822. source: "./media/characters/kass-lockheed/head.svg"
  34823. }
  34824. },
  34825. bleh: {
  34826. height: math.unit(2.85, "feet"),
  34827. name: "Bleh",
  34828. image: {
  34829. source: "./media/characters/kass-lockheed/bleh.svg"
  34830. }
  34831. },
  34832. smug: {
  34833. height: math.unit(2.85, "feet"),
  34834. name: "Smug",
  34835. image: {
  34836. source: "./media/characters/kass-lockheed/smug.svg"
  34837. }
  34838. },
  34839. },
  34840. [
  34841. {
  34842. name: "Normal",
  34843. height: math.unit(12 + 6/12, "feet"),
  34844. default: true
  34845. },
  34846. ]
  34847. ))
  34848. characterMakers.push(() => makeCharacter(
  34849. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34850. {
  34851. front: {
  34852. height: math.unit(6 + 2/12, "feet"),
  34853. name: "Front",
  34854. image: {
  34855. source: "./media/characters/taylor/front.svg",
  34856. extra: 639/495,
  34857. bottom: 12/651
  34858. }
  34859. },
  34860. },
  34861. [
  34862. {
  34863. name: "Normal",
  34864. height: math.unit(6 + 2/12, "feet"),
  34865. default: true
  34866. },
  34867. {
  34868. name: "Big",
  34869. height: math.unit(15, "feet")
  34870. },
  34871. {
  34872. name: "Lorg",
  34873. height: math.unit(80, "feet")
  34874. },
  34875. {
  34876. name: "Too Lorg",
  34877. height: math.unit(120, "feet")
  34878. },
  34879. ]
  34880. ))
  34881. characterMakers.push(() => makeCharacter(
  34882. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34883. {
  34884. front: {
  34885. height: math.unit(15, "feet"),
  34886. name: "Front",
  34887. image: {
  34888. source: "./media/characters/kaizer/front.svg",
  34889. extra: 1612/1436,
  34890. bottom: 43/1655
  34891. }
  34892. },
  34893. },
  34894. [
  34895. {
  34896. name: "Normal",
  34897. height: math.unit(15, "feet"),
  34898. default: true
  34899. },
  34900. ]
  34901. ))
  34902. characterMakers.push(() => makeCharacter(
  34903. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34904. {
  34905. front: {
  34906. height: math.unit(2, "feet"),
  34907. weight: math.unit(30, "lb"),
  34908. name: "Front",
  34909. image: {
  34910. source: "./media/characters/sandy/front.svg",
  34911. extra: 1439/1307,
  34912. bottom: 194/1633
  34913. }
  34914. },
  34915. },
  34916. [
  34917. {
  34918. name: "Normal",
  34919. height: math.unit(2, "feet"),
  34920. default: true
  34921. },
  34922. ]
  34923. ))
  34924. characterMakers.push(() => makeCharacter(
  34925. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34926. {
  34927. front: {
  34928. height: math.unit(3, "feet"),
  34929. name: "Front",
  34930. image: {
  34931. source: "./media/characters/mellvi/front.svg",
  34932. extra: 1831/1630,
  34933. bottom: 58/1889
  34934. }
  34935. },
  34936. },
  34937. [
  34938. {
  34939. name: "Normal",
  34940. height: math.unit(3, "feet"),
  34941. default: true
  34942. },
  34943. ]
  34944. ))
  34945. characterMakers.push(() => makeCharacter(
  34946. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34947. {
  34948. front: {
  34949. height: math.unit(5 + 11/12, "feet"),
  34950. weight: math.unit(200, "lb"),
  34951. name: "Front",
  34952. image: {
  34953. source: "./media/characters/shirou/front.svg",
  34954. extra: 2491/2383,
  34955. bottom: 189/2680
  34956. }
  34957. },
  34958. back: {
  34959. height: math.unit(5 + 11/12, "feet"),
  34960. weight: math.unit(200, "lb"),
  34961. name: "Back",
  34962. image: {
  34963. source: "./media/characters/shirou/back.svg",
  34964. extra: 2554/2450,
  34965. bottom: 76/2630
  34966. }
  34967. },
  34968. },
  34969. [
  34970. {
  34971. name: "Normal",
  34972. height: math.unit(5 + 11/12, "feet"),
  34973. default: true
  34974. },
  34975. ]
  34976. ))
  34977. characterMakers.push(() => makeCharacter(
  34978. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34979. {
  34980. front: {
  34981. height: math.unit(6 + 3/12, "feet"),
  34982. weight: math.unit(177, "lb"),
  34983. name: "Front",
  34984. image: {
  34985. source: "./media/characters/noryu/front.svg",
  34986. extra: 973/885,
  34987. bottom: 10/983
  34988. }
  34989. },
  34990. },
  34991. [
  34992. {
  34993. name: "Normal",
  34994. height: math.unit(6 + 3/12, "feet"),
  34995. default: true
  34996. },
  34997. ]
  34998. ))
  34999. characterMakers.push(() => makeCharacter(
  35000. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  35001. {
  35002. front: {
  35003. height: math.unit(5 + 6/12, "feet"),
  35004. weight: math.unit(170, "lb"),
  35005. name: "Front",
  35006. image: {
  35007. source: "./media/characters/mevolas-rubenido/front.svg",
  35008. extra: 2109/1901,
  35009. bottom: 96/2205
  35010. }
  35011. },
  35012. },
  35013. [
  35014. {
  35015. name: "Normal",
  35016. height: math.unit(5 + 6/12, "feet"),
  35017. default: true
  35018. },
  35019. ]
  35020. ))
  35021. characterMakers.push(() => makeCharacter(
  35022. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  35023. {
  35024. front: {
  35025. height: math.unit(100, "feet"),
  35026. name: "Front",
  35027. image: {
  35028. source: "./media/characters/dee/front.svg",
  35029. extra: 2153/2036,
  35030. bottom: 59/2212
  35031. }
  35032. },
  35033. back: {
  35034. height: math.unit(100, "feet"),
  35035. name: "Back",
  35036. image: {
  35037. source: "./media/characters/dee/back.svg",
  35038. extra: 2183/2058,
  35039. bottom: 75/2258
  35040. }
  35041. },
  35042. foot: {
  35043. height: math.unit(19.43, "feet"),
  35044. name: "Foot",
  35045. image: {
  35046. source: "./media/characters/dee/foot.svg"
  35047. }
  35048. },
  35049. hoof: {
  35050. height: math.unit(20.6, "feet"),
  35051. name: "Hoof",
  35052. image: {
  35053. source: "./media/characters/dee/hoof.svg"
  35054. }
  35055. },
  35056. },
  35057. [
  35058. {
  35059. name: "Macro",
  35060. height: math.unit(100, "feet"),
  35061. default: true
  35062. },
  35063. ]
  35064. ))
  35065. characterMakers.push(() => makeCharacter(
  35066. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  35067. {
  35068. front: {
  35069. height: math.unit(5 + 6/12, "feet"),
  35070. name: "Front",
  35071. image: {
  35072. source: "./media/characters/teh/front.svg",
  35073. extra: 1002/847,
  35074. bottom: 62/1064
  35075. }
  35076. },
  35077. },
  35078. [
  35079. {
  35080. name: "Normal",
  35081. height: math.unit(5 + 6/12, "feet"),
  35082. default: true
  35083. },
  35084. ]
  35085. ))
  35086. characterMakers.push(() => makeCharacter(
  35087. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  35088. {
  35089. side: {
  35090. height: math.unit(6 + 1/12, "feet"),
  35091. weight: math.unit(204, "lb"),
  35092. name: "Side",
  35093. image: {
  35094. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35095. extra: 974/775,
  35096. bottom: 169/1143
  35097. }
  35098. },
  35099. sitting: {
  35100. height: math.unit(6 + 2/12, "feet"),
  35101. weight: math.unit(204, "lb"),
  35102. name: "Sitting",
  35103. image: {
  35104. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35105. extra: 1175/964,
  35106. bottom: 378/1553
  35107. }
  35108. },
  35109. },
  35110. [
  35111. {
  35112. name: "Normal",
  35113. height: math.unit(6 + 1/12, "feet"),
  35114. default: true
  35115. },
  35116. ]
  35117. ))
  35118. characterMakers.push(() => makeCharacter(
  35119. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35120. {
  35121. front: {
  35122. height: math.unit(6, "inches"),
  35123. name: "Front",
  35124. image: {
  35125. source: "./media/characters/tululi/front.svg",
  35126. extra: 1997/1876,
  35127. bottom: 20/2017
  35128. }
  35129. },
  35130. },
  35131. [
  35132. {
  35133. name: "Normal",
  35134. height: math.unit(6, "inches"),
  35135. default: true
  35136. },
  35137. ]
  35138. ))
  35139. characterMakers.push(() => makeCharacter(
  35140. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35141. {
  35142. front: {
  35143. height: math.unit(4 + 1/12, "feet"),
  35144. name: "Front",
  35145. image: {
  35146. source: "./media/characters/star/front.svg",
  35147. extra: 1493/1189,
  35148. bottom: 48/1541
  35149. }
  35150. },
  35151. },
  35152. [
  35153. {
  35154. name: "Normal",
  35155. height: math.unit(4 + 1/12, "feet"),
  35156. default: true
  35157. },
  35158. ]
  35159. ))
  35160. characterMakers.push(() => makeCharacter(
  35161. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35162. {
  35163. front: {
  35164. height: math.unit(6 + 3/12, "feet"),
  35165. name: "Front",
  35166. image: {
  35167. source: "./media/characters/comet/front.svg",
  35168. extra: 1681/1462,
  35169. bottom: 26/1707
  35170. }
  35171. },
  35172. },
  35173. [
  35174. {
  35175. name: "Normal",
  35176. height: math.unit(6 + 3/12, "feet"),
  35177. default: true
  35178. },
  35179. ]
  35180. ))
  35181. characterMakers.push(() => makeCharacter(
  35182. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35183. {
  35184. front: {
  35185. height: math.unit(950, "feet"),
  35186. name: "Front",
  35187. image: {
  35188. source: "./media/characters/vortex/front.svg",
  35189. extra: 1497/1434,
  35190. bottom: 56/1553
  35191. }
  35192. },
  35193. maw: {
  35194. height: math.unit(285, "feet"),
  35195. name: "Maw",
  35196. image: {
  35197. source: "./media/characters/vortex/maw.svg"
  35198. }
  35199. },
  35200. },
  35201. [
  35202. {
  35203. name: "Macro",
  35204. height: math.unit(950, "feet"),
  35205. default: true
  35206. },
  35207. ]
  35208. ))
  35209. characterMakers.push(() => makeCharacter(
  35210. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35211. {
  35212. front: {
  35213. height: math.unit(600, "feet"),
  35214. weight: math.unit(0.02, "grams"),
  35215. name: "Front",
  35216. image: {
  35217. source: "./media/characters/doodle/front.svg",
  35218. extra: 1578/1413,
  35219. bottom: 37/1615
  35220. }
  35221. },
  35222. },
  35223. [
  35224. {
  35225. name: "Macro",
  35226. height: math.unit(600, "feet"),
  35227. default: true
  35228. },
  35229. ]
  35230. ))
  35231. characterMakers.push(() => makeCharacter(
  35232. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35233. {
  35234. front: {
  35235. height: math.unit(6 + 6/12, "feet"),
  35236. name: "Front",
  35237. image: {
  35238. source: "./media/characters/jai/front.svg",
  35239. extra: 1645/1534,
  35240. bottom: 115/1760
  35241. }
  35242. },
  35243. },
  35244. [
  35245. {
  35246. name: "Normal",
  35247. height: math.unit(6 + 6/12, "feet"),
  35248. default: true
  35249. },
  35250. ]
  35251. ))
  35252. characterMakers.push(() => makeCharacter(
  35253. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35254. {
  35255. front: {
  35256. height: math.unit(6 + 8/12, "feet"),
  35257. name: "Front",
  35258. image: {
  35259. source: "./media/characters/pixel/front.svg",
  35260. extra: 1900/1735,
  35261. bottom: 63/1963
  35262. }
  35263. },
  35264. },
  35265. [
  35266. {
  35267. name: "Normal",
  35268. height: math.unit(6 + 8/12, "feet"),
  35269. default: true
  35270. },
  35271. ]
  35272. ))
  35273. characterMakers.push(() => makeCharacter(
  35274. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35275. {
  35276. front: {
  35277. height: math.unit(4 + 11/12, "feet"),
  35278. weight: math.unit(111, "lb"),
  35279. name: "Front",
  35280. image: {
  35281. source: "./media/characters/rhett/front.svg",
  35282. extra: 1682/1586,
  35283. bottom: 92/1774
  35284. }
  35285. },
  35286. },
  35287. [
  35288. {
  35289. name: "Mini",
  35290. height: math.unit(1 + 1/12, "feet")
  35291. },
  35292. {
  35293. name: "Normal",
  35294. height: math.unit(4 + 11/12, "feet"),
  35295. default: true
  35296. },
  35297. ]
  35298. ))
  35299. characterMakers.push(() => makeCharacter(
  35300. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35301. {
  35302. front: {
  35303. height: math.unit(3 + 3/12, "feet"),
  35304. name: "Front",
  35305. image: {
  35306. source: "./media/characters/penny/front.svg",
  35307. extra: 1406/1311,
  35308. bottom: 26/1432
  35309. }
  35310. },
  35311. },
  35312. [
  35313. {
  35314. name: "Normal",
  35315. height: math.unit(3 + 3/12, "feet"),
  35316. default: true
  35317. },
  35318. ]
  35319. ))
  35320. characterMakers.push(() => makeCharacter(
  35321. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35322. {
  35323. front: {
  35324. height: math.unit(4 + 11/12, "feet"),
  35325. name: "Front",
  35326. image: {
  35327. source: "./media/characters/monty/front.svg",
  35328. extra: 1479/1209,
  35329. bottom: 0/1479
  35330. }
  35331. },
  35332. },
  35333. [
  35334. {
  35335. name: "Normal",
  35336. height: math.unit(4 + 11/12, "feet"),
  35337. default: true
  35338. },
  35339. ]
  35340. ))
  35341. characterMakers.push(() => makeCharacter(
  35342. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35343. {
  35344. front: {
  35345. height: math.unit(8 + 4/12, "feet"),
  35346. name: "Front",
  35347. image: {
  35348. source: "./media/characters/sterling/front.svg",
  35349. extra: 1420/1236,
  35350. bottom: 27/1447
  35351. }
  35352. },
  35353. },
  35354. [
  35355. {
  35356. name: "Normal",
  35357. height: math.unit(8 + 4/12, "feet"),
  35358. default: true
  35359. },
  35360. ]
  35361. ))
  35362. characterMakers.push(() => makeCharacter(
  35363. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35364. {
  35365. front: {
  35366. height: math.unit(15, "feet"),
  35367. name: "Front",
  35368. image: {
  35369. source: "./media/characters/marble/front.svg",
  35370. extra: 973/937,
  35371. bottom: 32/1005
  35372. }
  35373. },
  35374. },
  35375. [
  35376. {
  35377. name: "Normal",
  35378. height: math.unit(15, "feet"),
  35379. default: true
  35380. },
  35381. ]
  35382. ))
  35383. characterMakers.push(() => makeCharacter(
  35384. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35385. {
  35386. front: {
  35387. height: math.unit(3, "inches"),
  35388. name: "Front",
  35389. image: {
  35390. source: "./media/characters/powder/front.svg",
  35391. extra: 1504/1334,
  35392. bottom: 518/2022
  35393. }
  35394. },
  35395. },
  35396. [
  35397. {
  35398. name: "Normal",
  35399. height: math.unit(3, "inches"),
  35400. default: true
  35401. },
  35402. ]
  35403. ))
  35404. characterMakers.push(() => makeCharacter(
  35405. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35406. {
  35407. front: {
  35408. height: math.unit(4 + 5/12, "feet"),
  35409. name: "Front",
  35410. image: {
  35411. source: "./media/characters/joey-raccoon/front.svg",
  35412. extra: 1273/1197,
  35413. bottom: 0/1273
  35414. }
  35415. },
  35416. },
  35417. [
  35418. {
  35419. name: "Normal",
  35420. height: math.unit(4 + 5/12, "feet"),
  35421. default: true
  35422. },
  35423. ]
  35424. ))
  35425. characterMakers.push(() => makeCharacter(
  35426. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35427. {
  35428. front: {
  35429. height: math.unit(8 + 4/12, "feet"),
  35430. name: "Front",
  35431. image: {
  35432. source: "./media/characters/vick/front.svg",
  35433. extra: 2187/2118,
  35434. bottom: 47/2234
  35435. }
  35436. },
  35437. },
  35438. [
  35439. {
  35440. name: "Normal",
  35441. height: math.unit(8 + 4/12, "feet"),
  35442. default: true
  35443. },
  35444. ]
  35445. ))
  35446. characterMakers.push(() => makeCharacter(
  35447. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35448. {
  35449. front: {
  35450. height: math.unit(5 + 5/12, "feet"),
  35451. name: "Front",
  35452. image: {
  35453. source: "./media/characters/mitsy/front.svg",
  35454. extra: 1842/1695,
  35455. bottom: 0/1842
  35456. }
  35457. },
  35458. },
  35459. [
  35460. {
  35461. name: "Normal",
  35462. height: math.unit(5 + 5/12, "feet"),
  35463. default: true
  35464. },
  35465. ]
  35466. ))
  35467. characterMakers.push(() => makeCharacter(
  35468. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35469. {
  35470. front: {
  35471. height: math.unit(6 + 3/12, "feet"),
  35472. name: "Front",
  35473. image: {
  35474. source: "./media/characters/silvy/front.svg",
  35475. extra: 1995/1836,
  35476. bottom: 225/2220
  35477. }
  35478. },
  35479. },
  35480. [
  35481. {
  35482. name: "Normal",
  35483. height: math.unit(6 + 3/12, "feet"),
  35484. default: true
  35485. },
  35486. ]
  35487. ))
  35488. characterMakers.push(() => makeCharacter(
  35489. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35490. {
  35491. front: {
  35492. height: math.unit(3 + 8/12, "feet"),
  35493. name: "Front",
  35494. image: {
  35495. source: "./media/characters/rodney/front.svg",
  35496. extra: 1956/1747,
  35497. bottom: 31/1987
  35498. }
  35499. },
  35500. frontDressed: {
  35501. height: math.unit(2.9, "feet"),
  35502. name: "Front (Dressed)",
  35503. image: {
  35504. source: "./media/characters/rodney/front-dressed.svg",
  35505. extra: 1382/1241,
  35506. bottom: 385/1767
  35507. }
  35508. },
  35509. },
  35510. [
  35511. {
  35512. name: "Normal",
  35513. height: math.unit(3 + 8/12, "feet"),
  35514. default: true
  35515. },
  35516. ]
  35517. ))
  35518. characterMakers.push(() => makeCharacter(
  35519. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35520. {
  35521. front: {
  35522. height: math.unit(5 + 9/12, "feet"),
  35523. weight: math.unit(194, "lbs"),
  35524. name: "Front",
  35525. image: {
  35526. source: "./media/characters/zakail-sudekai/front.svg",
  35527. extra: 2696/2533,
  35528. bottom: 248/2944
  35529. }
  35530. },
  35531. maw: {
  35532. height: math.unit(1.35, "feet"),
  35533. name: "Maw",
  35534. image: {
  35535. source: "./media/characters/zakail-sudekai/maw.svg"
  35536. }
  35537. },
  35538. },
  35539. [
  35540. {
  35541. name: "Normal",
  35542. height: math.unit(5 + 9/12, "feet"),
  35543. default: true
  35544. },
  35545. ]
  35546. ))
  35547. characterMakers.push(() => makeCharacter(
  35548. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35549. {
  35550. front: {
  35551. height: math.unit(8 + 4/12, "feet"),
  35552. weight: math.unit(1200, "lb"),
  35553. name: "Front",
  35554. image: {
  35555. source: "./media/characters/eleanor/front.svg",
  35556. extra: 1226/1192,
  35557. bottom: 52/1278
  35558. }
  35559. },
  35560. back: {
  35561. height: math.unit(8 + 4/12, "feet"),
  35562. weight: math.unit(1200, "lb"),
  35563. name: "Back",
  35564. image: {
  35565. source: "./media/characters/eleanor/back.svg",
  35566. extra: 1242/1184,
  35567. bottom: 60/1302
  35568. }
  35569. },
  35570. head: {
  35571. height: math.unit(2.62, "feet"),
  35572. name: "Head",
  35573. image: {
  35574. source: "./media/characters/eleanor/head.svg"
  35575. }
  35576. },
  35577. },
  35578. [
  35579. {
  35580. name: "Normal",
  35581. height: math.unit(8 + 4/12, "feet"),
  35582. default: true
  35583. },
  35584. ]
  35585. ))
  35586. characterMakers.push(() => makeCharacter(
  35587. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35588. {
  35589. front: {
  35590. height: math.unit(8 + 4/12, "feet"),
  35591. weight: math.unit(750, "lb"),
  35592. name: "Front",
  35593. image: {
  35594. source: "./media/characters/tanya/front.svg",
  35595. extra: 1749/1615,
  35596. bottom: 33/1782
  35597. }
  35598. },
  35599. },
  35600. [
  35601. {
  35602. name: "Normal",
  35603. height: math.unit(8 + 4/12, "feet"),
  35604. default: true
  35605. },
  35606. ]
  35607. ))
  35608. characterMakers.push(() => makeCharacter(
  35609. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35610. {
  35611. front: {
  35612. height: math.unit(5, "feet"),
  35613. weight: math.unit(225, "lb"),
  35614. name: "Front",
  35615. image: {
  35616. source: "./media/characters/cindy/front.svg",
  35617. extra: 1320/1250,
  35618. bottom: 42/1362
  35619. }
  35620. },
  35621. frontDressed: {
  35622. height: math.unit(5, "feet"),
  35623. weight: math.unit(225, "lb"),
  35624. name: "Front (Dressed)",
  35625. image: {
  35626. source: "./media/characters/cindy/front-dressed.svg",
  35627. extra: 1320/1250,
  35628. bottom: 42/1362
  35629. }
  35630. },
  35631. back: {
  35632. height: math.unit(5, "feet"),
  35633. weight: math.unit(225, "lb"),
  35634. name: "Back",
  35635. image: {
  35636. source: "./media/characters/cindy/back.svg",
  35637. extra: 1384/1346,
  35638. bottom: 14/1398
  35639. }
  35640. },
  35641. },
  35642. [
  35643. {
  35644. name: "Normal",
  35645. height: math.unit(5, "feet"),
  35646. default: true
  35647. },
  35648. ]
  35649. ))
  35650. characterMakers.push(() => makeCharacter(
  35651. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35652. {
  35653. front: {
  35654. height: math.unit(6 + 9/12, "feet"),
  35655. weight: math.unit(440, "lb"),
  35656. name: "Front",
  35657. image: {
  35658. source: "./media/characters/wilbur-owen/front.svg",
  35659. extra: 1575/1448,
  35660. bottom: 72/1647
  35661. }
  35662. },
  35663. back: {
  35664. height: math.unit(6 + 9/12, "feet"),
  35665. weight: math.unit(440, "lb"),
  35666. name: "Back",
  35667. image: {
  35668. source: "./media/characters/wilbur-owen/back.svg",
  35669. extra: 1578/1445,
  35670. bottom: 36/1614
  35671. }
  35672. },
  35673. },
  35674. [
  35675. {
  35676. name: "Normal",
  35677. height: math.unit(6 + 9/12, "feet"),
  35678. default: true
  35679. },
  35680. ]
  35681. ))
  35682. characterMakers.push(() => makeCharacter(
  35683. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35684. {
  35685. front: {
  35686. height: math.unit(6 + 5/12, "feet"),
  35687. weight: math.unit(650, "lb"),
  35688. name: "Front",
  35689. image: {
  35690. source: "./media/characters/keegan/front.svg",
  35691. extra: 2387/2198,
  35692. bottom: 33/2420
  35693. }
  35694. },
  35695. side: {
  35696. height: math.unit(6 + 5/12, "feet"),
  35697. weight: math.unit(650, "lb"),
  35698. name: "Side",
  35699. image: {
  35700. source: "./media/characters/keegan/side.svg",
  35701. extra: 2390/2202,
  35702. bottom: 47/2437
  35703. }
  35704. },
  35705. back: {
  35706. height: math.unit(6 + 5/12, "feet"),
  35707. weight: math.unit(650, "lb"),
  35708. name: "Back",
  35709. image: {
  35710. source: "./media/characters/keegan/back.svg",
  35711. extra: 2418/2268,
  35712. bottom: 15/2433
  35713. }
  35714. },
  35715. frontSfw: {
  35716. height: math.unit(6 + 5/12, "feet"),
  35717. weight: math.unit(650, "lb"),
  35718. name: "Front (SFW)",
  35719. image: {
  35720. source: "./media/characters/keegan/front-sfw.svg",
  35721. extra: 2387/2198,
  35722. bottom: 33/2420
  35723. }
  35724. },
  35725. beans: {
  35726. height: math.unit(1.85, "feet"),
  35727. name: "Beans",
  35728. image: {
  35729. source: "./media/characters/keegan/beans.svg"
  35730. }
  35731. },
  35732. },
  35733. [
  35734. {
  35735. name: "Normal",
  35736. height: math.unit(6 + 5/12, "feet"),
  35737. default: true
  35738. },
  35739. ]
  35740. ))
  35741. characterMakers.push(() => makeCharacter(
  35742. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35743. {
  35744. front: {
  35745. height: math.unit(9, "feet"),
  35746. name: "Front",
  35747. image: {
  35748. source: "./media/characters/colton/front.svg",
  35749. extra: 1589/1326,
  35750. bottom: 139/1728
  35751. }
  35752. },
  35753. },
  35754. [
  35755. {
  35756. name: "Normal",
  35757. height: math.unit(9, "feet"),
  35758. default: true
  35759. },
  35760. ]
  35761. ))
  35762. characterMakers.push(() => makeCharacter(
  35763. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35764. {
  35765. front: {
  35766. height: math.unit(2 + 9/12, "feet"),
  35767. name: "Front",
  35768. image: {
  35769. source: "./media/characters/bora/front.svg",
  35770. extra: 1265/1250,
  35771. bottom: 24/1289
  35772. }
  35773. },
  35774. },
  35775. [
  35776. {
  35777. name: "Normal",
  35778. height: math.unit(2 + 9/12, "feet"),
  35779. default: true
  35780. },
  35781. ]
  35782. ))
  35783. characterMakers.push(() => makeCharacter(
  35784. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35785. {
  35786. front: {
  35787. height: math.unit(8, "feet"),
  35788. name: "Front",
  35789. image: {
  35790. source: "./media/characters/myu-myu/front.svg",
  35791. extra: 1949/1857,
  35792. bottom: 90/2039
  35793. }
  35794. },
  35795. },
  35796. [
  35797. {
  35798. name: "Normal",
  35799. height: math.unit(8, "feet"),
  35800. default: true
  35801. },
  35802. {
  35803. name: "Big",
  35804. height: math.unit(15, "feet")
  35805. },
  35806. {
  35807. name: "BIG",
  35808. height: math.unit(25, "feet")
  35809. },
  35810. ]
  35811. ))
  35812. characterMakers.push(() => makeCharacter(
  35813. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35814. {
  35815. side: {
  35816. height: math.unit(7 + 5/12, "feet"),
  35817. weight: math.unit(2800, "lb"),
  35818. name: "Side",
  35819. image: {
  35820. source: "./media/characters/haloren/side.svg",
  35821. extra: 1793/409,
  35822. bottom: 59/1852
  35823. }
  35824. },
  35825. frontPaw: {
  35826. height: math.unit(2.36, "feet"),
  35827. name: "Front paw",
  35828. image: {
  35829. source: "./media/characters/haloren/front-paw.svg"
  35830. }
  35831. },
  35832. hindPaw: {
  35833. height: math.unit(3.18, "feet"),
  35834. name: "Hind paw",
  35835. image: {
  35836. source: "./media/characters/haloren/hind-paw.svg"
  35837. }
  35838. },
  35839. maw: {
  35840. height: math.unit(5.05, "feet"),
  35841. name: "Maw",
  35842. image: {
  35843. source: "./media/characters/haloren/maw.svg"
  35844. }
  35845. },
  35846. dick: {
  35847. height: math.unit(2.90, "feet"),
  35848. name: "Dick",
  35849. image: {
  35850. source: "./media/characters/haloren/dick.svg"
  35851. }
  35852. },
  35853. },
  35854. [
  35855. {
  35856. name: "Normal",
  35857. height: math.unit(7 + 5/12, "feet"),
  35858. default: true
  35859. },
  35860. {
  35861. name: "Enhanced",
  35862. height: math.unit(14 + 3/12, "feet")
  35863. },
  35864. ]
  35865. ))
  35866. characterMakers.push(() => makeCharacter(
  35867. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35868. {
  35869. front: {
  35870. height: math.unit(171, "cm"),
  35871. name: "Front",
  35872. image: {
  35873. source: "./media/characters/kimmy/front.svg",
  35874. extra: 1491/1435,
  35875. bottom: 53/1544
  35876. }
  35877. },
  35878. },
  35879. [
  35880. {
  35881. name: "Small",
  35882. height: math.unit(9, "cm")
  35883. },
  35884. {
  35885. name: "Normal",
  35886. height: math.unit(171, "cm"),
  35887. default: true
  35888. },
  35889. ]
  35890. ))
  35891. characterMakers.push(() => makeCharacter(
  35892. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35893. {
  35894. front: {
  35895. height: math.unit(8, "feet"),
  35896. weight: math.unit(300, "lb"),
  35897. name: "Front",
  35898. image: {
  35899. source: "./media/characters/galeboomer/front.svg",
  35900. extra: 4651/4415,
  35901. bottom: 162/4813
  35902. }
  35903. },
  35904. back: {
  35905. height: math.unit(8, "feet"),
  35906. weight: math.unit(300, "lb"),
  35907. name: "Back",
  35908. image: {
  35909. source: "./media/characters/galeboomer/back.svg",
  35910. extra: 4544/4314,
  35911. bottom: 16/4560
  35912. }
  35913. },
  35914. frontAlt: {
  35915. height: math.unit(8, "feet"),
  35916. weight: math.unit(300, "lb"),
  35917. name: "Front (Alt)",
  35918. image: {
  35919. source: "./media/characters/galeboomer/front-alt.svg",
  35920. extra: 4458/4228,
  35921. bottom: 68/4526
  35922. }
  35923. },
  35924. maw: {
  35925. height: math.unit(1.2, "feet"),
  35926. name: "Maw",
  35927. image: {
  35928. source: "./media/characters/galeboomer/maw.svg"
  35929. }
  35930. },
  35931. },
  35932. [
  35933. {
  35934. name: "Normal",
  35935. height: math.unit(8, "feet"),
  35936. default: true
  35937. },
  35938. ]
  35939. ))
  35940. characterMakers.push(() => makeCharacter(
  35941. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35942. {
  35943. front: {
  35944. height: math.unit(5 + 9/12, "feet"),
  35945. weight: math.unit(120, "lb"),
  35946. name: "Front",
  35947. image: {
  35948. source: "./media/characters/chyr/front.svg",
  35949. extra: 1323/1254,
  35950. bottom: 63/1386
  35951. }
  35952. },
  35953. back: {
  35954. height: math.unit(5 + 9/12, "feet"),
  35955. weight: math.unit(120, "lb"),
  35956. name: "Back",
  35957. image: {
  35958. source: "./media/characters/chyr/back.svg",
  35959. extra: 1323/1252,
  35960. bottom: 48/1371
  35961. }
  35962. },
  35963. },
  35964. [
  35965. {
  35966. name: "Normal",
  35967. height: math.unit(5 + 9/12, "feet"),
  35968. default: true
  35969. },
  35970. ]
  35971. ))
  35972. characterMakers.push(() => makeCharacter(
  35973. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35974. {
  35975. front: {
  35976. height: math.unit(7, "feet"),
  35977. weight: math.unit(310, "lb"),
  35978. name: "Front",
  35979. image: {
  35980. source: "./media/characters/solarus/front.svg",
  35981. extra: 2415/2021,
  35982. bottom: 103/2518
  35983. }
  35984. },
  35985. back: {
  35986. height: math.unit(7, "feet"),
  35987. weight: math.unit(310, "lb"),
  35988. name: "Back",
  35989. image: {
  35990. source: "./media/characters/solarus/back.svg",
  35991. extra: 2463/2089,
  35992. bottom: 79/2542
  35993. }
  35994. },
  35995. },
  35996. [
  35997. {
  35998. name: "Normal",
  35999. height: math.unit(7, "feet"),
  36000. default: true
  36001. },
  36002. ]
  36003. ))
  36004. characterMakers.push(() => makeCharacter(
  36005. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  36006. {
  36007. front: {
  36008. height: math.unit(16, "feet"),
  36009. name: "Front",
  36010. image: {
  36011. source: "./media/characters/mutsuju-koizaemon/front.svg",
  36012. extra: 1844/1780,
  36013. bottom: 58/1902
  36014. }
  36015. },
  36016. winterCoat: {
  36017. height: math.unit(16, "feet"),
  36018. name: "Winter Coat",
  36019. image: {
  36020. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  36021. extra: 1807/1775,
  36022. bottom: 69/1876
  36023. }
  36024. },
  36025. },
  36026. [
  36027. {
  36028. name: "Normal",
  36029. height: math.unit(16, "feet"),
  36030. default: true
  36031. },
  36032. {
  36033. name: "Chicago Size",
  36034. height: math.unit(560, "feet")
  36035. },
  36036. ]
  36037. ))
  36038. characterMakers.push(() => makeCharacter(
  36039. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  36040. {
  36041. front: {
  36042. height: math.unit(11 + 6/12, "feet"),
  36043. weight: math.unit(1366, "lb"),
  36044. name: "Front",
  36045. image: {
  36046. source: "./media/characters/lexor/front.svg",
  36047. extra: 1560/1481,
  36048. bottom: 211/1771
  36049. }
  36050. },
  36051. back: {
  36052. height: math.unit(11 + 6/12, "feet"),
  36053. weight: math.unit(1366, "lb"),
  36054. name: "Back",
  36055. image: {
  36056. source: "./media/characters/lexor/back.svg",
  36057. extra: 1614/1533,
  36058. bottom: 76/1690
  36059. }
  36060. },
  36061. maw: {
  36062. height: math.unit(3, "feet"),
  36063. name: "Maw",
  36064. image: {
  36065. source: "./media/characters/lexor/maw.svg"
  36066. }
  36067. },
  36068. dick: {
  36069. height: math.unit(2.59, "feet"),
  36070. name: "Dick",
  36071. image: {
  36072. source: "./media/characters/lexor/dick.svg"
  36073. }
  36074. },
  36075. },
  36076. [
  36077. {
  36078. name: "Normal",
  36079. height: math.unit(11 + 6/12, "feet"),
  36080. default: true
  36081. },
  36082. ]
  36083. ))
  36084. characterMakers.push(() => makeCharacter(
  36085. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  36086. {
  36087. front: {
  36088. height: math.unit(5 + 8/12, "feet"),
  36089. name: "Front",
  36090. image: {
  36091. source: "./media/characters/magnum/front.svg",
  36092. extra: 942/855,
  36093. bottom: 26/968
  36094. }
  36095. },
  36096. },
  36097. [
  36098. {
  36099. name: "Normal",
  36100. height: math.unit(5 + 8/12, "feet"),
  36101. default: true
  36102. },
  36103. ]
  36104. ))
  36105. characterMakers.push(() => makeCharacter(
  36106. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36107. {
  36108. front: {
  36109. height: math.unit(18 + 4/12, "feet"),
  36110. weight: math.unit(1500, "kg"),
  36111. name: "Front",
  36112. image: {
  36113. source: "./media/characters/solas-sharpsman/front.svg",
  36114. extra: 1698/1589,
  36115. bottom: 0/1698
  36116. }
  36117. },
  36118. },
  36119. [
  36120. {
  36121. name: "Normal",
  36122. height: math.unit(18 + 4/12, "feet"),
  36123. default: true
  36124. },
  36125. ]
  36126. ))
  36127. characterMakers.push(() => makeCharacter(
  36128. { name: "October", species: ["tiger"], tags: ["anthro"] },
  36129. {
  36130. front: {
  36131. height: math.unit(5 + 5/12, "feet"),
  36132. weight: math.unit(180, "lb"),
  36133. name: "Front",
  36134. image: {
  36135. source: "./media/characters/october/front.svg",
  36136. extra: 1800/1650,
  36137. bottom: 0/1800
  36138. }
  36139. },
  36140. frontNsfw: {
  36141. height: math.unit(5 + 5/12, "feet"),
  36142. weight: math.unit(180, "lb"),
  36143. name: "Front (NSFW)",
  36144. image: {
  36145. source: "./media/characters/october/front-nsfw.svg",
  36146. extra: 1392/1307,
  36147. bottom: 42/1434
  36148. }
  36149. },
  36150. },
  36151. [
  36152. {
  36153. name: "Normal",
  36154. height: math.unit(5 + 5/12, "feet"),
  36155. default: true
  36156. },
  36157. ]
  36158. ))
  36159. characterMakers.push(() => makeCharacter(
  36160. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36161. {
  36162. front: {
  36163. height: math.unit(8 + 6/12, "feet"),
  36164. name: "Front",
  36165. image: {
  36166. source: "./media/characters/essynkardi/front.svg",
  36167. extra: 1914/1846,
  36168. bottom: 22/1936
  36169. }
  36170. },
  36171. },
  36172. [
  36173. {
  36174. name: "Normal",
  36175. height: math.unit(8 + 6/12, "feet"),
  36176. default: true
  36177. },
  36178. ]
  36179. ))
  36180. characterMakers.push(() => makeCharacter(
  36181. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36182. {
  36183. front: {
  36184. height: math.unit(6 + 6/12, "feet"),
  36185. weight: math.unit(7, "lb"),
  36186. name: "Front",
  36187. image: {
  36188. source: "./media/characters/icky/front.svg",
  36189. extra: 813/782,
  36190. bottom: 66/879
  36191. }
  36192. },
  36193. back: {
  36194. height: math.unit(6 + 6/12, "feet"),
  36195. weight: math.unit(7, "lb"),
  36196. name: "Back",
  36197. image: {
  36198. source: "./media/characters/icky/back.svg",
  36199. extra: 754/735,
  36200. bottom: 56/810
  36201. }
  36202. },
  36203. },
  36204. [
  36205. {
  36206. name: "Normal",
  36207. height: math.unit(6 + 6/12, "feet"),
  36208. default: true
  36209. },
  36210. ]
  36211. ))
  36212. characterMakers.push(() => makeCharacter(
  36213. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36214. {
  36215. front: {
  36216. height: math.unit(15, "feet"),
  36217. name: "Front",
  36218. image: {
  36219. source: "./media/characters/rojas/front.svg",
  36220. extra: 1462/1408,
  36221. bottom: 95/1557
  36222. }
  36223. },
  36224. back: {
  36225. height: math.unit(15, "feet"),
  36226. name: "Back",
  36227. image: {
  36228. source: "./media/characters/rojas/back.svg",
  36229. extra: 1023/954,
  36230. bottom: 28/1051
  36231. }
  36232. },
  36233. },
  36234. [
  36235. {
  36236. name: "Normal",
  36237. height: math.unit(15, "feet"),
  36238. default: true
  36239. },
  36240. ]
  36241. ))
  36242. characterMakers.push(() => makeCharacter(
  36243. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36244. {
  36245. frontHuman: {
  36246. height: math.unit(5 + 7/12, "feet"),
  36247. name: "Front (Human)",
  36248. image: {
  36249. source: "./media/characters/alek-dryagan/front-human.svg",
  36250. extra: 1687/1667,
  36251. bottom: 69/1756
  36252. }
  36253. },
  36254. backHuman: {
  36255. height: math.unit(5 + 7/12, "feet"),
  36256. name: "Back (Human)",
  36257. image: {
  36258. source: "./media/characters/alek-dryagan/back-human.svg",
  36259. extra: 1670/1649,
  36260. bottom: 65/1735
  36261. }
  36262. },
  36263. frontDemi: {
  36264. height: math.unit(65, "feet"),
  36265. name: "Front (Demi)",
  36266. image: {
  36267. source: "./media/characters/alek-dryagan/front-demi.svg",
  36268. extra: 1669/1642,
  36269. bottom: 49/1718
  36270. }
  36271. },
  36272. backDemi: {
  36273. height: math.unit(65, "feet"),
  36274. name: "Back (Demi)",
  36275. image: {
  36276. source: "./media/characters/alek-dryagan/back-demi.svg",
  36277. extra: 1658/1637,
  36278. bottom: 40/1698
  36279. }
  36280. },
  36281. mawHuman: {
  36282. height: math.unit(0.3, "feet"),
  36283. name: "Maw (Human)",
  36284. image: {
  36285. source: "./media/characters/alek-dryagan/maw-human.svg"
  36286. }
  36287. },
  36288. mawDemi: {
  36289. height: math.unit(3.8, "feet"),
  36290. name: "Maw (Demi)",
  36291. image: {
  36292. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36293. }
  36294. },
  36295. },
  36296. [
  36297. {
  36298. name: "Normal",
  36299. height: math.unit(5 + 7/12, "feet"),
  36300. default: true
  36301. },
  36302. ]
  36303. ))
  36304. characterMakers.push(() => makeCharacter(
  36305. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36306. {
  36307. frontHuman: {
  36308. height: math.unit(5 + 2/12, "feet"),
  36309. name: "Front (Human)",
  36310. image: {
  36311. source: "./media/characters/gen/front-human.svg",
  36312. extra: 1627/1538,
  36313. bottom: 71/1698
  36314. }
  36315. },
  36316. backHuman: {
  36317. height: math.unit(5 + 2/12, "feet"),
  36318. name: "Back (Human)",
  36319. image: {
  36320. source: "./media/characters/gen/back-human.svg",
  36321. extra: 1638/1548,
  36322. bottom: 69/1707
  36323. }
  36324. },
  36325. frontDemi: {
  36326. height: math.unit(5 + 2/12, "feet"),
  36327. name: "Front (Demi)",
  36328. image: {
  36329. source: "./media/characters/gen/front-demi.svg",
  36330. extra: 1627/1538,
  36331. bottom: 71/1698
  36332. }
  36333. },
  36334. backDemi: {
  36335. height: math.unit(5 + 2/12, "feet"),
  36336. name: "Back (Demi)",
  36337. image: {
  36338. source: "./media/characters/gen/back-demi.svg",
  36339. extra: 1638/1548,
  36340. bottom: 69/1707
  36341. }
  36342. },
  36343. },
  36344. [
  36345. {
  36346. name: "Normal",
  36347. height: math.unit(5 + 2/12, "feet"),
  36348. default: true
  36349. },
  36350. ]
  36351. ))
  36352. characterMakers.push(() => makeCharacter(
  36353. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36354. {
  36355. frontImp: {
  36356. height: math.unit(1 + 11/12, "feet"),
  36357. name: "Front (Imp)",
  36358. image: {
  36359. source: "./media/characters/max-kobold/front-imp.svg",
  36360. extra: 1238/1134,
  36361. bottom: 81/1319
  36362. }
  36363. },
  36364. backImp: {
  36365. height: math.unit(1 + 11/12, "feet"),
  36366. name: "Back (Imp)",
  36367. image: {
  36368. source: "./media/characters/max-kobold/back-imp.svg",
  36369. extra: 1334/1175,
  36370. bottom: 34/1368
  36371. }
  36372. },
  36373. frontDemi: {
  36374. height: math.unit(5 + 9/12, "feet"),
  36375. name: "Front (Demi)",
  36376. image: {
  36377. source: "./media/characters/max-kobold/front-demi.svg",
  36378. extra: 1715/1685,
  36379. bottom: 54/1769
  36380. }
  36381. },
  36382. backDemi: {
  36383. height: math.unit(5 + 9/12, "feet"),
  36384. name: "Back (Demi)",
  36385. image: {
  36386. source: "./media/characters/max-kobold/back-demi.svg",
  36387. extra: 1752/1729,
  36388. bottom: 41/1793
  36389. }
  36390. },
  36391. handImp: {
  36392. height: math.unit(0.45, "feet"),
  36393. name: "Hand (Imp)",
  36394. image: {
  36395. source: "./media/characters/max-kobold/hand.svg"
  36396. }
  36397. },
  36398. pawImp: {
  36399. height: math.unit(0.46, "feet"),
  36400. name: "Paw (Imp)",
  36401. image: {
  36402. source: "./media/characters/max-kobold/paw.svg"
  36403. }
  36404. },
  36405. handDemi: {
  36406. height: math.unit(0.80, "feet"),
  36407. name: "Hand (Demi)",
  36408. image: {
  36409. source: "./media/characters/max-kobold/hand.svg"
  36410. }
  36411. },
  36412. pawDemi: {
  36413. height: math.unit(1.1, "feet"),
  36414. name: "Paw (Demi)",
  36415. image: {
  36416. source: "./media/characters/max-kobold/paw.svg"
  36417. }
  36418. },
  36419. headImp: {
  36420. height: math.unit(1.33, "feet"),
  36421. name: "Head (Imp)",
  36422. image: {
  36423. source: "./media/characters/max-kobold/head-imp.svg"
  36424. }
  36425. },
  36426. mawImp: {
  36427. height: math.unit(0.75, "feet"),
  36428. name: "Maw (Imp)",
  36429. image: {
  36430. source: "./media/characters/max-kobold/maw-imp.svg"
  36431. }
  36432. },
  36433. mawDemi: {
  36434. height: math.unit(0.42, "feet"),
  36435. name: "Maw (Demi)",
  36436. image: {
  36437. source: "./media/characters/max-kobold/maw-demi.svg"
  36438. }
  36439. },
  36440. },
  36441. [
  36442. {
  36443. name: "Normal",
  36444. height: math.unit(1 + 11/12, "feet"),
  36445. default: true
  36446. },
  36447. ]
  36448. ))
  36449. characterMakers.push(() => makeCharacter(
  36450. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36451. {
  36452. front: {
  36453. height: math.unit(7 + 5/12, "feet"),
  36454. name: "Front",
  36455. image: {
  36456. source: "./media/characters/carbon/front.svg",
  36457. extra: 1754/1689,
  36458. bottom: 65/1819
  36459. }
  36460. },
  36461. back: {
  36462. height: math.unit(7 + 5/12, "feet"),
  36463. name: "Back",
  36464. image: {
  36465. source: "./media/characters/carbon/back.svg",
  36466. extra: 1762/1695,
  36467. bottom: 24/1786
  36468. }
  36469. },
  36470. frontGigantamax: {
  36471. height: math.unit(150, "feet"),
  36472. name: "Front (Gigantamax)",
  36473. image: {
  36474. source: "./media/characters/carbon/front-gigantamax.svg",
  36475. extra: 1826/1669,
  36476. bottom: 59/1885
  36477. }
  36478. },
  36479. backGigantamax: {
  36480. height: math.unit(150, "feet"),
  36481. name: "Back (Gigantamax)",
  36482. image: {
  36483. source: "./media/characters/carbon/back-gigantamax.svg",
  36484. extra: 1796/1653,
  36485. bottom: 53/1849
  36486. }
  36487. },
  36488. maw: {
  36489. height: math.unit(0.48, "feet"),
  36490. name: "Maw",
  36491. image: {
  36492. source: "./media/characters/carbon/maw.svg"
  36493. }
  36494. },
  36495. mawGigantamax: {
  36496. height: math.unit(7.5, "feet"),
  36497. name: "Maw (Gigantamax)",
  36498. image: {
  36499. source: "./media/characters/carbon/maw-gigantamax.svg"
  36500. }
  36501. },
  36502. },
  36503. [
  36504. {
  36505. name: "Normal",
  36506. height: math.unit(7 + 5/12, "feet"),
  36507. default: true
  36508. },
  36509. ]
  36510. ))
  36511. characterMakers.push(() => makeCharacter(
  36512. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36513. {
  36514. front: {
  36515. height: math.unit(6, "feet"),
  36516. name: "Front",
  36517. image: {
  36518. source: "./media/characters/maverick/front.svg",
  36519. extra: 1672/1661,
  36520. bottom: 85/1757
  36521. }
  36522. },
  36523. back: {
  36524. height: math.unit(6, "feet"),
  36525. name: "Back",
  36526. image: {
  36527. source: "./media/characters/maverick/back.svg",
  36528. extra: 1642/1631,
  36529. bottom: 38/1680
  36530. }
  36531. },
  36532. },
  36533. [
  36534. {
  36535. name: "Normal",
  36536. height: math.unit(6, "feet"),
  36537. default: true
  36538. },
  36539. ]
  36540. ))
  36541. characterMakers.push(() => makeCharacter(
  36542. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36543. {
  36544. front: {
  36545. height: math.unit(15, "feet"),
  36546. weight: math.unit(615, "lb"),
  36547. name: "Front",
  36548. image: {
  36549. source: "./media/characters/grockle/front.svg",
  36550. extra: 1535/1427,
  36551. bottom: 56/1591
  36552. }
  36553. },
  36554. },
  36555. [
  36556. {
  36557. name: "Normal",
  36558. height: math.unit(15, "feet"),
  36559. default: true
  36560. },
  36561. {
  36562. name: "Large",
  36563. height: math.unit(150, "feet")
  36564. },
  36565. {
  36566. name: "Macro",
  36567. height: math.unit(1876, "feet")
  36568. },
  36569. {
  36570. name: "Mega Macro",
  36571. height: math.unit(121940, "feet")
  36572. },
  36573. {
  36574. name: "Giga Macro",
  36575. height: math.unit(750, "km")
  36576. },
  36577. {
  36578. name: "Tera Macro",
  36579. height: math.unit(750000, "km")
  36580. },
  36581. {
  36582. name: "Galactic",
  36583. height: math.unit(1.4e5, "km")
  36584. },
  36585. {
  36586. name: "Godlike",
  36587. height: math.unit(9.8e280, "galaxies")
  36588. },
  36589. ]
  36590. ))
  36591. characterMakers.push(() => makeCharacter(
  36592. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36593. {
  36594. front: {
  36595. height: math.unit(11, "meters"),
  36596. weight: math.unit(20, "tonnes"),
  36597. name: "Front",
  36598. image: {
  36599. source: "./media/characters/alistair/front.svg",
  36600. extra: 1265/1009,
  36601. bottom: 93/1358
  36602. }
  36603. },
  36604. },
  36605. [
  36606. {
  36607. name: "Normal",
  36608. height: math.unit(11, "meters"),
  36609. default: true
  36610. },
  36611. ]
  36612. ))
  36613. characterMakers.push(() => makeCharacter(
  36614. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36615. {
  36616. front: {
  36617. height: math.unit(5 + 8/12, "feet"),
  36618. name: "Front",
  36619. image: {
  36620. source: "./media/characters/haruka/front.svg",
  36621. extra: 2012/1952,
  36622. bottom: 0/2012
  36623. }
  36624. },
  36625. },
  36626. [
  36627. {
  36628. name: "Normal",
  36629. height: math.unit(5 + 8/12, "feet"),
  36630. default: true
  36631. },
  36632. ]
  36633. ))
  36634. characterMakers.push(() => makeCharacter(
  36635. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36636. {
  36637. back: {
  36638. height: math.unit(9, "feet"),
  36639. name: "Back",
  36640. image: {
  36641. source: "./media/characters/vivian-sylveon/back.svg",
  36642. extra: 1853/1714,
  36643. bottom: 0/1853
  36644. }
  36645. },
  36646. },
  36647. [
  36648. {
  36649. name: "Normal",
  36650. height: math.unit(9, "feet"),
  36651. default: true
  36652. },
  36653. {
  36654. name: "Macro",
  36655. height: math.unit(500, "feet")
  36656. },
  36657. {
  36658. name: "Megamacro",
  36659. height: math.unit(600, "miles")
  36660. },
  36661. {
  36662. name: "Gigamacro",
  36663. height: math.unit(30000, "miles")
  36664. },
  36665. ]
  36666. ))
  36667. characterMakers.push(() => makeCharacter(
  36668. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36669. {
  36670. anthro: {
  36671. height: math.unit(5 + 10/12, "feet"),
  36672. weight: math.unit(100, "lb"),
  36673. name: "Anthro",
  36674. image: {
  36675. source: "./media/characters/daiki/anthro.svg",
  36676. extra: 1115/1027,
  36677. bottom: 69/1184
  36678. }
  36679. },
  36680. feral: {
  36681. height: math.unit(200, "feet"),
  36682. name: "Feral",
  36683. image: {
  36684. source: "./media/characters/daiki/feral.svg",
  36685. extra: 1256/313,
  36686. bottom: 39/1295
  36687. }
  36688. },
  36689. feralHead: {
  36690. height: math.unit(171, "feet"),
  36691. name: "Feral Head",
  36692. image: {
  36693. source: "./media/characters/daiki/feral-head.svg"
  36694. }
  36695. },
  36696. manaDragon: {
  36697. height: math.unit(170, "meters"),
  36698. name: "Mana-dragon",
  36699. image: {
  36700. source: "./media/characters/daiki/mana-dragon.svg",
  36701. extra: 763/420,
  36702. bottom: 97/860
  36703. }
  36704. },
  36705. },
  36706. [
  36707. {
  36708. name: "Normal",
  36709. height: math.unit(5 + 10/12, "feet"),
  36710. default: true
  36711. },
  36712. ]
  36713. ))
  36714. characterMakers.push(() => makeCharacter(
  36715. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36716. {
  36717. fullyEquippedFront: {
  36718. height: math.unit(3 + 1/12, "feet"),
  36719. weight: math.unit(24, "lb"),
  36720. name: "Fully Equipped (Front)",
  36721. image: {
  36722. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36723. extra: 687/605,
  36724. bottom: 18/705
  36725. }
  36726. },
  36727. fullyEquippedBack: {
  36728. height: math.unit(3 + 1/12, "feet"),
  36729. weight: math.unit(24, "lb"),
  36730. name: "Fully Equipped (Back)",
  36731. image: {
  36732. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36733. extra: 689/590,
  36734. bottom: 18/707
  36735. }
  36736. },
  36737. dailyWear: {
  36738. height: math.unit(3 + 1/12, "feet"),
  36739. weight: math.unit(24, "lb"),
  36740. name: "Daily Wear",
  36741. image: {
  36742. source: "./media/characters/tea-spot/daily-wear.svg",
  36743. extra: 701/620,
  36744. bottom: 21/722
  36745. }
  36746. },
  36747. maidWork: {
  36748. height: math.unit(3 + 1/12, "feet"),
  36749. weight: math.unit(24, "lb"),
  36750. name: "Maid Work",
  36751. image: {
  36752. source: "./media/characters/tea-spot/maid-work.svg",
  36753. extra: 693/609,
  36754. bottom: 15/708
  36755. }
  36756. },
  36757. },
  36758. [
  36759. {
  36760. name: "Normal",
  36761. height: math.unit(3 + 1/12, "feet"),
  36762. default: true
  36763. },
  36764. ]
  36765. ))
  36766. characterMakers.push(() => makeCharacter(
  36767. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36768. {
  36769. front: {
  36770. height: math.unit(175, "cm"),
  36771. weight: math.unit(75, "kg"),
  36772. name: "Front",
  36773. image: {
  36774. source: "./media/characters/chee/front.svg",
  36775. extra: 1796/1740,
  36776. bottom: 40/1836
  36777. }
  36778. },
  36779. },
  36780. [
  36781. {
  36782. name: "Micro-Micro",
  36783. height: math.unit(1, "nm")
  36784. },
  36785. {
  36786. name: "Micro-erst",
  36787. height: math.unit(1, "micrometer")
  36788. },
  36789. {
  36790. name: "Micro-er",
  36791. height: math.unit(1, "cm")
  36792. },
  36793. {
  36794. name: "Normal",
  36795. height: math.unit(175, "cm"),
  36796. default: true
  36797. },
  36798. {
  36799. name: "Macro",
  36800. height: math.unit(100, "m")
  36801. },
  36802. {
  36803. name: "Macro-er",
  36804. height: math.unit(1, "km")
  36805. },
  36806. {
  36807. name: "Macro-erst",
  36808. height: math.unit(10, "km")
  36809. },
  36810. {
  36811. name: "Macro-Macro",
  36812. height: math.unit(100, "km")
  36813. },
  36814. ]
  36815. ))
  36816. characterMakers.push(() => makeCharacter(
  36817. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36818. {
  36819. front: {
  36820. height: math.unit(11 + 9/12, "feet"),
  36821. weight: math.unit(935, "lb"),
  36822. name: "Front",
  36823. image: {
  36824. source: "./media/characters/kingsley/front.svg",
  36825. extra: 1803/1674,
  36826. bottom: 127/1930
  36827. }
  36828. },
  36829. frontNude: {
  36830. height: math.unit(11 + 9/12, "feet"),
  36831. weight: math.unit(935, "lb"),
  36832. name: "Front (Nude)",
  36833. image: {
  36834. source: "./media/characters/kingsley/front-nude.svg",
  36835. extra: 1803/1674,
  36836. bottom: 127/1930
  36837. }
  36838. },
  36839. },
  36840. [
  36841. {
  36842. name: "Normal",
  36843. height: math.unit(11 + 9/12, "feet"),
  36844. default: true
  36845. },
  36846. ]
  36847. ))
  36848. characterMakers.push(() => makeCharacter(
  36849. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36850. {
  36851. side: {
  36852. height: math.unit(9, "feet"),
  36853. name: "Side",
  36854. image: {
  36855. source: "./media/characters/rymel/side.svg",
  36856. extra: 792/469,
  36857. bottom: 121/913
  36858. }
  36859. },
  36860. maw: {
  36861. height: math.unit(2.4, "meters"),
  36862. name: "Maw",
  36863. image: {
  36864. source: "./media/characters/rymel/maw.svg"
  36865. }
  36866. },
  36867. },
  36868. [
  36869. {
  36870. name: "House Drake",
  36871. height: math.unit(2, "feet")
  36872. },
  36873. {
  36874. name: "Reduced",
  36875. height: math.unit(4.5, "feet")
  36876. },
  36877. {
  36878. name: "Normal",
  36879. height: math.unit(9, "feet"),
  36880. default: true
  36881. },
  36882. ]
  36883. ))
  36884. characterMakers.push(() => makeCharacter(
  36885. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36886. {
  36887. front: {
  36888. height: math.unit(1.74, "meters"),
  36889. weight: math.unit(55, "kg"),
  36890. name: "Front",
  36891. image: {
  36892. source: "./media/characters/rubus/front.svg",
  36893. extra: 1894/1742,
  36894. bottom: 44/1938
  36895. }
  36896. },
  36897. },
  36898. [
  36899. {
  36900. name: "Normal",
  36901. height: math.unit(1.74, "meters"),
  36902. default: true
  36903. },
  36904. ]
  36905. ))
  36906. characterMakers.push(() => makeCharacter(
  36907. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36908. {
  36909. front: {
  36910. height: math.unit(5 + 2/12, "feet"),
  36911. weight: math.unit(112, "lb"),
  36912. name: "Front",
  36913. image: {
  36914. source: "./media/characters/cassie-kingston/front.svg",
  36915. extra: 1438/1390,
  36916. bottom: 47/1485
  36917. }
  36918. },
  36919. },
  36920. [
  36921. {
  36922. name: "Normal",
  36923. height: math.unit(5 + 2/12, "feet"),
  36924. default: true
  36925. },
  36926. {
  36927. name: "Macro",
  36928. height: math.unit(128, "feet")
  36929. },
  36930. {
  36931. name: "Megamacro",
  36932. height: math.unit(2.56, "miles")
  36933. },
  36934. ]
  36935. ))
  36936. characterMakers.push(() => makeCharacter(
  36937. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36938. {
  36939. front: {
  36940. height: math.unit(7, "feet"),
  36941. name: "Front",
  36942. image: {
  36943. source: "./media/characters/fox/front.svg",
  36944. extra: 1798/1703,
  36945. bottom: 55/1853
  36946. }
  36947. },
  36948. back: {
  36949. height: math.unit(7, "feet"),
  36950. name: "Back",
  36951. image: {
  36952. source: "./media/characters/fox/back.svg",
  36953. extra: 1748/1649,
  36954. bottom: 32/1780
  36955. }
  36956. },
  36957. head: {
  36958. height: math.unit(1.95, "feet"),
  36959. name: "Head",
  36960. image: {
  36961. source: "./media/characters/fox/head.svg"
  36962. }
  36963. },
  36964. dick: {
  36965. height: math.unit(1.33, "feet"),
  36966. name: "Dick",
  36967. image: {
  36968. source: "./media/characters/fox/dick.svg"
  36969. }
  36970. },
  36971. foot: {
  36972. height: math.unit(1, "feet"),
  36973. name: "Foot",
  36974. image: {
  36975. source: "./media/characters/fox/foot.svg"
  36976. }
  36977. },
  36978. paw: {
  36979. height: math.unit(0.92, "feet"),
  36980. name: "Paw",
  36981. image: {
  36982. source: "./media/characters/fox/paw.svg"
  36983. }
  36984. },
  36985. },
  36986. [
  36987. {
  36988. name: "Small",
  36989. height: math.unit(3, "inches")
  36990. },
  36991. {
  36992. name: "\"Realistic\"",
  36993. height: math.unit(7, "feet")
  36994. },
  36995. {
  36996. name: "Normal",
  36997. height: math.unit(150, "feet"),
  36998. default: true
  36999. },
  37000. {
  37001. name: "BIG",
  37002. height: math.unit(1200, "feet")
  37003. },
  37004. {
  37005. name: "👀",
  37006. height: math.unit(5, "miles")
  37007. },
  37008. {
  37009. name: "👀👀👀",
  37010. height: math.unit(64, "miles")
  37011. },
  37012. ]
  37013. ))
  37014. characterMakers.push(() => makeCharacter(
  37015. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  37016. {
  37017. front: {
  37018. height: math.unit(625, "feet"),
  37019. name: "Front",
  37020. image: {
  37021. source: "./media/characters/asonja-rossa/front.svg",
  37022. extra: 1833/1686,
  37023. bottom: 24/1857
  37024. }
  37025. },
  37026. back: {
  37027. height: math.unit(625, "feet"),
  37028. name: "Back",
  37029. image: {
  37030. source: "./media/characters/asonja-rossa/back.svg",
  37031. extra: 1852/1753,
  37032. bottom: 26/1878
  37033. }
  37034. },
  37035. },
  37036. [
  37037. {
  37038. name: "Macro",
  37039. height: math.unit(625, "feet"),
  37040. default: true
  37041. },
  37042. ]
  37043. ))
  37044. characterMakers.push(() => makeCharacter(
  37045. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  37046. {
  37047. side: {
  37048. height: math.unit(8, "feet"),
  37049. name: "Side",
  37050. image: {
  37051. source: "./media/characters/rezukii/side.svg",
  37052. extra: 979/542,
  37053. bottom: 87/1066
  37054. }
  37055. },
  37056. sitting: {
  37057. height: math.unit(14.6, "feet"),
  37058. name: "Sitting",
  37059. image: {
  37060. source: "./media/characters/rezukii/sitting.svg",
  37061. extra: 1023/813,
  37062. bottom: 45/1068
  37063. }
  37064. },
  37065. },
  37066. [
  37067. {
  37068. name: "Tiny",
  37069. height: math.unit(2, "feet")
  37070. },
  37071. {
  37072. name: "Smol",
  37073. height: math.unit(4, "feet")
  37074. },
  37075. {
  37076. name: "Normal",
  37077. height: math.unit(8, "feet"),
  37078. default: true
  37079. },
  37080. {
  37081. name: "Big",
  37082. height: math.unit(12, "feet")
  37083. },
  37084. {
  37085. name: "Macro",
  37086. height: math.unit(30, "feet")
  37087. },
  37088. ]
  37089. ))
  37090. characterMakers.push(() => makeCharacter(
  37091. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37092. {
  37093. front: {
  37094. height: math.unit(14, "feet"),
  37095. weight: math.unit(9.5, "tonnes"),
  37096. name: "Front",
  37097. image: {
  37098. source: "./media/characters/dawnheart/front.svg",
  37099. extra: 2792/2675,
  37100. bottom: 64/2856
  37101. }
  37102. },
  37103. },
  37104. [
  37105. {
  37106. name: "Normal",
  37107. height: math.unit(14, "feet"),
  37108. default: true
  37109. },
  37110. ]
  37111. ))
  37112. characterMakers.push(() => makeCharacter(
  37113. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  37114. {
  37115. front: {
  37116. height: math.unit(1.7, "m"),
  37117. name: "Front",
  37118. image: {
  37119. source: "./media/characters/gladi/front.svg",
  37120. extra: 1460/1362,
  37121. bottom: 19/1479
  37122. }
  37123. },
  37124. back: {
  37125. height: math.unit(1.7, "m"),
  37126. name: "Back",
  37127. image: {
  37128. source: "./media/characters/gladi/back.svg",
  37129. extra: 1459/1357,
  37130. bottom: 12/1471
  37131. }
  37132. },
  37133. feral: {
  37134. height: math.unit(2.05, "m"),
  37135. name: "Feral",
  37136. image: {
  37137. source: "./media/characters/gladi/feral.svg",
  37138. extra: 821/557,
  37139. bottom: 91/912
  37140. }
  37141. },
  37142. },
  37143. [
  37144. {
  37145. name: "Shortest",
  37146. height: math.unit(70, "cm")
  37147. },
  37148. {
  37149. name: "Normal",
  37150. height: math.unit(1.7, "m")
  37151. },
  37152. {
  37153. name: "Macro",
  37154. height: math.unit(10, "m"),
  37155. default: true
  37156. },
  37157. {
  37158. name: "Tallest",
  37159. height: math.unit(200, "m")
  37160. },
  37161. ]
  37162. ))
  37163. characterMakers.push(() => makeCharacter(
  37164. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37165. {
  37166. front: {
  37167. height: math.unit(5 + 7/12, "feet"),
  37168. weight: math.unit(2, "tons"),
  37169. name: "Front",
  37170. image: {
  37171. source: "./media/characters/erdno/front.svg",
  37172. extra: 1234/1129,
  37173. bottom: 35/1269
  37174. }
  37175. },
  37176. angled: {
  37177. height: math.unit(5 + 7/12, "feet"),
  37178. weight: math.unit(2, "tons"),
  37179. name: "Angled",
  37180. image: {
  37181. source: "./media/characters/erdno/angled.svg",
  37182. extra: 1185/1139,
  37183. bottom: 36/1221
  37184. }
  37185. },
  37186. side: {
  37187. height: math.unit(5 + 7/12, "feet"),
  37188. weight: math.unit(2, "tons"),
  37189. name: "Side",
  37190. image: {
  37191. source: "./media/characters/erdno/side.svg",
  37192. extra: 1191/1144,
  37193. bottom: 40/1231
  37194. }
  37195. },
  37196. back: {
  37197. height: math.unit(5 + 7/12, "feet"),
  37198. weight: math.unit(2, "tons"),
  37199. name: "Back",
  37200. image: {
  37201. source: "./media/characters/erdno/back.svg",
  37202. extra: 1202/1146,
  37203. bottom: 17/1219
  37204. }
  37205. },
  37206. frontNsfw: {
  37207. height: math.unit(5 + 7/12, "feet"),
  37208. weight: math.unit(2, "tons"),
  37209. name: "Front (NSFW)",
  37210. image: {
  37211. source: "./media/characters/erdno/front-nsfw.svg",
  37212. extra: 1234/1129,
  37213. bottom: 35/1269
  37214. }
  37215. },
  37216. angledNsfw: {
  37217. height: math.unit(5 + 7/12, "feet"),
  37218. weight: math.unit(2, "tons"),
  37219. name: "Angled (NSFW)",
  37220. image: {
  37221. source: "./media/characters/erdno/angled-nsfw.svg",
  37222. extra: 1185/1139,
  37223. bottom: 36/1221
  37224. }
  37225. },
  37226. sideNsfw: {
  37227. height: math.unit(5 + 7/12, "feet"),
  37228. weight: math.unit(2, "tons"),
  37229. name: "Side (NSFW)",
  37230. image: {
  37231. source: "./media/characters/erdno/side-nsfw.svg",
  37232. extra: 1191/1144,
  37233. bottom: 40/1231
  37234. }
  37235. },
  37236. backNsfw: {
  37237. height: math.unit(5 + 7/12, "feet"),
  37238. weight: math.unit(2, "tons"),
  37239. name: "Back (NSFW)",
  37240. image: {
  37241. source: "./media/characters/erdno/back-nsfw.svg",
  37242. extra: 1202/1146,
  37243. bottom: 17/1219
  37244. }
  37245. },
  37246. frontHyper: {
  37247. height: math.unit(5 + 7/12, "feet"),
  37248. weight: math.unit(2, "tons"),
  37249. name: "Front (Hyper)",
  37250. image: {
  37251. source: "./media/characters/erdno/front-hyper.svg",
  37252. extra: 1298/1136,
  37253. bottom: 35/1333
  37254. }
  37255. },
  37256. },
  37257. [
  37258. {
  37259. name: "Normal",
  37260. height: math.unit(5 + 7/12, "feet"),
  37261. default: true
  37262. },
  37263. {
  37264. name: "Big",
  37265. height: math.unit(5.7, "meters")
  37266. },
  37267. {
  37268. name: "Macro",
  37269. height: math.unit(5.7, "kilometers")
  37270. },
  37271. {
  37272. name: "Megamacro",
  37273. height: math.unit(5.7, "earths")
  37274. },
  37275. ]
  37276. ))
  37277. characterMakers.push(() => makeCharacter(
  37278. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37279. {
  37280. front: {
  37281. height: math.unit(5 + 10/12, "feet"),
  37282. weight: math.unit(150, "lb"),
  37283. name: "Front",
  37284. image: {
  37285. source: "./media/characters/jamie/front.svg",
  37286. extra: 1908/1768,
  37287. bottom: 19/1927
  37288. }
  37289. },
  37290. },
  37291. [
  37292. {
  37293. name: "Minimum",
  37294. height: math.unit(2, "cm")
  37295. },
  37296. {
  37297. name: "Micro",
  37298. height: math.unit(3, "inches")
  37299. },
  37300. {
  37301. name: "Normal",
  37302. height: math.unit(5 + 10/12, "feet"),
  37303. default: true
  37304. },
  37305. {
  37306. name: "Macro",
  37307. height: math.unit(150, "feet")
  37308. },
  37309. {
  37310. name: "Megamacro",
  37311. height: math.unit(10000, "m")
  37312. },
  37313. ]
  37314. ))
  37315. characterMakers.push(() => makeCharacter(
  37316. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37317. {
  37318. front: {
  37319. height: math.unit(2, "meters"),
  37320. weight: math.unit(100, "kg"),
  37321. name: "Front",
  37322. image: {
  37323. source: "./media/characters/shiron/front.svg",
  37324. extra: 2103/1985,
  37325. bottom: 98/2201
  37326. }
  37327. },
  37328. back: {
  37329. height: math.unit(2, "meters"),
  37330. weight: math.unit(100, "kg"),
  37331. name: "Back",
  37332. image: {
  37333. source: "./media/characters/shiron/back.svg",
  37334. extra: 2110/2015,
  37335. bottom: 89/2199
  37336. }
  37337. },
  37338. hand: {
  37339. height: math.unit(0.96, "feet"),
  37340. name: "Hand",
  37341. image: {
  37342. source: "./media/characters/shiron/hand.svg"
  37343. }
  37344. },
  37345. foot: {
  37346. height: math.unit(1.464, "feet"),
  37347. name: "Foot",
  37348. image: {
  37349. source: "./media/characters/shiron/foot.svg"
  37350. }
  37351. },
  37352. },
  37353. [
  37354. {
  37355. name: "Normal",
  37356. height: math.unit(2, "meters")
  37357. },
  37358. {
  37359. name: "Macro",
  37360. height: math.unit(500, "meters"),
  37361. default: true
  37362. },
  37363. {
  37364. name: "Megamacro",
  37365. height: math.unit(20, "km")
  37366. },
  37367. ]
  37368. ))
  37369. characterMakers.push(() => makeCharacter(
  37370. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37371. {
  37372. front: {
  37373. height: math.unit(6, "feet"),
  37374. name: "Front",
  37375. image: {
  37376. source: "./media/characters/sam/front.svg",
  37377. extra: 849/826,
  37378. bottom: 19/868
  37379. }
  37380. },
  37381. },
  37382. [
  37383. {
  37384. name: "Normal",
  37385. height: math.unit(6, "feet"),
  37386. default: true
  37387. },
  37388. ]
  37389. ))
  37390. characterMakers.push(() => makeCharacter(
  37391. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37392. {
  37393. front: {
  37394. height: math.unit(8 + 4/12, "feet"),
  37395. weight: math.unit(122, "kg"),
  37396. name: "Front",
  37397. image: {
  37398. source: "./media/characters/namori-kurogawa/front.svg",
  37399. extra: 1894/1576,
  37400. bottom: 34/1928
  37401. }
  37402. },
  37403. },
  37404. [
  37405. {
  37406. name: "Normal",
  37407. height: math.unit(8 + 4/12, "feet"),
  37408. default: true
  37409. },
  37410. ]
  37411. ))
  37412. characterMakers.push(() => makeCharacter(
  37413. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37414. {
  37415. front: {
  37416. height: math.unit(9, "feet"),
  37417. weight: math.unit(621, "lb"),
  37418. name: "Front",
  37419. image: {
  37420. source: "./media/characters/unmru/front.svg",
  37421. extra: 1853/1747,
  37422. bottom: 73/1926
  37423. }
  37424. },
  37425. side: {
  37426. height: math.unit(9, "feet"),
  37427. weight: math.unit(621, "lb"),
  37428. name: "Side",
  37429. image: {
  37430. source: "./media/characters/unmru/side.svg",
  37431. extra: 1781/1671,
  37432. bottom: 127/1908
  37433. }
  37434. },
  37435. back: {
  37436. height: math.unit(9, "feet"),
  37437. weight: math.unit(621, "lb"),
  37438. name: "Back",
  37439. image: {
  37440. source: "./media/characters/unmru/back.svg",
  37441. extra: 1894/1765,
  37442. bottom: 75/1969
  37443. }
  37444. },
  37445. dick: {
  37446. height: math.unit(3, "feet"),
  37447. weight: math.unit(35, "lb"),
  37448. name: "Dick",
  37449. image: {
  37450. source: "./media/characters/unmru/dick.svg"
  37451. }
  37452. },
  37453. },
  37454. [
  37455. {
  37456. name: "Normal",
  37457. height: math.unit(9, "feet")
  37458. },
  37459. {
  37460. name: "Natural",
  37461. height: math.unit(27, "feet"),
  37462. default: true
  37463. },
  37464. {
  37465. name: "Giant",
  37466. height: math.unit(90, "feet")
  37467. },
  37468. {
  37469. name: "Kaiju",
  37470. height: math.unit(270, "feet")
  37471. },
  37472. {
  37473. name: "Macro",
  37474. height: math.unit(900, "feet")
  37475. },
  37476. {
  37477. name: "Macro+",
  37478. height: math.unit(2700, "feet")
  37479. },
  37480. {
  37481. name: "Megamacro",
  37482. height: math.unit(9000, "feet")
  37483. },
  37484. {
  37485. name: "City-Crushing",
  37486. height: math.unit(27000, "feet")
  37487. },
  37488. {
  37489. name: "Mountain-Mashing",
  37490. height: math.unit(90000, "feet")
  37491. },
  37492. {
  37493. name: "Earth-Eclipsing",
  37494. height: math.unit(2.7e8, "feet")
  37495. },
  37496. {
  37497. name: "Sol-Swallowing",
  37498. height: math.unit(9e10, "feet")
  37499. },
  37500. {
  37501. name: "Majoris-Munching",
  37502. height: math.unit(2.7e13, "feet")
  37503. },
  37504. ]
  37505. ))
  37506. characterMakers.push(() => makeCharacter(
  37507. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37508. {
  37509. front: {
  37510. height: math.unit(1, "inch"),
  37511. name: "Front",
  37512. image: {
  37513. source: "./media/characters/squeaks-mouse/front.svg",
  37514. extra: 352/308,
  37515. bottom: 25/377
  37516. }
  37517. },
  37518. },
  37519. [
  37520. {
  37521. name: "Micro",
  37522. height: math.unit(1, "inch"),
  37523. default: true
  37524. },
  37525. ]
  37526. ))
  37527. characterMakers.push(() => makeCharacter(
  37528. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37529. {
  37530. side: {
  37531. height: math.unit(35, "feet"),
  37532. name: "Side",
  37533. image: {
  37534. source: "./media/characters/sayko/side.svg",
  37535. extra: 1697/1021,
  37536. bottom: 82/1779
  37537. }
  37538. },
  37539. head: {
  37540. height: math.unit(16, "feet"),
  37541. name: "Head",
  37542. image: {
  37543. source: "./media/characters/sayko/head.svg"
  37544. }
  37545. },
  37546. forepaw: {
  37547. height: math.unit(7.85, "feet"),
  37548. name: "Forepaw",
  37549. image: {
  37550. source: "./media/characters/sayko/forepaw.svg"
  37551. }
  37552. },
  37553. hindpaw: {
  37554. height: math.unit(8.8, "feet"),
  37555. name: "Hindpaw",
  37556. image: {
  37557. source: "./media/characters/sayko/hindpaw.svg"
  37558. }
  37559. },
  37560. },
  37561. [
  37562. {
  37563. name: "Normal",
  37564. height: math.unit(35, "feet"),
  37565. default: true
  37566. },
  37567. {
  37568. name: "Colossus",
  37569. height: math.unit(100, "meters")
  37570. },
  37571. {
  37572. name: "\"Small\" Deity",
  37573. height: math.unit(1, "km")
  37574. },
  37575. {
  37576. name: "\"Large\" Deity",
  37577. height: math.unit(15, "km")
  37578. },
  37579. ]
  37580. ))
  37581. characterMakers.push(() => makeCharacter(
  37582. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37583. {
  37584. front: {
  37585. height: math.unit(6, "feet"),
  37586. weight: math.unit(250, "lb"),
  37587. name: "Front",
  37588. image: {
  37589. source: "./media/characters/mukiro/front.svg",
  37590. extra: 1368/1310,
  37591. bottom: 34/1402
  37592. }
  37593. },
  37594. },
  37595. [
  37596. {
  37597. name: "Normal",
  37598. height: math.unit(6, "feet"),
  37599. default: true
  37600. },
  37601. ]
  37602. ))
  37603. characterMakers.push(() => makeCharacter(
  37604. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37605. {
  37606. front: {
  37607. height: math.unit(12 + 4/12, "feet"),
  37608. name: "Front",
  37609. image: {
  37610. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37611. extra: 1346/1311,
  37612. bottom: 65/1411
  37613. }
  37614. },
  37615. },
  37616. [
  37617. {
  37618. name: "Base",
  37619. height: math.unit(12 + 4/12, "feet"),
  37620. default: true
  37621. },
  37622. {
  37623. name: "Macro",
  37624. height: math.unit(150, "feet")
  37625. },
  37626. {
  37627. name: "Mega",
  37628. height: math.unit(2, "miles")
  37629. },
  37630. {
  37631. name: "Demi God",
  37632. height: math.unit(4, "AU")
  37633. },
  37634. {
  37635. name: "God Size",
  37636. height: math.unit(1, "universe")
  37637. },
  37638. ]
  37639. ))
  37640. characterMakers.push(() => makeCharacter(
  37641. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37642. {
  37643. front: {
  37644. height: math.unit(3 + 3/12, "feet"),
  37645. weight: math.unit(88, "lb"),
  37646. name: "Front",
  37647. image: {
  37648. source: "./media/characters/trey/front.svg",
  37649. extra: 1815/1509,
  37650. bottom: 60/1875
  37651. }
  37652. },
  37653. },
  37654. [
  37655. {
  37656. name: "Normal",
  37657. height: math.unit(3 + 3/12, "feet"),
  37658. default: true
  37659. },
  37660. ]
  37661. ))
  37662. characterMakers.push(() => makeCharacter(
  37663. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37664. {
  37665. front: {
  37666. height: math.unit(4, "meters"),
  37667. name: "Front",
  37668. image: {
  37669. source: "./media/characters/adelonda/front.svg",
  37670. extra: 1077/982,
  37671. bottom: 39/1116
  37672. }
  37673. },
  37674. back: {
  37675. height: math.unit(4, "meters"),
  37676. name: "Back",
  37677. image: {
  37678. source: "./media/characters/adelonda/back.svg",
  37679. extra: 1105/1003,
  37680. bottom: 25/1130
  37681. }
  37682. },
  37683. },
  37684. [
  37685. {
  37686. name: "Normal",
  37687. height: math.unit(4, "meters"),
  37688. default: true
  37689. },
  37690. ]
  37691. ))
  37692. characterMakers.push(() => makeCharacter(
  37693. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37694. {
  37695. front: {
  37696. height: math.unit(8 + 4/12, "feet"),
  37697. weight: math.unit(670, "lb"),
  37698. name: "Front",
  37699. image: {
  37700. source: "./media/characters/acadiel/front.svg",
  37701. extra: 1901/1595,
  37702. bottom: 142/2043
  37703. }
  37704. },
  37705. },
  37706. [
  37707. {
  37708. name: "Normal",
  37709. height: math.unit(8 + 4/12, "feet"),
  37710. default: true
  37711. },
  37712. {
  37713. name: "Macro",
  37714. height: math.unit(200, "feet")
  37715. },
  37716. ]
  37717. ))
  37718. characterMakers.push(() => makeCharacter(
  37719. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37720. {
  37721. front: {
  37722. height: math.unit(6 + 2/12, "feet"),
  37723. weight: math.unit(185, "lb"),
  37724. name: "Front",
  37725. image: {
  37726. source: "./media/characters/kayne-ein/front.svg",
  37727. extra: 1780/1560,
  37728. bottom: 81/1861
  37729. }
  37730. },
  37731. },
  37732. [
  37733. {
  37734. name: "Normal",
  37735. height: math.unit(6 + 2/12, "feet"),
  37736. default: true
  37737. },
  37738. {
  37739. name: "Transformation Stage",
  37740. height: math.unit(15, "feet")
  37741. },
  37742. {
  37743. name: "Macro",
  37744. height: math.unit(150, "feet")
  37745. },
  37746. {
  37747. name: "Earth's Shadow",
  37748. height: math.unit(6200, "miles")
  37749. },
  37750. {
  37751. name: "Universal Demon",
  37752. height: math.unit(28e9, "parsecs")
  37753. },
  37754. {
  37755. name: "Multiverse God",
  37756. height: math.unit(3, "multiverses")
  37757. },
  37758. ]
  37759. ))
  37760. characterMakers.push(() => makeCharacter(
  37761. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37762. {
  37763. front: {
  37764. height: math.unit(5 + 5/12, "feet"),
  37765. name: "Front",
  37766. image: {
  37767. source: "./media/characters/fawn/front.svg",
  37768. extra: 1873/1731,
  37769. bottom: 95/1968
  37770. }
  37771. },
  37772. back: {
  37773. height: math.unit(5 + 5/12, "feet"),
  37774. name: "Back",
  37775. image: {
  37776. source: "./media/characters/fawn/back.svg",
  37777. extra: 1813/1700,
  37778. bottom: 14/1827
  37779. }
  37780. },
  37781. hoof: {
  37782. height: math.unit(1.45, "feet"),
  37783. name: "Hoof",
  37784. image: {
  37785. source: "./media/characters/fawn/hoof.svg"
  37786. }
  37787. },
  37788. },
  37789. [
  37790. {
  37791. name: "Normal",
  37792. height: math.unit(5 + 5/12, "feet"),
  37793. default: true
  37794. },
  37795. ]
  37796. ))
  37797. characterMakers.push(() => makeCharacter(
  37798. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37799. {
  37800. front: {
  37801. height: math.unit(2 + 5/12, "feet"),
  37802. name: "Front",
  37803. image: {
  37804. source: "./media/characters/orion/front.svg",
  37805. extra: 1366/1304,
  37806. bottom: 43/1409
  37807. }
  37808. },
  37809. paw: {
  37810. height: math.unit(0.52, "feet"),
  37811. name: "Paw",
  37812. image: {
  37813. source: "./media/characters/orion/paw.svg"
  37814. }
  37815. },
  37816. },
  37817. [
  37818. {
  37819. name: "Normal",
  37820. height: math.unit(2 + 5/12, "feet"),
  37821. default: true
  37822. },
  37823. ]
  37824. ))
  37825. characterMakers.push(() => makeCharacter(
  37826. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37827. {
  37828. front: {
  37829. height: math.unit(5 + 10/12, "feet"),
  37830. name: "Front",
  37831. image: {
  37832. source: "./media/characters/vera/front.svg",
  37833. extra: 1680/1575,
  37834. bottom: 49/1729
  37835. }
  37836. },
  37837. back: {
  37838. height: math.unit(5 + 10/12, "feet"),
  37839. name: "Back",
  37840. image: {
  37841. source: "./media/characters/vera/back.svg",
  37842. extra: 1700/1588,
  37843. bottom: 18/1718
  37844. }
  37845. },
  37846. arcanine: {
  37847. height: math.unit(6 + 8/12, "feet"),
  37848. name: "Arcanine",
  37849. image: {
  37850. source: "./media/characters/vera/arcanine.svg",
  37851. extra: 1590/1511,
  37852. bottom: 71/1661
  37853. }
  37854. },
  37855. maw: {
  37856. height: math.unit(0.82, "feet"),
  37857. name: "Maw",
  37858. image: {
  37859. source: "./media/characters/vera/maw.svg"
  37860. }
  37861. },
  37862. mawArcanine: {
  37863. height: math.unit(0.97, "feet"),
  37864. name: "Maw (Arcanine)",
  37865. image: {
  37866. source: "./media/characters/vera/maw-arcanine.svg"
  37867. }
  37868. },
  37869. paw: {
  37870. height: math.unit(0.75, "feet"),
  37871. name: "Paw",
  37872. image: {
  37873. source: "./media/characters/vera/paw.svg"
  37874. }
  37875. },
  37876. pawprint: {
  37877. height: math.unit(0.52, "feet"),
  37878. name: "Pawprint",
  37879. image: {
  37880. source: "./media/characters/vera/pawprint.svg"
  37881. }
  37882. },
  37883. },
  37884. [
  37885. {
  37886. name: "Normal",
  37887. height: math.unit(5 + 10/12, "feet"),
  37888. default: true
  37889. },
  37890. {
  37891. name: "Macro",
  37892. height: math.unit(75, "feet")
  37893. },
  37894. ]
  37895. ))
  37896. characterMakers.push(() => makeCharacter(
  37897. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37898. {
  37899. front: {
  37900. height: math.unit(4, "feet"),
  37901. weight: math.unit(40, "lb"),
  37902. name: "Front",
  37903. image: {
  37904. source: "./media/characters/orvan-rabbit/front.svg",
  37905. extra: 1896/1642,
  37906. bottom: 29/1925
  37907. }
  37908. },
  37909. },
  37910. [
  37911. {
  37912. name: "Normal",
  37913. height: math.unit(4, "feet"),
  37914. default: true
  37915. },
  37916. ]
  37917. ))
  37918. characterMakers.push(() => makeCharacter(
  37919. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37920. {
  37921. front: {
  37922. height: math.unit(6, "feet"),
  37923. weight: math.unit(168, "lb"),
  37924. name: "Front",
  37925. image: {
  37926. source: "./media/characters/lisa/front.svg",
  37927. extra: 2065/1867,
  37928. bottom: 46/2111
  37929. }
  37930. },
  37931. back: {
  37932. height: math.unit(6, "feet"),
  37933. weight: math.unit(168, "lb"),
  37934. name: "Back",
  37935. image: {
  37936. source: "./media/characters/lisa/back.svg",
  37937. extra: 1982/1838,
  37938. bottom: 29/2011
  37939. }
  37940. },
  37941. maw: {
  37942. height: math.unit(0.81, "feet"),
  37943. name: "Maw",
  37944. image: {
  37945. source: "./media/characters/lisa/maw.svg"
  37946. }
  37947. },
  37948. paw: {
  37949. height: math.unit(0.9, "feet"),
  37950. name: "Paw",
  37951. image: {
  37952. source: "./media/characters/lisa/paw.svg"
  37953. }
  37954. },
  37955. caribousune: {
  37956. height: math.unit(7 + 2/12, "feet"),
  37957. weight: math.unit(268, "lb"),
  37958. name: "Caribousune",
  37959. image: {
  37960. source: "./media/characters/lisa/caribousune.svg",
  37961. extra: 1843/1633,
  37962. bottom: 29/1872
  37963. }
  37964. },
  37965. frontCaribousune: {
  37966. height: math.unit(7 + 2/12, "feet"),
  37967. weight: math.unit(268, "lb"),
  37968. name: "Front (Caribousune)",
  37969. image: {
  37970. source: "./media/characters/lisa/front-caribousune.svg",
  37971. extra: 1818/1638,
  37972. bottom: 52/1870
  37973. }
  37974. },
  37975. sideCaribousune: {
  37976. height: math.unit(7 + 2/12, "feet"),
  37977. weight: math.unit(268, "lb"),
  37978. name: "Side (Caribousune)",
  37979. image: {
  37980. source: "./media/characters/lisa/side-caribousune.svg",
  37981. extra: 1851/1635,
  37982. bottom: 16/1867
  37983. }
  37984. },
  37985. backCaribousune: {
  37986. height: math.unit(7 + 2/12, "feet"),
  37987. weight: math.unit(268, "lb"),
  37988. name: "Back (Caribousune)",
  37989. image: {
  37990. source: "./media/characters/lisa/back-caribousune.svg",
  37991. extra: 1801/1604,
  37992. bottom: 44/1845
  37993. }
  37994. },
  37995. caribou: {
  37996. height: math.unit(7 + 2/12, "feet"),
  37997. weight: math.unit(268, "lb"),
  37998. name: "Caribou",
  37999. image: {
  38000. source: "./media/characters/lisa/caribou.svg",
  38001. extra: 1843/1633,
  38002. bottom: 29/1872
  38003. }
  38004. },
  38005. frontCaribou: {
  38006. height: math.unit(7 + 2/12, "feet"),
  38007. weight: math.unit(268, "lb"),
  38008. name: "Front (Caribou)",
  38009. image: {
  38010. source: "./media/characters/lisa/front-caribou.svg",
  38011. extra: 1818/1638,
  38012. bottom: 52/1870
  38013. }
  38014. },
  38015. sideCaribou: {
  38016. height: math.unit(7 + 2/12, "feet"),
  38017. weight: math.unit(268, "lb"),
  38018. name: "Side (Caribou)",
  38019. image: {
  38020. source: "./media/characters/lisa/side-caribou.svg",
  38021. extra: 1851/1635,
  38022. bottom: 16/1867
  38023. }
  38024. },
  38025. backCaribou: {
  38026. height: math.unit(7 + 2/12, "feet"),
  38027. weight: math.unit(268, "lb"),
  38028. name: "Back (Caribou)",
  38029. image: {
  38030. source: "./media/characters/lisa/back-caribou.svg",
  38031. extra: 1801/1604,
  38032. bottom: 44/1845
  38033. }
  38034. },
  38035. mawCaribou: {
  38036. height: math.unit(1.45, "feet"),
  38037. name: "Maw (Caribou)",
  38038. image: {
  38039. source: "./media/characters/lisa/maw-caribou.svg"
  38040. }
  38041. },
  38042. mawCaribousune: {
  38043. height: math.unit(1.45, "feet"),
  38044. name: "Maw (Caribousune)",
  38045. image: {
  38046. source: "./media/characters/lisa/maw-caribousune.svg"
  38047. }
  38048. },
  38049. pawCaribousune: {
  38050. height: math.unit(1.61, "feet"),
  38051. name: "Paw (Caribou)",
  38052. image: {
  38053. source: "./media/characters/lisa/paw-caribousune.svg"
  38054. }
  38055. },
  38056. },
  38057. [
  38058. {
  38059. name: "Normal",
  38060. height: math.unit(6, "feet")
  38061. },
  38062. {
  38063. name: "God Size",
  38064. height: math.unit(72, "feet"),
  38065. default: true
  38066. },
  38067. {
  38068. name: "Towering",
  38069. height: math.unit(288, "feet")
  38070. },
  38071. {
  38072. name: "City Size",
  38073. height: math.unit(48384, "feet")
  38074. },
  38075. {
  38076. name: "Continental",
  38077. height: math.unit(4200, "miles")
  38078. },
  38079. {
  38080. name: "Planet Eater",
  38081. height: math.unit(42, "earths")
  38082. },
  38083. {
  38084. name: "Star Swallower",
  38085. height: math.unit(42, "solarradii")
  38086. },
  38087. {
  38088. name: "System Swallower",
  38089. height: math.unit(84000, "AU")
  38090. },
  38091. {
  38092. name: "Galaxy Gobbler",
  38093. height: math.unit(42, "galaxies")
  38094. },
  38095. {
  38096. name: "Universe Devourer",
  38097. height: math.unit(42, "universes")
  38098. },
  38099. {
  38100. name: "Multiverse Muncher",
  38101. height: math.unit(42, "multiverses")
  38102. },
  38103. ]
  38104. ))
  38105. characterMakers.push(() => makeCharacter(
  38106. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  38107. {
  38108. front: {
  38109. height: math.unit(36, "feet"),
  38110. name: "Front",
  38111. image: {
  38112. source: "./media/characters/shadow-rat/front.svg",
  38113. extra: 1845/1758,
  38114. bottom: 83/1928
  38115. }
  38116. },
  38117. },
  38118. [
  38119. {
  38120. name: "Macro",
  38121. height: math.unit(36, "feet"),
  38122. default: true
  38123. },
  38124. ]
  38125. ))
  38126. characterMakers.push(() => makeCharacter(
  38127. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  38128. {
  38129. side: {
  38130. height: math.unit(8, "feet"),
  38131. weight: math.unit(2630, "lb"),
  38132. name: "Side",
  38133. image: {
  38134. source: "./media/characters/torallia/side.svg",
  38135. extra: 2164/2021,
  38136. bottom: 371/2535
  38137. }
  38138. },
  38139. },
  38140. [
  38141. {
  38142. name: "Mortal Interaction",
  38143. height: math.unit(8, "feet")
  38144. },
  38145. {
  38146. name: "Natural",
  38147. height: math.unit(24, "feet"),
  38148. default: true
  38149. },
  38150. {
  38151. name: "Giant",
  38152. height: math.unit(80, "feet")
  38153. },
  38154. {
  38155. name: "Kaiju",
  38156. height: math.unit(240, "feet")
  38157. },
  38158. {
  38159. name: "Macro",
  38160. height: math.unit(800, "feet")
  38161. },
  38162. {
  38163. name: "Macro+",
  38164. height: math.unit(2400, "feet")
  38165. },
  38166. {
  38167. name: "Macro++",
  38168. height: math.unit(8000, "feet")
  38169. },
  38170. {
  38171. name: "City-Crushing",
  38172. height: math.unit(24000, "feet")
  38173. },
  38174. {
  38175. name: "Mountain-Mashing",
  38176. height: math.unit(80000, "feet")
  38177. },
  38178. {
  38179. name: "District Demolisher",
  38180. height: math.unit(240000, "feet")
  38181. },
  38182. {
  38183. name: "Tri-County Terror",
  38184. height: math.unit(800000, "feet")
  38185. },
  38186. {
  38187. name: "State Smasher",
  38188. height: math.unit(2.4e6, "feet")
  38189. },
  38190. {
  38191. name: "Nation Nemesis",
  38192. height: math.unit(8e6, "feet")
  38193. },
  38194. {
  38195. name: "Continent Cracker",
  38196. height: math.unit(2.4e7, "feet")
  38197. },
  38198. {
  38199. name: "Planet-Pillaging",
  38200. height: math.unit(8e7, "feet")
  38201. },
  38202. {
  38203. name: "Earth-Eclipsing",
  38204. height: math.unit(2.4e8, "feet")
  38205. },
  38206. {
  38207. name: "Jovian-Jostling",
  38208. height: math.unit(8e8, "feet")
  38209. },
  38210. {
  38211. name: "Gas Giant Gulper",
  38212. height: math.unit(2.4e9, "feet")
  38213. },
  38214. {
  38215. name: "Astral Annihilator",
  38216. height: math.unit(8e9, "feet")
  38217. },
  38218. {
  38219. name: "Celestial Conqueror",
  38220. height: math.unit(2.4e10, "feet")
  38221. },
  38222. {
  38223. name: "Sol-Swallowing",
  38224. height: math.unit(8e10, "feet")
  38225. },
  38226. {
  38227. name: "Hunter of the Heavens",
  38228. height: math.unit(2.4e13, "feet")
  38229. },
  38230. ]
  38231. ))
  38232. characterMakers.push(() => makeCharacter(
  38233. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38234. {
  38235. front: {
  38236. height: math.unit(6 + 8/12, "feet"),
  38237. name: "Front",
  38238. image: {
  38239. source: "./media/characters/rebecca-pawlson/front.svg",
  38240. extra: 1737/1596,
  38241. bottom: 107/1844
  38242. }
  38243. },
  38244. back: {
  38245. height: math.unit(6 + 8/12, "feet"),
  38246. name: "Back",
  38247. image: {
  38248. source: "./media/characters/rebecca-pawlson/back.svg",
  38249. extra: 1702/1523,
  38250. bottom: 86/1788
  38251. }
  38252. },
  38253. },
  38254. [
  38255. {
  38256. name: "Normal",
  38257. height: math.unit(6 + 8/12, "feet")
  38258. },
  38259. {
  38260. name: "Mini Macro",
  38261. height: math.unit(10, "feet"),
  38262. default: true
  38263. },
  38264. {
  38265. name: "Macro",
  38266. height: math.unit(100, "feet")
  38267. },
  38268. {
  38269. name: "Mega Macro",
  38270. height: math.unit(2500, "feet")
  38271. },
  38272. {
  38273. name: "Giga Macro",
  38274. height: math.unit(50, "miles")
  38275. },
  38276. ]
  38277. ))
  38278. characterMakers.push(() => makeCharacter(
  38279. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38280. {
  38281. front: {
  38282. height: math.unit(7 + 6/12, "feet"),
  38283. weight: math.unit(600, "lb"),
  38284. name: "Front",
  38285. image: {
  38286. source: "./media/characters/moxie-nova/front.svg",
  38287. extra: 1734/1652,
  38288. bottom: 41/1775
  38289. }
  38290. },
  38291. },
  38292. [
  38293. {
  38294. name: "Normal",
  38295. height: math.unit(7 + 6/12, "feet"),
  38296. default: true
  38297. },
  38298. ]
  38299. ))
  38300. characterMakers.push(() => makeCharacter(
  38301. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38302. {
  38303. goat: {
  38304. height: math.unit(4, "feet"),
  38305. weight: math.unit(180, "lb"),
  38306. name: "Goat",
  38307. image: {
  38308. source: "./media/characters/tiffany/goat.svg",
  38309. extra: 1845/1595,
  38310. bottom: 106/1951
  38311. }
  38312. },
  38313. front: {
  38314. height: math.unit(5, "feet"),
  38315. weight: math.unit(150, "lb"),
  38316. name: "Foxcoon",
  38317. image: {
  38318. source: "./media/characters/tiffany/foxcoon.svg",
  38319. extra: 1941/1845,
  38320. bottom: 58/1999
  38321. }
  38322. },
  38323. },
  38324. [
  38325. {
  38326. name: "Normal",
  38327. height: math.unit(5, "feet"),
  38328. default: true
  38329. },
  38330. ]
  38331. ))
  38332. characterMakers.push(() => makeCharacter(
  38333. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38334. {
  38335. front: {
  38336. height: math.unit(8, "feet"),
  38337. weight: math.unit(300, "lb"),
  38338. name: "Front",
  38339. image: {
  38340. source: "./media/characters/raxinath/front.svg",
  38341. extra: 1407/1309,
  38342. bottom: 39/1446
  38343. }
  38344. },
  38345. back: {
  38346. height: math.unit(8, "feet"),
  38347. weight: math.unit(300, "lb"),
  38348. name: "Back",
  38349. image: {
  38350. source: "./media/characters/raxinath/back.svg",
  38351. extra: 1405/1315,
  38352. bottom: 9/1414
  38353. }
  38354. },
  38355. },
  38356. [
  38357. {
  38358. name: "Speck",
  38359. height: math.unit(0.5, "nm")
  38360. },
  38361. {
  38362. name: "Micro",
  38363. height: math.unit(3, "inches")
  38364. },
  38365. {
  38366. name: "Kobold",
  38367. height: math.unit(3, "feet")
  38368. },
  38369. {
  38370. name: "Normal",
  38371. height: math.unit(8, "feet"),
  38372. default: true
  38373. },
  38374. {
  38375. name: "Giant",
  38376. height: math.unit(50, "feet")
  38377. },
  38378. {
  38379. name: "Macro",
  38380. height: math.unit(1000, "feet")
  38381. },
  38382. {
  38383. name: "Megamacro",
  38384. height: math.unit(1, "mile")
  38385. },
  38386. ]
  38387. ))
  38388. characterMakers.push(() => makeCharacter(
  38389. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38390. {
  38391. front: {
  38392. height: math.unit(10, "feet"),
  38393. weight: math.unit(1442, "lb"),
  38394. name: "Front",
  38395. image: {
  38396. source: "./media/characters/mal-dragon/front.svg",
  38397. extra: 1515/1444,
  38398. bottom: 113/1628
  38399. }
  38400. },
  38401. back: {
  38402. height: math.unit(10, "feet"),
  38403. weight: math.unit(1442, "lb"),
  38404. name: "Back",
  38405. image: {
  38406. source: "./media/characters/mal-dragon/back.svg",
  38407. extra: 1527/1434,
  38408. bottom: 25/1552
  38409. }
  38410. },
  38411. },
  38412. [
  38413. {
  38414. name: "Mortal Interaction",
  38415. height: math.unit(10, "feet"),
  38416. default: true
  38417. },
  38418. {
  38419. name: "Large",
  38420. height: math.unit(30, "feet")
  38421. },
  38422. {
  38423. name: "Kaiju",
  38424. height: math.unit(300, "feet")
  38425. },
  38426. {
  38427. name: "Megamacro",
  38428. height: math.unit(10000, "feet")
  38429. },
  38430. {
  38431. name: "Continent Cracker",
  38432. height: math.unit(30000000, "feet")
  38433. },
  38434. {
  38435. name: "Sol-Swallowing",
  38436. height: math.unit(1e11, "feet")
  38437. },
  38438. {
  38439. name: "Light Universal",
  38440. height: math.unit(5, "universes")
  38441. },
  38442. {
  38443. name: "Universe Atoms",
  38444. height: math.unit(1.829e9, "universes")
  38445. },
  38446. {
  38447. name: "Light Multiversal",
  38448. height: math.unit(5, "multiverses")
  38449. },
  38450. {
  38451. name: "Multiverse Atoms",
  38452. height: math.unit(1.829e9, "multiverses")
  38453. },
  38454. {
  38455. name: "Fabric of Time",
  38456. height: math.unit(1e262, "multiverses")
  38457. },
  38458. ]
  38459. ))
  38460. characterMakers.push(() => makeCharacter(
  38461. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38462. {
  38463. front: {
  38464. height: math.unit(9, "feet"),
  38465. weight: math.unit(1050, "lb"),
  38466. name: "Front",
  38467. image: {
  38468. source: "./media/characters/tabitha/front.svg",
  38469. extra: 2083/1994,
  38470. bottom: 68/2151
  38471. }
  38472. },
  38473. },
  38474. [
  38475. {
  38476. name: "Baseline",
  38477. height: math.unit(9, "feet"),
  38478. default: true
  38479. },
  38480. {
  38481. name: "Giant",
  38482. height: math.unit(90, "feet")
  38483. },
  38484. {
  38485. name: "Macro",
  38486. height: math.unit(900, "feet")
  38487. },
  38488. {
  38489. name: "Megamacro",
  38490. height: math.unit(9000, "feet")
  38491. },
  38492. {
  38493. name: "City-Crushing",
  38494. height: math.unit(27000, "feet")
  38495. },
  38496. {
  38497. name: "Mountain-Mashing",
  38498. height: math.unit(90000, "feet")
  38499. },
  38500. {
  38501. name: "Nation Nemesis",
  38502. height: math.unit(9e6, "feet")
  38503. },
  38504. {
  38505. name: "Continent Cracker",
  38506. height: math.unit(27e6, "feet")
  38507. },
  38508. {
  38509. name: "Earth-Eclipsing",
  38510. height: math.unit(2.7e8, "feet")
  38511. },
  38512. {
  38513. name: "Gas Giant Gulper",
  38514. height: math.unit(2.7e9, "feet")
  38515. },
  38516. {
  38517. name: "Sol-Swallowing",
  38518. height: math.unit(9e10, "feet")
  38519. },
  38520. {
  38521. name: "Galaxy Gulper",
  38522. height: math.unit(9, "galaxies")
  38523. },
  38524. {
  38525. name: "Cosmos Churner",
  38526. height: math.unit(9, "universes")
  38527. },
  38528. ]
  38529. ))
  38530. characterMakers.push(() => makeCharacter(
  38531. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38532. {
  38533. front: {
  38534. height: math.unit(160, "cm"),
  38535. weight: math.unit(55, "kg"),
  38536. name: "Front",
  38537. image: {
  38538. source: "./media/characters/tow/front.svg",
  38539. extra: 1751/1722,
  38540. bottom: 74/1825
  38541. }
  38542. },
  38543. },
  38544. [
  38545. {
  38546. name: "Norm",
  38547. height: math.unit(160, "cm")
  38548. },
  38549. {
  38550. name: "Casual",
  38551. height: math.unit(3200, "m"),
  38552. default: true
  38553. },
  38554. {
  38555. name: "Show-Off",
  38556. height: math.unit(160, "km")
  38557. },
  38558. ]
  38559. ))
  38560. characterMakers.push(() => makeCharacter(
  38561. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38562. {
  38563. front: {
  38564. height: math.unit(7 + 11/12, "feet"),
  38565. weight: math.unit(342.8, "lb"),
  38566. name: "Front",
  38567. image: {
  38568. source: "./media/characters/vivian-orca-dragon/front.svg",
  38569. extra: 1890/1865,
  38570. bottom: 28/1918
  38571. }
  38572. },
  38573. },
  38574. [
  38575. {
  38576. name: "Micro",
  38577. height: math.unit(5, "inches")
  38578. },
  38579. {
  38580. name: "Normal",
  38581. height: math.unit(7 + 11/12, "feet"),
  38582. default: true
  38583. },
  38584. {
  38585. name: "Macro",
  38586. height: math.unit(395 + 7/12, "feet")
  38587. },
  38588. ]
  38589. ))
  38590. characterMakers.push(() => makeCharacter(
  38591. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38592. {
  38593. side: {
  38594. height: math.unit(10, "feet"),
  38595. weight: math.unit(1442, "lb"),
  38596. name: "Side",
  38597. image: {
  38598. source: "./media/characters/lotherakon/side.svg",
  38599. extra: 1604/1497,
  38600. bottom: 89/1693
  38601. }
  38602. },
  38603. },
  38604. [
  38605. {
  38606. name: "Mortal Interaction",
  38607. height: math.unit(10, "feet")
  38608. },
  38609. {
  38610. name: "Large",
  38611. height: math.unit(30, "feet"),
  38612. default: true
  38613. },
  38614. {
  38615. name: "Giant",
  38616. height: math.unit(100, "feet")
  38617. },
  38618. {
  38619. name: "Kaiju",
  38620. height: math.unit(300, "feet")
  38621. },
  38622. {
  38623. name: "Macro",
  38624. height: math.unit(1000, "feet")
  38625. },
  38626. {
  38627. name: "Macro+",
  38628. height: math.unit(3000, "feet")
  38629. },
  38630. {
  38631. name: "Megamacro",
  38632. height: math.unit(10000, "feet")
  38633. },
  38634. {
  38635. name: "City-Crushing",
  38636. height: math.unit(30000, "feet")
  38637. },
  38638. {
  38639. name: "Continent Cracker",
  38640. height: math.unit(30e6, "feet")
  38641. },
  38642. {
  38643. name: "Earth Eclipsing",
  38644. height: math.unit(3e8, "feet")
  38645. },
  38646. {
  38647. name: "Gas Giant Gulper",
  38648. height: math.unit(3e9, "feet")
  38649. },
  38650. {
  38651. name: "Sol-Swallowing",
  38652. height: math.unit(1e11, "feet")
  38653. },
  38654. {
  38655. name: "System Swallower",
  38656. height: math.unit(3e14, "feet")
  38657. },
  38658. {
  38659. name: "Galaxy Gulper",
  38660. height: math.unit(10, "galaxies")
  38661. },
  38662. {
  38663. name: "Light Universal",
  38664. height: math.unit(5, "universes")
  38665. },
  38666. {
  38667. name: "Universe Palm",
  38668. height: math.unit(20, "universes")
  38669. },
  38670. {
  38671. name: "Light Multiversal",
  38672. height: math.unit(5, "multiverses")
  38673. },
  38674. {
  38675. name: "Multiverse Palm",
  38676. height: math.unit(20, "multiverses")
  38677. },
  38678. {
  38679. name: "Inferno Incarnate",
  38680. height: math.unit(1e7, "multiverses")
  38681. },
  38682. ]
  38683. ))
  38684. characterMakers.push(() => makeCharacter(
  38685. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38686. {
  38687. front: {
  38688. height: math.unit(8, "feet"),
  38689. weight: math.unit(1200, "lb"),
  38690. name: "Front",
  38691. image: {
  38692. source: "./media/characters/malithee/front.svg",
  38693. extra: 1675/1640,
  38694. bottom: 162/1837
  38695. }
  38696. },
  38697. },
  38698. [
  38699. {
  38700. name: "Mortal Interaction",
  38701. height: math.unit(8, "feet"),
  38702. default: true
  38703. },
  38704. {
  38705. name: "Large",
  38706. height: math.unit(24, "feet")
  38707. },
  38708. {
  38709. name: "Kaiju",
  38710. height: math.unit(240, "feet")
  38711. },
  38712. {
  38713. name: "Megamacro",
  38714. height: math.unit(8000, "feet")
  38715. },
  38716. {
  38717. name: "Continent Cracker",
  38718. height: math.unit(24e6, "feet")
  38719. },
  38720. {
  38721. name: "Earth-Eclipsing",
  38722. height: math.unit(2.4e8, "feet")
  38723. },
  38724. {
  38725. name: "Sol-Swallowing",
  38726. height: math.unit(8e10, "feet")
  38727. },
  38728. {
  38729. name: "Galaxy Gulper",
  38730. height: math.unit(8, "galaxies")
  38731. },
  38732. {
  38733. name: "Light Universal",
  38734. height: math.unit(4, "universes")
  38735. },
  38736. {
  38737. name: "Universe Atoms",
  38738. height: math.unit(1.829e9, "universes")
  38739. },
  38740. {
  38741. name: "Light Multiversal",
  38742. height: math.unit(4, "multiverses")
  38743. },
  38744. {
  38745. name: "Multiverse Atoms",
  38746. height: math.unit(1.829e9, "multiverses")
  38747. },
  38748. {
  38749. name: "Nigh-Omnipresence",
  38750. height: math.unit(8e261, "multiverses")
  38751. },
  38752. ]
  38753. ))
  38754. characterMakers.push(() => makeCharacter(
  38755. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38756. {
  38757. front: {
  38758. height: math.unit(10, "feet"),
  38759. weight: math.unit(1500, "lb"),
  38760. name: "Front",
  38761. image: {
  38762. source: "./media/characters/miles-thestia/front.svg",
  38763. extra: 1812/1727,
  38764. bottom: 86/1898
  38765. }
  38766. },
  38767. back: {
  38768. height: math.unit(10, "feet"),
  38769. weight: math.unit(1500, "lb"),
  38770. name: "Back",
  38771. image: {
  38772. source: "./media/characters/miles-thestia/back.svg",
  38773. extra: 1799/1690,
  38774. bottom: 47/1846
  38775. }
  38776. },
  38777. frontNsfw: {
  38778. height: math.unit(10, "feet"),
  38779. weight: math.unit(1500, "lb"),
  38780. name: "Front (NSFW)",
  38781. image: {
  38782. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38783. extra: 1812/1727,
  38784. bottom: 86/1898
  38785. }
  38786. },
  38787. },
  38788. [
  38789. {
  38790. name: "Mini-Macro",
  38791. height: math.unit(10, "feet"),
  38792. default: true
  38793. },
  38794. ]
  38795. ))
  38796. characterMakers.push(() => makeCharacter(
  38797. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38798. {
  38799. front: {
  38800. height: math.unit(25, "feet"),
  38801. name: "Front",
  38802. image: {
  38803. source: "./media/characters/titan-s-wulf/front.svg",
  38804. extra: 1560/1484,
  38805. bottom: 76/1636
  38806. }
  38807. },
  38808. },
  38809. [
  38810. {
  38811. name: "Smallest",
  38812. height: math.unit(25, "feet"),
  38813. default: true
  38814. },
  38815. {
  38816. name: "Normal",
  38817. height: math.unit(200, "feet")
  38818. },
  38819. {
  38820. name: "Macro",
  38821. height: math.unit(200000, "feet")
  38822. },
  38823. {
  38824. name: "Multiversal Original",
  38825. height: math.unit(10000, "multiverses")
  38826. },
  38827. ]
  38828. ))
  38829. characterMakers.push(() => makeCharacter(
  38830. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38831. {
  38832. front: {
  38833. height: math.unit(8, "feet"),
  38834. weight: math.unit(553, "lb"),
  38835. name: "Front",
  38836. image: {
  38837. source: "./media/characters/tawendeh/front.svg",
  38838. extra: 2365/2268,
  38839. bottom: 83/2448
  38840. }
  38841. },
  38842. frontClothed: {
  38843. height: math.unit(8, "feet"),
  38844. weight: math.unit(553, "lb"),
  38845. name: "Front (Clothed)",
  38846. image: {
  38847. source: "./media/characters/tawendeh/front-clothed.svg",
  38848. extra: 2365/2268,
  38849. bottom: 83/2448
  38850. }
  38851. },
  38852. back: {
  38853. height: math.unit(8, "feet"),
  38854. weight: math.unit(553, "lb"),
  38855. name: "Back",
  38856. image: {
  38857. source: "./media/characters/tawendeh/back.svg",
  38858. extra: 2397/2294,
  38859. bottom: 42/2439
  38860. }
  38861. },
  38862. },
  38863. [
  38864. {
  38865. name: "Mortal Interaction",
  38866. height: math.unit(8, "feet"),
  38867. default: true
  38868. },
  38869. {
  38870. name: "Giant",
  38871. height: math.unit(80, "feet")
  38872. },
  38873. {
  38874. name: "Macro",
  38875. height: math.unit(800, "feet")
  38876. },
  38877. {
  38878. name: "Megamacro",
  38879. height: math.unit(8000, "feet")
  38880. },
  38881. {
  38882. name: "City-Crushing",
  38883. height: math.unit(24000, "feet")
  38884. },
  38885. {
  38886. name: "Mountain-Mashing",
  38887. height: math.unit(80000, "feet")
  38888. },
  38889. {
  38890. name: "Nation Nemesis",
  38891. height: math.unit(8e6, "feet")
  38892. },
  38893. {
  38894. name: "Continent Cracker",
  38895. height: math.unit(24e6, "feet")
  38896. },
  38897. {
  38898. name: "Earth-Eclipsing",
  38899. height: math.unit(2.4e8, "feet")
  38900. },
  38901. {
  38902. name: "Gas Giant Gulper",
  38903. height: math.unit(2.4e9, "feet")
  38904. },
  38905. {
  38906. name: "Sol-Swallowing",
  38907. height: math.unit(8e10, "feet")
  38908. },
  38909. {
  38910. name: "Galaxy Gulper",
  38911. height: math.unit(8, "galaxies")
  38912. },
  38913. {
  38914. name: "Cosmos Churner",
  38915. height: math.unit(8, "universes")
  38916. },
  38917. {
  38918. name: "Omnipotent Otter",
  38919. height: math.unit(80, "universes")
  38920. },
  38921. ]
  38922. ))
  38923. characterMakers.push(() => makeCharacter(
  38924. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38925. {
  38926. front: {
  38927. height: math.unit(2.6, "meters"),
  38928. weight: math.unit(900, "kg"),
  38929. name: "Front",
  38930. image: {
  38931. source: "./media/characters/neesha/front.svg",
  38932. extra: 1803/1653,
  38933. bottom: 128/1931
  38934. }
  38935. },
  38936. },
  38937. [
  38938. {
  38939. name: "Normal",
  38940. height: math.unit(2.6, "meters"),
  38941. default: true
  38942. },
  38943. {
  38944. name: "Macro",
  38945. height: math.unit(50, "meters")
  38946. },
  38947. ]
  38948. ))
  38949. characterMakers.push(() => makeCharacter(
  38950. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38951. {
  38952. front: {
  38953. height: math.unit(5, "feet"),
  38954. weight: math.unit(185, "lb"),
  38955. name: "Front",
  38956. image: {
  38957. source: "./media/characters/kyera/front.svg",
  38958. extra: 1875/1790,
  38959. bottom: 96/1971
  38960. }
  38961. },
  38962. },
  38963. [
  38964. {
  38965. name: "Normal",
  38966. height: math.unit(5, "feet"),
  38967. default: true
  38968. },
  38969. ]
  38970. ))
  38971. characterMakers.push(() => makeCharacter(
  38972. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  38973. {
  38974. front: {
  38975. height: math.unit(7 + 6/12, "feet"),
  38976. weight: math.unit(540, "lb"),
  38977. name: "Front",
  38978. image: {
  38979. source: "./media/characters/yuko/front.svg",
  38980. extra: 1282/1222,
  38981. bottom: 101/1383
  38982. }
  38983. },
  38984. frontClothed: {
  38985. height: math.unit(7 + 6/12, "feet"),
  38986. weight: math.unit(540, "lb"),
  38987. name: "Front (Clothed)",
  38988. image: {
  38989. source: "./media/characters/yuko/front-clothed.svg",
  38990. extra: 1282/1222,
  38991. bottom: 101/1383
  38992. }
  38993. },
  38994. },
  38995. [
  38996. {
  38997. name: "Normal",
  38998. height: math.unit(7 + 6/12, "feet"),
  38999. default: true
  39000. },
  39001. {
  39002. name: "Macro",
  39003. height: math.unit(26 + 9/12, "feet")
  39004. },
  39005. {
  39006. name: "Megamacro",
  39007. height: math.unit(300, "feet")
  39008. },
  39009. {
  39010. name: "Gigamacro",
  39011. height: math.unit(5000, "feet")
  39012. },
  39013. {
  39014. name: "Planetary",
  39015. height: math.unit(10000, "miles")
  39016. },
  39017. ]
  39018. ))
  39019. characterMakers.push(() => makeCharacter(
  39020. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  39021. {
  39022. front: {
  39023. height: math.unit(8 + 2/12, "feet"),
  39024. weight: math.unit(600, "lb"),
  39025. name: "Front",
  39026. image: {
  39027. source: "./media/characters/deam-nitrel/front.svg",
  39028. extra: 1308/1234,
  39029. bottom: 125/1433
  39030. }
  39031. },
  39032. },
  39033. [
  39034. {
  39035. name: "Normal",
  39036. height: math.unit(8 + 2/12, "feet"),
  39037. default: true
  39038. },
  39039. ]
  39040. ))
  39041. characterMakers.push(() => makeCharacter(
  39042. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  39043. {
  39044. front: {
  39045. height: math.unit(6.1, "feet"),
  39046. weight: math.unit(180, "lb"),
  39047. name: "Front",
  39048. image: {
  39049. source: "./media/characters/skyress/front.svg",
  39050. extra: 1045/915,
  39051. bottom: 28/1073
  39052. }
  39053. },
  39054. maw: {
  39055. height: math.unit(1, "feet"),
  39056. name: "Maw",
  39057. image: {
  39058. source: "./media/characters/skyress/maw.svg"
  39059. }
  39060. },
  39061. },
  39062. [
  39063. {
  39064. name: "Normal",
  39065. height: math.unit(6.1, "feet"),
  39066. default: true
  39067. },
  39068. {
  39069. name: "Macro",
  39070. height: math.unit(200, "feet")
  39071. },
  39072. ]
  39073. ))
  39074. characterMakers.push(() => makeCharacter(
  39075. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  39076. {
  39077. front: {
  39078. height: math.unit(4 + 2/12, "feet"),
  39079. weight: math.unit(40, "kg"),
  39080. name: "Front",
  39081. image: {
  39082. source: "./media/characters/amethyst-jones/front.svg",
  39083. extra: 1220/1150,
  39084. bottom: 101/1321
  39085. }
  39086. },
  39087. },
  39088. [
  39089. {
  39090. name: "Normal",
  39091. height: math.unit(4 + 2/12, "feet"),
  39092. default: true
  39093. },
  39094. ]
  39095. ))
  39096. characterMakers.push(() => makeCharacter(
  39097. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39098. {
  39099. front: {
  39100. height: math.unit(1.7, "m"),
  39101. weight: math.unit(135, "lb"),
  39102. name: "Front",
  39103. image: {
  39104. source: "./media/characters/jade/front.svg",
  39105. extra: 1818/1767,
  39106. bottom: 32/1850
  39107. }
  39108. },
  39109. back: {
  39110. height: math.unit(1.7, "m"),
  39111. weight: math.unit(135, "lb"),
  39112. name: "Back",
  39113. image: {
  39114. source: "./media/characters/jade/back.svg",
  39115. extra: 1869/1809,
  39116. bottom: 35/1904
  39117. }
  39118. },
  39119. hand: {
  39120. height: math.unit(0.24, "m"),
  39121. name: "Hand",
  39122. image: {
  39123. source: "./media/characters/jade/hand.svg"
  39124. }
  39125. },
  39126. foot: {
  39127. height: math.unit(0.263, "m"),
  39128. name: "Foot",
  39129. image: {
  39130. source: "./media/characters/jade/foot.svg"
  39131. }
  39132. },
  39133. dick: {
  39134. height: math.unit(0.47, "m"),
  39135. name: "Dick",
  39136. image: {
  39137. source: "./media/characters/jade/dick.svg"
  39138. }
  39139. },
  39140. },
  39141. [
  39142. {
  39143. name: "Micro",
  39144. height: math.unit(22, "cm")
  39145. },
  39146. {
  39147. name: "Normal",
  39148. height: math.unit(1.7, "m"),
  39149. default: true
  39150. },
  39151. {
  39152. name: "Macro",
  39153. height: math.unit(152, "m")
  39154. },
  39155. ]
  39156. ))
  39157. characterMakers.push(() => makeCharacter(
  39158. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39159. {
  39160. front: {
  39161. height: math.unit(100, "miles"),
  39162. weight: math.unit(20000, "tons"),
  39163. name: "Front",
  39164. image: {
  39165. source: "./media/characters/cookie/front.svg",
  39166. extra: 1125/1070,
  39167. bottom: 30/1155
  39168. }
  39169. },
  39170. },
  39171. [
  39172. {
  39173. name: "Big",
  39174. height: math.unit(50, "feet")
  39175. },
  39176. {
  39177. name: "Macro",
  39178. height: math.unit(100, "miles"),
  39179. default: true
  39180. },
  39181. {
  39182. name: "Megamacro",
  39183. height: math.unit(90000, "miles")
  39184. },
  39185. ]
  39186. ))
  39187. characterMakers.push(() => makeCharacter(
  39188. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39189. {
  39190. front: {
  39191. height: math.unit(6, "feet"),
  39192. weight: math.unit(145, "lb"),
  39193. name: "Front",
  39194. image: {
  39195. source: "./media/characters/farzian/front.svg",
  39196. extra: 1902/1693,
  39197. bottom: 108/2010
  39198. }
  39199. },
  39200. },
  39201. [
  39202. {
  39203. name: "Macro",
  39204. height: math.unit(500, "feet"),
  39205. default: true
  39206. },
  39207. ]
  39208. ))
  39209. characterMakers.push(() => makeCharacter(
  39210. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39211. {
  39212. front: {
  39213. height: math.unit(3 + 6/12, "feet"),
  39214. weight: math.unit(50, "lb"),
  39215. name: "Front",
  39216. image: {
  39217. source: "./media/characters/kimberly-tilson/front.svg",
  39218. extra: 1400/1322,
  39219. bottom: 36/1436
  39220. }
  39221. },
  39222. back: {
  39223. height: math.unit(3 + 6/12, "feet"),
  39224. weight: math.unit(50, "lb"),
  39225. name: "Back",
  39226. image: {
  39227. source: "./media/characters/kimberly-tilson/back.svg",
  39228. extra: 1370/1307,
  39229. bottom: 20/1390
  39230. }
  39231. },
  39232. },
  39233. [
  39234. {
  39235. name: "Normal",
  39236. height: math.unit(3 + 6/12, "feet"),
  39237. default: true
  39238. },
  39239. ]
  39240. ))
  39241. characterMakers.push(() => makeCharacter(
  39242. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39243. {
  39244. front: {
  39245. height: math.unit(1148, "feet"),
  39246. weight: math.unit(34057, "lb"),
  39247. name: "Front",
  39248. image: {
  39249. source: "./media/characters/harthos/front.svg",
  39250. extra: 1391/1339,
  39251. bottom: 13/1404
  39252. }
  39253. },
  39254. },
  39255. [
  39256. {
  39257. name: "Macro",
  39258. height: math.unit(1148, "feet"),
  39259. default: true
  39260. },
  39261. ]
  39262. ))
  39263. characterMakers.push(() => makeCharacter(
  39264. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39265. {
  39266. front: {
  39267. height: math.unit(15, "feet"),
  39268. name: "Front",
  39269. image: {
  39270. source: "./media/characters/hypatia/front.svg",
  39271. extra: 1653/1591,
  39272. bottom: 79/1732
  39273. }
  39274. },
  39275. },
  39276. [
  39277. {
  39278. name: "Normal",
  39279. height: math.unit(15, "feet")
  39280. },
  39281. {
  39282. name: "Small",
  39283. height: math.unit(300, "feet")
  39284. },
  39285. {
  39286. name: "Macro",
  39287. height: math.unit(2500, "feet"),
  39288. default: true
  39289. },
  39290. {
  39291. name: "Mega Macro",
  39292. height: math.unit(1500, "miles")
  39293. },
  39294. {
  39295. name: "Giga Macro",
  39296. height: math.unit(1.5e6, "miles")
  39297. },
  39298. ]
  39299. ))
  39300. characterMakers.push(() => makeCharacter(
  39301. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39302. {
  39303. front: {
  39304. height: math.unit(6, "feet"),
  39305. weight: math.unit(200, "lb"),
  39306. name: "Front",
  39307. image: {
  39308. source: "./media/characters/wulver/front.svg",
  39309. extra: 1724/1632,
  39310. bottom: 130/1854
  39311. }
  39312. },
  39313. frontNsfw: {
  39314. height: math.unit(6, "feet"),
  39315. weight: math.unit(200, "lb"),
  39316. name: "Front (NSFW)",
  39317. image: {
  39318. source: "./media/characters/wulver/front-nsfw.svg",
  39319. extra: 1724/1632,
  39320. bottom: 130/1854
  39321. }
  39322. },
  39323. },
  39324. [
  39325. {
  39326. name: "Human-Sized",
  39327. height: math.unit(6, "feet")
  39328. },
  39329. {
  39330. name: "Normal",
  39331. height: math.unit(4, "meters"),
  39332. default: true
  39333. },
  39334. {
  39335. name: "Large",
  39336. height: math.unit(6, "m")
  39337. },
  39338. ]
  39339. ))
  39340. characterMakers.push(() => makeCharacter(
  39341. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39342. {
  39343. front: {
  39344. height: math.unit(7, "feet"),
  39345. name: "Front",
  39346. image: {
  39347. source: "./media/characters/maru/front.svg",
  39348. extra: 1595/1570,
  39349. bottom: 0/1595
  39350. }
  39351. },
  39352. },
  39353. [
  39354. {
  39355. name: "Normal",
  39356. height: math.unit(7, "feet"),
  39357. default: true
  39358. },
  39359. {
  39360. name: "Macro",
  39361. height: math.unit(700, "feet")
  39362. },
  39363. {
  39364. name: "Mega Macro",
  39365. height: math.unit(25, "miles")
  39366. },
  39367. ]
  39368. ))
  39369. characterMakers.push(() => makeCharacter(
  39370. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39371. {
  39372. front: {
  39373. height: math.unit(6, "feet"),
  39374. weight: math.unit(170, "lb"),
  39375. name: "Front",
  39376. image: {
  39377. source: "./media/characters/xenon/front.svg",
  39378. extra: 1376/1305,
  39379. bottom: 56/1432
  39380. }
  39381. },
  39382. back: {
  39383. height: math.unit(6, "feet"),
  39384. weight: math.unit(170, "lb"),
  39385. name: "Back",
  39386. image: {
  39387. source: "./media/characters/xenon/back.svg",
  39388. extra: 1328/1259,
  39389. bottom: 95/1423
  39390. }
  39391. },
  39392. maw: {
  39393. height: math.unit(0.52, "feet"),
  39394. name: "Maw",
  39395. image: {
  39396. source: "./media/characters/xenon/maw.svg"
  39397. }
  39398. },
  39399. hand: {
  39400. height: math.unit(0.82, "feet"),
  39401. name: "Hand",
  39402. image: {
  39403. source: "./media/characters/xenon/hand.svg"
  39404. }
  39405. },
  39406. foot: {
  39407. height: math.unit(1.13, "feet"),
  39408. name: "Foot",
  39409. image: {
  39410. source: "./media/characters/xenon/foot.svg"
  39411. }
  39412. },
  39413. },
  39414. [
  39415. {
  39416. name: "Micro",
  39417. height: math.unit(0.8, "inches")
  39418. },
  39419. {
  39420. name: "Normal",
  39421. height: math.unit(6, "feet")
  39422. },
  39423. {
  39424. name: "Macro",
  39425. height: math.unit(50, "feet"),
  39426. default: true
  39427. },
  39428. {
  39429. name: "Macro+",
  39430. height: math.unit(250, "feet")
  39431. },
  39432. {
  39433. name: "Megamacro",
  39434. height: math.unit(1500, "feet")
  39435. },
  39436. ]
  39437. ))
  39438. characterMakers.push(() => makeCharacter(
  39439. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39440. {
  39441. front: {
  39442. height: math.unit(7 + 5/12, "feet"),
  39443. name: "Front",
  39444. image: {
  39445. source: "./media/characters/zane/front.svg",
  39446. extra: 1260/1203,
  39447. bottom: 94/1354
  39448. }
  39449. },
  39450. back: {
  39451. height: math.unit(5.05, "feet"),
  39452. name: "Back",
  39453. image: {
  39454. source: "./media/characters/zane/back.svg",
  39455. extra: 893/829,
  39456. bottom: 30/923
  39457. }
  39458. },
  39459. werewolf: {
  39460. height: math.unit(11, "feet"),
  39461. name: "Werewolf",
  39462. image: {
  39463. source: "./media/characters/zane/werewolf.svg",
  39464. extra: 1383/1323,
  39465. bottom: 89/1472
  39466. }
  39467. },
  39468. foot: {
  39469. height: math.unit(1.46, "feet"),
  39470. name: "Foot",
  39471. image: {
  39472. source: "./media/characters/zane/foot.svg"
  39473. }
  39474. },
  39475. footFront: {
  39476. height: math.unit(0.784, "feet"),
  39477. name: "Foot (Front)",
  39478. image: {
  39479. source: "./media/characters/zane/foot-front.svg"
  39480. }
  39481. },
  39482. dick: {
  39483. height: math.unit(1.95, "feet"),
  39484. name: "Dick",
  39485. image: {
  39486. source: "./media/characters/zane/dick.svg"
  39487. }
  39488. },
  39489. dickWerewolf: {
  39490. height: math.unit(3.77, "feet"),
  39491. name: "Dick (Werewolf)",
  39492. image: {
  39493. source: "./media/characters/zane/dick.svg"
  39494. }
  39495. },
  39496. },
  39497. [
  39498. {
  39499. name: "Normal",
  39500. height: math.unit(7 + 5/12, "feet"),
  39501. default: true
  39502. },
  39503. ]
  39504. ))
  39505. characterMakers.push(() => makeCharacter(
  39506. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39507. {
  39508. front: {
  39509. height: math.unit(6 + 2/12, "feet"),
  39510. weight: math.unit(284, "lb"),
  39511. name: "Front",
  39512. image: {
  39513. source: "./media/characters/benni-desparque/front.svg",
  39514. extra: 1353/1126,
  39515. bottom: 69/1422
  39516. }
  39517. },
  39518. },
  39519. [
  39520. {
  39521. name: "Civilian",
  39522. height: math.unit(6 + 2/12, "feet")
  39523. },
  39524. {
  39525. name: "Normal",
  39526. height: math.unit(98, "feet"),
  39527. default: true
  39528. },
  39529. {
  39530. name: "Kaiju Fighter",
  39531. height: math.unit(268, "feet")
  39532. },
  39533. ]
  39534. ))
  39535. characterMakers.push(() => makeCharacter(
  39536. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39537. {
  39538. front: {
  39539. height: math.unit(5, "feet"),
  39540. weight: math.unit(105, "lb"),
  39541. name: "Front",
  39542. image: {
  39543. source: "./media/characters/maxine/front.svg",
  39544. extra: 1386/1250,
  39545. bottom: 71/1457
  39546. }
  39547. },
  39548. },
  39549. [
  39550. {
  39551. name: "Normal",
  39552. height: math.unit(5, "feet"),
  39553. default: true
  39554. },
  39555. ]
  39556. ))
  39557. characterMakers.push(() => makeCharacter(
  39558. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39559. {
  39560. front: {
  39561. height: math.unit(11 + 7/12, "feet"),
  39562. weight: math.unit(9576, "lb"),
  39563. name: "Front",
  39564. image: {
  39565. source: "./media/characters/scaly/front.svg",
  39566. extra: 888/867,
  39567. bottom: 36/924
  39568. }
  39569. },
  39570. },
  39571. [
  39572. {
  39573. name: "Normal",
  39574. height: math.unit(11 + 7/12, "feet"),
  39575. default: true
  39576. },
  39577. ]
  39578. ))
  39579. characterMakers.push(() => makeCharacter(
  39580. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39581. {
  39582. front: {
  39583. height: math.unit(9, "inches"),
  39584. name: "Front",
  39585. image: {
  39586. source: "./media/characters/saelria/front.svg",
  39587. extra: 662/621,
  39588. bottom: 12/674
  39589. }
  39590. },
  39591. },
  39592. [
  39593. {
  39594. name: "Tiny",
  39595. height: math.unit(9, "inches"),
  39596. default: true
  39597. },
  39598. ]
  39599. ))
  39600. characterMakers.push(() => makeCharacter(
  39601. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39602. {
  39603. front: {
  39604. height: math.unit(80, "meters"),
  39605. weight: math.unit(7000, "tonnes"),
  39606. name: "Front",
  39607. image: {
  39608. source: "./media/characters/tef/front.svg",
  39609. extra: 2036/1991,
  39610. bottom: 54/2090
  39611. }
  39612. },
  39613. back: {
  39614. height: math.unit(80, "meters"),
  39615. weight: math.unit(7000, "tonnes"),
  39616. name: "Back",
  39617. image: {
  39618. source: "./media/characters/tef/back.svg",
  39619. extra: 2036/1991,
  39620. bottom: 54/2090
  39621. }
  39622. },
  39623. },
  39624. [
  39625. {
  39626. name: "Macro",
  39627. height: math.unit(80, "meters"),
  39628. default: true
  39629. },
  39630. ]
  39631. ))
  39632. characterMakers.push(() => makeCharacter(
  39633. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39634. {
  39635. front: {
  39636. height: math.unit(13, "feet"),
  39637. weight: math.unit(6, "tons"),
  39638. name: "Front",
  39639. image: {
  39640. source: "./media/characters/rover/front.svg",
  39641. extra: 1233/1156,
  39642. bottom: 50/1283
  39643. }
  39644. },
  39645. back: {
  39646. height: math.unit(13, "feet"),
  39647. weight: math.unit(6, "tons"),
  39648. name: "Back",
  39649. image: {
  39650. source: "./media/characters/rover/back.svg",
  39651. extra: 1327/1258,
  39652. bottom: 39/1366
  39653. }
  39654. },
  39655. },
  39656. [
  39657. {
  39658. name: "Normal",
  39659. height: math.unit(13, "feet"),
  39660. default: true
  39661. },
  39662. {
  39663. name: "Macro",
  39664. height: math.unit(1300, "feet")
  39665. },
  39666. {
  39667. name: "Megamacro",
  39668. height: math.unit(1300, "miles")
  39669. },
  39670. {
  39671. name: "Gigamacro",
  39672. height: math.unit(1300000, "miles")
  39673. },
  39674. ]
  39675. ))
  39676. characterMakers.push(() => makeCharacter(
  39677. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39678. {
  39679. front: {
  39680. height: math.unit(6, "feet"),
  39681. weight: math.unit(150, "lb"),
  39682. name: "Front",
  39683. image: {
  39684. source: "./media/characters/ariz/front.svg",
  39685. extra: 1401/1346,
  39686. bottom: 5/1406
  39687. }
  39688. },
  39689. },
  39690. [
  39691. {
  39692. name: "Normal",
  39693. height: math.unit(10, "feet"),
  39694. default: true
  39695. },
  39696. ]
  39697. ))
  39698. characterMakers.push(() => makeCharacter(
  39699. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39700. {
  39701. front: {
  39702. height: math.unit(6, "feet"),
  39703. weight: math.unit(140, "lb"),
  39704. name: "Front",
  39705. image: {
  39706. source: "./media/characters/sigrun/front.svg",
  39707. extra: 1418/1359,
  39708. bottom: 27/1445
  39709. }
  39710. },
  39711. },
  39712. [
  39713. {
  39714. name: "Macro",
  39715. height: math.unit(35, "feet"),
  39716. default: true
  39717. },
  39718. ]
  39719. ))
  39720. characterMakers.push(() => makeCharacter(
  39721. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39722. {
  39723. front: {
  39724. height: math.unit(6, "feet"),
  39725. weight: math.unit(150, "lb"),
  39726. name: "Front",
  39727. image: {
  39728. source: "./media/characters/numin/front.svg",
  39729. extra: 1433/1388,
  39730. bottom: 12/1445
  39731. }
  39732. },
  39733. },
  39734. [
  39735. {
  39736. name: "Macro",
  39737. height: math.unit(21.5, "km"),
  39738. default: true
  39739. },
  39740. ]
  39741. ))
  39742. characterMakers.push(() => makeCharacter(
  39743. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39744. {
  39745. front: {
  39746. height: math.unit(6, "feet"),
  39747. weight: math.unit(463, "lb"),
  39748. name: "Front",
  39749. image: {
  39750. source: "./media/characters/melwa/front.svg",
  39751. extra: 1307/1248,
  39752. bottom: 93/1400
  39753. }
  39754. },
  39755. },
  39756. [
  39757. {
  39758. name: "Macro",
  39759. height: math.unit(50, "meters"),
  39760. default: true
  39761. },
  39762. ]
  39763. ))
  39764. characterMakers.push(() => makeCharacter(
  39765. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39766. {
  39767. front: {
  39768. height: math.unit(325, "feet"),
  39769. name: "Front",
  39770. image: {
  39771. source: "./media/characters/zorkaiju/front.svg",
  39772. extra: 1955/1814,
  39773. bottom: 40/1995
  39774. }
  39775. },
  39776. frontExtended: {
  39777. height: math.unit(325, "feet"),
  39778. name: "Front (Extended)",
  39779. image: {
  39780. source: "./media/characters/zorkaiju/front-extended.svg",
  39781. extra: 1955/1814,
  39782. bottom: 40/1995
  39783. }
  39784. },
  39785. side: {
  39786. height: math.unit(325, "feet"),
  39787. name: "Side",
  39788. image: {
  39789. source: "./media/characters/zorkaiju/side.svg",
  39790. extra: 1495/1396,
  39791. bottom: 17/1512
  39792. }
  39793. },
  39794. sideExtended: {
  39795. height: math.unit(325, "feet"),
  39796. name: "Side (Extended)",
  39797. image: {
  39798. source: "./media/characters/zorkaiju/side-extended.svg",
  39799. extra: 1495/1396,
  39800. bottom: 17/1512
  39801. }
  39802. },
  39803. back: {
  39804. height: math.unit(325, "feet"),
  39805. name: "Back",
  39806. image: {
  39807. source: "./media/characters/zorkaiju/back.svg",
  39808. extra: 1959/1821,
  39809. bottom: 31/1990
  39810. }
  39811. },
  39812. backExtended: {
  39813. height: math.unit(325, "feet"),
  39814. name: "Back (Extended)",
  39815. image: {
  39816. source: "./media/characters/zorkaiju/back-extended.svg",
  39817. extra: 1959/1821,
  39818. bottom: 31/1990
  39819. }
  39820. },
  39821. hand: {
  39822. height: math.unit(58.4, "feet"),
  39823. name: "Hand",
  39824. image: {
  39825. source: "./media/characters/zorkaiju/hand.svg"
  39826. }
  39827. },
  39828. handExtended: {
  39829. height: math.unit(61.4, "feet"),
  39830. name: "Hand (Extended)",
  39831. image: {
  39832. source: "./media/characters/zorkaiju/hand-extended.svg"
  39833. }
  39834. },
  39835. foot: {
  39836. height: math.unit(95, "feet"),
  39837. name: "Foot",
  39838. image: {
  39839. source: "./media/characters/zorkaiju/foot.svg"
  39840. }
  39841. },
  39842. leftArm: {
  39843. height: math.unit(59, "feet"),
  39844. name: "Left Arm",
  39845. image: {
  39846. source: "./media/characters/zorkaiju/left-arm.svg"
  39847. }
  39848. },
  39849. rightArm: {
  39850. height: math.unit(59, "feet"),
  39851. name: "Right Arm",
  39852. image: {
  39853. source: "./media/characters/zorkaiju/right-arm.svg"
  39854. }
  39855. },
  39856. tail: {
  39857. height: math.unit(104, "feet"),
  39858. name: "Tail",
  39859. image: {
  39860. source: "./media/characters/zorkaiju/tail.svg"
  39861. }
  39862. },
  39863. tailExtended: {
  39864. height: math.unit(104, "feet"),
  39865. name: "Tail (Extended)",
  39866. image: {
  39867. source: "./media/characters/zorkaiju/tail-extended.svg"
  39868. }
  39869. },
  39870. tailBottom: {
  39871. height: math.unit(104, "feet"),
  39872. name: "Tail Bottom",
  39873. image: {
  39874. source: "./media/characters/zorkaiju/tail-bottom.svg"
  39875. }
  39876. },
  39877. crystal: {
  39878. height: math.unit(27.54, "feet"),
  39879. name: "Crystal",
  39880. image: {
  39881. source: "./media/characters/zorkaiju/crystal.svg"
  39882. }
  39883. },
  39884. },
  39885. [
  39886. {
  39887. name: "Kaiju",
  39888. height: math.unit(325, "feet"),
  39889. default: true
  39890. },
  39891. ]
  39892. ))
  39893. characterMakers.push(() => makeCharacter(
  39894. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  39895. {
  39896. front: {
  39897. height: math.unit(6 + 1/12, "feet"),
  39898. weight: math.unit(115, "lb"),
  39899. name: "Front",
  39900. image: {
  39901. source: "./media/characters/bailey-belfry/front.svg",
  39902. extra: 1240/1121,
  39903. bottom: 101/1341
  39904. }
  39905. },
  39906. },
  39907. [
  39908. {
  39909. name: "Normal",
  39910. height: math.unit(6 + 1/12, "feet"),
  39911. default: true
  39912. },
  39913. ]
  39914. ))
  39915. characterMakers.push(() => makeCharacter(
  39916. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  39917. {
  39918. side: {
  39919. height: math.unit(4, "meters"),
  39920. weight: math.unit(250, "kg"),
  39921. name: "Side",
  39922. image: {
  39923. source: "./media/characters/blacky/side.svg",
  39924. extra: 1027/919,
  39925. bottom: 43/1070
  39926. }
  39927. },
  39928. maw: {
  39929. height: math.unit(1, "meters"),
  39930. name: "Maw",
  39931. image: {
  39932. source: "./media/characters/blacky/maw.svg"
  39933. }
  39934. },
  39935. paw: {
  39936. height: math.unit(1, "meters"),
  39937. name: "Paw",
  39938. image: {
  39939. source: "./media/characters/blacky/paw.svg"
  39940. }
  39941. },
  39942. },
  39943. [
  39944. {
  39945. name: "Normal",
  39946. height: math.unit(4, "meters"),
  39947. default: true
  39948. },
  39949. ]
  39950. ))
  39951. characterMakers.push(() => makeCharacter(
  39952. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  39953. {
  39954. front: {
  39955. height: math.unit(170, "cm"),
  39956. weight: math.unit(66, "kg"),
  39957. name: "Front",
  39958. image: {
  39959. source: "./media/characters/thux-ei/front.svg",
  39960. extra: 1109/1011,
  39961. bottom: 8/1117
  39962. }
  39963. },
  39964. },
  39965. [
  39966. {
  39967. name: "Normal",
  39968. height: math.unit(170, "cm"),
  39969. default: true
  39970. },
  39971. ]
  39972. ))
  39973. characterMakers.push(() => makeCharacter(
  39974. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  39975. {
  39976. front: {
  39977. height: math.unit(5, "feet"),
  39978. weight: math.unit(120, "lb"),
  39979. name: "Front",
  39980. image: {
  39981. source: "./media/characters/roxanne-voltaire/front.svg",
  39982. extra: 1901/1779,
  39983. bottom: 53/1954
  39984. }
  39985. },
  39986. },
  39987. [
  39988. {
  39989. name: "Normal",
  39990. height: math.unit(5, "feet"),
  39991. default: true
  39992. },
  39993. {
  39994. name: "Giant",
  39995. height: math.unit(50, "feet")
  39996. },
  39997. {
  39998. name: "Titan",
  39999. height: math.unit(500, "feet")
  40000. },
  40001. {
  40002. name: "Macro",
  40003. height: math.unit(5000, "feet")
  40004. },
  40005. {
  40006. name: "Megamacro",
  40007. height: math.unit(50000, "feet")
  40008. },
  40009. {
  40010. name: "Gigamacro",
  40011. height: math.unit(500000, "feet")
  40012. },
  40013. {
  40014. name: "Teramacro",
  40015. height: math.unit(5e6, "feet")
  40016. },
  40017. ]
  40018. ))
  40019. characterMakers.push(() => makeCharacter(
  40020. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  40021. {
  40022. front: {
  40023. height: math.unit(6 + 2/12, "feet"),
  40024. name: "Front",
  40025. image: {
  40026. source: "./media/characters/squeaks/front.svg",
  40027. extra: 1823/1768,
  40028. bottom: 138/1961
  40029. }
  40030. },
  40031. },
  40032. [
  40033. {
  40034. name: "Micro",
  40035. height: math.unit(0.5, "inches")
  40036. },
  40037. {
  40038. name: "Normal",
  40039. height: math.unit(6 + 2/12, "feet"),
  40040. default: true
  40041. },
  40042. {
  40043. name: "Macro",
  40044. height: math.unit(600, "feet")
  40045. },
  40046. ]
  40047. ))
  40048. characterMakers.push(() => makeCharacter(
  40049. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  40050. {
  40051. front: {
  40052. height: math.unit(1.72, "meters"),
  40053. name: "Front",
  40054. image: {
  40055. source: "./media/characters/archinger/front.svg",
  40056. extra: 1861/1675,
  40057. bottom: 125/1986
  40058. }
  40059. },
  40060. back: {
  40061. height: math.unit(1.72, "meters"),
  40062. name: "Back",
  40063. image: {
  40064. source: "./media/characters/archinger/back.svg",
  40065. extra: 1844/1701,
  40066. bottom: 104/1948
  40067. }
  40068. },
  40069. cock: {
  40070. height: math.unit(0.59, "feet"),
  40071. name: "Cock",
  40072. image: {
  40073. source: "./media/characters/archinger/cock.svg"
  40074. }
  40075. },
  40076. },
  40077. [
  40078. {
  40079. name: "Normal",
  40080. height: math.unit(1.72, "meters"),
  40081. default: true
  40082. },
  40083. {
  40084. name: "Macro",
  40085. height: math.unit(84, "meters")
  40086. },
  40087. {
  40088. name: "Macro+",
  40089. height: math.unit(112, "meters")
  40090. },
  40091. {
  40092. name: "Macro++",
  40093. height: math.unit(960, "meters")
  40094. },
  40095. {
  40096. name: "Macro+++",
  40097. height: math.unit(4, "km")
  40098. },
  40099. {
  40100. name: "Macro++++",
  40101. height: math.unit(48, "km")
  40102. },
  40103. {
  40104. name: "Macro+++++",
  40105. height: math.unit(4500, "km")
  40106. },
  40107. ]
  40108. ))
  40109. characterMakers.push(() => makeCharacter(
  40110. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  40111. {
  40112. front: {
  40113. height: math.unit(5 + 5/12, "feet"),
  40114. name: "Front",
  40115. image: {
  40116. source: "./media/characters/alsnapz/front.svg",
  40117. extra: 1157/1065,
  40118. bottom: 42/1199
  40119. }
  40120. },
  40121. },
  40122. [
  40123. {
  40124. name: "Normal",
  40125. height: math.unit(5 + 5/12, "feet"),
  40126. default: true
  40127. },
  40128. ]
  40129. ))
  40130. characterMakers.push(() => makeCharacter(
  40131. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  40132. {
  40133. side: {
  40134. height: math.unit(3.2, "earths"),
  40135. name: "Side",
  40136. image: {
  40137. source: "./media/characters/mag/side.svg",
  40138. extra: 1331/1008,
  40139. bottom: 52/1383
  40140. }
  40141. },
  40142. wing: {
  40143. height: math.unit(1.94, "earths"),
  40144. name: "Wing",
  40145. image: {
  40146. source: "./media/characters/mag/wing.svg"
  40147. }
  40148. },
  40149. dick: {
  40150. height: math.unit(1.8, "earths"),
  40151. name: "Dick",
  40152. image: {
  40153. source: "./media/characters/mag/dick.svg"
  40154. }
  40155. },
  40156. ass: {
  40157. height: math.unit(1.33, "earths"),
  40158. name: "Ass",
  40159. image: {
  40160. source: "./media/characters/mag/ass.svg"
  40161. }
  40162. },
  40163. head: {
  40164. height: math.unit(1.1, "earths"),
  40165. name: "Head",
  40166. image: {
  40167. source: "./media/characters/mag/head.svg"
  40168. }
  40169. },
  40170. maw: {
  40171. height: math.unit(1.62, "earths"),
  40172. name: "Maw",
  40173. image: {
  40174. source: "./media/characters/mag/maw.svg"
  40175. }
  40176. },
  40177. },
  40178. [
  40179. {
  40180. name: "Small",
  40181. height: math.unit(162, "feet")
  40182. },
  40183. {
  40184. name: "Normal",
  40185. height: math.unit(3.2, "earths"),
  40186. default: true
  40187. },
  40188. ]
  40189. ))
  40190. characterMakers.push(() => makeCharacter(
  40191. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40192. {
  40193. front: {
  40194. height: math.unit(512, "feet"),
  40195. weight: math.unit(63509, "tonnes"),
  40196. name: "Front",
  40197. image: {
  40198. source: "./media/characters/vorrel-harroc/front.svg",
  40199. extra: 1075/1063,
  40200. bottom: 62/1137
  40201. }
  40202. },
  40203. },
  40204. [
  40205. {
  40206. name: "Normal",
  40207. height: math.unit(10, "feet")
  40208. },
  40209. {
  40210. name: "Macro",
  40211. height: math.unit(512, "feet"),
  40212. default: true
  40213. },
  40214. {
  40215. name: "Megamacro",
  40216. height: math.unit(256, "miles")
  40217. },
  40218. {
  40219. name: "Gigamacro",
  40220. height: math.unit(4096, "miles")
  40221. },
  40222. ]
  40223. ))
  40224. characterMakers.push(() => makeCharacter(
  40225. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40226. {
  40227. side: {
  40228. height: math.unit(50, "feet"),
  40229. name: "Side",
  40230. image: {
  40231. source: "./media/characters/froimar/side.svg",
  40232. extra: 855/638,
  40233. bottom: 99/954
  40234. }
  40235. },
  40236. },
  40237. [
  40238. {
  40239. name: "Macro",
  40240. height: math.unit(50, "feet"),
  40241. default: true
  40242. },
  40243. ]
  40244. ))
  40245. characterMakers.push(() => makeCharacter(
  40246. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40247. {
  40248. front: {
  40249. height: math.unit(210, "miles"),
  40250. name: "Front",
  40251. image: {
  40252. source: "./media/characters/timothy/front.svg",
  40253. extra: 1007/943,
  40254. bottom: 62/1069
  40255. }
  40256. },
  40257. frontSkirt: {
  40258. height: math.unit(210, "miles"),
  40259. name: "Front (Skirt)",
  40260. image: {
  40261. source: "./media/characters/timothy/front-skirt.svg",
  40262. extra: 1007/943,
  40263. bottom: 62/1069
  40264. }
  40265. },
  40266. frontCoat: {
  40267. height: math.unit(210, "miles"),
  40268. name: "Front (Coat)",
  40269. image: {
  40270. source: "./media/characters/timothy/front-coat.svg",
  40271. extra: 1007/943,
  40272. bottom: 62/1069
  40273. }
  40274. },
  40275. },
  40276. [
  40277. {
  40278. name: "Macro",
  40279. height: math.unit(210, "miles"),
  40280. default: true
  40281. },
  40282. {
  40283. name: "Megamacro",
  40284. height: math.unit(210000, "miles")
  40285. },
  40286. ]
  40287. ))
  40288. characterMakers.push(() => makeCharacter(
  40289. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40290. {
  40291. front: {
  40292. height: math.unit(188, "feet"),
  40293. name: "Front",
  40294. image: {
  40295. source: "./media/characters/pyotr/front.svg",
  40296. extra: 1912/1826,
  40297. bottom: 18/1930
  40298. }
  40299. },
  40300. },
  40301. [
  40302. {
  40303. name: "Macro",
  40304. height: math.unit(188, "feet"),
  40305. default: true
  40306. },
  40307. {
  40308. name: "Megamacro",
  40309. height: math.unit(8, "miles")
  40310. },
  40311. ]
  40312. ))
  40313. characterMakers.push(() => makeCharacter(
  40314. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40315. {
  40316. side: {
  40317. height: math.unit(10, "feet"),
  40318. weight: math.unit(4500, "lb"),
  40319. name: "Side",
  40320. image: {
  40321. source: "./media/characters/ackart/side.svg",
  40322. extra: 1776/1668,
  40323. bottom: 116/1892
  40324. }
  40325. },
  40326. },
  40327. [
  40328. {
  40329. name: "Normal",
  40330. height: math.unit(10, "feet"),
  40331. default: true
  40332. },
  40333. ]
  40334. ))
  40335. characterMakers.push(() => makeCharacter(
  40336. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40337. {
  40338. side: {
  40339. height: math.unit(21, "feet"),
  40340. name: "Side",
  40341. image: {
  40342. source: "./media/characters/nolow/side.svg",
  40343. extra: 1484/1434,
  40344. bottom: 85/1569
  40345. }
  40346. },
  40347. sideErect: {
  40348. height: math.unit(21, "feet"),
  40349. name: "Side-erect",
  40350. image: {
  40351. source: "./media/characters/nolow/side-erect.svg",
  40352. extra: 1484/1434,
  40353. bottom: 85/1569
  40354. }
  40355. },
  40356. },
  40357. [
  40358. {
  40359. name: "Regular",
  40360. height: math.unit(12, "feet")
  40361. },
  40362. {
  40363. name: "Big Chee",
  40364. height: math.unit(21, "feet"),
  40365. default: true
  40366. },
  40367. ]
  40368. ))
  40369. characterMakers.push(() => makeCharacter(
  40370. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40371. {
  40372. front: {
  40373. height: math.unit(7, "feet"),
  40374. weight: math.unit(250, "lb"),
  40375. name: "Front",
  40376. image: {
  40377. source: "./media/characters/nines/front.svg",
  40378. extra: 1741/1607,
  40379. bottom: 41/1782
  40380. }
  40381. },
  40382. side: {
  40383. height: math.unit(7, "feet"),
  40384. weight: math.unit(250, "lb"),
  40385. name: "Side",
  40386. image: {
  40387. source: "./media/characters/nines/side.svg",
  40388. extra: 1854/1735,
  40389. bottom: 93/1947
  40390. }
  40391. },
  40392. back: {
  40393. height: math.unit(7, "feet"),
  40394. weight: math.unit(250, "lb"),
  40395. name: "Back",
  40396. image: {
  40397. source: "./media/characters/nines/back.svg",
  40398. extra: 1748/1615,
  40399. bottom: 20/1768
  40400. }
  40401. },
  40402. },
  40403. [
  40404. {
  40405. name: "Megamacro",
  40406. height: math.unit(99, "km"),
  40407. default: true
  40408. },
  40409. ]
  40410. ))
  40411. characterMakers.push(() => makeCharacter(
  40412. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40413. {
  40414. front: {
  40415. height: math.unit(5 + 10/12, "feet"),
  40416. weight: math.unit(210, "lb"),
  40417. name: "Front",
  40418. image: {
  40419. source: "./media/characters/zenith/front.svg",
  40420. extra: 1531/1452,
  40421. bottom: 198/1729
  40422. }
  40423. },
  40424. back: {
  40425. height: math.unit(5 + 10/12, "feet"),
  40426. weight: math.unit(210, "lb"),
  40427. name: "Back",
  40428. image: {
  40429. source: "./media/characters/zenith/back.svg",
  40430. extra: 1571/1487,
  40431. bottom: 75/1646
  40432. }
  40433. },
  40434. },
  40435. [
  40436. {
  40437. name: "Normal",
  40438. height: math.unit(5 + 10/12, "feet"),
  40439. default: true
  40440. }
  40441. ]
  40442. ))
  40443. characterMakers.push(() => makeCharacter(
  40444. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40445. {
  40446. front: {
  40447. height: math.unit(4, "feet"),
  40448. weight: math.unit(60, "lb"),
  40449. name: "Front",
  40450. image: {
  40451. source: "./media/characters/jasper/front.svg",
  40452. extra: 1450/1379,
  40453. bottom: 19/1469
  40454. }
  40455. },
  40456. },
  40457. [
  40458. {
  40459. name: "Normal",
  40460. height: math.unit(4, "feet"),
  40461. default: true
  40462. },
  40463. ]
  40464. ))
  40465. characterMakers.push(() => makeCharacter(
  40466. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40467. {
  40468. front: {
  40469. height: math.unit(6 + 5/12, "feet"),
  40470. weight: math.unit(290, "lb"),
  40471. name: "Front",
  40472. image: {
  40473. source: "./media/characters/tiberius-thyben/front.svg",
  40474. extra: 757/739,
  40475. bottom: 39/796
  40476. }
  40477. },
  40478. },
  40479. [
  40480. {
  40481. name: "Micro",
  40482. height: math.unit(1.5, "inches")
  40483. },
  40484. {
  40485. name: "Normal",
  40486. height: math.unit(6 + 5/12, "feet"),
  40487. default: true
  40488. },
  40489. {
  40490. name: "Macro",
  40491. height: math.unit(300, "feet")
  40492. },
  40493. ]
  40494. ))
  40495. characterMakers.push(() => makeCharacter(
  40496. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40497. {
  40498. front: {
  40499. height: math.unit(5 + 6/12, "feet"),
  40500. weight: math.unit(60, "kg"),
  40501. name: "Front",
  40502. image: {
  40503. source: "./media/characters/sabre/front.svg",
  40504. extra: 738/671,
  40505. bottom: 27/765
  40506. }
  40507. },
  40508. },
  40509. [
  40510. {
  40511. name: "Teeny",
  40512. height: math.unit(2, "inches")
  40513. },
  40514. {
  40515. name: "Smol",
  40516. height: math.unit(8, "inches")
  40517. },
  40518. {
  40519. name: "Normal",
  40520. height: math.unit(5 + 6/12, "feet"),
  40521. default: true
  40522. },
  40523. {
  40524. name: "Mini-Macro",
  40525. height: math.unit(15, "feet")
  40526. },
  40527. {
  40528. name: "Macro",
  40529. height: math.unit(50, "feet")
  40530. },
  40531. ]
  40532. ))
  40533. characterMakers.push(() => makeCharacter(
  40534. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40535. {
  40536. front: {
  40537. height: math.unit(6 + 4/12, "feet"),
  40538. weight: math.unit(170, "lb"),
  40539. name: "Front",
  40540. image: {
  40541. source: "./media/characters/charlie/front.svg",
  40542. extra: 1348/1228,
  40543. bottom: 15/1363
  40544. }
  40545. },
  40546. },
  40547. [
  40548. {
  40549. name: "Macro",
  40550. height: math.unit(1700, "meters"),
  40551. default: true
  40552. },
  40553. {
  40554. name: "MegaMacro",
  40555. height: math.unit(20400, "meters")
  40556. },
  40557. ]
  40558. ))
  40559. characterMakers.push(() => makeCharacter(
  40560. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40561. {
  40562. front: {
  40563. height: math.unit(6 + 3/12, "feet"),
  40564. weight: math.unit(185, "lb"),
  40565. name: "Front",
  40566. image: {
  40567. source: "./media/characters/susan-grant/front.svg",
  40568. extra: 1351/1327,
  40569. bottom: 26/1377
  40570. }
  40571. },
  40572. },
  40573. [
  40574. {
  40575. name: "Normal",
  40576. height: math.unit(6 + 3/12, "feet"),
  40577. default: true
  40578. },
  40579. {
  40580. name: "Macro",
  40581. height: math.unit(225, "feet")
  40582. },
  40583. {
  40584. name: "Macro+",
  40585. height: math.unit(900, "feet")
  40586. },
  40587. {
  40588. name: "MegaMacro",
  40589. height: math.unit(14400, "feet")
  40590. },
  40591. ]
  40592. ))
  40593. characterMakers.push(() => makeCharacter(
  40594. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40595. {
  40596. front: {
  40597. height: math.unit(5 + 4/12, "feet"),
  40598. weight: math.unit(110, "lb"),
  40599. name: "Front",
  40600. image: {
  40601. source: "./media/characters/axel-isanov/front.svg",
  40602. extra: 1096/1065,
  40603. bottom: 13/1109
  40604. }
  40605. },
  40606. },
  40607. [
  40608. {
  40609. name: "Normal",
  40610. height: math.unit(5 + 4/12, "feet"),
  40611. default: true
  40612. },
  40613. ]
  40614. ))
  40615. characterMakers.push(() => makeCharacter(
  40616. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40617. {
  40618. front: {
  40619. height: math.unit(9, "feet"),
  40620. weight: math.unit(467, "lb"),
  40621. name: "Front",
  40622. image: {
  40623. source: "./media/characters/necahual/front.svg",
  40624. extra: 920/873,
  40625. bottom: 26/946
  40626. }
  40627. },
  40628. back: {
  40629. height: math.unit(9, "feet"),
  40630. weight: math.unit(467, "lb"),
  40631. name: "Back",
  40632. image: {
  40633. source: "./media/characters/necahual/back.svg",
  40634. extra: 930/884,
  40635. bottom: 16/946
  40636. }
  40637. },
  40638. frontUnderwear: {
  40639. height: math.unit(9, "feet"),
  40640. weight: math.unit(467, "lb"),
  40641. name: "Front (Underwear)",
  40642. image: {
  40643. source: "./media/characters/necahual/front-underwear.svg",
  40644. extra: 920/873,
  40645. bottom: 26/946
  40646. }
  40647. },
  40648. frontDressed: {
  40649. height: math.unit(9, "feet"),
  40650. weight: math.unit(467, "lb"),
  40651. name: "Front (Dressed)",
  40652. image: {
  40653. source: "./media/characters/necahual/front-dressed.svg",
  40654. extra: 920/873,
  40655. bottom: 26/946
  40656. }
  40657. },
  40658. },
  40659. [
  40660. {
  40661. name: "Comprsesed",
  40662. height: math.unit(9, "feet")
  40663. },
  40664. {
  40665. name: "Natural",
  40666. height: math.unit(15, "feet"),
  40667. default: true
  40668. },
  40669. {
  40670. name: "Boosted",
  40671. height: math.unit(50, "feet")
  40672. },
  40673. {
  40674. name: "Boosted+",
  40675. height: math.unit(150, "feet")
  40676. },
  40677. {
  40678. name: "Max",
  40679. height: math.unit(500, "feet")
  40680. },
  40681. ]
  40682. ))
  40683. characterMakers.push(() => makeCharacter(
  40684. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40685. {
  40686. front: {
  40687. height: math.unit(22 + 1/12, "feet"),
  40688. weight: math.unit(3200, "lb"),
  40689. name: "Front",
  40690. image: {
  40691. source: "./media/characters/theo-acacia/front.svg",
  40692. extra: 1796/1741,
  40693. bottom: 83/1879
  40694. }
  40695. },
  40696. frontUnderwear: {
  40697. height: math.unit(22 + 1/12, "feet"),
  40698. weight: math.unit(3200, "lb"),
  40699. name: "Front (Underwear)",
  40700. image: {
  40701. source: "./media/characters/theo-acacia/front-underwear.svg",
  40702. extra: 1796/1741,
  40703. bottom: 83/1879
  40704. }
  40705. },
  40706. frontNude: {
  40707. height: math.unit(22 + 1/12, "feet"),
  40708. weight: math.unit(3200, "lb"),
  40709. name: "Front (Nude)",
  40710. image: {
  40711. source: "./media/characters/theo-acacia/front-nude.svg",
  40712. extra: 1796/1741,
  40713. bottom: 83/1879
  40714. }
  40715. },
  40716. },
  40717. [
  40718. {
  40719. name: "Normal",
  40720. height: math.unit(22 + 1/12, "feet"),
  40721. default: true
  40722. },
  40723. ]
  40724. ))
  40725. characterMakers.push(() => makeCharacter(
  40726. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40727. {
  40728. front: {
  40729. height: math.unit(20, "feet"),
  40730. name: "Front",
  40731. image: {
  40732. source: "./media/characters/astra/front.svg",
  40733. extra: 1850/1714,
  40734. bottom: 106/1956
  40735. }
  40736. },
  40737. frontUndressed: {
  40738. height: math.unit(20, "feet"),
  40739. name: "Front (Undressed)",
  40740. image: {
  40741. source: "./media/characters/astra/front-undressed.svg",
  40742. extra: 1926/1749,
  40743. bottom: 0/1926
  40744. }
  40745. },
  40746. hand: {
  40747. height: math.unit(1.53, "feet"),
  40748. name: "Hand",
  40749. image: {
  40750. source: "./media/characters/astra/hand.svg"
  40751. }
  40752. },
  40753. paw: {
  40754. height: math.unit(1.53, "feet"),
  40755. name: "Paw",
  40756. image: {
  40757. source: "./media/characters/astra/paw.svg"
  40758. }
  40759. },
  40760. },
  40761. [
  40762. {
  40763. name: "Smallest",
  40764. height: math.unit(20, "feet")
  40765. },
  40766. {
  40767. name: "Normal",
  40768. height: math.unit(1e9, "miles"),
  40769. default: true
  40770. },
  40771. {
  40772. name: "Larger",
  40773. height: math.unit(5, "multiverses")
  40774. },
  40775. {
  40776. name: "Largest",
  40777. height: math.unit(1e9, "multiverses")
  40778. },
  40779. ]
  40780. ))
  40781. characterMakers.push(() => makeCharacter(
  40782. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40783. {
  40784. front: {
  40785. height: math.unit(8, "feet"),
  40786. name: "Front",
  40787. image: {
  40788. source: "./media/characters/breanna/front.svg",
  40789. extra: 1912/1632,
  40790. bottom: 33/1945
  40791. }
  40792. },
  40793. },
  40794. [
  40795. {
  40796. name: "Smallest",
  40797. height: math.unit(8, "feet")
  40798. },
  40799. {
  40800. name: "Normal",
  40801. height: math.unit(1, "mile"),
  40802. default: true
  40803. },
  40804. {
  40805. name: "Maximum",
  40806. height: math.unit(1500000000000, "lightyears")
  40807. },
  40808. ]
  40809. ))
  40810. characterMakers.push(() => makeCharacter(
  40811. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  40812. {
  40813. front: {
  40814. height: math.unit(5 + 11/12, "feet"),
  40815. weight: math.unit(155, "lb"),
  40816. name: "Front",
  40817. image: {
  40818. source: "./media/characters/cai/front.svg",
  40819. extra: 1823/1702,
  40820. bottom: 32/1855
  40821. }
  40822. },
  40823. back: {
  40824. height: math.unit(5 + 11/12, "feet"),
  40825. weight: math.unit(155, "lb"),
  40826. name: "Back",
  40827. image: {
  40828. source: "./media/characters/cai/back.svg",
  40829. extra: 1809/1708,
  40830. bottom: 31/1840
  40831. }
  40832. },
  40833. },
  40834. [
  40835. {
  40836. name: "Normal",
  40837. height: math.unit(5 + 11/12, "feet"),
  40838. default: true
  40839. },
  40840. {
  40841. name: "Big",
  40842. height: math.unit(15, "feet")
  40843. },
  40844. {
  40845. name: "Macro",
  40846. height: math.unit(200, "feet")
  40847. },
  40848. ]
  40849. ))
  40850. characterMakers.push(() => makeCharacter(
  40851. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  40852. {
  40853. front: {
  40854. height: math.unit(5 + 6/12, "feet"),
  40855. weight: math.unit(160, "lb"),
  40856. name: "Front",
  40857. image: {
  40858. source: "./media/characters/zanna-virtuedòttir/front.svg",
  40859. extra: 1227/1174,
  40860. bottom: 37/1264
  40861. }
  40862. },
  40863. },
  40864. [
  40865. {
  40866. name: "Macro",
  40867. height: math.unit(444, "meters"),
  40868. default: true
  40869. },
  40870. ]
  40871. ))
  40872. characterMakers.push(() => makeCharacter(
  40873. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  40874. {
  40875. front: {
  40876. height: math.unit(18 + 7/12, "feet"),
  40877. name: "Front",
  40878. image: {
  40879. source: "./media/characters/rex/front.svg",
  40880. extra: 1941/1807,
  40881. bottom: 66/2007
  40882. }
  40883. },
  40884. back: {
  40885. height: math.unit(18 + 7/12, "feet"),
  40886. name: "Back",
  40887. image: {
  40888. source: "./media/characters/rex/back.svg",
  40889. extra: 1937/1822,
  40890. bottom: 42/1979
  40891. }
  40892. },
  40893. boot: {
  40894. height: math.unit(3.45, "feet"),
  40895. name: "Boot",
  40896. image: {
  40897. source: "./media/characters/rex/boot.svg"
  40898. }
  40899. },
  40900. paw: {
  40901. height: math.unit(4.17, "feet"),
  40902. name: "Paw",
  40903. image: {
  40904. source: "./media/characters/rex/paw.svg"
  40905. }
  40906. },
  40907. head: {
  40908. height: math.unit(6.728, "feet"),
  40909. name: "Head",
  40910. image: {
  40911. source: "./media/characters/rex/head.svg"
  40912. }
  40913. },
  40914. },
  40915. [
  40916. {
  40917. name: "Nano",
  40918. height: math.unit(18 + 7/12, "feet")
  40919. },
  40920. {
  40921. name: "Micro",
  40922. height: math.unit(1.5, "megameters")
  40923. },
  40924. {
  40925. name: "Normal",
  40926. height: math.unit(440, "megameters"),
  40927. default: true
  40928. },
  40929. {
  40930. name: "Macro",
  40931. height: math.unit(2.5, "gigameters")
  40932. },
  40933. {
  40934. name: "Gigamacro",
  40935. height: math.unit(2, "galaxies")
  40936. },
  40937. ]
  40938. ))
  40939. characterMakers.push(() => makeCharacter(
  40940. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  40941. {
  40942. side: {
  40943. height: math.unit(32, "feet"),
  40944. weight: math.unit(250000, "lb"),
  40945. name: "Side",
  40946. image: {
  40947. source: "./media/characters/silverwing/side.svg",
  40948. extra: 1100/1019,
  40949. bottom: 204/1304
  40950. }
  40951. },
  40952. },
  40953. [
  40954. {
  40955. name: "Normal",
  40956. height: math.unit(32, "feet"),
  40957. default: true
  40958. },
  40959. ]
  40960. ))
  40961. characterMakers.push(() => makeCharacter(
  40962. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  40963. {
  40964. front: {
  40965. height: math.unit(6 + 6/12, "feet"),
  40966. weight: math.unit(350, "lb"),
  40967. name: "Front",
  40968. image: {
  40969. source: "./media/characters/tristan-hawthorne/front.svg",
  40970. extra: 1159/1124,
  40971. bottom: 37/1196
  40972. }
  40973. },
  40974. },
  40975. [
  40976. {
  40977. name: "Normal",
  40978. height: math.unit(6 + 6/12, "feet"),
  40979. default: true
  40980. },
  40981. ]
  40982. ))
  40983. characterMakers.push(() => makeCharacter(
  40984. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  40985. {
  40986. front: {
  40987. height: math.unit(5 + 11/12, "feet"),
  40988. weight: math.unit(190, "lb"),
  40989. name: "Front",
  40990. image: {
  40991. source: "./media/characters/mizu/front.svg",
  40992. extra: 1988/1788,
  40993. bottom: 14/2002
  40994. }
  40995. },
  40996. },
  40997. [
  40998. {
  40999. name: "Normal",
  41000. height: math.unit(5 + 11/12, "feet"),
  41001. default: true
  41002. },
  41003. ]
  41004. ))
  41005. characterMakers.push(() => makeCharacter(
  41006. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  41007. {
  41008. front: {
  41009. height: math.unit(6, "feet"),
  41010. name: "Front",
  41011. image: {
  41012. source: "./media/characters/moonlight-rose-terra/front.svg",
  41013. extra: 1434/1252,
  41014. bottom: 48/1482
  41015. }
  41016. },
  41017. },
  41018. [
  41019. {
  41020. name: "TRAPPIST-1D",
  41021. height: math.unit(4992*2, "km")
  41022. },
  41023. {
  41024. name: "Earth",
  41025. height: math.unit(6367*2, "km"),
  41026. default: true
  41027. },
  41028. {
  41029. name: "Kepler-22b",
  41030. height: math.unit(15282*2, "km")
  41031. },
  41032. ]
  41033. ))
  41034. characterMakers.push(() => makeCharacter(
  41035. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  41036. {
  41037. front: {
  41038. height: math.unit(6, "feet"),
  41039. name: "Front",
  41040. image: {
  41041. source: "./media/characters/moonlight-rose-neptune/front.svg",
  41042. extra: 1851/1712,
  41043. bottom: 0/1851
  41044. }
  41045. },
  41046. },
  41047. [
  41048. {
  41049. name: "Enceladus",
  41050. height: math.unit(513*2, "km")
  41051. },
  41052. {
  41053. name: "Europe",
  41054. height: math.unit(1560*2, "km")
  41055. },
  41056. {
  41057. name: "Neptune",
  41058. height: math.unit(24622*2, "km"),
  41059. default: true
  41060. },
  41061. {
  41062. name: "CoRoT-9b",
  41063. height: math.unit(75067*2, "km")
  41064. },
  41065. ]
  41066. ))
  41067. characterMakers.push(() => makeCharacter(
  41068. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  41069. {
  41070. front: {
  41071. height: math.unit(6, "feet"),
  41072. name: "Front",
  41073. image: {
  41074. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  41075. extra: 1367/1286,
  41076. bottom: 55/1422
  41077. }
  41078. },
  41079. },
  41080. [
  41081. {
  41082. name: "Saturn",
  41083. height: math.unit(58232*2, "km")
  41084. },
  41085. {
  41086. name: "Jupiter",
  41087. height: math.unit(69911*2, "km"),
  41088. default: true
  41089. },
  41090. {
  41091. name: "HD 100546 b",
  41092. height: math.unit(482938, "km")
  41093. },
  41094. ]
  41095. ))
  41096. characterMakers.push(() => makeCharacter(
  41097. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41098. {
  41099. front: {
  41100. height: math.unit(1.7, "feet"),
  41101. weight: math.unit(50, "lb"),
  41102. name: "Front",
  41103. image: {
  41104. source: "./media/characters/dechroma/front.svg",
  41105. extra: 1095/859,
  41106. bottom: 64/1159
  41107. }
  41108. },
  41109. },
  41110. [
  41111. {
  41112. name: "Normal",
  41113. height: math.unit(1.7, "feet"),
  41114. default: true
  41115. },
  41116. ]
  41117. ))
  41118. characterMakers.push(() => makeCharacter(
  41119. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41120. {
  41121. side: {
  41122. height: math.unit(30, "feet"),
  41123. name: "Side",
  41124. image: {
  41125. source: "./media/characters/veluren-thanazel/side.svg",
  41126. extra: 1611/633,
  41127. bottom: 118/1729
  41128. }
  41129. },
  41130. front: {
  41131. height: math.unit(30, "feet"),
  41132. name: "Front",
  41133. image: {
  41134. source: "./media/characters/veluren-thanazel/front.svg",
  41135. extra: 1486/636,
  41136. bottom: 238/1724
  41137. }
  41138. },
  41139. head: {
  41140. height: math.unit(21.4, "feet"),
  41141. name: "Head",
  41142. image: {
  41143. source: "./media/characters/veluren-thanazel/head.svg"
  41144. }
  41145. },
  41146. genitals: {
  41147. height: math.unit(19.4, "feet"),
  41148. name: "Genitals",
  41149. image: {
  41150. source: "./media/characters/veluren-thanazel/genitals.svg"
  41151. }
  41152. },
  41153. },
  41154. [
  41155. {
  41156. name: "Social",
  41157. height: math.unit(6, "feet")
  41158. },
  41159. {
  41160. name: "Play",
  41161. height: math.unit(12, "feet")
  41162. },
  41163. {
  41164. name: "True",
  41165. height: math.unit(30, "feet"),
  41166. default: true
  41167. },
  41168. ]
  41169. ))
  41170. characterMakers.push(() => makeCharacter(
  41171. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41172. {
  41173. front: {
  41174. height: math.unit(7 + 6/12, "feet"),
  41175. weight: math.unit(500, "kg"),
  41176. name: "Front",
  41177. image: {
  41178. source: "./media/characters/arcturas/front.svg",
  41179. extra: 1700/1500,
  41180. bottom: 145/1845
  41181. }
  41182. },
  41183. },
  41184. [
  41185. {
  41186. name: "Normal",
  41187. height: math.unit(7 + 6/12, "feet"),
  41188. default: true
  41189. },
  41190. ]
  41191. ))
  41192. characterMakers.push(() => makeCharacter(
  41193. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41194. {
  41195. side: {
  41196. height: math.unit(6, "feet"),
  41197. weight: math.unit(2, "tons"),
  41198. name: "Side",
  41199. image: {
  41200. source: "./media/characters/vitaen/side.svg",
  41201. extra: 1157/617,
  41202. bottom: 122/1279
  41203. }
  41204. },
  41205. },
  41206. [
  41207. {
  41208. name: "Normal",
  41209. height: math.unit(6, "feet"),
  41210. default: true
  41211. },
  41212. ]
  41213. ))
  41214. characterMakers.push(() => makeCharacter(
  41215. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41216. {
  41217. front: {
  41218. height: math.unit(19, "feet"),
  41219. name: "Front",
  41220. image: {
  41221. source: "./media/characters/fia-dreamweaver/front.svg",
  41222. extra: 1630/1504,
  41223. bottom: 25/1655
  41224. }
  41225. },
  41226. },
  41227. [
  41228. {
  41229. name: "Normal",
  41230. height: math.unit(19, "feet"),
  41231. default: true
  41232. },
  41233. ]
  41234. ))
  41235. characterMakers.push(() => makeCharacter(
  41236. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41237. {
  41238. front: {
  41239. height: math.unit(5 + 4/12, "feet"),
  41240. name: "Front",
  41241. image: {
  41242. source: "./media/characters/artan/front.svg",
  41243. extra: 1618/1535,
  41244. bottom: 46/1664
  41245. }
  41246. },
  41247. back: {
  41248. height: math.unit(5 + 4/12, "feet"),
  41249. name: "Back",
  41250. image: {
  41251. source: "./media/characters/artan/back.svg",
  41252. extra: 1618/1543,
  41253. bottom: 31/1649
  41254. }
  41255. },
  41256. },
  41257. [
  41258. {
  41259. name: "Normal",
  41260. height: math.unit(5 + 4/12, "feet"),
  41261. default: true
  41262. },
  41263. ]
  41264. ))
  41265. characterMakers.push(() => makeCharacter(
  41266. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41267. {
  41268. side: {
  41269. height: math.unit(182, "cm"),
  41270. weight: math.unit(1000, "lb"),
  41271. name: "Side",
  41272. image: {
  41273. source: "./media/characters/silver-dragon/side.svg",
  41274. extra: 710/287,
  41275. bottom: 88/798
  41276. }
  41277. },
  41278. },
  41279. [
  41280. {
  41281. name: "Normal",
  41282. height: math.unit(182, "cm"),
  41283. default: true
  41284. },
  41285. ]
  41286. ))
  41287. characterMakers.push(() => makeCharacter(
  41288. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41289. {
  41290. side: {
  41291. height: math.unit(6 + 6/12, "feet"),
  41292. weight: math.unit(1.5, "tons"),
  41293. name: "Side",
  41294. image: {
  41295. source: "./media/characters/zephyr/side.svg",
  41296. extra: 1433/586,
  41297. bottom: 109/1542
  41298. }
  41299. },
  41300. },
  41301. [
  41302. {
  41303. name: "Normal",
  41304. height: math.unit(6 + 6/12, "feet"),
  41305. default: true
  41306. },
  41307. ]
  41308. ))
  41309. characterMakers.push(() => makeCharacter(
  41310. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41311. {
  41312. side: {
  41313. height: math.unit(1, "feet"),
  41314. name: "Side",
  41315. image: {
  41316. source: "./media/characters/vixye/side.svg",
  41317. extra: 632/541,
  41318. bottom: 0/632
  41319. }
  41320. },
  41321. },
  41322. [
  41323. {
  41324. name: "Normal",
  41325. height: math.unit(1, "feet"),
  41326. default: true
  41327. },
  41328. {
  41329. name: "True",
  41330. height: math.unit(1e15, "multiverses")
  41331. },
  41332. ]
  41333. ))
  41334. characterMakers.push(() => makeCharacter(
  41335. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41336. {
  41337. front: {
  41338. height: math.unit(8 + 2/12, "feet"),
  41339. weight: math.unit(650, "lb"),
  41340. name: "Front",
  41341. image: {
  41342. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41343. extra: 1174/1137,
  41344. bottom: 82/1256
  41345. }
  41346. },
  41347. back: {
  41348. height: math.unit(8 + 2/12, "feet"),
  41349. weight: math.unit(650, "lb"),
  41350. name: "Back",
  41351. image: {
  41352. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41353. extra: 1204/1157,
  41354. bottom: 46/1250
  41355. }
  41356. },
  41357. },
  41358. [
  41359. {
  41360. name: "Wildform",
  41361. height: math.unit(8 + 2/12, "feet"),
  41362. default: true
  41363. },
  41364. ]
  41365. ))
  41366. characterMakers.push(() => makeCharacter(
  41367. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41368. {
  41369. front: {
  41370. height: math.unit(18, "feet"),
  41371. name: "Front",
  41372. image: {
  41373. source: "./media/characters/cyphin/front.svg",
  41374. extra: 970/886,
  41375. bottom: 42/1012
  41376. }
  41377. },
  41378. back: {
  41379. height: math.unit(18, "feet"),
  41380. name: "Back",
  41381. image: {
  41382. source: "./media/characters/cyphin/back.svg",
  41383. extra: 1009/894,
  41384. bottom: 24/1033
  41385. }
  41386. },
  41387. head: {
  41388. height: math.unit(5.05, "feet"),
  41389. name: "Head",
  41390. image: {
  41391. source: "./media/characters/cyphin/head.svg"
  41392. }
  41393. },
  41394. tailbud: {
  41395. height: math.unit(5, "feet"),
  41396. name: "Tailbud",
  41397. image: {
  41398. source: "./media/characters/cyphin/tailbud.svg"
  41399. }
  41400. },
  41401. },
  41402. [
  41403. ]
  41404. ))
  41405. characterMakers.push(() => makeCharacter(
  41406. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41407. {
  41408. side: {
  41409. height: math.unit(10, "feet"),
  41410. weight: math.unit(6, "tons"),
  41411. name: "Side",
  41412. image: {
  41413. source: "./media/characters/raijin/side.svg",
  41414. extra: 1529/613,
  41415. bottom: 337/1866
  41416. }
  41417. },
  41418. },
  41419. [
  41420. {
  41421. name: "Normal",
  41422. height: math.unit(10, "feet"),
  41423. default: true
  41424. },
  41425. ]
  41426. ))
  41427. characterMakers.push(() => makeCharacter(
  41428. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41429. {
  41430. side: {
  41431. height: math.unit(9, "feet"),
  41432. name: "Side",
  41433. image: {
  41434. source: "./media/characters/nilghais/side.svg",
  41435. extra: 1047/744,
  41436. bottom: 91/1138
  41437. }
  41438. },
  41439. head: {
  41440. height: math.unit(3.14, "feet"),
  41441. name: "Head",
  41442. image: {
  41443. source: "./media/characters/nilghais/head.svg"
  41444. }
  41445. },
  41446. mouth: {
  41447. height: math.unit(4.6, "feet"),
  41448. name: "Mouth",
  41449. image: {
  41450. source: "./media/characters/nilghais/mouth.svg"
  41451. }
  41452. },
  41453. wings: {
  41454. height: math.unit(24, "feet"),
  41455. name: "Wings",
  41456. image: {
  41457. source: "./media/characters/nilghais/wings.svg"
  41458. }
  41459. },
  41460. ass: {
  41461. height: math.unit(6.12, "feet"),
  41462. name: "Ass",
  41463. image: {
  41464. source: "./media/characters/nilghais/ass.svg"
  41465. }
  41466. },
  41467. },
  41468. [
  41469. {
  41470. name: "Normal",
  41471. height: math.unit(9, "feet"),
  41472. default: true
  41473. },
  41474. ]
  41475. ))
  41476. characterMakers.push(() => makeCharacter(
  41477. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41478. {
  41479. regular: {
  41480. height: math.unit(16 + 2/12, "feet"),
  41481. weight: math.unit(2300, "lb"),
  41482. name: "Regular",
  41483. image: {
  41484. source: "./media/characters/zolgar/regular.svg",
  41485. extra: 1246/1004,
  41486. bottom: 124/1370
  41487. }
  41488. },
  41489. boxers: {
  41490. height: math.unit(16 + 2/12, "feet"),
  41491. weight: math.unit(2300, "lb"),
  41492. name: "Boxers",
  41493. image: {
  41494. source: "./media/characters/zolgar/boxers.svg",
  41495. extra: 1246/1004,
  41496. bottom: 124/1370
  41497. }
  41498. },
  41499. armored: {
  41500. height: math.unit(16 + 2/12, "feet"),
  41501. weight: math.unit(2300, "lb"),
  41502. name: "Armored",
  41503. image: {
  41504. source: "./media/characters/zolgar/armored.svg",
  41505. extra: 1246/1004,
  41506. bottom: 124/1370
  41507. }
  41508. },
  41509. goth: {
  41510. height: math.unit(16 + 2/12, "feet"),
  41511. weight: math.unit(2300, "lb"),
  41512. name: "Goth",
  41513. image: {
  41514. source: "./media/characters/zolgar/goth.svg",
  41515. extra: 1246/1004,
  41516. bottom: 124/1370
  41517. }
  41518. },
  41519. },
  41520. [
  41521. {
  41522. name: "Shrunken Down",
  41523. height: math.unit(9 + 2/12, "feet")
  41524. },
  41525. {
  41526. name: "Normal",
  41527. height: math.unit(16 + 2/12, "feet"),
  41528. default: true
  41529. },
  41530. ]
  41531. ))
  41532. characterMakers.push(() => makeCharacter(
  41533. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41534. {
  41535. front: {
  41536. height: math.unit(6, "feet"),
  41537. weight: math.unit(168, "lb"),
  41538. name: "Front",
  41539. image: {
  41540. source: "./media/characters/luca/front.svg",
  41541. extra: 841/667,
  41542. bottom: 102/943
  41543. }
  41544. },
  41545. },
  41546. [
  41547. {
  41548. name: "Normal",
  41549. height: math.unit(6, "feet"),
  41550. default: true
  41551. },
  41552. ]
  41553. ))
  41554. characterMakers.push(() => makeCharacter(
  41555. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41556. {
  41557. side: {
  41558. height: math.unit(7 + 3/12, "feet"),
  41559. weight: math.unit(312, "lb"),
  41560. name: "Side",
  41561. image: {
  41562. source: "./media/characters/zezo/side.svg",
  41563. extra: 1192/1067,
  41564. bottom: 63/1255
  41565. }
  41566. },
  41567. },
  41568. [
  41569. {
  41570. name: "Normal",
  41571. height: math.unit(7 + 3/12, "feet"),
  41572. default: true
  41573. },
  41574. ]
  41575. ))
  41576. characterMakers.push(() => makeCharacter(
  41577. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41578. {
  41579. front: {
  41580. height: math.unit(5 + 5/12, "feet"),
  41581. weight: math.unit(170, "lb"),
  41582. name: "Front",
  41583. image: {
  41584. source: "./media/characters/mayso/front.svg",
  41585. extra: 1215/1108,
  41586. bottom: 16/1231
  41587. }
  41588. },
  41589. },
  41590. [
  41591. {
  41592. name: "Normal",
  41593. height: math.unit(5 + 5/12, "feet"),
  41594. default: true
  41595. },
  41596. ]
  41597. ))
  41598. characterMakers.push(() => makeCharacter(
  41599. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41600. {
  41601. front: {
  41602. height: math.unit(4 + 3/12, "feet"),
  41603. weight: math.unit(80, "lb"),
  41604. name: "Front",
  41605. image: {
  41606. source: "./media/characters/hess/front.svg",
  41607. extra: 1200/1123,
  41608. bottom: 16/1216
  41609. }
  41610. },
  41611. },
  41612. [
  41613. {
  41614. name: "Normal",
  41615. height: math.unit(4 + 3/12, "feet"),
  41616. default: true
  41617. },
  41618. ]
  41619. ))
  41620. characterMakers.push(() => makeCharacter(
  41621. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  41622. {
  41623. front: {
  41624. height: math.unit(1.9, "meters"),
  41625. name: "Front",
  41626. image: {
  41627. source: "./media/characters/ashgar/front.svg",
  41628. extra: 1177/1146,
  41629. bottom: 99/1276
  41630. }
  41631. },
  41632. back: {
  41633. height: math.unit(1.9, "meters"),
  41634. name: "Back",
  41635. image: {
  41636. source: "./media/characters/ashgar/back.svg",
  41637. extra: 1201/1183,
  41638. bottom: 53/1254
  41639. }
  41640. },
  41641. feral: {
  41642. height: math.unit(1.4, "meters"),
  41643. name: "Feral",
  41644. image: {
  41645. source: "./media/characters/ashgar/feral.svg",
  41646. extra: 370/345,
  41647. bottom: 45/415
  41648. }
  41649. },
  41650. },
  41651. [
  41652. {
  41653. name: "Normal",
  41654. height: math.unit(1.9, "meters"),
  41655. default: true
  41656. },
  41657. ]
  41658. ))
  41659. characterMakers.push(() => makeCharacter(
  41660. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  41661. {
  41662. regular: {
  41663. height: math.unit(6, "feet"),
  41664. weight: math.unit(220, "lb"),
  41665. name: "Regular",
  41666. image: {
  41667. source: "./media/characters/phillip/regular.svg",
  41668. extra: 1373/1277,
  41669. bottom: 75/1448
  41670. }
  41671. },
  41672. dressed: {
  41673. height: math.unit(6, "feet"),
  41674. weight: math.unit(220, "lb"),
  41675. name: "Dressed",
  41676. image: {
  41677. source: "./media/characters/phillip/dressed.svg",
  41678. extra: 1373/1277,
  41679. bottom: 75/1448
  41680. }
  41681. },
  41682. paw: {
  41683. height: math.unit(1.44, "feet"),
  41684. name: "Paw",
  41685. image: {
  41686. source: "./media/characters/phillip/paw.svg"
  41687. }
  41688. },
  41689. },
  41690. [
  41691. {
  41692. name: "Normal",
  41693. height: math.unit(6, "feet"),
  41694. default: true
  41695. },
  41696. ]
  41697. ))
  41698. characterMakers.push(() => makeCharacter(
  41699. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  41700. {
  41701. side: {
  41702. height: math.unit(42, "feet"),
  41703. name: "Side",
  41704. image: {
  41705. source: "./media/characters/uvula/side.svg",
  41706. extra: 683/586,
  41707. bottom: 60/743
  41708. }
  41709. },
  41710. front: {
  41711. height: math.unit(42, "feet"),
  41712. name: "Front",
  41713. image: {
  41714. source: "./media/characters/uvula/front.svg",
  41715. extra: 705/613,
  41716. bottom: 54/759
  41717. }
  41718. },
  41719. maw: {
  41720. height: math.unit(23.5, "feet"),
  41721. name: "Maw",
  41722. image: {
  41723. source: "./media/characters/uvula/maw.svg"
  41724. }
  41725. },
  41726. },
  41727. [
  41728. {
  41729. name: "Original Size",
  41730. height: math.unit(14, "inches")
  41731. },
  41732. {
  41733. name: "Human Size",
  41734. height: math.unit(6, "feet")
  41735. },
  41736. {
  41737. name: "Big",
  41738. height: math.unit(42, "feet"),
  41739. default: true
  41740. },
  41741. {
  41742. name: "Bigger",
  41743. height: math.unit(100, "feet")
  41744. },
  41745. ]
  41746. ))
  41747. characterMakers.push(() => makeCharacter(
  41748. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  41749. {
  41750. front: {
  41751. height: math.unit(5 + 11/12, "feet"),
  41752. name: "Front",
  41753. image: {
  41754. source: "./media/characters/lannah/front.svg",
  41755. extra: 1208/1113,
  41756. bottom: 97/1305
  41757. }
  41758. },
  41759. },
  41760. [
  41761. {
  41762. name: "Normal",
  41763. height: math.unit(5 + 11/12, "feet"),
  41764. default: true
  41765. },
  41766. ]
  41767. ))
  41768. characterMakers.push(() => makeCharacter(
  41769. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  41770. {
  41771. front: {
  41772. height: math.unit(6 + 3/12, "feet"),
  41773. weight: math.unit(3.5, "tons"),
  41774. name: "Front",
  41775. image: {
  41776. source: "./media/characters/emberflame/front.svg",
  41777. extra: 1198/672,
  41778. bottom: 82/1280
  41779. }
  41780. },
  41781. side: {
  41782. height: math.unit(6 + 3/12, "feet"),
  41783. weight: math.unit(3.5, "tons"),
  41784. name: "Side",
  41785. image: {
  41786. source: "./media/characters/emberflame/side.svg",
  41787. extra: 938/527,
  41788. bottom: 56/994
  41789. }
  41790. },
  41791. },
  41792. [
  41793. {
  41794. name: "Normal",
  41795. height: math.unit(6 + 3/12, "feet"),
  41796. default: true
  41797. },
  41798. ]
  41799. ))
  41800. characterMakers.push(() => makeCharacter(
  41801. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  41802. {
  41803. side: {
  41804. height: math.unit(17.5, "feet"),
  41805. weight: math.unit(35, "tons"),
  41806. name: "Side",
  41807. image: {
  41808. source: "./media/characters/sophie-ambrose/side.svg",
  41809. extra: 1573/1242,
  41810. bottom: 71/1644
  41811. }
  41812. },
  41813. maw: {
  41814. height: math.unit(7.4, "feet"),
  41815. name: "Maw",
  41816. image: {
  41817. source: "./media/characters/sophie-ambrose/maw.svg"
  41818. }
  41819. },
  41820. },
  41821. [
  41822. {
  41823. name: "Normal",
  41824. height: math.unit(17.5, "feet"),
  41825. default: true
  41826. },
  41827. ]
  41828. ))
  41829. characterMakers.push(() => makeCharacter(
  41830. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  41831. {
  41832. front: {
  41833. height: math.unit(280, "feet"),
  41834. weight: math.unit(550, "tons"),
  41835. name: "Front",
  41836. image: {
  41837. source: "./media/characters/king-mugi/front.svg",
  41838. extra: 1102/947,
  41839. bottom: 104/1206
  41840. }
  41841. },
  41842. },
  41843. [
  41844. {
  41845. name: "King Mugi",
  41846. height: math.unit(280, "feet"),
  41847. default: true
  41848. },
  41849. ]
  41850. ))
  41851. characterMakers.push(() => makeCharacter(
  41852. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  41853. {
  41854. front: {
  41855. height: math.unit(64, "meters"),
  41856. name: "Front",
  41857. image: {
  41858. source: "./media/characters/nova-fox/front.svg",
  41859. extra: 1310/1246,
  41860. bottom: 65/1375
  41861. }
  41862. },
  41863. },
  41864. [
  41865. {
  41866. name: "Macro",
  41867. height: math.unit(64, "meters"),
  41868. default: true
  41869. },
  41870. ]
  41871. ))
  41872. characterMakers.push(() => makeCharacter(
  41873. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  41874. {
  41875. front: {
  41876. height: math.unit(6 + 3/12, "feet"),
  41877. weight: math.unit(170, "lb"),
  41878. name: "Front",
  41879. image: {
  41880. source: "./media/characters/sam-bat/front.svg",
  41881. extra: 1601/1411,
  41882. bottom: 125/1726
  41883. }
  41884. },
  41885. back: {
  41886. height: math.unit(6 + 3/12, "feet"),
  41887. weight: math.unit(170, "lb"),
  41888. name: "Back",
  41889. image: {
  41890. source: "./media/characters/sam-bat/back.svg",
  41891. extra: 1577/1405,
  41892. bottom: 58/1635
  41893. }
  41894. },
  41895. },
  41896. [
  41897. {
  41898. name: "Normal",
  41899. height: math.unit(6 + 3/12, "feet"),
  41900. default: true
  41901. },
  41902. ]
  41903. ))
  41904. characterMakers.push(() => makeCharacter(
  41905. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  41906. {
  41907. front: {
  41908. height: math.unit(59, "feet"),
  41909. weight: math.unit(40000, "lb"),
  41910. name: "Front",
  41911. image: {
  41912. source: "./media/characters/inari/front.svg",
  41913. extra: 1884/1350,
  41914. bottom: 95/1979
  41915. }
  41916. },
  41917. },
  41918. [
  41919. {
  41920. name: "Gigantamax",
  41921. height: math.unit(59, "feet"),
  41922. default: true
  41923. },
  41924. ]
  41925. ))
  41926. characterMakers.push(() => makeCharacter(
  41927. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  41928. {
  41929. front: {
  41930. height: math.unit(5 + 8/12, "feet"),
  41931. name: "Front",
  41932. image: {
  41933. source: "./media/characters/elizabeth/front.svg",
  41934. extra: 1395/1298,
  41935. bottom: 54/1449
  41936. }
  41937. },
  41938. mouth: {
  41939. height: math.unit(1.97, "feet"),
  41940. name: "Mouth",
  41941. image: {
  41942. source: "./media/characters/elizabeth/mouth.svg"
  41943. }
  41944. },
  41945. foot: {
  41946. height: math.unit(1.17, "feet"),
  41947. name: "Foot",
  41948. image: {
  41949. source: "./media/characters/elizabeth/foot.svg"
  41950. }
  41951. },
  41952. },
  41953. [
  41954. {
  41955. name: "Normal",
  41956. height: math.unit(5 + 8/12, "feet"),
  41957. default: true
  41958. },
  41959. {
  41960. name: "Minimacro",
  41961. height: math.unit(18, "feet")
  41962. },
  41963. {
  41964. name: "Macro",
  41965. height: math.unit(180, "feet")
  41966. },
  41967. ]
  41968. ))
  41969. characterMakers.push(() => makeCharacter(
  41970. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  41971. {
  41972. front: {
  41973. height: math.unit(5 + 2/12, "feet"),
  41974. name: "Front",
  41975. image: {
  41976. source: "./media/characters/october-gossamer/front.svg",
  41977. extra: 505/454,
  41978. bottom: 7/512
  41979. }
  41980. },
  41981. back: {
  41982. height: math.unit(5 + 2/12, "feet"),
  41983. name: "Back",
  41984. image: {
  41985. source: "./media/characters/october-gossamer/back.svg",
  41986. extra: 501/454,
  41987. bottom: 11/512
  41988. }
  41989. },
  41990. },
  41991. [
  41992. {
  41993. name: "Normal",
  41994. height: math.unit(5 + 2/12, "feet"),
  41995. default: true
  41996. },
  41997. ]
  41998. ))
  41999. characterMakers.push(() => makeCharacter(
  42000. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  42001. {
  42002. front: {
  42003. height: math.unit(5, "feet"),
  42004. name: "Front",
  42005. image: {
  42006. source: "./media/characters/epiglottis/front.svg",
  42007. extra: 923/849,
  42008. bottom: 17/940
  42009. }
  42010. },
  42011. },
  42012. [
  42013. {
  42014. name: "Original Size",
  42015. height: math.unit(10, "inches")
  42016. },
  42017. {
  42018. name: "Human Size",
  42019. height: math.unit(5, "feet"),
  42020. default: true
  42021. },
  42022. {
  42023. name: "Big",
  42024. height: math.unit(25, "feet")
  42025. },
  42026. {
  42027. name: "Bigger",
  42028. height: math.unit(50, "feet")
  42029. },
  42030. {
  42031. name: "oh lawd",
  42032. height: math.unit(75, "feet")
  42033. },
  42034. ]
  42035. ))
  42036. characterMakers.push(() => makeCharacter(
  42037. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  42038. {
  42039. front: {
  42040. height: math.unit(2 + 4/12, "feet"),
  42041. weight: math.unit(60, "lb"),
  42042. name: "Front",
  42043. image: {
  42044. source: "./media/characters/lerm/front.svg",
  42045. extra: 796/790,
  42046. bottom: 79/875
  42047. }
  42048. },
  42049. },
  42050. [
  42051. {
  42052. name: "Normal",
  42053. height: math.unit(2 + 4/12, "feet"),
  42054. default: true
  42055. },
  42056. ]
  42057. ))
  42058. characterMakers.push(() => makeCharacter(
  42059. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  42060. {
  42061. front: {
  42062. height: math.unit(5.5, "feet"),
  42063. weight: math.unit(130, "lb"),
  42064. name: "Front",
  42065. image: {
  42066. source: "./media/characters/xena-nebadon/front.svg",
  42067. extra: 1828/1730,
  42068. bottom: 79/1907
  42069. }
  42070. },
  42071. },
  42072. [
  42073. {
  42074. name: "Tiny Puppy",
  42075. height: math.unit(3, "inches")
  42076. },
  42077. {
  42078. name: "Normal",
  42079. height: math.unit(5.5, "feet"),
  42080. default: true
  42081. },
  42082. {
  42083. name: "Lotta Lady",
  42084. height: math.unit(12, "feet")
  42085. },
  42086. {
  42087. name: "Pretty Big",
  42088. height: math.unit(100, "feet")
  42089. },
  42090. {
  42091. name: "Big",
  42092. height: math.unit(500, "feet")
  42093. },
  42094. {
  42095. name: "Skyscraper Toys",
  42096. height: math.unit(2500, "feet")
  42097. },
  42098. {
  42099. name: "Plane Catcher",
  42100. height: math.unit(8, "miles")
  42101. },
  42102. {
  42103. name: "Planet Toys",
  42104. height: math.unit(15, "earths")
  42105. },
  42106. {
  42107. name: "Stardust",
  42108. height: math.unit(0.25, "galaxies")
  42109. },
  42110. {
  42111. name: "Snacks",
  42112. height: math.unit(70, "universes")
  42113. },
  42114. ]
  42115. ))
  42116. characterMakers.push(() => makeCharacter(
  42117. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42118. {
  42119. front: {
  42120. height: math.unit(1.6, "meters"),
  42121. weight: math.unit(60, "kg"),
  42122. name: "Front",
  42123. image: {
  42124. source: "./media/characters/bounty/front.svg",
  42125. extra: 1426/1308,
  42126. bottom: 15/1441
  42127. }
  42128. },
  42129. back: {
  42130. height: math.unit(1.6, "meters"),
  42131. weight: math.unit(60, "kg"),
  42132. name: "Back",
  42133. image: {
  42134. source: "./media/characters/bounty/back.svg",
  42135. extra: 1417/1307,
  42136. bottom: 8/1425
  42137. }
  42138. },
  42139. },
  42140. [
  42141. {
  42142. name: "Normal",
  42143. height: math.unit(1.6, "meters"),
  42144. default: true
  42145. },
  42146. {
  42147. name: "Macro",
  42148. height: math.unit(300, "meters")
  42149. },
  42150. ]
  42151. ))
  42152. characterMakers.push(() => makeCharacter(
  42153. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42154. {
  42155. front: {
  42156. height: math.unit(2 + 8/12, "feet"),
  42157. weight: math.unit(15, "lb"),
  42158. name: "Front",
  42159. image: {
  42160. source: "./media/characters/mochi/front.svg",
  42161. extra: 1022/852,
  42162. bottom: 435/1457
  42163. }
  42164. },
  42165. back: {
  42166. height: math.unit(2 + 8/12, "feet"),
  42167. weight: math.unit(15, "lb"),
  42168. name: "Back",
  42169. image: {
  42170. source: "./media/characters/mochi/back.svg",
  42171. extra: 1335/1119,
  42172. bottom: 39/1374
  42173. }
  42174. },
  42175. bird: {
  42176. height: math.unit(2 + 8/12, "feet"),
  42177. weight: math.unit(15, "lb"),
  42178. name: "Bird",
  42179. image: {
  42180. source: "./media/characters/mochi/bird.svg",
  42181. extra: 1251/1113,
  42182. bottom: 178/1429
  42183. }
  42184. },
  42185. kaiju: {
  42186. height: math.unit(154, "feet"),
  42187. weight: math.unit(1e7, "lb"),
  42188. name: "Kaiju",
  42189. image: {
  42190. source: "./media/characters/mochi/kaiju.svg",
  42191. extra: 460/324,
  42192. bottom: 40/500
  42193. }
  42194. },
  42195. head: {
  42196. height: math.unit(1.21, "feet"),
  42197. name: "Head",
  42198. image: {
  42199. source: "./media/characters/mochi/head.svg"
  42200. }
  42201. },
  42202. alternateTail: {
  42203. height: math.unit(2 + 8/12, "feet"),
  42204. weight: math.unit(45, "lb"),
  42205. name: "Alternate Tail",
  42206. image: {
  42207. source: "./media/characters/mochi/alternate-tail.svg",
  42208. extra: 139/76,
  42209. bottom: 45/184
  42210. }
  42211. },
  42212. },
  42213. [
  42214. {
  42215. name: "Micro",
  42216. height: math.unit(2, "inches")
  42217. },
  42218. {
  42219. name: "Normal",
  42220. height: math.unit(2 + 8/12, "feet"),
  42221. default: true
  42222. },
  42223. {
  42224. name: "Macro",
  42225. height: math.unit(106, "feet")
  42226. },
  42227. ]
  42228. ))
  42229. characterMakers.push(() => makeCharacter(
  42230. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42231. {
  42232. front: {
  42233. height: math.unit(5.67, "feet"),
  42234. weight: math.unit(135, "lb"),
  42235. name: "Front",
  42236. image: {
  42237. source: "./media/characters/sarel/front.svg",
  42238. extra: 865/788,
  42239. bottom: 97/962
  42240. }
  42241. },
  42242. back: {
  42243. height: math.unit(5.67, "feet"),
  42244. weight: math.unit(135, "lb"),
  42245. name: "Back",
  42246. image: {
  42247. source: "./media/characters/sarel/back.svg",
  42248. extra: 857/777,
  42249. bottom: 32/889
  42250. }
  42251. },
  42252. chozoan: {
  42253. height: math.unit(5.67, "feet"),
  42254. weight: math.unit(135, "lb"),
  42255. name: "Chozoan",
  42256. image: {
  42257. source: "./media/characters/sarel/chozoan.svg",
  42258. extra: 865/788,
  42259. bottom: 97/962
  42260. }
  42261. },
  42262. current: {
  42263. height: math.unit(5.67, "feet"),
  42264. weight: math.unit(135, "lb"),
  42265. name: "Current",
  42266. image: {
  42267. source: "./media/characters/sarel/current.svg",
  42268. extra: 865/788,
  42269. bottom: 97/962
  42270. }
  42271. },
  42272. head: {
  42273. height: math.unit(1.77, "feet"),
  42274. name: "Head",
  42275. image: {
  42276. source: "./media/characters/sarel/head.svg"
  42277. }
  42278. },
  42279. claws: {
  42280. height: math.unit(1.8, "feet"),
  42281. name: "Claws",
  42282. image: {
  42283. source: "./media/characters/sarel/claws.svg"
  42284. }
  42285. },
  42286. clawsAlt: {
  42287. height: math.unit(1.8, "feet"),
  42288. name: "Claws-alt",
  42289. image: {
  42290. source: "./media/characters/sarel/claws-alt.svg"
  42291. }
  42292. },
  42293. },
  42294. [
  42295. {
  42296. name: "Normal",
  42297. height: math.unit(5.67, "feet"),
  42298. default: true
  42299. },
  42300. ]
  42301. ))
  42302. characterMakers.push(() => makeCharacter(
  42303. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42304. {
  42305. front: {
  42306. height: math.unit(5500, "feet"),
  42307. name: "Front",
  42308. image: {
  42309. source: "./media/characters/alyonia/front.svg",
  42310. extra: 1200/1135,
  42311. bottom: 29/1229
  42312. }
  42313. },
  42314. back: {
  42315. height: math.unit(5500, "feet"),
  42316. name: "Back",
  42317. image: {
  42318. source: "./media/characters/alyonia/back.svg",
  42319. extra: 1205/1138,
  42320. bottom: 10/1215
  42321. }
  42322. },
  42323. },
  42324. [
  42325. {
  42326. name: "Small",
  42327. height: math.unit(10, "feet")
  42328. },
  42329. {
  42330. name: "Macro",
  42331. height: math.unit(500, "feet")
  42332. },
  42333. {
  42334. name: "Mega Macro",
  42335. height: math.unit(5500, "feet"),
  42336. default: true
  42337. },
  42338. {
  42339. name: "Mega Macro+",
  42340. height: math.unit(500000, "feet")
  42341. },
  42342. {
  42343. name: "Giga Macro",
  42344. height: math.unit(3000, "miles")
  42345. },
  42346. {
  42347. name: "Tera Macro",
  42348. height: math.unit(2.8e6, "miles")
  42349. },
  42350. {
  42351. name: "Galactic",
  42352. height: math.unit(120000, "lightyears")
  42353. },
  42354. ]
  42355. ))
  42356. characterMakers.push(() => makeCharacter(
  42357. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42358. {
  42359. werewolf: {
  42360. height: math.unit(8, "feet"),
  42361. weight: math.unit(425, "lb"),
  42362. name: "Werewolf",
  42363. image: {
  42364. source: "./media/characters/autumn/werewolf.svg",
  42365. extra: 2154/2031,
  42366. bottom: 160/2314
  42367. }
  42368. },
  42369. human: {
  42370. height: math.unit(5 + 8/12, "feet"),
  42371. weight: math.unit(150, "lb"),
  42372. name: "Human",
  42373. image: {
  42374. source: "./media/characters/autumn/human.svg",
  42375. extra: 1200/1149,
  42376. bottom: 30/1230
  42377. }
  42378. },
  42379. },
  42380. [
  42381. {
  42382. name: "Normal",
  42383. height: math.unit(8, "feet"),
  42384. default: true
  42385. },
  42386. ]
  42387. ))
  42388. characterMakers.push(() => makeCharacter(
  42389. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42390. {
  42391. front: {
  42392. height: math.unit(8 + 5/12, "feet"),
  42393. weight: math.unit(825, "lb"),
  42394. name: "Front",
  42395. image: {
  42396. source: "./media/characters/cobalt-charizard/front.svg",
  42397. extra: 1268/1155,
  42398. bottom: 122/1390
  42399. }
  42400. },
  42401. side: {
  42402. height: math.unit(8 + 5/12, "feet"),
  42403. weight: math.unit(825, "lb"),
  42404. name: "Side",
  42405. image: {
  42406. source: "./media/characters/cobalt-charizard/side.svg",
  42407. extra: 1348/1257,
  42408. bottom: 58/1406
  42409. }
  42410. },
  42411. gMax: {
  42412. height: math.unit(134 + 11/12, "feet"),
  42413. name: "G-Max",
  42414. image: {
  42415. source: "./media/characters/cobalt-charizard/g-max.svg",
  42416. extra: 1835/1541,
  42417. bottom: 151/1986
  42418. }
  42419. },
  42420. },
  42421. [
  42422. {
  42423. name: "Normal",
  42424. height: math.unit(8 + 5/12, "feet"),
  42425. default: true
  42426. },
  42427. ]
  42428. ))
  42429. characterMakers.push(() => makeCharacter(
  42430. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42431. {
  42432. front: {
  42433. height: math.unit(6 + 3/12, "feet"),
  42434. weight: math.unit(210, "lb"),
  42435. name: "Front",
  42436. image: {
  42437. source: "./media/characters/stella/front.svg",
  42438. extra: 3549/3335,
  42439. bottom: 51/3600
  42440. }
  42441. },
  42442. },
  42443. [
  42444. {
  42445. name: "Normal",
  42446. height: math.unit(6 + 3/12, "feet"),
  42447. default: true
  42448. },
  42449. ]
  42450. ))
  42451. characterMakers.push(() => makeCharacter(
  42452. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  42453. {
  42454. front: {
  42455. height: math.unit(5, "feet"),
  42456. weight: math.unit(90, "lb"),
  42457. name: "Front",
  42458. image: {
  42459. source: "./media/characters/riley-bishop/front.svg",
  42460. extra: 1450/1428,
  42461. bottom: 152/1602
  42462. }
  42463. },
  42464. },
  42465. [
  42466. {
  42467. name: "Normal",
  42468. height: math.unit(5, "feet"),
  42469. default: true
  42470. },
  42471. ]
  42472. ))
  42473. characterMakers.push(() => makeCharacter(
  42474. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  42475. {
  42476. side: {
  42477. height: math.unit(8 + 2/12, "feet"),
  42478. weight: math.unit(500, "kg"),
  42479. name: "Side",
  42480. image: {
  42481. source: "./media/characters/theo-arcanine/side.svg",
  42482. extra: 1342/1074,
  42483. bottom: 111/1453
  42484. }
  42485. },
  42486. },
  42487. [
  42488. {
  42489. name: "Normal",
  42490. height: math.unit(8 + 2/12, "feet"),
  42491. default: true
  42492. },
  42493. ]
  42494. ))
  42495. characterMakers.push(() => makeCharacter(
  42496. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  42497. {
  42498. front: {
  42499. height: math.unit(4, "feet"),
  42500. name: "Front",
  42501. image: {
  42502. source: "./media/characters/kali/front.svg",
  42503. extra: 1921/1357,
  42504. bottom: 70/1991
  42505. }
  42506. },
  42507. },
  42508. [
  42509. {
  42510. name: "Normal",
  42511. height: math.unit(4, "feet"),
  42512. default: true
  42513. },
  42514. {
  42515. name: "Macro",
  42516. height: math.unit(32, "meters")
  42517. },
  42518. {
  42519. name: "Macro+",
  42520. height: math.unit(150, "meters")
  42521. },
  42522. {
  42523. name: "Megamacro",
  42524. height: math.unit(7500, "meters")
  42525. },
  42526. {
  42527. name: "Megamacro+",
  42528. height: math.unit(80, "kilometers")
  42529. },
  42530. ]
  42531. ))
  42532. characterMakers.push(() => makeCharacter(
  42533. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  42534. {
  42535. side: {
  42536. height: math.unit(5 + 11/12, "feet"),
  42537. weight: math.unit(236, "lb"),
  42538. name: "Side",
  42539. image: {
  42540. source: "./media/characters/gapp/side.svg",
  42541. extra: 775/340,
  42542. bottom: 58/833
  42543. }
  42544. },
  42545. mouth: {
  42546. height: math.unit(2.98, "feet"),
  42547. name: "Mouth",
  42548. image: {
  42549. source: "./media/characters/gapp/mouth.svg"
  42550. }
  42551. },
  42552. },
  42553. [
  42554. {
  42555. name: "Normal",
  42556. height: math.unit(5 + 1/12, "feet"),
  42557. default: true
  42558. },
  42559. ]
  42560. ))
  42561. characterMakers.push(() => makeCharacter(
  42562. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  42563. {
  42564. front: {
  42565. height: math.unit(6, "feet"),
  42566. name: "Front",
  42567. image: {
  42568. source: "./media/characters/persephone/front.svg",
  42569. extra: 1895/1717,
  42570. bottom: 96/1991
  42571. }
  42572. },
  42573. back: {
  42574. height: math.unit(6, "feet"),
  42575. name: "Back",
  42576. image: {
  42577. source: "./media/characters/persephone/back.svg",
  42578. extra: 1868/1679,
  42579. bottom: 26/1894
  42580. }
  42581. },
  42582. casual: {
  42583. height: math.unit(6, "feet"),
  42584. name: "Casual",
  42585. image: {
  42586. source: "./media/characters/persephone/casual.svg",
  42587. extra: 1713/1541,
  42588. bottom: 76/1789
  42589. }
  42590. },
  42591. },
  42592. [
  42593. {
  42594. name: "Human Size",
  42595. height: math.unit(6, "feet")
  42596. },
  42597. {
  42598. name: "Big Steppy",
  42599. height: math.unit(600, "meters"),
  42600. default: true
  42601. },
  42602. {
  42603. name: "Galaxy Brain",
  42604. height: math.unit(1, "zettameter")
  42605. },
  42606. ]
  42607. ))
  42608. characterMakers.push(() => makeCharacter(
  42609. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  42610. {
  42611. front: {
  42612. height: math.unit(1.85, "meters"),
  42613. name: "Front",
  42614. image: {
  42615. source: "./media/characters/riley-foxthing/front.svg",
  42616. extra: 1495/1354,
  42617. bottom: 122/1617
  42618. }
  42619. },
  42620. frontAlt: {
  42621. height: math.unit(1.85, "meters"),
  42622. name: "Front (Alt)",
  42623. image: {
  42624. source: "./media/characters/riley-foxthing/front-alt.svg",
  42625. extra: 1572/1389,
  42626. bottom: 116/1688
  42627. }
  42628. },
  42629. },
  42630. [
  42631. {
  42632. name: "Normal Sized",
  42633. height: math.unit(1.85, "meters"),
  42634. default: true
  42635. },
  42636. {
  42637. name: "Quite Sizable",
  42638. height: math.unit(5, "meters")
  42639. },
  42640. {
  42641. name: "Rather Large",
  42642. height: math.unit(20, "meters")
  42643. },
  42644. {
  42645. name: "Macro",
  42646. height: math.unit(450, "meters")
  42647. },
  42648. {
  42649. name: "Giga",
  42650. height: math.unit(5, "km")
  42651. },
  42652. ]
  42653. ))
  42654. characterMakers.push(() => makeCharacter(
  42655. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  42656. {
  42657. front: {
  42658. height: math.unit(6, "feet"),
  42659. weight: math.unit(200, "lb"),
  42660. name: "Front",
  42661. image: {
  42662. source: "./media/characters/blizzard/front.svg",
  42663. extra: 1136/990,
  42664. bottom: 136/1272
  42665. }
  42666. },
  42667. back: {
  42668. height: math.unit(6, "feet"),
  42669. weight: math.unit(200, "lb"),
  42670. name: "Back",
  42671. image: {
  42672. source: "./media/characters/blizzard/back.svg",
  42673. extra: 1175/1034,
  42674. bottom: 97/1272
  42675. }
  42676. },
  42677. sitting: {
  42678. height: math.unit(3.725, "feet"),
  42679. weight: math.unit(200, "lb"),
  42680. name: "Sitting",
  42681. image: {
  42682. source: "./media/characters/blizzard/sitting.svg",
  42683. extra: 581/485,
  42684. bottom: 90/671
  42685. }
  42686. },
  42687. frontWizard: {
  42688. height: math.unit(7.9, "feet"),
  42689. weight: math.unit(200, "lb"),
  42690. name: "Front (Wizard)",
  42691. image: {
  42692. source: "./media/characters/blizzard/front-wizard.svg"
  42693. }
  42694. },
  42695. backWizard: {
  42696. height: math.unit(7.9, "feet"),
  42697. weight: math.unit(200, "lb"),
  42698. name: "Back (Wizard)",
  42699. image: {
  42700. source: "./media/characters/blizzard/back-wizard.svg"
  42701. }
  42702. },
  42703. frontNsfw: {
  42704. height: math.unit(6, "feet"),
  42705. weight: math.unit(200, "lb"),
  42706. name: "Front (NSFW)",
  42707. image: {
  42708. source: "./media/characters/blizzard/front-nsfw.svg",
  42709. extra: 1136/990,
  42710. bottom: 136/1272
  42711. }
  42712. },
  42713. backNsfw: {
  42714. height: math.unit(6, "feet"),
  42715. weight: math.unit(200, "lb"),
  42716. name: "Back (NSFW)",
  42717. image: {
  42718. source: "./media/characters/blizzard/back-nsfw.svg",
  42719. extra: 1175/1034,
  42720. bottom: 97/1272
  42721. }
  42722. },
  42723. sittingNsfw: {
  42724. height: math.unit(3.725, "feet"),
  42725. weight: math.unit(200, "lb"),
  42726. name: "Sitting (NSFW)",
  42727. image: {
  42728. source: "./media/characters/blizzard/sitting-nsfw.svg",
  42729. extra: 581/485,
  42730. bottom: 90/671
  42731. }
  42732. },
  42733. wizardFrontNsfw: {
  42734. height: math.unit(7.9, "feet"),
  42735. weight: math.unit(200, "lb"),
  42736. name: "Wizard (Front, NSFW)",
  42737. image: {
  42738. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  42739. }
  42740. },
  42741. },
  42742. [
  42743. {
  42744. name: "Normal",
  42745. height: math.unit(6, "feet"),
  42746. default: true
  42747. },
  42748. ]
  42749. ))
  42750. characterMakers.push(() => makeCharacter(
  42751. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  42752. {
  42753. front: {
  42754. height: math.unit(5 + 2/12, "feet"),
  42755. name: "Front",
  42756. image: {
  42757. source: "./media/characters/lumi/front.svg",
  42758. extra: 1328/1268,
  42759. bottom: 103/1431
  42760. }
  42761. },
  42762. back: {
  42763. height: math.unit(5 + 2/12, "feet"),
  42764. name: "Back",
  42765. image: {
  42766. source: "./media/characters/lumi/back.svg",
  42767. extra: 1381/1327,
  42768. bottom: 43/1424
  42769. }
  42770. },
  42771. },
  42772. [
  42773. {
  42774. name: "Normal",
  42775. height: math.unit(5 + 2/12, "feet"),
  42776. default: true
  42777. },
  42778. ]
  42779. ))
  42780. characterMakers.push(() => makeCharacter(
  42781. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  42782. {
  42783. front: {
  42784. height: math.unit(5 + 9/12, "feet"),
  42785. name: "Front",
  42786. image: {
  42787. source: "./media/characters/aliya-cotton/front.svg",
  42788. extra: 577/564,
  42789. bottom: 29/606
  42790. }
  42791. },
  42792. },
  42793. [
  42794. {
  42795. name: "Normal",
  42796. height: math.unit(5 + 9/12, "feet"),
  42797. default: true
  42798. },
  42799. ]
  42800. ))
  42801. characterMakers.push(() => makeCharacter(
  42802. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  42803. {
  42804. front: {
  42805. height: math.unit(2.7, "meters"),
  42806. weight: math.unit(25000, "lb"),
  42807. name: "Front",
  42808. image: {
  42809. source: "./media/characters/noah-luxray/front.svg",
  42810. extra: 1644/825,
  42811. bottom: 339/1983
  42812. }
  42813. },
  42814. side: {
  42815. height: math.unit(2.97, "meters"),
  42816. weight: math.unit(25000, "lb"),
  42817. name: "Side",
  42818. image: {
  42819. source: "./media/characters/noah-luxray/side.svg",
  42820. extra: 1319/650,
  42821. bottom: 163/1482
  42822. }
  42823. },
  42824. dick: {
  42825. height: math.unit(7.4, "feet"),
  42826. weight: math.unit(2500, "lb"),
  42827. name: "Dick",
  42828. image: {
  42829. source: "./media/characters/noah-luxray/dick.svg"
  42830. }
  42831. },
  42832. dickAlt: {
  42833. height: math.unit(10.83, "feet"),
  42834. weight: math.unit(2500, "lb"),
  42835. name: "Dick-alt",
  42836. image: {
  42837. source: "./media/characters/noah-luxray/dick-alt.svg"
  42838. }
  42839. },
  42840. },
  42841. [
  42842. {
  42843. name: "BIG",
  42844. height: math.unit(2.7, "meters"),
  42845. default: true
  42846. },
  42847. ]
  42848. ))
  42849. characterMakers.push(() => makeCharacter(
  42850. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  42851. {
  42852. standing: {
  42853. height: math.unit(183, "cm"),
  42854. weight: math.unit(68, "kg"),
  42855. name: "Standing",
  42856. image: {
  42857. source: "./media/characters/arion/standing.svg",
  42858. extra: 1869/1807,
  42859. bottom: 93/1962
  42860. }
  42861. },
  42862. reclining: {
  42863. height: math.unit(70.5, "cm"),
  42864. weight: math.unit(68, "lb"),
  42865. name: "Reclining",
  42866. image: {
  42867. source: "./media/characters/arion/reclining.svg",
  42868. extra: 937/870,
  42869. bottom: 63/1000
  42870. }
  42871. },
  42872. },
  42873. [
  42874. {
  42875. name: "Colossus Size, Low",
  42876. height: math.unit(33, "meters"),
  42877. default: true
  42878. },
  42879. {
  42880. name: "Colossus Size, Mid",
  42881. height: math.unit(52, "meters")
  42882. },
  42883. {
  42884. name: "Colossus Size, High",
  42885. height: math.unit(60, "meters")
  42886. },
  42887. {
  42888. name: "Titan Size, Low",
  42889. height: math.unit(91, "meters"),
  42890. },
  42891. {
  42892. name: "Titan Size, Mid",
  42893. height: math.unit(122, "meters")
  42894. },
  42895. {
  42896. name: "Titan Size, High",
  42897. height: math.unit(162, "meters")
  42898. },
  42899. ]
  42900. ))
  42901. characterMakers.push(() => makeCharacter(
  42902. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  42903. {
  42904. front: {
  42905. height: math.unit(53, "meters"),
  42906. name: "Front",
  42907. image: {
  42908. source: "./media/characters/stellar-marbey/front.svg",
  42909. extra: 1913/1805,
  42910. bottom: 92/2005
  42911. }
  42912. },
  42913. back: {
  42914. height: math.unit(53, "meters"),
  42915. name: "Back",
  42916. image: {
  42917. source: "./media/characters/stellar-marbey/back.svg",
  42918. extra: 1960/1851,
  42919. bottom: 28/1988
  42920. }
  42921. },
  42922. mouth: {
  42923. height: math.unit(3.5, "meters"),
  42924. name: "Mouth",
  42925. image: {
  42926. source: "./media/characters/stellar-marbey/mouth.svg"
  42927. }
  42928. },
  42929. },
  42930. [
  42931. {
  42932. name: "Macro",
  42933. height: math.unit(53, "meters"),
  42934. default: true
  42935. },
  42936. ]
  42937. ))
  42938. characterMakers.push(() => makeCharacter(
  42939. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  42940. {
  42941. front: {
  42942. height: math.unit(8 + 1/12, "feet"),
  42943. weight: math.unit(233, "lb"),
  42944. name: "Front",
  42945. image: {
  42946. source: "./media/characters/matsu/front.svg",
  42947. extra: 832/772,
  42948. bottom: 40/872
  42949. }
  42950. },
  42951. back: {
  42952. height: math.unit(8 + 1/12, "feet"),
  42953. weight: math.unit(233, "lb"),
  42954. name: "Back",
  42955. image: {
  42956. source: "./media/characters/matsu/back.svg",
  42957. extra: 839/780,
  42958. bottom: 47/886
  42959. }
  42960. },
  42961. },
  42962. [
  42963. {
  42964. name: "Normal",
  42965. height: math.unit(8 + 1/12, "feet"),
  42966. default: true
  42967. },
  42968. ]
  42969. ))
  42970. characterMakers.push(() => makeCharacter(
  42971. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  42972. {
  42973. front: {
  42974. height: math.unit(4, "feet"),
  42975. weight: math.unit(148, "lb"),
  42976. name: "Front",
  42977. image: {
  42978. source: "./media/characters/thiz/front.svg",
  42979. extra: 1913/1748,
  42980. bottom: 62/1975
  42981. }
  42982. },
  42983. },
  42984. [
  42985. {
  42986. name: "Normal",
  42987. height: math.unit(4, "feet"),
  42988. default: true
  42989. },
  42990. ]
  42991. ))
  42992. characterMakers.push(() => makeCharacter(
  42993. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  42994. {
  42995. front: {
  42996. height: math.unit(7 + 6/12, "feet"),
  42997. weight: math.unit(267, "lb"),
  42998. name: "Front",
  42999. image: {
  43000. source: "./media/characters/marcel/front.svg",
  43001. extra: 1221/1096,
  43002. bottom: 76/1297
  43003. }
  43004. },
  43005. },
  43006. [
  43007. {
  43008. name: "Normal",
  43009. height: math.unit(7 + 6/12, "feet"),
  43010. default: true
  43011. },
  43012. ]
  43013. ))
  43014. characterMakers.push(() => makeCharacter(
  43015. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  43016. {
  43017. side: {
  43018. height: math.unit(42, "meters"),
  43019. name: "Side",
  43020. image: {
  43021. source: "./media/characters/flake/side.svg",
  43022. extra: 1525/1306,
  43023. bottom: 209/1734
  43024. }
  43025. },
  43026. },
  43027. [
  43028. {
  43029. name: "Normal",
  43030. height: math.unit(42, "meters"),
  43031. default: true
  43032. },
  43033. ]
  43034. ))
  43035. characterMakers.push(() => makeCharacter(
  43036. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  43037. {
  43038. dressed: {
  43039. height: math.unit(6 + 4/12, "feet"),
  43040. weight: math.unit(520, "lb"),
  43041. name: "Dressed",
  43042. image: {
  43043. source: "./media/characters/someonne/dressed.svg",
  43044. extra: 1020/1010,
  43045. bottom: 178/1198
  43046. }
  43047. },
  43048. undressed: {
  43049. height: math.unit(6 + 4/12, "feet"),
  43050. weight: math.unit(520, "lb"),
  43051. name: "Undressed",
  43052. image: {
  43053. source: "./media/characters/someonne/undressed.svg",
  43054. extra: 1019/1014,
  43055. bottom: 169/1188
  43056. }
  43057. },
  43058. },
  43059. [
  43060. {
  43061. name: "Normal",
  43062. height: math.unit(6 + 4/12, "feet"),
  43063. default: true
  43064. },
  43065. ]
  43066. ))
  43067. characterMakers.push(() => makeCharacter(
  43068. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  43069. {
  43070. front: {
  43071. height: math.unit(3, "feet"),
  43072. weight: math.unit(30, "lb"),
  43073. name: "Front",
  43074. image: {
  43075. source: "./media/characters/till/front.svg",
  43076. extra: 892/823,
  43077. bottom: 55/947
  43078. }
  43079. },
  43080. },
  43081. [
  43082. {
  43083. name: "Normal",
  43084. height: math.unit(3, "feet"),
  43085. default: true
  43086. },
  43087. ]
  43088. ))
  43089. characterMakers.push(() => makeCharacter(
  43090. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  43091. {
  43092. front: {
  43093. height: math.unit(9 + 8/12, "feet"),
  43094. weight: math.unit(800, "lb"),
  43095. name: "Front",
  43096. image: {
  43097. source: "./media/characters/sydney-heki/front.svg",
  43098. extra: 1360/1300,
  43099. bottom: 22/1382
  43100. }
  43101. },
  43102. back: {
  43103. height: math.unit(9 + 8/12, "feet"),
  43104. weight: math.unit(800, "lb"),
  43105. name: "Back",
  43106. image: {
  43107. source: "./media/characters/sydney-heki/back.svg",
  43108. extra: 1356/1293,
  43109. bottom: 12/1368
  43110. }
  43111. },
  43112. frontDressed: {
  43113. height: math.unit(9 + 8/12, "feet"),
  43114. weight: math.unit(800, "lb"),
  43115. name: "Front-dressed",
  43116. image: {
  43117. source: "./media/characters/sydney-heki/front-dressed.svg",
  43118. extra: 1360/1300,
  43119. bottom: 22/1382
  43120. }
  43121. },
  43122. },
  43123. [
  43124. {
  43125. name: "Normal",
  43126. height: math.unit(9 + 8/12, "feet"),
  43127. default: true
  43128. },
  43129. {
  43130. name: "Macro",
  43131. height: math.unit(500, "feet")
  43132. },
  43133. {
  43134. name: "Megamacro",
  43135. height: math.unit(3.6, "miles")
  43136. },
  43137. ]
  43138. ))
  43139. characterMakers.push(() => makeCharacter(
  43140. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43141. {
  43142. front: {
  43143. height: math.unit(200, "cm"),
  43144. weight: math.unit(250, "lb"),
  43145. name: "Front",
  43146. image: {
  43147. source: "./media/characters/fowler-karlsson/front.svg",
  43148. extra: 897/845,
  43149. bottom: 123/1020
  43150. }
  43151. },
  43152. back: {
  43153. height: math.unit(200, "cm"),
  43154. weight: math.unit(250, "lb"),
  43155. name: "Back",
  43156. image: {
  43157. source: "./media/characters/fowler-karlsson/back.svg",
  43158. extra: 999/944,
  43159. bottom: 26/1025
  43160. }
  43161. },
  43162. dick: {
  43163. height: math.unit(1.92, "feet"),
  43164. weight: math.unit(150, "lb"),
  43165. name: "Dick",
  43166. image: {
  43167. source: "./media/characters/fowler-karlsson/dick.svg"
  43168. }
  43169. },
  43170. },
  43171. [
  43172. {
  43173. name: "Normal",
  43174. height: math.unit(200, "cm"),
  43175. default: true
  43176. },
  43177. {
  43178. name: "Smaller Macro",
  43179. height: math.unit(90, "m")
  43180. },
  43181. {
  43182. name: "Macro",
  43183. height: math.unit(150, "m")
  43184. },
  43185. {
  43186. name: "Bigger Macro",
  43187. height: math.unit(300, "m")
  43188. },
  43189. ]
  43190. ))
  43191. characterMakers.push(() => makeCharacter(
  43192. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43193. {
  43194. side: {
  43195. height: math.unit(8 + 2/12, "feet"),
  43196. weight: math.unit(1, "tonne"),
  43197. name: "Side",
  43198. image: {
  43199. source: "./media/characters/rylide/side.svg",
  43200. extra: 1318/1034,
  43201. bottom: 106/1424
  43202. }
  43203. },
  43204. sitting: {
  43205. height: math.unit(303, "cm"),
  43206. weight: math.unit(1, "tonne"),
  43207. name: "Sitting",
  43208. image: {
  43209. source: "./media/characters/rylide/sitting.svg",
  43210. extra: 1303/1103,
  43211. bottom: 36/1339
  43212. }
  43213. },
  43214. },
  43215. [
  43216. {
  43217. name: "Normal",
  43218. height: math.unit(8 + 2/12, "feet"),
  43219. default: true
  43220. },
  43221. ]
  43222. ))
  43223. characterMakers.push(() => makeCharacter(
  43224. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43225. {
  43226. front: {
  43227. height: math.unit(5 + 10/12, "feet"),
  43228. weight: math.unit(160, "lb"),
  43229. name: "Front",
  43230. image: {
  43231. source: "./media/characters/pudask/front.svg",
  43232. extra: 1616/1590,
  43233. bottom: 161/1777
  43234. }
  43235. },
  43236. },
  43237. [
  43238. {
  43239. name: "Ferret Height",
  43240. height: math.unit(2 + 5/12, "feet")
  43241. },
  43242. {
  43243. name: "Canon Height",
  43244. height: math.unit(5 + 10/12, "feet"),
  43245. default: true
  43246. },
  43247. ]
  43248. ))
  43249. characterMakers.push(() => makeCharacter(
  43250. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43251. {
  43252. front: {
  43253. height: math.unit(3 + 6/12, "feet"),
  43254. weight: math.unit(60, "lb"),
  43255. name: "Front",
  43256. image: {
  43257. source: "./media/characters/ramita/front.svg",
  43258. extra: 1402/1232,
  43259. bottom: 62/1464
  43260. }
  43261. },
  43262. dressed: {
  43263. height: math.unit(3 + 6/12, "feet"),
  43264. weight: math.unit(60, "lb"),
  43265. name: "Dressed",
  43266. image: {
  43267. source: "./media/characters/ramita/dressed.svg",
  43268. extra: 1534/1249,
  43269. bottom: 50/1584
  43270. }
  43271. },
  43272. },
  43273. [
  43274. {
  43275. name: "Normal",
  43276. height: math.unit(3 + 6/12, "feet"),
  43277. default: true
  43278. },
  43279. ]
  43280. ))
  43281. characterMakers.push(() => makeCharacter(
  43282. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43283. {
  43284. front: {
  43285. height: math.unit(8, "feet"),
  43286. name: "Front",
  43287. image: {
  43288. source: "./media/characters/ark/front.svg",
  43289. extra: 772/693,
  43290. bottom: 45/817
  43291. }
  43292. },
  43293. },
  43294. [
  43295. {
  43296. name: "Normal",
  43297. height: math.unit(8, "feet"),
  43298. default: true
  43299. },
  43300. ]
  43301. ))
  43302. characterMakers.push(() => makeCharacter(
  43303. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43304. {
  43305. front: {
  43306. height: math.unit(6, "feet"),
  43307. weight: math.unit(250, "lb"),
  43308. volume: math.unit(5/8, "gallons"),
  43309. name: "Front",
  43310. image: {
  43311. source: "./media/characters/ludwig-horn/front.svg",
  43312. extra: 1782/1635,
  43313. bottom: 96/1878
  43314. }
  43315. },
  43316. back: {
  43317. height: math.unit(6, "feet"),
  43318. weight: math.unit(250, "lb"),
  43319. volume: math.unit(5/8, "gallons"),
  43320. name: "Back",
  43321. image: {
  43322. source: "./media/characters/ludwig-horn/back.svg",
  43323. extra: 1874/1729,
  43324. bottom: 27/1901
  43325. }
  43326. },
  43327. dick: {
  43328. height: math.unit(1.05, "feet"),
  43329. weight: math.unit(15, "lb"),
  43330. volume: math.unit(5/8, "gallons"),
  43331. name: "Dick",
  43332. image: {
  43333. source: "./media/characters/ludwig-horn/dick.svg"
  43334. }
  43335. },
  43336. },
  43337. [
  43338. {
  43339. name: "Small",
  43340. height: math.unit(6, "feet")
  43341. },
  43342. {
  43343. name: "Typical",
  43344. height: math.unit(12, "feet"),
  43345. default: true
  43346. },
  43347. {
  43348. name: "Building",
  43349. height: math.unit(80, "feet")
  43350. },
  43351. {
  43352. name: "Town",
  43353. height: math.unit(800, "feet")
  43354. },
  43355. {
  43356. name: "Kingdom",
  43357. height: math.unit(80000, "feet")
  43358. },
  43359. {
  43360. name: "Planet",
  43361. height: math.unit(8000000, "feet")
  43362. },
  43363. {
  43364. name: "Universe",
  43365. height: math.unit(8000000000, "feet")
  43366. },
  43367. {
  43368. name: "Transcended",
  43369. height: math.unit(8e27, "feet")
  43370. },
  43371. ]
  43372. ))
  43373. characterMakers.push(() => makeCharacter(
  43374. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  43375. {
  43376. front: {
  43377. height: math.unit(5, "feet"),
  43378. weight: math.unit(50, "kg"),
  43379. name: "Front",
  43380. image: {
  43381. source: "./media/characters/biot-avery/front.svg",
  43382. extra: 1295/1232,
  43383. bottom: 86/1381
  43384. }
  43385. },
  43386. },
  43387. [
  43388. {
  43389. name: "Normal",
  43390. height: math.unit(5, "feet"),
  43391. default: true
  43392. },
  43393. ]
  43394. ))
  43395. characterMakers.push(() => makeCharacter(
  43396. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  43397. {
  43398. front: {
  43399. height: math.unit(6, "feet"),
  43400. name: "Front",
  43401. image: {
  43402. source: "./media/characters/kitsune-kiro/front.svg",
  43403. extra: 1270/1158,
  43404. bottom: 42/1312
  43405. }
  43406. },
  43407. frontAlt: {
  43408. height: math.unit(6, "feet"),
  43409. name: "Front-alt",
  43410. image: {
  43411. source: "./media/characters/kitsune-kiro/front-alt.svg",
  43412. extra: 1130/1081,
  43413. bottom: 36/1166
  43414. }
  43415. },
  43416. },
  43417. [
  43418. {
  43419. name: "Smol",
  43420. height: math.unit(3, "feet")
  43421. },
  43422. {
  43423. name: "Normal",
  43424. height: math.unit(6, "feet"),
  43425. default: true
  43426. },
  43427. ]
  43428. ))
  43429. characterMakers.push(() => makeCharacter(
  43430. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  43431. {
  43432. front: {
  43433. height: math.unit(6, "feet"),
  43434. weight: math.unit(125, "lb"),
  43435. name: "Front",
  43436. image: {
  43437. source: "./media/characters/jack-thatcher/front.svg",
  43438. extra: 1474/1370,
  43439. bottom: 26/1500
  43440. }
  43441. },
  43442. back: {
  43443. height: math.unit(6, "feet"),
  43444. weight: math.unit(125, "lb"),
  43445. name: "Back",
  43446. image: {
  43447. source: "./media/characters/jack-thatcher/back.svg",
  43448. extra: 1489/1384,
  43449. bottom: 18/1507
  43450. }
  43451. },
  43452. },
  43453. [
  43454. {
  43455. name: "Normal",
  43456. height: math.unit(6, "feet"),
  43457. default: true
  43458. },
  43459. {
  43460. name: "Macro",
  43461. height: math.unit(75, "feet")
  43462. },
  43463. {
  43464. name: "Macro-er",
  43465. height: math.unit(250, "feet")
  43466. },
  43467. ]
  43468. ))
  43469. characterMakers.push(() => makeCharacter(
  43470. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  43471. {
  43472. front: {
  43473. height: math.unit(7, "feet"),
  43474. weight: math.unit(110, "kg"),
  43475. name: "Front",
  43476. image: {
  43477. source: "./media/characters/max-hyper/front.svg",
  43478. extra: 1969/1881,
  43479. bottom: 49/2018
  43480. }
  43481. },
  43482. },
  43483. [
  43484. {
  43485. name: "Normal",
  43486. height: math.unit(7, "feet"),
  43487. default: true
  43488. },
  43489. ]
  43490. ))
  43491. characterMakers.push(() => makeCharacter(
  43492. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  43493. {
  43494. front: {
  43495. height: math.unit(5 + 5/12, "feet"),
  43496. weight: math.unit(160, "lb"),
  43497. name: "Front",
  43498. image: {
  43499. source: "./media/characters/spook/front.svg",
  43500. extra: 794/791,
  43501. bottom: 54/848
  43502. }
  43503. },
  43504. back: {
  43505. height: math.unit(5 + 5/12, "feet"),
  43506. weight: math.unit(160, "lb"),
  43507. name: "Back",
  43508. image: {
  43509. source: "./media/characters/spook/back.svg",
  43510. extra: 812/798,
  43511. bottom: 32/844
  43512. }
  43513. },
  43514. },
  43515. [
  43516. {
  43517. name: "Normal",
  43518. height: math.unit(5 + 5/12, "feet"),
  43519. default: true
  43520. },
  43521. ]
  43522. ))
  43523. characterMakers.push(() => makeCharacter(
  43524. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  43525. {
  43526. front: {
  43527. height: math.unit(18, "feet"),
  43528. name: "Front",
  43529. image: {
  43530. source: "./media/characters/xeaduulix/front.svg",
  43531. extra: 1380/1166,
  43532. bottom: 110/1490
  43533. }
  43534. },
  43535. back: {
  43536. height: math.unit(18, "feet"),
  43537. name: "Back",
  43538. image: {
  43539. source: "./media/characters/xeaduulix/back.svg",
  43540. extra: 1592/1170,
  43541. bottom: 128/1720
  43542. }
  43543. },
  43544. frontNsfw: {
  43545. height: math.unit(18, "feet"),
  43546. name: "Front (NSFW)",
  43547. image: {
  43548. source: "./media/characters/xeaduulix/front-nsfw.svg",
  43549. extra: 1380/1166,
  43550. bottom: 110/1490
  43551. }
  43552. },
  43553. backNsfw: {
  43554. height: math.unit(18, "feet"),
  43555. name: "Back (NSFW)",
  43556. image: {
  43557. source: "./media/characters/xeaduulix/back-nsfw.svg",
  43558. extra: 1592/1170,
  43559. bottom: 128/1720
  43560. }
  43561. },
  43562. },
  43563. [
  43564. {
  43565. name: "Normal",
  43566. height: math.unit(18, "feet"),
  43567. default: true
  43568. },
  43569. ]
  43570. ))
  43571. characterMakers.push(() => makeCharacter(
  43572. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  43573. {
  43574. spreadWings: {
  43575. height: math.unit(20, "feet"),
  43576. name: "Spread Wings",
  43577. image: {
  43578. source: "./media/characters/fledge/spread-wings.svg",
  43579. extra: 693/635,
  43580. bottom: 26/719
  43581. }
  43582. },
  43583. front: {
  43584. height: math.unit(20, "feet"),
  43585. name: "Front",
  43586. image: {
  43587. source: "./media/characters/fledge/front.svg",
  43588. extra: 684/637,
  43589. bottom: 18/702
  43590. }
  43591. },
  43592. frontAlt: {
  43593. height: math.unit(20, "feet"),
  43594. name: "Front (Alt)",
  43595. image: {
  43596. source: "./media/characters/fledge/front-alt.svg",
  43597. extra: 708/664,
  43598. bottom: 13/721
  43599. }
  43600. },
  43601. back: {
  43602. height: math.unit(20, "feet"),
  43603. name: "Back",
  43604. image: {
  43605. source: "./media/characters/fledge/back.svg",
  43606. extra: 718/634,
  43607. bottom: 22/740
  43608. }
  43609. },
  43610. head: {
  43611. height: math.unit(5.55, "feet"),
  43612. name: "Head",
  43613. image: {
  43614. source: "./media/characters/fledge/head.svg"
  43615. }
  43616. },
  43617. headAlt: {
  43618. height: math.unit(5.1, "feet"),
  43619. name: "Head (Alt)",
  43620. image: {
  43621. source: "./media/characters/fledge/head-alt.svg"
  43622. }
  43623. },
  43624. },
  43625. [
  43626. {
  43627. name: "Small",
  43628. height: math.unit(6 + 2/12, "feet")
  43629. },
  43630. {
  43631. name: "Big",
  43632. height: math.unit(20, "feet"),
  43633. default: true
  43634. },
  43635. {
  43636. name: "Giant",
  43637. height: math.unit(100, "feet")
  43638. },
  43639. {
  43640. name: "Macro",
  43641. height: math.unit(200, "feet")
  43642. },
  43643. ]
  43644. ))
  43645. characterMakers.push(() => makeCharacter(
  43646. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  43647. {
  43648. front: {
  43649. height: math.unit(1, "meter"),
  43650. name: "Front",
  43651. image: {
  43652. source: "./media/characters/atlas-morenai/front.svg",
  43653. extra: 1275/1043,
  43654. bottom: 19/1294
  43655. }
  43656. },
  43657. back: {
  43658. height: math.unit(1, "meter"),
  43659. name: "Back",
  43660. image: {
  43661. source: "./media/characters/atlas-morenai/back.svg",
  43662. extra: 1141/1001,
  43663. bottom: 25/1166
  43664. }
  43665. },
  43666. },
  43667. [
  43668. {
  43669. name: "Normal",
  43670. height: math.unit(1, "meter"),
  43671. default: true
  43672. },
  43673. {
  43674. name: "Magic-Infused",
  43675. height: math.unit(5, "meters")
  43676. },
  43677. ]
  43678. ))
  43679. characterMakers.push(() => makeCharacter(
  43680. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  43681. {
  43682. front: {
  43683. height: math.unit(5, "meters"),
  43684. name: "Front",
  43685. image: {
  43686. source: "./media/characters/cintia/front.svg",
  43687. extra: 1312/1228,
  43688. bottom: 38/1350
  43689. }
  43690. },
  43691. back: {
  43692. height: math.unit(5, "meters"),
  43693. name: "Back",
  43694. image: {
  43695. source: "./media/characters/cintia/back.svg",
  43696. extra: 1260/1166,
  43697. bottom: 98/1358
  43698. }
  43699. },
  43700. frontDick: {
  43701. height: math.unit(5, "meters"),
  43702. name: "Front (Dick)",
  43703. image: {
  43704. source: "./media/characters/cintia/front-dick.svg",
  43705. extra: 1312/1228,
  43706. bottom: 38/1350
  43707. }
  43708. },
  43709. backDick: {
  43710. height: math.unit(5, "meters"),
  43711. name: "Back (Dick)",
  43712. image: {
  43713. source: "./media/characters/cintia/back-dick.svg",
  43714. extra: 1260/1166,
  43715. bottom: 98/1358
  43716. }
  43717. },
  43718. bust: {
  43719. height: math.unit(1.97, "meters"),
  43720. name: "Bust",
  43721. image: {
  43722. source: "./media/characters/cintia/bust.svg",
  43723. extra: 617/565,
  43724. bottom: 0/617
  43725. }
  43726. },
  43727. },
  43728. [
  43729. {
  43730. name: "Normal",
  43731. height: math.unit(5, "meters"),
  43732. default: true
  43733. },
  43734. ]
  43735. ))
  43736. characterMakers.push(() => makeCharacter(
  43737. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  43738. {
  43739. side: {
  43740. height: math.unit(100, "feet"),
  43741. name: "Side",
  43742. image: {
  43743. source: "./media/characters/denora/side.svg",
  43744. extra: 875/803,
  43745. bottom: 9/884
  43746. }
  43747. },
  43748. },
  43749. [
  43750. {
  43751. name: "Standard",
  43752. height: math.unit(100, "feet"),
  43753. default: true
  43754. },
  43755. {
  43756. name: "Grand",
  43757. height: math.unit(1000, "feet")
  43758. },
  43759. {
  43760. name: "Conquering",
  43761. height: math.unit(10000, "feet")
  43762. },
  43763. ]
  43764. ))
  43765. characterMakers.push(() => makeCharacter(
  43766. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  43767. {
  43768. dressed: {
  43769. height: math.unit(8 + 5/12, "feet"),
  43770. weight: math.unit(700, "lb"),
  43771. name: "Dressed",
  43772. image: {
  43773. source: "./media/characters/kiva/dressed.svg",
  43774. extra: 1102/1055,
  43775. bottom: 60/1162
  43776. }
  43777. },
  43778. nude: {
  43779. height: math.unit(8 + 5/12, "feet"),
  43780. weight: math.unit(700, "lb"),
  43781. name: "Nude",
  43782. image: {
  43783. source: "./media/characters/kiva/nude.svg",
  43784. extra: 1102/1055,
  43785. bottom: 60/1162
  43786. }
  43787. },
  43788. },
  43789. [
  43790. {
  43791. name: "Base Height",
  43792. height: math.unit(8 + 5/12, "feet"),
  43793. default: true
  43794. },
  43795. {
  43796. name: "Macro",
  43797. height: math.unit(100, "feet")
  43798. },
  43799. {
  43800. name: "Max",
  43801. height: math.unit(3280, "feet")
  43802. },
  43803. ]
  43804. ))
  43805. characterMakers.push(() => makeCharacter(
  43806. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  43807. {
  43808. front: {
  43809. height: math.unit(6 + 8/12, "feet"),
  43810. weight: math.unit(250, "lb"),
  43811. name: "Front",
  43812. image: {
  43813. source: "./media/characters/ztragon/front.svg",
  43814. extra: 1825/1684,
  43815. bottom: 98/1923
  43816. }
  43817. },
  43818. },
  43819. [
  43820. {
  43821. name: "Normal",
  43822. height: math.unit(6 + 8/12, "feet"),
  43823. default: true
  43824. },
  43825. {
  43826. name: "Macro",
  43827. height: math.unit(80, "feet")
  43828. },
  43829. ]
  43830. ))
  43831. characterMakers.push(() => makeCharacter(
  43832. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  43833. {
  43834. front: {
  43835. height: math.unit(10.4, "feet"),
  43836. weight: math.unit(2, "tons"),
  43837. name: "Front",
  43838. image: {
  43839. source: "./media/characters/yesenia/front.svg",
  43840. extra: 1479/1474,
  43841. bottom: 233/1712
  43842. }
  43843. },
  43844. },
  43845. [
  43846. {
  43847. name: "Normal",
  43848. height: math.unit(10.4, "feet"),
  43849. default: true
  43850. },
  43851. ]
  43852. ))
  43853. characterMakers.push(() => makeCharacter(
  43854. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  43855. {
  43856. normal: {
  43857. height: math.unit(6 + 1/12, "feet"),
  43858. weight: math.unit(180, "lb"),
  43859. name: "Normal",
  43860. image: {
  43861. source: "./media/characters/leanne-lycheborne/normal.svg",
  43862. extra: 1748/1660,
  43863. bottom: 98/1846
  43864. }
  43865. },
  43866. were: {
  43867. height: math.unit(12, "feet"),
  43868. weight: math.unit(1600, "lb"),
  43869. name: "Were",
  43870. image: {
  43871. source: "./media/characters/leanne-lycheborne/were.svg",
  43872. extra: 1485/1432,
  43873. bottom: 66/1551
  43874. }
  43875. },
  43876. },
  43877. [
  43878. {
  43879. name: "Normal",
  43880. height: math.unit(6 + 1/12, "feet"),
  43881. default: true
  43882. },
  43883. ]
  43884. ))
  43885. characterMakers.push(() => makeCharacter(
  43886. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  43887. {
  43888. side: {
  43889. height: math.unit(13, "feet"),
  43890. name: "Side",
  43891. image: {
  43892. source: "./media/characters/kira-tyler/side.svg",
  43893. extra: 693/393,
  43894. bottom: 58/751
  43895. }
  43896. },
  43897. },
  43898. [
  43899. {
  43900. name: "Normal",
  43901. height: math.unit(13, "feet"),
  43902. default: true
  43903. },
  43904. ]
  43905. ))
  43906. characterMakers.push(() => makeCharacter(
  43907. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  43908. {
  43909. front: {
  43910. height: math.unit(10.3, "feet"),
  43911. weight: math.unit(150, "lb"),
  43912. name: "Front",
  43913. image: {
  43914. source: "./media/characters/blaze/front.svg",
  43915. extra: 1378/1286,
  43916. bottom: 172/1550
  43917. }
  43918. },
  43919. },
  43920. [
  43921. {
  43922. name: "Normal",
  43923. height: math.unit(10.3, "feet"),
  43924. default: true
  43925. },
  43926. ]
  43927. ))
  43928. characterMakers.push(() => makeCharacter(
  43929. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  43930. {
  43931. side: {
  43932. height: math.unit(2, "meters"),
  43933. weight: math.unit(400, "kg"),
  43934. name: "Side",
  43935. image: {
  43936. source: "./media/characters/anu/side.svg",
  43937. extra: 506/394,
  43938. bottom: 18/524
  43939. }
  43940. },
  43941. },
  43942. [
  43943. {
  43944. name: "Humanoid",
  43945. height: math.unit(2, "meters")
  43946. },
  43947. {
  43948. name: "Normal",
  43949. height: math.unit(5, "meters"),
  43950. default: true
  43951. },
  43952. ]
  43953. ))
  43954. characterMakers.push(() => makeCharacter(
  43955. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  43956. {
  43957. front: {
  43958. height: math.unit(5 + 5/12, "feet"),
  43959. weight: math.unit(170, "lb"),
  43960. name: "Front",
  43961. image: {
  43962. source: "./media/characters/synx-the-lynx/front.svg",
  43963. extra: 1893/1745,
  43964. bottom: 17/1910
  43965. }
  43966. },
  43967. side: {
  43968. height: math.unit(5 + 5/12, "feet"),
  43969. weight: math.unit(170, "lb"),
  43970. name: "Side",
  43971. image: {
  43972. source: "./media/characters/synx-the-lynx/side.svg",
  43973. extra: 1884/1740,
  43974. bottom: 39/1923
  43975. }
  43976. },
  43977. back: {
  43978. height: math.unit(5 + 5/12, "feet"),
  43979. weight: math.unit(170, "lb"),
  43980. name: "Back",
  43981. image: {
  43982. source: "./media/characters/synx-the-lynx/back.svg",
  43983. extra: 1903/1755,
  43984. bottom: 14/1917
  43985. }
  43986. },
  43987. },
  43988. [
  43989. {
  43990. name: "Normal",
  43991. height: math.unit(5 + 5/12, "feet"),
  43992. default: true
  43993. },
  43994. ]
  43995. ))
  43996. characterMakers.push(() => makeCharacter(
  43997. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  43998. {
  43999. back: {
  44000. height: math.unit(15, "feet"),
  44001. name: "Back",
  44002. image: {
  44003. source: "./media/characters/nadezda-fex/back.svg",
  44004. extra: 1695/1481,
  44005. bottom: 25/1720
  44006. }
  44007. },
  44008. },
  44009. [
  44010. {
  44011. name: "Normal",
  44012. height: math.unit(15, "feet"),
  44013. default: true
  44014. },
  44015. {
  44016. name: "Macro",
  44017. height: math.unit(2.5, "miles")
  44018. },
  44019. {
  44020. name: "Goddess",
  44021. height: math.unit(2, "multiverses")
  44022. },
  44023. ]
  44024. ))
  44025. characterMakers.push(() => makeCharacter(
  44026. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  44027. {
  44028. front: {
  44029. height: math.unit(216, "cm"),
  44030. name: "Front",
  44031. image: {
  44032. source: "./media/characters/lev/front.svg",
  44033. extra: 1728/1670,
  44034. bottom: 82/1810
  44035. }
  44036. },
  44037. back: {
  44038. height: math.unit(216, "cm"),
  44039. name: "Back",
  44040. image: {
  44041. source: "./media/characters/lev/back.svg",
  44042. extra: 1738/1675,
  44043. bottom: 24/1762
  44044. }
  44045. },
  44046. dressed: {
  44047. height: math.unit(216, "cm"),
  44048. name: "Dressed",
  44049. image: {
  44050. source: "./media/characters/lev/dressed.svg",
  44051. extra: 1397/1351,
  44052. bottom: 73/1470
  44053. }
  44054. },
  44055. head: {
  44056. height: math.unit(0.51, "meter"),
  44057. name: "Head",
  44058. image: {
  44059. source: "./media/characters/lev/head.svg"
  44060. }
  44061. },
  44062. },
  44063. [
  44064. {
  44065. name: "Normal",
  44066. height: math.unit(216, "cm"),
  44067. default: true
  44068. },
  44069. {
  44070. name: "Relatively Macro",
  44071. height: math.unit(80, "meters")
  44072. },
  44073. {
  44074. name: "Megamacro",
  44075. height: math.unit(21600, "meters")
  44076. },
  44077. {
  44078. name: "Megamacro+",
  44079. height: math.unit(64800, "meters")
  44080. },
  44081. ]
  44082. ))
  44083. characterMakers.push(() => makeCharacter(
  44084. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  44085. {
  44086. front: {
  44087. height: math.unit(2, "meters"),
  44088. weight: math.unit(80, "kg"),
  44089. name: "Front",
  44090. image: {
  44091. source: "./media/characters/moka/front.svg",
  44092. extra: 1337/1255,
  44093. bottom: 58/1395
  44094. }
  44095. },
  44096. },
  44097. [
  44098. {
  44099. name: "Micro",
  44100. height: math.unit(15, "cm")
  44101. },
  44102. {
  44103. name: "Normal",
  44104. height: math.unit(2, "meters"),
  44105. default: true
  44106. },
  44107. {
  44108. name: "Macro",
  44109. height: math.unit(20, "meters"),
  44110. },
  44111. ]
  44112. ))
  44113. characterMakers.push(() => makeCharacter(
  44114. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  44115. {
  44116. front: {
  44117. height: math.unit(9, "feet"),
  44118. weight: math.unit(240, "lb"),
  44119. name: "Front",
  44120. image: {
  44121. source: "./media/characters/kuzco/front.svg",
  44122. extra: 1593/1487,
  44123. bottom: 32/1625
  44124. }
  44125. },
  44126. side: {
  44127. height: math.unit(9, "feet"),
  44128. weight: math.unit(240, "lb"),
  44129. name: "Side",
  44130. image: {
  44131. source: "./media/characters/kuzco/side.svg",
  44132. extra: 1575/1485,
  44133. bottom: 30/1605
  44134. }
  44135. },
  44136. back: {
  44137. height: math.unit(9, "feet"),
  44138. weight: math.unit(240, "lb"),
  44139. name: "Back",
  44140. image: {
  44141. source: "./media/characters/kuzco/back.svg",
  44142. extra: 1603/1514,
  44143. bottom: 14/1617
  44144. }
  44145. },
  44146. },
  44147. [
  44148. {
  44149. name: "Normal",
  44150. height: math.unit(9, "feet"),
  44151. default: true
  44152. },
  44153. ]
  44154. ))
  44155. characterMakers.push(() => makeCharacter(
  44156. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  44157. {
  44158. side: {
  44159. height: math.unit(2, "meters"),
  44160. weight: math.unit(300, "kg"),
  44161. name: "Side",
  44162. image: {
  44163. source: "./media/characters/ceruleus/side.svg",
  44164. extra: 1068/974,
  44165. bottom: 126/1194
  44166. }
  44167. },
  44168. },
  44169. [
  44170. {
  44171. name: "Normal",
  44172. height: math.unit(16, "meters"),
  44173. default: true
  44174. },
  44175. ]
  44176. ))
  44177. //characters
  44178. function makeCharacters() {
  44179. const results = [];
  44180. characterMakers.forEach(character => {
  44181. results.push(character());
  44182. });
  44183. return results;
  44184. }