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.
 
 
 

44902 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: 1,
  2720. bottom: 0.035
  2721. }
  2722. },
  2723. back: {
  2724. height: math.unit(7, "feet"),
  2725. weight: math.unit(90, "lb"),
  2726. name: "Back",
  2727. image: {
  2728. source: "./media/characters/kurrikage/back.svg"
  2729. }
  2730. },
  2731. paw: {
  2732. height: math.unit(1.5, "feet"),
  2733. name: "Paw",
  2734. image: {
  2735. source: "./media/characters/kurrikage/paw.svg"
  2736. }
  2737. },
  2738. staff: {
  2739. height: math.unit(6.7, "feet"),
  2740. name: "Staff",
  2741. image: {
  2742. source: "./media/characters/kurrikage/staff.svg"
  2743. }
  2744. },
  2745. peek: {
  2746. height: math.unit(1.05, "feet"),
  2747. name: "Peeking",
  2748. image: {
  2749. source: "./media/characters/kurrikage/peek.svg",
  2750. bottom: 0.08
  2751. }
  2752. },
  2753. },
  2754. [
  2755. {
  2756. name: "Normal",
  2757. height: math.unit(12, "feet"),
  2758. default: true
  2759. },
  2760. {
  2761. name: "Big",
  2762. height: math.unit(20, "feet")
  2763. },
  2764. {
  2765. name: "Macro",
  2766. height: math.unit(500, "feet")
  2767. },
  2768. {
  2769. name: "Megamacro",
  2770. height: math.unit(20, "miles")
  2771. },
  2772. ]
  2773. ))
  2774. characterMakers.push(() => makeCharacter(
  2775. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2776. {
  2777. front: {
  2778. height: math.unit(6, "feet"),
  2779. weight: math.unit(75, "kg"),
  2780. name: "Front",
  2781. image: {
  2782. source: "./media/characters/shingo/front.svg",
  2783. extra: 1900/1825,
  2784. bottom: 82/1982
  2785. }
  2786. },
  2787. side: {
  2788. height: math.unit(6, "feet"),
  2789. weight: math.unit(75, "kg"),
  2790. name: "Side",
  2791. image: {
  2792. source: "./media/characters/shingo/side.svg",
  2793. extra: 1930/1865,
  2794. bottom: 16/1946
  2795. }
  2796. },
  2797. back: {
  2798. height: math.unit(6, "feet"),
  2799. weight: math.unit(75, "kg"),
  2800. name: "Back",
  2801. image: {
  2802. source: "./media/characters/shingo/back.svg",
  2803. extra: 1922/1852,
  2804. bottom: 16/1938
  2805. }
  2806. },
  2807. frontDressed: {
  2808. height: math.unit(6, "feet"),
  2809. weight: math.unit(150, "lb"),
  2810. name: "Front-dressed",
  2811. image: {
  2812. source: "./media/characters/shingo/front-dressed.svg",
  2813. extra: 1900/1825,
  2814. bottom: 82/1982
  2815. }
  2816. },
  2817. paw: {
  2818. height: math.unit(1.29, "feet"),
  2819. name: "Paw",
  2820. image: {
  2821. source: "./media/characters/shingo/paw.svg"
  2822. }
  2823. },
  2824. hand: {
  2825. height: math.unit(1.07, "feet"),
  2826. name: "Hand",
  2827. image: {
  2828. source: "./media/characters/shingo/hand.svg"
  2829. }
  2830. },
  2831. frontAlt: {
  2832. height: math.unit(6, "feet"),
  2833. weight: math.unit(75, "kg"),
  2834. name: "Front (Alt)",
  2835. image: {
  2836. source: "./media/characters/shingo/front-alt.svg",
  2837. extra: 3511 / 3338,
  2838. bottom: 0.005
  2839. }
  2840. },
  2841. frontAlt2: {
  2842. height: math.unit(6, "feet"),
  2843. weight: math.unit(75, "kg"),
  2844. name: "Front (Alt 2)",
  2845. image: {
  2846. source: "./media/characters/shingo/front-alt-2.svg",
  2847. extra: 706/681,
  2848. bottom: 11/717
  2849. }
  2850. },
  2851. pawAlt: {
  2852. height: math.unit(1, "feet"),
  2853. name: "Paw (Alt)",
  2854. image: {
  2855. source: "./media/characters/shingo/paw-alt.svg"
  2856. }
  2857. },
  2858. },
  2859. [
  2860. {
  2861. name: "Micro",
  2862. height: math.unit(4, "inches")
  2863. },
  2864. {
  2865. name: "Normal",
  2866. height: math.unit(6, "feet"),
  2867. default: true
  2868. },
  2869. {
  2870. name: "Macro",
  2871. height: math.unit(108, "feet")
  2872. },
  2873. {
  2874. name: "Macro+",
  2875. height: math.unit(1500, "feet")
  2876. },
  2877. ]
  2878. ))
  2879. characterMakers.push(() => makeCharacter(
  2880. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2881. {
  2882. side: {
  2883. height: math.unit(6, "feet"),
  2884. weight: math.unit(75, "kg"),
  2885. name: "Side",
  2886. image: {
  2887. source: "./media/characters/aigey/side.svg"
  2888. }
  2889. },
  2890. },
  2891. [
  2892. {
  2893. name: "Macro",
  2894. height: math.unit(200, "feet"),
  2895. default: true
  2896. },
  2897. {
  2898. name: "Megamacro",
  2899. height: math.unit(100, "miles")
  2900. },
  2901. ]
  2902. )
  2903. )
  2904. characterMakers.push(() => makeCharacter(
  2905. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2906. {
  2907. front: {
  2908. height: math.unit(5 + 5 / 12, "feet"),
  2909. weight: math.unit(75, "kg"),
  2910. name: "Front",
  2911. image: {
  2912. source: "./media/characters/natasha/front.svg",
  2913. extra: 859 / 824,
  2914. bottom: 23 / 879.6
  2915. }
  2916. },
  2917. frontNsfw: {
  2918. height: math.unit(5 + 5 / 12, "feet"),
  2919. weight: math.unit(75, "kg"),
  2920. name: "Front (NSFW)",
  2921. image: {
  2922. source: "./media/characters/natasha/front-nsfw.svg",
  2923. extra: 859 / 824,
  2924. bottom: 23 / 879.6
  2925. }
  2926. },
  2927. frontErect: {
  2928. height: math.unit(5 + 5 / 12, "feet"),
  2929. weight: math.unit(75, "kg"),
  2930. name: "Front (Erect)",
  2931. image: {
  2932. source: "./media/characters/natasha/front-erect.svg",
  2933. extra: 859 / 824,
  2934. bottom: 23 / 879.6
  2935. }
  2936. },
  2937. back: {
  2938. height: math.unit(5 + 5 / 12, "feet"),
  2939. weight: math.unit(75, "kg"),
  2940. name: "Back",
  2941. image: {
  2942. source: "./media/characters/natasha/back.svg",
  2943. extra: 887.9 / 852.6,
  2944. bottom: 9.7 / 896.4
  2945. }
  2946. },
  2947. backAlt: {
  2948. height: math.unit(5 + 5 / 12, "feet"),
  2949. weight: math.unit(75, "kg"),
  2950. name: "Back (Alt)",
  2951. image: {
  2952. source: "./media/characters/natasha/back-alt.svg",
  2953. extra: 1236.7 / 1192,
  2954. bottom: 22.3 / 1258.2
  2955. }
  2956. },
  2957. dick: {
  2958. height: math.unit(1.772, "feet"),
  2959. name: "Dick",
  2960. image: {
  2961. source: "./media/characters/natasha/dick.svg"
  2962. }
  2963. },
  2964. paw: {
  2965. height: math.unit(0.250, "meters"),
  2966. name: "Paw",
  2967. image: {
  2968. source: "./media/characters/natasha/paw.svg"
  2969. }
  2970. },
  2971. },
  2972. [
  2973. {
  2974. name: "Normal",
  2975. height: math.unit(5 + 5 / 12, "feet")
  2976. },
  2977. {
  2978. name: "Large",
  2979. height: math.unit(12, "feet")
  2980. },
  2981. {
  2982. name: "Macro",
  2983. height: math.unit(100, "feet"),
  2984. default: true
  2985. },
  2986. {
  2987. name: "Macro+",
  2988. height: math.unit(260, "feet")
  2989. },
  2990. {
  2991. name: "Macro++",
  2992. height: math.unit(1, "mile")
  2993. },
  2994. ]
  2995. ))
  2996. characterMakers.push(() => makeCharacter(
  2997. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2998. {
  2999. front: {
  3000. height: math.unit(6, "feet"),
  3001. weight: math.unit(75, "kg"),
  3002. name: "Front",
  3003. image: {
  3004. source: "./media/characters/malik/front.svg"
  3005. }
  3006. },
  3007. side: {
  3008. height: math.unit(6, "feet"),
  3009. weight: math.unit(75, "kg"),
  3010. name: "Side",
  3011. image: {
  3012. source: "./media/characters/malik/side.svg",
  3013. extra: 1.1539
  3014. }
  3015. },
  3016. back: {
  3017. height: math.unit(6, "feet"),
  3018. weight: math.unit(75, "kg"),
  3019. name: "Back",
  3020. image: {
  3021. source: "./media/characters/malik/back.svg"
  3022. }
  3023. },
  3024. },
  3025. [
  3026. {
  3027. name: "Macro",
  3028. height: math.unit(156, "feet"),
  3029. default: true
  3030. },
  3031. {
  3032. name: "Macro+",
  3033. height: math.unit(1188, "feet")
  3034. },
  3035. ]
  3036. ))
  3037. characterMakers.push(() => makeCharacter(
  3038. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3039. {
  3040. front: {
  3041. height: math.unit(6, "feet"),
  3042. weight: math.unit(75, "kg"),
  3043. name: "Front",
  3044. image: {
  3045. source: "./media/characters/sefer/front.svg",
  3046. extra: 848 / 659,
  3047. bottom: 28.3 / 876.442
  3048. }
  3049. },
  3050. back: {
  3051. height: math.unit(6, "feet"),
  3052. weight: math.unit(75, "kg"),
  3053. name: "Back",
  3054. image: {
  3055. source: "./media/characters/sefer/back.svg",
  3056. extra: 864 / 695,
  3057. bottom: 10 / 871
  3058. }
  3059. },
  3060. frontDressed: {
  3061. height: math.unit(6, "feet"),
  3062. weight: math.unit(75, "kg"),
  3063. name: "Front (Dressed)",
  3064. image: {
  3065. source: "./media/characters/sefer/front-dressed.svg",
  3066. extra: 839 / 653,
  3067. bottom: 37.6 / 878
  3068. }
  3069. },
  3070. },
  3071. [
  3072. {
  3073. name: "Normal",
  3074. height: math.unit(6, "feet"),
  3075. default: true
  3076. },
  3077. ]
  3078. ))
  3079. characterMakers.push(() => makeCharacter(
  3080. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3081. {
  3082. body: {
  3083. height: math.unit(2.2428, "meter"),
  3084. weight: math.unit(124.738, "kg"),
  3085. name: "Body",
  3086. image: {
  3087. extra: 1225 / 1050,
  3088. source: "./media/characters/north/front.svg"
  3089. }
  3090. }
  3091. },
  3092. [
  3093. {
  3094. name: "Micro",
  3095. height: math.unit(4, "inches")
  3096. },
  3097. {
  3098. name: "Macro",
  3099. height: math.unit(63, "meters")
  3100. },
  3101. {
  3102. name: "Megamacro",
  3103. height: math.unit(101, "miles"),
  3104. default: true
  3105. }
  3106. ]
  3107. ))
  3108. characterMakers.push(() => makeCharacter(
  3109. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3110. {
  3111. angled: {
  3112. height: math.unit(4, "meter"),
  3113. weight: math.unit(150, "kg"),
  3114. name: "Angled",
  3115. image: {
  3116. source: "./media/characters/talan/angled-sfw.svg",
  3117. bottom: 29 / 3734
  3118. }
  3119. },
  3120. angledNsfw: {
  3121. height: math.unit(4, "meter"),
  3122. weight: math.unit(150, "kg"),
  3123. name: "Angled (NSFW)",
  3124. image: {
  3125. source: "./media/characters/talan/angled-nsfw.svg",
  3126. bottom: 29 / 3734
  3127. }
  3128. },
  3129. frontNsfw: {
  3130. height: math.unit(4, "meter"),
  3131. weight: math.unit(150, "kg"),
  3132. name: "Front (NSFW)",
  3133. image: {
  3134. source: "./media/characters/talan/front-nsfw.svg",
  3135. bottom: 29 / 3734
  3136. }
  3137. },
  3138. sideNsfw: {
  3139. height: math.unit(4, "meter"),
  3140. weight: math.unit(150, "kg"),
  3141. name: "Side (NSFW)",
  3142. image: {
  3143. source: "./media/characters/talan/side-nsfw.svg",
  3144. bottom: 29 / 3734
  3145. }
  3146. },
  3147. back: {
  3148. height: math.unit(4, "meter"),
  3149. weight: math.unit(150, "kg"),
  3150. name: "Back",
  3151. image: {
  3152. source: "./media/characters/talan/back.svg"
  3153. }
  3154. },
  3155. dickBottom: {
  3156. height: math.unit(0.621, "meter"),
  3157. name: "Dick (Bottom)",
  3158. image: {
  3159. source: "./media/characters/talan/dick-bottom.svg"
  3160. }
  3161. },
  3162. dickTop: {
  3163. height: math.unit(0.621, "meter"),
  3164. name: "Dick (Top)",
  3165. image: {
  3166. source: "./media/characters/talan/dick-top.svg"
  3167. }
  3168. },
  3169. dickSide: {
  3170. height: math.unit(0.305, "meter"),
  3171. name: "Dick (Side)",
  3172. image: {
  3173. source: "./media/characters/talan/dick-side.svg"
  3174. }
  3175. },
  3176. dickFront: {
  3177. height: math.unit(0.305, "meter"),
  3178. name: "Dick (Front)",
  3179. image: {
  3180. source: "./media/characters/talan/dick-front.svg"
  3181. }
  3182. },
  3183. },
  3184. [
  3185. {
  3186. name: "Normal",
  3187. height: math.unit(4, "meters")
  3188. },
  3189. {
  3190. name: "Macro",
  3191. height: math.unit(100, "meters")
  3192. },
  3193. {
  3194. name: "Megamacro",
  3195. height: math.unit(2, "miles"),
  3196. default: true
  3197. },
  3198. {
  3199. name: "Gigamacro",
  3200. height: math.unit(5000, "miles")
  3201. },
  3202. {
  3203. name: "Teramacro",
  3204. height: math.unit(100, "parsecs")
  3205. }
  3206. ]
  3207. ))
  3208. characterMakers.push(() => makeCharacter(
  3209. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3210. {
  3211. front: {
  3212. height: math.unit(2, "meter"),
  3213. weight: math.unit(90, "kg"),
  3214. name: "Front",
  3215. image: {
  3216. source: "./media/characters/gael'rathus/front.svg"
  3217. }
  3218. },
  3219. frontAlt: {
  3220. height: math.unit(2, "meter"),
  3221. weight: math.unit(90, "kg"),
  3222. name: "Front (alt)",
  3223. image: {
  3224. source: "./media/characters/gael'rathus/front-alt.svg"
  3225. }
  3226. },
  3227. frontAlt2: {
  3228. height: math.unit(2, "meter"),
  3229. weight: math.unit(90, "kg"),
  3230. name: "Front (alt 2)",
  3231. image: {
  3232. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3233. }
  3234. }
  3235. },
  3236. [
  3237. {
  3238. name: "Normal",
  3239. height: math.unit(9, "feet"),
  3240. default: true
  3241. },
  3242. {
  3243. name: "Large",
  3244. height: math.unit(25, "feet")
  3245. },
  3246. {
  3247. name: "Macro",
  3248. height: math.unit(0.25, "miles")
  3249. },
  3250. {
  3251. name: "Megamacro",
  3252. height: math.unit(10, "miles")
  3253. }
  3254. ]
  3255. ))
  3256. characterMakers.push(() => makeCharacter(
  3257. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3258. {
  3259. side: {
  3260. height: math.unit(2, "meter"),
  3261. weight: math.unit(140, "kg"),
  3262. name: "Side",
  3263. image: {
  3264. source: "./media/characters/sosha/side.svg",
  3265. bottom: 0.042
  3266. }
  3267. },
  3268. },
  3269. [
  3270. {
  3271. name: "Normal",
  3272. height: math.unit(12, "feet"),
  3273. default: true
  3274. }
  3275. ]
  3276. ))
  3277. characterMakers.push(() => makeCharacter(
  3278. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3279. {
  3280. side: {
  3281. height: math.unit(5 + 5 / 12, "feet"),
  3282. weight: math.unit(170, "kg"),
  3283. name: "Side",
  3284. image: {
  3285. source: "./media/characters/runnola/side.svg",
  3286. extra: 741 / 448,
  3287. bottom: 0.05
  3288. }
  3289. },
  3290. },
  3291. [
  3292. {
  3293. name: "Small",
  3294. height: math.unit(3, "feet")
  3295. },
  3296. {
  3297. name: "Normal",
  3298. height: math.unit(5 + 5 / 12, "feet"),
  3299. default: true
  3300. },
  3301. {
  3302. name: "Big",
  3303. height: math.unit(10, "feet")
  3304. },
  3305. ]
  3306. ))
  3307. characterMakers.push(() => makeCharacter(
  3308. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3309. {
  3310. front: {
  3311. height: math.unit(2, "meter"),
  3312. weight: math.unit(50, "kg"),
  3313. name: "Front",
  3314. image: {
  3315. source: "./media/characters/kurribird/front.svg",
  3316. bottom: 0.015
  3317. }
  3318. },
  3319. frontAlt: {
  3320. height: math.unit(1.5, "meter"),
  3321. weight: math.unit(50, "kg"),
  3322. name: "Front (Alt)",
  3323. image: {
  3324. source: "./media/characters/kurribird/front-alt.svg",
  3325. extra: 1.45
  3326. }
  3327. },
  3328. },
  3329. [
  3330. {
  3331. name: "Normal",
  3332. height: math.unit(7, "feet")
  3333. },
  3334. {
  3335. name: "Big",
  3336. height: math.unit(12, "feet"),
  3337. default: true
  3338. },
  3339. {
  3340. name: "Macro",
  3341. height: math.unit(1500, "feet")
  3342. },
  3343. {
  3344. name: "Megamacro",
  3345. height: math.unit(2, "miles")
  3346. }
  3347. ]
  3348. ))
  3349. characterMakers.push(() => makeCharacter(
  3350. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3351. {
  3352. front: {
  3353. height: math.unit(2, "meter"),
  3354. weight: math.unit(80, "kg"),
  3355. name: "Front",
  3356. image: {
  3357. source: "./media/characters/elbial/front.svg",
  3358. extra: 1643 / 1556,
  3359. bottom: 60.2 / 1696
  3360. }
  3361. },
  3362. side: {
  3363. height: math.unit(2, "meter"),
  3364. weight: math.unit(80, "kg"),
  3365. name: "Side",
  3366. image: {
  3367. source: "./media/characters/elbial/side.svg",
  3368. extra: 1630 / 1565,
  3369. bottom: 71.5 / 1697
  3370. }
  3371. },
  3372. back: {
  3373. height: math.unit(2, "meter"),
  3374. weight: math.unit(80, "kg"),
  3375. name: "Back",
  3376. image: {
  3377. source: "./media/characters/elbial/back.svg",
  3378. extra: 1668 / 1595,
  3379. bottom: 5.6 / 1672
  3380. }
  3381. },
  3382. frontDressed: {
  3383. height: math.unit(2, "meter"),
  3384. weight: math.unit(80, "kg"),
  3385. name: "Front (Dressed)",
  3386. image: {
  3387. source: "./media/characters/elbial/front-dressed.svg",
  3388. extra: 1653 / 1584,
  3389. bottom: 57 / 1708
  3390. }
  3391. },
  3392. genitals: {
  3393. height: math.unit(2 / 3.367, "meter"),
  3394. name: "Genitals",
  3395. image: {
  3396. source: "./media/characters/elbial/genitals.svg"
  3397. }
  3398. },
  3399. },
  3400. [
  3401. {
  3402. name: "Large",
  3403. height: math.unit(100, "feet")
  3404. },
  3405. {
  3406. name: "Macro",
  3407. height: math.unit(500, "feet"),
  3408. default: true
  3409. },
  3410. {
  3411. name: "Megamacro",
  3412. height: math.unit(10, "miles")
  3413. },
  3414. {
  3415. name: "Gigamacro",
  3416. height: math.unit(25000, "miles")
  3417. },
  3418. {
  3419. name: "Full-Size",
  3420. height: math.unit(8000000, "gigaparsecs")
  3421. }
  3422. ]
  3423. ))
  3424. characterMakers.push(() => makeCharacter(
  3425. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3426. {
  3427. front: {
  3428. height: math.unit(2, "meter"),
  3429. weight: math.unit(60, "kg"),
  3430. name: "Front",
  3431. image: {
  3432. source: "./media/characters/noah/front.svg"
  3433. }
  3434. },
  3435. talons: {
  3436. height: math.unit(0.315, "meter"),
  3437. name: "Talons",
  3438. image: {
  3439. source: "./media/characters/noah/talons.svg"
  3440. }
  3441. }
  3442. },
  3443. [
  3444. {
  3445. name: "Large",
  3446. height: math.unit(50, "feet")
  3447. },
  3448. {
  3449. name: "Macro",
  3450. height: math.unit(750, "feet"),
  3451. default: true
  3452. },
  3453. {
  3454. name: "Megamacro",
  3455. height: math.unit(50, "miles")
  3456. },
  3457. {
  3458. name: "Gigamacro",
  3459. height: math.unit(100000, "miles")
  3460. },
  3461. {
  3462. name: "Full-Size",
  3463. height: math.unit(3000000000, "miles")
  3464. }
  3465. ]
  3466. ))
  3467. characterMakers.push(() => makeCharacter(
  3468. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3469. {
  3470. front: {
  3471. height: math.unit(2, "meter"),
  3472. weight: math.unit(80, "kg"),
  3473. name: "Front",
  3474. image: {
  3475. source: "./media/characters/natalya/front.svg"
  3476. }
  3477. },
  3478. back: {
  3479. height: math.unit(2, "meter"),
  3480. weight: math.unit(80, "kg"),
  3481. name: "Back",
  3482. image: {
  3483. source: "./media/characters/natalya/back.svg"
  3484. }
  3485. }
  3486. },
  3487. [
  3488. {
  3489. name: "Normal",
  3490. height: math.unit(150, "feet"),
  3491. default: true
  3492. },
  3493. {
  3494. name: "Megamacro",
  3495. height: math.unit(5, "miles")
  3496. },
  3497. {
  3498. name: "Full-Size",
  3499. height: math.unit(600, "kiloparsecs")
  3500. }
  3501. ]
  3502. ))
  3503. characterMakers.push(() => makeCharacter(
  3504. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3505. {
  3506. front: {
  3507. height: math.unit(2, "meter"),
  3508. weight: math.unit(50, "kg"),
  3509. name: "Front",
  3510. image: {
  3511. source: "./media/characters/erestrebah/front.svg",
  3512. extra: 208 / 193,
  3513. bottom: 0.055
  3514. }
  3515. },
  3516. back: {
  3517. height: math.unit(2, "meter"),
  3518. weight: math.unit(50, "kg"),
  3519. name: "Back",
  3520. image: {
  3521. source: "./media/characters/erestrebah/back.svg",
  3522. extra: 1.3
  3523. }
  3524. }
  3525. },
  3526. [
  3527. {
  3528. name: "Normal",
  3529. height: math.unit(10, "feet")
  3530. },
  3531. {
  3532. name: "Large",
  3533. height: math.unit(50, "feet"),
  3534. default: true
  3535. },
  3536. {
  3537. name: "Macro",
  3538. height: math.unit(300, "feet")
  3539. },
  3540. {
  3541. name: "Macro+",
  3542. height: math.unit(750, "feet")
  3543. },
  3544. {
  3545. name: "Megamacro",
  3546. height: math.unit(3, "miles")
  3547. }
  3548. ]
  3549. ))
  3550. characterMakers.push(() => makeCharacter(
  3551. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3552. {
  3553. front: {
  3554. height: math.unit(2, "meter"),
  3555. weight: math.unit(80, "kg"),
  3556. name: "Front",
  3557. image: {
  3558. source: "./media/characters/jennifer/front.svg",
  3559. bottom: 0.11,
  3560. extra: 1.16
  3561. }
  3562. },
  3563. frontAlt: {
  3564. height: math.unit(2, "meter"),
  3565. weight: math.unit(80, "kg"),
  3566. name: "Front (Alt)",
  3567. image: {
  3568. source: "./media/characters/jennifer/front-alt.svg"
  3569. }
  3570. }
  3571. },
  3572. [
  3573. {
  3574. name: "Canon Height",
  3575. height: math.unit(120, "feet"),
  3576. default: true
  3577. },
  3578. {
  3579. name: "Macro+",
  3580. height: math.unit(300, "feet")
  3581. },
  3582. {
  3583. name: "Megamacro",
  3584. height: math.unit(20000, "feet")
  3585. }
  3586. ]
  3587. ))
  3588. characterMakers.push(() => makeCharacter(
  3589. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3590. {
  3591. front: {
  3592. height: math.unit(2, "meter"),
  3593. weight: math.unit(50, "kg"),
  3594. name: "Front",
  3595. image: {
  3596. source: "./media/characters/kalista/front.svg",
  3597. extra: 1947 / 1700,
  3598. bottom: 76.6 / 1412.98
  3599. }
  3600. },
  3601. back: {
  3602. height: math.unit(2, "meter"),
  3603. weight: math.unit(50, "kg"),
  3604. name: "Back",
  3605. image: {
  3606. source: "./media/characters/kalista/back.svg",
  3607. extra: 1366 / 1156,
  3608. bottom: 33.9 / 1362.78
  3609. }
  3610. }
  3611. },
  3612. [
  3613. {
  3614. name: "Uncomfortably Small",
  3615. height: math.unit(10, "feet")
  3616. },
  3617. {
  3618. name: "Small",
  3619. height: math.unit(30, "feet")
  3620. },
  3621. {
  3622. name: "Macro",
  3623. height: math.unit(100, "feet"),
  3624. default: true
  3625. },
  3626. {
  3627. name: "Macro+",
  3628. height: math.unit(2000, "feet")
  3629. },
  3630. {
  3631. name: "True Form",
  3632. height: math.unit(8924, "miles")
  3633. }
  3634. ]
  3635. ))
  3636. characterMakers.push(() => makeCharacter(
  3637. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3638. {
  3639. front: {
  3640. height: math.unit(2, "meter"),
  3641. weight: math.unit(120, "kg"),
  3642. name: "Front",
  3643. image: {
  3644. source: "./media/characters/ggv/front.svg"
  3645. }
  3646. },
  3647. side: {
  3648. height: math.unit(2, "meter"),
  3649. weight: math.unit(120, "kg"),
  3650. name: "Side",
  3651. image: {
  3652. source: "./media/characters/ggv/side.svg"
  3653. }
  3654. }
  3655. },
  3656. [
  3657. {
  3658. name: "Extremely Puny",
  3659. height: math.unit(9 + 5 / 12, "feet")
  3660. },
  3661. {
  3662. name: "Horribly Small",
  3663. height: math.unit(47.7, "miles"),
  3664. default: true
  3665. },
  3666. {
  3667. name: "Reasonably Sized",
  3668. height: math.unit(25000, "parsecs")
  3669. },
  3670. {
  3671. name: "Slightly Uncompressed",
  3672. height: math.unit(7.77e31, "parsecs")
  3673. },
  3674. {
  3675. name: "Omniversal",
  3676. height: math.unit(1e300, "meters")
  3677. },
  3678. ]
  3679. ))
  3680. characterMakers.push(() => makeCharacter(
  3681. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3682. {
  3683. front: {
  3684. height: math.unit(2, "meter"),
  3685. weight: math.unit(75, "lb"),
  3686. name: "Front",
  3687. image: {
  3688. source: "./media/characters/napalm/front.svg"
  3689. }
  3690. },
  3691. back: {
  3692. height: math.unit(2, "meter"),
  3693. weight: math.unit(75, "lb"),
  3694. name: "Back",
  3695. image: {
  3696. source: "./media/characters/napalm/back.svg"
  3697. }
  3698. }
  3699. },
  3700. [
  3701. {
  3702. name: "Standard",
  3703. height: math.unit(55, "feet"),
  3704. default: true
  3705. }
  3706. ]
  3707. ))
  3708. characterMakers.push(() => makeCharacter(
  3709. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3710. {
  3711. front: {
  3712. height: math.unit(7 + 5 / 6, "feet"),
  3713. weight: math.unit(325, "lb"),
  3714. name: "Front",
  3715. image: {
  3716. source: "./media/characters/asana/front.svg",
  3717. extra: 1133 / 1060,
  3718. bottom: 15.2 / 1148.6
  3719. }
  3720. },
  3721. back: {
  3722. height: math.unit(7 + 5 / 6, "feet"),
  3723. weight: math.unit(325, "lb"),
  3724. name: "Back",
  3725. image: {
  3726. source: "./media/characters/asana/back.svg",
  3727. extra: 1114 / 1043,
  3728. bottom: 5 / 1120
  3729. }
  3730. },
  3731. dressedDark: {
  3732. height: math.unit(7 + 5 / 6, "feet"),
  3733. weight: math.unit(325, "lb"),
  3734. name: "Dressed (Dark)",
  3735. image: {
  3736. source: "./media/characters/asana/dressed-dark.svg",
  3737. extra: 1133 / 1060,
  3738. bottom: 15.2 / 1148.6
  3739. }
  3740. },
  3741. dressedLight: {
  3742. height: math.unit(7 + 5 / 6, "feet"),
  3743. weight: math.unit(325, "lb"),
  3744. name: "Dressed (Light)",
  3745. image: {
  3746. source: "./media/characters/asana/dressed-light.svg",
  3747. extra: 1133 / 1060,
  3748. bottom: 15.2 / 1148.6
  3749. }
  3750. },
  3751. },
  3752. [
  3753. {
  3754. name: "Standard",
  3755. height: math.unit(7 + 5 / 6, "feet"),
  3756. default: true
  3757. },
  3758. {
  3759. name: "Large",
  3760. height: math.unit(10, "meters")
  3761. },
  3762. {
  3763. name: "Macro",
  3764. height: math.unit(2500, "meters")
  3765. },
  3766. {
  3767. name: "Megamacro",
  3768. height: math.unit(5e6, "meters")
  3769. },
  3770. {
  3771. name: "Examacro",
  3772. height: math.unit(5e12, "lightyears")
  3773. },
  3774. {
  3775. name: "Max Size",
  3776. height: math.unit(1e31, "lightyears")
  3777. }
  3778. ]
  3779. ))
  3780. characterMakers.push(() => makeCharacter(
  3781. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3782. {
  3783. front: {
  3784. height: math.unit(2, "meter"),
  3785. weight: math.unit(60, "kg"),
  3786. name: "Front",
  3787. image: {
  3788. source: "./media/characters/ebony/front.svg",
  3789. bottom: 0.03,
  3790. extra: 1045 / 810 + 0.03
  3791. }
  3792. },
  3793. side: {
  3794. height: math.unit(2, "meter"),
  3795. weight: math.unit(60, "kg"),
  3796. name: "Side",
  3797. image: {
  3798. source: "./media/characters/ebony/side.svg",
  3799. bottom: 0.03,
  3800. extra: 1045 / 810 + 0.03
  3801. }
  3802. },
  3803. back: {
  3804. height: math.unit(2, "meter"),
  3805. weight: math.unit(60, "kg"),
  3806. name: "Back",
  3807. image: {
  3808. source: "./media/characters/ebony/back.svg",
  3809. bottom: 0.01,
  3810. extra: 1045 / 810 + 0.01
  3811. }
  3812. },
  3813. },
  3814. [
  3815. // TODO check why I did this lol
  3816. {
  3817. name: "Standard",
  3818. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3819. default: true
  3820. },
  3821. {
  3822. name: "Macro",
  3823. height: math.unit(200, "feet")
  3824. },
  3825. {
  3826. name: "Gigamacro",
  3827. height: math.unit(13000, "km")
  3828. }
  3829. ]
  3830. ))
  3831. characterMakers.push(() => makeCharacter(
  3832. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3833. {
  3834. front: {
  3835. height: math.unit(6, "feet"),
  3836. weight: math.unit(175, "lb"),
  3837. name: "Front",
  3838. image: {
  3839. source: "./media/characters/mountain/front.svg",
  3840. extra: 972 / 955,
  3841. bottom: 64 / 1036.6
  3842. }
  3843. },
  3844. back: {
  3845. height: math.unit(6, "feet"),
  3846. weight: math.unit(175, "lb"),
  3847. name: "Back",
  3848. image: {
  3849. source: "./media/characters/mountain/back.svg",
  3850. extra: 970 / 950,
  3851. bottom: 28.25 / 999
  3852. }
  3853. },
  3854. },
  3855. [
  3856. {
  3857. name: "Large",
  3858. height: math.unit(20, "meters")
  3859. },
  3860. {
  3861. name: "Macro",
  3862. height: math.unit(300, "meters")
  3863. },
  3864. {
  3865. name: "Gigamacro",
  3866. height: math.unit(10000, "km"),
  3867. default: true
  3868. },
  3869. {
  3870. name: "Examacro",
  3871. height: math.unit(10e9, "lightyears")
  3872. }
  3873. ]
  3874. ))
  3875. characterMakers.push(() => makeCharacter(
  3876. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3877. {
  3878. front: {
  3879. height: math.unit(8, "feet"),
  3880. weight: math.unit(500, "lb"),
  3881. name: "Front",
  3882. image: {
  3883. source: "./media/characters/rick/front.svg"
  3884. }
  3885. }
  3886. },
  3887. [
  3888. {
  3889. name: "Normal",
  3890. height: math.unit(8, "feet"),
  3891. default: true
  3892. },
  3893. {
  3894. name: "Macro",
  3895. height: math.unit(5, "km")
  3896. }
  3897. ]
  3898. ))
  3899. characterMakers.push(() => makeCharacter(
  3900. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3901. {
  3902. front: {
  3903. height: math.unit(8, "feet"),
  3904. weight: math.unit(120, "lb"),
  3905. name: "Front",
  3906. image: {
  3907. source: "./media/characters/ona/front.svg"
  3908. }
  3909. },
  3910. frontAlt: {
  3911. height: math.unit(8, "feet"),
  3912. weight: math.unit(120, "lb"),
  3913. name: "Front (Alt)",
  3914. image: {
  3915. source: "./media/characters/ona/front-alt.svg"
  3916. }
  3917. },
  3918. back: {
  3919. height: math.unit(8, "feet"),
  3920. weight: math.unit(120, "lb"),
  3921. name: "Back",
  3922. image: {
  3923. source: "./media/characters/ona/back.svg"
  3924. }
  3925. },
  3926. foot: {
  3927. height: math.unit(1.1, "feet"),
  3928. name: "Foot",
  3929. image: {
  3930. source: "./media/characters/ona/foot.svg"
  3931. }
  3932. }
  3933. },
  3934. [
  3935. {
  3936. name: "Megamacro",
  3937. height: math.unit(70, "km"),
  3938. default: true
  3939. },
  3940. {
  3941. name: "Gigamacro",
  3942. height: math.unit(681818, "miles")
  3943. },
  3944. {
  3945. name: "Examacro",
  3946. height: math.unit(3800000, "lightyears")
  3947. },
  3948. ]
  3949. ))
  3950. characterMakers.push(() => makeCharacter(
  3951. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3952. {
  3953. front: {
  3954. height: math.unit(12, "feet"),
  3955. weight: math.unit(3000, "lb"),
  3956. name: "Front",
  3957. image: {
  3958. source: "./media/characters/mech/front.svg",
  3959. extra: 2900 / 2770,
  3960. bottom: 110 / 3010
  3961. }
  3962. },
  3963. back: {
  3964. height: math.unit(12, "feet"),
  3965. weight: math.unit(3000, "lb"),
  3966. name: "Back",
  3967. image: {
  3968. source: "./media/characters/mech/back.svg",
  3969. extra: 3011 / 2890,
  3970. bottom: 94 / 3105
  3971. }
  3972. },
  3973. maw: {
  3974. height: math.unit(3.07, "feet"),
  3975. name: "Maw",
  3976. image: {
  3977. source: "./media/characters/mech/maw.svg"
  3978. }
  3979. },
  3980. head: {
  3981. height: math.unit(2.82, "feet"),
  3982. name: "Head",
  3983. image: {
  3984. source: "./media/characters/mech/head.svg"
  3985. }
  3986. },
  3987. dick: {
  3988. height: math.unit(1.43, "feet"),
  3989. name: "Dick",
  3990. image: {
  3991. source: "./media/characters/mech/dick.svg"
  3992. }
  3993. },
  3994. },
  3995. [
  3996. {
  3997. name: "Normal",
  3998. height: math.unit(12, "feet")
  3999. },
  4000. {
  4001. name: "Macro",
  4002. height: math.unit(300, "feet"),
  4003. default: true
  4004. },
  4005. {
  4006. name: "Macro+",
  4007. height: math.unit(1500, "feet")
  4008. },
  4009. ]
  4010. ))
  4011. characterMakers.push(() => makeCharacter(
  4012. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4013. {
  4014. front: {
  4015. height: math.unit(1.3, "meter"),
  4016. weight: math.unit(30, "kg"),
  4017. name: "Front",
  4018. image: {
  4019. source: "./media/characters/gregory/front.svg",
  4020. }
  4021. }
  4022. },
  4023. [
  4024. {
  4025. name: "Normal",
  4026. height: math.unit(1.3, "meter"),
  4027. default: true
  4028. },
  4029. {
  4030. name: "Macro",
  4031. height: math.unit(20, "meter")
  4032. }
  4033. ]
  4034. ))
  4035. characterMakers.push(() => makeCharacter(
  4036. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4037. {
  4038. front: {
  4039. height: math.unit(2.8, "meter"),
  4040. weight: math.unit(200, "kg"),
  4041. name: "Front",
  4042. image: {
  4043. source: "./media/characters/elory/front.svg",
  4044. }
  4045. }
  4046. },
  4047. [
  4048. {
  4049. name: "Normal",
  4050. height: math.unit(2.8, "meter"),
  4051. default: true
  4052. },
  4053. {
  4054. name: "Macro",
  4055. height: math.unit(38, "meter")
  4056. }
  4057. ]
  4058. ))
  4059. characterMakers.push(() => makeCharacter(
  4060. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4061. {
  4062. front: {
  4063. height: math.unit(470, "feet"),
  4064. weight: math.unit(924, "tons"),
  4065. name: "Front",
  4066. image: {
  4067. source: "./media/characters/angelpatamon/front.svg",
  4068. }
  4069. }
  4070. },
  4071. [
  4072. {
  4073. name: "Normal",
  4074. height: math.unit(470, "feet"),
  4075. default: true
  4076. },
  4077. {
  4078. name: "Deity Size I",
  4079. height: math.unit(28651.2, "km")
  4080. },
  4081. {
  4082. name: "Deity Size II",
  4083. height: math.unit(171907.2, "km")
  4084. }
  4085. ]
  4086. ))
  4087. characterMakers.push(() => makeCharacter(
  4088. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4089. {
  4090. side: {
  4091. height: math.unit(7.2, "meter"),
  4092. weight: math.unit(8.2, "tons"),
  4093. name: "Side",
  4094. image: {
  4095. source: "./media/characters/cryae/side.svg",
  4096. extra: 3500 / 1500
  4097. }
  4098. }
  4099. },
  4100. [
  4101. {
  4102. name: "Normal",
  4103. height: math.unit(7.2, "meter"),
  4104. default: true
  4105. }
  4106. ]
  4107. ))
  4108. characterMakers.push(() => makeCharacter(
  4109. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4110. {
  4111. front: {
  4112. height: math.unit(6, "feet"),
  4113. weight: math.unit(175, "lb"),
  4114. name: "Front",
  4115. image: {
  4116. source: "./media/characters/xera/front.svg",
  4117. extra: 2377 / 1972,
  4118. bottom: 75.5 / 2452
  4119. }
  4120. },
  4121. side: {
  4122. height: math.unit(6, "feet"),
  4123. weight: math.unit(175, "lb"),
  4124. name: "Side",
  4125. image: {
  4126. source: "./media/characters/xera/side.svg",
  4127. extra: 2345 / 2019,
  4128. bottom: 39.7 / 2384
  4129. }
  4130. },
  4131. back: {
  4132. height: math.unit(6, "feet"),
  4133. weight: math.unit(175, "lb"),
  4134. name: "Back",
  4135. image: {
  4136. source: "./media/characters/xera/back.svg",
  4137. extra: 2095 / 1984,
  4138. bottom: 67 / 2166
  4139. }
  4140. },
  4141. },
  4142. [
  4143. {
  4144. name: "Small",
  4145. height: math.unit(10, "feet")
  4146. },
  4147. {
  4148. name: "Macro",
  4149. height: math.unit(500, "meters"),
  4150. default: true
  4151. },
  4152. {
  4153. name: "Macro+",
  4154. height: math.unit(10, "km")
  4155. },
  4156. {
  4157. name: "Gigamacro",
  4158. height: math.unit(25000, "km")
  4159. },
  4160. {
  4161. name: "Teramacro",
  4162. height: math.unit(3e6, "km")
  4163. }
  4164. ]
  4165. ))
  4166. characterMakers.push(() => makeCharacter(
  4167. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4168. {
  4169. front: {
  4170. height: math.unit(6, "feet"),
  4171. weight: math.unit(175, "lb"),
  4172. name: "Front",
  4173. image: {
  4174. source: "./media/characters/nebula/front.svg",
  4175. extra: 2566 / 2362,
  4176. bottom: 81 / 2644
  4177. }
  4178. }
  4179. },
  4180. [
  4181. {
  4182. name: "Small",
  4183. height: math.unit(4.5, "meters")
  4184. },
  4185. {
  4186. name: "Macro",
  4187. height: math.unit(1500, "meters"),
  4188. default: true
  4189. },
  4190. {
  4191. name: "Megamacro",
  4192. height: math.unit(150, "km")
  4193. },
  4194. {
  4195. name: "Gigamacro",
  4196. height: math.unit(27000, "km")
  4197. }
  4198. ]
  4199. ))
  4200. characterMakers.push(() => makeCharacter(
  4201. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4202. {
  4203. front: {
  4204. height: math.unit(6, "feet"),
  4205. weight: math.unit(225, "lb"),
  4206. name: "Front",
  4207. image: {
  4208. source: "./media/characters/abysgar/front.svg"
  4209. }
  4210. }
  4211. },
  4212. [
  4213. {
  4214. name: "Small",
  4215. height: math.unit(4.5, "meters")
  4216. },
  4217. {
  4218. name: "Macro",
  4219. height: math.unit(1250, "meters"),
  4220. default: true
  4221. },
  4222. {
  4223. name: "Megamacro",
  4224. height: math.unit(125, "km")
  4225. },
  4226. {
  4227. name: "Gigamacro",
  4228. height: math.unit(26000, "km")
  4229. }
  4230. ]
  4231. ))
  4232. characterMakers.push(() => makeCharacter(
  4233. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4234. {
  4235. front: {
  4236. height: math.unit(6, "feet"),
  4237. weight: math.unit(180, "lb"),
  4238. name: "Front",
  4239. image: {
  4240. source: "./media/characters/yakuz/front.svg"
  4241. }
  4242. }
  4243. },
  4244. [
  4245. {
  4246. name: "Small",
  4247. height: math.unit(5, "meters")
  4248. },
  4249. {
  4250. name: "Macro",
  4251. height: math.unit(1500, "meters"),
  4252. default: true
  4253. },
  4254. {
  4255. name: "Megamacro",
  4256. height: math.unit(200, "km")
  4257. },
  4258. {
  4259. name: "Gigamacro",
  4260. height: math.unit(100000, "km")
  4261. }
  4262. ]
  4263. ))
  4264. characterMakers.push(() => makeCharacter(
  4265. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4266. {
  4267. front: {
  4268. height: math.unit(6, "feet"),
  4269. weight: math.unit(175, "lb"),
  4270. name: "Front",
  4271. image: {
  4272. source: "./media/characters/mirova/front.svg",
  4273. extra: 3334 / 3071,
  4274. bottom: 42 / 3375.6
  4275. }
  4276. }
  4277. },
  4278. [
  4279. {
  4280. name: "Small",
  4281. height: math.unit(5, "meters")
  4282. },
  4283. {
  4284. name: "Macro",
  4285. height: math.unit(900, "meters"),
  4286. default: true
  4287. },
  4288. {
  4289. name: "Megamacro",
  4290. height: math.unit(135, "km")
  4291. },
  4292. {
  4293. name: "Gigamacro",
  4294. height: math.unit(20000, "km")
  4295. }
  4296. ]
  4297. ))
  4298. characterMakers.push(() => makeCharacter(
  4299. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4300. {
  4301. side: {
  4302. height: math.unit(28.35, "feet"),
  4303. weight: math.unit(99.75, "tons"),
  4304. name: "Side",
  4305. image: {
  4306. source: "./media/characters/asana-mech/side.svg",
  4307. extra: 923 / 699,
  4308. bottom: 50 / 975
  4309. }
  4310. },
  4311. chaingun: {
  4312. height: math.unit(7, "feet"),
  4313. weight: math.unit(2400, "lb"),
  4314. name: "Chaingun",
  4315. image: {
  4316. source: "./media/characters/asana-mech/chaingun.svg"
  4317. }
  4318. },
  4319. laser: {
  4320. height: math.unit(7.12, "feet"),
  4321. weight: math.unit(2000, "lb"),
  4322. name: "Laser",
  4323. image: {
  4324. source: "./media/characters/asana-mech/laser.svg"
  4325. }
  4326. },
  4327. },
  4328. [
  4329. {
  4330. name: "Normal",
  4331. height: math.unit(28.35, "feet"),
  4332. default: true
  4333. },
  4334. {
  4335. name: "Macro",
  4336. height: math.unit(2500, "feet")
  4337. },
  4338. {
  4339. name: "Megamacro",
  4340. height: math.unit(25, "miles")
  4341. },
  4342. {
  4343. name: "Examacro",
  4344. height: math.unit(6e8, "lightyears")
  4345. },
  4346. ]
  4347. ))
  4348. characterMakers.push(() => makeCharacter(
  4349. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4350. {
  4351. front: {
  4352. height: math.unit(5, "meters"),
  4353. weight: math.unit(1000, "kg"),
  4354. name: "Front",
  4355. image: {
  4356. source: "./media/characters/asche/front.svg",
  4357. extra: 1258 / 1190,
  4358. bottom: 47 / 1305
  4359. }
  4360. },
  4361. frontUnderwear: {
  4362. height: math.unit(5, "meters"),
  4363. weight: math.unit(1000, "kg"),
  4364. name: "Front (Underwear)",
  4365. image: {
  4366. source: "./media/characters/asche/front-underwear.svg",
  4367. extra: 1258 / 1190,
  4368. bottom: 47 / 1305
  4369. }
  4370. },
  4371. frontDressed: {
  4372. height: math.unit(5, "meters"),
  4373. weight: math.unit(1000, "kg"),
  4374. name: "Front (Dressed)",
  4375. image: {
  4376. source: "./media/characters/asche/front-dressed.svg",
  4377. extra: 1258 / 1190,
  4378. bottom: 47 / 1305
  4379. }
  4380. },
  4381. frontArmor: {
  4382. height: math.unit(5, "meters"),
  4383. weight: math.unit(1000, "kg"),
  4384. name: "Front (Armored)",
  4385. image: {
  4386. source: "./media/characters/asche/front-armored.svg",
  4387. extra: 1374 / 1308,
  4388. bottom: 23 / 1397
  4389. }
  4390. },
  4391. mp724: {
  4392. height: math.unit(0.96, "meters"),
  4393. weight: math.unit(38, "kg"),
  4394. name: "H&K MP724",
  4395. image: {
  4396. source: "./media/characters/asche/h&k-mp724.svg"
  4397. }
  4398. },
  4399. side: {
  4400. height: math.unit(5, "meters"),
  4401. weight: math.unit(1000, "kg"),
  4402. name: "Side",
  4403. image: {
  4404. source: "./media/characters/asche/side.svg",
  4405. extra: 1717 / 1609,
  4406. bottom: 0.005
  4407. }
  4408. },
  4409. back: {
  4410. height: math.unit(5, "meters"),
  4411. weight: math.unit(1000, "kg"),
  4412. name: "Back",
  4413. image: {
  4414. source: "./media/characters/asche/back.svg",
  4415. extra: 1570 / 1501
  4416. }
  4417. },
  4418. },
  4419. [
  4420. {
  4421. name: "DEFCON 5",
  4422. height: math.unit(5, "meters")
  4423. },
  4424. {
  4425. name: "DEFCON 4",
  4426. height: math.unit(500, "meters"),
  4427. default: true
  4428. },
  4429. {
  4430. name: "DEFCON 3",
  4431. height: math.unit(5, "km")
  4432. },
  4433. {
  4434. name: "DEFCON 2",
  4435. height: math.unit(500, "km")
  4436. },
  4437. {
  4438. name: "DEFCON 1",
  4439. height: math.unit(500000, "km")
  4440. },
  4441. {
  4442. name: "DEFCON 0",
  4443. height: math.unit(3, "gigaparsecs")
  4444. },
  4445. ]
  4446. ))
  4447. characterMakers.push(() => makeCharacter(
  4448. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4449. {
  4450. front: {
  4451. height: math.unit(2, "meters"),
  4452. weight: math.unit(76, "kg"),
  4453. name: "Front",
  4454. image: {
  4455. source: "./media/characters/gale/front.svg"
  4456. }
  4457. },
  4458. frontAlt1: {
  4459. height: math.unit(2, "meters"),
  4460. weight: math.unit(76, "kg"),
  4461. name: "Front (Alt 1)",
  4462. image: {
  4463. source: "./media/characters/gale/front-alt-1.svg"
  4464. }
  4465. },
  4466. frontAlt2: {
  4467. height: math.unit(2, "meters"),
  4468. weight: math.unit(76, "kg"),
  4469. name: "Front (Alt 2)",
  4470. image: {
  4471. source: "./media/characters/gale/front-alt-2.svg"
  4472. }
  4473. },
  4474. },
  4475. [
  4476. {
  4477. name: "Normal",
  4478. height: math.unit(7, "feet")
  4479. },
  4480. {
  4481. name: "Macro",
  4482. height: math.unit(150, "feet"),
  4483. default: true
  4484. },
  4485. {
  4486. name: "Macro+",
  4487. height: math.unit(300, "feet")
  4488. },
  4489. ]
  4490. ))
  4491. characterMakers.push(() => makeCharacter(
  4492. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4493. {
  4494. front: {
  4495. height: math.unit(5 + 10/12, "feet"),
  4496. weight: math.unit(67, "kg"),
  4497. name: "Front",
  4498. image: {
  4499. source: "./media/characters/draylen/front.svg",
  4500. extra: 832/777,
  4501. bottom: 85/917
  4502. }
  4503. }
  4504. },
  4505. [
  4506. {
  4507. name: "Normal",
  4508. height: math.unit(5 + 10/12, "feet")
  4509. },
  4510. {
  4511. name: "Macro",
  4512. height: math.unit(150, "feet"),
  4513. default: true
  4514. }
  4515. ]
  4516. ))
  4517. characterMakers.push(() => makeCharacter(
  4518. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4519. {
  4520. front: {
  4521. height: math.unit(7 + 9 / 12, "feet"),
  4522. weight: math.unit(379, "lbs"),
  4523. name: "Front",
  4524. image: {
  4525. source: "./media/characters/chez/front.svg"
  4526. }
  4527. },
  4528. side: {
  4529. height: math.unit(7 + 9 / 12, "feet"),
  4530. weight: math.unit(379, "lbs"),
  4531. name: "Side",
  4532. image: {
  4533. source: "./media/characters/chez/side.svg"
  4534. }
  4535. }
  4536. },
  4537. [
  4538. {
  4539. name: "Normal",
  4540. height: math.unit(7 + 9 / 12, "feet"),
  4541. default: true
  4542. },
  4543. {
  4544. name: "God King",
  4545. height: math.unit(9750000, "meters")
  4546. }
  4547. ]
  4548. ))
  4549. characterMakers.push(() => makeCharacter(
  4550. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4551. {
  4552. front: {
  4553. height: math.unit(6, "feet"),
  4554. weight: math.unit(275, "lbs"),
  4555. name: "Front",
  4556. image: {
  4557. source: "./media/characters/kaylum/front.svg",
  4558. bottom: 0.01,
  4559. extra: 1166 / 1031
  4560. }
  4561. },
  4562. frontWingless: {
  4563. height: math.unit(6, "feet"),
  4564. weight: math.unit(275, "lbs"),
  4565. name: "Front (Wingless)",
  4566. image: {
  4567. source: "./media/characters/kaylum/front-wingless.svg",
  4568. bottom: 0.01,
  4569. extra: 1117 / 1031
  4570. }
  4571. }
  4572. },
  4573. [
  4574. {
  4575. name: "Normal",
  4576. height: math.unit(3.05, "meters")
  4577. },
  4578. {
  4579. name: "Master",
  4580. height: math.unit(5.5, "meters")
  4581. },
  4582. {
  4583. name: "Rampage",
  4584. height: math.unit(19, "meters")
  4585. },
  4586. {
  4587. name: "Macro Lite",
  4588. height: math.unit(37, "meters")
  4589. },
  4590. {
  4591. name: "Hyper Predator",
  4592. height: math.unit(61, "meters")
  4593. },
  4594. {
  4595. name: "Macro",
  4596. height: math.unit(138, "meters"),
  4597. default: true
  4598. }
  4599. ]
  4600. ))
  4601. characterMakers.push(() => makeCharacter(
  4602. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4603. {
  4604. front: {
  4605. height: math.unit(6, "feet"),
  4606. weight: math.unit(150, "lbs"),
  4607. name: "Front",
  4608. image: {
  4609. source: "./media/characters/geta/front.svg"
  4610. }
  4611. }
  4612. },
  4613. [
  4614. {
  4615. name: "Micro",
  4616. height: math.unit(3, "inches"),
  4617. default: true
  4618. },
  4619. {
  4620. name: "Normal",
  4621. height: math.unit(5 + 5 / 12, "feet")
  4622. }
  4623. ]
  4624. ))
  4625. characterMakers.push(() => makeCharacter(
  4626. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4627. {
  4628. front: {
  4629. height: math.unit(6, "feet"),
  4630. weight: math.unit(300, "lbs"),
  4631. name: "Front",
  4632. image: {
  4633. source: "./media/characters/tyrnn/front.svg"
  4634. }
  4635. }
  4636. },
  4637. [
  4638. {
  4639. name: "Main Height",
  4640. height: math.unit(355, "feet"),
  4641. default: true
  4642. },
  4643. {
  4644. name: "Fave. Height",
  4645. height: math.unit(2400, "feet")
  4646. }
  4647. ]
  4648. ))
  4649. characterMakers.push(() => makeCharacter(
  4650. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4651. {
  4652. front: {
  4653. height: math.unit(6, "feet"),
  4654. weight: math.unit(300, "lbs"),
  4655. name: "Front",
  4656. image: {
  4657. source: "./media/characters/appledectomy/front.svg"
  4658. }
  4659. }
  4660. },
  4661. [
  4662. {
  4663. name: "Macro",
  4664. height: math.unit(2500, "feet")
  4665. },
  4666. {
  4667. name: "Megamacro",
  4668. height: math.unit(50, "miles"),
  4669. default: true
  4670. },
  4671. {
  4672. name: "Gigamacro",
  4673. height: math.unit(5000, "miles")
  4674. },
  4675. {
  4676. name: "Teramacro",
  4677. height: math.unit(250000, "miles")
  4678. },
  4679. ]
  4680. ))
  4681. characterMakers.push(() => makeCharacter(
  4682. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4683. {
  4684. front: {
  4685. height: math.unit(6, "feet"),
  4686. weight: math.unit(200, "lbs"),
  4687. name: "Front",
  4688. image: {
  4689. source: "./media/characters/vulpes/front.svg",
  4690. extra: 573 / 543,
  4691. bottom: 0.033
  4692. }
  4693. },
  4694. side: {
  4695. height: math.unit(6, "feet"),
  4696. weight: math.unit(200, "lbs"),
  4697. name: "Side",
  4698. image: {
  4699. source: "./media/characters/vulpes/side.svg",
  4700. extra: 577 / 549,
  4701. bottom: 11 / 588
  4702. }
  4703. },
  4704. back: {
  4705. height: math.unit(6, "feet"),
  4706. weight: math.unit(200, "lbs"),
  4707. name: "Back",
  4708. image: {
  4709. source: "./media/characters/vulpes/back.svg",
  4710. extra: 573 / 549,
  4711. bottom: 20 / 593
  4712. }
  4713. },
  4714. feet: {
  4715. height: math.unit(1.276, "feet"),
  4716. name: "Feet",
  4717. image: {
  4718. source: "./media/characters/vulpes/feet.svg"
  4719. }
  4720. },
  4721. maw: {
  4722. height: math.unit(1.18, "feet"),
  4723. name: "Maw",
  4724. image: {
  4725. source: "./media/characters/vulpes/maw.svg"
  4726. }
  4727. },
  4728. },
  4729. [
  4730. {
  4731. name: "Micro",
  4732. height: math.unit(2, "inches")
  4733. },
  4734. {
  4735. name: "Normal",
  4736. height: math.unit(6.3, "feet")
  4737. },
  4738. {
  4739. name: "Macro",
  4740. height: math.unit(850, "feet")
  4741. },
  4742. {
  4743. name: "Megamacro",
  4744. height: math.unit(7500, "feet"),
  4745. default: true
  4746. },
  4747. {
  4748. name: "Gigamacro",
  4749. height: math.unit(570000, "miles")
  4750. }
  4751. ]
  4752. ))
  4753. characterMakers.push(() => makeCharacter(
  4754. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4755. {
  4756. front: {
  4757. height: math.unit(6, "feet"),
  4758. weight: math.unit(210, "lbs"),
  4759. name: "Front",
  4760. image: {
  4761. source: "./media/characters/rain-fallen/front.svg"
  4762. }
  4763. },
  4764. side: {
  4765. height: math.unit(6, "feet"),
  4766. weight: math.unit(210, "lbs"),
  4767. name: "Side",
  4768. image: {
  4769. source: "./media/characters/rain-fallen/side.svg"
  4770. }
  4771. },
  4772. back: {
  4773. height: math.unit(6, "feet"),
  4774. weight: math.unit(210, "lbs"),
  4775. name: "Back",
  4776. image: {
  4777. source: "./media/characters/rain-fallen/back.svg"
  4778. }
  4779. },
  4780. feral: {
  4781. height: math.unit(9, "feet"),
  4782. weight: math.unit(700, "lbs"),
  4783. name: "Feral",
  4784. image: {
  4785. source: "./media/characters/rain-fallen/feral.svg"
  4786. }
  4787. },
  4788. },
  4789. [
  4790. {
  4791. name: "Meddling with Mortals",
  4792. height: math.unit(8 + 8/12, "feet")
  4793. },
  4794. {
  4795. name: "Normal",
  4796. height: math.unit(5, "meter")
  4797. },
  4798. {
  4799. name: "Macro",
  4800. height: math.unit(150, "meter"),
  4801. default: true
  4802. },
  4803. {
  4804. name: "Megamacro",
  4805. height: math.unit(278e6, "meter")
  4806. },
  4807. {
  4808. name: "Gigamacro",
  4809. height: math.unit(2e9, "meter")
  4810. },
  4811. {
  4812. name: "Teramacro",
  4813. height: math.unit(8e12, "meter")
  4814. },
  4815. {
  4816. name: "Devourer",
  4817. height: math.unit(14, "zettameters")
  4818. },
  4819. {
  4820. name: "Scarlet King",
  4821. height: math.unit(18, "yottameters")
  4822. },
  4823. {
  4824. name: "Void",
  4825. height: math.unit(1e88, "yottameters")
  4826. }
  4827. ]
  4828. ))
  4829. characterMakers.push(() => makeCharacter(
  4830. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4831. {
  4832. standing: {
  4833. height: math.unit(6, "feet"),
  4834. weight: math.unit(180, "lbs"),
  4835. name: "Standing",
  4836. image: {
  4837. source: "./media/characters/zaakira/standing.svg",
  4838. extra: 1599/1504,
  4839. bottom: 39/1638
  4840. }
  4841. },
  4842. laying: {
  4843. height: math.unit(3, "feet"),
  4844. weight: math.unit(180, "lbs"),
  4845. name: "Laying",
  4846. image: {
  4847. source: "./media/characters/zaakira/laying.svg"
  4848. }
  4849. },
  4850. },
  4851. [
  4852. {
  4853. name: "Normal",
  4854. height: math.unit(12, "feet")
  4855. },
  4856. {
  4857. name: "Macro",
  4858. height: math.unit(279, "feet"),
  4859. default: true
  4860. }
  4861. ]
  4862. ))
  4863. characterMakers.push(() => makeCharacter(
  4864. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4865. {
  4866. femSfw: {
  4867. height: math.unit(8, "feet"),
  4868. weight: math.unit(350, "lb"),
  4869. name: "Fem",
  4870. image: {
  4871. source: "./media/characters/sigvald/fem-sfw.svg",
  4872. extra: 182 / 164,
  4873. bottom: 8.7 / 190.5
  4874. }
  4875. },
  4876. femNsfw: {
  4877. height: math.unit(8, "feet"),
  4878. weight: math.unit(350, "lb"),
  4879. name: "Fem (NSFW)",
  4880. image: {
  4881. source: "./media/characters/sigvald/fem-nsfw.svg",
  4882. extra: 182 / 164,
  4883. bottom: 8.7 / 190.5
  4884. }
  4885. },
  4886. maleNsfw: {
  4887. height: math.unit(8, "feet"),
  4888. weight: math.unit(350, "lb"),
  4889. name: "Male (NSFW)",
  4890. image: {
  4891. source: "./media/characters/sigvald/male-nsfw.svg",
  4892. extra: 182 / 164,
  4893. bottom: 8.7 / 190.5
  4894. }
  4895. },
  4896. hermNsfw: {
  4897. height: math.unit(8, "feet"),
  4898. weight: math.unit(350, "lb"),
  4899. name: "Herm (NSFW)",
  4900. image: {
  4901. source: "./media/characters/sigvald/herm-nsfw.svg",
  4902. extra: 182 / 164,
  4903. bottom: 8.7 / 190.5
  4904. }
  4905. },
  4906. dick: {
  4907. height: math.unit(2.36, "feet"),
  4908. name: "Dick",
  4909. image: {
  4910. source: "./media/characters/sigvald/dick.svg"
  4911. }
  4912. },
  4913. eye: {
  4914. height: math.unit(0.31, "feet"),
  4915. name: "Eye",
  4916. image: {
  4917. source: "./media/characters/sigvald/eye.svg"
  4918. }
  4919. },
  4920. mouth: {
  4921. height: math.unit(0.92, "feet"),
  4922. name: "Mouth",
  4923. image: {
  4924. source: "./media/characters/sigvald/mouth.svg"
  4925. }
  4926. },
  4927. paws: {
  4928. height: math.unit(2.2, "feet"),
  4929. name: "Paws",
  4930. image: {
  4931. source: "./media/characters/sigvald/paws.svg"
  4932. }
  4933. }
  4934. },
  4935. [
  4936. {
  4937. name: "Normal",
  4938. height: math.unit(8, "feet")
  4939. },
  4940. {
  4941. name: "Large",
  4942. height: math.unit(12, "feet")
  4943. },
  4944. {
  4945. name: "Larger",
  4946. height: math.unit(20, "feet")
  4947. },
  4948. {
  4949. name: "Macro",
  4950. height: math.unit(150, "feet")
  4951. },
  4952. {
  4953. name: "Macro+",
  4954. height: math.unit(200, "feet"),
  4955. default: true
  4956. },
  4957. ]
  4958. ))
  4959. characterMakers.push(() => makeCharacter(
  4960. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4961. {
  4962. side: {
  4963. height: math.unit(12, "feet"),
  4964. weight: math.unit(2000, "kg"),
  4965. name: "Side",
  4966. image: {
  4967. source: "./media/characters/scott/side.svg",
  4968. extra: 754 / 724,
  4969. bottom: 0.069
  4970. }
  4971. },
  4972. upright: {
  4973. height: math.unit(12, "feet"),
  4974. weight: math.unit(2000, "kg"),
  4975. name: "Upright",
  4976. image: {
  4977. source: "./media/characters/scott/upright.svg",
  4978. extra: 3881 / 3722,
  4979. bottom: 0.05
  4980. }
  4981. },
  4982. },
  4983. [
  4984. {
  4985. name: "Normal",
  4986. height: math.unit(12, "feet"),
  4987. default: true
  4988. },
  4989. ]
  4990. ))
  4991. characterMakers.push(() => makeCharacter(
  4992. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4993. {
  4994. side: {
  4995. height: math.unit(8, "meters"),
  4996. weight: math.unit(84755, "lbs"),
  4997. name: "Side",
  4998. image: {
  4999. source: "./media/characters/tobias/side.svg",
  5000. extra: 1474 / 1096,
  5001. bottom: 38.9 / 1513.1235
  5002. }
  5003. },
  5004. },
  5005. [
  5006. {
  5007. name: "Normal",
  5008. height: math.unit(8, "meters"),
  5009. default: true
  5010. },
  5011. ]
  5012. ))
  5013. characterMakers.push(() => makeCharacter(
  5014. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5015. {
  5016. front: {
  5017. height: math.unit(5.5, "feet"),
  5018. weight: math.unit(400, "lbs"),
  5019. name: "Front",
  5020. image: {
  5021. source: "./media/characters/kieran/front.svg",
  5022. extra: 2694 / 2364,
  5023. bottom: 217 / 2908
  5024. }
  5025. },
  5026. side: {
  5027. height: math.unit(5.5, "feet"),
  5028. weight: math.unit(400, "lbs"),
  5029. name: "Side",
  5030. image: {
  5031. source: "./media/characters/kieran/side.svg",
  5032. extra: 875 / 777,
  5033. bottom: 84.6 / 959
  5034. }
  5035. },
  5036. },
  5037. [
  5038. {
  5039. name: "Normal",
  5040. height: math.unit(5.5, "feet"),
  5041. default: true
  5042. },
  5043. ]
  5044. ))
  5045. characterMakers.push(() => makeCharacter(
  5046. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5047. {
  5048. side: {
  5049. height: math.unit(2, "meters"),
  5050. weight: math.unit(70, "kg"),
  5051. name: "Side",
  5052. image: {
  5053. source: "./media/characters/sanya/side.svg",
  5054. bottom: 0.02,
  5055. extra: 1.02
  5056. }
  5057. },
  5058. },
  5059. [
  5060. {
  5061. name: "Small",
  5062. height: math.unit(2, "meters")
  5063. },
  5064. {
  5065. name: "Normal",
  5066. height: math.unit(3, "meters")
  5067. },
  5068. {
  5069. name: "Macro",
  5070. height: math.unit(16, "meters"),
  5071. default: true
  5072. },
  5073. ]
  5074. ))
  5075. characterMakers.push(() => makeCharacter(
  5076. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5077. {
  5078. front: {
  5079. height: math.unit(2, "meters"),
  5080. weight: math.unit(120, "kg"),
  5081. name: "Front",
  5082. image: {
  5083. source: "./media/characters/miranda/front.svg",
  5084. extra: 195 / 185,
  5085. bottom: 10.9 / 206.5
  5086. }
  5087. },
  5088. back: {
  5089. height: math.unit(2, "meters"),
  5090. weight: math.unit(120, "kg"),
  5091. name: "Back",
  5092. image: {
  5093. source: "./media/characters/miranda/back.svg",
  5094. extra: 201 / 193,
  5095. bottom: 2.3 / 203.7
  5096. }
  5097. },
  5098. },
  5099. [
  5100. {
  5101. name: "Normal",
  5102. height: math.unit(10, "feet"),
  5103. default: true
  5104. }
  5105. ]
  5106. ))
  5107. characterMakers.push(() => makeCharacter(
  5108. { name: "James", species: ["deer"], tags: ["anthro"] },
  5109. {
  5110. side: {
  5111. height: math.unit(2, "meters"),
  5112. weight: math.unit(100, "kg"),
  5113. name: "Front",
  5114. image: {
  5115. source: "./media/characters/james/front.svg",
  5116. extra: 10 / 8.5
  5117. }
  5118. },
  5119. },
  5120. [
  5121. {
  5122. name: "Normal",
  5123. height: math.unit(8.5, "feet"),
  5124. default: true
  5125. }
  5126. ]
  5127. ))
  5128. characterMakers.push(() => makeCharacter(
  5129. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5130. {
  5131. side: {
  5132. height: math.unit(9.5, "feet"),
  5133. weight: math.unit(2500, "lbs"),
  5134. name: "Side",
  5135. image: {
  5136. source: "./media/characters/heather/side.svg"
  5137. }
  5138. },
  5139. },
  5140. [
  5141. {
  5142. name: "Normal",
  5143. height: math.unit(9.5, "feet"),
  5144. default: true
  5145. }
  5146. ]
  5147. ))
  5148. characterMakers.push(() => makeCharacter(
  5149. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5150. {
  5151. side: {
  5152. height: math.unit(6.5, "feet"),
  5153. weight: math.unit(400, "lbs"),
  5154. name: "Side",
  5155. image: {
  5156. source: "./media/characters/lukas/side.svg",
  5157. extra: 7.25 / 6.5
  5158. }
  5159. },
  5160. },
  5161. [
  5162. {
  5163. name: "Normal",
  5164. height: math.unit(6.5, "feet"),
  5165. default: true
  5166. }
  5167. ]
  5168. ))
  5169. characterMakers.push(() => makeCharacter(
  5170. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5171. {
  5172. side: {
  5173. height: math.unit(5, "feet"),
  5174. weight: math.unit(3000, "lbs"),
  5175. name: "Side",
  5176. image: {
  5177. source: "./media/characters/louise/side.svg"
  5178. }
  5179. },
  5180. },
  5181. [
  5182. {
  5183. name: "Normal",
  5184. height: math.unit(5, "feet"),
  5185. default: true
  5186. }
  5187. ]
  5188. ))
  5189. characterMakers.push(() => makeCharacter(
  5190. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5191. {
  5192. side: {
  5193. height: math.unit(6, "feet"),
  5194. weight: math.unit(150, "lbs"),
  5195. name: "Side",
  5196. image: {
  5197. source: "./media/characters/ramona/side.svg"
  5198. }
  5199. },
  5200. },
  5201. [
  5202. {
  5203. name: "Normal",
  5204. height: math.unit(5.3, "meters"),
  5205. default: true
  5206. },
  5207. {
  5208. name: "Macro",
  5209. height: math.unit(20, "stories")
  5210. },
  5211. {
  5212. name: "Macro+",
  5213. height: math.unit(50, "stories")
  5214. },
  5215. ]
  5216. ))
  5217. characterMakers.push(() => makeCharacter(
  5218. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5219. {
  5220. standing: {
  5221. height: math.unit(5.75, "feet"),
  5222. weight: math.unit(160, "lbs"),
  5223. name: "Standing",
  5224. image: {
  5225. source: "./media/characters/deerpuff/standing.svg",
  5226. extra: 682 / 624
  5227. }
  5228. },
  5229. sitting: {
  5230. height: math.unit(5.75 / 1.79, "feet"),
  5231. weight: math.unit(160, "lbs"),
  5232. name: "Sitting",
  5233. image: {
  5234. source: "./media/characters/deerpuff/sitting.svg",
  5235. bottom: 44 / 400,
  5236. extra: 1
  5237. }
  5238. },
  5239. taurLaying: {
  5240. height: math.unit(6, "feet"),
  5241. weight: math.unit(400, "lbs"),
  5242. name: "Taur (Laying)",
  5243. image: {
  5244. source: "./media/characters/deerpuff/taur-laying.svg"
  5245. }
  5246. },
  5247. },
  5248. [
  5249. {
  5250. name: "Puffball",
  5251. height: math.unit(6, "inches")
  5252. },
  5253. {
  5254. name: "Normalpuff",
  5255. height: math.unit(5.75, "feet")
  5256. },
  5257. {
  5258. name: "Macropuff",
  5259. height: math.unit(1500, "feet"),
  5260. default: true
  5261. },
  5262. {
  5263. name: "Megapuff",
  5264. height: math.unit(500, "miles")
  5265. },
  5266. {
  5267. name: "Gigapuff",
  5268. height: math.unit(250000, "miles")
  5269. },
  5270. {
  5271. name: "Omegapuff",
  5272. height: math.unit(1000, "lightyears")
  5273. },
  5274. ]
  5275. ))
  5276. characterMakers.push(() => makeCharacter(
  5277. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5278. {
  5279. stomping: {
  5280. height: math.unit(6, "feet"),
  5281. weight: math.unit(170, "lbs"),
  5282. name: "Stomping",
  5283. image: {
  5284. source: "./media/characters/vivian/stomping.svg"
  5285. }
  5286. },
  5287. sitting: {
  5288. height: math.unit(6 / 1.75, "feet"),
  5289. weight: math.unit(170, "lbs"),
  5290. name: "Sitting",
  5291. image: {
  5292. source: "./media/characters/vivian/sitting.svg",
  5293. bottom: 1 / 6.4,
  5294. extra: 1,
  5295. }
  5296. },
  5297. },
  5298. [
  5299. {
  5300. name: "Normal",
  5301. height: math.unit(7, "feet"),
  5302. default: true
  5303. },
  5304. {
  5305. name: "Macro",
  5306. height: math.unit(10, "stories")
  5307. },
  5308. {
  5309. name: "Macro+",
  5310. height: math.unit(30, "stories")
  5311. },
  5312. {
  5313. name: "Megamacro",
  5314. height: math.unit(10, "miles")
  5315. },
  5316. {
  5317. name: "Megamacro+",
  5318. height: math.unit(2750000, "meters")
  5319. },
  5320. ]
  5321. ))
  5322. characterMakers.push(() => makeCharacter(
  5323. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5324. {
  5325. front: {
  5326. height: math.unit(6, "feet"),
  5327. weight: math.unit(160, "lbs"),
  5328. name: "Front",
  5329. image: {
  5330. source: "./media/characters/prince/front.svg",
  5331. extra: 3400 / 3000
  5332. }
  5333. },
  5334. jumping: {
  5335. height: math.unit(6, "feet"),
  5336. weight: math.unit(160, "lbs"),
  5337. name: "Jumping",
  5338. image: {
  5339. source: "./media/characters/prince/jump.svg",
  5340. extra: 2555 / 2134
  5341. }
  5342. },
  5343. },
  5344. [
  5345. {
  5346. name: "Normal",
  5347. height: math.unit(7.75, "feet"),
  5348. default: true
  5349. },
  5350. {
  5351. name: "Not cute",
  5352. height: math.unit(17, "feet")
  5353. },
  5354. {
  5355. name: "I said NOT",
  5356. height: math.unit(91, "feet")
  5357. },
  5358. {
  5359. name: "Please stop",
  5360. height: math.unit(560, "feet")
  5361. },
  5362. {
  5363. name: "What have you done",
  5364. height: math.unit(2200, "feet")
  5365. },
  5366. {
  5367. name: "Deer God",
  5368. height: math.unit(3.6, "miles")
  5369. },
  5370. ]
  5371. ))
  5372. characterMakers.push(() => makeCharacter(
  5373. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5374. {
  5375. standing: {
  5376. height: math.unit(6, "feet"),
  5377. weight: math.unit(300, "lbs"),
  5378. name: "Standing",
  5379. image: {
  5380. source: "./media/characters/psymon/standing.svg",
  5381. extra: 1888 / 1810,
  5382. bottom: 0.05
  5383. }
  5384. },
  5385. slithering: {
  5386. height: math.unit(6, "feet"),
  5387. weight: math.unit(300, "lbs"),
  5388. name: "Slithering",
  5389. image: {
  5390. source: "./media/characters/psymon/slithering.svg",
  5391. extra: 1330 / 1224
  5392. }
  5393. },
  5394. slitheringAlt: {
  5395. height: math.unit(6, "feet"),
  5396. weight: math.unit(300, "lbs"),
  5397. name: "Slithering (Alt)",
  5398. image: {
  5399. source: "./media/characters/psymon/slithering-alt.svg",
  5400. extra: 1330 / 1224
  5401. }
  5402. },
  5403. },
  5404. [
  5405. {
  5406. name: "Normal",
  5407. height: math.unit(11.25, "feet"),
  5408. default: true
  5409. },
  5410. {
  5411. name: "Large",
  5412. height: math.unit(27, "feet")
  5413. },
  5414. {
  5415. name: "Giant",
  5416. height: math.unit(87, "feet")
  5417. },
  5418. {
  5419. name: "Macro",
  5420. height: math.unit(365, "feet")
  5421. },
  5422. {
  5423. name: "Megamacro",
  5424. height: math.unit(3, "miles")
  5425. },
  5426. {
  5427. name: "World Serpent",
  5428. height: math.unit(8000, "miles")
  5429. },
  5430. ]
  5431. ))
  5432. characterMakers.push(() => makeCharacter(
  5433. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5434. {
  5435. front: {
  5436. height: math.unit(6, "feet"),
  5437. weight: math.unit(180, "lbs"),
  5438. name: "Front",
  5439. image: {
  5440. source: "./media/characters/daimos/front.svg",
  5441. extra: 4160 / 3897,
  5442. bottom: 0.021
  5443. }
  5444. }
  5445. },
  5446. [
  5447. {
  5448. name: "Normal",
  5449. height: math.unit(8, "feet"),
  5450. default: true
  5451. },
  5452. {
  5453. name: "Big Dog",
  5454. height: math.unit(22, "feet")
  5455. },
  5456. {
  5457. name: "Macro",
  5458. height: math.unit(127, "feet")
  5459. },
  5460. {
  5461. name: "Megamacro",
  5462. height: math.unit(3600, "feet")
  5463. },
  5464. ]
  5465. ))
  5466. characterMakers.push(() => makeCharacter(
  5467. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5468. {
  5469. side: {
  5470. height: math.unit(6, "feet"),
  5471. weight: math.unit(180, "lbs"),
  5472. name: "Side",
  5473. image: {
  5474. source: "./media/characters/blake/side.svg",
  5475. extra: 1212 / 1120,
  5476. bottom: 0.05
  5477. }
  5478. },
  5479. crouched: {
  5480. height: math.unit(6 * 0.57, "feet"),
  5481. weight: math.unit(180, "lbs"),
  5482. name: "Crouched",
  5483. image: {
  5484. source: "./media/characters/blake/crouched.svg",
  5485. extra: 840 / 587,
  5486. bottom: 0.04
  5487. }
  5488. },
  5489. bent: {
  5490. height: math.unit(6 * 0.75, "feet"),
  5491. weight: math.unit(180, "lbs"),
  5492. name: "Bent",
  5493. image: {
  5494. source: "./media/characters/blake/bent.svg",
  5495. extra: 592 / 544,
  5496. bottom: 0.035
  5497. }
  5498. },
  5499. },
  5500. [
  5501. {
  5502. name: "Normal",
  5503. height: math.unit(8 + 1 / 6, "feet"),
  5504. default: true
  5505. },
  5506. {
  5507. name: "Big Backside",
  5508. height: math.unit(37, "feet")
  5509. },
  5510. {
  5511. name: "Subway Shredder",
  5512. height: math.unit(72, "feet")
  5513. },
  5514. {
  5515. name: "City Carver",
  5516. height: math.unit(1675, "feet")
  5517. },
  5518. {
  5519. name: "Tectonic Tweaker",
  5520. height: math.unit(2300, "miles")
  5521. },
  5522. ]
  5523. ))
  5524. characterMakers.push(() => makeCharacter(
  5525. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5526. {
  5527. front: {
  5528. height: math.unit(6, "feet"),
  5529. weight: math.unit(180, "lbs"),
  5530. name: "Front",
  5531. image: {
  5532. source: "./media/characters/guisetto/front.svg",
  5533. extra: 856 / 817,
  5534. bottom: 0.06
  5535. }
  5536. },
  5537. airborne: {
  5538. height: math.unit(6, "feet"),
  5539. weight: math.unit(180, "lbs"),
  5540. name: "Airborne",
  5541. image: {
  5542. source: "./media/characters/guisetto/airborne.svg",
  5543. extra: 584 / 525
  5544. }
  5545. },
  5546. },
  5547. [
  5548. {
  5549. name: "Normal",
  5550. height: math.unit(10 + 11 / 12, "feet"),
  5551. default: true
  5552. },
  5553. {
  5554. name: "Large",
  5555. height: math.unit(35, "feet")
  5556. },
  5557. {
  5558. name: "Macro",
  5559. height: math.unit(475, "feet")
  5560. },
  5561. ]
  5562. ))
  5563. characterMakers.push(() => makeCharacter(
  5564. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5565. {
  5566. front: {
  5567. height: math.unit(6, "feet"),
  5568. weight: math.unit(180, "lbs"),
  5569. name: "Front",
  5570. image: {
  5571. source: "./media/characters/luxor/front.svg",
  5572. extra: 2940 / 2152
  5573. }
  5574. },
  5575. back: {
  5576. height: math.unit(6, "feet"),
  5577. weight: math.unit(180, "lbs"),
  5578. name: "Back",
  5579. image: {
  5580. source: "./media/characters/luxor/back.svg",
  5581. extra: 1083 / 960
  5582. }
  5583. },
  5584. },
  5585. [
  5586. {
  5587. name: "Normal",
  5588. height: math.unit(5 + 5 / 6, "feet"),
  5589. default: true
  5590. },
  5591. {
  5592. name: "Lamp",
  5593. height: math.unit(50, "feet")
  5594. },
  5595. {
  5596. name: "Lämp",
  5597. height: math.unit(300, "feet")
  5598. },
  5599. {
  5600. name: "The sun is a lamp",
  5601. height: math.unit(250000, "miles")
  5602. },
  5603. ]
  5604. ))
  5605. characterMakers.push(() => makeCharacter(
  5606. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5607. {
  5608. front: {
  5609. height: math.unit(6, "feet"),
  5610. weight: math.unit(50, "lbs"),
  5611. name: "Front",
  5612. image: {
  5613. source: "./media/characters/huoyan/front.svg"
  5614. }
  5615. },
  5616. side: {
  5617. height: math.unit(6, "feet"),
  5618. weight: math.unit(180, "lbs"),
  5619. name: "Side",
  5620. image: {
  5621. source: "./media/characters/huoyan/side.svg"
  5622. }
  5623. },
  5624. },
  5625. [
  5626. {
  5627. name: "Chef",
  5628. height: math.unit(9, "feet")
  5629. },
  5630. {
  5631. name: "Normal",
  5632. height: math.unit(65, "feet"),
  5633. default: true
  5634. },
  5635. {
  5636. name: "Macro",
  5637. height: math.unit(780, "feet")
  5638. },
  5639. {
  5640. name: "Flaming Mountain",
  5641. height: math.unit(4.8, "miles")
  5642. },
  5643. {
  5644. name: "Celestial",
  5645. height: math.unit(765000, "miles")
  5646. },
  5647. ]
  5648. ))
  5649. characterMakers.push(() => makeCharacter(
  5650. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5651. {
  5652. front: {
  5653. height: math.unit(5 + 3 / 4, "feet"),
  5654. weight: math.unit(120, "lbs"),
  5655. name: "Front",
  5656. image: {
  5657. source: "./media/characters/tails/front.svg"
  5658. }
  5659. }
  5660. },
  5661. [
  5662. {
  5663. name: "Normal",
  5664. height: math.unit(5 + 3 / 4, "feet"),
  5665. default: true
  5666. }
  5667. ]
  5668. ))
  5669. characterMakers.push(() => makeCharacter(
  5670. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5671. {
  5672. front: {
  5673. height: math.unit(4, "feet"),
  5674. weight: math.unit(50, "lbs"),
  5675. name: "Front",
  5676. image: {
  5677. source: "./media/characters/rainy/front.svg"
  5678. }
  5679. }
  5680. },
  5681. [
  5682. {
  5683. name: "Macro",
  5684. height: math.unit(800, "feet"),
  5685. default: true
  5686. }
  5687. ]
  5688. ))
  5689. characterMakers.push(() => makeCharacter(
  5690. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5691. {
  5692. front: {
  5693. height: math.unit(6, "feet"),
  5694. weight: math.unit(150, "lbs"),
  5695. name: "Front",
  5696. image: {
  5697. source: "./media/characters/rainier/front.svg"
  5698. }
  5699. }
  5700. },
  5701. [
  5702. {
  5703. name: "Micro",
  5704. height: math.unit(2, "mm"),
  5705. default: true
  5706. }
  5707. ]
  5708. ))
  5709. characterMakers.push(() => makeCharacter(
  5710. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5711. {
  5712. front: {
  5713. height: math.unit(8 + 4/12, "feet"),
  5714. name: "Front",
  5715. image: {
  5716. source: "./media/characters/andy-renard/front.svg",
  5717. extra: 1839/1726,
  5718. bottom: 134/1973
  5719. }
  5720. },
  5721. back: {
  5722. height: math.unit(8 + 4/12, "feet"),
  5723. name: "Back",
  5724. image: {
  5725. source: "./media/characters/andy-renard/back.svg",
  5726. extra: 1838/1710,
  5727. bottom: 105/1943
  5728. }
  5729. },
  5730. },
  5731. [
  5732. {
  5733. name: "Tall",
  5734. height: math.unit(8 + 4/12, "feet")
  5735. },
  5736. {
  5737. name: "Mini Macro",
  5738. height: math.unit(15, "feet"),
  5739. default: true
  5740. },
  5741. {
  5742. name: "Macro",
  5743. height: math.unit(100, "feet")
  5744. },
  5745. {
  5746. name: "Mega Macro",
  5747. height: math.unit(1000, "feet")
  5748. },
  5749. {
  5750. name: "Giga Macro",
  5751. height: math.unit(10, "miles")
  5752. },
  5753. {
  5754. name: "God Macro",
  5755. height: math.unit(1, "multiverse")
  5756. },
  5757. ]
  5758. ))
  5759. characterMakers.push(() => makeCharacter(
  5760. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5761. {
  5762. front: {
  5763. height: math.unit(6, "feet"),
  5764. weight: math.unit(210, "lbs"),
  5765. name: "Front",
  5766. image: {
  5767. source: "./media/characters/cimmaron/front-sfw.svg",
  5768. extra: 701 / 676,
  5769. bottom: 0.046
  5770. }
  5771. },
  5772. back: {
  5773. height: math.unit(6, "feet"),
  5774. weight: math.unit(210, "lbs"),
  5775. name: "Back",
  5776. image: {
  5777. source: "./media/characters/cimmaron/back-sfw.svg",
  5778. extra: 701 / 676,
  5779. bottom: 0.046
  5780. }
  5781. },
  5782. frontNsfw: {
  5783. height: math.unit(6, "feet"),
  5784. weight: math.unit(210, "lbs"),
  5785. name: "Front (NSFW)",
  5786. image: {
  5787. source: "./media/characters/cimmaron/front-nsfw.svg",
  5788. extra: 701 / 676,
  5789. bottom: 0.046
  5790. }
  5791. },
  5792. backNsfw: {
  5793. height: math.unit(6, "feet"),
  5794. weight: math.unit(210, "lbs"),
  5795. name: "Back (NSFW)",
  5796. image: {
  5797. source: "./media/characters/cimmaron/back-nsfw.svg",
  5798. extra: 701 / 676,
  5799. bottom: 0.046
  5800. }
  5801. },
  5802. dick: {
  5803. height: math.unit(1.714, "feet"),
  5804. name: "Dick",
  5805. image: {
  5806. source: "./media/characters/cimmaron/dick.svg"
  5807. }
  5808. },
  5809. },
  5810. [
  5811. {
  5812. name: "Normal",
  5813. height: math.unit(6, "feet"),
  5814. default: true
  5815. },
  5816. {
  5817. name: "Macro Mayor",
  5818. height: math.unit(350, "meters")
  5819. },
  5820. ]
  5821. ))
  5822. characterMakers.push(() => makeCharacter(
  5823. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5824. {
  5825. front: {
  5826. height: math.unit(6, "feet"),
  5827. weight: math.unit(200, "lbs"),
  5828. name: "Front",
  5829. image: {
  5830. source: "./media/characters/akari/front.svg",
  5831. extra: 962 / 901,
  5832. bottom: 0.04
  5833. }
  5834. }
  5835. },
  5836. [
  5837. {
  5838. name: "Micro",
  5839. height: math.unit(5, "inches"),
  5840. default: true
  5841. },
  5842. {
  5843. name: "Normal",
  5844. height: math.unit(7, "feet")
  5845. },
  5846. ]
  5847. ))
  5848. characterMakers.push(() => makeCharacter(
  5849. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5850. {
  5851. front: {
  5852. height: math.unit(6, "feet"),
  5853. weight: math.unit(140, "lbs"),
  5854. name: "Front",
  5855. image: {
  5856. source: "./media/characters/cynosura/front.svg",
  5857. extra: 896 / 847
  5858. }
  5859. },
  5860. back: {
  5861. height: math.unit(6, "feet"),
  5862. weight: math.unit(140, "lbs"),
  5863. name: "Back",
  5864. image: {
  5865. source: "./media/characters/cynosura/back.svg",
  5866. extra: 1365 / 1250
  5867. }
  5868. },
  5869. },
  5870. [
  5871. {
  5872. name: "Micro",
  5873. height: math.unit(4, "inches")
  5874. },
  5875. {
  5876. name: "Normal",
  5877. height: math.unit(5.75, "feet"),
  5878. default: true
  5879. },
  5880. {
  5881. name: "Tall",
  5882. height: math.unit(10, "feet")
  5883. },
  5884. {
  5885. name: "Big",
  5886. height: math.unit(20, "feet")
  5887. },
  5888. {
  5889. name: "Macro",
  5890. height: math.unit(50, "feet")
  5891. },
  5892. ]
  5893. ))
  5894. characterMakers.push(() => makeCharacter(
  5895. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5896. {
  5897. front: {
  5898. height: math.unit(13 + 2/12, "feet"),
  5899. weight: math.unit(800, "kg"),
  5900. name: "Front",
  5901. image: {
  5902. source: "./media/characters/gin/front.svg",
  5903. extra: 1312/1191,
  5904. bottom: 45/1357
  5905. }
  5906. },
  5907. mouth: {
  5908. height: math.unit(2.39 * 1.8, "feet"),
  5909. name: "Mouth",
  5910. image: {
  5911. source: "./media/characters/gin/mouth.svg"
  5912. }
  5913. },
  5914. hand: {
  5915. height: math.unit(1.57 * 2.19, "feet"),
  5916. name: "Hand",
  5917. image: {
  5918. source: "./media/characters/gin/hand.svg"
  5919. }
  5920. },
  5921. foot: {
  5922. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5923. name: "Foot",
  5924. image: {
  5925. source: "./media/characters/gin/foot.svg"
  5926. }
  5927. },
  5928. sole: {
  5929. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5930. name: "Sole",
  5931. image: {
  5932. source: "./media/characters/gin/sole.svg"
  5933. }
  5934. },
  5935. },
  5936. [
  5937. {
  5938. name: "Very Small",
  5939. height: math.unit(13 + 2 / 12, "feet")
  5940. },
  5941. {
  5942. name: "Micro",
  5943. height: math.unit(600, "miles")
  5944. },
  5945. {
  5946. name: "Regular",
  5947. height: math.unit(20, "earths"),
  5948. default: true
  5949. },
  5950. {
  5951. name: "Macro",
  5952. height: math.unit(2.2, "solarradii")
  5953. },
  5954. {
  5955. name: "Teramacro",
  5956. height: math.unit(1.2, "galaxies")
  5957. },
  5958. {
  5959. name: "Omegamacro",
  5960. height: math.unit(200, "universes")
  5961. },
  5962. ]
  5963. ))
  5964. characterMakers.push(() => makeCharacter(
  5965. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5966. {
  5967. front: {
  5968. height: math.unit(6 + 1 / 6, "feet"),
  5969. weight: math.unit(178, "lbs"),
  5970. name: "Front",
  5971. image: {
  5972. source: "./media/characters/guy/front.svg"
  5973. }
  5974. }
  5975. },
  5976. [
  5977. {
  5978. name: "Normal",
  5979. height: math.unit(6 + 1 / 6, "feet"),
  5980. default: true
  5981. },
  5982. {
  5983. name: "Large",
  5984. height: math.unit(25 + 7 / 12, "feet")
  5985. },
  5986. {
  5987. name: "Macro",
  5988. height: math.unit(60 + 9 / 12, "feet")
  5989. },
  5990. {
  5991. name: "Macro+",
  5992. height: math.unit(246, "feet")
  5993. },
  5994. {
  5995. name: "Macro++",
  5996. height: math.unit(878, "feet")
  5997. }
  5998. ]
  5999. ))
  6000. characterMakers.push(() => makeCharacter(
  6001. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6002. {
  6003. front: {
  6004. height: math.unit(9, "feet"),
  6005. weight: math.unit(800, "lbs"),
  6006. name: "Front",
  6007. image: {
  6008. source: "./media/characters/tiberius/front.svg",
  6009. extra: 2295 / 2071
  6010. }
  6011. },
  6012. back: {
  6013. height: math.unit(9, "feet"),
  6014. weight: math.unit(800, "lbs"),
  6015. name: "Back",
  6016. image: {
  6017. source: "./media/characters/tiberius/back.svg",
  6018. extra: 2373 / 2160
  6019. }
  6020. },
  6021. },
  6022. [
  6023. {
  6024. name: "Normal",
  6025. height: math.unit(9, "feet"),
  6026. default: true
  6027. }
  6028. ]
  6029. ))
  6030. characterMakers.push(() => makeCharacter(
  6031. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6032. {
  6033. front: {
  6034. height: math.unit(6, "feet"),
  6035. weight: math.unit(600, "lbs"),
  6036. name: "Front",
  6037. image: {
  6038. source: "./media/characters/surgo/front.svg",
  6039. extra: 3591 / 2227
  6040. }
  6041. },
  6042. back: {
  6043. height: math.unit(6, "feet"),
  6044. weight: math.unit(600, "lbs"),
  6045. name: "Back",
  6046. image: {
  6047. source: "./media/characters/surgo/back.svg",
  6048. extra: 3557 / 2228
  6049. }
  6050. },
  6051. laying: {
  6052. height: math.unit(6 * 0.85, "feet"),
  6053. weight: math.unit(600, "lbs"),
  6054. name: "Laying",
  6055. image: {
  6056. source: "./media/characters/surgo/laying.svg"
  6057. }
  6058. },
  6059. },
  6060. [
  6061. {
  6062. name: "Normal",
  6063. height: math.unit(6, "feet"),
  6064. default: true
  6065. }
  6066. ]
  6067. ))
  6068. characterMakers.push(() => makeCharacter(
  6069. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6070. {
  6071. side: {
  6072. height: math.unit(6, "feet"),
  6073. weight: math.unit(150, "lbs"),
  6074. name: "Side",
  6075. image: {
  6076. source: "./media/characters/cibus/side.svg",
  6077. extra: 800 / 400
  6078. }
  6079. },
  6080. },
  6081. [
  6082. {
  6083. name: "Normal",
  6084. height: math.unit(6, "feet"),
  6085. default: true
  6086. }
  6087. ]
  6088. ))
  6089. characterMakers.push(() => makeCharacter(
  6090. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6091. {
  6092. front: {
  6093. height: math.unit(6, "feet"),
  6094. weight: math.unit(240, "lbs"),
  6095. name: "Front",
  6096. image: {
  6097. source: "./media/characters/nibbles/front.svg"
  6098. }
  6099. },
  6100. side: {
  6101. height: math.unit(6, "feet"),
  6102. weight: math.unit(240, "lbs"),
  6103. name: "Side",
  6104. image: {
  6105. source: "./media/characters/nibbles/side.svg"
  6106. }
  6107. },
  6108. },
  6109. [
  6110. {
  6111. name: "Normal",
  6112. height: math.unit(9, "feet"),
  6113. default: true
  6114. }
  6115. ]
  6116. ))
  6117. characterMakers.push(() => makeCharacter(
  6118. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6119. {
  6120. side: {
  6121. height: math.unit(5 + 1 / 6, "feet"),
  6122. weight: math.unit(130, "lbs"),
  6123. name: "Side",
  6124. image: {
  6125. source: "./media/characters/rikky/side.svg",
  6126. extra: 851 / 801
  6127. }
  6128. },
  6129. },
  6130. [
  6131. {
  6132. name: "Normal",
  6133. height: math.unit(5 + 1 / 6, "feet")
  6134. },
  6135. {
  6136. name: "Macro",
  6137. height: math.unit(152, "feet"),
  6138. default: true
  6139. },
  6140. {
  6141. name: "Megamacro",
  6142. height: math.unit(7, "miles")
  6143. }
  6144. ]
  6145. ))
  6146. characterMakers.push(() => makeCharacter(
  6147. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6148. {
  6149. side: {
  6150. height: math.unit(370, "cm"),
  6151. weight: math.unit(350, "lbs"),
  6152. name: "Side",
  6153. image: {
  6154. source: "./media/characters/malfressa/side.svg"
  6155. }
  6156. },
  6157. walking: {
  6158. height: math.unit(370, "cm"),
  6159. weight: math.unit(350, "lbs"),
  6160. name: "Walking",
  6161. image: {
  6162. source: "./media/characters/malfressa/walking.svg"
  6163. }
  6164. },
  6165. feral: {
  6166. height: math.unit(2500, "cm"),
  6167. weight: math.unit(100000, "lbs"),
  6168. name: "Feral",
  6169. image: {
  6170. source: "./media/characters/malfressa/feral.svg",
  6171. extra: 2108 / 837,
  6172. bottom: 0.02
  6173. }
  6174. },
  6175. },
  6176. [
  6177. {
  6178. name: "Normal",
  6179. height: math.unit(370, "cm")
  6180. },
  6181. {
  6182. name: "Macro",
  6183. height: math.unit(300, "meters"),
  6184. default: true
  6185. }
  6186. ]
  6187. ))
  6188. characterMakers.push(() => makeCharacter(
  6189. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6190. {
  6191. front: {
  6192. height: math.unit(6, "feet"),
  6193. weight: math.unit(60, "kg"),
  6194. name: "Front",
  6195. image: {
  6196. source: "./media/characters/jaro/front.svg"
  6197. }
  6198. },
  6199. back: {
  6200. height: math.unit(6, "feet"),
  6201. weight: math.unit(60, "kg"),
  6202. name: "Back",
  6203. image: {
  6204. source: "./media/characters/jaro/back.svg"
  6205. }
  6206. },
  6207. },
  6208. [
  6209. {
  6210. name: "Micro",
  6211. height: math.unit(7, "inches")
  6212. },
  6213. {
  6214. name: "Normal",
  6215. height: math.unit(5.5, "feet"),
  6216. default: true
  6217. },
  6218. {
  6219. name: "Minimacro",
  6220. height: math.unit(20, "feet")
  6221. },
  6222. {
  6223. name: "Macro",
  6224. height: math.unit(200, "meters")
  6225. }
  6226. ]
  6227. ))
  6228. characterMakers.push(() => makeCharacter(
  6229. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6230. {
  6231. front: {
  6232. height: math.unit(6, "feet"),
  6233. weight: math.unit(195, "lb"),
  6234. name: "Front",
  6235. image: {
  6236. source: "./media/characters/rogue/front.svg"
  6237. }
  6238. },
  6239. },
  6240. [
  6241. {
  6242. name: "Macro",
  6243. height: math.unit(90, "feet"),
  6244. default: true
  6245. },
  6246. ]
  6247. ))
  6248. characterMakers.push(() => makeCharacter(
  6249. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6250. {
  6251. front: {
  6252. height: math.unit(5 + 8 / 12, "feet"),
  6253. weight: math.unit(140, "lb"),
  6254. name: "Front",
  6255. image: {
  6256. source: "./media/characters/piper/front.svg",
  6257. extra: 3948/3655,
  6258. bottom: 0/3948
  6259. }
  6260. },
  6261. },
  6262. [
  6263. {
  6264. name: "Micro",
  6265. height: math.unit(2, "inches")
  6266. },
  6267. {
  6268. name: "Normal",
  6269. height: math.unit(5 + 8 / 12, "feet")
  6270. },
  6271. {
  6272. name: "Macro",
  6273. height: math.unit(250, "feet"),
  6274. default: true
  6275. },
  6276. {
  6277. name: "Megamacro",
  6278. height: math.unit(7, "miles")
  6279. },
  6280. ]
  6281. ))
  6282. characterMakers.push(() => makeCharacter(
  6283. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6284. {
  6285. front: {
  6286. height: math.unit(6, "feet"),
  6287. weight: math.unit(220, "lb"),
  6288. name: "Front",
  6289. image: {
  6290. source: "./media/characters/gemini/front.svg"
  6291. }
  6292. },
  6293. back: {
  6294. height: math.unit(6, "feet"),
  6295. weight: math.unit(220, "lb"),
  6296. name: "Back",
  6297. image: {
  6298. source: "./media/characters/gemini/back.svg"
  6299. }
  6300. },
  6301. kneeling: {
  6302. height: math.unit(6 / 1.5, "feet"),
  6303. weight: math.unit(220, "lb"),
  6304. name: "Kneeling",
  6305. image: {
  6306. source: "./media/characters/gemini/kneeling.svg",
  6307. bottom: 0.02
  6308. }
  6309. },
  6310. },
  6311. [
  6312. {
  6313. name: "Macro",
  6314. height: math.unit(300, "meters"),
  6315. default: true
  6316. },
  6317. {
  6318. name: "Megamacro",
  6319. height: math.unit(6900, "meters")
  6320. },
  6321. ]
  6322. ))
  6323. characterMakers.push(() => makeCharacter(
  6324. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6325. {
  6326. anthro: {
  6327. height: math.unit(2.35, "meters"),
  6328. weight: math.unit(73, "kg"),
  6329. name: "Anthro",
  6330. image: {
  6331. source: "./media/characters/alicia/anthro.svg",
  6332. extra: 2571 / 2385,
  6333. bottom: 75 / 2648
  6334. }
  6335. },
  6336. paw: {
  6337. height: math.unit(1.32, "feet"),
  6338. name: "Paw",
  6339. image: {
  6340. source: "./media/characters/alicia/paw.svg"
  6341. }
  6342. },
  6343. feral: {
  6344. height: math.unit(1.69, "meters"),
  6345. weight: math.unit(73, "kg"),
  6346. name: "Feral",
  6347. image: {
  6348. source: "./media/characters/alicia/feral.svg",
  6349. extra: 2123 / 1715,
  6350. bottom: 222 / 2349
  6351. }
  6352. },
  6353. },
  6354. [
  6355. {
  6356. name: "Normal",
  6357. height: math.unit(2.35, "meters")
  6358. },
  6359. {
  6360. name: "Macro",
  6361. height: math.unit(60, "meters"),
  6362. default: true
  6363. },
  6364. {
  6365. name: "Megamacro",
  6366. height: math.unit(10000, "kilometers")
  6367. },
  6368. ]
  6369. ))
  6370. characterMakers.push(() => makeCharacter(
  6371. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6372. {
  6373. front: {
  6374. height: math.unit(7, "feet"),
  6375. weight: math.unit(250, "lbs"),
  6376. name: "Front",
  6377. image: {
  6378. source: "./media/characters/archy/front.svg"
  6379. }
  6380. }
  6381. },
  6382. [
  6383. {
  6384. name: "Micro",
  6385. height: math.unit(1, "inch")
  6386. },
  6387. {
  6388. name: "Shorty",
  6389. height: math.unit(5, "feet")
  6390. },
  6391. {
  6392. name: "Normal",
  6393. height: math.unit(7, "feet")
  6394. },
  6395. {
  6396. name: "Macro",
  6397. height: math.unit(600, "meters"),
  6398. default: true
  6399. },
  6400. {
  6401. name: "Megamacro",
  6402. height: math.unit(1, "mile")
  6403. },
  6404. ]
  6405. ))
  6406. characterMakers.push(() => makeCharacter(
  6407. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6408. {
  6409. front: {
  6410. height: math.unit(1.65, "meters"),
  6411. weight: math.unit(74, "kg"),
  6412. name: "Front",
  6413. image: {
  6414. source: "./media/characters/berri/front.svg",
  6415. extra: 857 / 837,
  6416. bottom: 18 / 877
  6417. }
  6418. },
  6419. bum: {
  6420. height: math.unit(1.46, "feet"),
  6421. name: "Bum",
  6422. image: {
  6423. source: "./media/characters/berri/bum.svg"
  6424. }
  6425. },
  6426. mouth: {
  6427. height: math.unit(0.44, "feet"),
  6428. name: "Mouth",
  6429. image: {
  6430. source: "./media/characters/berri/mouth.svg"
  6431. }
  6432. },
  6433. paw: {
  6434. height: math.unit(0.826, "feet"),
  6435. name: "Paw",
  6436. image: {
  6437. source: "./media/characters/berri/paw.svg"
  6438. }
  6439. },
  6440. },
  6441. [
  6442. {
  6443. name: "Normal",
  6444. height: math.unit(1.65, "meters")
  6445. },
  6446. {
  6447. name: "Macro",
  6448. height: math.unit(60, "m"),
  6449. default: true
  6450. },
  6451. {
  6452. name: "Megamacro",
  6453. height: math.unit(9.213, "km")
  6454. },
  6455. {
  6456. name: "Planet Eater",
  6457. height: math.unit(489, "megameters")
  6458. },
  6459. {
  6460. name: "Teramacro",
  6461. height: math.unit(2471635000000, "meters")
  6462. },
  6463. {
  6464. name: "Examacro",
  6465. height: math.unit(8.0624e+26, "meters")
  6466. }
  6467. ]
  6468. ))
  6469. characterMakers.push(() => makeCharacter(
  6470. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6471. {
  6472. front: {
  6473. height: math.unit(1.72, "meters"),
  6474. weight: math.unit(68, "kg"),
  6475. name: "Front",
  6476. image: {
  6477. source: "./media/characters/lexi/front.svg"
  6478. }
  6479. }
  6480. },
  6481. [
  6482. {
  6483. name: "Very Smol",
  6484. height: math.unit(10, "mm")
  6485. },
  6486. {
  6487. name: "Micro",
  6488. height: math.unit(6.8, "cm"),
  6489. default: true
  6490. },
  6491. {
  6492. name: "Normal",
  6493. height: math.unit(1.72, "m")
  6494. }
  6495. ]
  6496. ))
  6497. characterMakers.push(() => makeCharacter(
  6498. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6499. {
  6500. front: {
  6501. height: math.unit(1.69, "meters"),
  6502. weight: math.unit(68, "kg"),
  6503. name: "Front",
  6504. image: {
  6505. source: "./media/characters/martin/front.svg",
  6506. extra: 596 / 581
  6507. }
  6508. }
  6509. },
  6510. [
  6511. {
  6512. name: "Micro",
  6513. height: math.unit(6.85, "cm"),
  6514. default: true
  6515. },
  6516. {
  6517. name: "Normal",
  6518. height: math.unit(1.69, "m")
  6519. }
  6520. ]
  6521. ))
  6522. characterMakers.push(() => makeCharacter(
  6523. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6524. {
  6525. front: {
  6526. height: math.unit(1.69, "meters"),
  6527. weight: math.unit(68, "kg"),
  6528. name: "Front",
  6529. image: {
  6530. source: "./media/characters/juno/front.svg"
  6531. }
  6532. }
  6533. },
  6534. [
  6535. {
  6536. name: "Micro",
  6537. height: math.unit(7, "cm")
  6538. },
  6539. {
  6540. name: "Normal",
  6541. height: math.unit(1.89, "m")
  6542. },
  6543. {
  6544. name: "Macro",
  6545. height: math.unit(353, "meters"),
  6546. default: true
  6547. }
  6548. ]
  6549. ))
  6550. characterMakers.push(() => makeCharacter(
  6551. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6552. {
  6553. front: {
  6554. height: math.unit(1.93, "meters"),
  6555. weight: math.unit(83, "kg"),
  6556. name: "Front",
  6557. image: {
  6558. source: "./media/characters/samantha/front.svg"
  6559. }
  6560. },
  6561. frontClothed: {
  6562. height: math.unit(1.93, "meters"),
  6563. weight: math.unit(83, "kg"),
  6564. name: "Front (Clothed)",
  6565. image: {
  6566. source: "./media/characters/samantha/front-clothed.svg"
  6567. }
  6568. },
  6569. back: {
  6570. height: math.unit(1.93, "meters"),
  6571. weight: math.unit(83, "kg"),
  6572. name: "Back",
  6573. image: {
  6574. source: "./media/characters/samantha/back.svg"
  6575. }
  6576. },
  6577. },
  6578. [
  6579. {
  6580. name: "Normal",
  6581. height: math.unit(1.93, "m")
  6582. },
  6583. {
  6584. name: "Macro",
  6585. height: math.unit(74, "meters"),
  6586. default: true
  6587. },
  6588. {
  6589. name: "Macro+",
  6590. height: math.unit(223, "meters"),
  6591. },
  6592. {
  6593. name: "Megamacro",
  6594. height: math.unit(8381, "meters"),
  6595. },
  6596. {
  6597. name: "Megamacro+",
  6598. height: math.unit(12000, "kilometers")
  6599. },
  6600. ]
  6601. ))
  6602. characterMakers.push(() => makeCharacter(
  6603. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6604. {
  6605. front: {
  6606. height: math.unit(1.92, "meters"),
  6607. weight: math.unit(80, "kg"),
  6608. name: "Front",
  6609. image: {
  6610. source: "./media/characters/dr-clay/front.svg"
  6611. }
  6612. },
  6613. frontClothed: {
  6614. height: math.unit(1.92, "meters"),
  6615. weight: math.unit(80, "kg"),
  6616. name: "Front (Clothed)",
  6617. image: {
  6618. source: "./media/characters/dr-clay/front-clothed.svg"
  6619. }
  6620. }
  6621. },
  6622. [
  6623. {
  6624. name: "Normal",
  6625. height: math.unit(1.92, "m")
  6626. },
  6627. {
  6628. name: "Macro",
  6629. height: math.unit(214, "meters"),
  6630. default: true
  6631. },
  6632. {
  6633. name: "Macro+",
  6634. height: math.unit(12.237, "meters"),
  6635. },
  6636. {
  6637. name: "Megamacro",
  6638. height: math.unit(557, "megameters"),
  6639. },
  6640. {
  6641. name: "Unimaginable",
  6642. height: math.unit(120e9, "lightyears")
  6643. },
  6644. ]
  6645. ))
  6646. characterMakers.push(() => makeCharacter(
  6647. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6648. {
  6649. front: {
  6650. height: math.unit(2, "meters"),
  6651. weight: math.unit(80, "kg"),
  6652. name: "Front",
  6653. image: {
  6654. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6655. }
  6656. }
  6657. },
  6658. [
  6659. {
  6660. name: "Teramacro",
  6661. height: math.unit(500000, "lightyears"),
  6662. default: true
  6663. },
  6664. ]
  6665. ))
  6666. characterMakers.push(() => makeCharacter(
  6667. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6668. {
  6669. crux: {
  6670. height: math.unit(2, "meters"),
  6671. weight: math.unit(150, "kg"),
  6672. name: "Crux",
  6673. image: {
  6674. source: "./media/characters/vemus/crux.svg",
  6675. extra: 1074/936,
  6676. bottom: 23/1097
  6677. }
  6678. },
  6679. skunkTanuki: {
  6680. height: math.unit(2, "meters"),
  6681. weight: math.unit(150, "kg"),
  6682. name: "Skunk-Tanuki",
  6683. image: {
  6684. source: "./media/characters/vemus/skunk-tanuki.svg",
  6685. extra: 926/893,
  6686. bottom: 20/946
  6687. }
  6688. },
  6689. },
  6690. [
  6691. {
  6692. name: "Normal",
  6693. height: math.unit(3.75, "meters"),
  6694. default: true
  6695. },
  6696. {
  6697. name: "Big",
  6698. height: math.unit(8, "meters")
  6699. },
  6700. {
  6701. name: "Macro",
  6702. height: math.unit(100, "meters")
  6703. },
  6704. {
  6705. name: "Macro+",
  6706. height: math.unit(1500, "meters")
  6707. },
  6708. {
  6709. name: "Stellar",
  6710. height: math.unit(14e8, "meters")
  6711. },
  6712. ]
  6713. ))
  6714. characterMakers.push(() => makeCharacter(
  6715. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6716. {
  6717. front: {
  6718. height: math.unit(2, "meters"),
  6719. weight: math.unit(70, "kg"),
  6720. name: "Front",
  6721. image: {
  6722. source: "./media/characters/beherit/front.svg",
  6723. extra: 1408 / 1242
  6724. }
  6725. }
  6726. },
  6727. [
  6728. {
  6729. name: "Normal",
  6730. height: math.unit(6, "feet")
  6731. },
  6732. {
  6733. name: "Lorg",
  6734. height: math.unit(25, "feet"),
  6735. default: true
  6736. },
  6737. {
  6738. name: "Lorger",
  6739. height: math.unit(75, "feet")
  6740. },
  6741. {
  6742. name: "Macro",
  6743. height: math.unit(200, "meters")
  6744. },
  6745. ]
  6746. ))
  6747. characterMakers.push(() => makeCharacter(
  6748. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6749. {
  6750. front: {
  6751. height: math.unit(2, "meters"),
  6752. weight: math.unit(150, "kg"),
  6753. name: "Front",
  6754. image: {
  6755. source: "./media/characters/everett/front.svg",
  6756. extra: 2038 / 1737,
  6757. bottom: 0.03
  6758. }
  6759. },
  6760. paw: {
  6761. height: math.unit(2 / 3.6, "meters"),
  6762. name: "Paw",
  6763. image: {
  6764. source: "./media/characters/everett/paw.svg"
  6765. }
  6766. },
  6767. },
  6768. [
  6769. {
  6770. name: "Normal",
  6771. height: math.unit(15, "feet"),
  6772. default: true
  6773. },
  6774. {
  6775. name: "Lorg",
  6776. height: math.unit(70, "feet"),
  6777. default: true
  6778. },
  6779. {
  6780. name: "Lorger",
  6781. height: math.unit(250, "feet")
  6782. },
  6783. {
  6784. name: "Macro",
  6785. height: math.unit(500, "meters")
  6786. },
  6787. ]
  6788. ))
  6789. characterMakers.push(() => makeCharacter(
  6790. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6791. {
  6792. front: {
  6793. height: math.unit(2, "meters"),
  6794. weight: math.unit(86, "kg"),
  6795. name: "Front",
  6796. image: {
  6797. source: "./media/characters/rose/front.svg",
  6798. extra: 1785/1636,
  6799. bottom: 30/1815
  6800. }
  6801. },
  6802. frontSporty: {
  6803. height: math.unit(2, "meters"),
  6804. weight: math.unit(86, "kg"),
  6805. name: "Front (Sporty)",
  6806. image: {
  6807. source: "./media/characters/rose/front-sporty.svg",
  6808. extra: 350/335,
  6809. bottom: 10/360
  6810. }
  6811. },
  6812. frontAlt: {
  6813. height: math.unit(1.6, "meters"),
  6814. weight: math.unit(86, "kg"),
  6815. name: "Front (Alt)",
  6816. image: {
  6817. source: "./media/characters/rose/front-alt.svg",
  6818. extra: 299/283,
  6819. bottom: 3/302
  6820. }
  6821. },
  6822. plush: {
  6823. height: math.unit(2, "meters"),
  6824. weight: math.unit(86/3, "kg"),
  6825. name: "Plush",
  6826. image: {
  6827. source: "./media/characters/rose/plush.svg",
  6828. extra: 361/337,
  6829. bottom: 11/372
  6830. }
  6831. },
  6832. },
  6833. [
  6834. {
  6835. name: "True Micro",
  6836. height: math.unit(9, "cm")
  6837. },
  6838. {
  6839. name: "Micro",
  6840. height: math.unit(16, "cm")
  6841. },
  6842. {
  6843. name: "Normal",
  6844. height: math.unit(1.85, "meters"),
  6845. default: true
  6846. },
  6847. {
  6848. name: "Mini-Macro",
  6849. height: math.unit(5, "meters")
  6850. },
  6851. {
  6852. name: "Macro",
  6853. height: math.unit(15, "meters")
  6854. },
  6855. {
  6856. name: "True Macro",
  6857. height: math.unit(40, "meters")
  6858. },
  6859. {
  6860. name: "City Scale",
  6861. height: math.unit(1, "km")
  6862. },
  6863. ]
  6864. ))
  6865. characterMakers.push(() => makeCharacter(
  6866. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6867. {
  6868. front: {
  6869. height: math.unit(2, "meters"),
  6870. weight: math.unit(350, "lbs"),
  6871. name: "Front",
  6872. image: {
  6873. source: "./media/characters/regal/front.svg"
  6874. }
  6875. },
  6876. back: {
  6877. height: math.unit(2, "meters"),
  6878. weight: math.unit(350, "lbs"),
  6879. name: "Back",
  6880. image: {
  6881. source: "./media/characters/regal/back.svg"
  6882. }
  6883. },
  6884. },
  6885. [
  6886. {
  6887. name: "Macro",
  6888. height: math.unit(350, "feet"),
  6889. default: true
  6890. }
  6891. ]
  6892. ))
  6893. characterMakers.push(() => makeCharacter(
  6894. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6895. {
  6896. front: {
  6897. height: math.unit(4 + 11 / 12, "feet"),
  6898. weight: math.unit(100, "lbs"),
  6899. name: "Front",
  6900. image: {
  6901. source: "./media/characters/opal/front.svg"
  6902. }
  6903. },
  6904. frontAlt: {
  6905. height: math.unit(4 + 11 / 12, "feet"),
  6906. weight: math.unit(100, "lbs"),
  6907. name: "Front (Alt)",
  6908. image: {
  6909. source: "./media/characters/opal/front-alt.svg"
  6910. }
  6911. },
  6912. },
  6913. [
  6914. {
  6915. name: "Small",
  6916. height: math.unit(4 + 11 / 12, "feet")
  6917. },
  6918. {
  6919. name: "Normal",
  6920. height: math.unit(20, "feet"),
  6921. default: true
  6922. },
  6923. {
  6924. name: "Macro",
  6925. height: math.unit(120, "feet")
  6926. },
  6927. {
  6928. name: "Megamacro",
  6929. height: math.unit(80, "miles")
  6930. },
  6931. {
  6932. name: "True Size",
  6933. height: math.unit(100000, "lightyears")
  6934. },
  6935. ]
  6936. ))
  6937. characterMakers.push(() => makeCharacter(
  6938. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6939. {
  6940. front: {
  6941. height: math.unit(6, "feet"),
  6942. weight: math.unit(200, "lbs"),
  6943. name: "Front",
  6944. image: {
  6945. source: "./media/characters/vector-wuff/front.svg"
  6946. }
  6947. }
  6948. },
  6949. [
  6950. {
  6951. name: "Normal",
  6952. height: math.unit(2.8, "meters")
  6953. },
  6954. {
  6955. name: "Macro",
  6956. height: math.unit(450, "meters"),
  6957. default: true
  6958. },
  6959. {
  6960. name: "Megamacro",
  6961. height: math.unit(15, "kilometers")
  6962. }
  6963. ]
  6964. ))
  6965. characterMakers.push(() => makeCharacter(
  6966. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6967. {
  6968. front: {
  6969. height: math.unit(6, "feet"),
  6970. weight: math.unit(256, "lbs"),
  6971. name: "Front",
  6972. image: {
  6973. source: "./media/characters/dannik/front.svg"
  6974. }
  6975. }
  6976. },
  6977. [
  6978. {
  6979. name: "Macro",
  6980. height: math.unit(69.57, "meters"),
  6981. default: true
  6982. },
  6983. ]
  6984. ))
  6985. characterMakers.push(() => makeCharacter(
  6986. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6987. {
  6988. front: {
  6989. height: math.unit(6, "feet"),
  6990. weight: math.unit(120, "lbs"),
  6991. name: "Front",
  6992. image: {
  6993. source: "./media/characters/azura-saharah/front.svg"
  6994. }
  6995. },
  6996. back: {
  6997. height: math.unit(6, "feet"),
  6998. weight: math.unit(120, "lbs"),
  6999. name: "Back",
  7000. image: {
  7001. source: "./media/characters/azura-saharah/back.svg"
  7002. }
  7003. },
  7004. },
  7005. [
  7006. {
  7007. name: "Macro",
  7008. height: math.unit(100, "feet"),
  7009. default: true
  7010. },
  7011. ]
  7012. ))
  7013. characterMakers.push(() => makeCharacter(
  7014. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7015. {
  7016. side: {
  7017. height: math.unit(5 + 4 / 12, "feet"),
  7018. weight: math.unit(163, "lbs"),
  7019. name: "Side",
  7020. image: {
  7021. source: "./media/characters/kennedy/side.svg"
  7022. }
  7023. }
  7024. },
  7025. [
  7026. {
  7027. name: "Standard Doggo",
  7028. height: math.unit(5 + 4 / 12, "feet")
  7029. },
  7030. {
  7031. name: "Big Doggo",
  7032. height: math.unit(25 + 3 / 12, "feet"),
  7033. default: true
  7034. },
  7035. ]
  7036. ))
  7037. characterMakers.push(() => makeCharacter(
  7038. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7039. {
  7040. front: {
  7041. height: math.unit(6, "feet"),
  7042. weight: math.unit(90, "lbs"),
  7043. name: "Front",
  7044. image: {
  7045. source: "./media/characters/odi-lunar/front.svg"
  7046. }
  7047. }
  7048. },
  7049. [
  7050. {
  7051. name: "Micro",
  7052. height: math.unit(3, "inches"),
  7053. default: true
  7054. },
  7055. {
  7056. name: "Normal",
  7057. height: math.unit(5.5, "feet")
  7058. }
  7059. ]
  7060. ))
  7061. characterMakers.push(() => makeCharacter(
  7062. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7063. {
  7064. back: {
  7065. height: math.unit(6, "feet"),
  7066. weight: math.unit(220, "lbs"),
  7067. name: "Back",
  7068. image: {
  7069. source: "./media/characters/mandake/back.svg"
  7070. }
  7071. }
  7072. },
  7073. [
  7074. {
  7075. name: "Normal",
  7076. height: math.unit(7, "feet"),
  7077. default: true
  7078. },
  7079. {
  7080. name: "Macro",
  7081. height: math.unit(78, "feet")
  7082. },
  7083. {
  7084. name: "Macro+",
  7085. height: math.unit(300, "meters")
  7086. },
  7087. {
  7088. name: "Macro++",
  7089. height: math.unit(2400, "feet")
  7090. },
  7091. {
  7092. name: "Megamacro",
  7093. height: math.unit(5167, "meters")
  7094. },
  7095. {
  7096. name: "Gigamacro",
  7097. height: math.unit(41769, "miles")
  7098. },
  7099. ]
  7100. ))
  7101. characterMakers.push(() => makeCharacter(
  7102. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7103. {
  7104. front: {
  7105. height: math.unit(6, "feet"),
  7106. weight: math.unit(120, "lbs"),
  7107. name: "Front",
  7108. image: {
  7109. source: "./media/characters/yozey/front.svg"
  7110. }
  7111. },
  7112. frontAlt: {
  7113. height: math.unit(6, "feet"),
  7114. weight: math.unit(120, "lbs"),
  7115. name: "Front (Alt)",
  7116. image: {
  7117. source: "./media/characters/yozey/front-alt.svg"
  7118. }
  7119. },
  7120. side: {
  7121. height: math.unit(6, "feet"),
  7122. weight: math.unit(120, "lbs"),
  7123. name: "Side",
  7124. image: {
  7125. source: "./media/characters/yozey/side.svg"
  7126. }
  7127. },
  7128. },
  7129. [
  7130. {
  7131. name: "Micro",
  7132. height: math.unit(3, "inches"),
  7133. default: true
  7134. },
  7135. {
  7136. name: "Normal",
  7137. height: math.unit(6, "feet")
  7138. }
  7139. ]
  7140. ))
  7141. characterMakers.push(() => makeCharacter(
  7142. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7143. {
  7144. front: {
  7145. height: math.unit(6, "feet"),
  7146. weight: math.unit(103, "lbs"),
  7147. name: "Front",
  7148. image: {
  7149. source: "./media/characters/valeska-voss/front.svg"
  7150. }
  7151. }
  7152. },
  7153. [
  7154. {
  7155. name: "Mini-Sized Sub",
  7156. height: math.unit(3.1, "inches")
  7157. },
  7158. {
  7159. name: "Mid-Sized Sub",
  7160. height: math.unit(6.2, "inches")
  7161. },
  7162. {
  7163. name: "Full-Sized Sub",
  7164. height: math.unit(9.3, "inches")
  7165. },
  7166. {
  7167. name: "Normal",
  7168. height: math.unit(5 + 2 / 12, "foot"),
  7169. default: true
  7170. },
  7171. ]
  7172. ))
  7173. characterMakers.push(() => makeCharacter(
  7174. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7175. {
  7176. front: {
  7177. height: math.unit(6, "feet"),
  7178. weight: math.unit(160, "lbs"),
  7179. name: "Front",
  7180. image: {
  7181. source: "./media/characters/gene-zeta/front.svg",
  7182. extra: 3006 / 2826,
  7183. bottom: 182 / 3188
  7184. }
  7185. }
  7186. },
  7187. [
  7188. {
  7189. name: "Micro",
  7190. height: math.unit(6, "inches")
  7191. },
  7192. {
  7193. name: "Normal",
  7194. height: math.unit(5 + 11 / 12, "foot"),
  7195. default: true
  7196. },
  7197. {
  7198. name: "Macro",
  7199. height: math.unit(140, "feet")
  7200. },
  7201. {
  7202. name: "Supercharged",
  7203. height: math.unit(2500, "feet")
  7204. },
  7205. ]
  7206. ))
  7207. characterMakers.push(() => makeCharacter(
  7208. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7209. {
  7210. front: {
  7211. height: math.unit(6, "feet"),
  7212. weight: math.unit(350, "lbs"),
  7213. name: "Front",
  7214. image: {
  7215. source: "./media/characters/razinox/front.svg",
  7216. extra: 1686 / 1548,
  7217. bottom: 28.2 / 1868
  7218. }
  7219. },
  7220. back: {
  7221. height: math.unit(6, "feet"),
  7222. weight: math.unit(350, "lbs"),
  7223. name: "Back",
  7224. image: {
  7225. source: "./media/characters/razinox/back.svg",
  7226. extra: 1660 / 1590,
  7227. bottom: 15 / 1665
  7228. }
  7229. },
  7230. },
  7231. [
  7232. {
  7233. name: "Normal",
  7234. height: math.unit(10 + 8 / 12, "foot")
  7235. },
  7236. {
  7237. name: "Minimacro",
  7238. height: math.unit(15, "foot")
  7239. },
  7240. {
  7241. name: "Macro",
  7242. height: math.unit(60, "foot"),
  7243. default: true
  7244. },
  7245. {
  7246. name: "Megamacro",
  7247. height: math.unit(5, "miles")
  7248. },
  7249. {
  7250. name: "Gigamacro",
  7251. height: math.unit(6000, "miles")
  7252. },
  7253. ]
  7254. ))
  7255. characterMakers.push(() => makeCharacter(
  7256. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7257. {
  7258. front: {
  7259. height: math.unit(6, "feet"),
  7260. weight: math.unit(150, "lbs"),
  7261. name: "Front",
  7262. image: {
  7263. source: "./media/characters/cobalt/front.svg"
  7264. }
  7265. }
  7266. },
  7267. [
  7268. {
  7269. name: "Normal",
  7270. height: math.unit(8 + 1 / 12, "foot")
  7271. },
  7272. {
  7273. name: "Macro",
  7274. height: math.unit(111, "foot"),
  7275. default: true
  7276. },
  7277. {
  7278. name: "Supracosmic",
  7279. height: math.unit(1e42, "feet")
  7280. },
  7281. ]
  7282. ))
  7283. characterMakers.push(() => makeCharacter(
  7284. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7285. {
  7286. front: {
  7287. height: math.unit(6, "feet"),
  7288. weight: math.unit(140, "lbs"),
  7289. name: "Front",
  7290. image: {
  7291. source: "./media/characters/amanda/front.svg"
  7292. }
  7293. }
  7294. },
  7295. [
  7296. {
  7297. name: "Micro",
  7298. height: math.unit(5, "inches"),
  7299. default: true
  7300. },
  7301. ]
  7302. ))
  7303. characterMakers.push(() => makeCharacter(
  7304. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7305. {
  7306. front: {
  7307. height: math.unit(2.75, "meters"),
  7308. weight: math.unit(1200, "lb"),
  7309. name: "Front",
  7310. image: {
  7311. source: "./media/characters/teal/front.svg",
  7312. extra: 2463 / 2320,
  7313. bottom: 166 / 2629
  7314. }
  7315. },
  7316. back: {
  7317. height: math.unit(2.75, "meters"),
  7318. weight: math.unit(1200, "lb"),
  7319. name: "Back",
  7320. image: {
  7321. source: "./media/characters/teal/back.svg",
  7322. extra: 2580 / 2489,
  7323. bottom: 151 / 2731
  7324. }
  7325. },
  7326. sitting: {
  7327. height: math.unit(1.9, "meters"),
  7328. weight: math.unit(1200, "lb"),
  7329. name: "Sitting",
  7330. image: {
  7331. source: "./media/characters/teal/sitting.svg",
  7332. extra: 623 / 590,
  7333. bottom: 121 / 744
  7334. }
  7335. },
  7336. standing: {
  7337. height: math.unit(2.75, "meters"),
  7338. weight: math.unit(1200, "lb"),
  7339. name: "Standing",
  7340. image: {
  7341. source: "./media/characters/teal/standing.svg",
  7342. extra: 923 / 893,
  7343. bottom: 60 / 983
  7344. }
  7345. },
  7346. stretching: {
  7347. height: math.unit(3.65, "meters"),
  7348. weight: math.unit(1200, "lb"),
  7349. name: "Stretching",
  7350. image: {
  7351. source: "./media/characters/teal/stretching.svg",
  7352. extra: 1276 / 1244,
  7353. bottom: 0 / 1276
  7354. }
  7355. },
  7356. legged: {
  7357. height: math.unit(1.3, "meters"),
  7358. weight: math.unit(100, "lb"),
  7359. name: "Legged",
  7360. image: {
  7361. source: "./media/characters/teal/legged.svg",
  7362. extra: 462 / 437,
  7363. bottom: 24 / 486
  7364. }
  7365. },
  7366. naga: {
  7367. height: math.unit(5.4, "meters"),
  7368. weight: math.unit(4000, "lb"),
  7369. name: "Naga",
  7370. image: {
  7371. source: "./media/characters/teal/naga.svg",
  7372. extra: 1902 / 1858,
  7373. bottom: 0 / 1902
  7374. }
  7375. },
  7376. hand: {
  7377. height: math.unit(0.52, "meters"),
  7378. name: "Hand",
  7379. image: {
  7380. source: "./media/characters/teal/hand.svg"
  7381. }
  7382. },
  7383. maw: {
  7384. height: math.unit(0.43, "meters"),
  7385. name: "Maw",
  7386. image: {
  7387. source: "./media/characters/teal/maw.svg"
  7388. }
  7389. },
  7390. slit: {
  7391. height: math.unit(0.25, "meters"),
  7392. name: "Slit",
  7393. image: {
  7394. source: "./media/characters/teal/slit.svg"
  7395. }
  7396. },
  7397. },
  7398. [
  7399. {
  7400. name: "Normal",
  7401. height: math.unit(2.75, "meters"),
  7402. default: true
  7403. },
  7404. {
  7405. name: "Macro",
  7406. height: math.unit(300, "feet")
  7407. },
  7408. {
  7409. name: "Macro+",
  7410. height: math.unit(2000, "feet")
  7411. },
  7412. ]
  7413. ))
  7414. characterMakers.push(() => makeCharacter(
  7415. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7416. {
  7417. frontCat: {
  7418. height: math.unit(6, "feet"),
  7419. weight: math.unit(180, "lbs"),
  7420. name: "Front (Cat)",
  7421. image: {
  7422. source: "./media/characters/ravin-amulet/front-cat.svg"
  7423. }
  7424. },
  7425. frontCatAlt: {
  7426. height: math.unit(6, "feet"),
  7427. weight: math.unit(180, "lbs"),
  7428. name: "Front (Alt, Cat)",
  7429. image: {
  7430. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7431. }
  7432. },
  7433. frontWerewolf: {
  7434. height: math.unit(6 * 1.2, "feet"),
  7435. weight: math.unit(225, "lbs"),
  7436. name: "Front (Werewolf)",
  7437. image: {
  7438. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7439. }
  7440. },
  7441. backWerewolf: {
  7442. height: math.unit(6 * 1.2, "feet"),
  7443. weight: math.unit(225, "lbs"),
  7444. name: "Back (Werewolf)",
  7445. image: {
  7446. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7447. }
  7448. },
  7449. },
  7450. [
  7451. {
  7452. name: "Nano",
  7453. height: math.unit(1, "micrometer")
  7454. },
  7455. {
  7456. name: "Micro",
  7457. height: math.unit(1, "inch")
  7458. },
  7459. {
  7460. name: "Normal",
  7461. height: math.unit(6, "feet"),
  7462. default: true
  7463. },
  7464. {
  7465. name: "Macro",
  7466. height: math.unit(60, "feet")
  7467. }
  7468. ]
  7469. ))
  7470. characterMakers.push(() => makeCharacter(
  7471. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7472. {
  7473. front: {
  7474. height: math.unit(6, "feet"),
  7475. weight: math.unit(165, "lbs"),
  7476. name: "Front",
  7477. image: {
  7478. source: "./media/characters/fluoresce/front.svg"
  7479. }
  7480. }
  7481. },
  7482. [
  7483. {
  7484. name: "Micro",
  7485. height: math.unit(6, "cm")
  7486. },
  7487. {
  7488. name: "Normal",
  7489. height: math.unit(5 + 7 / 12, "feet"),
  7490. default: true
  7491. },
  7492. {
  7493. name: "Macro",
  7494. height: math.unit(56, "feet")
  7495. },
  7496. {
  7497. name: "Megamacro",
  7498. height: math.unit(1.9, "miles")
  7499. },
  7500. ]
  7501. ))
  7502. characterMakers.push(() => makeCharacter(
  7503. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7504. {
  7505. front: {
  7506. height: math.unit(9 + 6 / 12, "feet"),
  7507. weight: math.unit(523, "lbs"),
  7508. name: "Side",
  7509. image: {
  7510. source: "./media/characters/aurora/side.svg"
  7511. }
  7512. }
  7513. },
  7514. [
  7515. {
  7516. name: "Normal",
  7517. height: math.unit(9 + 6 / 12, "feet")
  7518. },
  7519. {
  7520. name: "Macro",
  7521. height: math.unit(96, "feet"),
  7522. default: true
  7523. },
  7524. {
  7525. name: "Macro+",
  7526. height: math.unit(243, "feet")
  7527. },
  7528. ]
  7529. ))
  7530. characterMakers.push(() => makeCharacter(
  7531. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7532. {
  7533. front: {
  7534. height: math.unit(194, "cm"),
  7535. weight: math.unit(90, "kg"),
  7536. name: "Front",
  7537. image: {
  7538. source: "./media/characters/ranek/front.svg"
  7539. }
  7540. },
  7541. side: {
  7542. height: math.unit(194, "cm"),
  7543. weight: math.unit(90, "kg"),
  7544. name: "Side",
  7545. image: {
  7546. source: "./media/characters/ranek/side.svg"
  7547. }
  7548. },
  7549. back: {
  7550. height: math.unit(194, "cm"),
  7551. weight: math.unit(90, "kg"),
  7552. name: "Back",
  7553. image: {
  7554. source: "./media/characters/ranek/back.svg"
  7555. }
  7556. },
  7557. feral: {
  7558. height: math.unit(30, "cm"),
  7559. weight: math.unit(1.6, "lbs"),
  7560. name: "Feral",
  7561. image: {
  7562. source: "./media/characters/ranek/feral.svg"
  7563. }
  7564. },
  7565. },
  7566. [
  7567. {
  7568. name: "Normal",
  7569. height: math.unit(194, "cm"),
  7570. default: true
  7571. },
  7572. {
  7573. name: "Macro",
  7574. height: math.unit(100, "meters")
  7575. },
  7576. ]
  7577. ))
  7578. characterMakers.push(() => makeCharacter(
  7579. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7580. {
  7581. front: {
  7582. height: math.unit(5 + 6 / 12, "feet"),
  7583. weight: math.unit(153, "lbs"),
  7584. name: "Front",
  7585. image: {
  7586. source: "./media/characters/andrew-cooper/front.svg"
  7587. }
  7588. },
  7589. },
  7590. [
  7591. {
  7592. name: "Nano",
  7593. height: math.unit(1, "mm")
  7594. },
  7595. {
  7596. name: "Micro",
  7597. height: math.unit(2, "inches")
  7598. },
  7599. {
  7600. name: "Normal",
  7601. height: math.unit(5 + 6 / 12, "feet"),
  7602. default: true
  7603. }
  7604. ]
  7605. ))
  7606. characterMakers.push(() => makeCharacter(
  7607. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7608. {
  7609. front: {
  7610. height: math.unit(6, "feet"),
  7611. weight: math.unit(180, "lbs"),
  7612. name: "Front",
  7613. image: {
  7614. source: "./media/characters/akane-sato/front.svg",
  7615. extra: 1219 / 1140
  7616. }
  7617. },
  7618. back: {
  7619. height: math.unit(6, "feet"),
  7620. weight: math.unit(180, "lbs"),
  7621. name: "Back",
  7622. image: {
  7623. source: "./media/characters/akane-sato/back.svg",
  7624. extra: 1219 / 1170
  7625. }
  7626. },
  7627. },
  7628. [
  7629. {
  7630. name: "Normal",
  7631. height: math.unit(2.5, "meters")
  7632. },
  7633. {
  7634. name: "Macro",
  7635. height: math.unit(250, "meters"),
  7636. default: true
  7637. },
  7638. {
  7639. name: "Megamacro",
  7640. height: math.unit(25, "km")
  7641. },
  7642. ]
  7643. ))
  7644. characterMakers.push(() => makeCharacter(
  7645. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7646. {
  7647. front: {
  7648. height: math.unit(6, "feet"),
  7649. weight: math.unit(65, "kg"),
  7650. name: "Front",
  7651. image: {
  7652. source: "./media/characters/rook/front.svg",
  7653. extra: 960 / 950
  7654. }
  7655. }
  7656. },
  7657. [
  7658. {
  7659. name: "Normal",
  7660. height: math.unit(8.8, "feet")
  7661. },
  7662. {
  7663. name: "Macro",
  7664. height: math.unit(88, "feet"),
  7665. default: true
  7666. },
  7667. {
  7668. name: "Megamacro",
  7669. height: math.unit(8, "miles")
  7670. },
  7671. ]
  7672. ))
  7673. characterMakers.push(() => makeCharacter(
  7674. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7675. {
  7676. front: {
  7677. height: math.unit(12 + 2 / 12, "feet"),
  7678. weight: math.unit(808, "lbs"),
  7679. name: "Front",
  7680. image: {
  7681. source: "./media/characters/prodigy/front.svg"
  7682. }
  7683. }
  7684. },
  7685. [
  7686. {
  7687. name: "Normal",
  7688. height: math.unit(12 + 2 / 12, "feet"),
  7689. default: true
  7690. },
  7691. {
  7692. name: "Macro",
  7693. height: math.unit(143, "feet")
  7694. },
  7695. {
  7696. name: "Macro+",
  7697. height: math.unit(400, "feet")
  7698. },
  7699. ]
  7700. ))
  7701. characterMakers.push(() => makeCharacter(
  7702. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7703. {
  7704. front: {
  7705. height: math.unit(6, "feet"),
  7706. weight: math.unit(225, "lbs"),
  7707. name: "Front",
  7708. image: {
  7709. source: "./media/characters/daniel/front.svg"
  7710. }
  7711. },
  7712. leaning: {
  7713. height: math.unit(6, "feet"),
  7714. weight: math.unit(225, "lbs"),
  7715. name: "Leaning",
  7716. image: {
  7717. source: "./media/characters/daniel/leaning.svg"
  7718. }
  7719. },
  7720. },
  7721. [
  7722. {
  7723. name: "Macro",
  7724. height: math.unit(1000, "feet"),
  7725. default: true
  7726. },
  7727. ]
  7728. ))
  7729. characterMakers.push(() => makeCharacter(
  7730. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7731. {
  7732. front: {
  7733. height: math.unit(6, "feet"),
  7734. weight: math.unit(88, "lbs"),
  7735. name: "Front",
  7736. image: {
  7737. source: "./media/characters/chiros/front.svg",
  7738. extra: 306 / 226
  7739. }
  7740. },
  7741. side: {
  7742. height: math.unit(6, "feet"),
  7743. weight: math.unit(88, "lbs"),
  7744. name: "Side",
  7745. image: {
  7746. source: "./media/characters/chiros/side.svg",
  7747. extra: 306 / 226
  7748. }
  7749. },
  7750. },
  7751. [
  7752. {
  7753. name: "Normal",
  7754. height: math.unit(6, "cm"),
  7755. default: true
  7756. },
  7757. ]
  7758. ))
  7759. characterMakers.push(() => makeCharacter(
  7760. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7761. {
  7762. front: {
  7763. height: math.unit(6, "feet"),
  7764. weight: math.unit(100, "lbs"),
  7765. name: "Front",
  7766. image: {
  7767. source: "./media/characters/selka/front.svg",
  7768. extra: 947 / 887
  7769. }
  7770. }
  7771. },
  7772. [
  7773. {
  7774. name: "Normal",
  7775. height: math.unit(5, "cm"),
  7776. default: true
  7777. },
  7778. ]
  7779. ))
  7780. characterMakers.push(() => makeCharacter(
  7781. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7782. {
  7783. front: {
  7784. height: math.unit(8 + 3 / 12, "feet"),
  7785. weight: math.unit(424, "lbs"),
  7786. name: "Front",
  7787. image: {
  7788. source: "./media/characters/verin/front.svg",
  7789. extra: 1845 / 1550
  7790. }
  7791. },
  7792. frontArmored: {
  7793. height: math.unit(8 + 3 / 12, "feet"),
  7794. weight: math.unit(424, "lbs"),
  7795. name: "Front (Armored)",
  7796. image: {
  7797. source: "./media/characters/verin/front-armor.svg",
  7798. extra: 1845 / 1550,
  7799. bottom: 0.01
  7800. }
  7801. },
  7802. back: {
  7803. height: math.unit(8 + 3 / 12, "feet"),
  7804. weight: math.unit(424, "lbs"),
  7805. name: "Back",
  7806. image: {
  7807. source: "./media/characters/verin/back.svg",
  7808. bottom: 0.1,
  7809. extra: 1
  7810. }
  7811. },
  7812. foot: {
  7813. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7814. name: "Foot",
  7815. image: {
  7816. source: "./media/characters/verin/foot.svg"
  7817. }
  7818. },
  7819. },
  7820. [
  7821. {
  7822. name: "Normal",
  7823. height: math.unit(8 + 3 / 12, "feet")
  7824. },
  7825. {
  7826. name: "Minimacro",
  7827. height: math.unit(21, "feet"),
  7828. default: true
  7829. },
  7830. {
  7831. name: "Macro",
  7832. height: math.unit(626, "feet")
  7833. },
  7834. ]
  7835. ))
  7836. characterMakers.push(() => makeCharacter(
  7837. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7838. {
  7839. front: {
  7840. height: math.unit(2.718, "meters"),
  7841. weight: math.unit(150, "lbs"),
  7842. name: "Front",
  7843. image: {
  7844. source: "./media/characters/sovrim-terraquian/front.svg"
  7845. }
  7846. },
  7847. back: {
  7848. height: math.unit(2.718, "meters"),
  7849. weight: math.unit(150, "lbs"),
  7850. name: "Back",
  7851. image: {
  7852. source: "./media/characters/sovrim-terraquian/back.svg"
  7853. }
  7854. }
  7855. },
  7856. [
  7857. {
  7858. name: "Micro",
  7859. height: math.unit(2, "inches")
  7860. },
  7861. {
  7862. name: "Small",
  7863. height: math.unit(1, "meter")
  7864. },
  7865. {
  7866. name: "Normal",
  7867. height: math.unit(Math.E, "meters"),
  7868. default: true
  7869. },
  7870. {
  7871. name: "Macro",
  7872. height: math.unit(20, "meters")
  7873. },
  7874. {
  7875. name: "Macro+",
  7876. height: math.unit(400, "meters")
  7877. },
  7878. ]
  7879. ))
  7880. characterMakers.push(() => makeCharacter(
  7881. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7882. {
  7883. front: {
  7884. height: math.unit(7, "feet"),
  7885. weight: math.unit(489, "lbs"),
  7886. name: "Front",
  7887. image: {
  7888. source: "./media/characters/reece-silvermane/front.svg",
  7889. bottom: 0.02,
  7890. extra: 1
  7891. }
  7892. },
  7893. },
  7894. [
  7895. {
  7896. name: "Macro",
  7897. height: math.unit(1.5, "miles"),
  7898. default: true
  7899. },
  7900. ]
  7901. ))
  7902. characterMakers.push(() => makeCharacter(
  7903. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7904. {
  7905. front: {
  7906. height: math.unit(6, "feet"),
  7907. weight: math.unit(78, "kg"),
  7908. name: "Front",
  7909. image: {
  7910. source: "./media/characters/kane/front.svg",
  7911. extra: 978 / 899
  7912. }
  7913. },
  7914. },
  7915. [
  7916. {
  7917. name: "Normal",
  7918. height: math.unit(2.1, "m"),
  7919. },
  7920. {
  7921. name: "Macro",
  7922. height: math.unit(1, "km"),
  7923. default: true
  7924. },
  7925. ]
  7926. ))
  7927. characterMakers.push(() => makeCharacter(
  7928. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7929. {
  7930. front: {
  7931. height: math.unit(6, "feet"),
  7932. weight: math.unit(200, "kg"),
  7933. name: "Front",
  7934. image: {
  7935. source: "./media/characters/tegon/front.svg",
  7936. bottom: 0.01,
  7937. extra: 1
  7938. }
  7939. },
  7940. },
  7941. [
  7942. {
  7943. name: "Micro",
  7944. height: math.unit(1, "inch")
  7945. },
  7946. {
  7947. name: "Normal",
  7948. height: math.unit(6 + 3 / 12, "feet"),
  7949. default: true
  7950. },
  7951. {
  7952. name: "Macro",
  7953. height: math.unit(300, "feet")
  7954. },
  7955. {
  7956. name: "Megamacro",
  7957. height: math.unit(69, "miles")
  7958. },
  7959. ]
  7960. ))
  7961. characterMakers.push(() => makeCharacter(
  7962. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7963. {
  7964. side: {
  7965. height: math.unit(6, "feet"),
  7966. weight: math.unit(2304, "lbs"),
  7967. name: "Side",
  7968. image: {
  7969. source: "./media/characters/arcturax/side.svg",
  7970. extra: 790 / 376,
  7971. bottom: 0.01
  7972. }
  7973. },
  7974. },
  7975. [
  7976. {
  7977. name: "Micro",
  7978. height: math.unit(2, "inch")
  7979. },
  7980. {
  7981. name: "Normal",
  7982. height: math.unit(6, "feet")
  7983. },
  7984. {
  7985. name: "Macro",
  7986. height: math.unit(39, "feet"),
  7987. default: true
  7988. },
  7989. {
  7990. name: "Megamacro",
  7991. height: math.unit(7, "miles")
  7992. },
  7993. ]
  7994. ))
  7995. characterMakers.push(() => makeCharacter(
  7996. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7997. {
  7998. front: {
  7999. height: math.unit(6, "feet"),
  8000. weight: math.unit(50, "lbs"),
  8001. name: "Front",
  8002. image: {
  8003. source: "./media/characters/sentri/front.svg",
  8004. extra: 1750 / 1570,
  8005. bottom: 0.025
  8006. }
  8007. },
  8008. frontAlt: {
  8009. height: math.unit(6, "feet"),
  8010. weight: math.unit(50, "lbs"),
  8011. name: "Front (Alt)",
  8012. image: {
  8013. source: "./media/characters/sentri/front-alt.svg",
  8014. extra: 1750 / 1570,
  8015. bottom: 0.025
  8016. }
  8017. },
  8018. },
  8019. [
  8020. {
  8021. name: "Normal",
  8022. height: math.unit(15, "feet"),
  8023. default: true
  8024. },
  8025. {
  8026. name: "Macro",
  8027. height: math.unit(2500, "feet")
  8028. }
  8029. ]
  8030. ))
  8031. characterMakers.push(() => makeCharacter(
  8032. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8033. {
  8034. front: {
  8035. height: math.unit(5 + 8 / 12, "feet"),
  8036. weight: math.unit(130, "lbs"),
  8037. name: "Front",
  8038. image: {
  8039. source: "./media/characters/corvin/front.svg",
  8040. extra: 1803 / 1629
  8041. }
  8042. },
  8043. frontShirt: {
  8044. height: math.unit(5 + 8 / 12, "feet"),
  8045. weight: math.unit(130, "lbs"),
  8046. name: "Front (Shirt)",
  8047. image: {
  8048. source: "./media/characters/corvin/front-shirt.svg",
  8049. extra: 1803 / 1629
  8050. }
  8051. },
  8052. frontPoncho: {
  8053. height: math.unit(5 + 8 / 12, "feet"),
  8054. weight: math.unit(130, "lbs"),
  8055. name: "Front (Poncho)",
  8056. image: {
  8057. source: "./media/characters/corvin/front-poncho.svg",
  8058. extra: 1803 / 1629
  8059. }
  8060. },
  8061. side: {
  8062. height: math.unit(5 + 8 / 12, "feet"),
  8063. weight: math.unit(130, "lbs"),
  8064. name: "Side",
  8065. image: {
  8066. source: "./media/characters/corvin/side.svg",
  8067. extra: 1012 / 945
  8068. }
  8069. },
  8070. back: {
  8071. height: math.unit(5 + 8 / 12, "feet"),
  8072. weight: math.unit(130, "lbs"),
  8073. name: "Back",
  8074. image: {
  8075. source: "./media/characters/corvin/back.svg",
  8076. extra: 1803 / 1629
  8077. }
  8078. },
  8079. },
  8080. [
  8081. {
  8082. name: "Micro",
  8083. height: math.unit(3, "inches")
  8084. },
  8085. {
  8086. name: "Normal",
  8087. height: math.unit(5 + 8 / 12, "feet")
  8088. },
  8089. {
  8090. name: "Macro",
  8091. height: math.unit(300, "feet"),
  8092. default: true
  8093. },
  8094. {
  8095. name: "Megamacro",
  8096. height: math.unit(500, "miles")
  8097. }
  8098. ]
  8099. ))
  8100. characterMakers.push(() => makeCharacter(
  8101. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8102. {
  8103. front: {
  8104. height: math.unit(6, "feet"),
  8105. weight: math.unit(135, "lbs"),
  8106. name: "Front",
  8107. image: {
  8108. source: "./media/characters/q/front.svg",
  8109. extra: 854 / 752,
  8110. bottom: 0.005
  8111. }
  8112. },
  8113. back: {
  8114. height: math.unit(6, "feet"),
  8115. weight: math.unit(130, "lbs"),
  8116. name: "Back",
  8117. image: {
  8118. source: "./media/characters/q/back.svg",
  8119. extra: 854 / 752
  8120. }
  8121. },
  8122. },
  8123. [
  8124. {
  8125. name: "Macro",
  8126. height: math.unit(90, "feet"),
  8127. default: true
  8128. },
  8129. {
  8130. name: "Extra Macro",
  8131. height: math.unit(300, "feet"),
  8132. },
  8133. {
  8134. name: "BIG WALF",
  8135. height: math.unit(750, "feet"),
  8136. },
  8137. ]
  8138. ))
  8139. characterMakers.push(() => makeCharacter(
  8140. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8141. {
  8142. front: {
  8143. height: math.unit(6, "feet"),
  8144. weight: math.unit(150, "lbs"),
  8145. name: "Front",
  8146. image: {
  8147. source: "./media/characters/carley/front.svg",
  8148. extra: 3927 / 3540,
  8149. bottom: 29.2 / 735
  8150. }
  8151. }
  8152. },
  8153. [
  8154. {
  8155. name: "Normal",
  8156. height: math.unit(6 + 3 / 12, "feet")
  8157. },
  8158. {
  8159. name: "Macro",
  8160. height: math.unit(185, "feet"),
  8161. default: true
  8162. },
  8163. {
  8164. name: "Megamacro",
  8165. height: math.unit(8, "miles"),
  8166. },
  8167. ]
  8168. ))
  8169. characterMakers.push(() => makeCharacter(
  8170. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8171. {
  8172. front: {
  8173. height: math.unit(3, "feet"),
  8174. weight: math.unit(28, "lbs"),
  8175. name: "Front",
  8176. image: {
  8177. source: "./media/characters/citrine/front.svg"
  8178. }
  8179. }
  8180. },
  8181. [
  8182. {
  8183. name: "Normal",
  8184. height: math.unit(3, "feet"),
  8185. default: true
  8186. }
  8187. ]
  8188. ))
  8189. characterMakers.push(() => makeCharacter(
  8190. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8191. {
  8192. front: {
  8193. height: math.unit(14, "feet"),
  8194. weight: math.unit(1450, "kg"),
  8195. capacity: math.unit(15, "people"),
  8196. name: "Front",
  8197. image: {
  8198. source: "./media/characters/aura-starwind/front.svg",
  8199. extra: 1440/1327,
  8200. bottom: 11/1451
  8201. }
  8202. },
  8203. side: {
  8204. height: math.unit(14, "feet"),
  8205. weight: math.unit(1450, "kg"),
  8206. capacity: math.unit(15, "people"),
  8207. name: "Side",
  8208. image: {
  8209. source: "./media/characters/aura-starwind/side.svg",
  8210. extra: 1654 / 1497
  8211. }
  8212. },
  8213. taur: {
  8214. height: math.unit(18, "feet"),
  8215. weight: math.unit(5500, "kg"),
  8216. capacity: math.unit(50, "people"),
  8217. name: "Taur",
  8218. image: {
  8219. source: "./media/characters/aura-starwind/taur.svg",
  8220. extra: 1760 / 1650
  8221. }
  8222. },
  8223. feral: {
  8224. height: math.unit(46, "feet"),
  8225. weight: math.unit(25000, "kg"),
  8226. capacity: math.unit(120, "people"),
  8227. name: "Feral",
  8228. image: {
  8229. source: "./media/characters/aura-starwind/feral.svg"
  8230. }
  8231. },
  8232. },
  8233. [
  8234. {
  8235. name: "Normal",
  8236. height: math.unit(14, "feet"),
  8237. default: true
  8238. },
  8239. {
  8240. name: "Macro",
  8241. height: math.unit(50, "meters")
  8242. },
  8243. {
  8244. name: "Megamacro",
  8245. height: math.unit(5000, "meters")
  8246. },
  8247. {
  8248. name: "Gigamacro",
  8249. height: math.unit(100000, "kilometers")
  8250. },
  8251. ]
  8252. ))
  8253. characterMakers.push(() => makeCharacter(
  8254. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8255. {
  8256. front: {
  8257. height: math.unit(2 + 7 / 12, "feet"),
  8258. weight: math.unit(32, "lbs"),
  8259. name: "Front",
  8260. image: {
  8261. source: "./media/characters/rivet/front.svg",
  8262. extra: 1716 / 1658,
  8263. bottom: 0.03
  8264. }
  8265. },
  8266. foot: {
  8267. height: math.unit(0.551, "feet"),
  8268. name: "Rivet's Foot",
  8269. image: {
  8270. source: "./media/characters/rivet/foot.svg"
  8271. },
  8272. rename: true
  8273. }
  8274. },
  8275. [
  8276. {
  8277. name: "Micro",
  8278. height: math.unit(1.5, "inches"),
  8279. },
  8280. {
  8281. name: "Normal",
  8282. height: math.unit(2 + 7 / 12, "feet"),
  8283. default: true
  8284. },
  8285. {
  8286. name: "Macro",
  8287. height: math.unit(85, "feet")
  8288. },
  8289. {
  8290. name: "Megamacro",
  8291. height: math.unit(2.2, "km")
  8292. }
  8293. ]
  8294. ))
  8295. characterMakers.push(() => makeCharacter(
  8296. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8297. {
  8298. front: {
  8299. height: math.unit(5 + 9 / 12, "feet"),
  8300. weight: math.unit(150, "lbs"),
  8301. name: "Front",
  8302. image: {
  8303. source: "./media/characters/coffee/front.svg",
  8304. extra: 3666 / 3032,
  8305. bottom: 0.04
  8306. }
  8307. },
  8308. foot: {
  8309. height: math.unit(1.29, "feet"),
  8310. name: "Foot",
  8311. image: {
  8312. source: "./media/characters/coffee/foot.svg"
  8313. }
  8314. },
  8315. },
  8316. [
  8317. {
  8318. name: "Micro",
  8319. height: math.unit(2, "inches"),
  8320. },
  8321. {
  8322. name: "Normal",
  8323. height: math.unit(5 + 9 / 12, "feet"),
  8324. default: true
  8325. },
  8326. {
  8327. name: "Macro",
  8328. height: math.unit(800, "feet")
  8329. },
  8330. {
  8331. name: "Megamacro",
  8332. height: math.unit(25, "miles")
  8333. }
  8334. ]
  8335. ))
  8336. characterMakers.push(() => makeCharacter(
  8337. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8338. {
  8339. front: {
  8340. height: math.unit(6, "feet"),
  8341. weight: math.unit(200, "lbs"),
  8342. name: "Front",
  8343. image: {
  8344. source: "./media/characters/chari-gal/front.svg",
  8345. extra: 1568 / 1385,
  8346. bottom: 0.047
  8347. }
  8348. },
  8349. gigantamax: {
  8350. height: math.unit(6 * 16, "feet"),
  8351. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8352. name: "Gigantamax",
  8353. image: {
  8354. source: "./media/characters/chari-gal/gigantamax.svg",
  8355. extra: 1124 / 888,
  8356. bottom: 0.03
  8357. }
  8358. },
  8359. },
  8360. [
  8361. {
  8362. name: "Normal",
  8363. height: math.unit(5 + 7 / 12, "feet")
  8364. },
  8365. {
  8366. name: "Macro",
  8367. height: math.unit(200, "feet"),
  8368. default: true
  8369. }
  8370. ]
  8371. ))
  8372. characterMakers.push(() => makeCharacter(
  8373. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8374. {
  8375. front: {
  8376. height: math.unit(6, "feet"),
  8377. weight: math.unit(150, "lbs"),
  8378. name: "Front",
  8379. image: {
  8380. source: "./media/characters/nova/front.svg",
  8381. extra: 5000 / 4722,
  8382. bottom: 0.02
  8383. }
  8384. }
  8385. },
  8386. [
  8387. {
  8388. name: "Micro-",
  8389. height: math.unit(0.8, "inches")
  8390. },
  8391. {
  8392. name: "Micro",
  8393. height: math.unit(2, "inches"),
  8394. default: true
  8395. },
  8396. ]
  8397. ))
  8398. characterMakers.push(() => makeCharacter(
  8399. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8400. {
  8401. front: {
  8402. height: math.unit(3 + 1 / 12, "feet"),
  8403. weight: math.unit(21.7, "lbs"),
  8404. name: "Front",
  8405. image: {
  8406. source: "./media/characters/argent/front.svg",
  8407. extra: 1471 / 1331,
  8408. bottom: 100.8 / 1575.5
  8409. }
  8410. }
  8411. },
  8412. [
  8413. {
  8414. name: "Micro",
  8415. height: math.unit(2, "inches")
  8416. },
  8417. {
  8418. name: "Normal",
  8419. height: math.unit(3 + 1 / 12, "feet"),
  8420. default: true
  8421. },
  8422. {
  8423. name: "Macro",
  8424. height: math.unit(120, "feet")
  8425. },
  8426. ]
  8427. ))
  8428. characterMakers.push(() => makeCharacter(
  8429. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8430. {
  8431. lamp: {
  8432. height: math.unit(7 * 1559 / 989, "feet"),
  8433. name: "Magic Lamp",
  8434. image: {
  8435. source: "./media/characters/mira-al-cul/lamp.svg",
  8436. extra: 1617 / 1559
  8437. }
  8438. },
  8439. front: {
  8440. height: math.unit(7, "feet"),
  8441. name: "Front",
  8442. image: {
  8443. source: "./media/characters/mira-al-cul/front.svg",
  8444. extra: 1044 / 990
  8445. }
  8446. },
  8447. },
  8448. [
  8449. {
  8450. name: "Heavily Restricted",
  8451. height: math.unit(7 * 1559 / 989, "feet")
  8452. },
  8453. {
  8454. name: "Freshly Freed",
  8455. height: math.unit(50 * 1559 / 989, "feet")
  8456. },
  8457. {
  8458. name: "World Encompassing",
  8459. height: math.unit(10000 * 1559 / 989, "miles")
  8460. },
  8461. {
  8462. name: "Galactic",
  8463. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8464. },
  8465. {
  8466. name: "Palmed Universe",
  8467. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8468. default: true
  8469. },
  8470. {
  8471. name: "Multiversal Matriarch",
  8472. height: math.unit(8.87e10, "yottameters")
  8473. },
  8474. {
  8475. name: "Void Mother",
  8476. height: math.unit(3.14e110, "yottaparsecs")
  8477. },
  8478. {
  8479. name: "Toying with Transcendence",
  8480. height: math.unit(1e307, "meters")
  8481. },
  8482. ]
  8483. ))
  8484. characterMakers.push(() => makeCharacter(
  8485. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8486. {
  8487. front: {
  8488. height: math.unit(17 + 1 / 12, "feet"),
  8489. weight: math.unit(476.2 * 5, "lbs"),
  8490. name: "Front",
  8491. image: {
  8492. source: "./media/characters/kuro-shi-uchū/front.svg",
  8493. extra: 2329 / 1835,
  8494. bottom: 0.02
  8495. }
  8496. },
  8497. },
  8498. [
  8499. {
  8500. name: "Micro",
  8501. height: math.unit(2, "inches")
  8502. },
  8503. {
  8504. name: "Normal",
  8505. height: math.unit(12, "meters")
  8506. },
  8507. {
  8508. name: "Planetary",
  8509. height: math.unit(0.00929, "AU"),
  8510. default: true
  8511. },
  8512. {
  8513. name: "Universal",
  8514. height: math.unit(20, "gigaparsecs")
  8515. },
  8516. ]
  8517. ))
  8518. characterMakers.push(() => makeCharacter(
  8519. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8520. {
  8521. front: {
  8522. height: math.unit(5 + 2 / 12, "feet"),
  8523. weight: math.unit(120, "lbs"),
  8524. name: "Front",
  8525. image: {
  8526. source: "./media/characters/katherine/front.svg",
  8527. extra: 2075 / 1969
  8528. }
  8529. },
  8530. dress: {
  8531. height: math.unit(5 + 2 / 12, "feet"),
  8532. weight: math.unit(120, "lbs"),
  8533. name: "Dress",
  8534. image: {
  8535. source: "./media/characters/katherine/dress.svg",
  8536. extra: 2258 / 2064
  8537. }
  8538. },
  8539. },
  8540. [
  8541. {
  8542. name: "Micro",
  8543. height: math.unit(1, "inches"),
  8544. default: true
  8545. },
  8546. {
  8547. name: "Normal",
  8548. height: math.unit(5 + 2 / 12, "feet")
  8549. },
  8550. {
  8551. name: "Macro",
  8552. height: math.unit(100, "meters")
  8553. },
  8554. {
  8555. name: "Megamacro",
  8556. height: math.unit(80, "miles")
  8557. },
  8558. ]
  8559. ))
  8560. characterMakers.push(() => makeCharacter(
  8561. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8562. {
  8563. front: {
  8564. height: math.unit(7 + 8 / 12, "feet"),
  8565. weight: math.unit(250, "lbs"),
  8566. name: "Front",
  8567. image: {
  8568. source: "./media/characters/yevis/front.svg",
  8569. extra: 1938 / 1755
  8570. }
  8571. }
  8572. },
  8573. [
  8574. {
  8575. name: "Mortal",
  8576. height: math.unit(7 + 8 / 12, "feet")
  8577. },
  8578. {
  8579. name: "Battle",
  8580. height: math.unit(25 + 11 / 12, "feet")
  8581. },
  8582. {
  8583. name: "Wrath",
  8584. height: math.unit(1654 + 11 / 12, "feet")
  8585. },
  8586. {
  8587. name: "Planet Destroyer",
  8588. height: math.unit(12000, "miles")
  8589. },
  8590. {
  8591. name: "Galaxy Conqueror",
  8592. height: math.unit(1.45, "zettameters"),
  8593. default: true
  8594. },
  8595. {
  8596. name: "Universal War",
  8597. height: math.unit(184, "gigaparsecs")
  8598. },
  8599. {
  8600. name: "Eternity War",
  8601. height: math.unit(1.98e55, "yottaparsecs")
  8602. },
  8603. ]
  8604. ))
  8605. characterMakers.push(() => makeCharacter(
  8606. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8607. {
  8608. front: {
  8609. height: math.unit(5 + 8 / 12, "feet"),
  8610. weight: math.unit(63, "kg"),
  8611. name: "Front",
  8612. image: {
  8613. source: "./media/characters/xavier/front.svg",
  8614. extra: 944 / 883
  8615. }
  8616. },
  8617. frontStretch: {
  8618. height: math.unit(5 + 8 / 12, "feet"),
  8619. weight: math.unit(63, "kg"),
  8620. name: "Stretching",
  8621. image: {
  8622. source: "./media/characters/xavier/front-stretch.svg",
  8623. extra: 962 / 820
  8624. }
  8625. },
  8626. },
  8627. [
  8628. {
  8629. name: "Normal",
  8630. height: math.unit(5 + 8 / 12, "feet")
  8631. },
  8632. {
  8633. name: "Macro",
  8634. height: math.unit(100, "meters"),
  8635. default: true
  8636. },
  8637. {
  8638. name: "McLargeHuge",
  8639. height: math.unit(10, "miles")
  8640. },
  8641. ]
  8642. ))
  8643. characterMakers.push(() => makeCharacter(
  8644. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8645. {
  8646. front: {
  8647. height: math.unit(5 + 5 / 12, "feet"),
  8648. weight: math.unit(150, "lb"),
  8649. name: "Front",
  8650. image: {
  8651. source: "./media/characters/joshii/front.svg",
  8652. extra: 765 / 653,
  8653. bottom: 51 / 816
  8654. }
  8655. },
  8656. foot: {
  8657. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8658. name: "Foot",
  8659. image: {
  8660. source: "./media/characters/joshii/foot.svg"
  8661. }
  8662. },
  8663. },
  8664. [
  8665. {
  8666. name: "Micro",
  8667. height: math.unit(2, "inches"),
  8668. default: true
  8669. },
  8670. {
  8671. name: "Normal",
  8672. height: math.unit(5 + 5 / 12, "feet")
  8673. },
  8674. {
  8675. name: "Macro",
  8676. height: math.unit(785, "feet")
  8677. },
  8678. {
  8679. name: "Megamacro",
  8680. height: math.unit(24.5, "miles")
  8681. },
  8682. ]
  8683. ))
  8684. characterMakers.push(() => makeCharacter(
  8685. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8686. {
  8687. front: {
  8688. height: math.unit(6, "feet"),
  8689. weight: math.unit(150, "lb"),
  8690. name: "Front",
  8691. image: {
  8692. source: "./media/characters/goddess-elizabeth/front.svg",
  8693. extra: 1800 / 1525,
  8694. bottom: 0.005
  8695. }
  8696. },
  8697. foot: {
  8698. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8699. name: "Foot",
  8700. image: {
  8701. source: "./media/characters/goddess-elizabeth/foot.svg"
  8702. }
  8703. },
  8704. mouth: {
  8705. height: math.unit(6, "feet"),
  8706. name: "Mouth",
  8707. image: {
  8708. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8709. }
  8710. },
  8711. },
  8712. [
  8713. {
  8714. name: "Micro",
  8715. height: math.unit(12, "feet")
  8716. },
  8717. {
  8718. name: "Normal",
  8719. height: math.unit(80, "miles"),
  8720. default: true
  8721. },
  8722. {
  8723. name: "Macro",
  8724. height: math.unit(15000, "parsecs")
  8725. },
  8726. ]
  8727. ))
  8728. characterMakers.push(() => makeCharacter(
  8729. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8730. {
  8731. front: {
  8732. height: math.unit(5 + 9 / 12, "feet"),
  8733. weight: math.unit(144, "lb"),
  8734. name: "Front",
  8735. image: {
  8736. source: "./media/characters/kara/front.svg"
  8737. }
  8738. },
  8739. feet: {
  8740. height: math.unit(6 / 6.765, "feet"),
  8741. name: "Kara's Feet",
  8742. rename: true,
  8743. image: {
  8744. source: "./media/characters/kara/feet.svg"
  8745. }
  8746. },
  8747. },
  8748. [
  8749. {
  8750. name: "Normal",
  8751. height: math.unit(5 + 9 / 12, "feet")
  8752. },
  8753. {
  8754. name: "Macro",
  8755. height: math.unit(174, "feet"),
  8756. default: true
  8757. },
  8758. ]
  8759. ))
  8760. characterMakers.push(() => makeCharacter(
  8761. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8762. {
  8763. front: {
  8764. height: math.unit(18, "feet"),
  8765. weight: math.unit(4050, "lb"),
  8766. name: "Front",
  8767. image: {
  8768. source: "./media/characters/tyrone/front.svg",
  8769. extra: 2405 / 2270,
  8770. bottom: 182 / 2587
  8771. }
  8772. },
  8773. },
  8774. [
  8775. {
  8776. name: "Normal",
  8777. height: math.unit(18, "feet"),
  8778. default: true
  8779. },
  8780. {
  8781. name: "Macro",
  8782. height: math.unit(300, "feet")
  8783. },
  8784. {
  8785. name: "Megamacro",
  8786. height: math.unit(15, "km")
  8787. },
  8788. {
  8789. name: "Gigamacro",
  8790. height: math.unit(500, "km")
  8791. },
  8792. {
  8793. name: "Teramacro",
  8794. height: math.unit(0.5, "gigameters")
  8795. },
  8796. {
  8797. name: "Omnimacro",
  8798. height: math.unit(1e252, "yottauniverse")
  8799. },
  8800. ]
  8801. ))
  8802. characterMakers.push(() => makeCharacter(
  8803. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8804. {
  8805. front: {
  8806. height: math.unit(7 + 8 / 12, "feet"),
  8807. weight: math.unit(120, "lb"),
  8808. name: "Front",
  8809. image: {
  8810. source: "./media/characters/danny/front.svg",
  8811. extra: 1490 / 1350
  8812. }
  8813. },
  8814. back: {
  8815. height: math.unit(7 + 8 / 12, "feet"),
  8816. weight: math.unit(120, "lb"),
  8817. name: "Back",
  8818. image: {
  8819. source: "./media/characters/danny/back.svg",
  8820. extra: 1490 / 1350
  8821. }
  8822. },
  8823. },
  8824. [
  8825. {
  8826. name: "Normal",
  8827. height: math.unit(7 + 8 / 12, "feet"),
  8828. default: true
  8829. },
  8830. ]
  8831. ))
  8832. characterMakers.push(() => makeCharacter(
  8833. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8834. {
  8835. front: {
  8836. height: math.unit(3.5, "inches"),
  8837. weight: math.unit(19, "grams"),
  8838. name: "Front",
  8839. image: {
  8840. source: "./media/characters/mallow/front.svg",
  8841. extra: 471 / 431
  8842. }
  8843. },
  8844. back: {
  8845. height: math.unit(3.5, "inches"),
  8846. weight: math.unit(19, "grams"),
  8847. name: "Back",
  8848. image: {
  8849. source: "./media/characters/mallow/back.svg",
  8850. extra: 471 / 431
  8851. }
  8852. },
  8853. },
  8854. [
  8855. {
  8856. name: "Normal",
  8857. height: math.unit(3.5, "inches"),
  8858. default: true
  8859. },
  8860. ]
  8861. ))
  8862. characterMakers.push(() => makeCharacter(
  8863. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8864. {
  8865. front: {
  8866. height: math.unit(9, "feet"),
  8867. weight: math.unit(230, "kg"),
  8868. name: "Front",
  8869. image: {
  8870. source: "./media/characters/starry-aqua/front.svg"
  8871. }
  8872. },
  8873. back: {
  8874. height: math.unit(9, "feet"),
  8875. weight: math.unit(230, "kg"),
  8876. name: "Back",
  8877. image: {
  8878. source: "./media/characters/starry-aqua/back.svg"
  8879. }
  8880. },
  8881. hand: {
  8882. height: math.unit(9 * 0.1168, "feet"),
  8883. name: "Hand",
  8884. image: {
  8885. source: "./media/characters/starry-aqua/hand.svg"
  8886. }
  8887. },
  8888. foot: {
  8889. height: math.unit(9 * 0.18, "feet"),
  8890. name: "Foot",
  8891. image: {
  8892. source: "./media/characters/starry-aqua/foot.svg"
  8893. }
  8894. }
  8895. },
  8896. [
  8897. {
  8898. name: "Micro",
  8899. height: math.unit(3, "inches")
  8900. },
  8901. {
  8902. name: "Normal",
  8903. height: math.unit(9, "feet")
  8904. },
  8905. {
  8906. name: "Macro",
  8907. height: math.unit(300, "feet"),
  8908. default: true
  8909. },
  8910. {
  8911. name: "Megamacro",
  8912. height: math.unit(3200, "feet")
  8913. }
  8914. ]
  8915. ))
  8916. characterMakers.push(() => makeCharacter(
  8917. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8918. {
  8919. front: {
  8920. height: math.unit(6, "feet"),
  8921. weight: math.unit(230, "lb"),
  8922. name: "Front",
  8923. image: {
  8924. source: "./media/characters/luka/front.svg",
  8925. extra: 1,
  8926. bottom: 0.025
  8927. }
  8928. },
  8929. },
  8930. [
  8931. {
  8932. name: "Normal",
  8933. height: math.unit(12 + 8 / 12, "feet"),
  8934. default: true
  8935. },
  8936. {
  8937. name: "Minimacro",
  8938. height: math.unit(20, "feet")
  8939. },
  8940. {
  8941. name: "Macro",
  8942. height: math.unit(250, "feet")
  8943. },
  8944. {
  8945. name: "Megamacro",
  8946. height: math.unit(5, "miles")
  8947. },
  8948. {
  8949. name: "Gigamacro",
  8950. height: math.unit(8000, "miles")
  8951. },
  8952. ]
  8953. ))
  8954. characterMakers.push(() => makeCharacter(
  8955. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8956. {
  8957. front: {
  8958. height: math.unit(6, "feet"),
  8959. weight: math.unit(150, "lb"),
  8960. name: "Front",
  8961. image: {
  8962. source: "./media/characters/natalie-nightring/front.svg",
  8963. extra: 1,
  8964. bottom: 0.06
  8965. }
  8966. },
  8967. },
  8968. [
  8969. {
  8970. name: "Uh Oh",
  8971. height: math.unit(0.1, "mm")
  8972. },
  8973. {
  8974. name: "Small",
  8975. height: math.unit(3, "inches")
  8976. },
  8977. {
  8978. name: "Human Scale",
  8979. height: math.unit(6, "feet")
  8980. },
  8981. {
  8982. name: "Librarian",
  8983. height: math.unit(50, "feet"),
  8984. default: true
  8985. },
  8986. {
  8987. name: "Immense",
  8988. height: math.unit(200, "miles")
  8989. },
  8990. ]
  8991. ))
  8992. characterMakers.push(() => makeCharacter(
  8993. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8994. {
  8995. front: {
  8996. height: math.unit(6, "feet"),
  8997. weight: math.unit(180, "lbs"),
  8998. name: "Front",
  8999. image: {
  9000. source: "./media/characters/danni-rosie/front.svg",
  9001. extra: 1260 / 1128,
  9002. bottom: 0.022
  9003. }
  9004. },
  9005. },
  9006. [
  9007. {
  9008. name: "Micro",
  9009. height: math.unit(2, "inches"),
  9010. default: true
  9011. },
  9012. ]
  9013. ))
  9014. characterMakers.push(() => makeCharacter(
  9015. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9016. {
  9017. front: {
  9018. height: math.unit(5 + 9 / 12, "feet"),
  9019. weight: math.unit(220, "lb"),
  9020. name: "Front",
  9021. image: {
  9022. source: "./media/characters/samantha-kruse/front.svg",
  9023. extra: (985 / 935),
  9024. bottom: 0.03
  9025. }
  9026. },
  9027. frontUndressed: {
  9028. height: math.unit(5 + 9 / 12, "feet"),
  9029. weight: math.unit(220, "lb"),
  9030. name: "Front (Undressed)",
  9031. image: {
  9032. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9033. extra: (973 / 923),
  9034. bottom: 0.025
  9035. }
  9036. },
  9037. fat: {
  9038. height: math.unit(5 + 9 / 12, "feet"),
  9039. weight: math.unit(900, "lb"),
  9040. name: "Front (Fat)",
  9041. image: {
  9042. source: "./media/characters/samantha-kruse/fat.svg",
  9043. extra: 2688 / 2561
  9044. }
  9045. },
  9046. },
  9047. [
  9048. {
  9049. name: "Normal",
  9050. height: math.unit(5 + 9 / 12, "feet"),
  9051. default: true
  9052. }
  9053. ]
  9054. ))
  9055. characterMakers.push(() => makeCharacter(
  9056. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9057. {
  9058. back: {
  9059. height: math.unit(5 + 4 / 12, "feet"),
  9060. weight: math.unit(4963, "lb"),
  9061. name: "Back",
  9062. image: {
  9063. source: "./media/characters/amelia-rosie/back.svg",
  9064. extra: 1113 / 963,
  9065. bottom: 0.01
  9066. }
  9067. },
  9068. },
  9069. [
  9070. {
  9071. name: "Level 0",
  9072. height: math.unit(5 + 4 / 12, "feet")
  9073. },
  9074. {
  9075. name: "Level 1",
  9076. height: math.unit(164597, "feet"),
  9077. default: true
  9078. },
  9079. {
  9080. name: "Level 2",
  9081. height: math.unit(956243, "miles")
  9082. },
  9083. {
  9084. name: "Level 3",
  9085. height: math.unit(29421709423, "miles")
  9086. },
  9087. {
  9088. name: "Level 4",
  9089. height: math.unit(154, "lightyears")
  9090. },
  9091. {
  9092. name: "Level 5",
  9093. height: math.unit(4738272, "lightyears")
  9094. },
  9095. {
  9096. name: "Level 6",
  9097. height: math.unit(145787152896, "lightyears")
  9098. },
  9099. ]
  9100. ))
  9101. characterMakers.push(() => makeCharacter(
  9102. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9103. {
  9104. front: {
  9105. height: math.unit(5 + 11 / 12, "feet"),
  9106. weight: math.unit(65, "kg"),
  9107. name: "Front",
  9108. image: {
  9109. source: "./media/characters/rook-kitara/front.svg",
  9110. extra: 1347 / 1274,
  9111. bottom: 0.005
  9112. }
  9113. },
  9114. },
  9115. [
  9116. {
  9117. name: "Totally Unfair",
  9118. height: math.unit(1.8, "mm")
  9119. },
  9120. {
  9121. name: "Lap Rookie",
  9122. height: math.unit(1.4, "feet")
  9123. },
  9124. {
  9125. name: "Normal",
  9126. height: math.unit(5 + 11 / 12, "feet"),
  9127. default: true
  9128. },
  9129. {
  9130. name: "How Did This Happen",
  9131. height: math.unit(80, "miles")
  9132. }
  9133. ]
  9134. ))
  9135. characterMakers.push(() => makeCharacter(
  9136. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9137. {
  9138. front: {
  9139. height: math.unit(7, "feet"),
  9140. weight: math.unit(300, "lb"),
  9141. name: "Front",
  9142. image: {
  9143. source: "./media/characters/pisces/front.svg",
  9144. extra: 2255 / 2115,
  9145. bottom: 0.03
  9146. }
  9147. },
  9148. back: {
  9149. height: math.unit(7, "feet"),
  9150. weight: math.unit(300, "lb"),
  9151. name: "Back",
  9152. image: {
  9153. source: "./media/characters/pisces/back.svg",
  9154. extra: 2146 / 2055,
  9155. bottom: 0.04
  9156. }
  9157. },
  9158. },
  9159. [
  9160. {
  9161. name: "Normal",
  9162. height: math.unit(7, "feet"),
  9163. default: true
  9164. },
  9165. {
  9166. name: "Swimming Pool",
  9167. height: math.unit(12.2, "meters")
  9168. },
  9169. {
  9170. name: "Olympic Swimming Pool",
  9171. height: math.unit(56.3, "meters")
  9172. },
  9173. {
  9174. name: "Lake Superior",
  9175. height: math.unit(93900, "meters")
  9176. },
  9177. {
  9178. name: "Mediterranean Sea",
  9179. height: math.unit(644457, "meters")
  9180. },
  9181. {
  9182. name: "World's Oceans",
  9183. height: math.unit(4567491, "meters")
  9184. },
  9185. ]
  9186. ))
  9187. characterMakers.push(() => makeCharacter(
  9188. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9189. {
  9190. front: {
  9191. height: math.unit(2.3, "meters"),
  9192. weight: math.unit(120, "kg"),
  9193. name: "Front",
  9194. image: {
  9195. source: "./media/characters/zelas/front.svg"
  9196. }
  9197. },
  9198. side: {
  9199. height: math.unit(2.3, "meters"),
  9200. weight: math.unit(120, "kg"),
  9201. name: "Side",
  9202. image: {
  9203. source: "./media/characters/zelas/side.svg"
  9204. }
  9205. },
  9206. back: {
  9207. height: math.unit(2.3, "meters"),
  9208. weight: math.unit(120, "kg"),
  9209. name: "Back",
  9210. image: {
  9211. source: "./media/characters/zelas/back.svg"
  9212. }
  9213. },
  9214. foot: {
  9215. height: math.unit(1.116, "feet"),
  9216. name: "Foot",
  9217. image: {
  9218. source: "./media/characters/zelas/foot.svg"
  9219. }
  9220. },
  9221. },
  9222. [
  9223. {
  9224. name: "Normal",
  9225. height: math.unit(2.3, "meters")
  9226. },
  9227. {
  9228. name: "Macro",
  9229. height: math.unit(30, "meters"),
  9230. default: true
  9231. },
  9232. ]
  9233. ))
  9234. characterMakers.push(() => makeCharacter(
  9235. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9236. {
  9237. front: {
  9238. height: math.unit(1, "inch"),
  9239. weight: math.unit(0.21, "grams"),
  9240. name: "Front",
  9241. image: {
  9242. source: "./media/characters/talbot/front.svg",
  9243. extra: 594 / 544
  9244. }
  9245. },
  9246. },
  9247. [
  9248. {
  9249. name: "Micro",
  9250. height: math.unit(1, "inch"),
  9251. default: true
  9252. },
  9253. ]
  9254. ))
  9255. characterMakers.push(() => makeCharacter(
  9256. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9257. {
  9258. front: {
  9259. height: math.unit(3 + 3 / 12, "feet"),
  9260. weight: math.unit(51.8, "lb"),
  9261. name: "Front",
  9262. image: {
  9263. source: "./media/characters/fliss/front.svg",
  9264. extra: 840 / 640
  9265. }
  9266. },
  9267. },
  9268. [
  9269. {
  9270. name: "Teeny Tiny",
  9271. height: math.unit(1, "mm")
  9272. },
  9273. {
  9274. name: "Small",
  9275. height: math.unit(1, "inch"),
  9276. default: true
  9277. },
  9278. {
  9279. name: "Standard Sylveon",
  9280. height: math.unit(3 + 3 / 12, "feet")
  9281. },
  9282. {
  9283. name: "Large Nuisance",
  9284. height: math.unit(33, "feet")
  9285. },
  9286. {
  9287. name: "City Filler",
  9288. height: math.unit(3000, "feet")
  9289. },
  9290. {
  9291. name: "New Horizon",
  9292. height: math.unit(6000, "miles")
  9293. },
  9294. ]
  9295. ))
  9296. characterMakers.push(() => makeCharacter(
  9297. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9298. {
  9299. front: {
  9300. height: math.unit(5, "cm"),
  9301. weight: math.unit(1.94, "g"),
  9302. name: "Front",
  9303. image: {
  9304. source: "./media/characters/fleta/front.svg",
  9305. extra: 835 / 803
  9306. }
  9307. },
  9308. back: {
  9309. height: math.unit(5, "cm"),
  9310. weight: math.unit(1.94, "g"),
  9311. name: "Back",
  9312. image: {
  9313. source: "./media/characters/fleta/back.svg",
  9314. extra: 835 / 803
  9315. }
  9316. },
  9317. },
  9318. [
  9319. {
  9320. name: "Micro",
  9321. height: math.unit(5, "cm"),
  9322. default: true
  9323. },
  9324. ]
  9325. ))
  9326. characterMakers.push(() => makeCharacter(
  9327. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9328. {
  9329. front: {
  9330. height: math.unit(6, "feet"),
  9331. weight: math.unit(225, "lb"),
  9332. name: "Front",
  9333. image: {
  9334. source: "./media/characters/dominic/front.svg",
  9335. extra: 1770 / 1620,
  9336. bottom: 0.025
  9337. }
  9338. },
  9339. back: {
  9340. height: math.unit(6, "feet"),
  9341. weight: math.unit(225, "lb"),
  9342. name: "Back",
  9343. image: {
  9344. source: "./media/characters/dominic/back.svg",
  9345. extra: 1745 / 1620,
  9346. bottom: 0.065
  9347. }
  9348. },
  9349. },
  9350. [
  9351. {
  9352. name: "Nano",
  9353. height: math.unit(0.1, "mm")
  9354. },
  9355. {
  9356. name: "Micro-",
  9357. height: math.unit(1, "mm")
  9358. },
  9359. {
  9360. name: "Micro",
  9361. height: math.unit(4, "inches")
  9362. },
  9363. {
  9364. name: "Normal",
  9365. height: math.unit(6 + 4 / 12, "feet"),
  9366. default: true
  9367. },
  9368. {
  9369. name: "Macro",
  9370. height: math.unit(115, "feet")
  9371. },
  9372. {
  9373. name: "Macro+",
  9374. height: math.unit(955, "feet")
  9375. },
  9376. {
  9377. name: "Megamacro",
  9378. height: math.unit(8990, "feet")
  9379. },
  9380. {
  9381. name: "Gigmacro",
  9382. height: math.unit(9310, "miles")
  9383. },
  9384. {
  9385. name: "Teramacro",
  9386. height: math.unit(1567005010, "miles")
  9387. },
  9388. {
  9389. name: "Examacro",
  9390. height: math.unit(1425, "parsecs")
  9391. },
  9392. ]
  9393. ))
  9394. characterMakers.push(() => makeCharacter(
  9395. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9396. {
  9397. front: {
  9398. height: math.unit(400, "feet"),
  9399. weight: math.unit(44444444, "lb"),
  9400. name: "Front",
  9401. image: {
  9402. source: "./media/characters/major-colonel/front.svg"
  9403. }
  9404. },
  9405. back: {
  9406. height: math.unit(400, "feet"),
  9407. weight: math.unit(44444444, "lb"),
  9408. name: "Back",
  9409. image: {
  9410. source: "./media/characters/major-colonel/back.svg"
  9411. }
  9412. },
  9413. },
  9414. [
  9415. {
  9416. name: "Macro",
  9417. height: math.unit(400, "feet"),
  9418. default: true
  9419. },
  9420. ]
  9421. ))
  9422. characterMakers.push(() => makeCharacter(
  9423. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9424. {
  9425. catFront: {
  9426. height: math.unit(6, "feet"),
  9427. weight: math.unit(120, "lb"),
  9428. name: "Front (Cat Side)",
  9429. image: {
  9430. source: "./media/characters/axel-lycan/cat-front.svg",
  9431. extra: 430 / 402,
  9432. bottom: 43 / 472.35
  9433. }
  9434. },
  9435. catBack: {
  9436. height: math.unit(6, "feet"),
  9437. weight: math.unit(120, "lb"),
  9438. name: "Back (Cat Side)",
  9439. image: {
  9440. source: "./media/characters/axel-lycan/cat-back.svg",
  9441. extra: 447 / 419,
  9442. bottom: 23.3 / 469
  9443. }
  9444. },
  9445. wolfFront: {
  9446. height: math.unit(6, "feet"),
  9447. weight: math.unit(120, "lb"),
  9448. name: "Front (Wolf Side)",
  9449. image: {
  9450. source: "./media/characters/axel-lycan/wolf-front.svg",
  9451. extra: 485 / 456,
  9452. bottom: 19 / 504
  9453. }
  9454. },
  9455. wolfBack: {
  9456. height: math.unit(6, "feet"),
  9457. weight: math.unit(120, "lb"),
  9458. name: "Back (Wolf Side)",
  9459. image: {
  9460. source: "./media/characters/axel-lycan/wolf-back.svg",
  9461. extra: 475 / 438,
  9462. bottom: 39.2 / 514
  9463. }
  9464. },
  9465. },
  9466. [
  9467. {
  9468. name: "Macro",
  9469. height: math.unit(1, "km"),
  9470. default: true
  9471. },
  9472. ]
  9473. ))
  9474. characterMakers.push(() => makeCharacter(
  9475. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9476. {
  9477. front: {
  9478. height: math.unit(5 + 9 / 12, "feet"),
  9479. weight: math.unit(175, "lb"),
  9480. name: "Front",
  9481. image: {
  9482. source: "./media/characters/vanrel-hyena/front.svg",
  9483. extra: 1086 / 1010,
  9484. bottom: 0.04
  9485. }
  9486. },
  9487. },
  9488. [
  9489. {
  9490. name: "Normal",
  9491. height: math.unit(5 + 9 / 12, "feet"),
  9492. default: true
  9493. },
  9494. ]
  9495. ))
  9496. characterMakers.push(() => makeCharacter(
  9497. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9498. {
  9499. front: {
  9500. height: math.unit(6, "feet"),
  9501. weight: math.unit(103, "lb"),
  9502. name: "Front",
  9503. image: {
  9504. source: "./media/characters/abbott-absol/front.svg",
  9505. extra: 2010 / 1842
  9506. }
  9507. },
  9508. },
  9509. [
  9510. {
  9511. name: "Megamicro",
  9512. height: math.unit(0.1, "mm")
  9513. },
  9514. {
  9515. name: "Micro",
  9516. height: math.unit(1, "inch")
  9517. },
  9518. {
  9519. name: "Normal",
  9520. height: math.unit(6, "feet"),
  9521. default: true
  9522. },
  9523. ]
  9524. ))
  9525. characterMakers.push(() => makeCharacter(
  9526. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9527. {
  9528. front: {
  9529. height: math.unit(6, "feet"),
  9530. weight: math.unit(264, "lb"),
  9531. name: "Front",
  9532. image: {
  9533. source: "./media/characters/hector/front.svg",
  9534. extra: 2280 / 2130,
  9535. bottom: 0.07
  9536. }
  9537. },
  9538. },
  9539. [
  9540. {
  9541. name: "Normal",
  9542. height: math.unit(12.25, "foot"),
  9543. default: true
  9544. },
  9545. {
  9546. name: "Macro",
  9547. height: math.unit(160, "feet")
  9548. },
  9549. ]
  9550. ))
  9551. characterMakers.push(() => makeCharacter(
  9552. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9553. {
  9554. front: {
  9555. height: math.unit(6, "feet"),
  9556. weight: math.unit(150, "lb"),
  9557. name: "Front",
  9558. image: {
  9559. source: "./media/characters/sal/front.svg",
  9560. extra: 1846 / 1699,
  9561. bottom: 0.04
  9562. }
  9563. },
  9564. },
  9565. [
  9566. {
  9567. name: "Megamacro",
  9568. height: math.unit(10, "miles"),
  9569. default: true
  9570. },
  9571. ]
  9572. ))
  9573. characterMakers.push(() => makeCharacter(
  9574. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9575. {
  9576. front: {
  9577. height: math.unit(3, "meters"),
  9578. weight: math.unit(450, "kg"),
  9579. name: "front",
  9580. image: {
  9581. source: "./media/characters/ranger/front.svg",
  9582. extra: 2401 / 2243,
  9583. bottom: 0.05
  9584. }
  9585. },
  9586. },
  9587. [
  9588. {
  9589. name: "Normal",
  9590. height: math.unit(3, "meters"),
  9591. default: true
  9592. },
  9593. ]
  9594. ))
  9595. characterMakers.push(() => makeCharacter(
  9596. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9597. {
  9598. front: {
  9599. height: math.unit(14, "feet"),
  9600. weight: math.unit(800, "kg"),
  9601. name: "Front",
  9602. image: {
  9603. source: "./media/characters/theresa/front.svg",
  9604. extra: 3575 / 3346,
  9605. bottom: 0.03
  9606. }
  9607. },
  9608. },
  9609. [
  9610. {
  9611. name: "Normal",
  9612. height: math.unit(14, "feet"),
  9613. default: true
  9614. },
  9615. ]
  9616. ))
  9617. characterMakers.push(() => makeCharacter(
  9618. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9619. {
  9620. front: {
  9621. height: math.unit(6, "feet"),
  9622. weight: math.unit(3, "kg"),
  9623. name: "Front",
  9624. image: {
  9625. source: "./media/characters/ine/front.svg",
  9626. extra: 678 / 539,
  9627. bottom: 0.023
  9628. }
  9629. },
  9630. },
  9631. [
  9632. {
  9633. name: "Normal",
  9634. height: math.unit(2.265, "feet"),
  9635. default: true
  9636. },
  9637. ]
  9638. ))
  9639. characterMakers.push(() => makeCharacter(
  9640. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9641. {
  9642. front: {
  9643. height: math.unit(5, "feet"),
  9644. weight: math.unit(30, "kg"),
  9645. name: "Front",
  9646. image: {
  9647. source: "./media/characters/vial/front.svg",
  9648. extra: 1365 / 1277,
  9649. bottom: 0.04
  9650. }
  9651. },
  9652. },
  9653. [
  9654. {
  9655. name: "Normal",
  9656. height: math.unit(5, "feet"),
  9657. default: true
  9658. },
  9659. ]
  9660. ))
  9661. characterMakers.push(() => makeCharacter(
  9662. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9663. {
  9664. side: {
  9665. height: math.unit(3.4, "meters"),
  9666. weight: math.unit(1000, "lb"),
  9667. name: "Side",
  9668. image: {
  9669. source: "./media/characters/rovoska/side.svg",
  9670. extra: 4403 / 1515
  9671. }
  9672. },
  9673. },
  9674. [
  9675. {
  9676. name: "Normal",
  9677. height: math.unit(3.4, "meters"),
  9678. default: true
  9679. },
  9680. ]
  9681. ))
  9682. characterMakers.push(() => makeCharacter(
  9683. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9684. {
  9685. front: {
  9686. height: math.unit(8, "feet"),
  9687. weight: math.unit(315, "lb"),
  9688. name: "Front",
  9689. image: {
  9690. source: "./media/characters/gunner-rotthbauer/front.svg"
  9691. }
  9692. },
  9693. back: {
  9694. height: math.unit(8, "feet"),
  9695. weight: math.unit(315, "lb"),
  9696. name: "Back",
  9697. image: {
  9698. source: "./media/characters/gunner-rotthbauer/back.svg"
  9699. }
  9700. },
  9701. },
  9702. [
  9703. {
  9704. name: "Micro",
  9705. height: math.unit(3.5, "inches")
  9706. },
  9707. {
  9708. name: "Normal",
  9709. height: math.unit(8, "feet"),
  9710. default: true
  9711. },
  9712. {
  9713. name: "Macro",
  9714. height: math.unit(250, "feet")
  9715. },
  9716. {
  9717. name: "Megamacro",
  9718. height: math.unit(1, "AU")
  9719. },
  9720. ]
  9721. ))
  9722. characterMakers.push(() => makeCharacter(
  9723. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9724. {
  9725. front: {
  9726. height: math.unit(5 + 5 / 12, "feet"),
  9727. weight: math.unit(140, "lb"),
  9728. name: "Front",
  9729. image: {
  9730. source: "./media/characters/allatia/front.svg",
  9731. extra: 1227 / 1180,
  9732. bottom: 0.027
  9733. }
  9734. },
  9735. },
  9736. [
  9737. {
  9738. name: "Normal",
  9739. height: math.unit(5 + 5 / 12, "feet")
  9740. },
  9741. {
  9742. name: "Macro",
  9743. height: math.unit(250, "feet"),
  9744. default: true
  9745. },
  9746. {
  9747. name: "Megamacro",
  9748. height: math.unit(8, "miles")
  9749. }
  9750. ]
  9751. ))
  9752. characterMakers.push(() => makeCharacter(
  9753. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9754. {
  9755. front: {
  9756. height: math.unit(6, "feet"),
  9757. weight: math.unit(120, "lb"),
  9758. name: "Front",
  9759. image: {
  9760. source: "./media/characters/tene/front.svg",
  9761. extra: 1728 / 1578,
  9762. bottom: 0.022
  9763. }
  9764. },
  9765. stomping: {
  9766. height: math.unit(2.025, "meters"),
  9767. weight: math.unit(120, "lb"),
  9768. name: "Stomping",
  9769. image: {
  9770. source: "./media/characters/tene/stomping.svg",
  9771. extra: 938 / 873,
  9772. bottom: 0.01
  9773. }
  9774. },
  9775. sitting: {
  9776. height: math.unit(1, "meter"),
  9777. weight: math.unit(120, "lb"),
  9778. name: "Sitting",
  9779. image: {
  9780. source: "./media/characters/tene/sitting.svg",
  9781. extra: 437 / 415,
  9782. bottom: 0.1
  9783. }
  9784. },
  9785. feral: {
  9786. height: math.unit(3.9, "feet"),
  9787. weight: math.unit(250, "lb"),
  9788. name: "Feral",
  9789. image: {
  9790. source: "./media/characters/tene/feral.svg",
  9791. extra: 717 / 458,
  9792. bottom: 0.179
  9793. }
  9794. },
  9795. },
  9796. [
  9797. {
  9798. name: "Normal",
  9799. height: math.unit(6, "feet")
  9800. },
  9801. {
  9802. name: "Macro",
  9803. height: math.unit(300, "feet"),
  9804. default: true
  9805. },
  9806. {
  9807. name: "Megamacro",
  9808. height: math.unit(5, "miles")
  9809. },
  9810. ]
  9811. ))
  9812. characterMakers.push(() => makeCharacter(
  9813. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9814. {
  9815. side: {
  9816. height: math.unit(6, "feet"),
  9817. name: "Side",
  9818. image: {
  9819. source: "./media/characters/evander/side.svg",
  9820. extra: 877 / 477
  9821. }
  9822. },
  9823. },
  9824. [
  9825. {
  9826. name: "Normal",
  9827. height: math.unit(0.83, "meters"),
  9828. default: true
  9829. },
  9830. ]
  9831. ))
  9832. characterMakers.push(() => makeCharacter(
  9833. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9834. {
  9835. front: {
  9836. height: math.unit(12, "feet"),
  9837. weight: math.unit(1000, "lb"),
  9838. name: "Front",
  9839. image: {
  9840. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9841. extra: 1762 / 1611
  9842. }
  9843. },
  9844. back: {
  9845. height: math.unit(12, "feet"),
  9846. weight: math.unit(1000, "lb"),
  9847. name: "Back",
  9848. image: {
  9849. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9850. extra: 1762 / 1611
  9851. }
  9852. },
  9853. },
  9854. [
  9855. {
  9856. name: "Normal",
  9857. height: math.unit(12, "feet"),
  9858. default: true
  9859. },
  9860. {
  9861. name: "Kaiju",
  9862. height: math.unit(150, "feet")
  9863. },
  9864. ]
  9865. ))
  9866. characterMakers.push(() => makeCharacter(
  9867. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9868. {
  9869. front: {
  9870. height: math.unit(6, "feet"),
  9871. weight: math.unit(150, "lb"),
  9872. name: "Front",
  9873. image: {
  9874. source: "./media/characters/zero-alurus/front.svg"
  9875. }
  9876. },
  9877. back: {
  9878. height: math.unit(6, "feet"),
  9879. weight: math.unit(150, "lb"),
  9880. name: "Back",
  9881. image: {
  9882. source: "./media/characters/zero-alurus/back.svg"
  9883. }
  9884. },
  9885. },
  9886. [
  9887. {
  9888. name: "Normal",
  9889. height: math.unit(5 + 10 / 12, "feet")
  9890. },
  9891. {
  9892. name: "Macro",
  9893. height: math.unit(60, "feet"),
  9894. default: true
  9895. },
  9896. {
  9897. name: "Macro+",
  9898. height: math.unit(450, "feet")
  9899. },
  9900. ]
  9901. ))
  9902. characterMakers.push(() => makeCharacter(
  9903. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9904. {
  9905. front: {
  9906. height: math.unit(6, "feet"),
  9907. weight: math.unit(200, "lb"),
  9908. name: "Front",
  9909. image: {
  9910. source: "./media/characters/mega-shi/front.svg",
  9911. extra: 1279 / 1250,
  9912. bottom: 0.02
  9913. }
  9914. },
  9915. back: {
  9916. height: math.unit(6, "feet"),
  9917. weight: math.unit(200, "lb"),
  9918. name: "Back",
  9919. image: {
  9920. source: "./media/characters/mega-shi/back.svg",
  9921. extra: 1279 / 1250,
  9922. bottom: 0.02
  9923. }
  9924. },
  9925. },
  9926. [
  9927. {
  9928. name: "Micro",
  9929. height: math.unit(16 + 6 / 12, "feet")
  9930. },
  9931. {
  9932. name: "Third Dimension",
  9933. height: math.unit(40, "meters")
  9934. },
  9935. {
  9936. name: "Normal",
  9937. height: math.unit(660, "feet"),
  9938. default: true
  9939. },
  9940. {
  9941. name: "Megamacro",
  9942. height: math.unit(10, "miles")
  9943. },
  9944. {
  9945. name: "Planetary Launch",
  9946. height: math.unit(500, "miles")
  9947. },
  9948. {
  9949. name: "Interstellar",
  9950. height: math.unit(1e9, "miles")
  9951. },
  9952. {
  9953. name: "Leaving the Universe",
  9954. height: math.unit(1, "gigaparsec")
  9955. },
  9956. {
  9957. name: "Travelling Universes",
  9958. height: math.unit(30e15, "parsecs")
  9959. },
  9960. ]
  9961. ))
  9962. characterMakers.push(() => makeCharacter(
  9963. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9964. {
  9965. front: {
  9966. height: math.unit(6, "feet"),
  9967. weight: math.unit(150, "lb"),
  9968. name: "Front",
  9969. image: {
  9970. source: "./media/characters/odyssey/front.svg",
  9971. extra: 1782 / 1582,
  9972. bottom: 0.01
  9973. }
  9974. },
  9975. side: {
  9976. height: math.unit(5.7, "feet"),
  9977. weight: math.unit(140, "lb"),
  9978. name: "Side",
  9979. image: {
  9980. source: "./media/characters/odyssey/side.svg",
  9981. extra: 6462 / 5700
  9982. }
  9983. },
  9984. },
  9985. [
  9986. {
  9987. name: "Normal",
  9988. height: math.unit(5 + 4 / 12, "feet")
  9989. },
  9990. {
  9991. name: "Macro",
  9992. height: math.unit(1, "km")
  9993. },
  9994. {
  9995. name: "Megamacro",
  9996. height: math.unit(3000, "km")
  9997. },
  9998. {
  9999. name: "Gigamacro",
  10000. height: math.unit(1, "AU"),
  10001. default: true
  10002. },
  10003. {
  10004. name: "Omniversal",
  10005. height: math.unit(100e14, "lightyears")
  10006. },
  10007. ]
  10008. ))
  10009. characterMakers.push(() => makeCharacter(
  10010. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10011. {
  10012. front: {
  10013. height: math.unit(6, "feet"),
  10014. weight: math.unit(300, "lb"),
  10015. name: "Front",
  10016. image: {
  10017. source: "./media/characters/mekuto/front.svg",
  10018. extra: 921 / 832,
  10019. bottom: 0.03
  10020. }
  10021. },
  10022. hand: {
  10023. height: math.unit(6 / 10.24, "feet"),
  10024. name: "Hand",
  10025. image: {
  10026. source: "./media/characters/mekuto/hand.svg"
  10027. }
  10028. },
  10029. foot: {
  10030. height: math.unit(6 / 5.05, "feet"),
  10031. name: "Foot",
  10032. image: {
  10033. source: "./media/characters/mekuto/foot.svg"
  10034. }
  10035. },
  10036. },
  10037. [
  10038. {
  10039. name: "Minimicro",
  10040. height: math.unit(0.2, "inches")
  10041. },
  10042. {
  10043. name: "Micro",
  10044. height: math.unit(1.5, "inches")
  10045. },
  10046. {
  10047. name: "Normal",
  10048. height: math.unit(5 + 11 / 12, "feet"),
  10049. default: true
  10050. },
  10051. {
  10052. name: "Minimacro",
  10053. height: math.unit(17 + 9 / 12, "feet")
  10054. },
  10055. {
  10056. name: "Macro",
  10057. height: math.unit(177.5, "feet")
  10058. },
  10059. {
  10060. name: "Megamacro",
  10061. height: math.unit(152, "miles")
  10062. },
  10063. ]
  10064. ))
  10065. characterMakers.push(() => makeCharacter(
  10066. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10067. {
  10068. front: {
  10069. height: math.unit(6.5, "inches"),
  10070. weight: math.unit(13, "oz"),
  10071. name: "Front",
  10072. image: {
  10073. source: "./media/characters/dafydd-tomos/front.svg",
  10074. extra: 2990 / 2603,
  10075. bottom: 0.03
  10076. }
  10077. },
  10078. },
  10079. [
  10080. {
  10081. name: "Micro",
  10082. height: math.unit(6.5, "inches"),
  10083. default: true
  10084. },
  10085. ]
  10086. ))
  10087. characterMakers.push(() => makeCharacter(
  10088. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10089. {
  10090. front: {
  10091. height: math.unit(6, "feet"),
  10092. weight: math.unit(150, "lb"),
  10093. name: "Front",
  10094. image: {
  10095. source: "./media/characters/splinter/front.svg",
  10096. extra: 2990 / 2882,
  10097. bottom: 0.04
  10098. }
  10099. },
  10100. back: {
  10101. height: math.unit(6, "feet"),
  10102. weight: math.unit(150, "lb"),
  10103. name: "Back",
  10104. image: {
  10105. source: "./media/characters/splinter/back.svg",
  10106. extra: 2990 / 2882,
  10107. bottom: 0.04
  10108. }
  10109. },
  10110. },
  10111. [
  10112. {
  10113. name: "Normal",
  10114. height: math.unit(6, "feet")
  10115. },
  10116. {
  10117. name: "Macro",
  10118. height: math.unit(230, "meters"),
  10119. default: true
  10120. },
  10121. ]
  10122. ))
  10123. characterMakers.push(() => makeCharacter(
  10124. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10125. {
  10126. front: {
  10127. height: math.unit(4 + 10 / 12, "feet"),
  10128. weight: math.unit(480, "lb"),
  10129. name: "Front",
  10130. image: {
  10131. source: "./media/characters/snow-gabumon/front.svg",
  10132. extra: 1140 / 963,
  10133. bottom: 0.058
  10134. }
  10135. },
  10136. back: {
  10137. height: math.unit(4 + 10 / 12, "feet"),
  10138. weight: math.unit(480, "lb"),
  10139. name: "Back",
  10140. image: {
  10141. source: "./media/characters/snow-gabumon/back.svg",
  10142. extra: 1115 / 962,
  10143. bottom: 0.041
  10144. }
  10145. },
  10146. frontUndresed: {
  10147. height: math.unit(4 + 10 / 12, "feet"),
  10148. weight: math.unit(480, "lb"),
  10149. name: "Front (Undressed)",
  10150. image: {
  10151. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10152. extra: 1061 / 960,
  10153. bottom: 0.045
  10154. }
  10155. },
  10156. },
  10157. [
  10158. {
  10159. name: "Micro",
  10160. height: math.unit(1, "inch")
  10161. },
  10162. {
  10163. name: "Normal",
  10164. height: math.unit(4 + 10 / 12, "feet"),
  10165. default: true
  10166. },
  10167. {
  10168. name: "Macro",
  10169. height: math.unit(200, "feet")
  10170. },
  10171. {
  10172. name: "Megamacro",
  10173. height: math.unit(120, "miles")
  10174. },
  10175. {
  10176. name: "Gigamacro",
  10177. height: math.unit(9800, "miles")
  10178. },
  10179. ]
  10180. ))
  10181. characterMakers.push(() => makeCharacter(
  10182. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10183. {
  10184. front: {
  10185. height: math.unit(1.7, "meters"),
  10186. weight: math.unit(140, "lb"),
  10187. name: "Front",
  10188. image: {
  10189. source: "./media/characters/moody/front.svg",
  10190. extra: 3226 / 3007,
  10191. bottom: 0.087
  10192. }
  10193. },
  10194. },
  10195. [
  10196. {
  10197. name: "Micro",
  10198. height: math.unit(1, "mm")
  10199. },
  10200. {
  10201. name: "Normal",
  10202. height: math.unit(1.7, "meters"),
  10203. default: true
  10204. },
  10205. {
  10206. name: "Macro",
  10207. height: math.unit(80, "meters")
  10208. },
  10209. {
  10210. name: "Macro+",
  10211. height: math.unit(500, "meters")
  10212. },
  10213. ]
  10214. ))
  10215. characterMakers.push(() => makeCharacter(
  10216. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10217. {
  10218. front: {
  10219. height: math.unit(6, "feet"),
  10220. weight: math.unit(150, "lb"),
  10221. name: "Front",
  10222. image: {
  10223. source: "./media/characters/zyas/front.svg",
  10224. extra: 1180 / 1120,
  10225. bottom: 0.045
  10226. }
  10227. },
  10228. },
  10229. [
  10230. {
  10231. name: "Normal",
  10232. height: math.unit(10, "feet"),
  10233. default: true
  10234. },
  10235. {
  10236. name: "Macro",
  10237. height: math.unit(500, "feet")
  10238. },
  10239. {
  10240. name: "Megamacro",
  10241. height: math.unit(5, "miles")
  10242. },
  10243. {
  10244. name: "Teramacro",
  10245. height: math.unit(150000, "miles")
  10246. },
  10247. ]
  10248. ))
  10249. characterMakers.push(() => makeCharacter(
  10250. { name: "Cuon", species: ["border-collie"], 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/cuon/front.svg",
  10258. extra: 1390 / 1320,
  10259. bottom: 0.008
  10260. }
  10261. },
  10262. },
  10263. [
  10264. {
  10265. name: "Micro",
  10266. height: math.unit(3, "inches")
  10267. },
  10268. {
  10269. name: "Normal",
  10270. height: math.unit(18 + 9 / 12, "feet"),
  10271. default: true
  10272. },
  10273. {
  10274. name: "Macro",
  10275. height: math.unit(360, "feet")
  10276. },
  10277. {
  10278. name: "Megamacro",
  10279. height: math.unit(360, "miles")
  10280. },
  10281. ]
  10282. ))
  10283. characterMakers.push(() => makeCharacter(
  10284. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10285. {
  10286. front: {
  10287. height: math.unit(2.4, "meters"),
  10288. weight: math.unit(70, "kg"),
  10289. name: "Front",
  10290. image: {
  10291. source: "./media/characters/nyanuxk/front.svg",
  10292. extra: 1172 / 1084,
  10293. bottom: 0.065
  10294. }
  10295. },
  10296. side: {
  10297. height: math.unit(2.4, "meters"),
  10298. weight: math.unit(70, "kg"),
  10299. name: "Side",
  10300. image: {
  10301. source: "./media/characters/nyanuxk/side.svg",
  10302. extra: 1190 / 1132,
  10303. bottom: 0.007
  10304. }
  10305. },
  10306. back: {
  10307. height: math.unit(2.4, "meters"),
  10308. weight: math.unit(70, "kg"),
  10309. name: "Back",
  10310. image: {
  10311. source: "./media/characters/nyanuxk/back.svg",
  10312. extra: 1200 / 1141,
  10313. bottom: 0.015
  10314. }
  10315. },
  10316. foot: {
  10317. height: math.unit(0.52, "meters"),
  10318. name: "Foot",
  10319. image: {
  10320. source: "./media/characters/nyanuxk/foot.svg"
  10321. }
  10322. },
  10323. },
  10324. [
  10325. {
  10326. name: "Micro",
  10327. height: math.unit(2, "cm")
  10328. },
  10329. {
  10330. name: "Normal",
  10331. height: math.unit(2.4, "meters"),
  10332. default: true
  10333. },
  10334. {
  10335. name: "Smaller Macro",
  10336. height: math.unit(120, "meters")
  10337. },
  10338. {
  10339. name: "Bigger Macro",
  10340. height: math.unit(1.2, "km")
  10341. },
  10342. {
  10343. name: "Megamacro",
  10344. height: math.unit(15, "kilometers")
  10345. },
  10346. {
  10347. name: "Gigamacro",
  10348. height: math.unit(2000, "km")
  10349. },
  10350. {
  10351. name: "Teramacro",
  10352. height: math.unit(500000, "km")
  10353. },
  10354. ]
  10355. ))
  10356. characterMakers.push(() => makeCharacter(
  10357. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10358. {
  10359. side: {
  10360. height: math.unit(6, "feet"),
  10361. name: "Side",
  10362. image: {
  10363. source: "./media/characters/ailbhe/side.svg",
  10364. extra: 757 / 464,
  10365. bottom: 0.041
  10366. }
  10367. },
  10368. },
  10369. [
  10370. {
  10371. name: "Normal",
  10372. height: math.unit(1.07, "meters"),
  10373. default: true
  10374. },
  10375. ]
  10376. ))
  10377. characterMakers.push(() => makeCharacter(
  10378. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10379. {
  10380. front: {
  10381. height: math.unit(6, "feet"),
  10382. weight: math.unit(120, "kg"),
  10383. name: "Front",
  10384. image: {
  10385. source: "./media/characters/zevulfius/front.svg",
  10386. extra: 965 / 903
  10387. }
  10388. },
  10389. side: {
  10390. height: math.unit(6, "feet"),
  10391. weight: math.unit(120, "kg"),
  10392. name: "Side",
  10393. image: {
  10394. source: "./media/characters/zevulfius/side.svg",
  10395. extra: 939 / 900
  10396. }
  10397. },
  10398. back: {
  10399. height: math.unit(6, "feet"),
  10400. weight: math.unit(120, "kg"),
  10401. name: "Back",
  10402. image: {
  10403. source: "./media/characters/zevulfius/back.svg",
  10404. extra: 918 / 854,
  10405. bottom: 0.005
  10406. }
  10407. },
  10408. foot: {
  10409. height: math.unit(6 / 3.72, "feet"),
  10410. name: "Foot",
  10411. image: {
  10412. source: "./media/characters/zevulfius/foot.svg"
  10413. }
  10414. },
  10415. },
  10416. [
  10417. {
  10418. name: "Macro",
  10419. height: math.unit(750, "meters")
  10420. },
  10421. {
  10422. name: "Megamacro",
  10423. height: math.unit(20, "km"),
  10424. default: true
  10425. },
  10426. {
  10427. name: "Gigamacro",
  10428. height: math.unit(2000, "km")
  10429. },
  10430. {
  10431. name: "Teramacro",
  10432. height: math.unit(250000, "km")
  10433. },
  10434. ]
  10435. ))
  10436. characterMakers.push(() => makeCharacter(
  10437. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10438. {
  10439. front: {
  10440. height: math.unit(100, "feet"),
  10441. weight: math.unit(350, "kg"),
  10442. name: "Front",
  10443. image: {
  10444. source: "./media/characters/rikes/front.svg",
  10445. extra: 1565 / 1483,
  10446. bottom: 0.017
  10447. }
  10448. },
  10449. },
  10450. [
  10451. {
  10452. name: "Macro",
  10453. height: math.unit(100, "feet"),
  10454. default: true
  10455. },
  10456. ]
  10457. ))
  10458. characterMakers.push(() => makeCharacter(
  10459. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10460. {
  10461. front: {
  10462. height: math.unit(8, "feet"),
  10463. weight: math.unit(356, "lb"),
  10464. name: "Front",
  10465. image: {
  10466. source: "./media/characters/adam-silver-mane/front.svg",
  10467. extra: 1036/937,
  10468. bottom: 63/1099
  10469. }
  10470. },
  10471. side: {
  10472. height: math.unit(8, "feet"),
  10473. weight: math.unit(356, "lb"),
  10474. name: "Side",
  10475. image: {
  10476. source: "./media/characters/adam-silver-mane/side.svg",
  10477. extra: 997/901,
  10478. bottom: 59/1056
  10479. }
  10480. },
  10481. frontNsfw: {
  10482. height: math.unit(8, "feet"),
  10483. weight: math.unit(356, "lb"),
  10484. name: "Front (NSFW)",
  10485. image: {
  10486. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10487. extra: 1036/937,
  10488. bottom: 63/1099
  10489. }
  10490. },
  10491. sideNsfw: {
  10492. height: math.unit(8, "feet"),
  10493. weight: math.unit(356, "lb"),
  10494. name: "Side (NSFW)",
  10495. image: {
  10496. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10497. extra: 997/901,
  10498. bottom: 59/1056
  10499. }
  10500. },
  10501. dick: {
  10502. height: math.unit(2.1, "feet"),
  10503. name: "Dick",
  10504. image: {
  10505. source: "./media/characters/adam-silver-mane/dick.svg"
  10506. }
  10507. },
  10508. taur: {
  10509. height: math.unit(16, "feet"),
  10510. weight: math.unit(1500, "kg"),
  10511. name: "Taur",
  10512. image: {
  10513. source: "./media/characters/adam-silver-mane/taur.svg",
  10514. extra: 1713 / 1571,
  10515. bottom: 0.01
  10516. }
  10517. },
  10518. },
  10519. [
  10520. {
  10521. name: "Normal",
  10522. height: math.unit(8, "feet")
  10523. },
  10524. {
  10525. name: "Minimacro",
  10526. height: math.unit(80, "feet")
  10527. },
  10528. {
  10529. name: "MDA",
  10530. height: math.unit(80, "meters")
  10531. },
  10532. {
  10533. name: "Macro",
  10534. height: math.unit(800, "feet"),
  10535. default: true
  10536. },
  10537. {
  10538. name: "Megamacro",
  10539. height: math.unit(8000, "feet")
  10540. },
  10541. {
  10542. name: "Gigamacro",
  10543. height: math.unit(800, "miles")
  10544. },
  10545. {
  10546. name: "Teramacro",
  10547. height: math.unit(80000, "miles")
  10548. },
  10549. {
  10550. name: "Celestial",
  10551. height: math.unit(8e6, "miles")
  10552. },
  10553. {
  10554. name: "Star Dragon",
  10555. height: math.unit(800000, "parsecs")
  10556. },
  10557. {
  10558. name: "Godly",
  10559. height: math.unit(800, "teraparsecs")
  10560. },
  10561. ]
  10562. ))
  10563. characterMakers.push(() => makeCharacter(
  10564. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10565. {
  10566. front: {
  10567. height: math.unit(6, "feet"),
  10568. weight: math.unit(150, "lb"),
  10569. name: "Front",
  10570. image: {
  10571. source: "./media/characters/ky'owin/front.svg",
  10572. extra: 3888 / 3068,
  10573. bottom: 0.015
  10574. }
  10575. },
  10576. },
  10577. [
  10578. {
  10579. name: "Normal",
  10580. height: math.unit(6 + 8 / 12, "feet")
  10581. },
  10582. {
  10583. name: "Large",
  10584. height: math.unit(68, "feet")
  10585. },
  10586. {
  10587. name: "Macro",
  10588. height: math.unit(132, "feet")
  10589. },
  10590. {
  10591. name: "Macro+",
  10592. height: math.unit(340, "feet")
  10593. },
  10594. {
  10595. name: "Macro++",
  10596. height: math.unit(680, "feet"),
  10597. default: true
  10598. },
  10599. {
  10600. name: "Megamacro",
  10601. height: math.unit(1, "mile")
  10602. },
  10603. {
  10604. name: "Megamacro+",
  10605. height: math.unit(10, "miles")
  10606. },
  10607. ]
  10608. ))
  10609. characterMakers.push(() => makeCharacter(
  10610. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10611. {
  10612. front: {
  10613. height: math.unit(4, "feet"),
  10614. weight: math.unit(50, "lb"),
  10615. name: "Front",
  10616. image: {
  10617. source: "./media/characters/mal/front.svg",
  10618. extra: 785 / 724,
  10619. bottom: 0.07
  10620. }
  10621. },
  10622. },
  10623. [
  10624. {
  10625. name: "Micro",
  10626. height: math.unit(4, "inches")
  10627. },
  10628. {
  10629. name: "Normal",
  10630. height: math.unit(4, "feet"),
  10631. default: true
  10632. },
  10633. {
  10634. name: "Macro",
  10635. height: math.unit(200, "feet")
  10636. },
  10637. ]
  10638. ))
  10639. characterMakers.push(() => makeCharacter(
  10640. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10641. {
  10642. front: {
  10643. height: math.unit(6, "feet"),
  10644. weight: math.unit(150, "lb"),
  10645. name: "Front",
  10646. image: {
  10647. source: "./media/characters/jordan-deware/front.svg",
  10648. extra: 1191 / 1012
  10649. }
  10650. },
  10651. },
  10652. [
  10653. {
  10654. name: "Nano",
  10655. height: math.unit(0.01, "mm")
  10656. },
  10657. {
  10658. name: "Minimicro",
  10659. height: math.unit(1, "mm")
  10660. },
  10661. {
  10662. name: "Micro",
  10663. height: math.unit(0.5, "inches")
  10664. },
  10665. {
  10666. name: "Normal",
  10667. height: math.unit(4, "feet"),
  10668. default: true
  10669. },
  10670. {
  10671. name: "Minimacro",
  10672. height: math.unit(40, "meters")
  10673. },
  10674. {
  10675. name: "Small Macro",
  10676. height: math.unit(400, "meters")
  10677. },
  10678. {
  10679. name: "Macro",
  10680. height: math.unit(4, "miles")
  10681. },
  10682. {
  10683. name: "Megamacro",
  10684. height: math.unit(40, "miles")
  10685. },
  10686. {
  10687. name: "Megamacro+",
  10688. height: math.unit(400, "miles")
  10689. },
  10690. {
  10691. name: "Gigamacro",
  10692. height: math.unit(400000, "miles")
  10693. },
  10694. ]
  10695. ))
  10696. characterMakers.push(() => makeCharacter(
  10697. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10698. {
  10699. side: {
  10700. height: math.unit(6, "feet"),
  10701. weight: math.unit(150, "lb"),
  10702. name: "Side",
  10703. image: {
  10704. source: "./media/characters/kimiko/side.svg",
  10705. extra: 600 / 358
  10706. }
  10707. },
  10708. },
  10709. [
  10710. {
  10711. name: "Normal",
  10712. height: math.unit(15, "feet"),
  10713. default: true
  10714. },
  10715. {
  10716. name: "Macro",
  10717. height: math.unit(220, "feet")
  10718. },
  10719. {
  10720. name: "Macro+",
  10721. height: math.unit(1450, "feet")
  10722. },
  10723. {
  10724. name: "Megamacro",
  10725. height: math.unit(11500, "feet")
  10726. },
  10727. {
  10728. name: "Gigamacro",
  10729. height: math.unit(9500, "miles")
  10730. },
  10731. {
  10732. name: "Teramacro",
  10733. height: math.unit(2208005005, "miles")
  10734. },
  10735. {
  10736. name: "Examacro",
  10737. height: math.unit(2750, "parsecs")
  10738. },
  10739. {
  10740. name: "Zettamacro",
  10741. height: math.unit(101500, "parsecs")
  10742. },
  10743. ]
  10744. ))
  10745. characterMakers.push(() => makeCharacter(
  10746. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10747. {
  10748. front: {
  10749. height: math.unit(6, "feet"),
  10750. weight: math.unit(70, "kg"),
  10751. name: "Front",
  10752. image: {
  10753. source: "./media/characters/andrew-sleepy/front.svg"
  10754. }
  10755. },
  10756. side: {
  10757. height: math.unit(6, "feet"),
  10758. weight: math.unit(70, "kg"),
  10759. name: "Side",
  10760. image: {
  10761. source: "./media/characters/andrew-sleepy/side.svg"
  10762. }
  10763. },
  10764. },
  10765. [
  10766. {
  10767. name: "Micro",
  10768. height: math.unit(1, "mm"),
  10769. default: true
  10770. },
  10771. ]
  10772. ))
  10773. characterMakers.push(() => makeCharacter(
  10774. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10775. {
  10776. front: {
  10777. height: math.unit(6, "feet"),
  10778. weight: math.unit(150, "lb"),
  10779. name: "Front",
  10780. image: {
  10781. source: "./media/characters/judio/front.svg",
  10782. extra: 1258 / 1110
  10783. }
  10784. },
  10785. },
  10786. [
  10787. {
  10788. name: "Normal",
  10789. height: math.unit(5 + 6 / 12, "feet")
  10790. },
  10791. {
  10792. name: "Macro",
  10793. height: math.unit(1000, "feet"),
  10794. default: true
  10795. },
  10796. {
  10797. name: "Megamacro",
  10798. height: math.unit(10, "miles")
  10799. },
  10800. ]
  10801. ))
  10802. characterMakers.push(() => makeCharacter(
  10803. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10804. {
  10805. front: {
  10806. height: math.unit(6, "feet"),
  10807. weight: math.unit(68, "kg"),
  10808. name: "Front",
  10809. image: {
  10810. source: "./media/characters/nomaxice/front.svg",
  10811. extra: 1498 / 1073,
  10812. bottom: 0.075
  10813. }
  10814. },
  10815. foot: {
  10816. height: math.unit(1.1, "feet"),
  10817. name: "Foot",
  10818. image: {
  10819. source: "./media/characters/nomaxice/foot.svg"
  10820. }
  10821. },
  10822. },
  10823. [
  10824. {
  10825. name: "Micro",
  10826. height: math.unit(8, "cm")
  10827. },
  10828. {
  10829. name: "Norm",
  10830. height: math.unit(1.82, "m")
  10831. },
  10832. {
  10833. name: "Norm+",
  10834. height: math.unit(8.8, "feet")
  10835. },
  10836. {
  10837. name: "Big",
  10838. height: math.unit(8, "meters"),
  10839. default: true
  10840. },
  10841. {
  10842. name: "Macro",
  10843. height: math.unit(18, "meters")
  10844. },
  10845. {
  10846. name: "Macro+",
  10847. height: math.unit(88, "meters")
  10848. },
  10849. ]
  10850. ))
  10851. characterMakers.push(() => makeCharacter(
  10852. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10853. {
  10854. front: {
  10855. height: math.unit(12, "feet"),
  10856. weight: math.unit(1.5, "tons"),
  10857. name: "Front",
  10858. image: {
  10859. source: "./media/characters/dydros/front.svg",
  10860. extra: 863 / 800,
  10861. bottom: 0.015
  10862. }
  10863. },
  10864. back: {
  10865. height: math.unit(12, "feet"),
  10866. weight: math.unit(1.5, "tons"),
  10867. name: "Back",
  10868. image: {
  10869. source: "./media/characters/dydros/back.svg",
  10870. extra: 900 / 843,
  10871. bottom: 0.005
  10872. }
  10873. },
  10874. },
  10875. [
  10876. {
  10877. name: "Normal",
  10878. height: math.unit(12, "feet"),
  10879. default: true
  10880. },
  10881. ]
  10882. ))
  10883. characterMakers.push(() => makeCharacter(
  10884. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10885. {
  10886. front: {
  10887. height: math.unit(6, "feet"),
  10888. weight: math.unit(100, "kg"),
  10889. name: "Front",
  10890. image: {
  10891. source: "./media/characters/riggi/front.svg",
  10892. extra: 5787 / 5303
  10893. }
  10894. },
  10895. hyper: {
  10896. height: math.unit(6 * 5 / 3, "feet"),
  10897. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10898. name: "Hyper",
  10899. image: {
  10900. source: "./media/characters/riggi/hyper.svg",
  10901. extra: 3595 / 3485
  10902. }
  10903. },
  10904. },
  10905. [
  10906. {
  10907. name: "Small Macro",
  10908. height: math.unit(50, "feet")
  10909. },
  10910. {
  10911. name: "Default",
  10912. height: math.unit(200, "feet"),
  10913. default: true
  10914. },
  10915. {
  10916. name: "Loom",
  10917. height: math.unit(10000, "feet")
  10918. },
  10919. {
  10920. name: "Cruising Altitude",
  10921. height: math.unit(30000, "feet")
  10922. },
  10923. {
  10924. name: "Megamacro",
  10925. height: math.unit(100, "miles")
  10926. },
  10927. {
  10928. name: "Continent Sized",
  10929. height: math.unit(2800, "miles")
  10930. },
  10931. {
  10932. name: "Earth Sized",
  10933. height: math.unit(8000, "miles")
  10934. },
  10935. ]
  10936. ))
  10937. characterMakers.push(() => makeCharacter(
  10938. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10939. {
  10940. front: {
  10941. height: math.unit(6, "feet"),
  10942. weight: math.unit(250, "lb"),
  10943. name: "Front",
  10944. image: {
  10945. source: "./media/characters/alexi/front.svg",
  10946. extra: 3483 / 3291,
  10947. bottom: 0.04
  10948. }
  10949. },
  10950. back: {
  10951. height: math.unit(6, "feet"),
  10952. weight: math.unit(250, "lb"),
  10953. name: "Back",
  10954. image: {
  10955. source: "./media/characters/alexi/back.svg",
  10956. extra: 3533 / 3356,
  10957. bottom: 0.021
  10958. }
  10959. },
  10960. frontTransforming: {
  10961. height: math.unit(8.58, "feet"),
  10962. weight: math.unit(1300, "lb"),
  10963. name: "Transforming",
  10964. image: {
  10965. source: "./media/characters/alexi/front-transforming.svg",
  10966. extra: 437 / 409,
  10967. bottom: 19 / 458.66
  10968. }
  10969. },
  10970. frontTransformed: {
  10971. height: math.unit(12.5, "feet"),
  10972. weight: math.unit(4000, "lb"),
  10973. name: "Transformed",
  10974. image: {
  10975. source: "./media/characters/alexi/front-transformed.svg",
  10976. extra: 639 / 614,
  10977. bottom: 30.55 / 671
  10978. }
  10979. },
  10980. },
  10981. [
  10982. {
  10983. name: "Normal",
  10984. height: math.unit(14, "feet"),
  10985. default: true
  10986. },
  10987. {
  10988. name: "Minimacro",
  10989. height: math.unit(30, "meters")
  10990. },
  10991. {
  10992. name: "Macro",
  10993. height: math.unit(500, "meters")
  10994. },
  10995. {
  10996. name: "Megamacro",
  10997. height: math.unit(9000, "km")
  10998. },
  10999. {
  11000. name: "Teramacro",
  11001. height: math.unit(384000, "km")
  11002. },
  11003. ]
  11004. ))
  11005. characterMakers.push(() => makeCharacter(
  11006. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11007. {
  11008. front: {
  11009. height: math.unit(6, "feet"),
  11010. weight: math.unit(150, "lb"),
  11011. name: "Front",
  11012. image: {
  11013. source: "./media/characters/kayroo/front.svg",
  11014. extra: 1153 / 1038,
  11015. bottom: 0.06
  11016. }
  11017. },
  11018. foot: {
  11019. height: math.unit(6, "feet"),
  11020. weight: math.unit(150, "lb"),
  11021. name: "Foot",
  11022. image: {
  11023. source: "./media/characters/kayroo/foot.svg"
  11024. }
  11025. },
  11026. },
  11027. [
  11028. {
  11029. name: "Normal",
  11030. height: math.unit(8, "feet"),
  11031. default: true
  11032. },
  11033. {
  11034. name: "Minimacro",
  11035. height: math.unit(250, "feet")
  11036. },
  11037. {
  11038. name: "Macro",
  11039. height: math.unit(2800, "feet")
  11040. },
  11041. {
  11042. name: "Megamacro",
  11043. height: math.unit(5200, "feet")
  11044. },
  11045. {
  11046. name: "Gigamacro",
  11047. height: math.unit(27000, "feet")
  11048. },
  11049. {
  11050. name: "Omega",
  11051. height: math.unit(45000, "feet")
  11052. },
  11053. ]
  11054. ))
  11055. characterMakers.push(() => makeCharacter(
  11056. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11057. {
  11058. front: {
  11059. height: math.unit(18, "feet"),
  11060. weight: math.unit(5800, "lb"),
  11061. name: "Front",
  11062. image: {
  11063. source: "./media/characters/rhys/front.svg",
  11064. extra: 3386 / 3090,
  11065. bottom: 0.07
  11066. }
  11067. },
  11068. },
  11069. [
  11070. {
  11071. name: "Normal",
  11072. height: math.unit(18, "feet"),
  11073. default: true
  11074. },
  11075. {
  11076. name: "Working Size",
  11077. height: math.unit(200, "feet")
  11078. },
  11079. {
  11080. name: "Demolition Size",
  11081. height: math.unit(2000, "feet")
  11082. },
  11083. {
  11084. name: "Maximum Licensed Size",
  11085. height: math.unit(5, "miles")
  11086. },
  11087. {
  11088. name: "Maximum Observed Size",
  11089. height: math.unit(10, "yottameters")
  11090. },
  11091. ]
  11092. ))
  11093. characterMakers.push(() => makeCharacter(
  11094. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11095. {
  11096. front: {
  11097. height: math.unit(6, "feet"),
  11098. weight: math.unit(250, "lb"),
  11099. name: "Front",
  11100. image: {
  11101. source: "./media/characters/toto/front.svg",
  11102. extra: 527 / 479,
  11103. bottom: 0.05
  11104. }
  11105. },
  11106. },
  11107. [
  11108. {
  11109. name: "Micro",
  11110. height: math.unit(3, "feet")
  11111. },
  11112. {
  11113. name: "Normal",
  11114. height: math.unit(10, "feet")
  11115. },
  11116. {
  11117. name: "Macro",
  11118. height: math.unit(150, "feet"),
  11119. default: true
  11120. },
  11121. {
  11122. name: "Megamacro",
  11123. height: math.unit(1200, "feet")
  11124. },
  11125. ]
  11126. ))
  11127. characterMakers.push(() => makeCharacter(
  11128. { name: "King", species: ["lion"], tags: ["anthro"] },
  11129. {
  11130. back: {
  11131. height: math.unit(6, "feet"),
  11132. weight: math.unit(150, "lb"),
  11133. name: "Back",
  11134. image: {
  11135. source: "./media/characters/king/back.svg"
  11136. }
  11137. },
  11138. },
  11139. [
  11140. {
  11141. name: "Micro",
  11142. height: math.unit(2, "inches")
  11143. },
  11144. {
  11145. name: "Normal",
  11146. height: math.unit(8, "feet")
  11147. },
  11148. {
  11149. name: "Macro",
  11150. height: math.unit(200, "feet"),
  11151. default: true
  11152. },
  11153. {
  11154. name: "Megamacro",
  11155. height: math.unit(50, "miles")
  11156. },
  11157. ]
  11158. ))
  11159. characterMakers.push(() => makeCharacter(
  11160. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11161. {
  11162. front: {
  11163. height: math.unit(11, "feet"),
  11164. weight: math.unit(1400, "lb"),
  11165. name: "Front",
  11166. image: {
  11167. source: "./media/characters/cordite/front.svg",
  11168. extra: 1919/1827,
  11169. bottom: 40/1959
  11170. }
  11171. },
  11172. side: {
  11173. height: math.unit(11, "feet"),
  11174. weight: math.unit(1400, "lb"),
  11175. name: "Side",
  11176. image: {
  11177. source: "./media/characters/cordite/side.svg",
  11178. extra: 1908/1793,
  11179. bottom: 38/1946
  11180. }
  11181. },
  11182. back: {
  11183. height: math.unit(11, "feet"),
  11184. weight: math.unit(1400, "lb"),
  11185. name: "Back",
  11186. image: {
  11187. source: "./media/characters/cordite/back.svg",
  11188. extra: 1938/1837,
  11189. bottom: 10/1948
  11190. }
  11191. },
  11192. feral: {
  11193. height: math.unit(2, "feet"),
  11194. weight: math.unit(90, "lb"),
  11195. name: "Feral",
  11196. image: {
  11197. source: "./media/characters/cordite/feral.svg",
  11198. extra: 1260 / 755,
  11199. bottom: 0.05
  11200. }
  11201. },
  11202. },
  11203. [
  11204. {
  11205. name: "Normal",
  11206. height: math.unit(11, "feet"),
  11207. default: true
  11208. },
  11209. ]
  11210. ))
  11211. characterMakers.push(() => makeCharacter(
  11212. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11213. {
  11214. front: {
  11215. height: math.unit(6, "feet"),
  11216. weight: math.unit(150, "lb"),
  11217. name: "Front",
  11218. image: {
  11219. source: "./media/characters/pianostrong/front.svg",
  11220. extra: 6577 / 6254,
  11221. bottom: 0.02
  11222. }
  11223. },
  11224. side: {
  11225. height: math.unit(6, "feet"),
  11226. weight: math.unit(150, "lb"),
  11227. name: "Side",
  11228. image: {
  11229. source: "./media/characters/pianostrong/side.svg",
  11230. extra: 6106 / 5730
  11231. }
  11232. },
  11233. back: {
  11234. height: math.unit(6, "feet"),
  11235. weight: math.unit(150, "lb"),
  11236. name: "Back",
  11237. image: {
  11238. source: "./media/characters/pianostrong/back.svg",
  11239. extra: 6085 / 5733,
  11240. bottom: 0.01
  11241. }
  11242. },
  11243. },
  11244. [
  11245. {
  11246. name: "Macro",
  11247. height: math.unit(100, "feet")
  11248. },
  11249. {
  11250. name: "Macro+",
  11251. height: math.unit(300, "feet"),
  11252. default: true
  11253. },
  11254. {
  11255. name: "Macro++",
  11256. height: math.unit(1000, "feet")
  11257. },
  11258. ]
  11259. ))
  11260. characterMakers.push(() => makeCharacter(
  11261. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11262. {
  11263. front: {
  11264. height: math.unit(6, "feet"),
  11265. weight: math.unit(150, "lb"),
  11266. name: "Front",
  11267. image: {
  11268. source: "./media/characters/kona/front.svg",
  11269. extra: 2960 / 2629,
  11270. bottom: 0.005
  11271. }
  11272. },
  11273. },
  11274. [
  11275. {
  11276. name: "Normal",
  11277. height: math.unit(11 + 8 / 12, "feet")
  11278. },
  11279. {
  11280. name: "Macro",
  11281. height: math.unit(850, "feet"),
  11282. default: true
  11283. },
  11284. {
  11285. name: "Macro+",
  11286. height: math.unit(1.5, "km"),
  11287. default: true
  11288. },
  11289. {
  11290. name: "Megamacro",
  11291. height: math.unit(80, "miles")
  11292. },
  11293. {
  11294. name: "Gigamacro",
  11295. height: math.unit(3500, "miles")
  11296. },
  11297. ]
  11298. ))
  11299. characterMakers.push(() => makeCharacter(
  11300. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11301. {
  11302. side: {
  11303. height: math.unit(1.9, "meters"),
  11304. weight: math.unit(326, "kg"),
  11305. name: "Side",
  11306. image: {
  11307. source: "./media/characters/levi/side.svg",
  11308. extra: 1704 / 1334,
  11309. bottom: 0.02
  11310. }
  11311. },
  11312. },
  11313. [
  11314. {
  11315. name: "Normal",
  11316. height: math.unit(1.9, "meters"),
  11317. default: true
  11318. },
  11319. {
  11320. name: "Macro",
  11321. height: math.unit(20, "meters")
  11322. },
  11323. {
  11324. name: "Macro+",
  11325. height: math.unit(200, "meters")
  11326. },
  11327. {
  11328. name: "Megamacro",
  11329. height: math.unit(2, "km")
  11330. },
  11331. {
  11332. name: "Megamacro+",
  11333. height: math.unit(20, "km")
  11334. },
  11335. {
  11336. name: "Gigamacro",
  11337. height: math.unit(2500, "km")
  11338. },
  11339. {
  11340. name: "Gigamacro+",
  11341. height: math.unit(120000, "km")
  11342. },
  11343. {
  11344. name: "Teramacro",
  11345. height: math.unit(7.77e6, "km")
  11346. },
  11347. ]
  11348. ))
  11349. characterMakers.push(() => makeCharacter(
  11350. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11351. {
  11352. front: {
  11353. height: math.unit(6 + 4/12, "feet"),
  11354. weight: math.unit(190, "lb"),
  11355. name: "Front",
  11356. image: {
  11357. source: "./media/characters/bmc/front.svg",
  11358. extra: 1626/1472,
  11359. bottom: 79/1705
  11360. }
  11361. },
  11362. back: {
  11363. height: math.unit(6 + 4/12, "feet"),
  11364. weight: math.unit(190, "lb"),
  11365. name: "Back",
  11366. image: {
  11367. source: "./media/characters/bmc/back.svg",
  11368. extra: 1640/1479,
  11369. bottom: 45/1685
  11370. }
  11371. },
  11372. frontArmor: {
  11373. height: math.unit(6 + 4/12, "feet"),
  11374. weight: math.unit(190, "lb"),
  11375. name: "Front-armor",
  11376. image: {
  11377. source: "./media/characters/bmc/front-armor.svg",
  11378. extra: 1538/1468,
  11379. bottom: 79/1617
  11380. }
  11381. },
  11382. },
  11383. [
  11384. {
  11385. name: "Human-sized",
  11386. height: math.unit(6 + 4 / 12, "feet")
  11387. },
  11388. {
  11389. name: "Interactive Size",
  11390. height: math.unit(25, "feet")
  11391. },
  11392. {
  11393. name: "Small",
  11394. height: math.unit(250, "feet")
  11395. },
  11396. {
  11397. name: "Normal",
  11398. height: math.unit(1250, "feet"),
  11399. default: true
  11400. },
  11401. {
  11402. name: "Good Day",
  11403. height: math.unit(88, "miles")
  11404. },
  11405. {
  11406. name: "Largest Measured Size",
  11407. height: math.unit(105.960, "galaxies")
  11408. },
  11409. ]
  11410. ))
  11411. characterMakers.push(() => makeCharacter(
  11412. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11413. {
  11414. front: {
  11415. height: math.unit(20, "feet"),
  11416. weight: math.unit(2016, "kg"),
  11417. name: "Front",
  11418. image: {
  11419. source: "./media/characters/sven-the-kaiju/front.svg",
  11420. extra: 1277/1250,
  11421. bottom: 35/1312
  11422. }
  11423. },
  11424. mouth: {
  11425. height: math.unit(1.85, "feet"),
  11426. name: "Mouth",
  11427. image: {
  11428. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11429. }
  11430. },
  11431. },
  11432. [
  11433. {
  11434. name: "Fairy",
  11435. height: math.unit(6, "inches")
  11436. },
  11437. {
  11438. name: "Normal",
  11439. height: math.unit(20, "feet"),
  11440. default: true
  11441. },
  11442. {
  11443. name: "Rampage",
  11444. height: math.unit(200, "feet")
  11445. },
  11446. {
  11447. name: "Archfey Forest Guardian",
  11448. height: math.unit(1, "mile")
  11449. },
  11450. ]
  11451. ))
  11452. characterMakers.push(() => makeCharacter(
  11453. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11454. {
  11455. front: {
  11456. height: math.unit(4, "meters"),
  11457. weight: math.unit(2, "tons"),
  11458. name: "Front",
  11459. image: {
  11460. source: "./media/characters/marik/front.svg",
  11461. extra: 1057 / 1003,
  11462. bottom: 0.08
  11463. }
  11464. },
  11465. },
  11466. [
  11467. {
  11468. name: "Normal",
  11469. height: math.unit(4, "meters"),
  11470. default: true
  11471. },
  11472. {
  11473. name: "Macro",
  11474. height: math.unit(20, "meters")
  11475. },
  11476. {
  11477. name: "Megamacro",
  11478. height: math.unit(50, "km")
  11479. },
  11480. {
  11481. name: "Gigamacro",
  11482. height: math.unit(100, "km")
  11483. },
  11484. {
  11485. name: "Alpha Macro",
  11486. height: math.unit(7.88e7, "yottameters")
  11487. },
  11488. ]
  11489. ))
  11490. characterMakers.push(() => makeCharacter(
  11491. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11492. {
  11493. front: {
  11494. height: math.unit(6, "feet"),
  11495. weight: math.unit(110, "lb"),
  11496. name: "Front",
  11497. image: {
  11498. source: "./media/characters/mel/front.svg",
  11499. extra: 736 / 617,
  11500. bottom: 0.017
  11501. }
  11502. },
  11503. },
  11504. [
  11505. {
  11506. name: "Pico",
  11507. height: math.unit(3, "pm")
  11508. },
  11509. {
  11510. name: "Nano",
  11511. height: math.unit(3, "nm")
  11512. },
  11513. {
  11514. name: "Micro",
  11515. height: math.unit(0.3, "mm"),
  11516. default: true
  11517. },
  11518. {
  11519. name: "Micro+",
  11520. height: math.unit(3, "mm")
  11521. },
  11522. {
  11523. name: "Normal",
  11524. height: math.unit(5 + 10.5 / 12, "feet")
  11525. },
  11526. ]
  11527. ))
  11528. characterMakers.push(() => makeCharacter(
  11529. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11530. {
  11531. kaiju: {
  11532. height: math.unit(1.75, "meters"),
  11533. weight: math.unit(55, "kg"),
  11534. name: "Kaiju",
  11535. image: {
  11536. source: "./media/characters/lykonous/kaiju.svg",
  11537. extra: 1055 / 946,
  11538. bottom: 0.135
  11539. }
  11540. },
  11541. },
  11542. [
  11543. {
  11544. name: "Normal",
  11545. height: math.unit(2.5, "meters"),
  11546. default: true
  11547. },
  11548. {
  11549. name: "Kaiju Dragon",
  11550. height: math.unit(60, "meters")
  11551. },
  11552. {
  11553. name: "Mega Kaiju",
  11554. height: math.unit(120, "km")
  11555. },
  11556. {
  11557. name: "Giga Kaiju",
  11558. height: math.unit(200, "megameters")
  11559. },
  11560. {
  11561. name: "Terra Kaiju",
  11562. height: math.unit(400, "gigameters")
  11563. },
  11564. {
  11565. name: "Kaiju Dragon God",
  11566. height: math.unit(13000, "exaparsecs")
  11567. },
  11568. ]
  11569. ))
  11570. characterMakers.push(() => makeCharacter(
  11571. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11572. {
  11573. front: {
  11574. height: math.unit(6, "feet"),
  11575. weight: math.unit(150, "lb"),
  11576. name: "Front",
  11577. image: {
  11578. source: "./media/characters/blü/front.svg",
  11579. extra: 1883 / 1564,
  11580. bottom: 0.031
  11581. }
  11582. },
  11583. },
  11584. [
  11585. {
  11586. name: "Normal",
  11587. height: math.unit(13, "feet"),
  11588. default: true
  11589. },
  11590. {
  11591. name: "Big Boi",
  11592. height: math.unit(150, "meters")
  11593. },
  11594. {
  11595. name: "Mini Stomper",
  11596. height: math.unit(300, "meters")
  11597. },
  11598. {
  11599. name: "Macro",
  11600. height: math.unit(1000, "meters")
  11601. },
  11602. {
  11603. name: "Megamacro",
  11604. height: math.unit(11000, "meters")
  11605. },
  11606. {
  11607. name: "Gigamacro",
  11608. height: math.unit(11000, "km")
  11609. },
  11610. {
  11611. name: "Teramacro",
  11612. height: math.unit(420000, "km")
  11613. },
  11614. {
  11615. name: "Examacro",
  11616. height: math.unit(120, "parsecs")
  11617. },
  11618. {
  11619. name: "God Tho",
  11620. height: math.unit(98000000000, "parsecs")
  11621. },
  11622. ]
  11623. ))
  11624. characterMakers.push(() => makeCharacter(
  11625. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11626. {
  11627. taurFront: {
  11628. height: math.unit(6, "feet"),
  11629. weight: math.unit(200, "lb"),
  11630. name: "Taur (Front)",
  11631. image: {
  11632. source: "./media/characters/scales/taur-front.svg",
  11633. extra: 1,
  11634. bottom: 0.05
  11635. }
  11636. },
  11637. taurBack: {
  11638. height: math.unit(6, "feet"),
  11639. weight: math.unit(200, "lb"),
  11640. name: "Taur (Back)",
  11641. image: {
  11642. source: "./media/characters/scales/taur-back.svg",
  11643. extra: 1,
  11644. bottom: 0.08
  11645. }
  11646. },
  11647. anthro: {
  11648. height: math.unit(6 * 7 / 12, "feet"),
  11649. weight: math.unit(100, "lb"),
  11650. name: "Anthro",
  11651. image: {
  11652. source: "./media/characters/scales/anthro.svg",
  11653. extra: 1,
  11654. bottom: 0.06
  11655. }
  11656. },
  11657. },
  11658. [
  11659. {
  11660. name: "Normal",
  11661. height: math.unit(12, "feet"),
  11662. default: true
  11663. },
  11664. ]
  11665. ))
  11666. characterMakers.push(() => makeCharacter(
  11667. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11668. {
  11669. front: {
  11670. height: math.unit(6, "feet"),
  11671. weight: math.unit(150, "lb"),
  11672. name: "Front",
  11673. image: {
  11674. source: "./media/characters/koragos/front.svg",
  11675. extra: 841 / 794,
  11676. bottom: 0.035
  11677. }
  11678. },
  11679. back: {
  11680. height: math.unit(6, "feet"),
  11681. weight: math.unit(150, "lb"),
  11682. name: "Back",
  11683. image: {
  11684. source: "./media/characters/koragos/back.svg",
  11685. extra: 841 / 810,
  11686. bottom: 0.022
  11687. }
  11688. },
  11689. },
  11690. [
  11691. {
  11692. name: "Normal",
  11693. height: math.unit(6 + 11 / 12, "feet"),
  11694. default: true
  11695. },
  11696. {
  11697. name: "Macro",
  11698. height: math.unit(490, "feet")
  11699. },
  11700. {
  11701. name: "Megamacro",
  11702. height: math.unit(10, "miles")
  11703. },
  11704. {
  11705. name: "Gigamacro",
  11706. height: math.unit(50, "miles")
  11707. },
  11708. ]
  11709. ))
  11710. characterMakers.push(() => makeCharacter(
  11711. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11712. {
  11713. front: {
  11714. height: math.unit(6, "feet"),
  11715. weight: math.unit(250, "lb"),
  11716. name: "Front",
  11717. image: {
  11718. source: "./media/characters/xylrem/front.svg",
  11719. extra: 3323 / 3050,
  11720. bottom: 0.065
  11721. }
  11722. },
  11723. },
  11724. [
  11725. {
  11726. name: "Micro",
  11727. height: math.unit(4, "feet")
  11728. },
  11729. {
  11730. name: "Normal",
  11731. height: math.unit(16, "feet"),
  11732. default: true
  11733. },
  11734. {
  11735. name: "Macro",
  11736. height: math.unit(2720, "feet")
  11737. },
  11738. {
  11739. name: "Megamacro",
  11740. height: math.unit(25000, "miles")
  11741. },
  11742. ]
  11743. ))
  11744. characterMakers.push(() => makeCharacter(
  11745. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11746. {
  11747. front: {
  11748. height: math.unit(8, "feet"),
  11749. weight: math.unit(250, "kg"),
  11750. name: "Front",
  11751. image: {
  11752. source: "./media/characters/ikideru/front.svg",
  11753. extra: 930 / 870,
  11754. bottom: 0.087
  11755. }
  11756. },
  11757. back: {
  11758. height: math.unit(8, "feet"),
  11759. weight: math.unit(250, "kg"),
  11760. name: "Back",
  11761. image: {
  11762. source: "./media/characters/ikideru/back.svg",
  11763. extra: 919 / 852,
  11764. bottom: 0.055
  11765. }
  11766. },
  11767. },
  11768. [
  11769. {
  11770. name: "Rare",
  11771. height: math.unit(8, "feet"),
  11772. default: true
  11773. },
  11774. {
  11775. name: "Playful Loom",
  11776. height: math.unit(80, "feet")
  11777. },
  11778. {
  11779. name: "City Leaner",
  11780. height: math.unit(230, "feet")
  11781. },
  11782. {
  11783. name: "Megamacro",
  11784. height: math.unit(2500, "feet")
  11785. },
  11786. {
  11787. name: "Gigamacro",
  11788. height: math.unit(26400, "feet")
  11789. },
  11790. {
  11791. name: "Tectonic Shifter",
  11792. height: math.unit(1.7, "megameters")
  11793. },
  11794. {
  11795. name: "Planet Carer",
  11796. height: math.unit(21, "megameters")
  11797. },
  11798. {
  11799. name: "God",
  11800. height: math.unit(11157.22, "parsecs")
  11801. },
  11802. ]
  11803. ))
  11804. characterMakers.push(() => makeCharacter(
  11805. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11806. {
  11807. front: {
  11808. height: math.unit(6, "feet"),
  11809. weight: math.unit(120, "lb"),
  11810. name: "Front",
  11811. image: {
  11812. source: "./media/characters/neo/front.svg"
  11813. }
  11814. },
  11815. },
  11816. [
  11817. {
  11818. name: "Micro",
  11819. height: math.unit(2, "inches"),
  11820. default: true
  11821. },
  11822. {
  11823. name: "Human Size",
  11824. height: math.unit(5 + 8 / 12, "feet")
  11825. },
  11826. ]
  11827. ))
  11828. characterMakers.push(() => makeCharacter(
  11829. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11830. {
  11831. front: {
  11832. height: math.unit(13 + 10 / 12, "feet"),
  11833. weight: math.unit(5320, "lb"),
  11834. name: "Front",
  11835. image: {
  11836. source: "./media/characters/chauncey-chantz/front.svg",
  11837. extra: 1587 / 1435,
  11838. bottom: 0.02
  11839. }
  11840. },
  11841. },
  11842. [
  11843. {
  11844. name: "Normal",
  11845. height: math.unit(13 + 10 / 12, "feet"),
  11846. default: true
  11847. },
  11848. {
  11849. name: "Macro",
  11850. height: math.unit(45, "feet")
  11851. },
  11852. {
  11853. name: "Megamacro",
  11854. height: math.unit(250, "miles")
  11855. },
  11856. {
  11857. name: "Planetary",
  11858. height: math.unit(10000, "miles")
  11859. },
  11860. {
  11861. name: "Galactic",
  11862. height: math.unit(40000, "parsecs")
  11863. },
  11864. {
  11865. name: "Universal",
  11866. height: math.unit(1, "yottameter")
  11867. },
  11868. ]
  11869. ))
  11870. characterMakers.push(() => makeCharacter(
  11871. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11872. {
  11873. front: {
  11874. height: math.unit(6, "feet"),
  11875. weight: math.unit(150, "lb"),
  11876. name: "Front",
  11877. image: {
  11878. source: "./media/characters/epifox/front.svg",
  11879. extra: 1,
  11880. bottom: 0.075
  11881. }
  11882. },
  11883. },
  11884. [
  11885. {
  11886. name: "Micro",
  11887. height: math.unit(6, "inches")
  11888. },
  11889. {
  11890. name: "Normal",
  11891. height: math.unit(12, "feet"),
  11892. default: true
  11893. },
  11894. {
  11895. name: "Macro",
  11896. height: math.unit(3810, "feet")
  11897. },
  11898. {
  11899. name: "Megamacro",
  11900. height: math.unit(500, "miles")
  11901. },
  11902. ]
  11903. ))
  11904. characterMakers.push(() => makeCharacter(
  11905. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11906. {
  11907. front: {
  11908. height: math.unit(1.8796, "m"),
  11909. weight: math.unit(230, "lb"),
  11910. name: "Front",
  11911. image: {
  11912. source: "./media/characters/colin-t/front.svg",
  11913. extra: 1272 / 1193,
  11914. bottom: 0.07
  11915. }
  11916. },
  11917. },
  11918. [
  11919. {
  11920. name: "Micro",
  11921. height: math.unit(0.571, "meters")
  11922. },
  11923. {
  11924. name: "Normal",
  11925. height: math.unit(1.8796, "meters"),
  11926. default: true
  11927. },
  11928. {
  11929. name: "Tall",
  11930. height: math.unit(4, "meters")
  11931. },
  11932. {
  11933. name: "Macro",
  11934. height: math.unit(67.241, "meters")
  11935. },
  11936. {
  11937. name: "Megamacro",
  11938. height: math.unit(371.856, "meters")
  11939. },
  11940. {
  11941. name: "Planetary",
  11942. height: math.unit(12631.5689, "km")
  11943. },
  11944. ]
  11945. ))
  11946. characterMakers.push(() => makeCharacter(
  11947. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11948. {
  11949. front: {
  11950. height: math.unit(1.85, "meters"),
  11951. weight: math.unit(80, "kg"),
  11952. name: "Front",
  11953. image: {
  11954. source: "./media/characters/matvei/front.svg",
  11955. extra: 614 / 594,
  11956. bottom: 0.01
  11957. }
  11958. },
  11959. },
  11960. [
  11961. {
  11962. name: "Normal",
  11963. height: math.unit(1.85, "meters"),
  11964. default: true
  11965. },
  11966. ]
  11967. ))
  11968. characterMakers.push(() => makeCharacter(
  11969. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11970. {
  11971. front: {
  11972. height: math.unit(5 + 9 / 12, "feet"),
  11973. weight: math.unit(70, "lb"),
  11974. name: "Front",
  11975. image: {
  11976. source: "./media/characters/quincy/front.svg",
  11977. extra: 3041 / 2751
  11978. }
  11979. },
  11980. back: {
  11981. height: math.unit(5 + 9 / 12, "feet"),
  11982. weight: math.unit(70, "lb"),
  11983. name: "Back",
  11984. image: {
  11985. source: "./media/characters/quincy/back.svg",
  11986. extra: 3041 / 2751
  11987. }
  11988. },
  11989. flying: {
  11990. height: math.unit(5 + 4 / 12, "feet"),
  11991. weight: math.unit(70, "lb"),
  11992. name: "Flying",
  11993. image: {
  11994. source: "./media/characters/quincy/flying.svg",
  11995. extra: 1044 / 930
  11996. }
  11997. },
  11998. },
  11999. [
  12000. {
  12001. name: "Micro",
  12002. height: math.unit(3, "cm")
  12003. },
  12004. {
  12005. name: "Normal",
  12006. height: math.unit(5 + 9 / 12, "feet")
  12007. },
  12008. {
  12009. name: "Macro",
  12010. height: math.unit(200, "meters"),
  12011. default: true
  12012. },
  12013. {
  12014. name: "Megamacro",
  12015. height: math.unit(1000, "meters")
  12016. },
  12017. ]
  12018. ))
  12019. characterMakers.push(() => makeCharacter(
  12020. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12021. {
  12022. front: {
  12023. height: math.unit(3 + 11/12, "feet"),
  12024. weight: math.unit(50, "lb"),
  12025. name: "Front",
  12026. image: {
  12027. source: "./media/characters/vanrel/front.svg",
  12028. extra: 1104/949,
  12029. bottom: 52/1156
  12030. }
  12031. },
  12032. back: {
  12033. height: math.unit(3 + 11/12, "feet"),
  12034. weight: math.unit(50, "lb"),
  12035. name: "Back",
  12036. image: {
  12037. source: "./media/characters/vanrel/back.svg",
  12038. extra: 1119/976,
  12039. bottom: 37/1156
  12040. }
  12041. },
  12042. tome: {
  12043. height: math.unit(1.35, "feet"),
  12044. weight: math.unit(10, "lb"),
  12045. name: "Vanrel's Tome",
  12046. rename: true,
  12047. image: {
  12048. source: "./media/characters/vanrel/tome.svg"
  12049. }
  12050. },
  12051. beans: {
  12052. height: math.unit(0.89, "feet"),
  12053. name: "Beans",
  12054. image: {
  12055. source: "./media/characters/vanrel/beans.svg"
  12056. }
  12057. },
  12058. },
  12059. [
  12060. {
  12061. name: "Normal",
  12062. height: math.unit(3 + 11/12, "feet"),
  12063. default: true
  12064. },
  12065. ]
  12066. ))
  12067. characterMakers.push(() => makeCharacter(
  12068. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12069. {
  12070. front: {
  12071. height: math.unit(7 + 5 / 12, "feet"),
  12072. name: "Front",
  12073. image: {
  12074. source: "./media/characters/kuiper-vanrel/front.svg",
  12075. extra: 1219/1169,
  12076. bottom: 69/1288
  12077. }
  12078. },
  12079. back: {
  12080. height: math.unit(7 + 5 / 12, "feet"),
  12081. name: "Back",
  12082. image: {
  12083. source: "./media/characters/kuiper-vanrel/back.svg",
  12084. extra: 1236/1193,
  12085. bottom: 27/1263
  12086. }
  12087. },
  12088. foot: {
  12089. height: math.unit(0.55, "meters"),
  12090. name: "Foot",
  12091. image: {
  12092. source: "./media/characters/kuiper-vanrel/foot.svg",
  12093. }
  12094. },
  12095. battle: {
  12096. height: math.unit(6.824, "feet"),
  12097. name: "Battle",
  12098. image: {
  12099. source: "./media/characters/kuiper-vanrel/battle.svg",
  12100. extra: 1466 / 1327,
  12101. bottom: 29 / 1492.5
  12102. }
  12103. },
  12104. meerkui: {
  12105. height: math.unit(18, "inches"),
  12106. name: "Meerkui",
  12107. image: {
  12108. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12109. extra: 1354/1289,
  12110. bottom: 69/1423
  12111. }
  12112. },
  12113. },
  12114. [
  12115. {
  12116. name: "Normal",
  12117. height: math.unit(7 + 5 / 12, "feet"),
  12118. default: true
  12119. },
  12120. ]
  12121. ))
  12122. characterMakers.push(() => makeCharacter(
  12123. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12124. {
  12125. front: {
  12126. height: math.unit(8 + 5 / 12, "feet"),
  12127. name: "Front",
  12128. image: {
  12129. source: "./media/characters/keset-vanrel/front.svg",
  12130. extra: 1231/1148,
  12131. bottom: 82/1313
  12132. }
  12133. },
  12134. back: {
  12135. height: math.unit(8 + 5 / 12, "feet"),
  12136. name: "Back",
  12137. image: {
  12138. source: "./media/characters/keset-vanrel/back.svg",
  12139. extra: 1240/1174,
  12140. bottom: 33/1273
  12141. }
  12142. },
  12143. hand: {
  12144. height: math.unit(0.6, "meters"),
  12145. name: "Hand",
  12146. image: {
  12147. source: "./media/characters/keset-vanrel/hand.svg"
  12148. }
  12149. },
  12150. foot: {
  12151. height: math.unit(0.94978, "meters"),
  12152. name: "Foot",
  12153. image: {
  12154. source: "./media/characters/keset-vanrel/foot.svg"
  12155. }
  12156. },
  12157. battle: {
  12158. height: math.unit(7.408, "feet"),
  12159. name: "Battle",
  12160. image: {
  12161. source: "./media/characters/keset-vanrel/battle.svg",
  12162. extra: 1890 / 1386,
  12163. bottom: 73.28 / 1970
  12164. }
  12165. },
  12166. },
  12167. [
  12168. {
  12169. name: "Normal",
  12170. height: math.unit(8 + 5 / 12, "feet"),
  12171. default: true
  12172. },
  12173. ]
  12174. ))
  12175. characterMakers.push(() => makeCharacter(
  12176. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12177. {
  12178. front: {
  12179. height: math.unit(6, "feet"),
  12180. weight: math.unit(150, "lb"),
  12181. name: "Front",
  12182. image: {
  12183. source: "./media/characters/neos/front.svg",
  12184. extra: 1696 / 992,
  12185. bottom: 0.14
  12186. }
  12187. },
  12188. },
  12189. [
  12190. {
  12191. name: "Normal",
  12192. height: math.unit(54, "cm"),
  12193. default: true
  12194. },
  12195. {
  12196. name: "Macro",
  12197. height: math.unit(100, "m")
  12198. },
  12199. {
  12200. name: "Megamacro",
  12201. height: math.unit(10, "km")
  12202. },
  12203. {
  12204. name: "Megamacro+",
  12205. height: math.unit(100, "km")
  12206. },
  12207. {
  12208. name: "Gigamacro",
  12209. height: math.unit(100, "Mm")
  12210. },
  12211. {
  12212. name: "Teramacro",
  12213. height: math.unit(100, "Gm")
  12214. },
  12215. {
  12216. name: "Examacro",
  12217. height: math.unit(100, "Em")
  12218. },
  12219. {
  12220. name: "Godly",
  12221. height: math.unit(10000, "Ym")
  12222. },
  12223. {
  12224. name: "Beyond Godly",
  12225. height: math.unit(25, "multiverses")
  12226. },
  12227. ]
  12228. ))
  12229. characterMakers.push(() => makeCharacter(
  12230. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12231. {
  12232. feminine: {
  12233. height: math.unit(5, "feet"),
  12234. weight: math.unit(100, "lb"),
  12235. name: "Feminine",
  12236. image: {
  12237. source: "./media/characters/sammy-mouse/feminine.svg",
  12238. extra: 2526 / 2425,
  12239. bottom: 0.123
  12240. }
  12241. },
  12242. masculine: {
  12243. height: math.unit(5, "feet"),
  12244. weight: math.unit(100, "lb"),
  12245. name: "Masculine",
  12246. image: {
  12247. source: "./media/characters/sammy-mouse/masculine.svg",
  12248. extra: 2526 / 2425,
  12249. bottom: 0.123
  12250. }
  12251. },
  12252. },
  12253. [
  12254. {
  12255. name: "Micro",
  12256. height: math.unit(5, "inches")
  12257. },
  12258. {
  12259. name: "Normal",
  12260. height: math.unit(5, "feet"),
  12261. default: true
  12262. },
  12263. {
  12264. name: "Macro",
  12265. height: math.unit(60, "feet")
  12266. },
  12267. ]
  12268. ))
  12269. characterMakers.push(() => makeCharacter(
  12270. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12271. {
  12272. front: {
  12273. height: math.unit(4, "feet"),
  12274. weight: math.unit(50, "lb"),
  12275. name: "Front",
  12276. image: {
  12277. source: "./media/characters/kole/front.svg",
  12278. extra: 1423 / 1303,
  12279. bottom: 0.025
  12280. }
  12281. },
  12282. back: {
  12283. height: math.unit(4, "feet"),
  12284. weight: math.unit(50, "lb"),
  12285. name: "Back",
  12286. image: {
  12287. source: "./media/characters/kole/back.svg",
  12288. extra: 1426 / 1280,
  12289. bottom: 0.02
  12290. }
  12291. },
  12292. },
  12293. [
  12294. {
  12295. name: "Normal",
  12296. height: math.unit(4, "feet"),
  12297. default: true
  12298. },
  12299. ]
  12300. ))
  12301. characterMakers.push(() => makeCharacter(
  12302. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12303. {
  12304. front: {
  12305. height: math.unit(2.5, "feet"),
  12306. weight: math.unit(32, "lb"),
  12307. name: "Front",
  12308. image: {
  12309. source: "./media/characters/rufran/front.svg",
  12310. extra: 1313/885,
  12311. bottom: 94/1407
  12312. }
  12313. },
  12314. side: {
  12315. height: math.unit(2.5, "feet"),
  12316. weight: math.unit(32, "lb"),
  12317. name: "Side",
  12318. image: {
  12319. source: "./media/characters/rufran/side.svg",
  12320. extra: 1109/852,
  12321. bottom: 118/1227
  12322. }
  12323. },
  12324. back: {
  12325. height: math.unit(2.5, "feet"),
  12326. weight: math.unit(32, "lb"),
  12327. name: "Back",
  12328. image: {
  12329. source: "./media/characters/rufran/back.svg",
  12330. extra: 1280/878,
  12331. bottom: 131/1411
  12332. }
  12333. },
  12334. mouth: {
  12335. height: math.unit(1.13, "feet"),
  12336. name: "Mouth",
  12337. image: {
  12338. source: "./media/characters/rufran/mouth.svg"
  12339. }
  12340. },
  12341. foot: {
  12342. height: math.unit(1.33, "feet"),
  12343. name: "Foot",
  12344. image: {
  12345. source: "./media/characters/rufran/foot.svg"
  12346. }
  12347. },
  12348. koboldFront: {
  12349. height: math.unit(2 + 6 / 12, "feet"),
  12350. weight: math.unit(20, "lb"),
  12351. name: "Front (Kobold)",
  12352. image: {
  12353. source: "./media/characters/rufran/kobold-front.svg",
  12354. extra: 2041 / 1839,
  12355. bottom: 0.055
  12356. }
  12357. },
  12358. koboldBack: {
  12359. height: math.unit(2 + 6 / 12, "feet"),
  12360. weight: math.unit(20, "lb"),
  12361. name: "Back (Kobold)",
  12362. image: {
  12363. source: "./media/characters/rufran/kobold-back.svg",
  12364. extra: 2054 / 1839,
  12365. bottom: 0.01
  12366. }
  12367. },
  12368. koboldHand: {
  12369. height: math.unit(0.2166, "meters"),
  12370. name: "Hand (Kobold)",
  12371. image: {
  12372. source: "./media/characters/rufran/kobold-hand.svg"
  12373. }
  12374. },
  12375. koboldFoot: {
  12376. height: math.unit(0.185, "meters"),
  12377. name: "Foot (Kobold)",
  12378. image: {
  12379. source: "./media/characters/rufran/kobold-foot.svg"
  12380. }
  12381. },
  12382. },
  12383. [
  12384. {
  12385. name: "Micro",
  12386. height: math.unit(1, "inch")
  12387. },
  12388. {
  12389. name: "Normal",
  12390. height: math.unit(2 + 6 / 12, "feet"),
  12391. default: true
  12392. },
  12393. {
  12394. name: "Big",
  12395. height: math.unit(60, "feet")
  12396. },
  12397. {
  12398. name: "Macro",
  12399. height: math.unit(325, "feet")
  12400. },
  12401. ]
  12402. ))
  12403. characterMakers.push(() => makeCharacter(
  12404. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12405. {
  12406. front: {
  12407. height: math.unit(0.3, "meters"),
  12408. weight: math.unit(3.5, "kg"),
  12409. name: "Front",
  12410. image: {
  12411. source: "./media/characters/chip/front.svg",
  12412. extra: 748 / 674
  12413. }
  12414. },
  12415. },
  12416. [
  12417. {
  12418. name: "Micro",
  12419. height: math.unit(1, "inch"),
  12420. default: true
  12421. },
  12422. ]
  12423. ))
  12424. characterMakers.push(() => makeCharacter(
  12425. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12426. {
  12427. side: {
  12428. height: math.unit(2.3, "meters"),
  12429. weight: math.unit(3500, "lb"),
  12430. name: "Side",
  12431. image: {
  12432. source: "./media/characters/torvid/side.svg",
  12433. extra: 1972 / 722,
  12434. bottom: 0.035
  12435. }
  12436. },
  12437. },
  12438. [
  12439. {
  12440. name: "Normal",
  12441. height: math.unit(2.3, "meters"),
  12442. default: true
  12443. },
  12444. ]
  12445. ))
  12446. characterMakers.push(() => makeCharacter(
  12447. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12448. {
  12449. front: {
  12450. height: math.unit(2, "meters"),
  12451. weight: math.unit(150.5, "kg"),
  12452. name: "Front",
  12453. image: {
  12454. source: "./media/characters/susan/front.svg",
  12455. extra: 693 / 635,
  12456. bottom: 0.05
  12457. }
  12458. },
  12459. },
  12460. [
  12461. {
  12462. name: "Megamacro",
  12463. height: math.unit(505, "miles"),
  12464. default: true
  12465. },
  12466. ]
  12467. ))
  12468. characterMakers.push(() => makeCharacter(
  12469. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12470. {
  12471. front: {
  12472. height: math.unit(6, "feet"),
  12473. weight: math.unit(150, "lb"),
  12474. name: "Front",
  12475. image: {
  12476. source: "./media/characters/raindrops/front.svg",
  12477. extra: 2655 / 2461,
  12478. bottom: 49 / 2705
  12479. }
  12480. },
  12481. back: {
  12482. height: math.unit(6, "feet"),
  12483. weight: math.unit(150, "lb"),
  12484. name: "Back",
  12485. image: {
  12486. source: "./media/characters/raindrops/back.svg",
  12487. extra: 2574 / 2400,
  12488. bottom: 65 / 2634
  12489. }
  12490. },
  12491. },
  12492. [
  12493. {
  12494. name: "Micro",
  12495. height: math.unit(6, "inches")
  12496. },
  12497. {
  12498. name: "Normal",
  12499. height: math.unit(6 + 2 / 12, "feet")
  12500. },
  12501. {
  12502. name: "Macro",
  12503. height: math.unit(131, "feet"),
  12504. default: true
  12505. },
  12506. {
  12507. name: "Megamacro",
  12508. height: math.unit(15, "miles")
  12509. },
  12510. {
  12511. name: "Gigamacro",
  12512. height: math.unit(4000, "miles")
  12513. },
  12514. {
  12515. name: "Teramacro",
  12516. height: math.unit(315000, "miles")
  12517. },
  12518. ]
  12519. ))
  12520. characterMakers.push(() => makeCharacter(
  12521. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12522. {
  12523. front: {
  12524. height: math.unit(2.794, "meters"),
  12525. weight: math.unit(325, "kg"),
  12526. name: "Front",
  12527. image: {
  12528. source: "./media/characters/tezwa/front.svg",
  12529. extra: 2083 / 1906,
  12530. bottom: 0.031
  12531. }
  12532. },
  12533. foot: {
  12534. height: math.unit(0.687, "meters"),
  12535. name: "Foot",
  12536. image: {
  12537. source: "./media/characters/tezwa/foot.svg"
  12538. }
  12539. },
  12540. },
  12541. [
  12542. {
  12543. name: "Normal",
  12544. height: math.unit(9 + 2 / 12, "feet"),
  12545. default: true
  12546. },
  12547. ]
  12548. ))
  12549. characterMakers.push(() => makeCharacter(
  12550. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12551. {
  12552. front: {
  12553. height: math.unit(58, "feet"),
  12554. weight: math.unit(89000, "lb"),
  12555. name: "Front",
  12556. image: {
  12557. source: "./media/characters/typhus/front.svg",
  12558. extra: 816 / 800,
  12559. bottom: 0.065
  12560. }
  12561. },
  12562. },
  12563. [
  12564. {
  12565. name: "Macro",
  12566. height: math.unit(58, "feet"),
  12567. default: true
  12568. },
  12569. ]
  12570. ))
  12571. characterMakers.push(() => makeCharacter(
  12572. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12573. {
  12574. front: {
  12575. height: math.unit(12, "feet"),
  12576. weight: math.unit(6, "tonnes"),
  12577. name: "Front",
  12578. image: {
  12579. source: "./media/characters/lyra-von-wulf/front.svg",
  12580. extra: 1,
  12581. bottom: 0.10
  12582. }
  12583. },
  12584. frontMecha: {
  12585. height: math.unit(12, "feet"),
  12586. weight: math.unit(12, "tonnes"),
  12587. name: "Front (Mecha)",
  12588. image: {
  12589. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12590. extra: 1,
  12591. bottom: 0.042
  12592. }
  12593. },
  12594. maw: {
  12595. height: math.unit(2.2, "feet"),
  12596. name: "Maw",
  12597. image: {
  12598. source: "./media/characters/lyra-von-wulf/maw.svg"
  12599. }
  12600. },
  12601. },
  12602. [
  12603. {
  12604. name: "Normal",
  12605. height: math.unit(12, "feet"),
  12606. default: true
  12607. },
  12608. {
  12609. name: "Classic",
  12610. height: math.unit(50, "feet")
  12611. },
  12612. {
  12613. name: "Macro",
  12614. height: math.unit(500, "feet")
  12615. },
  12616. {
  12617. name: "Megamacro",
  12618. height: math.unit(1, "mile")
  12619. },
  12620. {
  12621. name: "Gigamacro",
  12622. height: math.unit(400, "miles")
  12623. },
  12624. {
  12625. name: "Teramacro",
  12626. height: math.unit(22000, "miles")
  12627. },
  12628. {
  12629. name: "Solarmacro",
  12630. height: math.unit(8600000, "miles")
  12631. },
  12632. {
  12633. name: "Galactic",
  12634. height: math.unit(1057000, "lightyears")
  12635. },
  12636. ]
  12637. ))
  12638. characterMakers.push(() => makeCharacter(
  12639. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12640. {
  12641. front: {
  12642. height: math.unit(6 + 10 / 12, "feet"),
  12643. weight: math.unit(150, "lb"),
  12644. name: "Front",
  12645. image: {
  12646. source: "./media/characters/dixon/front.svg",
  12647. extra: 3361 / 3209,
  12648. bottom: 0.01
  12649. }
  12650. },
  12651. },
  12652. [
  12653. {
  12654. name: "Normal",
  12655. height: math.unit(6 + 10 / 12, "feet"),
  12656. default: true
  12657. },
  12658. {
  12659. name: "Big",
  12660. height: math.unit(12, "meters")
  12661. },
  12662. {
  12663. name: "Macro",
  12664. height: math.unit(500, "meters")
  12665. },
  12666. {
  12667. name: "Megamacro",
  12668. height: math.unit(2, "km")
  12669. },
  12670. ]
  12671. ))
  12672. characterMakers.push(() => makeCharacter(
  12673. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12674. {
  12675. front: {
  12676. height: math.unit(185, "cm"),
  12677. weight: math.unit(68, "kg"),
  12678. name: "Front",
  12679. image: {
  12680. source: "./media/characters/kauko/front.svg",
  12681. extra: 1455 / 1421,
  12682. bottom: 0.03
  12683. }
  12684. },
  12685. back: {
  12686. height: math.unit(185, "cm"),
  12687. weight: math.unit(68, "kg"),
  12688. name: "Back",
  12689. image: {
  12690. source: "./media/characters/kauko/back.svg",
  12691. extra: 1455 / 1421,
  12692. bottom: 0.004
  12693. }
  12694. },
  12695. },
  12696. [
  12697. {
  12698. name: "Normal",
  12699. height: math.unit(185, "cm"),
  12700. default: true
  12701. },
  12702. ]
  12703. ))
  12704. characterMakers.push(() => makeCharacter(
  12705. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12706. {
  12707. front: {
  12708. height: math.unit(6, "feet"),
  12709. weight: math.unit(150, "kg"),
  12710. name: "Front",
  12711. image: {
  12712. source: "./media/characters/varg/front.svg",
  12713. extra: 1108 / 1018,
  12714. bottom: 0.0375
  12715. }
  12716. },
  12717. },
  12718. [
  12719. {
  12720. name: "Normal",
  12721. height: math.unit(5, "meters")
  12722. },
  12723. {
  12724. name: "Macro",
  12725. height: math.unit(200, "meters")
  12726. },
  12727. {
  12728. name: "Megamacro",
  12729. height: math.unit(20, "kilometers")
  12730. },
  12731. {
  12732. name: "True Size",
  12733. height: math.unit(211, "km"),
  12734. default: true
  12735. },
  12736. {
  12737. name: "Gigamacro",
  12738. height: math.unit(1000, "km")
  12739. },
  12740. {
  12741. name: "Gigamacro+",
  12742. height: math.unit(8000, "km")
  12743. },
  12744. {
  12745. name: "Teramacro",
  12746. height: math.unit(1000000, "km")
  12747. },
  12748. ]
  12749. ))
  12750. characterMakers.push(() => makeCharacter(
  12751. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12752. {
  12753. front: {
  12754. height: math.unit(7 + 7 / 12, "feet"),
  12755. weight: math.unit(267, "lb"),
  12756. name: "Front",
  12757. image: {
  12758. source: "./media/characters/dayza/front.svg",
  12759. extra: 1262 / 1200,
  12760. bottom: 0.035
  12761. }
  12762. },
  12763. side: {
  12764. height: math.unit(7 + 7 / 12, "feet"),
  12765. weight: math.unit(267, "lb"),
  12766. name: "Side",
  12767. image: {
  12768. source: "./media/characters/dayza/side.svg",
  12769. extra: 1295 / 1245,
  12770. bottom: 0.05
  12771. }
  12772. },
  12773. back: {
  12774. height: math.unit(7 + 7 / 12, "feet"),
  12775. weight: math.unit(267, "lb"),
  12776. name: "Back",
  12777. image: {
  12778. source: "./media/characters/dayza/back.svg",
  12779. extra: 1241 / 1170
  12780. }
  12781. },
  12782. },
  12783. [
  12784. {
  12785. name: "Normal",
  12786. height: math.unit(7 + 7 / 12, "feet"),
  12787. default: true
  12788. },
  12789. {
  12790. name: "Macro",
  12791. height: math.unit(155, "feet")
  12792. },
  12793. ]
  12794. ))
  12795. characterMakers.push(() => makeCharacter(
  12796. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12797. {
  12798. front: {
  12799. height: math.unit(6 + 5 / 12, "feet"),
  12800. weight: math.unit(160, "lb"),
  12801. name: "Front",
  12802. image: {
  12803. source: "./media/characters/xanthos/front.svg",
  12804. extra: 1,
  12805. bottom: 0.04
  12806. }
  12807. },
  12808. back: {
  12809. height: math.unit(6 + 5 / 12, "feet"),
  12810. weight: math.unit(160, "lb"),
  12811. name: "Back",
  12812. image: {
  12813. source: "./media/characters/xanthos/back.svg",
  12814. extra: 1,
  12815. bottom: 0.03
  12816. }
  12817. },
  12818. hand: {
  12819. height: math.unit(0.928, "feet"),
  12820. name: "Hand",
  12821. image: {
  12822. source: "./media/characters/xanthos/hand.svg"
  12823. }
  12824. },
  12825. foot: {
  12826. height: math.unit(1.286, "feet"),
  12827. name: "Foot",
  12828. image: {
  12829. source: "./media/characters/xanthos/foot.svg"
  12830. }
  12831. },
  12832. },
  12833. [
  12834. {
  12835. name: "Normal",
  12836. height: math.unit(6 + 5 / 12, "feet"),
  12837. default: true
  12838. },
  12839. {
  12840. name: "Normal+",
  12841. height: math.unit(6, "meters")
  12842. },
  12843. {
  12844. name: "Macro",
  12845. height: math.unit(40, "feet")
  12846. },
  12847. {
  12848. name: "Macro+",
  12849. height: math.unit(200, "meters")
  12850. },
  12851. {
  12852. name: "Megamacro",
  12853. height: math.unit(20, "km")
  12854. },
  12855. {
  12856. name: "Megamacro+",
  12857. height: math.unit(100, "km")
  12858. },
  12859. {
  12860. name: "Gigamacro",
  12861. height: math.unit(200, "megameters")
  12862. },
  12863. {
  12864. name: "Gigamacro+",
  12865. height: math.unit(1.5, "gigameters")
  12866. },
  12867. ]
  12868. ))
  12869. characterMakers.push(() => makeCharacter(
  12870. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12871. {
  12872. front: {
  12873. height: math.unit(6 + 3 / 12, "feet"),
  12874. weight: math.unit(215, "lb"),
  12875. name: "Front",
  12876. image: {
  12877. source: "./media/characters/grynn/front.svg",
  12878. extra: 4627 / 4209,
  12879. bottom: 0.047
  12880. }
  12881. },
  12882. },
  12883. [
  12884. {
  12885. name: "Micro",
  12886. height: math.unit(6, "inches")
  12887. },
  12888. {
  12889. name: "Normal",
  12890. height: math.unit(6 + 3 / 12, "feet"),
  12891. default: true
  12892. },
  12893. {
  12894. name: "Big",
  12895. height: math.unit(104, "feet")
  12896. },
  12897. {
  12898. name: "Macro",
  12899. height: math.unit(944, "feet")
  12900. },
  12901. {
  12902. name: "Macro+",
  12903. height: math.unit(9480, "feet")
  12904. },
  12905. {
  12906. name: "Megamacro",
  12907. height: math.unit(78752, "feet")
  12908. },
  12909. {
  12910. name: "Megamacro+",
  12911. height: math.unit(630128, "feet")
  12912. },
  12913. {
  12914. name: "Megamacro++",
  12915. height: math.unit(3150695, "feet")
  12916. },
  12917. ]
  12918. ))
  12919. characterMakers.push(() => makeCharacter(
  12920. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12921. {
  12922. front: {
  12923. height: math.unit(7 + 5 / 12, "feet"),
  12924. weight: math.unit(450, "lb"),
  12925. name: "Front",
  12926. image: {
  12927. source: "./media/characters/mocha-aura/front.svg",
  12928. extra: 1907 / 1817,
  12929. bottom: 0.04
  12930. }
  12931. },
  12932. back: {
  12933. height: math.unit(7 + 5 / 12, "feet"),
  12934. weight: math.unit(450, "lb"),
  12935. name: "Back",
  12936. image: {
  12937. source: "./media/characters/mocha-aura/back.svg",
  12938. extra: 1900 / 1825,
  12939. bottom: 0.045
  12940. }
  12941. },
  12942. },
  12943. [
  12944. {
  12945. name: "Nano",
  12946. height: math.unit(1, "nm")
  12947. },
  12948. {
  12949. name: "Megamicro",
  12950. height: math.unit(1, "mm")
  12951. },
  12952. {
  12953. name: "Micro",
  12954. height: math.unit(3, "inches")
  12955. },
  12956. {
  12957. name: "Normal",
  12958. height: math.unit(7 + 5 / 12, "feet"),
  12959. default: true
  12960. },
  12961. {
  12962. name: "Macro",
  12963. height: math.unit(30, "feet")
  12964. },
  12965. {
  12966. name: "Megamacro",
  12967. height: math.unit(3500, "feet")
  12968. },
  12969. {
  12970. name: "Teramacro",
  12971. height: math.unit(500000, "miles")
  12972. },
  12973. {
  12974. name: "Petamacro",
  12975. height: math.unit(50000000000000000, "parsecs")
  12976. },
  12977. ]
  12978. ))
  12979. characterMakers.push(() => makeCharacter(
  12980. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12981. {
  12982. front: {
  12983. height: math.unit(6, "feet"),
  12984. weight: math.unit(150, "lb"),
  12985. name: "Front",
  12986. image: {
  12987. source: "./media/characters/ilisha-devya/front.svg",
  12988. extra: 1,
  12989. bottom: 0.175
  12990. }
  12991. },
  12992. back: {
  12993. height: math.unit(6, "feet"),
  12994. weight: math.unit(150, "lb"),
  12995. name: "Back",
  12996. image: {
  12997. source: "./media/characters/ilisha-devya/back.svg",
  12998. extra: 1,
  12999. bottom: 0.015
  13000. }
  13001. },
  13002. },
  13003. [
  13004. {
  13005. name: "Macro",
  13006. height: math.unit(500, "feet"),
  13007. default: true
  13008. },
  13009. {
  13010. name: "Megamacro",
  13011. height: math.unit(10, "miles")
  13012. },
  13013. {
  13014. name: "Gigamacro",
  13015. height: math.unit(100000, "miles")
  13016. },
  13017. {
  13018. name: "Examacro",
  13019. height: math.unit(1e9, "lightyears")
  13020. },
  13021. {
  13022. name: "Omniversal",
  13023. height: math.unit(1e33, "lightyears")
  13024. },
  13025. {
  13026. name: "Beyond Infinite",
  13027. height: math.unit(1e100, "lightyears")
  13028. },
  13029. ]
  13030. ))
  13031. characterMakers.push(() => makeCharacter(
  13032. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13033. {
  13034. Side: {
  13035. height: math.unit(6, "feet"),
  13036. weight: math.unit(150, "lb"),
  13037. name: "Side",
  13038. image: {
  13039. source: "./media/characters/mira/side.svg",
  13040. extra: 900 / 799,
  13041. bottom: 0.02
  13042. }
  13043. },
  13044. },
  13045. [
  13046. {
  13047. name: "Human Size",
  13048. height: math.unit(6, "feet")
  13049. },
  13050. {
  13051. name: "Macro",
  13052. height: math.unit(100, "feet"),
  13053. default: true
  13054. },
  13055. {
  13056. name: "Megamacro",
  13057. height: math.unit(10, "miles")
  13058. },
  13059. {
  13060. name: "Gigamacro",
  13061. height: math.unit(25000, "miles")
  13062. },
  13063. {
  13064. name: "Teramacro",
  13065. height: math.unit(300, "AU")
  13066. },
  13067. {
  13068. name: "Full Size",
  13069. height: math.unit(4.5e10, "lightyears")
  13070. },
  13071. ]
  13072. ))
  13073. characterMakers.push(() => makeCharacter(
  13074. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13075. {
  13076. front: {
  13077. height: math.unit(6, "feet"),
  13078. weight: math.unit(150, "lb"),
  13079. name: "Front",
  13080. image: {
  13081. source: "./media/characters/holly/front.svg",
  13082. extra: 639 / 606
  13083. }
  13084. },
  13085. back: {
  13086. height: math.unit(6, "feet"),
  13087. weight: math.unit(150, "lb"),
  13088. name: "Back",
  13089. image: {
  13090. source: "./media/characters/holly/back.svg",
  13091. extra: 623 / 598
  13092. }
  13093. },
  13094. frontWorking: {
  13095. height: math.unit(6, "feet"),
  13096. weight: math.unit(150, "lb"),
  13097. name: "Front (Working)",
  13098. image: {
  13099. source: "./media/characters/holly/front-working.svg",
  13100. extra: 607 / 577,
  13101. bottom: 0.048
  13102. }
  13103. },
  13104. },
  13105. [
  13106. {
  13107. name: "Normal",
  13108. height: math.unit(12 + 3 / 12, "feet"),
  13109. default: true
  13110. },
  13111. ]
  13112. ))
  13113. characterMakers.push(() => makeCharacter(
  13114. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13115. {
  13116. front: {
  13117. height: math.unit(6, "feet"),
  13118. weight: math.unit(150, "lb"),
  13119. name: "Front",
  13120. image: {
  13121. source: "./media/characters/porter/front.svg",
  13122. extra: 1,
  13123. bottom: 0.01
  13124. }
  13125. },
  13126. frontRobes: {
  13127. height: math.unit(6, "feet"),
  13128. weight: math.unit(150, "lb"),
  13129. name: "Front (Robes)",
  13130. image: {
  13131. source: "./media/characters/porter/front-robes.svg",
  13132. extra: 1.01,
  13133. bottom: 0.01
  13134. }
  13135. },
  13136. },
  13137. [
  13138. {
  13139. name: "Normal",
  13140. height: math.unit(11 + 9 / 12, "feet"),
  13141. default: true
  13142. },
  13143. ]
  13144. ))
  13145. characterMakers.push(() => makeCharacter(
  13146. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13147. {
  13148. legendary: {
  13149. height: math.unit(6, "feet"),
  13150. weight: math.unit(150, "lb"),
  13151. name: "Legendary",
  13152. image: {
  13153. source: "./media/characters/lucy/legendary.svg",
  13154. extra: 1355 / 1100,
  13155. bottom: 0.045
  13156. }
  13157. },
  13158. },
  13159. [
  13160. {
  13161. name: "Legendary",
  13162. height: math.unit(86882 * 2, "miles"),
  13163. default: true
  13164. },
  13165. ]
  13166. ))
  13167. characterMakers.push(() => makeCharacter(
  13168. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13169. {
  13170. front: {
  13171. height: math.unit(6, "feet"),
  13172. weight: math.unit(150, "lb"),
  13173. name: "Front",
  13174. image: {
  13175. source: "./media/characters/drusilla/front.svg",
  13176. extra: 678 / 635,
  13177. bottom: 0.03
  13178. }
  13179. },
  13180. back: {
  13181. height: math.unit(6, "feet"),
  13182. weight: math.unit(150, "lb"),
  13183. name: "Back",
  13184. image: {
  13185. source: "./media/characters/drusilla/back.svg",
  13186. extra: 678 / 635,
  13187. bottom: 0.005
  13188. }
  13189. },
  13190. },
  13191. [
  13192. {
  13193. name: "Macro",
  13194. height: math.unit(100, "feet")
  13195. },
  13196. {
  13197. name: "Canon Height",
  13198. height: math.unit(2000, "feet"),
  13199. default: true
  13200. },
  13201. ]
  13202. ))
  13203. characterMakers.push(() => makeCharacter(
  13204. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13205. {
  13206. front: {
  13207. height: math.unit(6, "feet"),
  13208. weight: math.unit(180, "lb"),
  13209. name: "Front",
  13210. image: {
  13211. source: "./media/characters/renard-thatch/front.svg",
  13212. extra: 2411 / 2275,
  13213. bottom: 0.01
  13214. }
  13215. },
  13216. frontPosing: {
  13217. height: math.unit(6, "feet"),
  13218. weight: math.unit(180, "lb"),
  13219. name: "Front (Posing)",
  13220. image: {
  13221. source: "./media/characters/renard-thatch/front-posing.svg",
  13222. extra: 2381 / 2261,
  13223. bottom: 0.01
  13224. }
  13225. },
  13226. back: {
  13227. height: math.unit(6, "feet"),
  13228. weight: math.unit(180, "lb"),
  13229. name: "Back",
  13230. image: {
  13231. source: "./media/characters/renard-thatch/back.svg",
  13232. extra: 2428 / 2288
  13233. }
  13234. },
  13235. },
  13236. [
  13237. {
  13238. name: "Micro",
  13239. height: math.unit(3, "inches")
  13240. },
  13241. {
  13242. name: "Default",
  13243. height: math.unit(6, "feet"),
  13244. default: true
  13245. },
  13246. {
  13247. name: "Macro",
  13248. height: math.unit(75, "feet")
  13249. },
  13250. ]
  13251. ))
  13252. characterMakers.push(() => makeCharacter(
  13253. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13254. {
  13255. front: {
  13256. height: math.unit(1450, "feet"),
  13257. weight: math.unit(1.21e6, "tons"),
  13258. name: "Front",
  13259. image: {
  13260. source: "./media/characters/sekvra/front.svg",
  13261. extra: 1,
  13262. bottom: 0.03
  13263. }
  13264. },
  13265. frontClothed: {
  13266. height: math.unit(1450, "feet"),
  13267. weight: math.unit(1.21e6, "tons"),
  13268. name: "Front (Clothed)",
  13269. image: {
  13270. source: "./media/characters/sekvra/front-clothed.svg",
  13271. extra: 1,
  13272. bottom: 0.03
  13273. }
  13274. },
  13275. side: {
  13276. height: math.unit(1450, "feet"),
  13277. weight: math.unit(1.21e6, "tons"),
  13278. name: "Side",
  13279. image: {
  13280. source: "./media/characters/sekvra/side.svg",
  13281. extra: 1,
  13282. bottom: 0.025
  13283. }
  13284. },
  13285. back: {
  13286. height: math.unit(1450, "feet"),
  13287. weight: math.unit(1.21e6, "tons"),
  13288. name: "Back",
  13289. image: {
  13290. source: "./media/characters/sekvra/back.svg",
  13291. extra: 1,
  13292. bottom: 0.005
  13293. }
  13294. },
  13295. },
  13296. [
  13297. {
  13298. name: "Macro",
  13299. height: math.unit(1450, "feet"),
  13300. default: true
  13301. },
  13302. {
  13303. name: "Megamacro",
  13304. height: math.unit(15000, "feet")
  13305. },
  13306. ]
  13307. ))
  13308. characterMakers.push(() => makeCharacter(
  13309. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13310. {
  13311. front: {
  13312. height: math.unit(6, "feet"),
  13313. weight: math.unit(150, "lb"),
  13314. name: "Front",
  13315. image: {
  13316. source: "./media/characters/carmine/front.svg",
  13317. extra: 1,
  13318. bottom: 0.035
  13319. }
  13320. },
  13321. frontArmor: {
  13322. height: math.unit(6, "feet"),
  13323. weight: math.unit(150, "lb"),
  13324. name: "Front (Armor)",
  13325. image: {
  13326. source: "./media/characters/carmine/front-armor.svg",
  13327. extra: 1,
  13328. bottom: 0.035
  13329. }
  13330. },
  13331. },
  13332. [
  13333. {
  13334. name: "Large",
  13335. height: math.unit(1, "mile")
  13336. },
  13337. {
  13338. name: "Huge",
  13339. height: math.unit(40, "miles"),
  13340. default: true
  13341. },
  13342. {
  13343. name: "Colossal",
  13344. height: math.unit(2500, "miles")
  13345. },
  13346. ]
  13347. ))
  13348. characterMakers.push(() => makeCharacter(
  13349. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13350. {
  13351. front: {
  13352. height: math.unit(6, "feet"),
  13353. weight: math.unit(150, "lb"),
  13354. name: "Front",
  13355. image: {
  13356. source: "./media/characters/elyssia/front.svg",
  13357. extra: 2201 / 2035,
  13358. bottom: 0.05
  13359. }
  13360. },
  13361. frontClothed: {
  13362. height: math.unit(6, "feet"),
  13363. weight: math.unit(150, "lb"),
  13364. name: "Front (Clothed)",
  13365. image: {
  13366. source: "./media/characters/elyssia/front-clothed.svg",
  13367. extra: 2201 / 2035,
  13368. bottom: 0.05
  13369. }
  13370. },
  13371. back: {
  13372. height: math.unit(6, "feet"),
  13373. weight: math.unit(150, "lb"),
  13374. name: "Back",
  13375. image: {
  13376. source: "./media/characters/elyssia/back.svg",
  13377. extra: 2201 / 2035,
  13378. bottom: 0.013
  13379. }
  13380. },
  13381. },
  13382. [
  13383. {
  13384. name: "Smaller",
  13385. height: math.unit(150, "feet")
  13386. },
  13387. {
  13388. name: "Standard",
  13389. height: math.unit(1400, "feet"),
  13390. default: true
  13391. },
  13392. {
  13393. name: "Distracted",
  13394. height: math.unit(15000, "feet")
  13395. },
  13396. ]
  13397. ))
  13398. characterMakers.push(() => makeCharacter(
  13399. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13400. {
  13401. front: {
  13402. height: math.unit(7 + 4 / 12, "feet"),
  13403. weight: math.unit(500, "lb"),
  13404. name: "Front",
  13405. image: {
  13406. source: "./media/characters/geno-maxwell/front.svg",
  13407. extra: 2207 / 2040,
  13408. bottom: 0.015
  13409. }
  13410. },
  13411. },
  13412. [
  13413. {
  13414. name: "Micro",
  13415. height: math.unit(3, "inches")
  13416. },
  13417. {
  13418. name: "Normal",
  13419. height: math.unit(7 + 4 / 12, "feet"),
  13420. default: true
  13421. },
  13422. {
  13423. name: "Macro",
  13424. height: math.unit(220, "feet")
  13425. },
  13426. {
  13427. name: "Megamacro",
  13428. height: math.unit(11, "miles")
  13429. },
  13430. ]
  13431. ))
  13432. characterMakers.push(() => makeCharacter(
  13433. { name: "Regena 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/regena-maxwell/front.svg",
  13441. extra: 3115 / 2770,
  13442. bottom: 0.02
  13443. }
  13444. },
  13445. },
  13446. [
  13447. {
  13448. name: "Normal",
  13449. height: math.unit(7 + 4 / 12, "feet"),
  13450. default: true
  13451. },
  13452. {
  13453. name: "Macro",
  13454. height: math.unit(220, "feet")
  13455. },
  13456. {
  13457. name: "Megamacro",
  13458. height: math.unit(11, "miles")
  13459. },
  13460. ]
  13461. ))
  13462. characterMakers.push(() => makeCharacter(
  13463. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13464. {
  13465. front: {
  13466. height: math.unit(6, "feet"),
  13467. weight: math.unit(150, "lb"),
  13468. name: "Front",
  13469. image: {
  13470. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13471. extra: 860 / 690,
  13472. bottom: 0.03
  13473. }
  13474. },
  13475. },
  13476. [
  13477. {
  13478. name: "Normal",
  13479. height: math.unit(1.7, "meters"),
  13480. default: true
  13481. },
  13482. ]
  13483. ))
  13484. characterMakers.push(() => makeCharacter(
  13485. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13486. {
  13487. front: {
  13488. height: math.unit(6, "feet"),
  13489. weight: math.unit(150, "lb"),
  13490. name: "Front",
  13491. image: {
  13492. source: "./media/characters/quilly/front.svg",
  13493. extra: 890 / 776
  13494. }
  13495. },
  13496. },
  13497. [
  13498. {
  13499. name: "Gigamacro",
  13500. height: math.unit(404090, "miles"),
  13501. default: true
  13502. },
  13503. ]
  13504. ))
  13505. characterMakers.push(() => makeCharacter(
  13506. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13507. {
  13508. front: {
  13509. height: math.unit(7 + 8 / 12, "feet"),
  13510. weight: math.unit(350, "lb"),
  13511. name: "Front",
  13512. image: {
  13513. source: "./media/characters/tempest/front.svg",
  13514. extra: 1175 / 1086,
  13515. bottom: 0.02
  13516. }
  13517. },
  13518. },
  13519. [
  13520. {
  13521. name: "Normal",
  13522. height: math.unit(7 + 8 / 12, "feet"),
  13523. default: true
  13524. },
  13525. ]
  13526. ))
  13527. characterMakers.push(() => makeCharacter(
  13528. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13529. {
  13530. side: {
  13531. height: math.unit(4 + 5 / 12, "feet"),
  13532. weight: math.unit(80, "lb"),
  13533. name: "Side",
  13534. image: {
  13535. source: "./media/characters/rodger/side.svg",
  13536. extra: 1235 / 1118
  13537. }
  13538. },
  13539. },
  13540. [
  13541. {
  13542. name: "Micro",
  13543. height: math.unit(1, "inch")
  13544. },
  13545. {
  13546. name: "Normal",
  13547. height: math.unit(4 + 5 / 12, "feet"),
  13548. default: true
  13549. },
  13550. {
  13551. name: "Macro",
  13552. height: math.unit(120, "feet")
  13553. },
  13554. ]
  13555. ))
  13556. characterMakers.push(() => makeCharacter(
  13557. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13558. {
  13559. front: {
  13560. height: math.unit(6, "feet"),
  13561. weight: math.unit(150, "lb"),
  13562. name: "Front",
  13563. image: {
  13564. source: "./media/characters/danyel/front.svg",
  13565. extra: 1185 / 1123,
  13566. bottom: 0.05
  13567. }
  13568. },
  13569. },
  13570. [
  13571. {
  13572. name: "Shrunken",
  13573. height: math.unit(0.5, "mm")
  13574. },
  13575. {
  13576. name: "Micro",
  13577. height: math.unit(1, "mm"),
  13578. default: true
  13579. },
  13580. {
  13581. name: "Upsized",
  13582. height: math.unit(5 + 5 / 12, "feet")
  13583. },
  13584. ]
  13585. ))
  13586. characterMakers.push(() => makeCharacter(
  13587. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13588. {
  13589. front: {
  13590. height: math.unit(5 + 6 / 12, "feet"),
  13591. weight: math.unit(200, "lb"),
  13592. name: "Front",
  13593. image: {
  13594. source: "./media/characters/vivian-bijoux/front.svg",
  13595. extra: 1,
  13596. bottom: 0.072
  13597. }
  13598. },
  13599. },
  13600. [
  13601. {
  13602. name: "Normal",
  13603. height: math.unit(5 + 6 / 12, "feet"),
  13604. default: true
  13605. },
  13606. {
  13607. name: "Bad Dream",
  13608. height: math.unit(500, "feet")
  13609. },
  13610. {
  13611. name: "Nightmare",
  13612. height: math.unit(500, "miles")
  13613. },
  13614. ]
  13615. ))
  13616. characterMakers.push(() => makeCharacter(
  13617. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13618. {
  13619. front: {
  13620. height: math.unit(6 + 1 / 12, "feet"),
  13621. weight: math.unit(260, "lb"),
  13622. name: "Front",
  13623. image: {
  13624. source: "./media/characters/zeta/front.svg",
  13625. extra: 1968 / 1889,
  13626. bottom: 0.06
  13627. }
  13628. },
  13629. back: {
  13630. height: math.unit(6 + 1 / 12, "feet"),
  13631. weight: math.unit(260, "lb"),
  13632. name: "Back",
  13633. image: {
  13634. source: "./media/characters/zeta/back.svg",
  13635. extra: 1944 / 1858,
  13636. bottom: 0.03
  13637. }
  13638. },
  13639. hand: {
  13640. height: math.unit(1.112, "feet"),
  13641. name: "Hand",
  13642. image: {
  13643. source: "./media/characters/zeta/hand.svg"
  13644. }
  13645. },
  13646. foot: {
  13647. height: math.unit(1.48, "feet"),
  13648. name: "Foot",
  13649. image: {
  13650. source: "./media/characters/zeta/foot.svg"
  13651. }
  13652. },
  13653. },
  13654. [
  13655. {
  13656. name: "Micro",
  13657. height: math.unit(6, "inches")
  13658. },
  13659. {
  13660. name: "Normal",
  13661. height: math.unit(6 + 1 / 12, "feet"),
  13662. default: true
  13663. },
  13664. {
  13665. name: "Macro",
  13666. height: math.unit(20, "feet")
  13667. },
  13668. ]
  13669. ))
  13670. characterMakers.push(() => makeCharacter(
  13671. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13672. {
  13673. front: {
  13674. height: math.unit(6, "feet"),
  13675. weight: math.unit(150, "lb"),
  13676. name: "Front",
  13677. image: {
  13678. source: "./media/characters/jamie-larsen/front.svg",
  13679. extra: 962 / 933,
  13680. bottom: 0.02
  13681. }
  13682. },
  13683. back: {
  13684. height: math.unit(6, "feet"),
  13685. weight: math.unit(150, "lb"),
  13686. name: "Back",
  13687. image: {
  13688. source: "./media/characters/jamie-larsen/back.svg",
  13689. extra: 997 / 946
  13690. }
  13691. },
  13692. },
  13693. [
  13694. {
  13695. name: "Macro",
  13696. height: math.unit(28 + 7 / 12, "feet"),
  13697. default: true
  13698. },
  13699. {
  13700. name: "Macro+",
  13701. height: math.unit(180, "feet")
  13702. },
  13703. {
  13704. name: "Megamacro",
  13705. height: math.unit(10, "miles")
  13706. },
  13707. {
  13708. name: "Gigamacro",
  13709. height: math.unit(200000, "miles")
  13710. },
  13711. ]
  13712. ))
  13713. characterMakers.push(() => makeCharacter(
  13714. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13715. {
  13716. front: {
  13717. height: math.unit(6, "feet"),
  13718. weight: math.unit(120, "lb"),
  13719. name: "Front",
  13720. image: {
  13721. source: "./media/characters/vance/front.svg",
  13722. extra: 1980 / 1890,
  13723. bottom: 0.09
  13724. }
  13725. },
  13726. back: {
  13727. height: math.unit(6, "feet"),
  13728. weight: math.unit(120, "lb"),
  13729. name: "Back",
  13730. image: {
  13731. source: "./media/characters/vance/back.svg",
  13732. extra: 2081 / 1994,
  13733. bottom: 0.014
  13734. }
  13735. },
  13736. hand: {
  13737. height: math.unit(0.88, "feet"),
  13738. name: "Hand",
  13739. image: {
  13740. source: "./media/characters/vance/hand.svg"
  13741. }
  13742. },
  13743. foot: {
  13744. height: math.unit(0.64, "feet"),
  13745. name: "Foot",
  13746. image: {
  13747. source: "./media/characters/vance/foot.svg"
  13748. }
  13749. },
  13750. },
  13751. [
  13752. {
  13753. name: "Small",
  13754. height: math.unit(90, "feet"),
  13755. default: true
  13756. },
  13757. {
  13758. name: "Macro",
  13759. height: math.unit(100, "meters")
  13760. },
  13761. {
  13762. name: "Megamacro",
  13763. height: math.unit(15, "miles")
  13764. },
  13765. ]
  13766. ))
  13767. characterMakers.push(() => makeCharacter(
  13768. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13769. {
  13770. front: {
  13771. height: math.unit(6, "feet"),
  13772. weight: math.unit(180, "lb"),
  13773. name: "Front",
  13774. image: {
  13775. source: "./media/characters/xochitl/front.svg",
  13776. extra: 2297 / 2261,
  13777. bottom: 0.065
  13778. }
  13779. },
  13780. back: {
  13781. height: math.unit(6, "feet"),
  13782. weight: math.unit(180, "lb"),
  13783. name: "Back",
  13784. image: {
  13785. source: "./media/characters/xochitl/back.svg",
  13786. extra: 2386 / 2354,
  13787. bottom: 0.01
  13788. }
  13789. },
  13790. foot: {
  13791. height: math.unit(6 / 5 * 1.15, "feet"),
  13792. weight: math.unit(150, "lb"),
  13793. name: "Foot",
  13794. image: {
  13795. source: "./media/characters/xochitl/foot.svg"
  13796. }
  13797. },
  13798. },
  13799. [
  13800. {
  13801. name: "Macro",
  13802. height: math.unit(80, "feet")
  13803. },
  13804. {
  13805. name: "Macro+",
  13806. height: math.unit(400, "feet"),
  13807. default: true
  13808. },
  13809. {
  13810. name: "Gigamacro",
  13811. height: math.unit(80000, "miles")
  13812. },
  13813. {
  13814. name: "Gigamacro+",
  13815. height: math.unit(400000, "miles")
  13816. },
  13817. {
  13818. name: "Teramacro",
  13819. height: math.unit(300, "AU")
  13820. },
  13821. ]
  13822. ))
  13823. characterMakers.push(() => makeCharacter(
  13824. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13825. {
  13826. front: {
  13827. height: math.unit(6, "feet"),
  13828. weight: math.unit(150, "lb"),
  13829. name: "Front",
  13830. image: {
  13831. source: "./media/characters/vincent/front.svg",
  13832. extra: 1130 / 1080,
  13833. bottom: 0.055
  13834. }
  13835. },
  13836. beak: {
  13837. height: math.unit(6 * 0.1, "feet"),
  13838. name: "Beak",
  13839. image: {
  13840. source: "./media/characters/vincent/beak.svg"
  13841. }
  13842. },
  13843. hand: {
  13844. height: math.unit(6 * 0.85, "feet"),
  13845. weight: math.unit(150, "lb"),
  13846. name: "Hand",
  13847. image: {
  13848. source: "./media/characters/vincent/hand.svg"
  13849. }
  13850. },
  13851. foot: {
  13852. height: math.unit(6 * 0.19, "feet"),
  13853. weight: math.unit(150, "lb"),
  13854. name: "Foot",
  13855. image: {
  13856. source: "./media/characters/vincent/foot.svg"
  13857. }
  13858. },
  13859. },
  13860. [
  13861. {
  13862. name: "Base",
  13863. height: math.unit(6 + 5 / 12, "feet"),
  13864. default: true
  13865. },
  13866. {
  13867. name: "Macro",
  13868. height: math.unit(300, "feet")
  13869. },
  13870. {
  13871. name: "Megamacro",
  13872. height: math.unit(2, "miles")
  13873. },
  13874. {
  13875. name: "Gigamacro",
  13876. height: math.unit(1000, "miles")
  13877. },
  13878. ]
  13879. ))
  13880. characterMakers.push(() => makeCharacter(
  13881. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13882. {
  13883. front: {
  13884. height: math.unit(2, "meters"),
  13885. weight: math.unit(500, "kg"),
  13886. name: "Front",
  13887. image: {
  13888. source: "./media/characters/coatl/front.svg",
  13889. extra: 3948 / 3500,
  13890. bottom: 0.082
  13891. }
  13892. },
  13893. },
  13894. [
  13895. {
  13896. name: "Normal",
  13897. height: math.unit(4, "meters")
  13898. },
  13899. {
  13900. name: "Macro",
  13901. height: math.unit(100, "meters"),
  13902. default: true
  13903. },
  13904. {
  13905. name: "Macro+",
  13906. height: math.unit(300, "meters")
  13907. },
  13908. {
  13909. name: "Megamacro",
  13910. height: math.unit(3, "gigameters")
  13911. },
  13912. {
  13913. name: "Megamacro+",
  13914. height: math.unit(300, "terameters")
  13915. },
  13916. {
  13917. name: "Megamacro++",
  13918. height: math.unit(3, "lightyears")
  13919. },
  13920. ]
  13921. ))
  13922. characterMakers.push(() => makeCharacter(
  13923. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13924. {
  13925. front: {
  13926. height: math.unit(6, "feet"),
  13927. weight: math.unit(50, "kg"),
  13928. name: "front",
  13929. image: {
  13930. source: "./media/characters/shiroryu/front.svg",
  13931. extra: 1990 / 1935
  13932. }
  13933. },
  13934. },
  13935. [
  13936. {
  13937. name: "Mortal Mingling",
  13938. height: math.unit(3, "meters")
  13939. },
  13940. {
  13941. name: "Kaiju-ish",
  13942. height: math.unit(250, "meters")
  13943. },
  13944. {
  13945. name: "Somewhat Godly",
  13946. height: math.unit(400, "km"),
  13947. default: true
  13948. },
  13949. {
  13950. name: "Planetary",
  13951. height: math.unit(300, "megameters")
  13952. },
  13953. {
  13954. name: "Galaxy-dwarfing",
  13955. height: math.unit(450, "kiloparsecs")
  13956. },
  13957. {
  13958. name: "Universe Eater",
  13959. height: math.unit(150, "gigaparsecs")
  13960. },
  13961. {
  13962. name: "Almost Immeasurable",
  13963. height: math.unit(1.3e266, "yottaparsecs")
  13964. },
  13965. ]
  13966. ))
  13967. characterMakers.push(() => makeCharacter(
  13968. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13969. {
  13970. front: {
  13971. height: math.unit(6, "feet"),
  13972. weight: math.unit(150, "lb"),
  13973. name: "Front",
  13974. image: {
  13975. source: "./media/characters/umeko/front.svg",
  13976. extra: 1,
  13977. bottom: 0.019
  13978. }
  13979. },
  13980. frontArmored: {
  13981. height: math.unit(6, "feet"),
  13982. weight: math.unit(150, "lb"),
  13983. name: "Front (Armored)",
  13984. image: {
  13985. source: "./media/characters/umeko/front-armored.svg",
  13986. extra: 1,
  13987. bottom: 0.021
  13988. }
  13989. },
  13990. },
  13991. [
  13992. {
  13993. name: "Macro",
  13994. height: math.unit(220, "feet"),
  13995. default: true
  13996. },
  13997. {
  13998. name: "Guardian Dragon",
  13999. height: math.unit(50, "miles")
  14000. },
  14001. {
  14002. name: "Cosmic",
  14003. height: math.unit(800000, "miles")
  14004. },
  14005. ]
  14006. ))
  14007. characterMakers.push(() => makeCharacter(
  14008. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14009. {
  14010. front: {
  14011. height: math.unit(6, "feet"),
  14012. weight: math.unit(150, "lb"),
  14013. name: "Front",
  14014. image: {
  14015. source: "./media/characters/cassidy/front.svg",
  14016. extra: 1,
  14017. bottom: 0.043
  14018. }
  14019. },
  14020. },
  14021. [
  14022. {
  14023. name: "Canon Height",
  14024. height: math.unit(120, "feet"),
  14025. default: true
  14026. },
  14027. {
  14028. name: "Macro+",
  14029. height: math.unit(400, "feet")
  14030. },
  14031. {
  14032. name: "Macro++",
  14033. height: math.unit(4000, "feet")
  14034. },
  14035. {
  14036. name: "Megamacro",
  14037. height: math.unit(3, "miles")
  14038. },
  14039. ]
  14040. ))
  14041. characterMakers.push(() => makeCharacter(
  14042. { name: "Isaac", species: ["moose"], 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/isaac/front.svg",
  14050. extra: 896 / 815,
  14051. bottom: 0.11
  14052. }
  14053. },
  14054. },
  14055. [
  14056. {
  14057. name: "Human Size",
  14058. height: math.unit(8, "feet"),
  14059. default: true
  14060. },
  14061. {
  14062. name: "Macro",
  14063. height: math.unit(400, "feet")
  14064. },
  14065. {
  14066. name: "Megamacro",
  14067. height: math.unit(50, "miles")
  14068. },
  14069. {
  14070. name: "Canon Height",
  14071. height: math.unit(200, "AU")
  14072. },
  14073. ]
  14074. ))
  14075. characterMakers.push(() => makeCharacter(
  14076. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14077. {
  14078. front: {
  14079. height: math.unit(6, "feet"),
  14080. weight: math.unit(72, "kg"),
  14081. name: "Front",
  14082. image: {
  14083. source: "./media/characters/sleekit/front.svg",
  14084. extra: 4693 / 4487,
  14085. bottom: 0.012
  14086. }
  14087. },
  14088. },
  14089. [
  14090. {
  14091. name: "Minimum Height",
  14092. height: math.unit(10, "meters")
  14093. },
  14094. {
  14095. name: "Smaller",
  14096. height: math.unit(25, "meters")
  14097. },
  14098. {
  14099. name: "Larger",
  14100. height: math.unit(38, "meters"),
  14101. default: true
  14102. },
  14103. {
  14104. name: "Maximum height",
  14105. height: math.unit(100, "meters")
  14106. },
  14107. ]
  14108. ))
  14109. characterMakers.push(() => makeCharacter(
  14110. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14111. {
  14112. front: {
  14113. height: math.unit(6, "feet"),
  14114. weight: math.unit(150, "lb"),
  14115. name: "Front",
  14116. image: {
  14117. source: "./media/characters/nillia/front.svg",
  14118. extra: 2195 / 2037,
  14119. bottom: 0.005
  14120. }
  14121. },
  14122. back: {
  14123. height: math.unit(6, "feet"),
  14124. weight: math.unit(150, "lb"),
  14125. name: "Back",
  14126. image: {
  14127. source: "./media/characters/nillia/back.svg",
  14128. extra: 2195 / 2037,
  14129. bottom: 0.005
  14130. }
  14131. },
  14132. },
  14133. [
  14134. {
  14135. name: "Canon Height",
  14136. height: math.unit(489, "feet"),
  14137. default: true
  14138. }
  14139. ]
  14140. ))
  14141. characterMakers.push(() => makeCharacter(
  14142. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14143. {
  14144. front: {
  14145. height: math.unit(6, "feet"),
  14146. weight: math.unit(150, "lb"),
  14147. name: "Front",
  14148. image: {
  14149. source: "./media/characters/mesmyriza/front.svg",
  14150. extra: 2067 / 1784,
  14151. bottom: 0.035
  14152. }
  14153. },
  14154. foot: {
  14155. height: math.unit(6 / (250 / 35), "feet"),
  14156. name: "Foot",
  14157. image: {
  14158. source: "./media/characters/mesmyriza/foot.svg"
  14159. }
  14160. },
  14161. },
  14162. [
  14163. {
  14164. name: "Macro",
  14165. height: math.unit(457, "meters"),
  14166. default: true
  14167. },
  14168. {
  14169. name: "Megamacro",
  14170. height: math.unit(8, "megameters")
  14171. },
  14172. ]
  14173. ))
  14174. characterMakers.push(() => makeCharacter(
  14175. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14176. {
  14177. front: {
  14178. height: math.unit(6, "feet"),
  14179. weight: math.unit(250, "lb"),
  14180. name: "Front",
  14181. image: {
  14182. source: "./media/characters/saudade/front.svg",
  14183. extra: 1172 / 1139,
  14184. bottom: 0.035
  14185. }
  14186. },
  14187. },
  14188. [
  14189. {
  14190. name: "Micro",
  14191. height: math.unit(3, "inches")
  14192. },
  14193. {
  14194. name: "Normal",
  14195. height: math.unit(6, "feet"),
  14196. default: true
  14197. },
  14198. {
  14199. name: "Macro",
  14200. height: math.unit(50, "feet")
  14201. },
  14202. {
  14203. name: "Megamacro",
  14204. height: math.unit(2800, "feet")
  14205. },
  14206. ]
  14207. ))
  14208. characterMakers.push(() => makeCharacter(
  14209. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14210. {
  14211. front: {
  14212. height: math.unit(5 + 4 / 12, "feet"),
  14213. weight: math.unit(100, "lb"),
  14214. name: "Front",
  14215. image: {
  14216. source: "./media/characters/keireer/front.svg",
  14217. extra: 716 / 666,
  14218. bottom: 0.05
  14219. }
  14220. },
  14221. },
  14222. [
  14223. {
  14224. name: "Normal",
  14225. height: math.unit(5 + 4 / 12, "feet"),
  14226. default: true
  14227. },
  14228. ]
  14229. ))
  14230. characterMakers.push(() => makeCharacter(
  14231. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14232. {
  14233. front: {
  14234. height: math.unit(6, "feet"),
  14235. weight: math.unit(90, "kg"),
  14236. name: "Front",
  14237. image: {
  14238. source: "./media/characters/mirja/front.svg",
  14239. extra: 1789 / 1683,
  14240. bottom: 0.05
  14241. }
  14242. },
  14243. frontDressed: {
  14244. height: math.unit(6, "feet"),
  14245. weight: math.unit(90, "lb"),
  14246. name: "Front (Dressed)",
  14247. image: {
  14248. source: "./media/characters/mirja/front-dressed.svg",
  14249. extra: 1789 / 1683,
  14250. bottom: 0.05
  14251. }
  14252. },
  14253. back: {
  14254. height: math.unit(6, "feet"),
  14255. weight: math.unit(90, "lb"),
  14256. name: "Back",
  14257. image: {
  14258. source: "./media/characters/mirja/back.svg",
  14259. extra: 953 / 917,
  14260. bottom: 0.017
  14261. }
  14262. },
  14263. },
  14264. [
  14265. {
  14266. name: "\"Incognito\"",
  14267. height: math.unit(3, "meters")
  14268. },
  14269. {
  14270. name: "Strolling Size",
  14271. height: math.unit(15, "km")
  14272. },
  14273. {
  14274. name: "Larger Strolling Size",
  14275. height: math.unit(400, "km")
  14276. },
  14277. {
  14278. name: "Preferred Size",
  14279. height: math.unit(5000, "km")
  14280. },
  14281. {
  14282. name: "True Size",
  14283. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14284. default: true
  14285. },
  14286. ]
  14287. ))
  14288. characterMakers.push(() => makeCharacter(
  14289. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14290. {
  14291. front: {
  14292. height: math.unit(15, "feet"),
  14293. weight: math.unit(880, "kg"),
  14294. name: "Front",
  14295. image: {
  14296. source: "./media/characters/nightraver/front.svg",
  14297. extra: 2444 / 2160,
  14298. bottom: 0.027
  14299. }
  14300. },
  14301. back: {
  14302. height: math.unit(15, "feet"),
  14303. weight: math.unit(880, "kg"),
  14304. name: "Back",
  14305. image: {
  14306. source: "./media/characters/nightraver/back.svg",
  14307. extra: 2309 / 2180,
  14308. bottom: 0.005
  14309. }
  14310. },
  14311. sole: {
  14312. height: math.unit(2.878, "feet"),
  14313. name: "Sole",
  14314. image: {
  14315. source: "./media/characters/nightraver/sole.svg"
  14316. }
  14317. },
  14318. foot: {
  14319. height: math.unit(2.285, "feet"),
  14320. name: "Foot",
  14321. image: {
  14322. source: "./media/characters/nightraver/foot.svg"
  14323. }
  14324. },
  14325. maw: {
  14326. height: math.unit(2.67, "feet"),
  14327. name: "Maw",
  14328. image: {
  14329. source: "./media/characters/nightraver/maw.svg"
  14330. }
  14331. },
  14332. },
  14333. [
  14334. {
  14335. name: "Micro",
  14336. height: math.unit(1, "cm")
  14337. },
  14338. {
  14339. name: "Normal",
  14340. height: math.unit(15, "feet"),
  14341. default: true
  14342. },
  14343. {
  14344. name: "Macro",
  14345. height: math.unit(300, "feet")
  14346. },
  14347. {
  14348. name: "Megamacro",
  14349. height: math.unit(300, "miles")
  14350. },
  14351. {
  14352. name: "Gigamacro",
  14353. height: math.unit(10000, "miles")
  14354. },
  14355. ]
  14356. ))
  14357. characterMakers.push(() => makeCharacter(
  14358. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14359. {
  14360. side: {
  14361. height: math.unit(2, "inches"),
  14362. weight: math.unit(5, "grams"),
  14363. name: "Side",
  14364. image: {
  14365. source: "./media/characters/arc/side.svg"
  14366. }
  14367. },
  14368. },
  14369. [
  14370. {
  14371. name: "Micro",
  14372. height: math.unit(2, "inches"),
  14373. default: true
  14374. },
  14375. ]
  14376. ))
  14377. characterMakers.push(() => makeCharacter(
  14378. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14379. {
  14380. front: {
  14381. height: math.unit(1.1938, "meters"),
  14382. weight: math.unit(54, "kg"),
  14383. name: "Front",
  14384. image: {
  14385. source: "./media/characters/nebula-shahar/front.svg",
  14386. extra: 1642 / 1436,
  14387. bottom: 0.06
  14388. }
  14389. },
  14390. },
  14391. [
  14392. {
  14393. name: "Megamicro",
  14394. height: math.unit(0.3, "mm")
  14395. },
  14396. {
  14397. name: "Micro",
  14398. height: math.unit(3, "cm")
  14399. },
  14400. {
  14401. name: "Normal",
  14402. height: math.unit(138, "cm"),
  14403. default: true
  14404. },
  14405. {
  14406. name: "Macro",
  14407. height: math.unit(30, "m")
  14408. },
  14409. ]
  14410. ))
  14411. characterMakers.push(() => makeCharacter(
  14412. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14413. {
  14414. front: {
  14415. height: math.unit(5.24, "feet"),
  14416. weight: math.unit(150, "lb"),
  14417. name: "Front",
  14418. image: {
  14419. source: "./media/characters/shayla/front.svg",
  14420. extra: 1512 / 1414,
  14421. bottom: 0.01
  14422. }
  14423. },
  14424. back: {
  14425. height: math.unit(5.24, "feet"),
  14426. weight: math.unit(150, "lb"),
  14427. name: "Back",
  14428. image: {
  14429. source: "./media/characters/shayla/back.svg",
  14430. extra: 1512 / 1414
  14431. }
  14432. },
  14433. hand: {
  14434. height: math.unit(0.7781496062992126, "feet"),
  14435. name: "Hand",
  14436. image: {
  14437. source: "./media/characters/shayla/hand.svg"
  14438. }
  14439. },
  14440. foot: {
  14441. height: math.unit(1.4206036745406823, "feet"),
  14442. name: "Foot",
  14443. image: {
  14444. source: "./media/characters/shayla/foot.svg"
  14445. }
  14446. },
  14447. },
  14448. [
  14449. {
  14450. name: "Micro",
  14451. height: math.unit(0.32, "feet")
  14452. },
  14453. {
  14454. name: "Normal",
  14455. height: math.unit(5.24, "feet"),
  14456. default: true
  14457. },
  14458. {
  14459. name: "Macro",
  14460. height: math.unit(492.12, "feet")
  14461. },
  14462. {
  14463. name: "Megamacro",
  14464. height: math.unit(186.41, "miles")
  14465. },
  14466. ]
  14467. ))
  14468. characterMakers.push(() => makeCharacter(
  14469. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14470. {
  14471. front: {
  14472. height: math.unit(2.2, "m"),
  14473. weight: math.unit(120, "kg"),
  14474. name: "Front",
  14475. image: {
  14476. source: "./media/characters/pia-jr/front.svg",
  14477. extra: 1000 / 970,
  14478. bottom: 0.035
  14479. }
  14480. },
  14481. hand: {
  14482. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14483. name: "Hand",
  14484. image: {
  14485. source: "./media/characters/pia-jr/hand.svg"
  14486. }
  14487. },
  14488. paw: {
  14489. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14490. name: "Paw",
  14491. image: {
  14492. source: "./media/characters/pia-jr/paw.svg"
  14493. }
  14494. },
  14495. },
  14496. [
  14497. {
  14498. name: "Micro",
  14499. height: math.unit(1.2, "cm")
  14500. },
  14501. {
  14502. name: "Normal",
  14503. height: math.unit(2.2, "m"),
  14504. default: true
  14505. },
  14506. {
  14507. name: "Macro",
  14508. height: math.unit(180, "m")
  14509. },
  14510. {
  14511. name: "Megamacro",
  14512. height: math.unit(420, "km")
  14513. },
  14514. ]
  14515. ))
  14516. characterMakers.push(() => makeCharacter(
  14517. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14518. {
  14519. front: {
  14520. height: math.unit(2, "m"),
  14521. weight: math.unit(115, "kg"),
  14522. name: "Front",
  14523. image: {
  14524. source: "./media/characters/pia-sr/front.svg",
  14525. extra: 760 / 730,
  14526. bottom: 0.015
  14527. }
  14528. },
  14529. back: {
  14530. height: math.unit(2, "m"),
  14531. weight: math.unit(115, "kg"),
  14532. name: "Back",
  14533. image: {
  14534. source: "./media/characters/pia-sr/back.svg",
  14535. extra: 760 / 730,
  14536. bottom: 0.01
  14537. }
  14538. },
  14539. hand: {
  14540. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14541. name: "Hand",
  14542. image: {
  14543. source: "./media/characters/pia-sr/hand.svg"
  14544. }
  14545. },
  14546. foot: {
  14547. height: math.unit(1.83, "feet"),
  14548. name: "Foot",
  14549. image: {
  14550. source: "./media/characters/pia-sr/foot.svg"
  14551. }
  14552. },
  14553. },
  14554. [
  14555. {
  14556. name: "Micro",
  14557. height: math.unit(88, "mm")
  14558. },
  14559. {
  14560. name: "Normal",
  14561. height: math.unit(2, "m"),
  14562. default: true
  14563. },
  14564. {
  14565. name: "Macro",
  14566. height: math.unit(200, "m")
  14567. },
  14568. {
  14569. name: "Megamacro",
  14570. height: math.unit(420, "km")
  14571. },
  14572. ]
  14573. ))
  14574. characterMakers.push(() => makeCharacter(
  14575. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14576. {
  14577. front: {
  14578. height: math.unit(8 + 2 / 12, "feet"),
  14579. weight: math.unit(300, "lb"),
  14580. name: "Front",
  14581. image: {
  14582. source: "./media/characters/kibibyte/front.svg",
  14583. extra: 2221 / 2098,
  14584. bottom: 0.04
  14585. }
  14586. },
  14587. },
  14588. [
  14589. {
  14590. name: "Normal",
  14591. height: math.unit(8 + 2 / 12, "feet"),
  14592. default: true
  14593. },
  14594. {
  14595. name: "Socialable Macro",
  14596. height: math.unit(50, "feet")
  14597. },
  14598. {
  14599. name: "Macro",
  14600. height: math.unit(300, "feet")
  14601. },
  14602. {
  14603. name: "Megamacro",
  14604. height: math.unit(500, "miles")
  14605. },
  14606. ]
  14607. ))
  14608. characterMakers.push(() => makeCharacter(
  14609. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14610. {
  14611. front: {
  14612. height: math.unit(6, "feet"),
  14613. weight: math.unit(150, "lb"),
  14614. name: "Front",
  14615. image: {
  14616. source: "./media/characters/felix/front.svg",
  14617. extra: 762 / 722,
  14618. bottom: 0.02
  14619. }
  14620. },
  14621. frontClothed: {
  14622. height: math.unit(6, "feet"),
  14623. weight: math.unit(150, "lb"),
  14624. name: "Front (Clothed)",
  14625. image: {
  14626. source: "./media/characters/felix/front-clothed.svg",
  14627. extra: 762 / 722,
  14628. bottom: 0.02
  14629. }
  14630. },
  14631. },
  14632. [
  14633. {
  14634. name: "Normal",
  14635. height: math.unit(6 + 8 / 12, "feet"),
  14636. default: true
  14637. },
  14638. {
  14639. name: "Macro",
  14640. height: math.unit(2600, "feet")
  14641. },
  14642. {
  14643. name: "Megamacro",
  14644. height: math.unit(450, "miles")
  14645. },
  14646. ]
  14647. ))
  14648. characterMakers.push(() => makeCharacter(
  14649. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14650. {
  14651. front: {
  14652. height: math.unit(6 + 1 / 12, "feet"),
  14653. weight: math.unit(250, "lb"),
  14654. name: "Front",
  14655. image: {
  14656. source: "./media/characters/tobo/front.svg",
  14657. extra: 608 / 586,
  14658. bottom: 0.023
  14659. }
  14660. },
  14661. back: {
  14662. height: math.unit(6 + 1 / 12, "feet"),
  14663. weight: math.unit(250, "lb"),
  14664. name: "Back",
  14665. image: {
  14666. source: "./media/characters/tobo/back.svg",
  14667. extra: 608 / 586
  14668. }
  14669. },
  14670. },
  14671. [
  14672. {
  14673. name: "Nano",
  14674. height: math.unit(2, "nm")
  14675. },
  14676. {
  14677. name: "Megamicro",
  14678. height: math.unit(0.1, "mm")
  14679. },
  14680. {
  14681. name: "Micro",
  14682. height: math.unit(1, "inch"),
  14683. default: true
  14684. },
  14685. {
  14686. name: "Human-sized",
  14687. height: math.unit(6 + 1 / 12, "feet")
  14688. },
  14689. {
  14690. name: "Macro",
  14691. height: math.unit(250, "feet")
  14692. },
  14693. {
  14694. name: "Megamacro",
  14695. height: math.unit(75, "miles")
  14696. },
  14697. {
  14698. name: "Texas-sized",
  14699. height: math.unit(750, "miles")
  14700. },
  14701. {
  14702. name: "Teramacro",
  14703. height: math.unit(50000, "miles")
  14704. },
  14705. ]
  14706. ))
  14707. characterMakers.push(() => makeCharacter(
  14708. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14709. {
  14710. front: {
  14711. height: math.unit(6, "feet"),
  14712. weight: math.unit(269, "lb"),
  14713. name: "Front",
  14714. image: {
  14715. source: "./media/characters/danny-kapowsky/front.svg",
  14716. extra: 766 / 736,
  14717. bottom: 0.044
  14718. }
  14719. },
  14720. back: {
  14721. height: math.unit(6, "feet"),
  14722. weight: math.unit(269, "lb"),
  14723. name: "Back",
  14724. image: {
  14725. source: "./media/characters/danny-kapowsky/back.svg",
  14726. extra: 797 / 760,
  14727. bottom: 0.025
  14728. }
  14729. },
  14730. },
  14731. [
  14732. {
  14733. name: "Macro",
  14734. height: math.unit(150, "feet"),
  14735. default: true
  14736. },
  14737. {
  14738. name: "Macro+",
  14739. height: math.unit(200, "feet")
  14740. },
  14741. {
  14742. name: "Macro++",
  14743. height: math.unit(300, "feet")
  14744. },
  14745. {
  14746. name: "Macro+++",
  14747. height: math.unit(400, "feet")
  14748. },
  14749. ]
  14750. ))
  14751. characterMakers.push(() => makeCharacter(
  14752. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14753. {
  14754. side: {
  14755. height: math.unit(6, "feet"),
  14756. weight: math.unit(170, "lb"),
  14757. name: "Side",
  14758. image: {
  14759. source: "./media/characters/finn/side.svg",
  14760. extra: 1953 / 1807,
  14761. bottom: 0.057
  14762. }
  14763. },
  14764. },
  14765. [
  14766. {
  14767. name: "Megamacro",
  14768. height: math.unit(14445, "feet"),
  14769. default: true
  14770. },
  14771. ]
  14772. ))
  14773. characterMakers.push(() => makeCharacter(
  14774. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14775. {
  14776. front: {
  14777. height: math.unit(5 + 6 / 12, "feet"),
  14778. weight: math.unit(125, "lb"),
  14779. name: "Front",
  14780. image: {
  14781. source: "./media/characters/roy/front.svg",
  14782. extra: 1,
  14783. bottom: 0.11
  14784. }
  14785. },
  14786. },
  14787. [
  14788. {
  14789. name: "Micro",
  14790. height: math.unit(3, "inches"),
  14791. default: true
  14792. },
  14793. {
  14794. name: "Normal",
  14795. height: math.unit(5 + 6 / 12, "feet")
  14796. },
  14797. {
  14798. name: "Lesser Macro",
  14799. height: math.unit(60, "feet")
  14800. },
  14801. {
  14802. name: "Greater Macro",
  14803. height: math.unit(120, "feet")
  14804. },
  14805. ]
  14806. ))
  14807. characterMakers.push(() => makeCharacter(
  14808. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14809. {
  14810. front: {
  14811. height: math.unit(6, "feet"),
  14812. weight: math.unit(100, "lb"),
  14813. name: "Front",
  14814. image: {
  14815. source: "./media/characters/aevsivs/front.svg",
  14816. extra: 1,
  14817. bottom: 0.03
  14818. }
  14819. },
  14820. back: {
  14821. height: math.unit(6, "feet"),
  14822. weight: math.unit(100, "lb"),
  14823. name: "Back",
  14824. image: {
  14825. source: "./media/characters/aevsivs/back.svg"
  14826. }
  14827. },
  14828. },
  14829. [
  14830. {
  14831. name: "Micro",
  14832. height: math.unit(2, "inches"),
  14833. default: true
  14834. },
  14835. {
  14836. name: "Normal",
  14837. height: math.unit(5, "feet")
  14838. },
  14839. ]
  14840. ))
  14841. characterMakers.push(() => makeCharacter(
  14842. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14843. {
  14844. front: {
  14845. height: math.unit(5 + 7 / 12, "feet"),
  14846. weight: math.unit(159, "lb"),
  14847. name: "Front",
  14848. image: {
  14849. source: "./media/characters/hildegard/front.svg",
  14850. extra: 289 / 269,
  14851. bottom: 7.63 / 297.8
  14852. }
  14853. },
  14854. back: {
  14855. height: math.unit(5 + 7 / 12, "feet"),
  14856. weight: math.unit(159, "lb"),
  14857. name: "Back",
  14858. image: {
  14859. source: "./media/characters/hildegard/back.svg",
  14860. extra: 280 / 260,
  14861. bottom: 2.3 / 282
  14862. }
  14863. },
  14864. },
  14865. [
  14866. {
  14867. name: "Normal",
  14868. height: math.unit(5 + 7 / 12, "feet"),
  14869. default: true
  14870. },
  14871. ]
  14872. ))
  14873. characterMakers.push(() => makeCharacter(
  14874. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14875. {
  14876. bernard: {
  14877. height: math.unit(2 + 7 / 12, "feet"),
  14878. weight: math.unit(66, "lb"),
  14879. name: "Bernard",
  14880. rename: true,
  14881. image: {
  14882. source: "./media/characters/bernard-wilder/bernard.svg",
  14883. extra: 192 / 128,
  14884. bottom: 0.05
  14885. }
  14886. },
  14887. wilder: {
  14888. height: math.unit(5 + 8 / 12, "feet"),
  14889. weight: math.unit(143, "lb"),
  14890. name: "Wilder",
  14891. rename: true,
  14892. image: {
  14893. source: "./media/characters/bernard-wilder/wilder.svg",
  14894. extra: 361 / 312,
  14895. bottom: 0.02
  14896. }
  14897. },
  14898. },
  14899. [
  14900. {
  14901. name: "Normal",
  14902. height: math.unit(2 + 7 / 12, "feet"),
  14903. default: true
  14904. },
  14905. ]
  14906. ))
  14907. characterMakers.push(() => makeCharacter(
  14908. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14909. {
  14910. anthro: {
  14911. height: math.unit(6 + 1 / 12, "feet"),
  14912. weight: math.unit(155, "lb"),
  14913. name: "Anthro",
  14914. image: {
  14915. source: "./media/characters/hearth/anthro.svg",
  14916. extra: 260 / 250,
  14917. bottom: 0.02
  14918. }
  14919. },
  14920. feral: {
  14921. height: math.unit(3.78, "feet"),
  14922. weight: math.unit(35, "kg"),
  14923. name: "Feral",
  14924. image: {
  14925. source: "./media/characters/hearth/feral.svg",
  14926. extra: 153 / 135,
  14927. bottom: 0.03
  14928. }
  14929. },
  14930. },
  14931. [
  14932. {
  14933. name: "Normal",
  14934. height: math.unit(6 + 1 / 12, "feet"),
  14935. default: true
  14936. },
  14937. ]
  14938. ))
  14939. characterMakers.push(() => makeCharacter(
  14940. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14941. {
  14942. front: {
  14943. height: math.unit(6, "feet"),
  14944. weight: math.unit(182, "lb"),
  14945. name: "Front",
  14946. image: {
  14947. source: "./media/characters/ingrid/front.svg",
  14948. extra: 294 / 268,
  14949. bottom: 0.027
  14950. }
  14951. },
  14952. },
  14953. [
  14954. {
  14955. name: "Normal",
  14956. height: math.unit(6, "feet"),
  14957. default: true
  14958. },
  14959. ]
  14960. ))
  14961. characterMakers.push(() => makeCharacter(
  14962. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14963. {
  14964. eevee: {
  14965. height: math.unit(2 + 10 / 12, "feet"),
  14966. weight: math.unit(86, "lb"),
  14967. name: "Malgam",
  14968. image: {
  14969. source: "./media/characters/malgam/eevee.svg",
  14970. extra: 218 / 180,
  14971. bottom: 0.2
  14972. }
  14973. },
  14974. sylveon: {
  14975. height: math.unit(4, "feet"),
  14976. weight: math.unit(101, "lb"),
  14977. name: "Future Malgam",
  14978. rename: true,
  14979. image: {
  14980. source: "./media/characters/malgam/sylveon.svg",
  14981. extra: 371 / 325,
  14982. bottom: 0.015
  14983. }
  14984. },
  14985. gigantamax: {
  14986. height: math.unit(50, "feet"),
  14987. name: "Gigantamax Malgam",
  14988. rename: true,
  14989. image: {
  14990. source: "./media/characters/malgam/gigantamax.svg"
  14991. }
  14992. },
  14993. },
  14994. [
  14995. {
  14996. name: "Normal",
  14997. height: math.unit(2 + 10 / 12, "feet"),
  14998. default: true
  14999. },
  15000. ]
  15001. ))
  15002. characterMakers.push(() => makeCharacter(
  15003. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15004. {
  15005. front: {
  15006. height: math.unit(5 + 11 / 12, "feet"),
  15007. weight: math.unit(188, "lb"),
  15008. name: "Front",
  15009. image: {
  15010. source: "./media/characters/fleur/front.svg",
  15011. extra: 309 / 283,
  15012. bottom: 0.007
  15013. }
  15014. },
  15015. },
  15016. [
  15017. {
  15018. name: "Normal",
  15019. height: math.unit(5 + 11 / 12, "feet"),
  15020. default: true
  15021. },
  15022. ]
  15023. ))
  15024. characterMakers.push(() => makeCharacter(
  15025. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15026. {
  15027. front: {
  15028. height: math.unit(5 + 4 / 12, "feet"),
  15029. weight: math.unit(122, "lb"),
  15030. name: "Front",
  15031. image: {
  15032. source: "./media/characters/jude/front.svg",
  15033. extra: 288 / 273,
  15034. bottom: 0.03
  15035. }
  15036. },
  15037. },
  15038. [
  15039. {
  15040. name: "Normal",
  15041. height: math.unit(5 + 4 / 12, "feet"),
  15042. default: true
  15043. },
  15044. ]
  15045. ))
  15046. characterMakers.push(() => makeCharacter(
  15047. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15048. {
  15049. front: {
  15050. height: math.unit(5 + 11 / 12, "feet"),
  15051. weight: math.unit(190, "lb"),
  15052. name: "Front",
  15053. image: {
  15054. source: "./media/characters/seara/front.svg",
  15055. extra: 1,
  15056. bottom: 0.05
  15057. }
  15058. },
  15059. },
  15060. [
  15061. {
  15062. name: "Normal",
  15063. height: math.unit(5 + 11 / 12, "feet"),
  15064. default: true
  15065. },
  15066. ]
  15067. ))
  15068. characterMakers.push(() => makeCharacter(
  15069. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15070. {
  15071. front: {
  15072. height: math.unit(16 + 5 / 12, "feet"),
  15073. weight: math.unit(524, "lb"),
  15074. name: "Front",
  15075. image: {
  15076. source: "./media/characters/caspian/front.svg",
  15077. extra: 1,
  15078. bottom: 0.04
  15079. }
  15080. },
  15081. },
  15082. [
  15083. {
  15084. name: "Normal",
  15085. height: math.unit(16 + 5 / 12, "feet"),
  15086. default: true
  15087. },
  15088. ]
  15089. ))
  15090. characterMakers.push(() => makeCharacter(
  15091. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15092. {
  15093. front: {
  15094. height: math.unit(5 + 7 / 12, "feet"),
  15095. weight: math.unit(170, "lb"),
  15096. name: "Front",
  15097. image: {
  15098. source: "./media/characters/mika/front.svg",
  15099. extra: 1,
  15100. bottom: 0.016
  15101. }
  15102. },
  15103. },
  15104. [
  15105. {
  15106. name: "Normal",
  15107. height: math.unit(5 + 7 / 12, "feet"),
  15108. default: true
  15109. },
  15110. ]
  15111. ))
  15112. characterMakers.push(() => makeCharacter(
  15113. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15114. {
  15115. front: {
  15116. height: math.unit(6 + 2 / 12, "feet"),
  15117. weight: math.unit(268, "lb"),
  15118. name: "Front",
  15119. image: {
  15120. source: "./media/characters/sol/front.svg",
  15121. extra: 247 / 231,
  15122. bottom: 0.05
  15123. }
  15124. },
  15125. },
  15126. [
  15127. {
  15128. name: "Normal",
  15129. height: math.unit(6 + 2 / 12, "feet"),
  15130. default: true
  15131. },
  15132. ]
  15133. ))
  15134. characterMakers.push(() => makeCharacter(
  15135. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15136. {
  15137. buizel: {
  15138. height: math.unit(2 + 5 / 12, "feet"),
  15139. weight: math.unit(87, "lb"),
  15140. name: "Buizel",
  15141. image: {
  15142. source: "./media/characters/umiko/buizel.svg",
  15143. extra: 172 / 157,
  15144. bottom: 0.01
  15145. }
  15146. },
  15147. floatzel: {
  15148. height: math.unit(5 + 9 / 12, "feet"),
  15149. weight: math.unit(250, "lb"),
  15150. name: "Floatzel",
  15151. image: {
  15152. source: "./media/characters/umiko/floatzel.svg",
  15153. extra: 262 / 248
  15154. }
  15155. },
  15156. },
  15157. [
  15158. {
  15159. name: "Normal",
  15160. height: math.unit(2 + 5 / 12, "feet"),
  15161. default: true
  15162. },
  15163. ]
  15164. ))
  15165. characterMakers.push(() => makeCharacter(
  15166. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15167. {
  15168. front: {
  15169. height: math.unit(6 + 2 / 12, "feet"),
  15170. weight: math.unit(146, "lb"),
  15171. name: "Front",
  15172. image: {
  15173. source: "./media/characters/iliac/front.svg",
  15174. extra: 389 / 365,
  15175. bottom: 0.035
  15176. }
  15177. },
  15178. },
  15179. [
  15180. {
  15181. name: "Normal",
  15182. height: math.unit(6 + 2 / 12, "feet"),
  15183. default: true
  15184. },
  15185. ]
  15186. ))
  15187. characterMakers.push(() => makeCharacter(
  15188. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15189. {
  15190. front: {
  15191. height: math.unit(6, "feet"),
  15192. weight: math.unit(170, "lb"),
  15193. name: "Front",
  15194. image: {
  15195. source: "./media/characters/topaz/front.svg",
  15196. extra: 317 / 303,
  15197. bottom: 0.055
  15198. }
  15199. },
  15200. },
  15201. [
  15202. {
  15203. name: "Normal",
  15204. height: math.unit(6, "feet"),
  15205. default: true
  15206. },
  15207. ]
  15208. ))
  15209. characterMakers.push(() => makeCharacter(
  15210. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15211. {
  15212. front: {
  15213. height: math.unit(5 + 11 / 12, "feet"),
  15214. weight: math.unit(144, "lb"),
  15215. name: "Front",
  15216. image: {
  15217. source: "./media/characters/gabriel/front.svg",
  15218. extra: 285 / 262,
  15219. bottom: 0.004
  15220. }
  15221. },
  15222. },
  15223. [
  15224. {
  15225. name: "Normal",
  15226. height: math.unit(5 + 11 / 12, "feet"),
  15227. default: true
  15228. },
  15229. ]
  15230. ))
  15231. characterMakers.push(() => makeCharacter(
  15232. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15233. {
  15234. side: {
  15235. height: math.unit(6 + 5 / 12, "feet"),
  15236. weight: math.unit(300, "lb"),
  15237. name: "Side",
  15238. image: {
  15239. source: "./media/characters/tempest-suicune/side.svg",
  15240. extra: 195 / 154,
  15241. bottom: 0.04
  15242. }
  15243. },
  15244. },
  15245. [
  15246. {
  15247. name: "Normal",
  15248. height: math.unit(6 + 5 / 12, "feet"),
  15249. default: true
  15250. },
  15251. ]
  15252. ))
  15253. characterMakers.push(() => makeCharacter(
  15254. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15255. {
  15256. front: {
  15257. height: math.unit(7 + 2 / 12, "feet"),
  15258. weight: math.unit(322, "lb"),
  15259. name: "Front",
  15260. image: {
  15261. source: "./media/characters/vulcan/front.svg",
  15262. extra: 154 / 147,
  15263. bottom: 0.04
  15264. }
  15265. },
  15266. },
  15267. [
  15268. {
  15269. name: "Normal",
  15270. height: math.unit(7 + 2 / 12, "feet"),
  15271. default: true
  15272. },
  15273. ]
  15274. ))
  15275. characterMakers.push(() => makeCharacter(
  15276. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15277. {
  15278. front: {
  15279. height: math.unit(5 + 10 / 12, "feet"),
  15280. weight: math.unit(264, "lb"),
  15281. name: "Front",
  15282. image: {
  15283. source: "./media/characters/gault/front.svg",
  15284. extra: 161 / 140,
  15285. bottom: 0.028
  15286. }
  15287. },
  15288. },
  15289. [
  15290. {
  15291. name: "Normal",
  15292. height: math.unit(5 + 10 / 12, "feet"),
  15293. default: true
  15294. },
  15295. ]
  15296. ))
  15297. characterMakers.push(() => makeCharacter(
  15298. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15299. {
  15300. front: {
  15301. height: math.unit(6, "feet"),
  15302. weight: math.unit(150, "lb"),
  15303. name: "Front",
  15304. image: {
  15305. source: "./media/characters/shard/front.svg",
  15306. extra: 273 / 238,
  15307. bottom: 0.02
  15308. }
  15309. },
  15310. },
  15311. [
  15312. {
  15313. name: "Normal",
  15314. height: math.unit(3 + 6 / 12, "feet"),
  15315. default: true
  15316. },
  15317. ]
  15318. ))
  15319. characterMakers.push(() => makeCharacter(
  15320. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15321. {
  15322. front: {
  15323. height: math.unit(5 + 11 / 12, "feet"),
  15324. weight: math.unit(146, "lb"),
  15325. name: "Front",
  15326. image: {
  15327. source: "./media/characters/ashe/front.svg",
  15328. extra: 400 / 373,
  15329. bottom: 0.01
  15330. }
  15331. },
  15332. },
  15333. [
  15334. {
  15335. name: "Normal",
  15336. height: math.unit(5 + 11 / 12, "feet"),
  15337. default: true
  15338. },
  15339. ]
  15340. ))
  15341. characterMakers.push(() => makeCharacter(
  15342. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15343. {
  15344. front: {
  15345. height: math.unit(5 + 5 / 12, "feet"),
  15346. weight: math.unit(135, "lb"),
  15347. name: "Front",
  15348. image: {
  15349. source: "./media/characters/beatrix/front.svg",
  15350. extra: 392 / 379,
  15351. bottom: 0.01
  15352. }
  15353. },
  15354. },
  15355. [
  15356. {
  15357. name: "Normal",
  15358. height: math.unit(6, "feet"),
  15359. default: true
  15360. },
  15361. ]
  15362. ))
  15363. characterMakers.push(() => makeCharacter(
  15364. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15365. {
  15366. front: {
  15367. height: math.unit(6, "feet"),
  15368. weight: math.unit(150, "lb"),
  15369. name: "Front",
  15370. image: {
  15371. source: "./media/characters/ignatius/front.svg",
  15372. extra: 245 / 222,
  15373. bottom: 0.01
  15374. }
  15375. },
  15376. },
  15377. [
  15378. {
  15379. name: "Normal",
  15380. height: math.unit(5 + 5 / 12, "feet"),
  15381. default: true
  15382. },
  15383. ]
  15384. ))
  15385. characterMakers.push(() => makeCharacter(
  15386. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15387. {
  15388. front: {
  15389. height: math.unit(6 + 2 / 12, "feet"),
  15390. weight: math.unit(138, "lb"),
  15391. name: "Front",
  15392. image: {
  15393. source: "./media/characters/mei-li/front.svg",
  15394. extra: 237 / 229,
  15395. bottom: 0.03
  15396. }
  15397. },
  15398. },
  15399. [
  15400. {
  15401. name: "Normal",
  15402. height: math.unit(6 + 2 / 12, "feet"),
  15403. default: true
  15404. },
  15405. ]
  15406. ))
  15407. characterMakers.push(() => makeCharacter(
  15408. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15409. {
  15410. front: {
  15411. height: math.unit(2 + 4 / 12, "feet"),
  15412. weight: math.unit(62, "lb"),
  15413. name: "Front",
  15414. image: {
  15415. source: "./media/characters/puru/front.svg",
  15416. extra: 206 / 149,
  15417. bottom: 0.06
  15418. }
  15419. },
  15420. },
  15421. [
  15422. {
  15423. name: "Normal",
  15424. height: math.unit(2 + 4 / 12, "feet"),
  15425. default: true
  15426. },
  15427. ]
  15428. ))
  15429. characterMakers.push(() => makeCharacter(
  15430. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15431. {
  15432. anthro: {
  15433. height: math.unit(5 + 8/12, "feet"),
  15434. weight: math.unit(200, "lb"),
  15435. energyNeed: math.unit(2000, "kcal"),
  15436. name: "Anthro",
  15437. image: {
  15438. source: "./media/characters/kee/anthro.svg",
  15439. extra: 3251/3184,
  15440. bottom: 250/3501
  15441. }
  15442. },
  15443. taur: {
  15444. height: math.unit(11, "feet"),
  15445. weight: math.unit(500, "lb"),
  15446. energyNeed: math.unit(5000, "kcal"),
  15447. name: "Taur",
  15448. image: {
  15449. source: "./media/characters/kee/taur.svg",
  15450. extra: 1362/1320,
  15451. bottom: 83/1445
  15452. }
  15453. },
  15454. },
  15455. [
  15456. {
  15457. name: "Normal",
  15458. height: math.unit(5 + 8/12, "feet"),
  15459. default: true
  15460. },
  15461. {
  15462. name: "Macro",
  15463. height: math.unit(35, "feet")
  15464. },
  15465. ]
  15466. ))
  15467. characterMakers.push(() => makeCharacter(
  15468. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15469. {
  15470. anthro: {
  15471. height: math.unit(7, "feet"),
  15472. weight: math.unit(190, "lb"),
  15473. name: "Anthro",
  15474. image: {
  15475. source: "./media/characters/cobalt-dracha/anthro.svg",
  15476. extra: 231 / 225,
  15477. bottom: 0.04
  15478. }
  15479. },
  15480. feral: {
  15481. height: math.unit(9 + 7 / 12, "feet"),
  15482. weight: math.unit(294, "lb"),
  15483. name: "Feral",
  15484. image: {
  15485. source: "./media/characters/cobalt-dracha/feral.svg",
  15486. extra: 692 / 633,
  15487. bottom: 0.05
  15488. }
  15489. },
  15490. },
  15491. [
  15492. {
  15493. name: "Normal",
  15494. height: math.unit(7, "feet"),
  15495. default: true
  15496. },
  15497. ]
  15498. ))
  15499. characterMakers.push(() => makeCharacter(
  15500. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15501. {
  15502. fallen: {
  15503. height: math.unit(11 + 8 / 12, "feet"),
  15504. weight: math.unit(485, "lb"),
  15505. name: "Java (Fallen)",
  15506. rename: true,
  15507. image: {
  15508. source: "./media/characters/java/fallen.svg",
  15509. extra: 226 / 208,
  15510. bottom: 0.005
  15511. }
  15512. },
  15513. godkin: {
  15514. height: math.unit(10 + 6 / 12, "feet"),
  15515. weight: math.unit(328, "lb"),
  15516. name: "Java (Godkin)",
  15517. rename: true,
  15518. image: {
  15519. source: "./media/characters/java/godkin.svg",
  15520. extra: 270 / 262,
  15521. bottom: 0.02
  15522. }
  15523. },
  15524. },
  15525. [
  15526. {
  15527. name: "Normal",
  15528. height: math.unit(11 + 8 / 12, "feet"),
  15529. default: true
  15530. },
  15531. ]
  15532. ))
  15533. characterMakers.push(() => makeCharacter(
  15534. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15535. {
  15536. front: {
  15537. height: math.unit(7 + 8 / 12, "feet"),
  15538. weight: math.unit(320, "lb"),
  15539. name: "Front",
  15540. image: {
  15541. source: "./media/characters/skoll/front.svg",
  15542. extra: 232 / 220,
  15543. bottom: 0.02
  15544. }
  15545. },
  15546. },
  15547. [
  15548. {
  15549. name: "Normal",
  15550. height: math.unit(7 + 8 / 12, "feet"),
  15551. default: true
  15552. },
  15553. ]
  15554. ))
  15555. characterMakers.push(() => makeCharacter(
  15556. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15557. {
  15558. front: {
  15559. height: math.unit(5 + 9 / 12, "feet"),
  15560. weight: math.unit(170, "lb"),
  15561. name: "Front",
  15562. image: {
  15563. source: "./media/characters/purna/front.svg",
  15564. extra: 239 / 229,
  15565. bottom: 0.01
  15566. }
  15567. },
  15568. },
  15569. [
  15570. {
  15571. name: "Normal",
  15572. height: math.unit(5 + 9 / 12, "feet"),
  15573. default: true
  15574. },
  15575. ]
  15576. ))
  15577. characterMakers.push(() => makeCharacter(
  15578. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15579. {
  15580. front: {
  15581. height: math.unit(5 + 9 / 12, "feet"),
  15582. weight: math.unit(142, "lb"),
  15583. name: "Front",
  15584. image: {
  15585. source: "./media/characters/kuva/front.svg",
  15586. extra: 281 / 271,
  15587. bottom: 0.006
  15588. }
  15589. },
  15590. },
  15591. [
  15592. {
  15593. name: "Normal",
  15594. height: math.unit(5 + 9 / 12, "feet"),
  15595. default: true
  15596. },
  15597. ]
  15598. ))
  15599. characterMakers.push(() => makeCharacter(
  15600. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15601. {
  15602. anthro: {
  15603. height: math.unit(9 + 2 / 12, "feet"),
  15604. weight: math.unit(270, "lb"),
  15605. name: "Anthro",
  15606. image: {
  15607. source: "./media/characters/embra/anthro.svg",
  15608. extra: 200 / 187,
  15609. bottom: 0.02
  15610. }
  15611. },
  15612. feral: {
  15613. height: math.unit(18 + 8 / 12, "feet"),
  15614. weight: math.unit(576, "lb"),
  15615. name: "Feral",
  15616. image: {
  15617. source: "./media/characters/embra/feral.svg",
  15618. extra: 152 / 137,
  15619. bottom: 0.037
  15620. }
  15621. },
  15622. },
  15623. [
  15624. {
  15625. name: "Normal",
  15626. height: math.unit(9 + 2 / 12, "feet"),
  15627. default: true
  15628. },
  15629. ]
  15630. ))
  15631. characterMakers.push(() => makeCharacter(
  15632. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15633. {
  15634. anthro: {
  15635. height: math.unit(10 + 9 / 12, "feet"),
  15636. weight: math.unit(224, "lb"),
  15637. name: "Anthro",
  15638. image: {
  15639. source: "./media/characters/grottos/anthro.svg",
  15640. extra: 350 / 332,
  15641. bottom: 0.045
  15642. }
  15643. },
  15644. feral: {
  15645. height: math.unit(20 + 7 / 12, "feet"),
  15646. weight: math.unit(629, "lb"),
  15647. name: "Feral",
  15648. image: {
  15649. source: "./media/characters/grottos/feral.svg",
  15650. extra: 207 / 190,
  15651. bottom: 0.05
  15652. }
  15653. },
  15654. },
  15655. [
  15656. {
  15657. name: "Normal",
  15658. height: math.unit(10 + 9 / 12, "feet"),
  15659. default: true
  15660. },
  15661. ]
  15662. ))
  15663. characterMakers.push(() => makeCharacter(
  15664. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15665. {
  15666. anthro: {
  15667. height: math.unit(9 + 6 / 12, "feet"),
  15668. weight: math.unit(298, "lb"),
  15669. name: "Anthro",
  15670. image: {
  15671. source: "./media/characters/frifna/anthro.svg",
  15672. extra: 282 / 269,
  15673. bottom: 0.015
  15674. }
  15675. },
  15676. feral: {
  15677. height: math.unit(16 + 2 / 12, "feet"),
  15678. weight: math.unit(624, "lb"),
  15679. name: "Feral",
  15680. image: {
  15681. source: "./media/characters/frifna/feral.svg"
  15682. }
  15683. },
  15684. },
  15685. [
  15686. {
  15687. name: "Normal",
  15688. height: math.unit(9 + 6 / 12, "feet"),
  15689. default: true
  15690. },
  15691. ]
  15692. ))
  15693. characterMakers.push(() => makeCharacter(
  15694. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15695. {
  15696. front: {
  15697. height: math.unit(6 + 2 / 12, "feet"),
  15698. weight: math.unit(168, "lb"),
  15699. name: "Front",
  15700. image: {
  15701. source: "./media/characters/elise/front.svg",
  15702. extra: 276 / 271
  15703. }
  15704. },
  15705. },
  15706. [
  15707. {
  15708. name: "Normal",
  15709. height: math.unit(6 + 2 / 12, "feet"),
  15710. default: true
  15711. },
  15712. ]
  15713. ))
  15714. characterMakers.push(() => makeCharacter(
  15715. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15716. {
  15717. front: {
  15718. height: math.unit(5 + 10 / 12, "feet"),
  15719. weight: math.unit(210, "lb"),
  15720. name: "Front",
  15721. image: {
  15722. source: "./media/characters/glade/front.svg",
  15723. extra: 258 / 247,
  15724. bottom: 0.008
  15725. }
  15726. },
  15727. },
  15728. [
  15729. {
  15730. name: "Normal",
  15731. height: math.unit(5 + 10 / 12, "feet"),
  15732. default: true
  15733. },
  15734. ]
  15735. ))
  15736. characterMakers.push(() => makeCharacter(
  15737. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15738. {
  15739. front: {
  15740. height: math.unit(5 + 10 / 12, "feet"),
  15741. weight: math.unit(129, "lb"),
  15742. name: "Front",
  15743. image: {
  15744. source: "./media/characters/rina/front.svg",
  15745. extra: 266 / 255,
  15746. bottom: 0.005
  15747. }
  15748. },
  15749. },
  15750. [
  15751. {
  15752. name: "Normal",
  15753. height: math.unit(5 + 10 / 12, "feet"),
  15754. default: true
  15755. },
  15756. ]
  15757. ))
  15758. characterMakers.push(() => makeCharacter(
  15759. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15760. {
  15761. front: {
  15762. height: math.unit(6 + 1 / 12, "feet"),
  15763. weight: math.unit(192, "lb"),
  15764. name: "Front",
  15765. image: {
  15766. source: "./media/characters/veronica/front.svg",
  15767. extra: 319 / 309,
  15768. bottom: 0.005
  15769. }
  15770. },
  15771. },
  15772. [
  15773. {
  15774. name: "Normal",
  15775. height: math.unit(6 + 1 / 12, "feet"),
  15776. default: true
  15777. },
  15778. ]
  15779. ))
  15780. characterMakers.push(() => makeCharacter(
  15781. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15782. {
  15783. front: {
  15784. height: math.unit(9 + 3 / 12, "feet"),
  15785. weight: math.unit(1100, "lb"),
  15786. name: "Front",
  15787. image: {
  15788. source: "./media/characters/braxton/front.svg",
  15789. extra: 1057 / 984,
  15790. bottom: 0.05
  15791. }
  15792. },
  15793. },
  15794. [
  15795. {
  15796. name: "Normal",
  15797. height: math.unit(9 + 3 / 12, "feet")
  15798. },
  15799. {
  15800. name: "Giant",
  15801. height: math.unit(300, "feet"),
  15802. default: true
  15803. },
  15804. {
  15805. name: "Macro",
  15806. height: math.unit(700, "feet")
  15807. },
  15808. {
  15809. name: "Megamacro",
  15810. height: math.unit(6000, "feet")
  15811. },
  15812. ]
  15813. ))
  15814. characterMakers.push(() => makeCharacter(
  15815. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15816. {
  15817. front: {
  15818. height: math.unit(6 + 7 / 12, "feet"),
  15819. weight: math.unit(150, "lb"),
  15820. name: "Front",
  15821. image: {
  15822. source: "./media/characters/blue-feyonics/front.svg",
  15823. extra: 1403 / 1306,
  15824. bottom: 0.047
  15825. }
  15826. },
  15827. },
  15828. [
  15829. {
  15830. name: "Normal",
  15831. height: math.unit(6 + 7 / 12, "feet"),
  15832. default: true
  15833. },
  15834. ]
  15835. ))
  15836. characterMakers.push(() => makeCharacter(
  15837. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15838. {
  15839. front: {
  15840. height: math.unit(1.8, "meters"),
  15841. weight: math.unit(60, "kg"),
  15842. name: "Front",
  15843. image: {
  15844. source: "./media/characters/maxwell/front.svg",
  15845. extra: 2060 / 1873
  15846. }
  15847. },
  15848. },
  15849. [
  15850. {
  15851. name: "Micro",
  15852. height: math.unit(1, "mm")
  15853. },
  15854. {
  15855. name: "Normal",
  15856. height: math.unit(1.8, "meter"),
  15857. default: true
  15858. },
  15859. {
  15860. name: "Macro",
  15861. height: math.unit(30, "meters")
  15862. },
  15863. {
  15864. name: "Megamacro",
  15865. height: math.unit(10, "km")
  15866. },
  15867. ]
  15868. ))
  15869. characterMakers.push(() => makeCharacter(
  15870. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15871. {
  15872. front: {
  15873. height: math.unit(6, "feet"),
  15874. weight: math.unit(150, "lb"),
  15875. name: "Front",
  15876. image: {
  15877. source: "./media/characters/jack/front.svg",
  15878. extra: 1754 / 1640,
  15879. bottom: 0.01
  15880. }
  15881. },
  15882. },
  15883. [
  15884. {
  15885. name: "Normal",
  15886. height: math.unit(80000, "feet"),
  15887. default: true
  15888. },
  15889. {
  15890. name: "Max size",
  15891. height: math.unit(10, "lightyears")
  15892. },
  15893. ]
  15894. ))
  15895. characterMakers.push(() => makeCharacter(
  15896. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15897. {
  15898. urban: {
  15899. height: math.unit(5, "feet"),
  15900. weight: math.unit(240, "lb"),
  15901. name: "Urban",
  15902. image: {
  15903. source: "./media/characters/cafat/urban.svg",
  15904. extra: 1223/1126,
  15905. bottom: 205/1428
  15906. }
  15907. },
  15908. summer: {
  15909. height: math.unit(5, "feet"),
  15910. weight: math.unit(240, "lb"),
  15911. name: "Summer",
  15912. image: {
  15913. source: "./media/characters/cafat/summer.svg",
  15914. extra: 1223/1126,
  15915. bottom: 205/1428
  15916. }
  15917. },
  15918. winter: {
  15919. height: math.unit(5, "feet"),
  15920. weight: math.unit(240, "lb"),
  15921. name: "Winter",
  15922. image: {
  15923. source: "./media/characters/cafat/winter.svg",
  15924. extra: 1223/1126,
  15925. bottom: 205/1428
  15926. }
  15927. },
  15928. lingerie: {
  15929. height: math.unit(5, "feet"),
  15930. weight: math.unit(240, "lb"),
  15931. name: "Lingerie",
  15932. image: {
  15933. source: "./media/characters/cafat/lingerie.svg",
  15934. extra: 1223/1126,
  15935. bottom: 205/1428
  15936. }
  15937. },
  15938. upright: {
  15939. height: math.unit(6.3, "feet"),
  15940. weight: math.unit(240, "lb"),
  15941. name: "Upright",
  15942. image: {
  15943. source: "./media/characters/cafat/upright.svg",
  15944. bottom: 0.01
  15945. }
  15946. },
  15947. uprightFull: {
  15948. height: math.unit(6.3, "feet"),
  15949. weight: math.unit(240, "lb"),
  15950. name: "Upright (Full)",
  15951. image: {
  15952. source: "./media/characters/cafat/upright-full.svg",
  15953. bottom: 0.01
  15954. }
  15955. },
  15956. },
  15957. [
  15958. {
  15959. name: "Small",
  15960. height: math.unit(5, "feet"),
  15961. default: true
  15962. },
  15963. {
  15964. name: "Large",
  15965. height: math.unit(13, "feet")
  15966. },
  15967. ]
  15968. ))
  15969. characterMakers.push(() => makeCharacter(
  15970. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15971. {
  15972. front: {
  15973. height: math.unit(6, "feet"),
  15974. weight: math.unit(150, "lb"),
  15975. name: "Front",
  15976. image: {
  15977. source: "./media/characters/verin-raharra/front.svg",
  15978. extra: 5019 / 4835,
  15979. bottom: 0.023
  15980. }
  15981. },
  15982. },
  15983. [
  15984. {
  15985. name: "Normal",
  15986. height: math.unit(7 + 5 / 12, "feet"),
  15987. default: true
  15988. },
  15989. {
  15990. name: "Upsized",
  15991. height: math.unit(20, "feet")
  15992. },
  15993. ]
  15994. ))
  15995. characterMakers.push(() => makeCharacter(
  15996. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15997. {
  15998. front: {
  15999. height: math.unit(7, "feet"),
  16000. weight: math.unit(230, "lb"),
  16001. name: "Front",
  16002. image: {
  16003. source: "./media/characters/nakata/front.svg",
  16004. extra: 1.005,
  16005. bottom: 0.01
  16006. }
  16007. },
  16008. },
  16009. [
  16010. {
  16011. name: "Normal",
  16012. height: math.unit(7, "feet"),
  16013. default: true
  16014. },
  16015. {
  16016. name: "Big",
  16017. height: math.unit(14, "feet")
  16018. },
  16019. {
  16020. name: "Macro",
  16021. height: math.unit(400, "feet")
  16022. },
  16023. ]
  16024. ))
  16025. characterMakers.push(() => makeCharacter(
  16026. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16027. {
  16028. front: {
  16029. height: math.unit(4.91, "feet"),
  16030. weight: math.unit(100, "lb"),
  16031. name: "Front",
  16032. image: {
  16033. source: "./media/characters/lily/front.svg",
  16034. extra: 1585 / 1415,
  16035. bottom: 0.02
  16036. }
  16037. },
  16038. },
  16039. [
  16040. {
  16041. name: "Normal",
  16042. height: math.unit(4.91, "feet"),
  16043. default: true
  16044. },
  16045. ]
  16046. ))
  16047. characterMakers.push(() => makeCharacter(
  16048. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16049. {
  16050. laying: {
  16051. height: math.unit(4 + 4 / 12, "feet"),
  16052. weight: math.unit(600, "lb"),
  16053. name: "Laying",
  16054. image: {
  16055. source: "./media/characters/sheila/laying.svg",
  16056. extra: 1333 / 1265,
  16057. bottom: 0.16
  16058. }
  16059. },
  16060. },
  16061. [
  16062. {
  16063. name: "Normal",
  16064. height: math.unit(4 + 4 / 12, "feet"),
  16065. default: true
  16066. },
  16067. ]
  16068. ))
  16069. characterMakers.push(() => makeCharacter(
  16070. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16071. {
  16072. front: {
  16073. height: math.unit(6, "feet"),
  16074. weight: math.unit(190, "lb"),
  16075. name: "Front",
  16076. image: {
  16077. source: "./media/characters/sax/front.svg",
  16078. extra: 1187 / 973,
  16079. bottom: 0.042
  16080. }
  16081. },
  16082. },
  16083. [
  16084. {
  16085. name: "Micro",
  16086. height: math.unit(4, "inches"),
  16087. default: true
  16088. },
  16089. ]
  16090. ))
  16091. characterMakers.push(() => makeCharacter(
  16092. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16093. {
  16094. front: {
  16095. height: math.unit(6, "feet"),
  16096. weight: math.unit(150, "lb"),
  16097. name: "Front",
  16098. image: {
  16099. source: "./media/characters/pandora/front.svg",
  16100. extra: 2720 / 2556,
  16101. bottom: 0.015
  16102. }
  16103. },
  16104. back: {
  16105. height: math.unit(6, "feet"),
  16106. weight: math.unit(150, "lb"),
  16107. name: "Back",
  16108. image: {
  16109. source: "./media/characters/pandora/back.svg",
  16110. extra: 2720 / 2556,
  16111. bottom: 0.01
  16112. }
  16113. },
  16114. beans: {
  16115. height: math.unit(6 / 8, "feet"),
  16116. name: "Beans",
  16117. image: {
  16118. source: "./media/characters/pandora/beans.svg"
  16119. }
  16120. },
  16121. collar: {
  16122. height: math.unit(0.31, "feet"),
  16123. name: "Collar",
  16124. image: {
  16125. source: "./media/characters/pandora/collar.svg"
  16126. }
  16127. },
  16128. skirt: {
  16129. height: math.unit(6, "feet"),
  16130. weight: math.unit(150, "lb"),
  16131. name: "Skirt",
  16132. image: {
  16133. source: "./media/characters/pandora/skirt.svg",
  16134. extra: 1622 / 1525,
  16135. bottom: 0.015
  16136. }
  16137. },
  16138. hoodie: {
  16139. height: math.unit(6, "feet"),
  16140. weight: math.unit(150, "lb"),
  16141. name: "Hoodie",
  16142. image: {
  16143. source: "./media/characters/pandora/hoodie.svg",
  16144. extra: 1622 / 1525,
  16145. bottom: 0.015
  16146. }
  16147. },
  16148. casual: {
  16149. height: math.unit(6, "feet"),
  16150. weight: math.unit(150, "lb"),
  16151. name: "Casual",
  16152. image: {
  16153. source: "./media/characters/pandora/casual.svg",
  16154. extra: 1622 / 1525,
  16155. bottom: 0.015
  16156. }
  16157. },
  16158. },
  16159. [
  16160. {
  16161. name: "Normal",
  16162. height: math.unit(6, "feet")
  16163. },
  16164. {
  16165. name: "Big Steppy",
  16166. height: math.unit(1, "km"),
  16167. default: true
  16168. },
  16169. {
  16170. name: "Galactic Steppy",
  16171. height: math.unit(2, "gigameters")
  16172. },
  16173. ]
  16174. ))
  16175. characterMakers.push(() => makeCharacter(
  16176. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16177. {
  16178. side: {
  16179. height: math.unit(10, "feet"),
  16180. weight: math.unit(800, "kg"),
  16181. name: "Side",
  16182. image: {
  16183. source: "./media/characters/venio-darcony/side.svg",
  16184. extra: 1373 / 1003,
  16185. bottom: 0.037
  16186. }
  16187. },
  16188. front: {
  16189. height: math.unit(19, "feet"),
  16190. weight: math.unit(800, "kg"),
  16191. name: "Front",
  16192. image: {
  16193. source: "./media/characters/venio-darcony/front.svg"
  16194. }
  16195. },
  16196. back: {
  16197. height: math.unit(19, "feet"),
  16198. weight: math.unit(800, "kg"),
  16199. name: "Back",
  16200. image: {
  16201. source: "./media/characters/venio-darcony/back.svg"
  16202. }
  16203. },
  16204. sideNsfw: {
  16205. height: math.unit(10, "feet"),
  16206. weight: math.unit(800, "kg"),
  16207. name: "Side (NSFW)",
  16208. image: {
  16209. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16210. extra: 1373 / 1003,
  16211. bottom: 0.037
  16212. }
  16213. },
  16214. frontNsfw: {
  16215. height: math.unit(19, "feet"),
  16216. weight: math.unit(800, "kg"),
  16217. name: "Front (NSFW)",
  16218. image: {
  16219. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16220. }
  16221. },
  16222. backNsfw: {
  16223. height: math.unit(19, "feet"),
  16224. weight: math.unit(800, "kg"),
  16225. name: "Back (NSFW)",
  16226. image: {
  16227. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16228. }
  16229. },
  16230. sideArmored: {
  16231. height: math.unit(10, "feet"),
  16232. weight: math.unit(800, "kg"),
  16233. name: "Side (Armored)",
  16234. image: {
  16235. source: "./media/characters/venio-darcony/side-armored.svg",
  16236. extra: 1373 / 1003,
  16237. bottom: 0.037
  16238. }
  16239. },
  16240. frontArmored: {
  16241. height: math.unit(19, "feet"),
  16242. weight: math.unit(900, "kg"),
  16243. name: "Front (Armored)",
  16244. image: {
  16245. source: "./media/characters/venio-darcony/front-armored.svg"
  16246. }
  16247. },
  16248. backArmored: {
  16249. height: math.unit(19, "feet"),
  16250. weight: math.unit(900, "kg"),
  16251. name: "Back (Armored)",
  16252. image: {
  16253. source: "./media/characters/venio-darcony/back-armored.svg"
  16254. }
  16255. },
  16256. sword: {
  16257. height: math.unit(10, "feet"),
  16258. weight: math.unit(50, "lb"),
  16259. name: "Sword",
  16260. image: {
  16261. source: "./media/characters/venio-darcony/sword.svg"
  16262. }
  16263. },
  16264. },
  16265. [
  16266. {
  16267. name: "Normal",
  16268. height: math.unit(10, "feet")
  16269. },
  16270. {
  16271. name: "Macro",
  16272. height: math.unit(130, "feet"),
  16273. default: true
  16274. },
  16275. {
  16276. name: "Macro+",
  16277. height: math.unit(240, "feet")
  16278. },
  16279. ]
  16280. ))
  16281. characterMakers.push(() => makeCharacter(
  16282. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16283. {
  16284. front: {
  16285. height: math.unit(6, "feet"),
  16286. weight: math.unit(150, "lb"),
  16287. name: "Front",
  16288. image: {
  16289. source: "./media/characters/veski/front.svg",
  16290. extra: 1299 / 1225,
  16291. bottom: 0.04
  16292. }
  16293. },
  16294. back: {
  16295. height: math.unit(6, "feet"),
  16296. weight: math.unit(150, "lb"),
  16297. name: "Back",
  16298. image: {
  16299. source: "./media/characters/veski/back.svg",
  16300. extra: 1299 / 1225,
  16301. bottom: 0.008
  16302. }
  16303. },
  16304. maw: {
  16305. height: math.unit(1.5 * 1.21, "feet"),
  16306. name: "Maw",
  16307. image: {
  16308. source: "./media/characters/veski/maw.svg"
  16309. }
  16310. },
  16311. },
  16312. [
  16313. {
  16314. name: "Macro",
  16315. height: math.unit(2, "km"),
  16316. default: true
  16317. },
  16318. ]
  16319. ))
  16320. characterMakers.push(() => makeCharacter(
  16321. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16322. {
  16323. front: {
  16324. height: math.unit(5 + 7 / 12, "feet"),
  16325. name: "Front",
  16326. image: {
  16327. source: "./media/characters/isabelle/front.svg",
  16328. extra: 2130 / 1976,
  16329. bottom: 0.05
  16330. }
  16331. },
  16332. },
  16333. [
  16334. {
  16335. name: "Supermicro",
  16336. height: math.unit(10, "micrometers")
  16337. },
  16338. {
  16339. name: "Micro",
  16340. height: math.unit(1, "inch")
  16341. },
  16342. {
  16343. name: "Tiny",
  16344. height: math.unit(5, "inches")
  16345. },
  16346. {
  16347. name: "Standard",
  16348. height: math.unit(5 + 7 / 12, "inches")
  16349. },
  16350. {
  16351. name: "Macro",
  16352. height: math.unit(80, "meters"),
  16353. default: true
  16354. },
  16355. {
  16356. name: "Megamacro",
  16357. height: math.unit(250, "meters")
  16358. },
  16359. {
  16360. name: "Gigamacro",
  16361. height: math.unit(5, "km")
  16362. },
  16363. {
  16364. name: "Cosmic",
  16365. height: math.unit(2.5e6, "miles")
  16366. },
  16367. ]
  16368. ))
  16369. characterMakers.push(() => makeCharacter(
  16370. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16371. {
  16372. front: {
  16373. height: math.unit(6, "feet"),
  16374. weight: math.unit(150, "lb"),
  16375. name: "Front",
  16376. image: {
  16377. source: "./media/characters/hanzo/front.svg",
  16378. extra: 374 / 344,
  16379. bottom: 0.02
  16380. }
  16381. },
  16382. },
  16383. [
  16384. {
  16385. name: "Normal",
  16386. height: math.unit(8, "feet"),
  16387. default: true
  16388. },
  16389. ]
  16390. ))
  16391. characterMakers.push(() => makeCharacter(
  16392. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16393. {
  16394. front: {
  16395. height: math.unit(7, "feet"),
  16396. weight: math.unit(130, "lb"),
  16397. name: "Front",
  16398. image: {
  16399. source: "./media/characters/anna/front.svg",
  16400. extra: 169 / 145,
  16401. bottom: 0.06
  16402. }
  16403. },
  16404. full: {
  16405. height: math.unit(4.96, "feet"),
  16406. weight: math.unit(220, "lb"),
  16407. name: "Full",
  16408. image: {
  16409. source: "./media/characters/anna/full.svg",
  16410. extra: 138 / 114,
  16411. bottom: 0.15
  16412. }
  16413. },
  16414. tongue: {
  16415. height: math.unit(2.53, "feet"),
  16416. name: "Tongue",
  16417. image: {
  16418. source: "./media/characters/anna/tongue.svg"
  16419. }
  16420. },
  16421. },
  16422. [
  16423. {
  16424. name: "Normal",
  16425. height: math.unit(7, "feet"),
  16426. default: true
  16427. },
  16428. ]
  16429. ))
  16430. characterMakers.push(() => makeCharacter(
  16431. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16432. {
  16433. front: {
  16434. height: math.unit(7, "feet"),
  16435. weight: math.unit(150, "lb"),
  16436. name: "Front",
  16437. image: {
  16438. source: "./media/characters/ian-corvid/front.svg",
  16439. extra: 150 / 142,
  16440. bottom: 0.02
  16441. }
  16442. },
  16443. back: {
  16444. height: math.unit(7, "feet"),
  16445. weight: math.unit(150, "lb"),
  16446. name: "Back",
  16447. image: {
  16448. source: "./media/characters/ian-corvid/back.svg",
  16449. extra: 150 / 143,
  16450. bottom: 0.01
  16451. }
  16452. },
  16453. stomping: {
  16454. height: math.unit(7, "feet"),
  16455. weight: math.unit(150, "lb"),
  16456. name: "Stomping",
  16457. image: {
  16458. source: "./media/characters/ian-corvid/stomping.svg",
  16459. extra: 76 / 72
  16460. }
  16461. },
  16462. sitting: {
  16463. height: math.unit(7 / 1.8, "feet"),
  16464. weight: math.unit(150, "lb"),
  16465. name: "Sitting",
  16466. image: {
  16467. source: "./media/characters/ian-corvid/sitting.svg",
  16468. extra: 1400 / 1269,
  16469. bottom: 0.15
  16470. }
  16471. },
  16472. },
  16473. [
  16474. {
  16475. name: "Tiny Microw",
  16476. height: math.unit(1, "inch")
  16477. },
  16478. {
  16479. name: "Microw",
  16480. height: math.unit(6, "inches")
  16481. },
  16482. {
  16483. name: "Crow",
  16484. height: math.unit(7 + 1 / 12, "feet"),
  16485. default: true
  16486. },
  16487. {
  16488. name: "Macrow",
  16489. height: math.unit(176, "feet")
  16490. },
  16491. ]
  16492. ))
  16493. characterMakers.push(() => makeCharacter(
  16494. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16495. {
  16496. front: {
  16497. height: math.unit(5 + 7 / 12, "feet"),
  16498. weight: math.unit(147, "lb"),
  16499. name: "Front",
  16500. image: {
  16501. source: "./media/characters/natalie-kellon/front.svg",
  16502. extra: 1214 / 1141,
  16503. bottom: 0.02
  16504. }
  16505. },
  16506. },
  16507. [
  16508. {
  16509. name: "Micro",
  16510. height: math.unit(1 / 16, "inch")
  16511. },
  16512. {
  16513. name: "Tiny",
  16514. height: math.unit(4, "inches")
  16515. },
  16516. {
  16517. name: "Normal",
  16518. height: math.unit(5 + 7 / 12, "feet"),
  16519. default: true
  16520. },
  16521. {
  16522. name: "Amazon",
  16523. height: math.unit(12, "feet")
  16524. },
  16525. {
  16526. name: "Giantess",
  16527. height: math.unit(160, "meters")
  16528. },
  16529. {
  16530. name: "Titaness",
  16531. height: math.unit(800, "meters")
  16532. },
  16533. ]
  16534. ))
  16535. characterMakers.push(() => makeCharacter(
  16536. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16537. {
  16538. front: {
  16539. height: math.unit(6, "feet"),
  16540. weight: math.unit(150, "lb"),
  16541. name: "Front",
  16542. image: {
  16543. source: "./media/characters/alluria/front.svg",
  16544. extra: 806 / 738,
  16545. bottom: 0.01
  16546. }
  16547. },
  16548. side: {
  16549. height: math.unit(6, "feet"),
  16550. weight: math.unit(150, "lb"),
  16551. name: "Side",
  16552. image: {
  16553. source: "./media/characters/alluria/side.svg",
  16554. extra: 800 / 750,
  16555. }
  16556. },
  16557. back: {
  16558. height: math.unit(6, "feet"),
  16559. weight: math.unit(150, "lb"),
  16560. name: "Back",
  16561. image: {
  16562. source: "./media/characters/alluria/back.svg",
  16563. extra: 806 / 738,
  16564. }
  16565. },
  16566. frontMaid: {
  16567. height: math.unit(6, "feet"),
  16568. weight: math.unit(150, "lb"),
  16569. name: "Front (Maid)",
  16570. image: {
  16571. source: "./media/characters/alluria/front-maid.svg",
  16572. extra: 806 / 738,
  16573. bottom: 0.01
  16574. }
  16575. },
  16576. sideMaid: {
  16577. height: math.unit(6, "feet"),
  16578. weight: math.unit(150, "lb"),
  16579. name: "Side (Maid)",
  16580. image: {
  16581. source: "./media/characters/alluria/side-maid.svg",
  16582. extra: 800 / 750,
  16583. bottom: 0.005
  16584. }
  16585. },
  16586. backMaid: {
  16587. height: math.unit(6, "feet"),
  16588. weight: math.unit(150, "lb"),
  16589. name: "Back (Maid)",
  16590. image: {
  16591. source: "./media/characters/alluria/back-maid.svg",
  16592. extra: 806 / 738,
  16593. }
  16594. },
  16595. },
  16596. [
  16597. {
  16598. name: "Micro",
  16599. height: math.unit(6, "inches"),
  16600. default: true
  16601. },
  16602. ]
  16603. ))
  16604. characterMakers.push(() => makeCharacter(
  16605. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16606. {
  16607. front: {
  16608. height: math.unit(6, "feet"),
  16609. weight: math.unit(150, "lb"),
  16610. name: "Front",
  16611. image: {
  16612. source: "./media/characters/kyle/front.svg",
  16613. extra: 1069 / 962,
  16614. bottom: 77.228 / 1727.45
  16615. }
  16616. },
  16617. },
  16618. [
  16619. {
  16620. name: "Macro",
  16621. height: math.unit(150, "feet"),
  16622. default: true
  16623. },
  16624. ]
  16625. ))
  16626. characterMakers.push(() => makeCharacter(
  16627. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16628. {
  16629. front: {
  16630. height: math.unit(6, "feet"),
  16631. weight: math.unit(300, "lb"),
  16632. name: "Front",
  16633. image: {
  16634. source: "./media/characters/duncan/front.svg",
  16635. extra: 1650 / 1482,
  16636. bottom: 0.05
  16637. }
  16638. },
  16639. },
  16640. [
  16641. {
  16642. name: "Macro",
  16643. height: math.unit(100, "feet"),
  16644. default: true
  16645. },
  16646. ]
  16647. ))
  16648. characterMakers.push(() => makeCharacter(
  16649. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16650. {
  16651. front: {
  16652. height: math.unit(5 + 4 / 12, "feet"),
  16653. weight: math.unit(220, "lb"),
  16654. name: "Front",
  16655. image: {
  16656. source: "./media/characters/memory/front.svg",
  16657. extra: 3641 / 3545,
  16658. bottom: 0.03
  16659. }
  16660. },
  16661. back: {
  16662. height: math.unit(5 + 4 / 12, "feet"),
  16663. weight: math.unit(220, "lb"),
  16664. name: "Back",
  16665. image: {
  16666. source: "./media/characters/memory/back.svg",
  16667. extra: 3641 / 3545,
  16668. bottom: 0.025
  16669. }
  16670. },
  16671. frontSkirt: {
  16672. height: math.unit(5 + 4 / 12, "feet"),
  16673. weight: math.unit(220, "lb"),
  16674. name: "Front (Skirt)",
  16675. image: {
  16676. source: "./media/characters/memory/front-skirt.svg",
  16677. extra: 3641 / 3545,
  16678. bottom: 0.03
  16679. }
  16680. },
  16681. frontDress: {
  16682. height: math.unit(5 + 4 / 12, "feet"),
  16683. weight: math.unit(220, "lb"),
  16684. name: "Front (Dress)",
  16685. image: {
  16686. source: "./media/characters/memory/front-dress.svg",
  16687. extra: 3641 / 3545,
  16688. bottom: 0.03
  16689. }
  16690. },
  16691. },
  16692. [
  16693. {
  16694. name: "Micro",
  16695. height: math.unit(6, "inches"),
  16696. default: true
  16697. },
  16698. {
  16699. name: "Normal",
  16700. height: math.unit(5 + 4 / 12, "feet")
  16701. },
  16702. ]
  16703. ))
  16704. characterMakers.push(() => makeCharacter(
  16705. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16706. {
  16707. front: {
  16708. height: math.unit(4 + 11 / 12, "feet"),
  16709. weight: math.unit(100, "lb"),
  16710. name: "Front",
  16711. image: {
  16712. source: "./media/characters/luno/front.svg",
  16713. extra: 1535 / 1487,
  16714. bottom: 0.03
  16715. }
  16716. },
  16717. },
  16718. [
  16719. {
  16720. name: "Micro",
  16721. height: math.unit(3, "inches")
  16722. },
  16723. {
  16724. name: "Normal",
  16725. height: math.unit(4 + 11 / 12, "feet"),
  16726. default: true
  16727. },
  16728. {
  16729. name: "Macro",
  16730. height: math.unit(300, "feet")
  16731. },
  16732. {
  16733. name: "Megamacro",
  16734. height: math.unit(700, "miles")
  16735. },
  16736. ]
  16737. ))
  16738. characterMakers.push(() => makeCharacter(
  16739. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16740. {
  16741. front: {
  16742. height: math.unit(6 + 2 / 12, "feet"),
  16743. weight: math.unit(170, "lb"),
  16744. name: "Front",
  16745. image: {
  16746. source: "./media/characters/jamesy/front.svg",
  16747. extra: 440 / 382,
  16748. bottom: 0.005
  16749. }
  16750. },
  16751. },
  16752. [
  16753. {
  16754. name: "Micro",
  16755. height: math.unit(3, "inches")
  16756. },
  16757. {
  16758. name: "Normal",
  16759. height: math.unit(6 + 2 / 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: "Mark", species: ["fox"], tags: ["anthro"] },
  16774. {
  16775. front: {
  16776. height: math.unit(6, "feet"),
  16777. weight: math.unit(160, "lb"),
  16778. name: "Front",
  16779. image: {
  16780. source: "./media/characters/mark/front.svg",
  16781. extra: 3300 / 3100,
  16782. bottom: 136.42 / 3440.47
  16783. }
  16784. },
  16785. },
  16786. [
  16787. {
  16788. name: "Macro",
  16789. height: math.unit(120, "meters")
  16790. },
  16791. {
  16792. name: "Bigger Macro",
  16793. height: math.unit(350, "meters")
  16794. },
  16795. {
  16796. name: "Megamacro",
  16797. height: math.unit(8, "km"),
  16798. default: true
  16799. },
  16800. {
  16801. name: "Continental",
  16802. height: math.unit(4550, "km")
  16803. },
  16804. {
  16805. name: "Planetary",
  16806. height: math.unit(65000, "km")
  16807. },
  16808. ]
  16809. ))
  16810. characterMakers.push(() => makeCharacter(
  16811. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16812. {
  16813. front: {
  16814. height: math.unit(6, "feet"),
  16815. weight: math.unit(400, "lb"),
  16816. name: "Front",
  16817. image: {
  16818. source: "./media/characters/mac/front.svg",
  16819. extra: 1048 / 987.7,
  16820. bottom: 60 / 1107.6,
  16821. }
  16822. },
  16823. },
  16824. [
  16825. {
  16826. name: "Macro",
  16827. height: math.unit(500, "feet"),
  16828. default: true
  16829. },
  16830. ]
  16831. ))
  16832. characterMakers.push(() => makeCharacter(
  16833. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16834. {
  16835. front: {
  16836. height: math.unit(5 + 2 / 12, "feet"),
  16837. weight: math.unit(190, "lb"),
  16838. name: "Front",
  16839. image: {
  16840. source: "./media/characters/bari/front.svg",
  16841. extra: 3156 / 2880,
  16842. bottom: 0.03
  16843. }
  16844. },
  16845. back: {
  16846. height: math.unit(5 + 2 / 12, "feet"),
  16847. weight: math.unit(190, "lb"),
  16848. name: "Back",
  16849. image: {
  16850. source: "./media/characters/bari/back.svg",
  16851. extra: 3260 / 2834,
  16852. bottom: 0.025
  16853. }
  16854. },
  16855. frontPlush: {
  16856. height: math.unit(5 + 2 / 12, "feet"),
  16857. weight: math.unit(190, "lb"),
  16858. name: "Front (Plush)",
  16859. image: {
  16860. source: "./media/characters/bari/front-plush.svg",
  16861. extra: 1112 / 1061,
  16862. bottom: 0.002
  16863. }
  16864. },
  16865. },
  16866. [
  16867. {
  16868. name: "Micro",
  16869. height: math.unit(3, "inches")
  16870. },
  16871. {
  16872. name: "Normal",
  16873. height: math.unit(5 + 2 / 12, "feet"),
  16874. default: true
  16875. },
  16876. {
  16877. name: "Macro",
  16878. height: math.unit(20, "feet")
  16879. },
  16880. ]
  16881. ))
  16882. characterMakers.push(() => makeCharacter(
  16883. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16884. {
  16885. front: {
  16886. height: math.unit(6 + 1 / 12, "feet"),
  16887. weight: math.unit(275, "lb"),
  16888. name: "Front",
  16889. image: {
  16890. source: "./media/characters/hunter-misha-raven/front.svg"
  16891. }
  16892. },
  16893. },
  16894. [
  16895. {
  16896. name: "Mortal",
  16897. height: math.unit(6 + 1 / 12, "feet")
  16898. },
  16899. {
  16900. name: "Divine",
  16901. height: math.unit(1.12134e34, "parsecs"),
  16902. default: true
  16903. },
  16904. ]
  16905. ))
  16906. characterMakers.push(() => makeCharacter(
  16907. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16908. {
  16909. front: {
  16910. height: math.unit(6 + 3 / 12, "feet"),
  16911. weight: math.unit(220, "lb"),
  16912. name: "Front",
  16913. image: {
  16914. source: "./media/characters/max-calore/front.svg",
  16915. extra: 1700 / 1648,
  16916. bottom: 0.01
  16917. }
  16918. },
  16919. back: {
  16920. height: math.unit(6 + 3 / 12, "feet"),
  16921. weight: math.unit(220, "lb"),
  16922. name: "Back",
  16923. image: {
  16924. source: "./media/characters/max-calore/back.svg",
  16925. extra: 1700 / 1648,
  16926. bottom: 0.01
  16927. }
  16928. },
  16929. },
  16930. [
  16931. {
  16932. name: "Normal",
  16933. height: math.unit(6 + 3 / 12, "feet"),
  16934. default: true
  16935. },
  16936. ]
  16937. ))
  16938. characterMakers.push(() => makeCharacter(
  16939. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16940. {
  16941. side: {
  16942. height: math.unit(2 + 8 / 12, "feet"),
  16943. weight: math.unit(99, "lb"),
  16944. name: "Side",
  16945. image: {
  16946. source: "./media/characters/aspen/side.svg",
  16947. extra: 152 / 138,
  16948. bottom: 0.032
  16949. }
  16950. },
  16951. },
  16952. [
  16953. {
  16954. name: "Normal",
  16955. height: math.unit(2 + 8 / 12, "feet"),
  16956. default: true
  16957. },
  16958. ]
  16959. ))
  16960. characterMakers.push(() => makeCharacter(
  16961. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16962. {
  16963. side: {
  16964. height: math.unit(3 + 2 / 12, "feet"),
  16965. weight: math.unit(224, "lb"),
  16966. name: "Side",
  16967. image: {
  16968. source: "./media/characters/sheila-feral-wolf/side.svg",
  16969. extra: 179 / 166,
  16970. bottom: 0.03
  16971. }
  16972. },
  16973. },
  16974. [
  16975. {
  16976. name: "Normal",
  16977. height: math.unit(3 + 2 / 12, "feet"),
  16978. default: true
  16979. },
  16980. ]
  16981. ))
  16982. characterMakers.push(() => makeCharacter(
  16983. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16984. {
  16985. side: {
  16986. height: math.unit(1 + 9 / 12, "feet"),
  16987. weight: math.unit(38, "lb"),
  16988. name: "Side",
  16989. image: {
  16990. source: "./media/characters/michelle/side.svg",
  16991. extra: 147 / 136.7,
  16992. bottom: 0.03
  16993. }
  16994. },
  16995. },
  16996. [
  16997. {
  16998. name: "Normal",
  16999. height: math.unit(1 + 9 / 12, "feet"),
  17000. default: true
  17001. },
  17002. ]
  17003. ))
  17004. characterMakers.push(() => makeCharacter(
  17005. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17006. {
  17007. front: {
  17008. height: math.unit(1 + 1 / 12, "feet"),
  17009. weight: math.unit(18, "lb"),
  17010. name: "Front",
  17011. image: {
  17012. source: "./media/characters/nino/front.svg"
  17013. }
  17014. },
  17015. },
  17016. [
  17017. {
  17018. name: "Normal",
  17019. height: math.unit(1 + 1 / 12, "feet"),
  17020. default: true
  17021. },
  17022. ]
  17023. ))
  17024. characterMakers.push(() => makeCharacter(
  17025. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17026. {
  17027. front: {
  17028. height: math.unit(1, "feet"),
  17029. weight: math.unit(16, "lb"),
  17030. name: "Front",
  17031. image: {
  17032. source: "./media/characters/viola/front.svg"
  17033. }
  17034. },
  17035. },
  17036. [
  17037. {
  17038. name: "Normal",
  17039. height: math.unit(1, "feet"),
  17040. default: true
  17041. },
  17042. ]
  17043. ))
  17044. characterMakers.push(() => makeCharacter(
  17045. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17046. {
  17047. front: {
  17048. height: math.unit(6 + 5 / 12, "feet"),
  17049. weight: math.unit(580, "lb"),
  17050. name: "Front",
  17051. image: {
  17052. source: "./media/characters/atlas/front.svg",
  17053. extra: 298.5 / 290,
  17054. bottom: 0.015
  17055. }
  17056. },
  17057. },
  17058. [
  17059. {
  17060. name: "Normal",
  17061. height: math.unit(6 + 5 / 12, "feet"),
  17062. default: true
  17063. },
  17064. ]
  17065. ))
  17066. characterMakers.push(() => makeCharacter(
  17067. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17068. {
  17069. side: {
  17070. height: math.unit(1 + 10 / 12, "feet"),
  17071. weight: math.unit(25, "lb"),
  17072. name: "Side",
  17073. image: {
  17074. source: "./media/characters/davy/side.svg",
  17075. extra: 200 / 170,
  17076. bottom: 0.01
  17077. }
  17078. },
  17079. },
  17080. [
  17081. {
  17082. name: "Normal",
  17083. height: math.unit(1 + 10 / 12, "feet"),
  17084. default: true
  17085. },
  17086. ]
  17087. ))
  17088. characterMakers.push(() => makeCharacter(
  17089. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17090. {
  17091. side: {
  17092. height: math.unit(4 + 8 / 12, "feet"),
  17093. weight: math.unit(166, "lb"),
  17094. name: "Side",
  17095. image: {
  17096. source: "./media/characters/fiona/side.svg",
  17097. extra: 232 / 220,
  17098. bottom: 0.03
  17099. }
  17100. },
  17101. },
  17102. [
  17103. {
  17104. name: "Normal",
  17105. height: math.unit(4 + 8 / 12, "feet"),
  17106. default: true
  17107. },
  17108. ]
  17109. ))
  17110. characterMakers.push(() => makeCharacter(
  17111. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17112. {
  17113. front: {
  17114. height: math.unit(2, "feet"),
  17115. weight: math.unit(62, "lb"),
  17116. name: "Front",
  17117. image: {
  17118. source: "./media/characters/lyla/front.svg",
  17119. bottom: 0.1
  17120. }
  17121. },
  17122. },
  17123. [
  17124. {
  17125. name: "Normal",
  17126. height: math.unit(2, "feet"),
  17127. default: true
  17128. },
  17129. ]
  17130. ))
  17131. characterMakers.push(() => makeCharacter(
  17132. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17133. {
  17134. side: {
  17135. height: math.unit(1.8, "feet"),
  17136. weight: math.unit(44, "lb"),
  17137. name: "Side",
  17138. image: {
  17139. source: "./media/characters/perseus/side.svg",
  17140. bottom: 0.21
  17141. }
  17142. },
  17143. },
  17144. [
  17145. {
  17146. name: "Normal",
  17147. height: math.unit(1.8, "feet"),
  17148. default: true
  17149. },
  17150. ]
  17151. ))
  17152. characterMakers.push(() => makeCharacter(
  17153. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17154. {
  17155. side: {
  17156. height: math.unit(4 + 2 / 12, "feet"),
  17157. weight: math.unit(20, "lb"),
  17158. name: "Side",
  17159. image: {
  17160. source: "./media/characters/remus/side.svg"
  17161. }
  17162. },
  17163. },
  17164. [
  17165. {
  17166. name: "Normal",
  17167. height: math.unit(4 + 2 / 12, "feet"),
  17168. default: true
  17169. },
  17170. ]
  17171. ))
  17172. characterMakers.push(() => makeCharacter(
  17173. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17174. {
  17175. front: {
  17176. height: math.unit(4 + 11 / 12, "feet"),
  17177. weight: math.unit(114, "lb"),
  17178. name: "Front",
  17179. image: {
  17180. source: "./media/characters/raf/front.svg",
  17181. bottom: 20.5 / 1863
  17182. }
  17183. },
  17184. side: {
  17185. height: math.unit(4 + 11 / 12, "feet"),
  17186. weight: math.unit(114, "lb"),
  17187. name: "Side",
  17188. image: {
  17189. source: "./media/characters/raf/side.svg",
  17190. bottom: 22 / 1822
  17191. }
  17192. },
  17193. },
  17194. [
  17195. {
  17196. name: "Micro",
  17197. height: math.unit(2, "inches")
  17198. },
  17199. {
  17200. name: "Normal",
  17201. height: math.unit(4 + 11 / 12, "feet"),
  17202. default: true
  17203. },
  17204. {
  17205. name: "Macro",
  17206. height: math.unit(70, "feet")
  17207. },
  17208. ]
  17209. ))
  17210. characterMakers.push(() => makeCharacter(
  17211. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17212. {
  17213. front: {
  17214. height: math.unit(1.5, "meters"),
  17215. weight: math.unit(68, "kg"),
  17216. name: "Front",
  17217. image: {
  17218. source: "./media/characters/liam-einarr/front.svg",
  17219. extra: 2822 / 2666
  17220. }
  17221. },
  17222. back: {
  17223. height: math.unit(1.5, "meters"),
  17224. weight: math.unit(68, "kg"),
  17225. name: "Back",
  17226. image: {
  17227. source: "./media/characters/liam-einarr/back.svg",
  17228. extra: 2822 / 2666,
  17229. bottom: 0.015
  17230. }
  17231. },
  17232. },
  17233. [
  17234. {
  17235. name: "Normal",
  17236. height: math.unit(1.5, "meters"),
  17237. default: true
  17238. },
  17239. {
  17240. name: "Macro",
  17241. height: math.unit(150, "meters")
  17242. },
  17243. {
  17244. name: "Megamacro",
  17245. height: math.unit(35, "km")
  17246. },
  17247. ]
  17248. ))
  17249. characterMakers.push(() => makeCharacter(
  17250. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17251. {
  17252. front: {
  17253. height: math.unit(6, "feet"),
  17254. weight: math.unit(75, "kg"),
  17255. name: "Front",
  17256. image: {
  17257. source: "./media/characters/linda/front.svg",
  17258. extra: 930 / 874,
  17259. bottom: 0.004
  17260. }
  17261. },
  17262. },
  17263. [
  17264. {
  17265. name: "Normal",
  17266. height: math.unit(6, "feet"),
  17267. default: true
  17268. },
  17269. ]
  17270. ))
  17271. characterMakers.push(() => makeCharacter(
  17272. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17273. {
  17274. front: {
  17275. height: math.unit(6 + 8 / 12, "feet"),
  17276. weight: math.unit(220, "lb"),
  17277. name: "Front",
  17278. image: {
  17279. source: "./media/characters/caylex/front.svg",
  17280. extra: 821 / 772,
  17281. bottom: 0.07
  17282. }
  17283. },
  17284. back: {
  17285. height: math.unit(6 + 8 / 12, "feet"),
  17286. weight: math.unit(220, "lb"),
  17287. name: "Back",
  17288. image: {
  17289. source: "./media/characters/caylex/back.svg",
  17290. extra: 821 / 772,
  17291. bottom: 0.022
  17292. }
  17293. },
  17294. hand: {
  17295. height: math.unit(1.25, "feet"),
  17296. name: "Hand",
  17297. image: {
  17298. source: "./media/characters/caylex/hand.svg"
  17299. }
  17300. },
  17301. foot: {
  17302. height: math.unit(1.6, "feet"),
  17303. name: "Foot",
  17304. image: {
  17305. source: "./media/characters/caylex/foot.svg"
  17306. }
  17307. },
  17308. armored: {
  17309. height: math.unit(6 + 8 / 12, "feet"),
  17310. weight: math.unit(250, "lb"),
  17311. name: "Armored",
  17312. image: {
  17313. source: "./media/characters/caylex/armored.svg",
  17314. extra: 1420 / 1310,
  17315. bottom: 0.045
  17316. }
  17317. },
  17318. },
  17319. [
  17320. {
  17321. name: "Normal",
  17322. height: math.unit(6 + 8 / 12, "feet"),
  17323. default: true
  17324. },
  17325. {
  17326. name: "Normal+",
  17327. height: math.unit(12, "feet")
  17328. },
  17329. ]
  17330. ))
  17331. characterMakers.push(() => makeCharacter(
  17332. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17333. {
  17334. front: {
  17335. height: math.unit(7 + 6 / 12, "feet"),
  17336. weight: math.unit(288, "lb"),
  17337. name: "Front",
  17338. image: {
  17339. source: "./media/characters/alana/front.svg",
  17340. extra: 679 / 653,
  17341. bottom: 22.5 / 701
  17342. }
  17343. },
  17344. },
  17345. [
  17346. {
  17347. name: "Normal",
  17348. height: math.unit(7 + 6 / 12, "feet")
  17349. },
  17350. {
  17351. name: "Large",
  17352. height: math.unit(50, "feet")
  17353. },
  17354. {
  17355. name: "Macro",
  17356. height: math.unit(100, "feet"),
  17357. default: true
  17358. },
  17359. {
  17360. name: "Macro+",
  17361. height: math.unit(200, "feet")
  17362. },
  17363. ]
  17364. ))
  17365. characterMakers.push(() => makeCharacter(
  17366. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17367. {
  17368. front: {
  17369. height: math.unit(6 + 1 / 12, "feet"),
  17370. weight: math.unit(210, "lb"),
  17371. name: "Front",
  17372. image: {
  17373. source: "./media/characters/hasani/front.svg",
  17374. extra: 244 / 232,
  17375. bottom: 0.01
  17376. }
  17377. },
  17378. back: {
  17379. height: math.unit(6 + 1 / 12, "feet"),
  17380. weight: math.unit(210, "lb"),
  17381. name: "Back",
  17382. image: {
  17383. source: "./media/characters/hasani/back.svg",
  17384. extra: 244 / 232,
  17385. bottom: 0.01
  17386. }
  17387. },
  17388. },
  17389. [
  17390. {
  17391. name: "Normal",
  17392. height: math.unit(6 + 1 / 12, "feet")
  17393. },
  17394. {
  17395. name: "Macro",
  17396. height: math.unit(175, "feet"),
  17397. default: true
  17398. },
  17399. ]
  17400. ))
  17401. characterMakers.push(() => makeCharacter(
  17402. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17403. {
  17404. front: {
  17405. height: math.unit(1.82, "meters"),
  17406. weight: math.unit(140, "lb"),
  17407. name: "Front",
  17408. image: {
  17409. source: "./media/characters/nita/front.svg",
  17410. extra: 2473 / 2363,
  17411. bottom: 0.01
  17412. }
  17413. },
  17414. },
  17415. [
  17416. {
  17417. name: "Normal",
  17418. height: math.unit(1.82, "m")
  17419. },
  17420. {
  17421. name: "Macro",
  17422. height: math.unit(300, "m")
  17423. },
  17424. {
  17425. name: "Mistake Canon",
  17426. height: math.unit(0.5, "miles"),
  17427. default: true
  17428. },
  17429. {
  17430. name: "Big Mistake",
  17431. height: math.unit(13, "miles")
  17432. },
  17433. {
  17434. name: "Playing God",
  17435. height: math.unit(2450, "miles")
  17436. },
  17437. ]
  17438. ))
  17439. characterMakers.push(() => makeCharacter(
  17440. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17441. {
  17442. front: {
  17443. height: math.unit(4, "feet"),
  17444. weight: math.unit(120, "lb"),
  17445. name: "Front",
  17446. image: {
  17447. source: "./media/characters/shiriko/front.svg",
  17448. extra: 970/934,
  17449. bottom: 5/975
  17450. }
  17451. },
  17452. },
  17453. [
  17454. {
  17455. name: "Normal",
  17456. height: math.unit(4, "feet"),
  17457. default: true
  17458. },
  17459. ]
  17460. ))
  17461. characterMakers.push(() => makeCharacter(
  17462. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17463. {
  17464. front: {
  17465. height: math.unit(6, "feet"),
  17466. name: "front",
  17467. image: {
  17468. source: "./media/characters/deja/front.svg",
  17469. extra: 926 / 840,
  17470. bottom: 0.07
  17471. }
  17472. },
  17473. },
  17474. [
  17475. {
  17476. name: "Planck Length",
  17477. height: math.unit(1.6e-35, "meters")
  17478. },
  17479. {
  17480. name: "Normal",
  17481. height: math.unit(30.48, "meters"),
  17482. default: true
  17483. },
  17484. {
  17485. name: "Universal",
  17486. height: math.unit(8.8e26, "meters")
  17487. },
  17488. ]
  17489. ))
  17490. characterMakers.push(() => makeCharacter(
  17491. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17492. {
  17493. side: {
  17494. height: math.unit(8, "feet"),
  17495. weight: math.unit(6300, "lb"),
  17496. name: "Side",
  17497. image: {
  17498. source: "./media/characters/anima/side.svg",
  17499. bottom: 0.035
  17500. }
  17501. },
  17502. },
  17503. [
  17504. {
  17505. name: "Normal",
  17506. height: math.unit(8, "feet"),
  17507. default: true
  17508. },
  17509. ]
  17510. ))
  17511. characterMakers.push(() => makeCharacter(
  17512. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17513. {
  17514. front: {
  17515. height: math.unit(8, "feet"),
  17516. weight: math.unit(350, "lb"),
  17517. name: "Front",
  17518. image: {
  17519. source: "./media/characters/bianca/front.svg",
  17520. extra: 234 / 225,
  17521. bottom: 0.03
  17522. }
  17523. },
  17524. },
  17525. [
  17526. {
  17527. name: "Normal",
  17528. height: math.unit(8, "feet"),
  17529. default: true
  17530. },
  17531. ]
  17532. ))
  17533. characterMakers.push(() => makeCharacter(
  17534. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17535. {
  17536. front: {
  17537. height: math.unit(6, "feet"),
  17538. weight: math.unit(150, "lb"),
  17539. name: "Front",
  17540. image: {
  17541. source: "./media/characters/adinia/front.svg",
  17542. extra: 1845 / 1672,
  17543. bottom: 0.02
  17544. }
  17545. },
  17546. back: {
  17547. height: math.unit(6, "feet"),
  17548. weight: math.unit(150, "lb"),
  17549. name: "Back",
  17550. image: {
  17551. source: "./media/characters/adinia/back.svg",
  17552. extra: 1845 / 1672,
  17553. bottom: 0.002
  17554. }
  17555. },
  17556. },
  17557. [
  17558. {
  17559. name: "Normal",
  17560. height: math.unit(11 + 5 / 12, "feet"),
  17561. default: true
  17562. },
  17563. ]
  17564. ))
  17565. characterMakers.push(() => makeCharacter(
  17566. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17567. {
  17568. front: {
  17569. height: math.unit(3, "meters"),
  17570. weight: math.unit(200, "kg"),
  17571. name: "Front",
  17572. image: {
  17573. source: "./media/characters/lykasa/front.svg",
  17574. extra: 1076 / 976,
  17575. bottom: 0.06
  17576. }
  17577. },
  17578. },
  17579. [
  17580. {
  17581. name: "Normal",
  17582. height: math.unit(3, "meters")
  17583. },
  17584. {
  17585. name: "Kaiju",
  17586. height: math.unit(120, "meters"),
  17587. default: true
  17588. },
  17589. {
  17590. name: "Mega Kaiju",
  17591. height: math.unit(240, "km")
  17592. },
  17593. {
  17594. name: "Giga Kaiju",
  17595. height: math.unit(400, "megameters")
  17596. },
  17597. {
  17598. name: "Tera Kaiju",
  17599. height: math.unit(800, "gigameters")
  17600. },
  17601. {
  17602. name: "Kaiju Dragon Goddess",
  17603. height: math.unit(26, "zettaparsecs")
  17604. },
  17605. ]
  17606. ))
  17607. characterMakers.push(() => makeCharacter(
  17608. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17609. {
  17610. side: {
  17611. height: math.unit(283 / 124 * 6, "feet"),
  17612. weight: math.unit(35000, "lb"),
  17613. name: "Side",
  17614. image: {
  17615. source: "./media/characters/malfaren/side.svg",
  17616. extra: 2500 / 1010,
  17617. bottom: 0.01
  17618. }
  17619. },
  17620. front: {
  17621. height: math.unit(22.36, "feet"),
  17622. weight: math.unit(35000, "lb"),
  17623. name: "Front",
  17624. image: {
  17625. source: "./media/characters/malfaren/front.svg",
  17626. extra: 1631 / 1476,
  17627. bottom: 0.01
  17628. }
  17629. },
  17630. maw: {
  17631. height: math.unit(6.9, "feet"),
  17632. name: "Maw",
  17633. image: {
  17634. source: "./media/characters/malfaren/maw.svg"
  17635. }
  17636. },
  17637. },
  17638. [
  17639. {
  17640. name: "Big",
  17641. height: math.unit(283 / 162 * 6, "feet"),
  17642. },
  17643. {
  17644. name: "Bigger",
  17645. height: math.unit(283 / 124 * 6, "feet")
  17646. },
  17647. {
  17648. name: "Massive",
  17649. height: math.unit(283 / 92 * 6, "feet"),
  17650. default: true
  17651. },
  17652. {
  17653. name: "👀💦",
  17654. height: math.unit(283 / 73 * 6, "feet"),
  17655. },
  17656. ]
  17657. ))
  17658. characterMakers.push(() => makeCharacter(
  17659. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17660. {
  17661. front: {
  17662. height: math.unit(1.7, "m"),
  17663. weight: math.unit(70, "kg"),
  17664. name: "Front",
  17665. image: {
  17666. source: "./media/characters/kernel/front.svg",
  17667. extra: 222 / 210,
  17668. bottom: 0.007
  17669. }
  17670. },
  17671. },
  17672. [
  17673. {
  17674. name: "Nano",
  17675. height: math.unit(17, "micrometers")
  17676. },
  17677. {
  17678. name: "Micro",
  17679. height: math.unit(1.7, "mm")
  17680. },
  17681. {
  17682. name: "Small",
  17683. height: math.unit(1.7, "cm")
  17684. },
  17685. {
  17686. name: "Normal",
  17687. height: math.unit(1.7, "m"),
  17688. default: true
  17689. },
  17690. ]
  17691. ))
  17692. characterMakers.push(() => makeCharacter(
  17693. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17694. {
  17695. front: {
  17696. height: math.unit(1.75, "meters"),
  17697. weight: math.unit(65, "kg"),
  17698. name: "Front",
  17699. image: {
  17700. source: "./media/characters/jayne-folest/front.svg",
  17701. extra: 2115 / 2007,
  17702. bottom: 0.02
  17703. }
  17704. },
  17705. back: {
  17706. height: math.unit(1.75, "meters"),
  17707. weight: math.unit(65, "kg"),
  17708. name: "Back",
  17709. image: {
  17710. source: "./media/characters/jayne-folest/back.svg",
  17711. extra: 2115 / 2007,
  17712. bottom: 0.005
  17713. }
  17714. },
  17715. frontClothed: {
  17716. height: math.unit(1.75, "meters"),
  17717. weight: math.unit(65, "kg"),
  17718. name: "Front (Clothed)",
  17719. image: {
  17720. source: "./media/characters/jayne-folest/front-clothed.svg",
  17721. extra: 2115 / 2007,
  17722. bottom: 0.035
  17723. }
  17724. },
  17725. hand: {
  17726. height: math.unit(1 / 1.260, "feet"),
  17727. name: "Hand",
  17728. image: {
  17729. source: "./media/characters/jayne-folest/hand.svg"
  17730. }
  17731. },
  17732. foot: {
  17733. height: math.unit(1 / 0.918, "feet"),
  17734. name: "Foot",
  17735. image: {
  17736. source: "./media/characters/jayne-folest/foot.svg"
  17737. }
  17738. },
  17739. },
  17740. [
  17741. {
  17742. name: "Micro",
  17743. height: math.unit(4, "cm")
  17744. },
  17745. {
  17746. name: "Normal",
  17747. height: math.unit(1.75, "meters")
  17748. },
  17749. {
  17750. name: "Macro",
  17751. height: math.unit(47.5, "meters"),
  17752. default: true
  17753. },
  17754. ]
  17755. ))
  17756. characterMakers.push(() => makeCharacter(
  17757. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17758. {
  17759. front: {
  17760. height: math.unit(180, "cm"),
  17761. weight: math.unit(70, "kg"),
  17762. name: "Front",
  17763. image: {
  17764. source: "./media/characters/algier/front.svg",
  17765. extra: 596 / 572,
  17766. bottom: 0.04
  17767. }
  17768. },
  17769. back: {
  17770. height: math.unit(180, "cm"),
  17771. weight: math.unit(70, "kg"),
  17772. name: "Back",
  17773. image: {
  17774. source: "./media/characters/algier/back.svg",
  17775. extra: 596 / 572,
  17776. bottom: 0.025
  17777. }
  17778. },
  17779. frontdressed: {
  17780. height: math.unit(180, "cm"),
  17781. weight: math.unit(150, "kg"),
  17782. name: "Front-dressed",
  17783. image: {
  17784. source: "./media/characters/algier/front-dressed.svg",
  17785. extra: 596 / 572,
  17786. bottom: 0.038
  17787. }
  17788. },
  17789. },
  17790. [
  17791. {
  17792. name: "Micro",
  17793. height: math.unit(5, "cm")
  17794. },
  17795. {
  17796. name: "Normal",
  17797. height: math.unit(180, "cm"),
  17798. default: true
  17799. },
  17800. {
  17801. name: "Macro",
  17802. height: math.unit(64, "m")
  17803. },
  17804. ]
  17805. ))
  17806. characterMakers.push(() => makeCharacter(
  17807. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17808. {
  17809. upright: {
  17810. height: math.unit(7, "feet"),
  17811. weight: math.unit(300, "lb"),
  17812. name: "Upright",
  17813. image: {
  17814. source: "./media/characters/pretzel/upright.svg",
  17815. extra: 534 / 522,
  17816. bottom: 0.065
  17817. }
  17818. },
  17819. sprawling: {
  17820. height: math.unit(3.75, "feet"),
  17821. weight: math.unit(300, "lb"),
  17822. name: "Sprawling",
  17823. image: {
  17824. source: "./media/characters/pretzel/sprawling.svg",
  17825. extra: 314 / 281,
  17826. bottom: 0.1
  17827. }
  17828. },
  17829. tongue: {
  17830. height: math.unit(2, "feet"),
  17831. name: "Tongue",
  17832. image: {
  17833. source: "./media/characters/pretzel/tongue.svg"
  17834. }
  17835. },
  17836. },
  17837. [
  17838. {
  17839. name: "Normal",
  17840. height: math.unit(7, "feet"),
  17841. default: true
  17842. },
  17843. {
  17844. name: "Oversized",
  17845. height: math.unit(15, "feet")
  17846. },
  17847. {
  17848. name: "Huge",
  17849. height: math.unit(30, "feet")
  17850. },
  17851. {
  17852. name: "Macro",
  17853. height: math.unit(250, "feet")
  17854. },
  17855. ]
  17856. ))
  17857. characterMakers.push(() => makeCharacter(
  17858. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17859. {
  17860. sideFront: {
  17861. height: math.unit(5 + 2 / 12, "feet"),
  17862. weight: math.unit(120, "lb"),
  17863. name: "Front Side",
  17864. image: {
  17865. source: "./media/characters/roxi/side-front.svg",
  17866. extra: 2924 / 2717,
  17867. bottom: 0.08
  17868. }
  17869. },
  17870. sideBack: {
  17871. height: math.unit(5 + 2 / 12, "feet"),
  17872. weight: math.unit(120, "lb"),
  17873. name: "Back Side",
  17874. image: {
  17875. source: "./media/characters/roxi/side-back.svg",
  17876. extra: 2904 / 2693,
  17877. bottom: 0.06
  17878. }
  17879. },
  17880. front: {
  17881. height: math.unit(5 + 2 / 12, "feet"),
  17882. weight: math.unit(120, "lb"),
  17883. name: "Front",
  17884. image: {
  17885. source: "./media/characters/roxi/front.svg",
  17886. extra: 2028 / 1907,
  17887. bottom: 0.01
  17888. }
  17889. },
  17890. frontAlt: {
  17891. height: math.unit(5 + 2 / 12, "feet"),
  17892. weight: math.unit(120, "lb"),
  17893. name: "Front (Alt)",
  17894. image: {
  17895. source: "./media/characters/roxi/front-alt.svg",
  17896. extra: 1828 / 1798,
  17897. bottom: 0.01
  17898. }
  17899. },
  17900. sitting: {
  17901. height: math.unit(2.8, "feet"),
  17902. weight: math.unit(120, "lb"),
  17903. name: "Sitting",
  17904. image: {
  17905. source: "./media/characters/roxi/sitting.svg",
  17906. extra: 2660 / 2462,
  17907. bottom: 0.1
  17908. }
  17909. },
  17910. },
  17911. [
  17912. {
  17913. name: "Normal",
  17914. height: math.unit(5 + 2 / 12, "feet"),
  17915. default: true
  17916. },
  17917. ]
  17918. ))
  17919. characterMakers.push(() => makeCharacter(
  17920. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17921. {
  17922. side: {
  17923. height: math.unit(55, "feet"),
  17924. weight: math.unit(153, "tons"),
  17925. name: "Side",
  17926. image: {
  17927. source: "./media/characters/shadow/side.svg",
  17928. extra: 701 / 628,
  17929. bottom: 0.02
  17930. }
  17931. },
  17932. flying: {
  17933. height: math.unit(145, "feet"),
  17934. weight: math.unit(153, "tons"),
  17935. name: "Flying",
  17936. image: {
  17937. source: "./media/characters/shadow/flying.svg"
  17938. }
  17939. },
  17940. },
  17941. [
  17942. {
  17943. name: "Normal",
  17944. height: math.unit(55, "feet"),
  17945. default: true
  17946. },
  17947. ]
  17948. ))
  17949. characterMakers.push(() => makeCharacter(
  17950. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17951. {
  17952. front: {
  17953. height: math.unit(6, "feet"),
  17954. weight: math.unit(200, "lb"),
  17955. name: "Front",
  17956. image: {
  17957. source: "./media/characters/marcie/front.svg",
  17958. extra: 960 / 876,
  17959. bottom: 58 / 1017.87
  17960. }
  17961. },
  17962. },
  17963. [
  17964. {
  17965. name: "Macro",
  17966. height: math.unit(1, "mile"),
  17967. default: true
  17968. },
  17969. ]
  17970. ))
  17971. characterMakers.push(() => makeCharacter(
  17972. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17973. {
  17974. front: {
  17975. height: math.unit(7, "feet"),
  17976. weight: math.unit(200, "lb"),
  17977. name: "Front",
  17978. image: {
  17979. source: "./media/characters/kachina/front.svg",
  17980. extra: 1290.68 / 1119,
  17981. bottom: 36.5 / 1327.18
  17982. }
  17983. },
  17984. },
  17985. [
  17986. {
  17987. name: "Normal",
  17988. height: math.unit(7, "feet"),
  17989. default: true
  17990. },
  17991. ]
  17992. ))
  17993. characterMakers.push(() => makeCharacter(
  17994. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17995. {
  17996. looking: {
  17997. height: math.unit(2, "meters"),
  17998. weight: math.unit(300, "kg"),
  17999. name: "Looking",
  18000. image: {
  18001. source: "./media/characters/kash/looking.svg",
  18002. extra: 474 / 344,
  18003. bottom: 0.03
  18004. }
  18005. },
  18006. side: {
  18007. height: math.unit(2, "meters"),
  18008. weight: math.unit(300, "kg"),
  18009. name: "Side",
  18010. image: {
  18011. source: "./media/characters/kash/side.svg",
  18012. extra: 302 / 251,
  18013. bottom: 0.03
  18014. }
  18015. },
  18016. front: {
  18017. height: math.unit(2, "meters"),
  18018. weight: math.unit(300, "kg"),
  18019. name: "Front",
  18020. image: {
  18021. source: "./media/characters/kash/front.svg",
  18022. extra: 495 / 360,
  18023. bottom: 0.015
  18024. }
  18025. },
  18026. },
  18027. [
  18028. {
  18029. name: "Normal",
  18030. height: math.unit(2, "meters"),
  18031. default: true
  18032. },
  18033. {
  18034. name: "Big",
  18035. height: math.unit(3, "meters")
  18036. },
  18037. {
  18038. name: "Large",
  18039. height: math.unit(5, "meters")
  18040. },
  18041. ]
  18042. ))
  18043. characterMakers.push(() => makeCharacter(
  18044. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18045. {
  18046. feeding: {
  18047. height: math.unit(6.7, "feet"),
  18048. weight: math.unit(350, "lb"),
  18049. name: "Feeding",
  18050. image: {
  18051. source: "./media/characters/lalim/feeding.svg",
  18052. }
  18053. },
  18054. },
  18055. [
  18056. {
  18057. name: "Normal",
  18058. height: math.unit(6.7, "feet"),
  18059. default: true
  18060. },
  18061. ]
  18062. ))
  18063. characterMakers.push(() => makeCharacter(
  18064. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18065. {
  18066. front: {
  18067. height: math.unit(9.5, "feet"),
  18068. weight: math.unit(600, "lb"),
  18069. name: "Front",
  18070. image: {
  18071. source: "./media/characters/de'vout/front.svg",
  18072. extra: 1443 / 1328,
  18073. bottom: 0.025
  18074. }
  18075. },
  18076. back: {
  18077. height: math.unit(9.5, "feet"),
  18078. weight: math.unit(600, "lb"),
  18079. name: "Back",
  18080. image: {
  18081. source: "./media/characters/de'vout/back.svg",
  18082. extra: 1443 / 1328
  18083. }
  18084. },
  18085. frontDressed: {
  18086. height: math.unit(9.5, "feet"),
  18087. weight: math.unit(600, "lb"),
  18088. name: "Front (Dressed",
  18089. image: {
  18090. source: "./media/characters/de'vout/front-dressed.svg",
  18091. extra: 1443 / 1328,
  18092. bottom: 0.025
  18093. }
  18094. },
  18095. backDressed: {
  18096. height: math.unit(9.5, "feet"),
  18097. weight: math.unit(600, "lb"),
  18098. name: "Back (Dressed",
  18099. image: {
  18100. source: "./media/characters/de'vout/back-dressed.svg",
  18101. extra: 1443 / 1328
  18102. }
  18103. },
  18104. },
  18105. [
  18106. {
  18107. name: "Normal",
  18108. height: math.unit(9.5, "feet"),
  18109. default: true
  18110. },
  18111. ]
  18112. ))
  18113. characterMakers.push(() => makeCharacter(
  18114. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18115. {
  18116. front: {
  18117. height: math.unit(8, "feet"),
  18118. weight: math.unit(225, "lb"),
  18119. name: "Front",
  18120. image: {
  18121. source: "./media/characters/talana/front.svg",
  18122. extra: 1410 / 1300,
  18123. bottom: 0.015
  18124. }
  18125. },
  18126. frontDressed: {
  18127. height: math.unit(8, "feet"),
  18128. weight: math.unit(225, "lb"),
  18129. name: "Front (Dressed",
  18130. image: {
  18131. source: "./media/characters/talana/front-dressed.svg",
  18132. extra: 1410 / 1300,
  18133. bottom: 0.015
  18134. }
  18135. },
  18136. },
  18137. [
  18138. {
  18139. name: "Normal",
  18140. height: math.unit(8, "feet"),
  18141. default: true
  18142. },
  18143. ]
  18144. ))
  18145. characterMakers.push(() => makeCharacter(
  18146. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18147. {
  18148. side: {
  18149. height: math.unit(7.2, "feet"),
  18150. weight: math.unit(150, "lb"),
  18151. name: "Side",
  18152. image: {
  18153. source: "./media/characters/xeauvok/side.svg",
  18154. extra: 1975 / 1523,
  18155. bottom: 0.07
  18156. }
  18157. },
  18158. },
  18159. [
  18160. {
  18161. name: "Normal",
  18162. height: math.unit(7.2, "feet"),
  18163. default: true
  18164. },
  18165. ]
  18166. ))
  18167. characterMakers.push(() => makeCharacter(
  18168. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18169. {
  18170. side: {
  18171. height: math.unit(10, "feet"),
  18172. weight: math.unit(900, "kg"),
  18173. name: "Side",
  18174. image: {
  18175. source: "./media/characters/zara/side.svg",
  18176. extra: 504 / 498
  18177. }
  18178. },
  18179. },
  18180. [
  18181. {
  18182. name: "Normal",
  18183. height: math.unit(10, "feet"),
  18184. default: true
  18185. },
  18186. ]
  18187. ))
  18188. characterMakers.push(() => makeCharacter(
  18189. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18190. {
  18191. side: {
  18192. height: math.unit(6, "feet"),
  18193. weight: math.unit(150, "lb"),
  18194. name: "Side",
  18195. image: {
  18196. source: "./media/characters/richard-dragon/side.svg",
  18197. extra: 845 / 340,
  18198. bottom: 0.017
  18199. }
  18200. },
  18201. maw: {
  18202. height: math.unit(2.97, "feet"),
  18203. name: "Maw",
  18204. image: {
  18205. source: "./media/characters/richard-dragon/maw.svg"
  18206. }
  18207. },
  18208. },
  18209. [
  18210. ]
  18211. ))
  18212. characterMakers.push(() => makeCharacter(
  18213. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18214. {
  18215. front: {
  18216. height: math.unit(4, "feet"),
  18217. weight: math.unit(100, "lb"),
  18218. name: "Front",
  18219. image: {
  18220. source: "./media/characters/richard-smeargle/front.svg",
  18221. extra: 2952 / 2820,
  18222. bottom: 0.028
  18223. }
  18224. },
  18225. },
  18226. [
  18227. {
  18228. name: "Normal",
  18229. height: math.unit(4, "feet"),
  18230. default: true
  18231. },
  18232. {
  18233. name: "Dynamax",
  18234. height: math.unit(20, "meters")
  18235. },
  18236. ]
  18237. ))
  18238. characterMakers.push(() => makeCharacter(
  18239. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18240. {
  18241. front: {
  18242. height: math.unit(6, "feet"),
  18243. weight: math.unit(110, "lb"),
  18244. name: "Front",
  18245. image: {
  18246. source: "./media/characters/klay/front.svg",
  18247. extra: 962 / 883,
  18248. bottom: 0.04
  18249. }
  18250. },
  18251. back: {
  18252. height: math.unit(6, "feet"),
  18253. weight: math.unit(110, "lb"),
  18254. name: "Back",
  18255. image: {
  18256. source: "./media/characters/klay/back.svg",
  18257. extra: 962 / 883
  18258. }
  18259. },
  18260. beans: {
  18261. height: math.unit(1.15, "feet"),
  18262. name: "Beans",
  18263. image: {
  18264. source: "./media/characters/klay/beans.svg"
  18265. }
  18266. },
  18267. },
  18268. [
  18269. {
  18270. name: "Micro",
  18271. height: math.unit(6, "inches")
  18272. },
  18273. {
  18274. name: "Mini",
  18275. height: math.unit(3, "feet")
  18276. },
  18277. {
  18278. name: "Normal",
  18279. height: math.unit(6, "feet"),
  18280. default: true
  18281. },
  18282. {
  18283. name: "Big",
  18284. height: math.unit(25, "feet")
  18285. },
  18286. {
  18287. name: "Macro",
  18288. height: math.unit(100, "feet")
  18289. },
  18290. {
  18291. name: "Megamacro",
  18292. height: math.unit(400, "feet")
  18293. },
  18294. ]
  18295. ))
  18296. characterMakers.push(() => makeCharacter(
  18297. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18298. {
  18299. front: {
  18300. height: math.unit(6, "feet"),
  18301. weight: math.unit(160, "lb"),
  18302. name: "Front",
  18303. image: {
  18304. source: "./media/characters/marcus/front.svg",
  18305. extra: 734 / 676,
  18306. bottom: 0.03
  18307. }
  18308. },
  18309. },
  18310. [
  18311. {
  18312. name: "Little",
  18313. height: math.unit(6, "feet")
  18314. },
  18315. {
  18316. name: "Normal",
  18317. height: math.unit(110, "feet"),
  18318. default: true
  18319. },
  18320. {
  18321. name: "Macro",
  18322. height: math.unit(250, "feet")
  18323. },
  18324. {
  18325. name: "Megamacro",
  18326. height: math.unit(1000, "feet")
  18327. },
  18328. ]
  18329. ))
  18330. characterMakers.push(() => makeCharacter(
  18331. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18332. {
  18333. front: {
  18334. height: math.unit(7, "feet"),
  18335. weight: math.unit(275, "lb"),
  18336. name: "Front",
  18337. image: {
  18338. source: "./media/characters/claude-delroute/front.svg",
  18339. extra: 230 / 214,
  18340. bottom: 0.007
  18341. }
  18342. },
  18343. side: {
  18344. height: math.unit(7, "feet"),
  18345. weight: math.unit(275, "lb"),
  18346. name: "Side",
  18347. image: {
  18348. source: "./media/characters/claude-delroute/side.svg",
  18349. extra: 222 / 214,
  18350. bottom: 0.01
  18351. }
  18352. },
  18353. back: {
  18354. height: math.unit(7, "feet"),
  18355. weight: math.unit(275, "lb"),
  18356. name: "Back",
  18357. image: {
  18358. source: "./media/characters/claude-delroute/back.svg",
  18359. extra: 230 / 214,
  18360. bottom: 0.015
  18361. }
  18362. },
  18363. maw: {
  18364. height: math.unit(0.6407, "meters"),
  18365. name: "Maw",
  18366. image: {
  18367. source: "./media/characters/claude-delroute/maw.svg"
  18368. }
  18369. },
  18370. },
  18371. [
  18372. {
  18373. name: "Normal",
  18374. height: math.unit(7, "feet"),
  18375. default: true
  18376. },
  18377. {
  18378. name: "Lorge",
  18379. height: math.unit(20, "feet")
  18380. },
  18381. ]
  18382. ))
  18383. characterMakers.push(() => makeCharacter(
  18384. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18385. {
  18386. front: {
  18387. height: math.unit(8 + 4 / 12, "feet"),
  18388. weight: math.unit(600, "lb"),
  18389. name: "Front",
  18390. image: {
  18391. source: "./media/characters/dragonien/front.svg",
  18392. extra: 100 / 94,
  18393. bottom: 3.3 / 103.3445
  18394. }
  18395. },
  18396. back: {
  18397. height: math.unit(8 + 4 / 12, "feet"),
  18398. weight: math.unit(600, "lb"),
  18399. name: "Back",
  18400. image: {
  18401. source: "./media/characters/dragonien/back.svg",
  18402. extra: 776 / 746,
  18403. bottom: 6.4 / 782.0616
  18404. }
  18405. },
  18406. foot: {
  18407. height: math.unit(1.54, "feet"),
  18408. name: "Foot",
  18409. image: {
  18410. source: "./media/characters/dragonien/foot.svg",
  18411. }
  18412. },
  18413. },
  18414. [
  18415. {
  18416. name: "Normal",
  18417. height: math.unit(8 + 4 / 12, "feet"),
  18418. default: true
  18419. },
  18420. {
  18421. name: "Macro",
  18422. height: math.unit(200, "feet")
  18423. },
  18424. {
  18425. name: "Megamacro",
  18426. height: math.unit(1, "mile")
  18427. },
  18428. {
  18429. name: "Gigamacro",
  18430. height: math.unit(1000, "miles")
  18431. },
  18432. ]
  18433. ))
  18434. characterMakers.push(() => makeCharacter(
  18435. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18436. {
  18437. front: {
  18438. height: math.unit(5 + 2 / 12, "feet"),
  18439. weight: math.unit(110, "lb"),
  18440. name: "Front",
  18441. image: {
  18442. source: "./media/characters/desta/front.svg",
  18443. extra: 767 / 726,
  18444. bottom: 11.7 / 779
  18445. }
  18446. },
  18447. back: {
  18448. height: math.unit(5 + 2 / 12, "feet"),
  18449. weight: math.unit(110, "lb"),
  18450. name: "Back",
  18451. image: {
  18452. source: "./media/characters/desta/back.svg",
  18453. extra: 777 / 728,
  18454. bottom: 6 / 784
  18455. }
  18456. },
  18457. frontAlt: {
  18458. height: math.unit(5 + 2 / 12, "feet"),
  18459. weight: math.unit(110, "lb"),
  18460. name: "Front",
  18461. image: {
  18462. source: "./media/characters/desta/front-alt.svg",
  18463. extra: 1482 / 1417
  18464. }
  18465. },
  18466. side: {
  18467. height: math.unit(5 + 2 / 12, "feet"),
  18468. weight: math.unit(110, "lb"),
  18469. name: "Side",
  18470. image: {
  18471. source: "./media/characters/desta/side.svg",
  18472. extra: 2579 / 2491,
  18473. bottom: 0.053
  18474. }
  18475. },
  18476. },
  18477. [
  18478. {
  18479. name: "Micro",
  18480. height: math.unit(6, "inches")
  18481. },
  18482. {
  18483. name: "Normal",
  18484. height: math.unit(5 + 2 / 12, "feet"),
  18485. default: true
  18486. },
  18487. {
  18488. name: "Macro",
  18489. height: math.unit(62, "feet")
  18490. },
  18491. {
  18492. name: "Megamacro",
  18493. height: math.unit(1800, "feet")
  18494. },
  18495. ]
  18496. ))
  18497. characterMakers.push(() => makeCharacter(
  18498. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18499. {
  18500. front: {
  18501. height: math.unit(10, "feet"),
  18502. weight: math.unit(700, "lb"),
  18503. name: "Front",
  18504. image: {
  18505. source: "./media/characters/storm-alystar/front.svg",
  18506. extra: 2112 / 1898,
  18507. bottom: 0.034
  18508. }
  18509. },
  18510. },
  18511. [
  18512. {
  18513. name: "Micro",
  18514. height: math.unit(3.5, "inches")
  18515. },
  18516. {
  18517. name: "Normal",
  18518. height: math.unit(10, "feet"),
  18519. default: true
  18520. },
  18521. {
  18522. name: "Macro",
  18523. height: math.unit(400, "feet")
  18524. },
  18525. {
  18526. name: "Deific",
  18527. height: math.unit(60, "miles")
  18528. },
  18529. ]
  18530. ))
  18531. characterMakers.push(() => makeCharacter(
  18532. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18533. {
  18534. front: {
  18535. height: math.unit(2.35, "meters"),
  18536. weight: math.unit(119, "kg"),
  18537. name: "Front",
  18538. image: {
  18539. source: "./media/characters/ilia/front.svg",
  18540. extra: 1285 / 1255,
  18541. bottom: 0.06
  18542. }
  18543. },
  18544. },
  18545. [
  18546. {
  18547. name: "Normal",
  18548. height: math.unit(2.35, "meters")
  18549. },
  18550. {
  18551. name: "Macro",
  18552. height: math.unit(140, "meters"),
  18553. default: true
  18554. },
  18555. {
  18556. name: "Megamacro",
  18557. height: math.unit(100, "miles")
  18558. },
  18559. ]
  18560. ))
  18561. characterMakers.push(() => makeCharacter(
  18562. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18563. {
  18564. front: {
  18565. height: math.unit(6 + 5 / 12, "feet"),
  18566. weight: math.unit(190, "lb"),
  18567. name: "Front",
  18568. image: {
  18569. source: "./media/characters/kingdead/front.svg",
  18570. extra: 1228 / 1177
  18571. }
  18572. },
  18573. },
  18574. [
  18575. {
  18576. name: "Micro",
  18577. height: math.unit(7, "inches")
  18578. },
  18579. {
  18580. name: "Normal",
  18581. height: math.unit(6 + 5 / 12, "feet")
  18582. },
  18583. {
  18584. name: "Macro",
  18585. height: math.unit(150, "feet"),
  18586. default: true
  18587. },
  18588. {
  18589. name: "Megamacro",
  18590. height: math.unit(200, "miles")
  18591. },
  18592. ]
  18593. ))
  18594. characterMakers.push(() => makeCharacter(
  18595. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18596. {
  18597. front: {
  18598. height: math.unit(8, "feet"),
  18599. weight: math.unit(600, "lb"),
  18600. name: "Front",
  18601. image: {
  18602. source: "./media/characters/kyrehx/front.svg",
  18603. extra: 1195 / 1095,
  18604. bottom: 0.034
  18605. }
  18606. },
  18607. },
  18608. [
  18609. {
  18610. name: "Micro",
  18611. height: math.unit(2, "inches")
  18612. },
  18613. {
  18614. name: "Normal",
  18615. height: math.unit(8, "feet"),
  18616. default: true
  18617. },
  18618. {
  18619. name: "Macro",
  18620. height: math.unit(255, "feet")
  18621. },
  18622. ]
  18623. ))
  18624. characterMakers.push(() => makeCharacter(
  18625. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18626. {
  18627. front: {
  18628. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18629. weight: math.unit(184, "lb"),
  18630. name: "Front",
  18631. image: {
  18632. source: "./media/characters/xang/front.svg",
  18633. extra: 845 / 755
  18634. }
  18635. },
  18636. },
  18637. [
  18638. {
  18639. name: "Normal",
  18640. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18641. default: true
  18642. },
  18643. {
  18644. name: "Macro",
  18645. height: math.unit(0.935 * 146, "feet")
  18646. },
  18647. {
  18648. name: "Megamacro",
  18649. height: math.unit(0.935 * 3, "miles")
  18650. },
  18651. ]
  18652. ))
  18653. characterMakers.push(() => makeCharacter(
  18654. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18655. {
  18656. frontDressed: {
  18657. height: math.unit(5 + 7 / 12, "feet"),
  18658. weight: math.unit(140, "lb"),
  18659. name: "Front (Dressed)",
  18660. image: {
  18661. source: "./media/characters/doc-weardno/front-dressed.svg",
  18662. extra: 263 / 234
  18663. }
  18664. },
  18665. backDressed: {
  18666. height: math.unit(5 + 7 / 12, "feet"),
  18667. weight: math.unit(140, "lb"),
  18668. name: "Back (Dressed)",
  18669. image: {
  18670. source: "./media/characters/doc-weardno/back-dressed.svg",
  18671. extra: 266 / 238
  18672. }
  18673. },
  18674. front: {
  18675. height: math.unit(5 + 7 / 12, "feet"),
  18676. weight: math.unit(140, "lb"),
  18677. name: "Front",
  18678. image: {
  18679. source: "./media/characters/doc-weardno/front.svg",
  18680. extra: 254 / 233
  18681. }
  18682. },
  18683. },
  18684. [
  18685. {
  18686. name: "Micro",
  18687. height: math.unit(3, "inches")
  18688. },
  18689. {
  18690. name: "Normal",
  18691. height: math.unit(5 + 7 / 12, "feet"),
  18692. default: true
  18693. },
  18694. {
  18695. name: "Macro",
  18696. height: math.unit(25, "feet")
  18697. },
  18698. {
  18699. name: "Megamacro",
  18700. height: math.unit(2, "miles")
  18701. },
  18702. ]
  18703. ))
  18704. characterMakers.push(() => makeCharacter(
  18705. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18706. {
  18707. front: {
  18708. height: math.unit(6 + 2 / 12, "feet"),
  18709. weight: math.unit(153, "lb"),
  18710. name: "Front",
  18711. image: {
  18712. source: "./media/characters/seth-whilst/front.svg",
  18713. bottom: 0.07
  18714. }
  18715. },
  18716. },
  18717. [
  18718. {
  18719. name: "Micro",
  18720. height: math.unit(5, "inches")
  18721. },
  18722. {
  18723. name: "Normal",
  18724. height: math.unit(6 + 2 / 12, "feet"),
  18725. default: true
  18726. },
  18727. ]
  18728. ))
  18729. characterMakers.push(() => makeCharacter(
  18730. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18731. {
  18732. front: {
  18733. height: math.unit(3, "inches"),
  18734. weight: math.unit(8, "grams"),
  18735. name: "Front",
  18736. image: {
  18737. source: "./media/characters/pocket-jabari/front.svg",
  18738. extra: 1024 / 974,
  18739. bottom: 0.039
  18740. }
  18741. },
  18742. },
  18743. [
  18744. {
  18745. name: "Minimicro",
  18746. height: math.unit(8, "mm")
  18747. },
  18748. {
  18749. name: "Micro",
  18750. height: math.unit(3, "inches"),
  18751. default: true
  18752. },
  18753. {
  18754. name: "Normal",
  18755. height: math.unit(3, "feet")
  18756. },
  18757. ]
  18758. ))
  18759. characterMakers.push(() => makeCharacter(
  18760. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18761. {
  18762. front: {
  18763. height: math.unit(15, "feet"),
  18764. weight: math.unit(3280, "lb"),
  18765. name: "Front",
  18766. image: {
  18767. source: "./media/characters/sapphy/front.svg",
  18768. extra: 671 / 577,
  18769. bottom: 0.085
  18770. }
  18771. },
  18772. back: {
  18773. height: math.unit(15, "feet"),
  18774. weight: math.unit(3280, "lb"),
  18775. name: "Back",
  18776. image: {
  18777. source: "./media/characters/sapphy/back.svg",
  18778. extra: 631 / 607,
  18779. bottom: 0.045
  18780. }
  18781. },
  18782. },
  18783. [
  18784. {
  18785. name: "Normal",
  18786. height: math.unit(15, "feet")
  18787. },
  18788. {
  18789. name: "Casual Macro",
  18790. height: math.unit(120, "feet")
  18791. },
  18792. {
  18793. name: "Macro",
  18794. height: math.unit(2150, "feet"),
  18795. default: true
  18796. },
  18797. {
  18798. name: "Megamacro",
  18799. height: math.unit(8, "miles")
  18800. },
  18801. {
  18802. name: "Galaxy Mom",
  18803. height: math.unit(6, "megalightyears")
  18804. },
  18805. ]
  18806. ))
  18807. characterMakers.push(() => makeCharacter(
  18808. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18809. {
  18810. front: {
  18811. height: math.unit(6, "feet"),
  18812. weight: math.unit(170, "lb"),
  18813. name: "Front",
  18814. image: {
  18815. source: "./media/characters/kiro/front.svg",
  18816. extra: 1064 / 1012,
  18817. bottom: 0.052
  18818. }
  18819. },
  18820. },
  18821. [
  18822. {
  18823. name: "Micro",
  18824. height: math.unit(6, "inches")
  18825. },
  18826. {
  18827. name: "Normal",
  18828. height: math.unit(6, "feet"),
  18829. default: true
  18830. },
  18831. {
  18832. name: "Macro",
  18833. height: math.unit(72, "feet")
  18834. },
  18835. ]
  18836. ))
  18837. characterMakers.push(() => makeCharacter(
  18838. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18839. {
  18840. front: {
  18841. height: math.unit(5 + 9 / 12, "feet"),
  18842. weight: math.unit(175, "lb"),
  18843. name: "Front",
  18844. image: {
  18845. source: "./media/characters/irishfox/front.svg",
  18846. extra: 1912 / 1680,
  18847. bottom: 0.02
  18848. }
  18849. },
  18850. },
  18851. [
  18852. {
  18853. name: "Nano",
  18854. height: math.unit(1, "mm")
  18855. },
  18856. {
  18857. name: "Micro",
  18858. height: math.unit(2, "inches")
  18859. },
  18860. {
  18861. name: "Normal",
  18862. height: math.unit(5 + 9 / 12, "feet"),
  18863. default: true
  18864. },
  18865. {
  18866. name: "Macro",
  18867. height: math.unit(45, "feet")
  18868. },
  18869. ]
  18870. ))
  18871. characterMakers.push(() => makeCharacter(
  18872. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18873. {
  18874. front: {
  18875. height: math.unit(6 + 1 / 12, "feet"),
  18876. weight: math.unit(75, "lb"),
  18877. name: "Front",
  18878. image: {
  18879. source: "./media/characters/aronai-sieyes/front.svg",
  18880. extra: 1556 / 1480,
  18881. bottom: 0.015
  18882. }
  18883. },
  18884. side: {
  18885. height: math.unit(6 + 1 / 12, "feet"),
  18886. weight: math.unit(75, "lb"),
  18887. name: "Side",
  18888. image: {
  18889. source: "./media/characters/aronai-sieyes/side.svg",
  18890. extra: 1433 / 1390,
  18891. bottom: 0.0393
  18892. }
  18893. },
  18894. back: {
  18895. height: math.unit(6 + 1 / 12, "feet"),
  18896. weight: math.unit(75, "lb"),
  18897. name: "Back",
  18898. image: {
  18899. source: "./media/characters/aronai-sieyes/back.svg",
  18900. extra: 1544 / 1494,
  18901. bottom: 0.02
  18902. }
  18903. },
  18904. frontClothed: {
  18905. height: math.unit(6 + 1 / 12, "feet"),
  18906. weight: math.unit(75, "lb"),
  18907. name: "Front (Clothed)",
  18908. image: {
  18909. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18910. extra: 1582 / 1527
  18911. }
  18912. },
  18913. feral: {
  18914. height: math.unit(18, "feet"),
  18915. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18916. name: "Feral",
  18917. image: {
  18918. source: "./media/characters/aronai-sieyes/feral.svg",
  18919. extra: 1530 / 1240,
  18920. bottom: 0.035
  18921. }
  18922. },
  18923. },
  18924. [
  18925. {
  18926. name: "Micro",
  18927. height: math.unit(2, "inches")
  18928. },
  18929. {
  18930. name: "Normal",
  18931. height: math.unit(6 + 1 / 12, "feet"),
  18932. default: true
  18933. }
  18934. ]
  18935. ))
  18936. characterMakers.push(() => makeCharacter(
  18937. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18938. {
  18939. front: {
  18940. height: math.unit(12, "feet"),
  18941. weight: math.unit(410, "kg"),
  18942. name: "Front",
  18943. image: {
  18944. source: "./media/characters/xuna/front.svg",
  18945. extra: 2184 / 1980
  18946. }
  18947. },
  18948. side: {
  18949. height: math.unit(12, "feet"),
  18950. weight: math.unit(410, "kg"),
  18951. name: "Side",
  18952. image: {
  18953. source: "./media/characters/xuna/side.svg",
  18954. extra: 2184 / 1980
  18955. }
  18956. },
  18957. back: {
  18958. height: math.unit(12, "feet"),
  18959. weight: math.unit(410, "kg"),
  18960. name: "Back",
  18961. image: {
  18962. source: "./media/characters/xuna/back.svg",
  18963. extra: 2184 / 1980
  18964. }
  18965. },
  18966. },
  18967. [
  18968. {
  18969. name: "Nano glow",
  18970. height: math.unit(10, "nm")
  18971. },
  18972. {
  18973. name: "Micro floof",
  18974. height: math.unit(0.3, "m")
  18975. },
  18976. {
  18977. name: "Huggable softy boi",
  18978. height: math.unit(3.6576, "m"),
  18979. default: true
  18980. },
  18981. {
  18982. name: "Admirable floof",
  18983. height: math.unit(80, "meters")
  18984. },
  18985. {
  18986. name: "Gentle macro",
  18987. height: math.unit(300, "meters")
  18988. },
  18989. {
  18990. name: "Very careful floof",
  18991. height: math.unit(3200, "meters")
  18992. },
  18993. {
  18994. name: "The mega floof",
  18995. height: math.unit(36000, "meters")
  18996. },
  18997. {
  18998. name: "Giga-fur-Wicker",
  18999. height: math.unit(4800000, "meters")
  19000. },
  19001. {
  19002. name: "Licky world",
  19003. height: math.unit(20000000, "meters")
  19004. },
  19005. {
  19006. name: "Floofy cyan sun",
  19007. height: math.unit(1500000000, "meters")
  19008. },
  19009. {
  19010. name: "Milky Wicker",
  19011. height: math.unit(1000000000000000000000, "meters")
  19012. },
  19013. {
  19014. name: "The observing Wicker",
  19015. height: math.unit(999999999999999999999999999, "meters")
  19016. },
  19017. ]
  19018. ))
  19019. characterMakers.push(() => makeCharacter(
  19020. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19021. {
  19022. front: {
  19023. height: math.unit(5 + 9 / 12, "feet"),
  19024. weight: math.unit(150, "lb"),
  19025. name: "Front",
  19026. image: {
  19027. source: "./media/characters/arokha-sieyes/front.svg",
  19028. extra: 1425 / 1284,
  19029. bottom: 0.05
  19030. }
  19031. },
  19032. },
  19033. [
  19034. {
  19035. name: "Normal",
  19036. height: math.unit(5 + 9 / 12, "feet")
  19037. },
  19038. {
  19039. name: "Macro",
  19040. height: math.unit(30, "meters"),
  19041. default: true
  19042. },
  19043. ]
  19044. ))
  19045. characterMakers.push(() => makeCharacter(
  19046. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19047. {
  19048. front: {
  19049. height: math.unit(6, "feet"),
  19050. weight: math.unit(180, "lb"),
  19051. name: "Front",
  19052. image: {
  19053. source: "./media/characters/arokh-sieyes/front.svg",
  19054. extra: 1830 / 1769,
  19055. bottom: 0.01
  19056. }
  19057. },
  19058. },
  19059. [
  19060. {
  19061. name: "Normal",
  19062. height: math.unit(6, "feet")
  19063. },
  19064. {
  19065. name: "Macro",
  19066. height: math.unit(30, "meters"),
  19067. default: true
  19068. },
  19069. ]
  19070. ))
  19071. characterMakers.push(() => makeCharacter(
  19072. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19073. {
  19074. side: {
  19075. height: math.unit(13 + 1 / 12, "feet"),
  19076. weight: math.unit(8.5, "tonnes"),
  19077. name: "Side",
  19078. image: {
  19079. source: "./media/characters/goldeneye/side.svg",
  19080. extra: 1182 / 778,
  19081. bottom: 0.067
  19082. }
  19083. },
  19084. paw: {
  19085. height: math.unit(3.4, "feet"),
  19086. name: "Paw",
  19087. image: {
  19088. source: "./media/characters/goldeneye/paw.svg"
  19089. }
  19090. },
  19091. },
  19092. [
  19093. {
  19094. name: "Normal",
  19095. height: math.unit(13 + 1 / 12, "feet"),
  19096. default: true
  19097. },
  19098. ]
  19099. ))
  19100. characterMakers.push(() => makeCharacter(
  19101. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19102. {
  19103. front: {
  19104. height: math.unit(6 + 1 / 12, "feet"),
  19105. weight: math.unit(210, "lb"),
  19106. name: "Front",
  19107. image: {
  19108. source: "./media/characters/leonardo-lycheborne/front.svg",
  19109. extra: 776/723,
  19110. bottom: 34/810
  19111. }
  19112. },
  19113. side: {
  19114. height: math.unit(6 + 1 / 12, "feet"),
  19115. weight: math.unit(210, "lb"),
  19116. name: "Side",
  19117. image: {
  19118. source: "./media/characters/leonardo-lycheborne/side.svg",
  19119. extra: 780/728,
  19120. bottom: 12/792
  19121. }
  19122. },
  19123. back: {
  19124. height: math.unit(6 + 1 / 12, "feet"),
  19125. weight: math.unit(210, "lb"),
  19126. name: "Back",
  19127. image: {
  19128. source: "./media/characters/leonardo-lycheborne/back.svg",
  19129. extra: 775/721,
  19130. bottom: 17/792
  19131. }
  19132. },
  19133. hand: {
  19134. height: math.unit(1.08, "feet"),
  19135. name: "Hand",
  19136. image: {
  19137. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19138. }
  19139. },
  19140. foot: {
  19141. height: math.unit(1.32, "feet"),
  19142. name: "Foot",
  19143. image: {
  19144. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19145. }
  19146. },
  19147. maw: {
  19148. height: math.unit(1, "feet"),
  19149. name: "Maw",
  19150. image: {
  19151. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19152. }
  19153. },
  19154. were: {
  19155. height: math.unit(20, "feet"),
  19156. weight: math.unit(7800, "lb"),
  19157. name: "Were",
  19158. image: {
  19159. source: "./media/characters/leonardo-lycheborne/were.svg",
  19160. extra: 1224/1165,
  19161. bottom: 72/1296
  19162. }
  19163. },
  19164. feral: {
  19165. height: math.unit(7.5, "feet"),
  19166. weight: math.unit(600, "lb"),
  19167. name: "Feral",
  19168. image: {
  19169. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19170. extra: 797/702,
  19171. bottom: 139/936
  19172. }
  19173. },
  19174. taur: {
  19175. height: math.unit(11, "feet"),
  19176. weight: math.unit(3300, "lb"),
  19177. name: "Taur",
  19178. image: {
  19179. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19180. extra: 1271/1197,
  19181. bottom: 47/1318
  19182. }
  19183. },
  19184. barghest: {
  19185. height: math.unit(11, "feet"),
  19186. weight: math.unit(1300, "lb"),
  19187. name: "Barghest",
  19188. image: {
  19189. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19190. extra: 1291/1204,
  19191. bottom: 37/1328
  19192. }
  19193. },
  19194. dick: {
  19195. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19196. name: "Dick",
  19197. image: {
  19198. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19199. }
  19200. },
  19201. dickWere: {
  19202. height: math.unit((20) / 3.8, "feet"),
  19203. name: "Dick (Were)",
  19204. image: {
  19205. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19206. }
  19207. },
  19208. },
  19209. [
  19210. {
  19211. name: "Normal",
  19212. height: math.unit(6 + 1 / 12, "feet"),
  19213. default: true
  19214. },
  19215. ]
  19216. ))
  19217. characterMakers.push(() => makeCharacter(
  19218. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19219. {
  19220. front: {
  19221. height: math.unit(10, "feet"),
  19222. weight: math.unit(350, "lb"),
  19223. name: "Front",
  19224. image: {
  19225. source: "./media/characters/jet/front.svg",
  19226. extra: 2050 / 1980,
  19227. bottom: 0.013
  19228. }
  19229. },
  19230. back: {
  19231. height: math.unit(10, "feet"),
  19232. weight: math.unit(350, "lb"),
  19233. name: "Back",
  19234. image: {
  19235. source: "./media/characters/jet/back.svg",
  19236. extra: 2050 / 1980,
  19237. bottom: 0.013
  19238. }
  19239. },
  19240. },
  19241. [
  19242. {
  19243. name: "Micro",
  19244. height: math.unit(6, "inches")
  19245. },
  19246. {
  19247. name: "Normal",
  19248. height: math.unit(10, "feet"),
  19249. default: true
  19250. },
  19251. {
  19252. name: "Macro",
  19253. height: math.unit(100, "feet")
  19254. },
  19255. ]
  19256. ))
  19257. characterMakers.push(() => makeCharacter(
  19258. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19259. {
  19260. front: {
  19261. height: math.unit(15, "feet"),
  19262. weight: math.unit(2800, "lb"),
  19263. name: "Front",
  19264. image: {
  19265. source: "./media/characters/tanarath/front.svg",
  19266. extra: 2392 / 2220,
  19267. bottom: 0.03
  19268. }
  19269. },
  19270. back: {
  19271. height: math.unit(15, "feet"),
  19272. weight: math.unit(2800, "lb"),
  19273. name: "Back",
  19274. image: {
  19275. source: "./media/characters/tanarath/back.svg",
  19276. extra: 2392 / 2220,
  19277. bottom: 0.03
  19278. }
  19279. },
  19280. },
  19281. [
  19282. {
  19283. name: "Normal",
  19284. height: math.unit(15, "feet"),
  19285. default: true
  19286. },
  19287. ]
  19288. ))
  19289. characterMakers.push(() => makeCharacter(
  19290. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19291. {
  19292. front: {
  19293. height: math.unit(7 + 1 / 12, "feet"),
  19294. weight: math.unit(175, "lb"),
  19295. name: "Front",
  19296. image: {
  19297. source: "./media/characters/patty-cattybatty/front.svg",
  19298. extra: 908 / 874,
  19299. bottom: 0.025
  19300. }
  19301. },
  19302. },
  19303. [
  19304. {
  19305. name: "Micro",
  19306. height: math.unit(1, "inch")
  19307. },
  19308. {
  19309. name: "Normal",
  19310. height: math.unit(7 + 1 / 12, "feet")
  19311. },
  19312. {
  19313. name: "Mini Macro",
  19314. height: math.unit(155, "feet")
  19315. },
  19316. {
  19317. name: "Macro",
  19318. height: math.unit(1077, "feet")
  19319. },
  19320. {
  19321. name: "Mega Macro",
  19322. height: math.unit(47650, "feet"),
  19323. default: true
  19324. },
  19325. {
  19326. name: "Giga Macro",
  19327. height: math.unit(440, "miles")
  19328. },
  19329. {
  19330. name: "Tera Macro",
  19331. height: math.unit(8700, "miles")
  19332. },
  19333. {
  19334. name: "Planetary Macro",
  19335. height: math.unit(32700, "miles")
  19336. },
  19337. {
  19338. name: "Solar Macro",
  19339. height: math.unit(550000, "miles")
  19340. },
  19341. {
  19342. name: "Celestial Macro",
  19343. height: math.unit(2.5, "AU")
  19344. },
  19345. ]
  19346. ))
  19347. characterMakers.push(() => makeCharacter(
  19348. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19349. {
  19350. front: {
  19351. height: math.unit(4 + 5 / 12, "feet"),
  19352. weight: math.unit(90, "lb"),
  19353. name: "Front",
  19354. image: {
  19355. source: "./media/characters/cappu/front.svg",
  19356. extra: 1247 / 1152,
  19357. bottom: 0.012
  19358. }
  19359. },
  19360. },
  19361. [
  19362. {
  19363. name: "Normal",
  19364. height: math.unit(4 + 5 / 12, "feet"),
  19365. default: true
  19366. },
  19367. ]
  19368. ))
  19369. characterMakers.push(() => makeCharacter(
  19370. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19371. {
  19372. frontDressed: {
  19373. height: math.unit(70, "cm"),
  19374. weight: math.unit(6, "kg"),
  19375. name: "Front (Dressed)",
  19376. image: {
  19377. source: "./media/characters/sebi/front-dressed.svg",
  19378. extra: 713.5 / 686.5,
  19379. bottom: 0.003
  19380. }
  19381. },
  19382. front: {
  19383. height: math.unit(70, "cm"),
  19384. weight: math.unit(5, "kg"),
  19385. name: "Front",
  19386. image: {
  19387. source: "./media/characters/sebi/front.svg",
  19388. extra: 713.5 / 686.5,
  19389. bottom: 0.003
  19390. }
  19391. }
  19392. },
  19393. [
  19394. {
  19395. name: "Normal",
  19396. height: math.unit(70, "cm"),
  19397. default: true
  19398. },
  19399. {
  19400. name: "Macro",
  19401. height: math.unit(8, "meters")
  19402. },
  19403. ]
  19404. ))
  19405. characterMakers.push(() => makeCharacter(
  19406. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19407. {
  19408. front: {
  19409. height: math.unit(6, "feet"),
  19410. weight: math.unit(150, "lb"),
  19411. name: "Front",
  19412. image: {
  19413. source: "./media/characters/typhek/front.svg",
  19414. extra: 1948 / 1929,
  19415. bottom: 0.025
  19416. }
  19417. },
  19418. side: {
  19419. height: math.unit(6, "feet"),
  19420. weight: math.unit(150, "lb"),
  19421. name: "Side",
  19422. image: {
  19423. source: "./media/characters/typhek/side.svg",
  19424. extra: 2034 / 2010,
  19425. bottom: 0.003
  19426. }
  19427. },
  19428. back: {
  19429. height: math.unit(6, "feet"),
  19430. weight: math.unit(150, "lb"),
  19431. name: "Back",
  19432. image: {
  19433. source: "./media/characters/typhek/back.svg",
  19434. extra: 2005 / 1978,
  19435. bottom: 0.004
  19436. }
  19437. },
  19438. palm: {
  19439. height: math.unit(1.2, "feet"),
  19440. name: "Palm",
  19441. image: {
  19442. source: "./media/characters/typhek/palm.svg"
  19443. }
  19444. },
  19445. fist: {
  19446. height: math.unit(1.1, "feet"),
  19447. name: "Fist",
  19448. image: {
  19449. source: "./media/characters/typhek/fist.svg"
  19450. }
  19451. },
  19452. foot: {
  19453. height: math.unit(1.57, "feet"),
  19454. name: "Foot",
  19455. image: {
  19456. source: "./media/characters/typhek/foot.svg"
  19457. }
  19458. },
  19459. sole: {
  19460. height: math.unit(2.05, "feet"),
  19461. name: "Sole",
  19462. image: {
  19463. source: "./media/characters/typhek/sole.svg"
  19464. }
  19465. },
  19466. },
  19467. [
  19468. {
  19469. name: "Macro",
  19470. height: math.unit(40, "stories"),
  19471. default: true
  19472. },
  19473. {
  19474. name: "Megamacro",
  19475. height: math.unit(1, "mile")
  19476. },
  19477. {
  19478. name: "Gigamacro",
  19479. height: math.unit(4000, "solarradii")
  19480. },
  19481. {
  19482. name: "Universal",
  19483. height: math.unit(1.1, "universes")
  19484. }
  19485. ]
  19486. ))
  19487. characterMakers.push(() => makeCharacter(
  19488. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19489. {
  19490. side: {
  19491. height: math.unit(5 + 7 / 12, "feet"),
  19492. weight: math.unit(150, "lb"),
  19493. name: "Side",
  19494. image: {
  19495. source: "./media/characters/kassy/side.svg",
  19496. extra: 1280 / 1225,
  19497. bottom: 0.002
  19498. }
  19499. },
  19500. front: {
  19501. height: math.unit(5 + 7 / 12, "feet"),
  19502. weight: math.unit(150, "lb"),
  19503. name: "Front",
  19504. image: {
  19505. source: "./media/characters/kassy/front.svg",
  19506. extra: 1280 / 1225,
  19507. bottom: 0.025
  19508. }
  19509. },
  19510. back: {
  19511. height: math.unit(5 + 7 / 12, "feet"),
  19512. weight: math.unit(150, "lb"),
  19513. name: "Back",
  19514. image: {
  19515. source: "./media/characters/kassy/back.svg",
  19516. extra: 1280 / 1225,
  19517. bottom: 0.002
  19518. }
  19519. },
  19520. foot: {
  19521. height: math.unit(1.266, "feet"),
  19522. name: "Foot",
  19523. image: {
  19524. source: "./media/characters/kassy/foot.svg"
  19525. }
  19526. },
  19527. },
  19528. [
  19529. {
  19530. name: "Normal",
  19531. height: math.unit(5 + 7 / 12, "feet")
  19532. },
  19533. {
  19534. name: "Macro",
  19535. height: math.unit(137, "feet"),
  19536. default: true
  19537. },
  19538. {
  19539. name: "Megamacro",
  19540. height: math.unit(1, "mile")
  19541. },
  19542. ]
  19543. ))
  19544. characterMakers.push(() => makeCharacter(
  19545. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19546. {
  19547. front: {
  19548. height: math.unit(6 + 1 / 12, "feet"),
  19549. weight: math.unit(200, "lb"),
  19550. name: "Front",
  19551. image: {
  19552. source: "./media/characters/neil/front.svg",
  19553. extra: 1326 / 1250,
  19554. bottom: 0.023
  19555. }
  19556. },
  19557. },
  19558. [
  19559. {
  19560. name: "Normal",
  19561. height: math.unit(6 + 1 / 12, "feet"),
  19562. default: true
  19563. },
  19564. {
  19565. name: "Macro",
  19566. height: math.unit(200, "feet")
  19567. },
  19568. ]
  19569. ))
  19570. characterMakers.push(() => makeCharacter(
  19571. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19572. {
  19573. front: {
  19574. height: math.unit(5 + 9 / 12, "feet"),
  19575. weight: math.unit(190, "lb"),
  19576. name: "Front",
  19577. image: {
  19578. source: "./media/characters/atticus/front.svg",
  19579. extra: 2934 / 2785,
  19580. bottom: 0.025
  19581. }
  19582. },
  19583. },
  19584. [
  19585. {
  19586. name: "Normal",
  19587. height: math.unit(5 + 9 / 12, "feet"),
  19588. default: true
  19589. },
  19590. {
  19591. name: "Macro",
  19592. height: math.unit(180, "feet")
  19593. },
  19594. ]
  19595. ))
  19596. characterMakers.push(() => makeCharacter(
  19597. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19598. {
  19599. side: {
  19600. height: math.unit(9, "feet"),
  19601. weight: math.unit(650, "lb"),
  19602. name: "Side",
  19603. image: {
  19604. source: "./media/characters/milo/side.svg",
  19605. extra: 2644 / 2310,
  19606. bottom: 0.032
  19607. }
  19608. },
  19609. },
  19610. [
  19611. {
  19612. name: "Normal",
  19613. height: math.unit(9, "feet"),
  19614. default: true
  19615. },
  19616. {
  19617. name: "Macro",
  19618. height: math.unit(300, "feet")
  19619. },
  19620. ]
  19621. ))
  19622. characterMakers.push(() => makeCharacter(
  19623. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19624. {
  19625. side: {
  19626. height: math.unit(8, "meters"),
  19627. weight: math.unit(90000, "kg"),
  19628. name: "Side",
  19629. image: {
  19630. source: "./media/characters/ijzer/side.svg",
  19631. extra: 2756 / 1600,
  19632. bottom: 0.01
  19633. }
  19634. },
  19635. },
  19636. [
  19637. {
  19638. name: "Small",
  19639. height: math.unit(3, "meters")
  19640. },
  19641. {
  19642. name: "Normal",
  19643. height: math.unit(8, "meters"),
  19644. default: true
  19645. },
  19646. {
  19647. name: "Normal+",
  19648. height: math.unit(10, "meters")
  19649. },
  19650. {
  19651. name: "Bigger",
  19652. height: math.unit(24, "meters")
  19653. },
  19654. {
  19655. name: "Huge",
  19656. height: math.unit(80, "meters")
  19657. },
  19658. ]
  19659. ))
  19660. characterMakers.push(() => makeCharacter(
  19661. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19662. {
  19663. front: {
  19664. height: math.unit(6 + 2 / 12, "feet"),
  19665. weight: math.unit(153, "lb"),
  19666. name: "Front",
  19667. image: {
  19668. source: "./media/characters/luca-cervicum/front.svg",
  19669. extra: 370 / 327,
  19670. bottom: 0.015
  19671. }
  19672. },
  19673. back: {
  19674. height: math.unit(6 + 2 / 12, "feet"),
  19675. weight: math.unit(153, "lb"),
  19676. name: "Back",
  19677. image: {
  19678. source: "./media/characters/luca-cervicum/back.svg",
  19679. extra: 367 / 333,
  19680. bottom: 0.005
  19681. }
  19682. },
  19683. frontGear: {
  19684. height: math.unit(6 + 2 / 12, "feet"),
  19685. weight: math.unit(173, "lb"),
  19686. name: "Front (Gear)",
  19687. image: {
  19688. source: "./media/characters/luca-cervicum/front-gear.svg",
  19689. extra: 377 / 333,
  19690. bottom: 0.006
  19691. }
  19692. },
  19693. },
  19694. [
  19695. {
  19696. name: "Normal",
  19697. height: math.unit(6 + 2 / 12, "feet"),
  19698. default: true
  19699. },
  19700. ]
  19701. ))
  19702. characterMakers.push(() => makeCharacter(
  19703. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19704. {
  19705. front: {
  19706. height: math.unit(6 + 1 / 12, "feet"),
  19707. weight: math.unit(304, "lb"),
  19708. name: "Front",
  19709. image: {
  19710. source: "./media/characters/oliver/front.svg",
  19711. extra: 157 / 143,
  19712. bottom: 0.08
  19713. }
  19714. },
  19715. },
  19716. [
  19717. {
  19718. name: "Normal",
  19719. height: math.unit(6 + 1 / 12, "feet"),
  19720. default: true
  19721. },
  19722. ]
  19723. ))
  19724. characterMakers.push(() => makeCharacter(
  19725. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19726. {
  19727. front: {
  19728. height: math.unit(5 + 7 / 12, "feet"),
  19729. weight: math.unit(140, "lb"),
  19730. name: "Front",
  19731. image: {
  19732. source: "./media/characters/shane/front.svg",
  19733. extra: 304 / 289,
  19734. bottom: 0.005
  19735. }
  19736. },
  19737. },
  19738. [
  19739. {
  19740. name: "Normal",
  19741. height: math.unit(5 + 7 / 12, "feet"),
  19742. default: true
  19743. },
  19744. ]
  19745. ))
  19746. characterMakers.push(() => makeCharacter(
  19747. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19748. {
  19749. front: {
  19750. height: math.unit(5 + 9 / 12, "feet"),
  19751. weight: math.unit(178, "lb"),
  19752. name: "Front",
  19753. image: {
  19754. source: "./media/characters/shin/front.svg",
  19755. extra: 159 / 151,
  19756. bottom: 0.015
  19757. }
  19758. },
  19759. },
  19760. [
  19761. {
  19762. name: "Normal",
  19763. height: math.unit(5 + 9 / 12, "feet"),
  19764. default: true
  19765. },
  19766. ]
  19767. ))
  19768. characterMakers.push(() => makeCharacter(
  19769. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19770. {
  19771. front: {
  19772. height: math.unit(5 + 10 / 12, "feet"),
  19773. weight: math.unit(168, "lb"),
  19774. name: "Front",
  19775. image: {
  19776. source: "./media/characters/xerxes/front.svg",
  19777. extra: 282 / 260,
  19778. bottom: 0.045
  19779. }
  19780. },
  19781. },
  19782. [
  19783. {
  19784. name: "Normal",
  19785. height: math.unit(5 + 10 / 12, "feet"),
  19786. default: true
  19787. },
  19788. ]
  19789. ))
  19790. characterMakers.push(() => makeCharacter(
  19791. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19792. {
  19793. front: {
  19794. height: math.unit(6 + 7 / 12, "feet"),
  19795. weight: math.unit(208, "lb"),
  19796. name: "Front",
  19797. image: {
  19798. source: "./media/characters/chaska/front.svg",
  19799. extra: 332 / 319,
  19800. bottom: 0.015
  19801. }
  19802. },
  19803. },
  19804. [
  19805. {
  19806. name: "Normal",
  19807. height: math.unit(6 + 7 / 12, "feet"),
  19808. default: true
  19809. },
  19810. ]
  19811. ))
  19812. characterMakers.push(() => makeCharacter(
  19813. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19814. {
  19815. front: {
  19816. height: math.unit(5 + 8 / 12, "feet"),
  19817. weight: math.unit(208, "lb"),
  19818. name: "Front",
  19819. image: {
  19820. source: "./media/characters/enuk/front.svg",
  19821. extra: 437 / 406,
  19822. bottom: 0.02
  19823. }
  19824. },
  19825. },
  19826. [
  19827. {
  19828. name: "Normal",
  19829. height: math.unit(5 + 8 / 12, "feet"),
  19830. default: true
  19831. },
  19832. ]
  19833. ))
  19834. characterMakers.push(() => makeCharacter(
  19835. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19836. {
  19837. front: {
  19838. height: math.unit(5 + 10 / 12, "feet"),
  19839. weight: math.unit(252, "lb"),
  19840. name: "Front",
  19841. image: {
  19842. source: "./media/characters/bruun/front.svg",
  19843. extra: 197 / 187,
  19844. bottom: 0.012
  19845. }
  19846. },
  19847. },
  19848. [
  19849. {
  19850. name: "Normal",
  19851. height: math.unit(5 + 10 / 12, "feet"),
  19852. default: true
  19853. },
  19854. ]
  19855. ))
  19856. characterMakers.push(() => makeCharacter(
  19857. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19858. {
  19859. front: {
  19860. height: math.unit(6 + 10 / 12, "feet"),
  19861. weight: math.unit(255, "lb"),
  19862. name: "Front",
  19863. image: {
  19864. source: "./media/characters/alexeev/front.svg",
  19865. extra: 213 / 200,
  19866. bottom: 0.05
  19867. }
  19868. },
  19869. },
  19870. [
  19871. {
  19872. name: "Normal",
  19873. height: math.unit(6 + 10 / 12, "feet"),
  19874. default: true
  19875. },
  19876. ]
  19877. ))
  19878. characterMakers.push(() => makeCharacter(
  19879. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19880. {
  19881. front: {
  19882. height: math.unit(2 + 8 / 12, "feet"),
  19883. weight: math.unit(22, "lb"),
  19884. name: "Front",
  19885. image: {
  19886. source: "./media/characters/evelyn/front.svg",
  19887. extra: 208 / 180
  19888. }
  19889. },
  19890. },
  19891. [
  19892. {
  19893. name: "Normal",
  19894. height: math.unit(2 + 8 / 12, "feet"),
  19895. default: true
  19896. },
  19897. ]
  19898. ))
  19899. characterMakers.push(() => makeCharacter(
  19900. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19901. {
  19902. front: {
  19903. height: math.unit(5 + 9 / 12, "feet"),
  19904. weight: math.unit(139, "lb"),
  19905. name: "Front",
  19906. image: {
  19907. source: "./media/characters/inca/front.svg",
  19908. extra: 294 / 291,
  19909. bottom: 0.03
  19910. }
  19911. },
  19912. },
  19913. [
  19914. {
  19915. name: "Normal",
  19916. height: math.unit(5 + 9 / 12, "feet"),
  19917. default: true
  19918. },
  19919. ]
  19920. ))
  19921. characterMakers.push(() => makeCharacter(
  19922. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19923. {
  19924. front: {
  19925. height: math.unit(5 + 1 / 12, "feet"),
  19926. weight: math.unit(84, "lb"),
  19927. name: "Front",
  19928. image: {
  19929. source: "./media/characters/magdalene/front.svg",
  19930. extra: 293 / 273
  19931. }
  19932. },
  19933. },
  19934. [
  19935. {
  19936. name: "Normal",
  19937. height: math.unit(5 + 1 / 12, "feet"),
  19938. default: true
  19939. },
  19940. ]
  19941. ))
  19942. characterMakers.push(() => makeCharacter(
  19943. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19944. {
  19945. front: {
  19946. height: math.unit(6 + 3 / 12, "feet"),
  19947. weight: math.unit(185, "lb"),
  19948. name: "Front",
  19949. image: {
  19950. source: "./media/characters/mera/front.svg",
  19951. extra: 291 / 277,
  19952. bottom: 0.03
  19953. }
  19954. },
  19955. },
  19956. [
  19957. {
  19958. name: "Normal",
  19959. height: math.unit(6 + 3 / 12, "feet"),
  19960. default: true
  19961. },
  19962. ]
  19963. ))
  19964. characterMakers.push(() => makeCharacter(
  19965. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19966. {
  19967. front: {
  19968. height: math.unit(6 + 7 / 12, "feet"),
  19969. weight: math.unit(160, "lb"),
  19970. name: "Front",
  19971. image: {
  19972. source: "./media/characters/ceres/front.svg",
  19973. extra: 1023 / 950,
  19974. bottom: 0.027
  19975. }
  19976. },
  19977. back: {
  19978. height: math.unit(6 + 7 / 12, "feet"),
  19979. weight: math.unit(160, "lb"),
  19980. name: "Back",
  19981. image: {
  19982. source: "./media/characters/ceres/back.svg",
  19983. extra: 1023 / 950
  19984. }
  19985. },
  19986. },
  19987. [
  19988. {
  19989. name: "Normal",
  19990. height: math.unit(6 + 7 / 12, "feet"),
  19991. default: true
  19992. },
  19993. ]
  19994. ))
  19995. characterMakers.push(() => makeCharacter(
  19996. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19997. {
  19998. front: {
  19999. height: math.unit(5 + 10 / 12, "feet"),
  20000. weight: math.unit(150, "lb"),
  20001. name: "Front",
  20002. image: {
  20003. source: "./media/characters/kris/front.svg",
  20004. extra: 885 / 803,
  20005. bottom: 0.03
  20006. }
  20007. },
  20008. },
  20009. [
  20010. {
  20011. name: "Normal",
  20012. height: math.unit(5 + 10 / 12, "feet"),
  20013. default: true
  20014. },
  20015. ]
  20016. ))
  20017. characterMakers.push(() => makeCharacter(
  20018. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20019. {
  20020. front: {
  20021. height: math.unit(7, "feet"),
  20022. weight: math.unit(120, "kg"),
  20023. name: "Front",
  20024. image: {
  20025. source: "./media/characters/taluthus/front.svg",
  20026. extra: 903 / 833,
  20027. bottom: 0.015
  20028. }
  20029. },
  20030. },
  20031. [
  20032. {
  20033. name: "Normal",
  20034. height: math.unit(7, "feet"),
  20035. default: true
  20036. },
  20037. {
  20038. name: "Macro",
  20039. height: math.unit(300, "feet")
  20040. },
  20041. ]
  20042. ))
  20043. characterMakers.push(() => makeCharacter(
  20044. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20045. {
  20046. front: {
  20047. height: math.unit(5 + 9 / 12, "feet"),
  20048. weight: math.unit(145, "lb"),
  20049. name: "Front",
  20050. image: {
  20051. source: "./media/characters/dawn/front.svg",
  20052. extra: 2094 / 2016,
  20053. bottom: 0.025
  20054. }
  20055. },
  20056. back: {
  20057. height: math.unit(5 + 9 / 12, "feet"),
  20058. weight: math.unit(160, "lb"),
  20059. name: "Back",
  20060. image: {
  20061. source: "./media/characters/dawn/back.svg",
  20062. extra: 2112 / 2080,
  20063. bottom: 0.005
  20064. }
  20065. },
  20066. },
  20067. [
  20068. {
  20069. name: "Normal",
  20070. height: math.unit(6 + 7 / 12, "feet"),
  20071. default: true
  20072. },
  20073. ]
  20074. ))
  20075. characterMakers.push(() => makeCharacter(
  20076. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20077. {
  20078. anthro: {
  20079. height: math.unit(8 + 3 / 12, "feet"),
  20080. weight: math.unit(450, "lb"),
  20081. name: "Anthro",
  20082. image: {
  20083. source: "./media/characters/arador/anthro.svg",
  20084. extra: 1835 / 1718,
  20085. bottom: 0.025
  20086. }
  20087. },
  20088. feral: {
  20089. height: math.unit(4, "feet"),
  20090. weight: math.unit(200, "lb"),
  20091. name: "Feral",
  20092. image: {
  20093. source: "./media/characters/arador/feral.svg",
  20094. extra: 1683 / 1514,
  20095. bottom: 0.07
  20096. }
  20097. },
  20098. },
  20099. [
  20100. {
  20101. name: "Normal",
  20102. height: math.unit(8 + 3 / 12, "feet")
  20103. },
  20104. {
  20105. name: "Macro",
  20106. height: math.unit(82.5, "feet"),
  20107. default: true
  20108. },
  20109. ]
  20110. ))
  20111. characterMakers.push(() => makeCharacter(
  20112. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20113. {
  20114. front: {
  20115. height: math.unit(5 + 10 / 12, "feet"),
  20116. weight: math.unit(125, "lb"),
  20117. name: "Front",
  20118. image: {
  20119. source: "./media/characters/dharsi/front.svg",
  20120. extra: 716 / 630,
  20121. bottom: 0.035
  20122. }
  20123. },
  20124. },
  20125. [
  20126. {
  20127. name: "Nano",
  20128. height: math.unit(100, "nm")
  20129. },
  20130. {
  20131. name: "Micro",
  20132. height: math.unit(2, "inches")
  20133. },
  20134. {
  20135. name: "Normal",
  20136. height: math.unit(5 + 10 / 12, "feet"),
  20137. default: true
  20138. },
  20139. {
  20140. name: "Macro",
  20141. height: math.unit(1000, "feet")
  20142. },
  20143. {
  20144. name: "Megamacro",
  20145. height: math.unit(10, "miles")
  20146. },
  20147. {
  20148. name: "Gigamacro",
  20149. height: math.unit(3000, "miles")
  20150. },
  20151. {
  20152. name: "Teramacro",
  20153. height: math.unit(500000, "miles")
  20154. },
  20155. {
  20156. name: "Teramacro+",
  20157. height: math.unit(30, "galaxies")
  20158. },
  20159. ]
  20160. ))
  20161. characterMakers.push(() => makeCharacter(
  20162. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20163. {
  20164. front: {
  20165. height: math.unit(6, "feet"),
  20166. weight: math.unit(150, "lb"),
  20167. name: "Front",
  20168. image: {
  20169. source: "./media/characters/deathy/front.svg",
  20170. extra: 1552 / 1463,
  20171. bottom: 0.025
  20172. }
  20173. },
  20174. side: {
  20175. height: math.unit(6, "feet"),
  20176. weight: math.unit(150, "lb"),
  20177. name: "Side",
  20178. image: {
  20179. source: "./media/characters/deathy/side.svg",
  20180. extra: 1604 / 1455,
  20181. bottom: 0.025
  20182. }
  20183. },
  20184. back: {
  20185. height: math.unit(6, "feet"),
  20186. weight: math.unit(150, "lb"),
  20187. name: "Back",
  20188. image: {
  20189. source: "./media/characters/deathy/back.svg",
  20190. extra: 1580 / 1463,
  20191. bottom: 0.005
  20192. }
  20193. },
  20194. },
  20195. [
  20196. {
  20197. name: "Micro",
  20198. height: math.unit(5, "millimeters")
  20199. },
  20200. {
  20201. name: "Normal",
  20202. height: math.unit(6 + 5 / 12, "feet"),
  20203. default: true
  20204. },
  20205. ]
  20206. ))
  20207. characterMakers.push(() => makeCharacter(
  20208. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20209. {
  20210. front: {
  20211. height: math.unit(16, "feet"),
  20212. weight: math.unit(4000, "lb"),
  20213. name: "Front",
  20214. image: {
  20215. source: "./media/characters/juniper/front.svg",
  20216. bottom: 0.04
  20217. }
  20218. },
  20219. },
  20220. [
  20221. {
  20222. name: "Normal",
  20223. height: math.unit(16, "feet"),
  20224. default: true
  20225. },
  20226. ]
  20227. ))
  20228. characterMakers.push(() => makeCharacter(
  20229. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20230. {
  20231. front: {
  20232. height: math.unit(6, "feet"),
  20233. weight: math.unit(150, "lb"),
  20234. name: "Front",
  20235. image: {
  20236. source: "./media/characters/hipster/front.svg",
  20237. extra: 1312 / 1209,
  20238. bottom: 0.025
  20239. }
  20240. },
  20241. back: {
  20242. height: math.unit(6, "feet"),
  20243. weight: math.unit(150, "lb"),
  20244. name: "Back",
  20245. image: {
  20246. source: "./media/characters/hipster/back.svg",
  20247. extra: 1281 / 1196,
  20248. bottom: 0.01
  20249. }
  20250. },
  20251. },
  20252. [
  20253. {
  20254. name: "Micro",
  20255. height: math.unit(1, "mm")
  20256. },
  20257. {
  20258. name: "Normal",
  20259. height: math.unit(4, "inches"),
  20260. default: true
  20261. },
  20262. {
  20263. name: "Macro",
  20264. height: math.unit(500, "feet")
  20265. },
  20266. {
  20267. name: "Megamacro",
  20268. height: math.unit(1000, "miles")
  20269. },
  20270. ]
  20271. ))
  20272. characterMakers.push(() => makeCharacter(
  20273. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20274. {
  20275. front: {
  20276. height: math.unit(6, "feet"),
  20277. weight: math.unit(150, "lb"),
  20278. name: "Front",
  20279. image: {
  20280. source: "./media/characters/tendirmuldr/front.svg",
  20281. extra: 1878 / 1772,
  20282. bottom: 0.015
  20283. }
  20284. },
  20285. },
  20286. [
  20287. {
  20288. name: "Megamacro",
  20289. height: math.unit(1500, "miles"),
  20290. default: true
  20291. },
  20292. ]
  20293. ))
  20294. characterMakers.push(() => makeCharacter(
  20295. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20296. {
  20297. front: {
  20298. height: math.unit(14, "feet"),
  20299. weight: math.unit(12000, "lb"),
  20300. name: "Front",
  20301. image: {
  20302. source: "./media/characters/mort/front.svg",
  20303. extra: 365 / 318,
  20304. bottom: 0.01
  20305. }
  20306. },
  20307. side: {
  20308. height: math.unit(14, "feet"),
  20309. weight: math.unit(12000, "lb"),
  20310. name: "Side",
  20311. image: {
  20312. source: "./media/characters/mort/side.svg",
  20313. extra: 365 / 318,
  20314. bottom: 0.052
  20315. },
  20316. default: true
  20317. },
  20318. back: {
  20319. height: math.unit(14, "feet"),
  20320. weight: math.unit(12000, "lb"),
  20321. name: "Back",
  20322. image: {
  20323. source: "./media/characters/mort/back.svg",
  20324. extra: 371 / 332,
  20325. bottom: 0.18
  20326. }
  20327. },
  20328. },
  20329. [
  20330. {
  20331. name: "Normal",
  20332. height: math.unit(14, "feet"),
  20333. default: true
  20334. },
  20335. ]
  20336. ))
  20337. characterMakers.push(() => makeCharacter(
  20338. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20339. {
  20340. front: {
  20341. height: math.unit(8, "feet"),
  20342. weight: math.unit(1, "ton"),
  20343. name: "Front",
  20344. image: {
  20345. source: "./media/characters/lycoa/front.svg",
  20346. extra: 1875 / 1789,
  20347. bottom: 0.022
  20348. }
  20349. },
  20350. back: {
  20351. height: math.unit(8, "feet"),
  20352. weight: math.unit(1, "ton"),
  20353. name: "Back",
  20354. image: {
  20355. source: "./media/characters/lycoa/back.svg",
  20356. extra: 1835 / 1781,
  20357. bottom: 0.03
  20358. }
  20359. },
  20360. head: {
  20361. height: math.unit(2.1, "feet"),
  20362. name: "Head",
  20363. image: {
  20364. source: "./media/characters/lycoa/head.svg"
  20365. }
  20366. },
  20367. tailmaw: {
  20368. height: math.unit(1.9, "feet"),
  20369. name: "Tailmaw",
  20370. image: {
  20371. source: "./media/characters/lycoa/tailmaw.svg"
  20372. }
  20373. },
  20374. tentacles: {
  20375. height: math.unit(2.1, "feet"),
  20376. name: "Tentacles",
  20377. image: {
  20378. source: "./media/characters/lycoa/tentacles.svg"
  20379. }
  20380. },
  20381. dick: {
  20382. height: math.unit(1.73, "feet"),
  20383. name: "Dick",
  20384. image: {
  20385. source: "./media/characters/lycoa/dick.svg"
  20386. }
  20387. },
  20388. },
  20389. [
  20390. {
  20391. name: "Normal",
  20392. height: math.unit(8, "feet"),
  20393. default: true
  20394. },
  20395. {
  20396. name: "Macro",
  20397. height: math.unit(30, "feet")
  20398. },
  20399. ]
  20400. ))
  20401. characterMakers.push(() => makeCharacter(
  20402. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20403. {
  20404. front: {
  20405. height: math.unit(4 + 2 / 12, "feet"),
  20406. weight: math.unit(70, "lb"),
  20407. name: "Front",
  20408. image: {
  20409. source: "./media/characters/naldara/front.svg",
  20410. extra: 841 / 720,
  20411. bottom: 0.04
  20412. }
  20413. },
  20414. naga: {
  20415. height: math.unit(23, "feet"),
  20416. weight: math.unit(15000, "kg"),
  20417. name: "Naga",
  20418. image: {
  20419. source: "./media/characters/naldara/naga.svg",
  20420. extra: 3290 / 2959,
  20421. bottom: 124 / 3432
  20422. }
  20423. },
  20424. },
  20425. [
  20426. {
  20427. name: "Normal",
  20428. height: math.unit(4 + 2 / 12, "feet"),
  20429. default: true
  20430. },
  20431. ]
  20432. ))
  20433. characterMakers.push(() => makeCharacter(
  20434. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20435. {
  20436. front: {
  20437. height: math.unit(13 + 7 / 12, "feet"),
  20438. weight: math.unit(1500, "lb"),
  20439. name: "Front",
  20440. image: {
  20441. source: "./media/characters/briar/front.svg",
  20442. extra: 626 / 596,
  20443. bottom: 0.08
  20444. }
  20445. },
  20446. },
  20447. [
  20448. {
  20449. name: "Normal",
  20450. height: math.unit(13 + 7 / 12, "feet"),
  20451. default: true
  20452. },
  20453. ]
  20454. ))
  20455. characterMakers.push(() => makeCharacter(
  20456. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20457. {
  20458. side: {
  20459. height: math.unit(10, "feet"),
  20460. weight: math.unit(500, "lb"),
  20461. name: "Side",
  20462. image: {
  20463. source: "./media/characters/vanguard/side.svg",
  20464. extra: 502 / 425,
  20465. bottom: 0.087
  20466. }
  20467. },
  20468. },
  20469. [
  20470. {
  20471. name: "Normal",
  20472. height: math.unit(10, "feet"),
  20473. default: true
  20474. },
  20475. ]
  20476. ))
  20477. characterMakers.push(() => makeCharacter(
  20478. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20479. {
  20480. front: {
  20481. height: math.unit(7.5, "feet"),
  20482. weight: math.unit(2, "lb"),
  20483. name: "Front",
  20484. image: {
  20485. source: "./media/characters/artemis/front.svg",
  20486. extra: 1192 / 1075,
  20487. bottom: 0.07
  20488. }
  20489. },
  20490. frontNsfw: {
  20491. height: math.unit(7.5, "feet"),
  20492. weight: math.unit(2, "lb"),
  20493. name: "Front (NSFW)",
  20494. image: {
  20495. source: "./media/characters/artemis/front-nsfw.svg",
  20496. extra: 1192 / 1075,
  20497. bottom: 0.07
  20498. }
  20499. },
  20500. frontNsfwer: {
  20501. height: math.unit(7.5, "feet"),
  20502. weight: math.unit(2, "lb"),
  20503. name: "Front (NSFW-er)",
  20504. image: {
  20505. source: "./media/characters/artemis/front-nsfwer.svg",
  20506. extra: 1192 / 1075,
  20507. bottom: 0.07
  20508. }
  20509. },
  20510. side: {
  20511. height: math.unit(7.5, "feet"),
  20512. weight: math.unit(2, "lb"),
  20513. name: "Side",
  20514. image: {
  20515. source: "./media/characters/artemis/side.svg",
  20516. extra: 1192 / 1075,
  20517. bottom: 0.07
  20518. }
  20519. },
  20520. sideNsfw: {
  20521. height: math.unit(7.5, "feet"),
  20522. weight: math.unit(2, "lb"),
  20523. name: "Side (NSFW)",
  20524. image: {
  20525. source: "./media/characters/artemis/side-nsfw.svg",
  20526. extra: 1192 / 1075,
  20527. bottom: 0.07
  20528. }
  20529. },
  20530. sideNsfwer: {
  20531. height: math.unit(7.5, "feet"),
  20532. weight: math.unit(2, "lb"),
  20533. name: "Side (NSFW-er)",
  20534. image: {
  20535. source: "./media/characters/artemis/side-nsfwer.svg",
  20536. extra: 1192 / 1075,
  20537. bottom: 0.07
  20538. }
  20539. },
  20540. maw: {
  20541. height: math.unit(1.1, "feet"),
  20542. name: "Maw",
  20543. image: {
  20544. source: "./media/characters/artemis/maw.svg"
  20545. }
  20546. },
  20547. stomach: {
  20548. height: math.unit(0.95, "feet"),
  20549. name: "Stomach",
  20550. image: {
  20551. source: "./media/characters/artemis/stomach.svg"
  20552. }
  20553. },
  20554. dickCanine: {
  20555. height: math.unit(1, "feet"),
  20556. name: "Dick (Canine)",
  20557. image: {
  20558. source: "./media/characters/artemis/dick-canine.svg"
  20559. }
  20560. },
  20561. dickEquine: {
  20562. height: math.unit(0.85, "feet"),
  20563. name: "Dick (Equine)",
  20564. image: {
  20565. source: "./media/characters/artemis/dick-equine.svg"
  20566. }
  20567. },
  20568. dickExotic: {
  20569. height: math.unit(0.85, "feet"),
  20570. name: "Dick (Exotic)",
  20571. image: {
  20572. source: "./media/characters/artemis/dick-exotic.svg"
  20573. }
  20574. },
  20575. },
  20576. [
  20577. {
  20578. name: "Normal",
  20579. height: math.unit(7.5, "feet"),
  20580. default: true
  20581. },
  20582. {
  20583. name: "Enlarged",
  20584. height: math.unit(12, "feet")
  20585. },
  20586. ]
  20587. ))
  20588. characterMakers.push(() => makeCharacter(
  20589. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20590. {
  20591. front: {
  20592. height: math.unit(5 + 3 / 12, "feet"),
  20593. weight: math.unit(160, "lb"),
  20594. name: "Front",
  20595. image: {
  20596. source: "./media/characters/kira/front.svg",
  20597. extra: 906 / 786,
  20598. bottom: 0.01
  20599. }
  20600. },
  20601. back: {
  20602. height: math.unit(5 + 3 / 12, "feet"),
  20603. weight: math.unit(160, "lb"),
  20604. name: "Back",
  20605. image: {
  20606. source: "./media/characters/kira/back.svg",
  20607. extra: 882 / 757,
  20608. bottom: 0.005
  20609. }
  20610. },
  20611. frontDressed: {
  20612. height: math.unit(5 + 3 / 12, "feet"),
  20613. weight: math.unit(160, "lb"),
  20614. name: "Front (Dressed)",
  20615. image: {
  20616. source: "./media/characters/kira/front-dressed.svg",
  20617. extra: 906 / 786,
  20618. bottom: 0.01
  20619. }
  20620. },
  20621. beans: {
  20622. height: math.unit(0.92, "feet"),
  20623. name: "Beans",
  20624. image: {
  20625. source: "./media/characters/kira/beans.svg"
  20626. }
  20627. },
  20628. },
  20629. [
  20630. {
  20631. name: "Normal",
  20632. height: math.unit(5 + 3 / 12, "feet"),
  20633. default: true
  20634. },
  20635. ]
  20636. ))
  20637. characterMakers.push(() => makeCharacter(
  20638. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20639. {
  20640. front: {
  20641. height: math.unit(5 + 4 / 12, "feet"),
  20642. weight: math.unit(145, "lb"),
  20643. name: "Front",
  20644. image: {
  20645. source: "./media/characters/scramble/front.svg",
  20646. extra: 763 / 727,
  20647. bottom: 0.05
  20648. }
  20649. },
  20650. back: {
  20651. height: math.unit(5 + 4 / 12, "feet"),
  20652. weight: math.unit(145, "lb"),
  20653. name: "Back",
  20654. image: {
  20655. source: "./media/characters/scramble/back.svg",
  20656. extra: 826 / 737,
  20657. bottom: 0.002
  20658. }
  20659. },
  20660. },
  20661. [
  20662. {
  20663. name: "Normal",
  20664. height: math.unit(5 + 4 / 12, "feet"),
  20665. default: true
  20666. },
  20667. ]
  20668. ))
  20669. characterMakers.push(() => makeCharacter(
  20670. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20671. {
  20672. side: {
  20673. height: math.unit(6 + 2 / 12, "feet"),
  20674. weight: math.unit(190, "lb"),
  20675. name: "Side",
  20676. image: {
  20677. source: "./media/characters/biscuit/side.svg",
  20678. extra: 858 / 791,
  20679. bottom: 0.044
  20680. }
  20681. },
  20682. },
  20683. [
  20684. {
  20685. name: "Normal",
  20686. height: math.unit(6 + 2 / 12, "feet"),
  20687. default: true
  20688. },
  20689. ]
  20690. ))
  20691. characterMakers.push(() => makeCharacter(
  20692. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20693. {
  20694. front: {
  20695. height: math.unit(5 + 2 / 12, "feet"),
  20696. weight: math.unit(120, "lb"),
  20697. name: "Front",
  20698. image: {
  20699. source: "./media/characters/poffin/front.svg",
  20700. extra: 786 / 680,
  20701. bottom: 0.005
  20702. }
  20703. },
  20704. },
  20705. [
  20706. {
  20707. name: "Normal",
  20708. height: math.unit(5 + 2 / 12, "feet"),
  20709. default: true
  20710. },
  20711. ]
  20712. ))
  20713. characterMakers.push(() => makeCharacter(
  20714. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20715. {
  20716. front: {
  20717. height: math.unit(6 + 3 / 12, "feet"),
  20718. weight: math.unit(519, "lb"),
  20719. name: "Front",
  20720. image: {
  20721. source: "./media/characters/dhari/front.svg",
  20722. extra: 1048 / 946,
  20723. bottom: 0.015
  20724. }
  20725. },
  20726. back: {
  20727. height: math.unit(6 + 3 / 12, "feet"),
  20728. weight: math.unit(519, "lb"),
  20729. name: "Back",
  20730. image: {
  20731. source: "./media/characters/dhari/back.svg",
  20732. extra: 1048 / 931,
  20733. bottom: 0.005
  20734. }
  20735. },
  20736. frontDressed: {
  20737. height: math.unit(6 + 3 / 12, "feet"),
  20738. weight: math.unit(519, "lb"),
  20739. name: "Front (Dressed)",
  20740. image: {
  20741. source: "./media/characters/dhari/front-dressed.svg",
  20742. extra: 1713 / 1546,
  20743. bottom: 0.02
  20744. }
  20745. },
  20746. backDressed: {
  20747. height: math.unit(6 + 3 / 12, "feet"),
  20748. weight: math.unit(519, "lb"),
  20749. name: "Back (Dressed)",
  20750. image: {
  20751. source: "./media/characters/dhari/back-dressed.svg",
  20752. extra: 1699 / 1537,
  20753. bottom: 0.01
  20754. }
  20755. },
  20756. maw: {
  20757. height: math.unit(0.95, "feet"),
  20758. name: "Maw",
  20759. image: {
  20760. source: "./media/characters/dhari/maw.svg"
  20761. }
  20762. },
  20763. wereFront: {
  20764. height: math.unit(12 + 8 / 12, "feet"),
  20765. weight: math.unit(4000, "lb"),
  20766. name: "Front (Were)",
  20767. image: {
  20768. source: "./media/characters/dhari/were-front.svg",
  20769. extra: 1065 / 969,
  20770. bottom: 0.015
  20771. }
  20772. },
  20773. wereBack: {
  20774. height: math.unit(12 + 8 / 12, "feet"),
  20775. weight: math.unit(4000, "lb"),
  20776. name: "Back (Were)",
  20777. image: {
  20778. source: "./media/characters/dhari/were-back.svg",
  20779. extra: 1065 / 969,
  20780. bottom: 0.012
  20781. }
  20782. },
  20783. wereMaw: {
  20784. height: math.unit(0.625, "meters"),
  20785. name: "Maw (Were)",
  20786. image: {
  20787. source: "./media/characters/dhari/were-maw.svg"
  20788. }
  20789. },
  20790. },
  20791. [
  20792. {
  20793. name: "Normal",
  20794. height: math.unit(6 + 3 / 12, "feet"),
  20795. default: true
  20796. },
  20797. ]
  20798. ))
  20799. characterMakers.push(() => makeCharacter(
  20800. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20801. {
  20802. anthro: {
  20803. height: math.unit(5 + 7 / 12, "feet"),
  20804. weight: math.unit(175, "lb"),
  20805. name: "Anthro",
  20806. image: {
  20807. source: "./media/characters/rena-dyne/anthro.svg",
  20808. extra: 1849 / 1785,
  20809. bottom: 0.005
  20810. }
  20811. },
  20812. taur: {
  20813. height: math.unit(15 + 6 / 12, "feet"),
  20814. weight: math.unit(8000, "lb"),
  20815. name: "Taur",
  20816. image: {
  20817. source: "./media/characters/rena-dyne/taur.svg",
  20818. extra: 2315 / 2234,
  20819. bottom: 0.033
  20820. }
  20821. },
  20822. },
  20823. [
  20824. {
  20825. name: "Normal",
  20826. height: math.unit(5 + 7 / 12, "feet"),
  20827. default: true
  20828. },
  20829. ]
  20830. ))
  20831. characterMakers.push(() => makeCharacter(
  20832. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20833. {
  20834. front: {
  20835. height: math.unit(8, "feet"),
  20836. weight: math.unit(600, "lb"),
  20837. name: "Front",
  20838. image: {
  20839. source: "./media/characters/weremeep/front.svg",
  20840. extra: 967 / 862,
  20841. bottom: 0.01
  20842. }
  20843. },
  20844. },
  20845. [
  20846. {
  20847. name: "Normal",
  20848. height: math.unit(8, "feet"),
  20849. default: true
  20850. },
  20851. {
  20852. name: "Lorg",
  20853. height: math.unit(12, "feet")
  20854. },
  20855. {
  20856. name: "Oh Lawd She Comin'",
  20857. height: math.unit(20, "feet")
  20858. },
  20859. ]
  20860. ))
  20861. characterMakers.push(() => makeCharacter(
  20862. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20863. {
  20864. front: {
  20865. height: math.unit(4, "feet"),
  20866. weight: math.unit(90, "lb"),
  20867. name: "Front",
  20868. image: {
  20869. source: "./media/characters/reza/front.svg",
  20870. extra: 1183 / 1111,
  20871. bottom: 0.017
  20872. }
  20873. },
  20874. back: {
  20875. height: math.unit(4, "feet"),
  20876. weight: math.unit(90, "lb"),
  20877. name: "Back",
  20878. image: {
  20879. source: "./media/characters/reza/back.svg",
  20880. extra: 1183 / 1111,
  20881. bottom: 0.01
  20882. }
  20883. },
  20884. drake: {
  20885. height: math.unit(30, "feet"),
  20886. weight: math.unit(246960, "lb"),
  20887. name: "Drake",
  20888. image: {
  20889. source: "./media/characters/reza/drake.svg",
  20890. extra: 2350 / 2024,
  20891. bottom: 60.7 / 2403
  20892. }
  20893. },
  20894. },
  20895. [
  20896. {
  20897. name: "Normal",
  20898. height: math.unit(4, "feet"),
  20899. default: true
  20900. },
  20901. ]
  20902. ))
  20903. characterMakers.push(() => makeCharacter(
  20904. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20905. {
  20906. side: {
  20907. height: math.unit(15, "feet"),
  20908. weight: math.unit(14, "tons"),
  20909. name: "Side",
  20910. image: {
  20911. source: "./media/characters/athea/side.svg",
  20912. extra: 960 / 540,
  20913. bottom: 0.003
  20914. }
  20915. },
  20916. sitting: {
  20917. height: math.unit(6 * 2.85, "feet"),
  20918. weight: math.unit(14, "tons"),
  20919. name: "Sitting",
  20920. image: {
  20921. source: "./media/characters/athea/sitting.svg",
  20922. extra: 621 / 581,
  20923. bottom: 0.075
  20924. }
  20925. },
  20926. maw: {
  20927. height: math.unit(7.59498031496063, "feet"),
  20928. name: "Maw",
  20929. image: {
  20930. source: "./media/characters/athea/maw.svg"
  20931. }
  20932. },
  20933. },
  20934. [
  20935. {
  20936. name: "Lap Cat",
  20937. height: math.unit(2.5, "feet")
  20938. },
  20939. {
  20940. name: "Minimacro",
  20941. height: math.unit(15, "feet"),
  20942. default: true
  20943. },
  20944. {
  20945. name: "Macro",
  20946. height: math.unit(120, "feet")
  20947. },
  20948. {
  20949. name: "Macro+",
  20950. height: math.unit(640, "feet")
  20951. },
  20952. {
  20953. name: "Colossus",
  20954. height: math.unit(2.2, "miles")
  20955. },
  20956. ]
  20957. ))
  20958. characterMakers.push(() => makeCharacter(
  20959. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20960. {
  20961. front: {
  20962. height: math.unit(8 + 8 / 12, "feet"),
  20963. weight: math.unit(130, "kg"),
  20964. name: "Front",
  20965. image: {
  20966. source: "./media/characters/seroko/front.svg",
  20967. extra: 1385 / 1280,
  20968. bottom: 0.025
  20969. }
  20970. },
  20971. back: {
  20972. height: math.unit(8 + 8 / 12, "feet"),
  20973. weight: math.unit(130, "kg"),
  20974. name: "Back",
  20975. image: {
  20976. source: "./media/characters/seroko/back.svg",
  20977. extra: 1369 / 1238,
  20978. bottom: 0.018
  20979. }
  20980. },
  20981. frontDressed: {
  20982. height: math.unit(8 + 8 / 12, "feet"),
  20983. weight: math.unit(130, "kg"),
  20984. name: "Front (Dressed)",
  20985. image: {
  20986. source: "./media/characters/seroko/front-dressed.svg",
  20987. extra: 1366 / 1275,
  20988. bottom: 0.03
  20989. }
  20990. },
  20991. },
  20992. [
  20993. {
  20994. name: "Normal",
  20995. height: math.unit(8 + 8 / 12, "feet"),
  20996. default: true
  20997. },
  20998. ]
  20999. ))
  21000. characterMakers.push(() => makeCharacter(
  21001. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21002. {
  21003. front: {
  21004. height: math.unit(5.5, "feet"),
  21005. weight: math.unit(160, "lb"),
  21006. name: "Front",
  21007. image: {
  21008. source: "./media/characters/quatzi/front.svg",
  21009. extra: 2346 / 2242,
  21010. bottom: 0.015
  21011. }
  21012. },
  21013. },
  21014. [
  21015. {
  21016. name: "Normal",
  21017. height: math.unit(5.5, "feet"),
  21018. default: true
  21019. },
  21020. {
  21021. name: "Big",
  21022. height: math.unit(7.7, "feet")
  21023. },
  21024. ]
  21025. ))
  21026. characterMakers.push(() => makeCharacter(
  21027. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21028. {
  21029. front: {
  21030. height: math.unit(5 + 11 / 12, "feet"),
  21031. weight: math.unit(180, "lb"),
  21032. name: "Front",
  21033. image: {
  21034. source: "./media/characters/sen/front.svg",
  21035. extra: 1321 / 1254,
  21036. bottom: 0.015
  21037. }
  21038. },
  21039. side: {
  21040. height: math.unit(5 + 11 / 12, "feet"),
  21041. weight: math.unit(180, "lb"),
  21042. name: "Side",
  21043. image: {
  21044. source: "./media/characters/sen/side.svg",
  21045. extra: 1321 / 1254,
  21046. bottom: 0.007
  21047. }
  21048. },
  21049. back: {
  21050. height: math.unit(5 + 11 / 12, "feet"),
  21051. weight: math.unit(180, "lb"),
  21052. name: "Back",
  21053. image: {
  21054. source: "./media/characters/sen/back.svg",
  21055. extra: 1321 / 1254
  21056. }
  21057. },
  21058. },
  21059. [
  21060. {
  21061. name: "Normal",
  21062. height: math.unit(5 + 11 / 12, "feet"),
  21063. default: true
  21064. },
  21065. ]
  21066. ))
  21067. characterMakers.push(() => makeCharacter(
  21068. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21069. {
  21070. front: {
  21071. height: math.unit(166.6, "cm"),
  21072. weight: math.unit(66.6, "kg"),
  21073. name: "Front",
  21074. image: {
  21075. source: "./media/characters/fruity/front.svg",
  21076. extra: 1510 / 1386,
  21077. bottom: 0.04
  21078. }
  21079. },
  21080. back: {
  21081. height: math.unit(166.6, "cm"),
  21082. weight: math.unit(66.6, "lb"),
  21083. name: "Back",
  21084. image: {
  21085. source: "./media/characters/fruity/back.svg",
  21086. extra: 1563 / 1435,
  21087. bottom: 0.005
  21088. }
  21089. },
  21090. },
  21091. [
  21092. {
  21093. name: "Normal",
  21094. height: math.unit(166.6, "cm"),
  21095. default: true
  21096. },
  21097. {
  21098. name: "Demonic",
  21099. height: math.unit(166.6, "feet")
  21100. },
  21101. ]
  21102. ))
  21103. characterMakers.push(() => makeCharacter(
  21104. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21105. {
  21106. side: {
  21107. height: math.unit(10, "feet"),
  21108. weight: math.unit(500, "lb"),
  21109. name: "Side",
  21110. image: {
  21111. source: "./media/characters/zost/side.svg",
  21112. extra: 966 / 880,
  21113. bottom: 0.075
  21114. }
  21115. },
  21116. mawFront: {
  21117. height: math.unit(1.08, "meters"),
  21118. name: "Maw (Front)",
  21119. image: {
  21120. source: "./media/characters/zost/maw-front.svg"
  21121. }
  21122. },
  21123. mawSide: {
  21124. height: math.unit(2.66, "feet"),
  21125. name: "Maw (Side)",
  21126. image: {
  21127. source: "./media/characters/zost/maw-side.svg"
  21128. }
  21129. },
  21130. },
  21131. [
  21132. {
  21133. name: "Normal",
  21134. height: math.unit(10, "feet"),
  21135. default: true
  21136. },
  21137. ]
  21138. ))
  21139. characterMakers.push(() => makeCharacter(
  21140. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21141. {
  21142. front: {
  21143. height: math.unit(5 + 4 / 12, "feet"),
  21144. weight: math.unit(120, "lb"),
  21145. name: "Front",
  21146. image: {
  21147. source: "./media/characters/luci/front.svg",
  21148. extra: 1985 / 1884,
  21149. bottom: 0.04
  21150. }
  21151. },
  21152. back: {
  21153. height: math.unit(5 + 4 / 12, "feet"),
  21154. weight: math.unit(120, "lb"),
  21155. name: "Back",
  21156. image: {
  21157. source: "./media/characters/luci/back.svg",
  21158. extra: 1892 / 1791,
  21159. bottom: 0.002
  21160. }
  21161. },
  21162. },
  21163. [
  21164. {
  21165. name: "Normal",
  21166. height: math.unit(5 + 4 / 12, "feet"),
  21167. default: true
  21168. },
  21169. ]
  21170. ))
  21171. characterMakers.push(() => makeCharacter(
  21172. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21173. {
  21174. front: {
  21175. height: math.unit(1500, "feet"),
  21176. weight: math.unit(3.8e6, "tons"),
  21177. name: "Front",
  21178. image: {
  21179. source: "./media/characters/2th/front.svg",
  21180. extra: 3489 / 3350,
  21181. bottom: 0.1
  21182. }
  21183. },
  21184. foot: {
  21185. height: math.unit(461, "feet"),
  21186. name: "Foot",
  21187. image: {
  21188. source: "./media/characters/2th/foot.svg"
  21189. }
  21190. },
  21191. },
  21192. [
  21193. {
  21194. name: "\"Micro\"",
  21195. height: math.unit(15 + 7 / 12, "feet")
  21196. },
  21197. {
  21198. name: "Normal",
  21199. height: math.unit(1500, "feet"),
  21200. default: true
  21201. },
  21202. {
  21203. name: "Macro",
  21204. height: math.unit(5000, "feet")
  21205. },
  21206. {
  21207. name: "Megamacro",
  21208. height: math.unit(15, "miles")
  21209. },
  21210. {
  21211. name: "Gigamacro",
  21212. height: math.unit(4000, "miles")
  21213. },
  21214. {
  21215. name: "Galactic",
  21216. height: math.unit(50, "AU")
  21217. },
  21218. ]
  21219. ))
  21220. characterMakers.push(() => makeCharacter(
  21221. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21222. {
  21223. front: {
  21224. height: math.unit(5 + 6 / 12, "feet"),
  21225. weight: math.unit(220, "lb"),
  21226. name: "Front",
  21227. image: {
  21228. source: "./media/characters/amethyst/front.svg",
  21229. extra: 2078 / 2040,
  21230. bottom: 0.045
  21231. }
  21232. },
  21233. back: {
  21234. height: math.unit(5 + 6 / 12, "feet"),
  21235. weight: math.unit(220, "lb"),
  21236. name: "Back",
  21237. image: {
  21238. source: "./media/characters/amethyst/back.svg",
  21239. extra: 2021 / 1989,
  21240. bottom: 0.02
  21241. }
  21242. },
  21243. },
  21244. [
  21245. {
  21246. name: "Normal",
  21247. height: math.unit(5 + 6 / 12, "feet"),
  21248. default: true
  21249. },
  21250. ]
  21251. ))
  21252. characterMakers.push(() => makeCharacter(
  21253. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21254. {
  21255. front: {
  21256. height: math.unit(4 + 11 / 12, "feet"),
  21257. weight: math.unit(120, "lb"),
  21258. name: "Front",
  21259. image: {
  21260. source: "./media/characters/yumi-akiyama/front.svg",
  21261. extra: 1327 / 1235,
  21262. bottom: 0.02
  21263. }
  21264. },
  21265. back: {
  21266. height: math.unit(4 + 11 / 12, "feet"),
  21267. weight: math.unit(120, "lb"),
  21268. name: "Back",
  21269. image: {
  21270. source: "./media/characters/yumi-akiyama/back.svg",
  21271. extra: 1287 / 1245,
  21272. bottom: 0.002
  21273. }
  21274. },
  21275. },
  21276. [
  21277. {
  21278. name: "Galactic",
  21279. height: math.unit(50, "galaxies"),
  21280. default: true
  21281. },
  21282. {
  21283. name: "Universal",
  21284. height: math.unit(100, "universes")
  21285. },
  21286. ]
  21287. ))
  21288. characterMakers.push(() => makeCharacter(
  21289. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21290. {
  21291. front: {
  21292. height: math.unit(8, "feet"),
  21293. weight: math.unit(500, "lb"),
  21294. name: "Front",
  21295. image: {
  21296. source: "./media/characters/rifter-yrmori/front.svg",
  21297. extra: 1180 / 1125,
  21298. bottom: 0.02
  21299. }
  21300. },
  21301. back: {
  21302. height: math.unit(8, "feet"),
  21303. weight: math.unit(500, "lb"),
  21304. name: "Back",
  21305. image: {
  21306. source: "./media/characters/rifter-yrmori/back.svg",
  21307. extra: 1190 / 1145,
  21308. bottom: 0.001
  21309. }
  21310. },
  21311. wings: {
  21312. height: math.unit(7.75, "feet"),
  21313. weight: math.unit(500, "lb"),
  21314. name: "Wings",
  21315. image: {
  21316. source: "./media/characters/rifter-yrmori/wings.svg",
  21317. extra: 1357 / 1285
  21318. }
  21319. },
  21320. maw: {
  21321. height: math.unit(0.8, "feet"),
  21322. name: "Maw",
  21323. image: {
  21324. source: "./media/characters/rifter-yrmori/maw.svg"
  21325. }
  21326. },
  21327. mawfront: {
  21328. height: math.unit(1.45, "feet"),
  21329. name: "Maw (Front)",
  21330. image: {
  21331. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21332. }
  21333. },
  21334. },
  21335. [
  21336. {
  21337. name: "Normal",
  21338. height: math.unit(8, "feet"),
  21339. default: true
  21340. },
  21341. {
  21342. name: "Macro",
  21343. height: math.unit(42, "meters")
  21344. },
  21345. ]
  21346. ))
  21347. characterMakers.push(() => makeCharacter(
  21348. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21349. {
  21350. were: {
  21351. height: math.unit(25 + 6 / 12, "feet"),
  21352. weight: math.unit(10000, "lb"),
  21353. name: "Were",
  21354. image: {
  21355. source: "./media/characters/tahajin/were.svg",
  21356. extra: 801 / 770,
  21357. bottom: 0.042
  21358. }
  21359. },
  21360. aquatic: {
  21361. height: math.unit(6 + 4 / 12, "feet"),
  21362. weight: math.unit(160, "lb"),
  21363. name: "Aquatic",
  21364. image: {
  21365. source: "./media/characters/tahajin/aquatic.svg",
  21366. extra: 572 / 542,
  21367. bottom: 0.04
  21368. }
  21369. },
  21370. chow: {
  21371. height: math.unit(8 + 11 / 12, "feet"),
  21372. weight: math.unit(450, "lb"),
  21373. name: "Chow",
  21374. image: {
  21375. source: "./media/characters/tahajin/chow.svg",
  21376. extra: 660 / 640,
  21377. bottom: 0.015
  21378. }
  21379. },
  21380. demiNaga: {
  21381. height: math.unit(6 + 8 / 12, "feet"),
  21382. weight: math.unit(300, "lb"),
  21383. name: "Demi Naga",
  21384. image: {
  21385. source: "./media/characters/tahajin/demi-naga.svg",
  21386. extra: 643 / 615,
  21387. bottom: 0.1
  21388. }
  21389. },
  21390. data: {
  21391. height: math.unit(5, "inches"),
  21392. weight: math.unit(0.1, "lb"),
  21393. name: "Data",
  21394. image: {
  21395. source: "./media/characters/tahajin/data.svg"
  21396. }
  21397. },
  21398. fluu: {
  21399. height: math.unit(5 + 7 / 12, "feet"),
  21400. weight: math.unit(140, "lb"),
  21401. name: "Fluu",
  21402. image: {
  21403. source: "./media/characters/tahajin/fluu.svg",
  21404. extra: 628 / 592,
  21405. bottom: 0.02
  21406. }
  21407. },
  21408. starWarrior: {
  21409. height: math.unit(4 + 5 / 12, "feet"),
  21410. weight: math.unit(50, "lb"),
  21411. name: "Star Warrior",
  21412. image: {
  21413. source: "./media/characters/tahajin/star-warrior.svg"
  21414. }
  21415. },
  21416. },
  21417. [
  21418. {
  21419. name: "Normal",
  21420. height: math.unit(25 + 6 / 12, "feet"),
  21421. default: true
  21422. },
  21423. ]
  21424. ))
  21425. characterMakers.push(() => makeCharacter(
  21426. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21427. {
  21428. front: {
  21429. height: math.unit(8, "feet"),
  21430. weight: math.unit(350, "lb"),
  21431. name: "Front",
  21432. image: {
  21433. source: "./media/characters/gabira/front.svg",
  21434. extra: 608 / 580,
  21435. bottom: 0.03
  21436. }
  21437. },
  21438. back: {
  21439. height: math.unit(8, "feet"),
  21440. weight: math.unit(350, "lb"),
  21441. name: "Back",
  21442. image: {
  21443. source: "./media/characters/gabira/back.svg",
  21444. extra: 608 / 580,
  21445. bottom: 0.03
  21446. }
  21447. },
  21448. },
  21449. [
  21450. {
  21451. name: "Normal",
  21452. height: math.unit(8, "feet"),
  21453. default: true
  21454. },
  21455. ]
  21456. ))
  21457. characterMakers.push(() => makeCharacter(
  21458. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21459. {
  21460. front: {
  21461. height: math.unit(5 + 3 / 12, "feet"),
  21462. weight: math.unit(137, "lb"),
  21463. name: "Front",
  21464. image: {
  21465. source: "./media/characters/sasha-katraine/front.svg",
  21466. bottom: 0.045
  21467. }
  21468. },
  21469. },
  21470. [
  21471. {
  21472. name: "Micro",
  21473. height: math.unit(5, "inches")
  21474. },
  21475. {
  21476. name: "Normal",
  21477. height: math.unit(5 + 3 / 12, "feet"),
  21478. default: true
  21479. },
  21480. ]
  21481. ))
  21482. characterMakers.push(() => makeCharacter(
  21483. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21484. {
  21485. side: {
  21486. height: math.unit(4, "inches"),
  21487. weight: math.unit(200, "grams"),
  21488. name: "Side",
  21489. image: {
  21490. source: "./media/characters/der/side.svg",
  21491. extra: 719 / 400,
  21492. bottom: 30.6 / 749.9187
  21493. }
  21494. },
  21495. },
  21496. [
  21497. {
  21498. name: "Micro",
  21499. height: math.unit(4, "inches"),
  21500. default: true
  21501. },
  21502. ]
  21503. ))
  21504. characterMakers.push(() => makeCharacter(
  21505. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21506. {
  21507. side: {
  21508. height: math.unit(30, "meters"),
  21509. weight: math.unit(700, "tonnes"),
  21510. name: "Side",
  21511. image: {
  21512. source: "./media/characters/fixerdragon/side.svg",
  21513. extra: (1293.0514 - 116.03) / 1106.86,
  21514. bottom: 116.03 / 1293.0514
  21515. }
  21516. },
  21517. },
  21518. [
  21519. {
  21520. name: "Planck",
  21521. height: math.unit(1.6e-35, "meters")
  21522. },
  21523. {
  21524. name: "Micro",
  21525. height: math.unit(0.4, "meters")
  21526. },
  21527. {
  21528. name: "Normal",
  21529. height: math.unit(30, "meters"),
  21530. default: true
  21531. },
  21532. {
  21533. name: "Megamacro",
  21534. height: math.unit(1.2, "megameters")
  21535. },
  21536. {
  21537. name: "Teramacro",
  21538. height: math.unit(130, "terameters")
  21539. },
  21540. {
  21541. name: "Yottamacro",
  21542. height: math.unit(6200, "yottameters")
  21543. },
  21544. ]
  21545. ));
  21546. characterMakers.push(() => makeCharacter(
  21547. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21548. {
  21549. front: {
  21550. height: math.unit(8, "feet"),
  21551. weight: math.unit(250, "lb"),
  21552. name: "Front",
  21553. image: {
  21554. source: "./media/characters/kite/front.svg",
  21555. extra: 2796 / 2659,
  21556. bottom: 0.002
  21557. }
  21558. },
  21559. },
  21560. [
  21561. {
  21562. name: "Normal",
  21563. height: math.unit(8, "feet"),
  21564. default: true
  21565. },
  21566. {
  21567. name: "Macro",
  21568. height: math.unit(360, "feet")
  21569. },
  21570. {
  21571. name: "Megamacro",
  21572. height: math.unit(1500, "feet")
  21573. },
  21574. ]
  21575. ))
  21576. characterMakers.push(() => makeCharacter(
  21577. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21578. {
  21579. front: {
  21580. height: math.unit(5 + 10 / 12, "feet"),
  21581. weight: math.unit(150, "lb"),
  21582. name: "Front",
  21583. image: {
  21584. source: "./media/characters/poojawa-vynar/front.svg",
  21585. extra: (1506.1547 - 55) / 1356.6,
  21586. bottom: 55 / 1506.1547
  21587. }
  21588. },
  21589. frontTailless: {
  21590. height: math.unit(5 + 10 / 12, "feet"),
  21591. weight: math.unit(150, "lb"),
  21592. name: "Front (Tailless)",
  21593. image: {
  21594. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21595. extra: (1506.1547 - 55) / 1356.6,
  21596. bottom: 55 / 1506.1547
  21597. }
  21598. },
  21599. },
  21600. [
  21601. {
  21602. name: "Normal",
  21603. height: math.unit(5 + 10 / 12, "feet"),
  21604. default: true
  21605. },
  21606. ]
  21607. ))
  21608. characterMakers.push(() => makeCharacter(
  21609. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21610. {
  21611. front: {
  21612. height: math.unit(293, "meters"),
  21613. weight: math.unit(70400, "tons"),
  21614. name: "Front",
  21615. image: {
  21616. source: "./media/characters/violette/front.svg",
  21617. extra: 1227 / 1180,
  21618. bottom: 0.005
  21619. }
  21620. },
  21621. back: {
  21622. height: math.unit(293, "meters"),
  21623. weight: math.unit(70400, "tons"),
  21624. name: "Back",
  21625. image: {
  21626. source: "./media/characters/violette/back.svg",
  21627. extra: 1227 / 1180,
  21628. bottom: 0.005
  21629. }
  21630. },
  21631. },
  21632. [
  21633. {
  21634. name: "Macro",
  21635. height: math.unit(293, "meters"),
  21636. default: true
  21637. },
  21638. ]
  21639. ))
  21640. characterMakers.push(() => makeCharacter(
  21641. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21642. {
  21643. front: {
  21644. height: math.unit(1050, "feet"),
  21645. weight: math.unit(200000, "tons"),
  21646. name: "Front",
  21647. image: {
  21648. source: "./media/characters/alessandra/front.svg",
  21649. extra: 960 / 912,
  21650. bottom: 0.06
  21651. }
  21652. },
  21653. },
  21654. [
  21655. {
  21656. name: "Macro",
  21657. height: math.unit(1050, "feet")
  21658. },
  21659. {
  21660. name: "Macro+",
  21661. height: math.unit(900, "meters"),
  21662. default: true
  21663. },
  21664. ]
  21665. ))
  21666. characterMakers.push(() => makeCharacter(
  21667. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21668. {
  21669. front: {
  21670. height: math.unit(5, "feet"),
  21671. weight: math.unit(187, "lb"),
  21672. name: "Front",
  21673. image: {
  21674. source: "./media/characters/person/front.svg",
  21675. extra: 3087 / 2945,
  21676. bottom: 91 / 3181
  21677. }
  21678. },
  21679. },
  21680. [
  21681. {
  21682. name: "Micro",
  21683. height: math.unit(3, "inches")
  21684. },
  21685. {
  21686. name: "Normal",
  21687. height: math.unit(5, "feet"),
  21688. default: true
  21689. },
  21690. {
  21691. name: "Macro",
  21692. height: math.unit(90, "feet")
  21693. },
  21694. {
  21695. name: "Max Size",
  21696. height: math.unit(280, "feet")
  21697. },
  21698. ]
  21699. ))
  21700. characterMakers.push(() => makeCharacter(
  21701. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21702. {
  21703. front: {
  21704. height: math.unit(4.5, "meters"),
  21705. weight: math.unit(3200, "lb"),
  21706. name: "Front",
  21707. image: {
  21708. source: "./media/characters/ty/front.svg",
  21709. extra: 1038 / 960,
  21710. bottom: 31.156 / 1068
  21711. }
  21712. },
  21713. back: {
  21714. height: math.unit(4.5, "meters"),
  21715. weight: math.unit(3200, "lb"),
  21716. name: "Back",
  21717. image: {
  21718. source: "./media/characters/ty/back.svg",
  21719. extra: 1044 / 966,
  21720. bottom: 7.48 / 1049
  21721. }
  21722. },
  21723. },
  21724. [
  21725. {
  21726. name: "Normal",
  21727. height: math.unit(4.5, "meters"),
  21728. default: true
  21729. },
  21730. ]
  21731. ))
  21732. characterMakers.push(() => makeCharacter(
  21733. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21734. {
  21735. front: {
  21736. height: math.unit(5 + 4 / 12, "feet"),
  21737. weight: math.unit(115, "lb"),
  21738. name: "Front",
  21739. image: {
  21740. source: "./media/characters/rocky/front.svg",
  21741. extra: 1012 / 975,
  21742. bottom: 54 / 1066
  21743. }
  21744. },
  21745. },
  21746. [
  21747. {
  21748. name: "Normal",
  21749. height: math.unit(5 + 4 / 12, "feet"),
  21750. default: true
  21751. },
  21752. ]
  21753. ))
  21754. characterMakers.push(() => makeCharacter(
  21755. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21756. {
  21757. upright: {
  21758. height: math.unit(6, "meters"),
  21759. weight: math.unit(4000, "kg"),
  21760. name: "Upright",
  21761. image: {
  21762. source: "./media/characters/ruin/upright.svg",
  21763. extra: 668 / 661,
  21764. bottom: 42 / 799.8396
  21765. }
  21766. },
  21767. },
  21768. [
  21769. {
  21770. name: "Normal",
  21771. height: math.unit(6, "meters"),
  21772. default: true
  21773. },
  21774. ]
  21775. ))
  21776. characterMakers.push(() => makeCharacter(
  21777. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21778. {
  21779. front: {
  21780. height: math.unit(5, "feet"),
  21781. weight: math.unit(106, "lb"),
  21782. name: "Front",
  21783. image: {
  21784. source: "./media/characters/robin/front.svg",
  21785. extra: 862 / 799,
  21786. bottom: 42.4 / 914.8856
  21787. }
  21788. },
  21789. },
  21790. [
  21791. {
  21792. name: "Normal",
  21793. height: math.unit(5, "feet"),
  21794. default: true
  21795. },
  21796. ]
  21797. ))
  21798. characterMakers.push(() => makeCharacter(
  21799. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21800. {
  21801. side: {
  21802. height: math.unit(3, "feet"),
  21803. weight: math.unit(225, "lb"),
  21804. name: "Side",
  21805. image: {
  21806. source: "./media/characters/saian/side.svg",
  21807. extra: 566 / 356,
  21808. bottom: 79.7 / 643
  21809. }
  21810. },
  21811. maw: {
  21812. height: math.unit(2.85, "feet"),
  21813. name: "Maw",
  21814. image: {
  21815. source: "./media/characters/saian/maw.svg"
  21816. }
  21817. },
  21818. },
  21819. [
  21820. {
  21821. name: "Normal",
  21822. height: math.unit(3, "feet"),
  21823. default: true
  21824. },
  21825. ]
  21826. ))
  21827. characterMakers.push(() => makeCharacter(
  21828. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21829. {
  21830. side: {
  21831. height: math.unit(8, "feet"),
  21832. weight: math.unit(300, "lb"),
  21833. name: "Side",
  21834. image: {
  21835. source: "./media/characters/equus-silvermane/side.svg",
  21836. extra: 2176 / 2050,
  21837. bottom: 65.7 / 2245
  21838. }
  21839. },
  21840. front: {
  21841. height: math.unit(8, "feet"),
  21842. weight: math.unit(300, "lb"),
  21843. name: "Front",
  21844. image: {
  21845. source: "./media/characters/equus-silvermane/front.svg",
  21846. extra: 4633 / 4400,
  21847. bottom: 71.3 / 4706.915
  21848. }
  21849. },
  21850. sideStepping: {
  21851. height: math.unit(8, "feet"),
  21852. weight: math.unit(300, "lb"),
  21853. name: "Side (Stepping)",
  21854. image: {
  21855. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21856. extra: 1968 / 1860,
  21857. bottom: 16.4 / 1989
  21858. }
  21859. },
  21860. },
  21861. [
  21862. {
  21863. name: "Normal",
  21864. height: math.unit(8, "feet")
  21865. },
  21866. {
  21867. name: "Minimacro",
  21868. height: math.unit(75, "feet"),
  21869. default: true
  21870. },
  21871. {
  21872. name: "Macro",
  21873. height: math.unit(150, "feet")
  21874. },
  21875. {
  21876. name: "Macro+",
  21877. height: math.unit(1000, "feet")
  21878. },
  21879. {
  21880. name: "Megamacro",
  21881. height: math.unit(1, "mile")
  21882. },
  21883. ]
  21884. ))
  21885. characterMakers.push(() => makeCharacter(
  21886. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21887. {
  21888. side: {
  21889. height: math.unit(20, "feet"),
  21890. weight: math.unit(30000, "kg"),
  21891. name: "Side",
  21892. image: {
  21893. source: "./media/characters/windar/side.svg",
  21894. extra: 1491 / 1248,
  21895. bottom: 82.56 / 1568
  21896. }
  21897. },
  21898. },
  21899. [
  21900. {
  21901. name: "Normal",
  21902. height: math.unit(20, "feet"),
  21903. default: true
  21904. },
  21905. ]
  21906. ))
  21907. characterMakers.push(() => makeCharacter(
  21908. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21909. {
  21910. side: {
  21911. height: math.unit(15.66, "feet"),
  21912. weight: math.unit(150, "lb"),
  21913. name: "Side",
  21914. image: {
  21915. source: "./media/characters/melody/side.svg",
  21916. extra: 1097 / 944,
  21917. bottom: 11.8 / 1109
  21918. }
  21919. },
  21920. sideOutfit: {
  21921. height: math.unit(15.66, "feet"),
  21922. weight: math.unit(150, "lb"),
  21923. name: "Side (Outfit)",
  21924. image: {
  21925. source: "./media/characters/melody/side-outfit.svg",
  21926. extra: 1097 / 944,
  21927. bottom: 11.8 / 1109
  21928. }
  21929. },
  21930. },
  21931. [
  21932. {
  21933. name: "Normal",
  21934. height: math.unit(15.66, "feet"),
  21935. default: true
  21936. },
  21937. ]
  21938. ))
  21939. characterMakers.push(() => makeCharacter(
  21940. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21941. {
  21942. front: {
  21943. height: math.unit(8, "feet"),
  21944. weight: math.unit(325, "lb"),
  21945. name: "Front",
  21946. image: {
  21947. source: "./media/characters/windera/front.svg",
  21948. extra: 3180 / 2845,
  21949. bottom: 178 / 3365
  21950. }
  21951. },
  21952. },
  21953. [
  21954. {
  21955. name: "Normal",
  21956. height: math.unit(8, "feet"),
  21957. default: true
  21958. },
  21959. ]
  21960. ))
  21961. characterMakers.push(() => makeCharacter(
  21962. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21963. {
  21964. front: {
  21965. height: math.unit(28.75, "feet"),
  21966. weight: math.unit(2000, "kg"),
  21967. name: "Front",
  21968. image: {
  21969. source: "./media/characters/sonear/front.svg",
  21970. extra: 1041.1 / 964.9,
  21971. bottom: 53.7 / 1096.6
  21972. }
  21973. },
  21974. },
  21975. [
  21976. {
  21977. name: "Normal",
  21978. height: math.unit(28.75, "feet"),
  21979. default: true
  21980. },
  21981. ]
  21982. ))
  21983. characterMakers.push(() => makeCharacter(
  21984. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21985. {
  21986. side: {
  21987. height: math.unit(25.5, "feet"),
  21988. weight: math.unit(23000, "kg"),
  21989. name: "Side",
  21990. image: {
  21991. source: "./media/characters/kanara/side.svg"
  21992. }
  21993. },
  21994. },
  21995. [
  21996. {
  21997. name: "Normal",
  21998. height: math.unit(25.5, "feet"),
  21999. default: true
  22000. },
  22001. ]
  22002. ))
  22003. characterMakers.push(() => makeCharacter(
  22004. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22005. {
  22006. side: {
  22007. height: math.unit(10, "feet"),
  22008. weight: math.unit(1000, "kg"),
  22009. name: "Side",
  22010. image: {
  22011. source: "./media/characters/ereus/side.svg",
  22012. extra: 1157 / 959,
  22013. bottom: 153 / 1312.5
  22014. }
  22015. },
  22016. },
  22017. [
  22018. {
  22019. name: "Normal",
  22020. height: math.unit(10, "feet"),
  22021. default: true
  22022. },
  22023. ]
  22024. ))
  22025. characterMakers.push(() => makeCharacter(
  22026. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22027. {
  22028. side: {
  22029. height: math.unit(4.5, "feet"),
  22030. weight: math.unit(500, "lb"),
  22031. name: "Side",
  22032. image: {
  22033. source: "./media/characters/e-ter/side.svg",
  22034. extra: 1550 / 1248,
  22035. bottom: 146 / 1694
  22036. }
  22037. },
  22038. },
  22039. [
  22040. {
  22041. name: "Normal",
  22042. height: math.unit(4.5, "feet"),
  22043. default: true
  22044. },
  22045. ]
  22046. ))
  22047. characterMakers.push(() => makeCharacter(
  22048. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22049. {
  22050. side: {
  22051. height: math.unit(9.7, "feet"),
  22052. weight: math.unit(4000, "kg"),
  22053. name: "Side",
  22054. image: {
  22055. source: "./media/characters/yamie/side.svg"
  22056. }
  22057. },
  22058. },
  22059. [
  22060. {
  22061. name: "Normal",
  22062. height: math.unit(9.7, "feet"),
  22063. default: true
  22064. },
  22065. ]
  22066. ))
  22067. characterMakers.push(() => makeCharacter(
  22068. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22069. {
  22070. front: {
  22071. height: math.unit(50, "feet"),
  22072. weight: math.unit(50000, "kg"),
  22073. name: "Front",
  22074. image: {
  22075. source: "./media/characters/anders/front.svg",
  22076. extra: 570 / 539,
  22077. bottom: 14.7 / 586.7
  22078. }
  22079. },
  22080. },
  22081. [
  22082. {
  22083. name: "Large",
  22084. height: math.unit(50, "feet")
  22085. },
  22086. {
  22087. name: "Macro",
  22088. height: math.unit(2000, "feet"),
  22089. default: true
  22090. },
  22091. {
  22092. name: "Megamacro",
  22093. height: math.unit(12, "miles")
  22094. },
  22095. ]
  22096. ))
  22097. characterMakers.push(() => makeCharacter(
  22098. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22099. {
  22100. front: {
  22101. height: math.unit(7 + 2 / 12, "feet"),
  22102. weight: math.unit(300, "lb"),
  22103. name: "Front",
  22104. image: {
  22105. source: "./media/characters/reban/front.svg",
  22106. extra: 516 / 487,
  22107. bottom: 42.82 / 558.356
  22108. }
  22109. },
  22110. dick: {
  22111. height: math.unit(7 / 5, "feet"),
  22112. name: "Dick",
  22113. image: {
  22114. source: "./media/characters/reban/dick.svg"
  22115. }
  22116. },
  22117. },
  22118. [
  22119. {
  22120. name: "Natural Height",
  22121. height: math.unit(7 + 2 / 12, "feet")
  22122. },
  22123. {
  22124. name: "Macro",
  22125. height: math.unit(500, "feet"),
  22126. default: true
  22127. },
  22128. {
  22129. name: "Canon Height",
  22130. height: math.unit(50, "AU")
  22131. },
  22132. ]
  22133. ))
  22134. characterMakers.push(() => makeCharacter(
  22135. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22136. {
  22137. front: {
  22138. height: math.unit(6, "feet"),
  22139. weight: math.unit(150, "lb"),
  22140. name: "Front",
  22141. image: {
  22142. source: "./media/characters/terrance-keayes/front.svg",
  22143. extra: 1.005,
  22144. bottom: 151 / 1615
  22145. }
  22146. },
  22147. side: {
  22148. height: math.unit(6, "feet"),
  22149. weight: math.unit(150, "lb"),
  22150. name: "Side",
  22151. image: {
  22152. source: "./media/characters/terrance-keayes/side.svg",
  22153. extra: 1.005,
  22154. bottom: 129.4 / 1544
  22155. }
  22156. },
  22157. back: {
  22158. height: math.unit(6, "feet"),
  22159. weight: math.unit(150, "lb"),
  22160. name: "Back",
  22161. image: {
  22162. source: "./media/characters/terrance-keayes/back.svg",
  22163. extra: 1.005,
  22164. bottom: 58.4 / 1557.3
  22165. }
  22166. },
  22167. dick: {
  22168. height: math.unit(6 * 0.208, "feet"),
  22169. name: "Dick",
  22170. image: {
  22171. source: "./media/characters/terrance-keayes/dick.svg"
  22172. }
  22173. },
  22174. },
  22175. [
  22176. {
  22177. name: "Canon Height",
  22178. height: math.unit(35, "miles"),
  22179. default: true
  22180. },
  22181. ]
  22182. ))
  22183. characterMakers.push(() => makeCharacter(
  22184. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22185. {
  22186. front: {
  22187. height: math.unit(6, "feet"),
  22188. weight: math.unit(150, "lb"),
  22189. name: "Front",
  22190. image: {
  22191. source: "./media/characters/ofelia/front.svg",
  22192. extra: 546 / 541,
  22193. bottom: 39 / 583
  22194. }
  22195. },
  22196. back: {
  22197. height: math.unit(6, "feet"),
  22198. weight: math.unit(150, "lb"),
  22199. name: "Back",
  22200. image: {
  22201. source: "./media/characters/ofelia/back.svg",
  22202. extra: 564 / 559.5,
  22203. bottom: 8.69 / 573.02
  22204. }
  22205. },
  22206. maw: {
  22207. height: math.unit(1, "feet"),
  22208. name: "Maw",
  22209. image: {
  22210. source: "./media/characters/ofelia/maw.svg"
  22211. }
  22212. },
  22213. foot: {
  22214. height: math.unit(1.949, "feet"),
  22215. name: "Foot",
  22216. image: {
  22217. source: "./media/characters/ofelia/foot.svg"
  22218. }
  22219. },
  22220. },
  22221. [
  22222. {
  22223. name: "Canon Height",
  22224. height: math.unit(2000, "miles"),
  22225. default: true
  22226. },
  22227. ]
  22228. ))
  22229. characterMakers.push(() => makeCharacter(
  22230. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22231. {
  22232. front: {
  22233. height: math.unit(6, "feet"),
  22234. weight: math.unit(150, "lb"),
  22235. name: "Front",
  22236. image: {
  22237. source: "./media/characters/samuel/front.svg",
  22238. extra: 265 / 258,
  22239. bottom: 2 / 266.1566
  22240. }
  22241. },
  22242. },
  22243. [
  22244. {
  22245. name: "Macro",
  22246. height: math.unit(100, "feet"),
  22247. default: true
  22248. },
  22249. {
  22250. name: "Full Size",
  22251. height: math.unit(1000, "miles")
  22252. },
  22253. ]
  22254. ))
  22255. characterMakers.push(() => makeCharacter(
  22256. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22257. {
  22258. front: {
  22259. height: math.unit(6, "feet"),
  22260. weight: math.unit(300, "lb"),
  22261. name: "Front",
  22262. image: {
  22263. source: "./media/characters/beishir-kiel/front.svg",
  22264. extra: 569 / 547,
  22265. bottom: 41.9 / 609
  22266. }
  22267. },
  22268. maw: {
  22269. height: math.unit(6 * 0.202, "feet"),
  22270. name: "Maw",
  22271. image: {
  22272. source: "./media/characters/beishir-kiel/maw.svg"
  22273. }
  22274. },
  22275. },
  22276. [
  22277. {
  22278. name: "Macro",
  22279. height: math.unit(300, "feet"),
  22280. default: true
  22281. },
  22282. ]
  22283. ))
  22284. characterMakers.push(() => makeCharacter(
  22285. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22286. {
  22287. front: {
  22288. height: math.unit(5 + 7/12, "feet"),
  22289. weight: math.unit(120, "lb"),
  22290. name: "Front",
  22291. image: {
  22292. source: "./media/characters/logan-grey/front.svg",
  22293. extra: 1836/1738,
  22294. bottom: 108/1944
  22295. }
  22296. },
  22297. back: {
  22298. height: math.unit(5 + 7/12, "feet"),
  22299. weight: math.unit(120, "lb"),
  22300. name: "Back",
  22301. image: {
  22302. source: "./media/characters/logan-grey/back.svg",
  22303. extra: 1880/1794,
  22304. bottom: 24/1904
  22305. }
  22306. },
  22307. frontSfw: {
  22308. height: math.unit(5 + 7/12, "feet"),
  22309. weight: math.unit(120, "lb"),
  22310. name: "Front (SFW)",
  22311. image: {
  22312. source: "./media/characters/logan-grey/front-sfw.svg",
  22313. extra: 1836/1738,
  22314. bottom: 108/1944
  22315. }
  22316. },
  22317. backSfw: {
  22318. height: math.unit(5 + 7/12, "feet"),
  22319. weight: math.unit(120, "lb"),
  22320. name: "Back (SFW)",
  22321. image: {
  22322. source: "./media/characters/logan-grey/back-sfw.svg",
  22323. extra: 1880/1794,
  22324. bottom: 24/1904
  22325. }
  22326. },
  22327. hands: {
  22328. height: math.unit(0.84, "feet"),
  22329. name: "Hands",
  22330. image: {
  22331. source: "./media/characters/logan-grey/hands.svg"
  22332. }
  22333. },
  22334. paws: {
  22335. height: math.unit(0.72, "feet"),
  22336. name: "Paws",
  22337. image: {
  22338. source: "./media/characters/logan-grey/paws.svg"
  22339. }
  22340. },
  22341. cock: {
  22342. height: math.unit(1.45, "feet"),
  22343. name: "Cock",
  22344. image: {
  22345. source: "./media/characters/logan-grey/cock.svg"
  22346. }
  22347. },
  22348. cockAlt: {
  22349. height: math.unit(1.437, "feet"),
  22350. name: "Cock (alt)",
  22351. image: {
  22352. source: "./media/characters/logan-grey/cock-alt.svg"
  22353. }
  22354. },
  22355. },
  22356. [
  22357. {
  22358. name: "Normal",
  22359. height: math.unit(5 + 8 / 12, "feet")
  22360. },
  22361. {
  22362. name: "The 500 Foot Femboy",
  22363. height: math.unit(500, "feet"),
  22364. default: true
  22365. },
  22366. {
  22367. name: "Megmacro",
  22368. height: math.unit(20, "miles")
  22369. },
  22370. ]
  22371. ))
  22372. characterMakers.push(() => makeCharacter(
  22373. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22374. {
  22375. front: {
  22376. height: math.unit(8 + 2 / 12, "feet"),
  22377. weight: math.unit(275, "lb"),
  22378. name: "Front",
  22379. image: {
  22380. source: "./media/characters/draganta/front.svg",
  22381. extra: 1177 / 1135,
  22382. bottom: 33.46 / 1212.1
  22383. }
  22384. },
  22385. },
  22386. [
  22387. {
  22388. name: "Normal",
  22389. height: math.unit(8 + 6 / 12, "feet"),
  22390. default: true
  22391. },
  22392. {
  22393. name: "Macro",
  22394. height: math.unit(150, "feet")
  22395. },
  22396. {
  22397. name: "Megamacro",
  22398. height: math.unit(1000, "miles")
  22399. },
  22400. ]
  22401. ))
  22402. characterMakers.push(() => makeCharacter(
  22403. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22404. {
  22405. front: {
  22406. height: math.unit(1.72, "m"),
  22407. weight: math.unit(80, "lb"),
  22408. name: "Front",
  22409. image: {
  22410. source: "./media/characters/voski/front.svg",
  22411. extra: 2076.22 / 2022.4,
  22412. bottom: 102.7 / 2177.3866
  22413. }
  22414. },
  22415. frontNsfw: {
  22416. height: math.unit(1.72, "m"),
  22417. weight: math.unit(80, "lb"),
  22418. name: "Front (NSFW)",
  22419. image: {
  22420. source: "./media/characters/voski/front-nsfw.svg",
  22421. extra: 2076.22 / 2022.4,
  22422. bottom: 102.7 / 2177.3866
  22423. }
  22424. },
  22425. back: {
  22426. height: math.unit(1.72, "m"),
  22427. weight: math.unit(80, "lb"),
  22428. name: "Back",
  22429. image: {
  22430. source: "./media/characters/voski/back.svg",
  22431. extra: 2104 / 2051,
  22432. bottom: 10.45 / 2113.63
  22433. }
  22434. },
  22435. },
  22436. [
  22437. {
  22438. name: "Normal",
  22439. height: math.unit(1.72, "m")
  22440. },
  22441. {
  22442. name: "Macro",
  22443. height: math.unit(55, "m"),
  22444. default: true
  22445. },
  22446. {
  22447. name: "Macro+",
  22448. height: math.unit(300, "m")
  22449. },
  22450. {
  22451. name: "Macro++",
  22452. height: math.unit(700, "m")
  22453. },
  22454. {
  22455. name: "Macro+++",
  22456. height: math.unit(4500, "m")
  22457. },
  22458. {
  22459. name: "Macro++++",
  22460. height: math.unit(45, "km")
  22461. },
  22462. {
  22463. name: "Macro+++++",
  22464. height: math.unit(1220, "km")
  22465. },
  22466. ]
  22467. ))
  22468. characterMakers.push(() => makeCharacter(
  22469. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22470. {
  22471. front: {
  22472. height: math.unit(2.3, "m"),
  22473. weight: math.unit(304, "kg"),
  22474. name: "Front",
  22475. image: {
  22476. source: "./media/characters/icowom-lee/front.svg",
  22477. extra: 985 / 955,
  22478. bottom: 25.4 / 1012
  22479. }
  22480. },
  22481. fronttentacles: {
  22482. height: math.unit(2.3, "m"),
  22483. weight: math.unit(304, "kg"),
  22484. name: "Front-tentacles",
  22485. image: {
  22486. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22487. extra: 985 / 955,
  22488. bottom: 25.4 / 1012
  22489. }
  22490. },
  22491. back: {
  22492. height: math.unit(2.3, "m"),
  22493. weight: math.unit(304, "kg"),
  22494. name: "Back",
  22495. image: {
  22496. source: "./media/characters/icowom-lee/back.svg",
  22497. extra: 975 / 954,
  22498. bottom: 9.5 / 985
  22499. }
  22500. },
  22501. backtentacles: {
  22502. height: math.unit(2.3, "m"),
  22503. weight: math.unit(304, "kg"),
  22504. name: "Back-tentacles",
  22505. image: {
  22506. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22507. extra: 975 / 954,
  22508. bottom: 9.5 / 985
  22509. }
  22510. },
  22511. frontDressed: {
  22512. height: math.unit(2.3, "m"),
  22513. weight: math.unit(304, "kg"),
  22514. name: "Front (Dressed)",
  22515. image: {
  22516. source: "./media/characters/icowom-lee/front-dressed.svg",
  22517. extra: 3076 / 2933,
  22518. bottom: 51.4 / 3125.1889
  22519. }
  22520. },
  22521. rump: {
  22522. height: math.unit(0.776, "meters"),
  22523. name: "Rump",
  22524. image: {
  22525. source: "./media/characters/icowom-lee/rump.svg"
  22526. }
  22527. },
  22528. genitals: {
  22529. height: math.unit(0.78, "meters"),
  22530. name: "Genitals",
  22531. image: {
  22532. source: "./media/characters/icowom-lee/genitals.svg"
  22533. }
  22534. },
  22535. },
  22536. [
  22537. {
  22538. name: "Normal",
  22539. height: math.unit(2.3, "meters"),
  22540. default: true
  22541. },
  22542. {
  22543. name: "Macro",
  22544. height: math.unit(94, "meters"),
  22545. default: true
  22546. },
  22547. ]
  22548. ))
  22549. characterMakers.push(() => makeCharacter(
  22550. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22551. {
  22552. front: {
  22553. height: math.unit(22, "meters"),
  22554. weight: math.unit(21000, "kg"),
  22555. name: "Front",
  22556. image: {
  22557. source: "./media/characters/shock-diamond/front.svg",
  22558. extra: 2204 / 2053,
  22559. bottom: 65 / 2239.47
  22560. }
  22561. },
  22562. frontNude: {
  22563. height: math.unit(22, "meters"),
  22564. weight: math.unit(21000, "kg"),
  22565. name: "Front (Nude)",
  22566. image: {
  22567. source: "./media/characters/shock-diamond/front-nude.svg",
  22568. extra: 2514 / 2285,
  22569. bottom: 13 / 2527.56
  22570. }
  22571. },
  22572. },
  22573. [
  22574. {
  22575. name: "Normal",
  22576. height: math.unit(3, "meters")
  22577. },
  22578. {
  22579. name: "Macro",
  22580. height: math.unit(22, "meters"),
  22581. default: true
  22582. },
  22583. ]
  22584. ))
  22585. characterMakers.push(() => makeCharacter(
  22586. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22587. {
  22588. front: {
  22589. height: math.unit(5 + 4 / 12, "feet"),
  22590. weight: math.unit(120, "lb"),
  22591. name: "Front",
  22592. image: {
  22593. source: "./media/characters/rory/front.svg",
  22594. extra: 1318/1241,
  22595. bottom: 42/1360
  22596. }
  22597. },
  22598. back: {
  22599. height: math.unit(5 + 4 / 12, "feet"),
  22600. weight: math.unit(120, "lb"),
  22601. name: "Back",
  22602. image: {
  22603. source: "./media/characters/rory/back.svg",
  22604. extra: 1318/1241,
  22605. bottom: 42/1360
  22606. }
  22607. },
  22608. butt: {
  22609. height: math.unit(1.74, "feet"),
  22610. name: "Butt",
  22611. image: {
  22612. source: "./media/characters/rory/butt.svg"
  22613. }
  22614. },
  22615. dick: {
  22616. height: math.unit(1.02, "feet"),
  22617. name: "Dick",
  22618. image: {
  22619. source: "./media/characters/rory/dick.svg"
  22620. }
  22621. },
  22622. paws: {
  22623. height: math.unit(1, "feet"),
  22624. name: "Paws",
  22625. image: {
  22626. source: "./media/characters/rory/paws.svg"
  22627. }
  22628. },
  22629. frontAlt: {
  22630. height: math.unit(5 + 4 / 12, "feet"),
  22631. weight: math.unit(120, "lb"),
  22632. name: "Front (Alt)",
  22633. image: {
  22634. source: "./media/characters/rory/front-alt.svg",
  22635. extra: 589 / 556,
  22636. bottom: 45.7 / 635.76
  22637. }
  22638. },
  22639. frontAltNude: {
  22640. height: math.unit(5 + 4 / 12, "feet"),
  22641. weight: math.unit(120, "lb"),
  22642. name: "Front (Alt, Nude)",
  22643. image: {
  22644. source: "./media/characters/rory/front-alt-nude.svg",
  22645. extra: 589 / 556,
  22646. bottom: 45.7 / 635.76
  22647. }
  22648. },
  22649. side: {
  22650. height: math.unit(5 + 4 / 12, "feet"),
  22651. weight: math.unit(120, "lb"),
  22652. name: "Side",
  22653. image: {
  22654. source: "./media/characters/rory/side.svg",
  22655. extra: 597 / 564,
  22656. bottom: 55 / 653
  22657. }
  22658. },
  22659. backAlt: {
  22660. height: math.unit(5 + 4 / 12, "feet"),
  22661. weight: math.unit(120, "lb"),
  22662. name: "Back (Alt)",
  22663. image: {
  22664. source: "./media/characters/rory/back-alt.svg",
  22665. extra: 620 / 585,
  22666. bottom: 8.86 / 630.43
  22667. }
  22668. },
  22669. dickAlt: {
  22670. height: math.unit(0.86, "feet"),
  22671. name: "Dick (Alt)",
  22672. image: {
  22673. source: "./media/characters/rory/dick-alt.svg"
  22674. }
  22675. },
  22676. },
  22677. [
  22678. {
  22679. name: "Normal",
  22680. height: math.unit(5 + 4 / 12, "feet"),
  22681. default: true
  22682. },
  22683. {
  22684. name: "Macro",
  22685. height: math.unit(100, "feet")
  22686. },
  22687. {
  22688. name: "Macro+",
  22689. height: math.unit(140, "feet")
  22690. },
  22691. {
  22692. name: "Macro++",
  22693. height: math.unit(300, "feet")
  22694. },
  22695. ]
  22696. ))
  22697. characterMakers.push(() => makeCharacter(
  22698. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22699. {
  22700. front: {
  22701. height: math.unit(5 + 9 / 12, "feet"),
  22702. weight: math.unit(190, "lb"),
  22703. name: "Front",
  22704. image: {
  22705. source: "./media/characters/sprisk/front.svg",
  22706. extra: 1225 / 1180,
  22707. bottom: 42.7 / 1266.4
  22708. }
  22709. },
  22710. frontNsfw: {
  22711. height: math.unit(5 + 9 / 12, "feet"),
  22712. weight: math.unit(190, "lb"),
  22713. name: "Front (NSFW)",
  22714. image: {
  22715. source: "./media/characters/sprisk/front-nsfw.svg",
  22716. extra: 1225 / 1180,
  22717. bottom: 42.7 / 1266.4
  22718. }
  22719. },
  22720. back: {
  22721. height: math.unit(5 + 9 / 12, "feet"),
  22722. weight: math.unit(190, "lb"),
  22723. name: "Back",
  22724. image: {
  22725. source: "./media/characters/sprisk/back.svg",
  22726. extra: 1247 / 1200,
  22727. bottom: 5.6 / 1253.04
  22728. }
  22729. },
  22730. },
  22731. [
  22732. {
  22733. name: "Tiny",
  22734. height: math.unit(2, "inches")
  22735. },
  22736. {
  22737. name: "Normal",
  22738. height: math.unit(5 + 9 / 12, "feet"),
  22739. default: true
  22740. },
  22741. {
  22742. name: "Mini Macro",
  22743. height: math.unit(18, "feet")
  22744. },
  22745. {
  22746. name: "Macro",
  22747. height: math.unit(100, "feet")
  22748. },
  22749. {
  22750. name: "MACRO",
  22751. height: math.unit(50, "miles")
  22752. },
  22753. {
  22754. name: "M A C R O",
  22755. height: math.unit(300, "miles")
  22756. },
  22757. ]
  22758. ))
  22759. characterMakers.push(() => makeCharacter(
  22760. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22761. {
  22762. side: {
  22763. height: math.unit(15.6, "meters"),
  22764. weight: math.unit(700000, "kg"),
  22765. name: "Side",
  22766. image: {
  22767. source: "./media/characters/bunsen/side.svg",
  22768. extra: 1644 / 358
  22769. }
  22770. },
  22771. foot: {
  22772. height: math.unit(1.611 * 1644 / 358, "meter"),
  22773. name: "Foot",
  22774. image: {
  22775. source: "./media/characters/bunsen/foot.svg"
  22776. }
  22777. },
  22778. },
  22779. [
  22780. {
  22781. name: "Small",
  22782. height: math.unit(10, "feet")
  22783. },
  22784. {
  22785. name: "Normal",
  22786. height: math.unit(15.6, "meters"),
  22787. default: true
  22788. },
  22789. ]
  22790. ))
  22791. characterMakers.push(() => makeCharacter(
  22792. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22793. {
  22794. front: {
  22795. height: math.unit(4 + 11 / 12, "feet"),
  22796. weight: math.unit(140, "lb"),
  22797. name: "Front",
  22798. image: {
  22799. source: "./media/characters/sesh/front.svg",
  22800. extra: 3420 / 3231,
  22801. bottom: 72 / 3949.5
  22802. }
  22803. },
  22804. },
  22805. [
  22806. {
  22807. name: "Normal",
  22808. height: math.unit(4 + 11 / 12, "feet")
  22809. },
  22810. {
  22811. name: "Grown",
  22812. height: math.unit(15, "feet"),
  22813. default: true
  22814. },
  22815. {
  22816. name: "Macro",
  22817. height: math.unit(1500, "feet")
  22818. },
  22819. {
  22820. name: "Megamacro",
  22821. height: math.unit(30, "miles")
  22822. },
  22823. {
  22824. name: "Continental",
  22825. height: math.unit(3000, "miles")
  22826. },
  22827. {
  22828. name: "Gravity Mass",
  22829. height: math.unit(300000, "miles")
  22830. },
  22831. {
  22832. name: "Planet Buster",
  22833. height: math.unit(30000000, "miles")
  22834. },
  22835. {
  22836. name: "Big",
  22837. height: math.unit(3000000000, "miles")
  22838. },
  22839. ]
  22840. ))
  22841. characterMakers.push(() => makeCharacter(
  22842. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22843. {
  22844. front: {
  22845. height: math.unit(9, "feet"),
  22846. weight: math.unit(350, "lb"),
  22847. name: "Front",
  22848. image: {
  22849. source: "./media/characters/pepper/front.svg",
  22850. extra: 1448 / 1312,
  22851. bottom: 9.4 / 1457.88
  22852. }
  22853. },
  22854. back: {
  22855. height: math.unit(9, "feet"),
  22856. weight: math.unit(350, "lb"),
  22857. name: "Back",
  22858. image: {
  22859. source: "./media/characters/pepper/back.svg",
  22860. extra: 1423 / 1300,
  22861. bottom: 4.6 / 1429
  22862. }
  22863. },
  22864. maw: {
  22865. height: math.unit(0.932, "feet"),
  22866. name: "Maw",
  22867. image: {
  22868. source: "./media/characters/pepper/maw.svg"
  22869. }
  22870. },
  22871. },
  22872. [
  22873. {
  22874. name: "Normal",
  22875. height: math.unit(9, "feet"),
  22876. default: true
  22877. },
  22878. ]
  22879. ))
  22880. characterMakers.push(() => makeCharacter(
  22881. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22882. {
  22883. front: {
  22884. height: math.unit(6, "feet"),
  22885. weight: math.unit(150, "lb"),
  22886. name: "Front",
  22887. image: {
  22888. source: "./media/characters/maelstrom/front.svg",
  22889. extra: 2100 / 1883,
  22890. bottom: 94 / 2196.7
  22891. }
  22892. },
  22893. },
  22894. [
  22895. {
  22896. name: "Less Kaiju",
  22897. height: math.unit(200, "feet")
  22898. },
  22899. {
  22900. name: "Kaiju",
  22901. height: math.unit(400, "feet"),
  22902. default: true
  22903. },
  22904. {
  22905. name: "Kaiju-er",
  22906. height: math.unit(600, "feet")
  22907. },
  22908. ]
  22909. ))
  22910. characterMakers.push(() => makeCharacter(
  22911. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22912. {
  22913. front: {
  22914. height: math.unit(6 + 5 / 12, "feet"),
  22915. weight: math.unit(180, "lb"),
  22916. name: "Front",
  22917. image: {
  22918. source: "./media/characters/lexir/front.svg",
  22919. extra: 180 / 172,
  22920. bottom: 12 / 192
  22921. }
  22922. },
  22923. back: {
  22924. height: math.unit(6 + 5 / 12, "feet"),
  22925. weight: math.unit(180, "lb"),
  22926. name: "Back",
  22927. image: {
  22928. source: "./media/characters/lexir/back.svg",
  22929. extra: 183.84 / 175.5,
  22930. bottom: 3.1 / 187
  22931. }
  22932. },
  22933. },
  22934. [
  22935. {
  22936. name: "Very Smal",
  22937. height: math.unit(1, "nm")
  22938. },
  22939. {
  22940. name: "Normal",
  22941. height: math.unit(6 + 5 / 12, "feet"),
  22942. default: true
  22943. },
  22944. {
  22945. name: "Macro",
  22946. height: math.unit(1, "mile")
  22947. },
  22948. {
  22949. name: "Megamacro",
  22950. height: math.unit(50, "miles")
  22951. },
  22952. ]
  22953. ))
  22954. characterMakers.push(() => makeCharacter(
  22955. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22956. {
  22957. front: {
  22958. height: math.unit(1.5, "meters"),
  22959. weight: math.unit(100, "lb"),
  22960. name: "Front",
  22961. image: {
  22962. source: "./media/characters/maksio/front.svg",
  22963. extra: 1549 / 1531,
  22964. bottom: 123.7 / 1674.5429
  22965. }
  22966. },
  22967. back: {
  22968. height: math.unit(1.5, "meters"),
  22969. weight: math.unit(100, "lb"),
  22970. name: "Back",
  22971. image: {
  22972. source: "./media/characters/maksio/back.svg",
  22973. extra: 1541 / 1509,
  22974. bottom: 97 / 1639
  22975. }
  22976. },
  22977. hand: {
  22978. height: math.unit(0.621, "feet"),
  22979. name: "Hand",
  22980. image: {
  22981. source: "./media/characters/maksio/hand.svg"
  22982. }
  22983. },
  22984. foot: {
  22985. height: math.unit(1.611, "feet"),
  22986. name: "Foot",
  22987. image: {
  22988. source: "./media/characters/maksio/foot.svg"
  22989. }
  22990. },
  22991. },
  22992. [
  22993. {
  22994. name: "Shrunken",
  22995. height: math.unit(10, "cm")
  22996. },
  22997. {
  22998. name: "Normal",
  22999. height: math.unit(150, "cm"),
  23000. default: true
  23001. },
  23002. ]
  23003. ))
  23004. characterMakers.push(() => makeCharacter(
  23005. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23006. {
  23007. front: {
  23008. height: math.unit(100, "feet"),
  23009. name: "Front",
  23010. image: {
  23011. source: "./media/characters/erza-bear/front.svg",
  23012. extra: 2449 / 2390,
  23013. bottom: 46 / 2494
  23014. }
  23015. },
  23016. back: {
  23017. height: math.unit(100, "feet"),
  23018. name: "Back",
  23019. image: {
  23020. source: "./media/characters/erza-bear/back.svg",
  23021. extra: 2489 / 2430,
  23022. bottom: 85.4 / 2480
  23023. }
  23024. },
  23025. tail: {
  23026. height: math.unit(42, "feet"),
  23027. name: "Tail",
  23028. image: {
  23029. source: "./media/characters/erza-bear/tail.svg"
  23030. }
  23031. },
  23032. tongue: {
  23033. height: math.unit(8, "feet"),
  23034. name: "Tongue",
  23035. image: {
  23036. source: "./media/characters/erza-bear/tongue.svg"
  23037. }
  23038. },
  23039. dick: {
  23040. height: math.unit(10.5, "feet"),
  23041. name: "Dick",
  23042. image: {
  23043. source: "./media/characters/erza-bear/dick.svg"
  23044. }
  23045. },
  23046. dickVertical: {
  23047. height: math.unit(16.9, "feet"),
  23048. name: "Dick (Vertical)",
  23049. image: {
  23050. source: "./media/characters/erza-bear/dick-vertical.svg"
  23051. }
  23052. },
  23053. },
  23054. [
  23055. {
  23056. name: "Macro",
  23057. height: math.unit(100, "feet"),
  23058. default: true
  23059. },
  23060. ]
  23061. ))
  23062. characterMakers.push(() => makeCharacter(
  23063. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23064. {
  23065. front: {
  23066. height: math.unit(172, "cm"),
  23067. weight: math.unit(73, "kg"),
  23068. name: "Front",
  23069. image: {
  23070. source: "./media/characters/violet-flor/front.svg",
  23071. extra: 1530 / 1442,
  23072. bottom: 61.9 / 1588.8
  23073. }
  23074. },
  23075. back: {
  23076. height: math.unit(180, "cm"),
  23077. weight: math.unit(73, "kg"),
  23078. name: "Back",
  23079. image: {
  23080. source: "./media/characters/violet-flor/back.svg",
  23081. extra: 1692 / 1630,
  23082. bottom: 20 / 1712
  23083. }
  23084. },
  23085. },
  23086. [
  23087. {
  23088. name: "Normal",
  23089. height: math.unit(172, "cm"),
  23090. default: true
  23091. },
  23092. ]
  23093. ))
  23094. characterMakers.push(() => makeCharacter(
  23095. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23096. {
  23097. front: {
  23098. height: math.unit(6, "feet"),
  23099. weight: math.unit(220, "lb"),
  23100. name: "Front",
  23101. image: {
  23102. source: "./media/characters/lynn-rhea/front.svg",
  23103. extra: 310 / 273
  23104. }
  23105. },
  23106. back: {
  23107. height: math.unit(6, "feet"),
  23108. weight: math.unit(220, "lb"),
  23109. name: "Back",
  23110. image: {
  23111. source: "./media/characters/lynn-rhea/back.svg",
  23112. extra: 310 / 273
  23113. }
  23114. },
  23115. dicks: {
  23116. height: math.unit(0.9, "feet"),
  23117. name: "Dicks",
  23118. image: {
  23119. source: "./media/characters/lynn-rhea/dicks.svg"
  23120. }
  23121. },
  23122. slit: {
  23123. height: math.unit(0.4, "feet"),
  23124. name: "Slit",
  23125. image: {
  23126. source: "./media/characters/lynn-rhea/slit.svg"
  23127. }
  23128. },
  23129. },
  23130. [
  23131. {
  23132. name: "Micro",
  23133. height: math.unit(1, "inch")
  23134. },
  23135. {
  23136. name: "Macro",
  23137. height: math.unit(60, "feet"),
  23138. default: true
  23139. },
  23140. {
  23141. name: "Megamacro",
  23142. height: math.unit(2, "miles")
  23143. },
  23144. {
  23145. name: "Gigamacro",
  23146. height: math.unit(3, "earths")
  23147. },
  23148. {
  23149. name: "Galactic",
  23150. height: math.unit(0.8, "galaxies")
  23151. },
  23152. ]
  23153. ))
  23154. characterMakers.push(() => makeCharacter(
  23155. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23156. {
  23157. front: {
  23158. height: math.unit(1600, "feet"),
  23159. weight: math.unit(85758785169, "kg"),
  23160. name: "Front",
  23161. image: {
  23162. source: "./media/characters/valathos/front.svg",
  23163. extra: 1451 / 1339
  23164. }
  23165. },
  23166. },
  23167. [
  23168. {
  23169. name: "Macro",
  23170. height: math.unit(1600, "feet"),
  23171. default: true
  23172. },
  23173. ]
  23174. ))
  23175. characterMakers.push(() => makeCharacter(
  23176. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23177. {
  23178. front: {
  23179. height: math.unit(7 + 5 / 12, "feet"),
  23180. weight: math.unit(300, "lb"),
  23181. name: "Front",
  23182. image: {
  23183. source: "./media/characters/azula/front.svg",
  23184. extra: 3208 / 2880,
  23185. bottom: 80.2 / 3277
  23186. }
  23187. },
  23188. back: {
  23189. height: math.unit(7 + 5 / 12, "feet"),
  23190. weight: math.unit(300, "lb"),
  23191. name: "Back",
  23192. image: {
  23193. source: "./media/characters/azula/back.svg",
  23194. extra: 3169 / 2822,
  23195. bottom: 150.6 / 3321
  23196. }
  23197. },
  23198. },
  23199. [
  23200. {
  23201. name: "Normal",
  23202. height: math.unit(7 + 5 / 12, "feet"),
  23203. default: true
  23204. },
  23205. {
  23206. name: "Big",
  23207. height: math.unit(20, "feet")
  23208. },
  23209. ]
  23210. ))
  23211. characterMakers.push(() => makeCharacter(
  23212. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23213. {
  23214. front: {
  23215. height: math.unit(5 + 1 / 12, "feet"),
  23216. weight: math.unit(110, "lb"),
  23217. name: "Front",
  23218. image: {
  23219. source: "./media/characters/rupert/front.svg",
  23220. extra: 1549 / 1495,
  23221. bottom: 54.2 / 1604.4
  23222. }
  23223. },
  23224. },
  23225. [
  23226. {
  23227. name: "Normal",
  23228. height: math.unit(5 + 1 / 12, "feet"),
  23229. default: true
  23230. },
  23231. ]
  23232. ))
  23233. characterMakers.push(() => makeCharacter(
  23234. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23235. {
  23236. front: {
  23237. height: math.unit(8 + 4 / 12, "feet"),
  23238. weight: math.unit(350, "lb"),
  23239. name: "Front",
  23240. image: {
  23241. source: "./media/characters/sheera-castellar/front.svg",
  23242. extra: 1957 / 1894,
  23243. bottom: 26.97 / 1975.017
  23244. }
  23245. },
  23246. side: {
  23247. height: math.unit(8 + 4 / 12, "feet"),
  23248. weight: math.unit(350, "lb"),
  23249. name: "Side",
  23250. image: {
  23251. source: "./media/characters/sheera-castellar/side.svg",
  23252. extra: 1957 / 1894
  23253. }
  23254. },
  23255. back: {
  23256. height: math.unit(8 + 4 / 12, "feet"),
  23257. weight: math.unit(350, "lb"),
  23258. name: "Back",
  23259. image: {
  23260. source: "./media/characters/sheera-castellar/back.svg",
  23261. extra: 1957 / 1894
  23262. }
  23263. },
  23264. angled: {
  23265. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23266. weight: math.unit(350, "lb"),
  23267. name: "Angled",
  23268. image: {
  23269. source: "./media/characters/sheera-castellar/angled.svg",
  23270. extra: 1807 / 1707,
  23271. bottom: 68 / 1875
  23272. }
  23273. },
  23274. genitals: {
  23275. height: math.unit(2.2, "feet"),
  23276. name: "Genitals",
  23277. image: {
  23278. source: "./media/characters/sheera-castellar/genitals.svg"
  23279. }
  23280. },
  23281. taur: {
  23282. height: math.unit(10 + 6/12, "feet"),
  23283. name: "Taur",
  23284. image: {
  23285. source: "./media/characters/sheera-castellar/taur.svg",
  23286. extra: 2017/1909,
  23287. bottom: 185/2202
  23288. }
  23289. },
  23290. },
  23291. [
  23292. {
  23293. name: "Normal",
  23294. height: math.unit(8 + 4 / 12, "feet")
  23295. },
  23296. {
  23297. name: "Macro",
  23298. height: math.unit(150, "feet"),
  23299. default: true
  23300. },
  23301. {
  23302. name: "Macro+",
  23303. height: math.unit(800, "feet")
  23304. },
  23305. ]
  23306. ))
  23307. characterMakers.push(() => makeCharacter(
  23308. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23309. {
  23310. front: {
  23311. height: math.unit(6, "feet"),
  23312. weight: math.unit(150, "lb"),
  23313. name: "Front",
  23314. image: {
  23315. source: "./media/characters/jaipur/front.svg",
  23316. extra: 3860 / 3731,
  23317. bottom: 287 / 4140
  23318. }
  23319. },
  23320. back: {
  23321. height: math.unit(6, "feet"),
  23322. weight: math.unit(150, "lb"),
  23323. name: "Back",
  23324. image: {
  23325. source: "./media/characters/jaipur/back.svg",
  23326. extra: 4060 / 3930,
  23327. bottom: 151 / 4200
  23328. }
  23329. },
  23330. },
  23331. [
  23332. {
  23333. name: "Normal",
  23334. height: math.unit(1.85, "meters"),
  23335. default: true
  23336. },
  23337. {
  23338. name: "Macro",
  23339. height: math.unit(150, "meters")
  23340. },
  23341. {
  23342. name: "Macro+",
  23343. height: math.unit(0.5, "miles")
  23344. },
  23345. {
  23346. name: "Macro++",
  23347. height: math.unit(2.5, "miles")
  23348. },
  23349. {
  23350. name: "Macro+++",
  23351. height: math.unit(12, "miles")
  23352. },
  23353. {
  23354. name: "Macro++++",
  23355. height: math.unit(120, "miles")
  23356. },
  23357. {
  23358. name: "Macro+++++",
  23359. height: math.unit(1200, "miles")
  23360. },
  23361. ]
  23362. ))
  23363. characterMakers.push(() => makeCharacter(
  23364. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23365. {
  23366. front: {
  23367. height: math.unit(6, "feet"),
  23368. weight: math.unit(150, "lb"),
  23369. name: "Front",
  23370. image: {
  23371. source: "./media/characters/sheila-wolf/front.svg",
  23372. extra: 1931 / 1808,
  23373. bottom: 29.5 / 1960
  23374. }
  23375. },
  23376. dick: {
  23377. height: math.unit(1.464, "feet"),
  23378. name: "Dick",
  23379. image: {
  23380. source: "./media/characters/sheila-wolf/dick.svg"
  23381. }
  23382. },
  23383. muzzle: {
  23384. height: math.unit(0.513, "feet"),
  23385. name: "Muzzle",
  23386. image: {
  23387. source: "./media/characters/sheila-wolf/muzzle.svg"
  23388. }
  23389. },
  23390. },
  23391. [
  23392. {
  23393. name: "Macro",
  23394. height: math.unit(70, "feet"),
  23395. default: true
  23396. },
  23397. ]
  23398. ))
  23399. characterMakers.push(() => makeCharacter(
  23400. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23401. {
  23402. front: {
  23403. height: math.unit(32, "meters"),
  23404. weight: math.unit(300000, "kg"),
  23405. name: "Front",
  23406. image: {
  23407. source: "./media/characters/almor/front.svg",
  23408. extra: 1408 / 1322,
  23409. bottom: 94.6 / 1506.5
  23410. }
  23411. },
  23412. },
  23413. [
  23414. {
  23415. name: "Macro",
  23416. height: math.unit(32, "meters"),
  23417. default: true
  23418. },
  23419. ]
  23420. ))
  23421. characterMakers.push(() => makeCharacter(
  23422. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23423. {
  23424. front: {
  23425. height: math.unit(7, "feet"),
  23426. weight: math.unit(200, "lb"),
  23427. name: "Front",
  23428. image: {
  23429. source: "./media/characters/silver/front.svg",
  23430. extra: 472.1 / 450.5,
  23431. bottom: 26.5 / 499.424
  23432. }
  23433. },
  23434. },
  23435. [
  23436. {
  23437. name: "Normal",
  23438. height: math.unit(7, "feet"),
  23439. default: true
  23440. },
  23441. {
  23442. name: "Macro",
  23443. height: math.unit(800, "feet")
  23444. },
  23445. {
  23446. name: "Megamacro",
  23447. height: math.unit(250, "miles")
  23448. },
  23449. ]
  23450. ))
  23451. characterMakers.push(() => makeCharacter(
  23452. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23453. {
  23454. front: {
  23455. height: math.unit(6, "feet"),
  23456. weight: math.unit(150, "lb"),
  23457. name: "Front",
  23458. image: {
  23459. source: "./media/characters/pliskin/front.svg",
  23460. extra: 1469 / 1359,
  23461. bottom: 70 / 1540
  23462. }
  23463. },
  23464. },
  23465. [
  23466. {
  23467. name: "Micro",
  23468. height: math.unit(3, "inches")
  23469. },
  23470. {
  23471. name: "Normal",
  23472. height: math.unit(5 + 11 / 12, "feet"),
  23473. default: true
  23474. },
  23475. {
  23476. name: "Macro",
  23477. height: math.unit(120, "feet")
  23478. },
  23479. ]
  23480. ))
  23481. characterMakers.push(() => makeCharacter(
  23482. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23483. {
  23484. front: {
  23485. height: math.unit(6, "feet"),
  23486. weight: math.unit(150, "lb"),
  23487. name: "Front",
  23488. image: {
  23489. source: "./media/characters/sammy/front.svg",
  23490. extra: 1193 / 1089,
  23491. bottom: 30.5 / 1226
  23492. }
  23493. },
  23494. },
  23495. [
  23496. {
  23497. name: "Macro",
  23498. height: math.unit(1700, "feet"),
  23499. default: true
  23500. },
  23501. {
  23502. name: "Examacro",
  23503. height: math.unit(2.5e9, "lightyears")
  23504. },
  23505. ]
  23506. ))
  23507. characterMakers.push(() => makeCharacter(
  23508. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23509. {
  23510. front: {
  23511. height: math.unit(21, "meters"),
  23512. weight: math.unit(12, "tonnes"),
  23513. name: "Front",
  23514. image: {
  23515. source: "./media/characters/kuru/front.svg",
  23516. extra: 4301 / 3785,
  23517. bottom: 371.3 / 4691
  23518. }
  23519. },
  23520. },
  23521. [
  23522. {
  23523. name: "Macro",
  23524. height: math.unit(21, "meters"),
  23525. default: true
  23526. },
  23527. ]
  23528. ))
  23529. characterMakers.push(() => makeCharacter(
  23530. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23531. {
  23532. front: {
  23533. height: math.unit(23, "meters"),
  23534. weight: math.unit(12.2, "tonnes"),
  23535. name: "Front",
  23536. image: {
  23537. source: "./media/characters/rakka/front.svg",
  23538. extra: 4670 / 4169,
  23539. bottom: 301 / 4968.7
  23540. }
  23541. },
  23542. },
  23543. [
  23544. {
  23545. name: "Macro",
  23546. height: math.unit(23, "meters"),
  23547. default: true
  23548. },
  23549. ]
  23550. ))
  23551. characterMakers.push(() => makeCharacter(
  23552. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23553. {
  23554. front: {
  23555. height: math.unit(6, "feet"),
  23556. weight: math.unit(150, "lb"),
  23557. name: "Front",
  23558. image: {
  23559. source: "./media/characters/rhys-feline/front.svg",
  23560. extra: 2488 / 2308,
  23561. bottom: 35.67 / 2519.19
  23562. }
  23563. },
  23564. },
  23565. [
  23566. {
  23567. name: "Really Small",
  23568. height: math.unit(1, "nm")
  23569. },
  23570. {
  23571. name: "Micro",
  23572. height: math.unit(4, "inches")
  23573. },
  23574. {
  23575. name: "Normal",
  23576. height: math.unit(4 + 10 / 12, "feet"),
  23577. default: true
  23578. },
  23579. {
  23580. name: "Macro",
  23581. height: math.unit(100, "feet")
  23582. },
  23583. {
  23584. name: "Megamacto",
  23585. height: math.unit(50, "miles")
  23586. },
  23587. ]
  23588. ))
  23589. characterMakers.push(() => makeCharacter(
  23590. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23591. {
  23592. side: {
  23593. height: math.unit(30, "feet"),
  23594. weight: math.unit(35000, "kg"),
  23595. name: "Side",
  23596. image: {
  23597. source: "./media/characters/alydar/side.svg",
  23598. extra: 234 / 222,
  23599. bottom: 6.5 / 241
  23600. }
  23601. },
  23602. front: {
  23603. height: math.unit(30, "feet"),
  23604. weight: math.unit(35000, "kg"),
  23605. name: "Front",
  23606. image: {
  23607. source: "./media/characters/alydar/front.svg",
  23608. extra: 223.37 / 210.2,
  23609. bottom: 22.3 / 246.76
  23610. }
  23611. },
  23612. top: {
  23613. height: math.unit(64.54, "feet"),
  23614. weight: math.unit(35000, "kg"),
  23615. name: "Top",
  23616. image: {
  23617. source: "./media/characters/alydar/top.svg"
  23618. }
  23619. },
  23620. anthro: {
  23621. height: math.unit(30, "feet"),
  23622. weight: math.unit(9000, "kg"),
  23623. name: "Anthro",
  23624. image: {
  23625. source: "./media/characters/alydar/anthro.svg",
  23626. extra: 432 / 421,
  23627. bottom: 7.18 / 440
  23628. }
  23629. },
  23630. maw: {
  23631. height: math.unit(11.693, "feet"),
  23632. name: "Maw",
  23633. image: {
  23634. source: "./media/characters/alydar/maw.svg"
  23635. }
  23636. },
  23637. head: {
  23638. height: math.unit(11.693, "feet"),
  23639. name: "Head",
  23640. image: {
  23641. source: "./media/characters/alydar/head.svg"
  23642. }
  23643. },
  23644. headAlt: {
  23645. height: math.unit(12.861, "feet"),
  23646. name: "Head (Alt)",
  23647. image: {
  23648. source: "./media/characters/alydar/head-alt.svg"
  23649. }
  23650. },
  23651. wing: {
  23652. height: math.unit(20.712, "feet"),
  23653. name: "Wing",
  23654. image: {
  23655. source: "./media/characters/alydar/wing.svg"
  23656. }
  23657. },
  23658. wingFeather: {
  23659. height: math.unit(9.662, "feet"),
  23660. name: "Wing Feather",
  23661. image: {
  23662. source: "./media/characters/alydar/wing-feather.svg"
  23663. }
  23664. },
  23665. countourFeather: {
  23666. height: math.unit(4.154, "feet"),
  23667. name: "Contour Feather",
  23668. image: {
  23669. source: "./media/characters/alydar/contour-feather.svg"
  23670. }
  23671. },
  23672. },
  23673. [
  23674. {
  23675. name: "Diplomatic",
  23676. height: math.unit(13, "feet"),
  23677. default: true
  23678. },
  23679. {
  23680. name: "Small",
  23681. height: math.unit(30, "feet")
  23682. },
  23683. {
  23684. name: "Normal",
  23685. height: math.unit(95, "feet"),
  23686. default: true
  23687. },
  23688. {
  23689. name: "Large",
  23690. height: math.unit(285, "feet")
  23691. },
  23692. {
  23693. name: "Incomprehensible",
  23694. height: math.unit(450, "megameters")
  23695. },
  23696. ]
  23697. ))
  23698. characterMakers.push(() => makeCharacter(
  23699. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23700. {
  23701. side: {
  23702. height: math.unit(11, "feet"),
  23703. weight: math.unit(1750, "kg"),
  23704. name: "Side",
  23705. image: {
  23706. source: "./media/characters/selicia/side.svg",
  23707. extra: 440 / 396,
  23708. bottom: 24.8 / 465.979
  23709. }
  23710. },
  23711. maw: {
  23712. height: math.unit(4.665, "feet"),
  23713. name: "Maw",
  23714. image: {
  23715. source: "./media/characters/selicia/maw.svg"
  23716. }
  23717. },
  23718. },
  23719. [
  23720. {
  23721. name: "Normal",
  23722. height: math.unit(11, "feet"),
  23723. default: true
  23724. },
  23725. ]
  23726. ))
  23727. characterMakers.push(() => makeCharacter(
  23728. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23729. {
  23730. side: {
  23731. height: math.unit(2 + 6 / 12, "feet"),
  23732. weight: math.unit(30, "lb"),
  23733. name: "Side",
  23734. image: {
  23735. source: "./media/characters/layla/side.svg",
  23736. extra: 244 / 188,
  23737. bottom: 18.2 / 262.1
  23738. }
  23739. },
  23740. back: {
  23741. height: math.unit(2 + 6 / 12, "feet"),
  23742. weight: math.unit(30, "lb"),
  23743. name: "Back",
  23744. image: {
  23745. source: "./media/characters/layla/back.svg",
  23746. extra: 308 / 241.5,
  23747. bottom: 8.9 / 316.8
  23748. }
  23749. },
  23750. cumming: {
  23751. height: math.unit(2 + 6 / 12, "feet"),
  23752. weight: math.unit(30, "lb"),
  23753. name: "Cumming",
  23754. image: {
  23755. source: "./media/characters/layla/cumming.svg",
  23756. extra: 342 / 279,
  23757. bottom: 595 / 938
  23758. }
  23759. },
  23760. dickFlaccid: {
  23761. height: math.unit(2.595, "feet"),
  23762. name: "Flaccid Genitals",
  23763. image: {
  23764. source: "./media/characters/layla/dick-flaccid.svg"
  23765. }
  23766. },
  23767. dickErect: {
  23768. height: math.unit(2.359, "feet"),
  23769. name: "Erect Genitals",
  23770. image: {
  23771. source: "./media/characters/layla/dick-erect.svg"
  23772. }
  23773. },
  23774. dragon: {
  23775. height: math.unit(40, "feet"),
  23776. name: "Dragon",
  23777. image: {
  23778. source: "./media/characters/layla/dragon.svg",
  23779. extra: 610/535,
  23780. bottom: 367/977
  23781. }
  23782. },
  23783. taur: {
  23784. height: math.unit(30, "feet"),
  23785. name: "Taur",
  23786. image: {
  23787. source: "./media/characters/layla/taur.svg",
  23788. extra: 1268/1199,
  23789. bottom: 112/1380
  23790. }
  23791. },
  23792. },
  23793. [
  23794. {
  23795. name: "Micro",
  23796. height: math.unit(1, "inch")
  23797. },
  23798. {
  23799. name: "Small",
  23800. height: math.unit(1, "foot")
  23801. },
  23802. {
  23803. name: "Normal",
  23804. height: math.unit(2 + 6 / 12, "feet"),
  23805. default: true
  23806. },
  23807. {
  23808. name: "Macro",
  23809. height: math.unit(200, "feet")
  23810. },
  23811. {
  23812. name: "Megamacro",
  23813. height: math.unit(1000, "miles")
  23814. },
  23815. {
  23816. name: "Planetary",
  23817. height: math.unit(8000, "miles")
  23818. },
  23819. {
  23820. name: "True Layla",
  23821. height: math.unit(200000 * 7, "multiverses")
  23822. },
  23823. ]
  23824. ))
  23825. characterMakers.push(() => makeCharacter(
  23826. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23827. {
  23828. back: {
  23829. height: math.unit(10.5, "feet"),
  23830. weight: math.unit(800, "lb"),
  23831. name: "Back",
  23832. image: {
  23833. source: "./media/characters/knox/back.svg",
  23834. extra: 1486 / 1089,
  23835. bottom: 107 / 1601.4
  23836. }
  23837. },
  23838. side: {
  23839. height: math.unit(10.5, "feet"),
  23840. weight: math.unit(800, "lb"),
  23841. name: "Side",
  23842. image: {
  23843. source: "./media/characters/knox/side.svg",
  23844. extra: 244 / 218,
  23845. bottom: 14 / 260
  23846. }
  23847. },
  23848. },
  23849. [
  23850. {
  23851. name: "Compact",
  23852. height: math.unit(10.5, "feet"),
  23853. default: true
  23854. },
  23855. {
  23856. name: "Dynamax",
  23857. height: math.unit(210, "feet")
  23858. },
  23859. {
  23860. name: "Full Macro",
  23861. height: math.unit(850, "feet")
  23862. },
  23863. ]
  23864. ))
  23865. characterMakers.push(() => makeCharacter(
  23866. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23867. {
  23868. front: {
  23869. height: math.unit(28, "feet"),
  23870. weight: math.unit(10500, "lb"),
  23871. name: "Front",
  23872. image: {
  23873. source: "./media/characters/kayda/front.svg",
  23874. extra: 1536 / 1428,
  23875. bottom: 68.7 / 1603
  23876. }
  23877. },
  23878. back: {
  23879. height: math.unit(28, "feet"),
  23880. weight: math.unit(10500, "lb"),
  23881. name: "Back",
  23882. image: {
  23883. source: "./media/characters/kayda/back.svg",
  23884. extra: 1557 / 1464,
  23885. bottom: 39.5 / 1597.49
  23886. }
  23887. },
  23888. dick: {
  23889. height: math.unit(3.858, "feet"),
  23890. name: "Dick",
  23891. image: {
  23892. source: "./media/characters/kayda/dick.svg"
  23893. }
  23894. },
  23895. },
  23896. [
  23897. {
  23898. name: "Macro",
  23899. height: math.unit(28, "feet"),
  23900. default: true
  23901. },
  23902. ]
  23903. ))
  23904. characterMakers.push(() => makeCharacter(
  23905. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23906. {
  23907. front: {
  23908. height: math.unit(10 + 11 / 12, "feet"),
  23909. weight: math.unit(1400, "lb"),
  23910. name: "Front",
  23911. image: {
  23912. source: "./media/characters/brian/front.svg",
  23913. extra: 737 / 692,
  23914. bottom: 55.4 / 785
  23915. }
  23916. },
  23917. },
  23918. [
  23919. {
  23920. name: "Normal",
  23921. height: math.unit(10 + 11 / 12, "feet"),
  23922. default: true
  23923. },
  23924. ]
  23925. ))
  23926. characterMakers.push(() => makeCharacter(
  23927. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23928. {
  23929. front: {
  23930. height: math.unit(5 + 8 / 12, "feet"),
  23931. weight: math.unit(140, "lb"),
  23932. name: "Front",
  23933. image: {
  23934. source: "./media/characters/khemri/front.svg",
  23935. extra: 4780 / 4059,
  23936. bottom: 80.1 / 4859.25
  23937. }
  23938. },
  23939. },
  23940. [
  23941. {
  23942. name: "Micro",
  23943. height: math.unit(6, "inches")
  23944. },
  23945. {
  23946. name: "Normal",
  23947. height: math.unit(5 + 8 / 12, "feet"),
  23948. default: true
  23949. },
  23950. ]
  23951. ))
  23952. characterMakers.push(() => makeCharacter(
  23953. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23954. {
  23955. front: {
  23956. height: math.unit(13, "feet"),
  23957. weight: math.unit(1700, "lb"),
  23958. name: "Front",
  23959. image: {
  23960. source: "./media/characters/felix-braveheart/front.svg",
  23961. extra: 1222 / 1157,
  23962. bottom: 53.2 / 1280
  23963. }
  23964. },
  23965. back: {
  23966. height: math.unit(13, "feet"),
  23967. weight: math.unit(1700, "lb"),
  23968. name: "Back",
  23969. image: {
  23970. source: "./media/characters/felix-braveheart/back.svg",
  23971. extra: 1277 / 1203,
  23972. bottom: 50.2 / 1327
  23973. }
  23974. },
  23975. feral: {
  23976. height: math.unit(6, "feet"),
  23977. weight: math.unit(400, "lb"),
  23978. name: "Feral",
  23979. image: {
  23980. source: "./media/characters/felix-braveheart/feral.svg",
  23981. extra: 682 / 625,
  23982. bottom: 6.9 / 688
  23983. }
  23984. },
  23985. },
  23986. [
  23987. {
  23988. name: "Normal",
  23989. height: math.unit(13, "feet"),
  23990. default: true
  23991. },
  23992. ]
  23993. ))
  23994. characterMakers.push(() => makeCharacter(
  23995. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23996. {
  23997. side: {
  23998. height: math.unit(5 + 11 / 12, "feet"),
  23999. weight: math.unit(1400, "lb"),
  24000. name: "Side",
  24001. image: {
  24002. source: "./media/characters/shadow-blade/side.svg",
  24003. extra: 1726 / 1267,
  24004. bottom: 58.4 / 1785
  24005. }
  24006. },
  24007. },
  24008. [
  24009. {
  24010. name: "Normal",
  24011. height: math.unit(5 + 11 / 12, "feet"),
  24012. default: true
  24013. },
  24014. ]
  24015. ))
  24016. characterMakers.push(() => makeCharacter(
  24017. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24018. {
  24019. front: {
  24020. height: math.unit(1 + 6 / 12, "feet"),
  24021. weight: math.unit(25, "lb"),
  24022. name: "Front",
  24023. image: {
  24024. source: "./media/characters/karla-halldor/front.svg",
  24025. extra: 1459 / 1383,
  24026. bottom: 12 / 1472
  24027. }
  24028. },
  24029. },
  24030. [
  24031. {
  24032. name: "Normal",
  24033. height: math.unit(1 + 6 / 12, "feet"),
  24034. default: true
  24035. },
  24036. ]
  24037. ))
  24038. characterMakers.push(() => makeCharacter(
  24039. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24040. {
  24041. front: {
  24042. height: math.unit(6 + 2 / 12, "feet"),
  24043. weight: math.unit(160, "lb"),
  24044. name: "Front",
  24045. image: {
  24046. source: "./media/characters/ariam/front.svg",
  24047. extra: 714 / 617,
  24048. bottom: 23.4 / 737,
  24049. }
  24050. },
  24051. squatting: {
  24052. height: math.unit(4.1, "feet"),
  24053. weight: math.unit(160, "lb"),
  24054. name: "Squatting",
  24055. image: {
  24056. source: "./media/characters/ariam/squatting.svg",
  24057. extra: 2617 / 2112,
  24058. bottom: 61.2 / 2681,
  24059. }
  24060. },
  24061. },
  24062. [
  24063. {
  24064. name: "Normal",
  24065. height: math.unit(6 + 2 / 12, "feet"),
  24066. default: true
  24067. },
  24068. {
  24069. name: "Normal+",
  24070. height: math.unit(4, "meters")
  24071. },
  24072. {
  24073. name: "Macro",
  24074. height: math.unit(50, "meters")
  24075. },
  24076. {
  24077. name: "Macro+",
  24078. height: math.unit(100, "meters")
  24079. },
  24080. {
  24081. name: "Megamacro",
  24082. height: math.unit(20, "km")
  24083. },
  24084. ]
  24085. ))
  24086. characterMakers.push(() => makeCharacter(
  24087. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24088. {
  24089. front: {
  24090. height: math.unit(1.67, "meters"),
  24091. weight: math.unit(140, "lb"),
  24092. name: "Front",
  24093. image: {
  24094. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24095. extra: 438 / 410,
  24096. bottom: 0.75 / 439
  24097. }
  24098. },
  24099. },
  24100. [
  24101. {
  24102. name: "Shrunken",
  24103. height: math.unit(7.6, "cm")
  24104. },
  24105. {
  24106. name: "Human Scale",
  24107. height: math.unit(1.67, "meters")
  24108. },
  24109. {
  24110. name: "Wolxi Scale",
  24111. height: math.unit(36.7, "meters"),
  24112. default: true
  24113. },
  24114. ]
  24115. ))
  24116. characterMakers.push(() => makeCharacter(
  24117. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24118. {
  24119. front: {
  24120. height: math.unit(1.73, "meters"),
  24121. weight: math.unit(240, "lb"),
  24122. name: "Front",
  24123. image: {
  24124. source: "./media/characters/izue-two-mothers/front.svg",
  24125. extra: 469 / 437,
  24126. bottom: 1.24 / 470.6
  24127. }
  24128. },
  24129. },
  24130. [
  24131. {
  24132. name: "Shrunken",
  24133. height: math.unit(7.86, "cm")
  24134. },
  24135. {
  24136. name: "Human Scale",
  24137. height: math.unit(1.73, "meters")
  24138. },
  24139. {
  24140. name: "Wolxi Scale",
  24141. height: math.unit(38, "meters"),
  24142. default: true
  24143. },
  24144. ]
  24145. ))
  24146. characterMakers.push(() => makeCharacter(
  24147. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24148. {
  24149. front: {
  24150. height: math.unit(1.55, "meters"),
  24151. weight: math.unit(120, "lb"),
  24152. name: "Front",
  24153. image: {
  24154. source: "./media/characters/teeku-love-shack/front.svg",
  24155. extra: 387 / 362,
  24156. bottom: 1.51 / 388
  24157. }
  24158. },
  24159. },
  24160. [
  24161. {
  24162. name: "Shrunken",
  24163. height: math.unit(7, "cm")
  24164. },
  24165. {
  24166. name: "Human Scale",
  24167. height: math.unit(1.55, "meters")
  24168. },
  24169. {
  24170. name: "Wolxi Scale",
  24171. height: math.unit(34.1, "meters"),
  24172. default: true
  24173. },
  24174. ]
  24175. ))
  24176. characterMakers.push(() => makeCharacter(
  24177. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24178. {
  24179. front: {
  24180. height: math.unit(1.83, "meters"),
  24181. weight: math.unit(135, "lb"),
  24182. name: "Front",
  24183. image: {
  24184. source: "./media/characters/dejma-the-red/front.svg",
  24185. extra: 480 / 458,
  24186. bottom: 1.8 / 482
  24187. }
  24188. },
  24189. },
  24190. [
  24191. {
  24192. name: "Shrunken",
  24193. height: math.unit(8.3, "cm")
  24194. },
  24195. {
  24196. name: "Human Scale",
  24197. height: math.unit(1.83, "meters")
  24198. },
  24199. {
  24200. name: "Wolxi Scale",
  24201. height: math.unit(40, "meters"),
  24202. default: true
  24203. },
  24204. ]
  24205. ))
  24206. characterMakers.push(() => makeCharacter(
  24207. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24208. {
  24209. front: {
  24210. height: math.unit(1.78, "meters"),
  24211. weight: math.unit(65, "kg"),
  24212. name: "Front",
  24213. image: {
  24214. source: "./media/characters/aki/front.svg",
  24215. extra: 452 / 415
  24216. }
  24217. },
  24218. frontNsfw: {
  24219. height: math.unit(1.78, "meters"),
  24220. weight: math.unit(65, "kg"),
  24221. name: "Front (NSFW)",
  24222. image: {
  24223. source: "./media/characters/aki/front-nsfw.svg",
  24224. extra: 452 / 415
  24225. }
  24226. },
  24227. back: {
  24228. height: math.unit(1.78, "meters"),
  24229. weight: math.unit(65, "kg"),
  24230. name: "Back",
  24231. image: {
  24232. source: "./media/characters/aki/back.svg",
  24233. extra: 452 / 415
  24234. }
  24235. },
  24236. rump: {
  24237. height: math.unit(2.05, "feet"),
  24238. name: "Rump",
  24239. image: {
  24240. source: "./media/characters/aki/rump.svg"
  24241. }
  24242. },
  24243. dick: {
  24244. height: math.unit(0.95, "feet"),
  24245. name: "Dick",
  24246. image: {
  24247. source: "./media/characters/aki/dick.svg"
  24248. }
  24249. },
  24250. },
  24251. [
  24252. {
  24253. name: "Micro",
  24254. height: math.unit(15, "cm")
  24255. },
  24256. {
  24257. name: "Normal",
  24258. height: math.unit(178, "cm"),
  24259. default: true
  24260. },
  24261. {
  24262. name: "Macro",
  24263. height: math.unit(214, "m")
  24264. },
  24265. {
  24266. name: "Macro+",
  24267. height: math.unit(534, "m")
  24268. },
  24269. ]
  24270. ))
  24271. characterMakers.push(() => makeCharacter(
  24272. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24273. {
  24274. front: {
  24275. height: math.unit(5 + 5 / 12, "feet"),
  24276. weight: math.unit(120, "lb"),
  24277. name: "Front",
  24278. image: {
  24279. source: "./media/characters/ari/front.svg",
  24280. extra: 714.5 / 682,
  24281. bottom: 8 / 722.5
  24282. }
  24283. },
  24284. },
  24285. [
  24286. {
  24287. name: "Normal",
  24288. height: math.unit(5 + 5 / 12, "feet")
  24289. },
  24290. {
  24291. name: "Macro",
  24292. height: math.unit(100, "feet"),
  24293. default: true
  24294. },
  24295. {
  24296. name: "Megamacro",
  24297. height: math.unit(100, "miles")
  24298. },
  24299. {
  24300. name: "Gigamacro",
  24301. height: math.unit(80000, "miles")
  24302. },
  24303. ]
  24304. ))
  24305. characterMakers.push(() => makeCharacter(
  24306. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24307. {
  24308. side: {
  24309. height: math.unit(9, "feet"),
  24310. weight: math.unit(400, "kg"),
  24311. name: "Side",
  24312. image: {
  24313. source: "./media/characters/bolt/side.svg",
  24314. extra: 1126 / 896,
  24315. bottom: 60 / 1187.3,
  24316. }
  24317. },
  24318. },
  24319. [
  24320. {
  24321. name: "Micro",
  24322. height: math.unit(5, "inches")
  24323. },
  24324. {
  24325. name: "Normal",
  24326. height: math.unit(9, "feet"),
  24327. default: true
  24328. },
  24329. {
  24330. name: "Macro",
  24331. height: math.unit(700, "feet")
  24332. },
  24333. {
  24334. name: "Max Size",
  24335. height: math.unit(1.52e22, "yottameters")
  24336. },
  24337. ]
  24338. ))
  24339. characterMakers.push(() => makeCharacter(
  24340. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24341. {
  24342. front: {
  24343. height: math.unit(4.53, "meters"),
  24344. weight: math.unit(3, "tons"),
  24345. name: "Front",
  24346. image: {
  24347. source: "./media/characters/draekon-sylviar/front.svg",
  24348. extra: 1228 / 1068,
  24349. bottom: 41 / 1270
  24350. }
  24351. },
  24352. tail: {
  24353. height: math.unit(1.772, "meter"),
  24354. name: "Tail",
  24355. image: {
  24356. source: "./media/characters/draekon-sylviar/tail.svg"
  24357. }
  24358. },
  24359. head: {
  24360. height: math.unit(1.331, "meter"),
  24361. name: "Head",
  24362. image: {
  24363. source: "./media/characters/draekon-sylviar/head.svg"
  24364. }
  24365. },
  24366. hand: {
  24367. height: math.unit(0.564, "meter"),
  24368. name: "Hand",
  24369. image: {
  24370. source: "./media/characters/draekon-sylviar/hand.svg"
  24371. }
  24372. },
  24373. foot: {
  24374. height: math.unit(0.621, "meter"),
  24375. name: "Foot",
  24376. image: {
  24377. source: "./media/characters/draekon-sylviar/foot.svg",
  24378. bottom: 32 / 324
  24379. }
  24380. },
  24381. dick: {
  24382. height: math.unit(61, "cm"),
  24383. name: "Dick",
  24384. image: {
  24385. source: "./media/characters/draekon-sylviar/dick.svg"
  24386. }
  24387. },
  24388. dickseparated: {
  24389. height: math.unit(61, "cm"),
  24390. name: "Dick-separated",
  24391. image: {
  24392. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24393. }
  24394. },
  24395. },
  24396. [
  24397. {
  24398. name: "Small",
  24399. height: math.unit(4.53 / 2, "meters"),
  24400. default: true
  24401. },
  24402. {
  24403. name: "Normal",
  24404. height: math.unit(4.53, "meters"),
  24405. default: true
  24406. },
  24407. {
  24408. name: "Large",
  24409. height: math.unit(4.53 * 2, "meters"),
  24410. },
  24411. ]
  24412. ))
  24413. characterMakers.push(() => makeCharacter(
  24414. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24415. {
  24416. front: {
  24417. height: math.unit(6 + 2 / 12, "feet"),
  24418. weight: math.unit(180, "lb"),
  24419. name: "Front",
  24420. image: {
  24421. source: "./media/characters/brawler/front.svg",
  24422. extra: 3301 / 3027,
  24423. bottom: 138 / 3439
  24424. }
  24425. },
  24426. },
  24427. [
  24428. {
  24429. name: "Normal",
  24430. height: math.unit(6 + 2 / 12, "feet"),
  24431. default: true
  24432. },
  24433. ]
  24434. ))
  24435. characterMakers.push(() => makeCharacter(
  24436. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24437. {
  24438. front: {
  24439. height: math.unit(11, "feet"),
  24440. weight: math.unit(1000, "lb"),
  24441. name: "Front",
  24442. image: {
  24443. source: "./media/characters/alex/front.svg",
  24444. bottom: 44.5 / 620
  24445. }
  24446. },
  24447. },
  24448. [
  24449. {
  24450. name: "Micro",
  24451. height: math.unit(5, "inches")
  24452. },
  24453. {
  24454. name: "Normal",
  24455. height: math.unit(11, "feet"),
  24456. default: true
  24457. },
  24458. {
  24459. name: "Macro",
  24460. height: math.unit(9.5e9, "feet")
  24461. },
  24462. {
  24463. name: "Max Size",
  24464. height: math.unit(1.4e283, "yottameters")
  24465. },
  24466. ]
  24467. ))
  24468. characterMakers.push(() => makeCharacter(
  24469. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24470. {
  24471. female: {
  24472. height: math.unit(29.9, "m"),
  24473. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24474. name: "Female",
  24475. image: {
  24476. source: "./media/characters/zenari/female.svg",
  24477. extra: 3281.6 / 3217,
  24478. bottom: 72.2 / 3353
  24479. }
  24480. },
  24481. male: {
  24482. height: math.unit(27.7, "m"),
  24483. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24484. name: "Male",
  24485. image: {
  24486. source: "./media/characters/zenari/male.svg",
  24487. extra: 3008 / 2991,
  24488. bottom: 54.6 / 3069
  24489. }
  24490. },
  24491. },
  24492. [
  24493. {
  24494. name: "Macro",
  24495. height: math.unit(29.7, "meters"),
  24496. default: true
  24497. },
  24498. ]
  24499. ))
  24500. characterMakers.push(() => makeCharacter(
  24501. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24502. {
  24503. female: {
  24504. height: math.unit(23.8, "m"),
  24505. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24506. name: "Female",
  24507. image: {
  24508. source: "./media/characters/mactarian/female.svg",
  24509. extra: 2662 / 2569,
  24510. bottom: 73 / 2736
  24511. }
  24512. },
  24513. male: {
  24514. height: math.unit(23.8, "m"),
  24515. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24516. name: "Male",
  24517. image: {
  24518. source: "./media/characters/mactarian/male.svg",
  24519. extra: 2673 / 2600,
  24520. bottom: 76 / 2750
  24521. }
  24522. },
  24523. },
  24524. [
  24525. {
  24526. name: "Macro",
  24527. height: math.unit(23.8, "meters"),
  24528. default: true
  24529. },
  24530. ]
  24531. ))
  24532. characterMakers.push(() => makeCharacter(
  24533. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24534. {
  24535. female: {
  24536. height: math.unit(19.3, "m"),
  24537. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24538. name: "Female",
  24539. image: {
  24540. source: "./media/characters/umok/female.svg",
  24541. extra: 2186 / 2078,
  24542. bottom: 87 / 2277
  24543. }
  24544. },
  24545. male: {
  24546. height: math.unit(19.5, "m"),
  24547. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24548. name: "Male",
  24549. image: {
  24550. source: "./media/characters/umok/male.svg",
  24551. extra: 2233 / 2140,
  24552. bottom: 24.4 / 2258
  24553. }
  24554. },
  24555. },
  24556. [
  24557. {
  24558. name: "Macro",
  24559. height: math.unit(19.3, "meters"),
  24560. default: true
  24561. },
  24562. ]
  24563. ))
  24564. characterMakers.push(() => makeCharacter(
  24565. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24566. {
  24567. female: {
  24568. height: math.unit(26.15, "m"),
  24569. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24570. name: "Female",
  24571. image: {
  24572. source: "./media/characters/joraxian/female.svg",
  24573. extra: 2912 / 2824,
  24574. bottom: 36 / 2956
  24575. }
  24576. },
  24577. male: {
  24578. height: math.unit(25.4, "m"),
  24579. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24580. name: "Male",
  24581. image: {
  24582. source: "./media/characters/joraxian/male.svg",
  24583. extra: 2877 / 2721,
  24584. bottom: 82 / 2967
  24585. }
  24586. },
  24587. },
  24588. [
  24589. {
  24590. name: "Macro",
  24591. height: math.unit(26.15, "meters"),
  24592. default: true
  24593. },
  24594. ]
  24595. ))
  24596. characterMakers.push(() => makeCharacter(
  24597. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24598. {
  24599. female: {
  24600. height: math.unit(21.6, "m"),
  24601. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24602. name: "Female",
  24603. image: {
  24604. source: "./media/characters/sthara/female.svg",
  24605. extra: 2516 / 2347,
  24606. bottom: 21.5 / 2537
  24607. }
  24608. },
  24609. male: {
  24610. height: math.unit(24, "m"),
  24611. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24612. name: "Male",
  24613. image: {
  24614. source: "./media/characters/sthara/male.svg",
  24615. extra: 2732 / 2607,
  24616. bottom: 23 / 2732
  24617. }
  24618. },
  24619. },
  24620. [
  24621. {
  24622. name: "Macro",
  24623. height: math.unit(21.6, "meters"),
  24624. default: true
  24625. },
  24626. ]
  24627. ))
  24628. characterMakers.push(() => makeCharacter(
  24629. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24630. {
  24631. front: {
  24632. height: math.unit(6 + 4 / 12, "feet"),
  24633. weight: math.unit(175, "lb"),
  24634. name: "Front",
  24635. image: {
  24636. source: "./media/characters/luka-bryzant/front.svg",
  24637. extra: 311 / 289,
  24638. bottom: 4 / 315
  24639. }
  24640. },
  24641. back: {
  24642. height: math.unit(6 + 4 / 12, "feet"),
  24643. weight: math.unit(175, "lb"),
  24644. name: "Back",
  24645. image: {
  24646. source: "./media/characters/luka-bryzant/back.svg",
  24647. extra: 311 / 289,
  24648. bottom: 3.8 / 313.7
  24649. }
  24650. },
  24651. },
  24652. [
  24653. {
  24654. name: "Micro",
  24655. height: math.unit(10, "inches")
  24656. },
  24657. {
  24658. name: "Normal",
  24659. height: math.unit(6 + 4 / 12, "feet"),
  24660. default: true
  24661. },
  24662. {
  24663. name: "Large",
  24664. height: math.unit(12, "feet")
  24665. },
  24666. ]
  24667. ))
  24668. characterMakers.push(() => makeCharacter(
  24669. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24670. {
  24671. front: {
  24672. height: math.unit(5 + 7 / 12, "feet"),
  24673. weight: math.unit(185, "lb"),
  24674. name: "Front",
  24675. image: {
  24676. source: "./media/characters/aman-aquila/front.svg",
  24677. extra: 1013 / 976,
  24678. bottom: 45.6 / 1057
  24679. }
  24680. },
  24681. side: {
  24682. height: math.unit(5 + 7 / 12, "feet"),
  24683. weight: math.unit(185, "lb"),
  24684. name: "Side",
  24685. image: {
  24686. source: "./media/characters/aman-aquila/side.svg",
  24687. extra: 1054 / 1011,
  24688. bottom: 15 / 1070
  24689. }
  24690. },
  24691. back: {
  24692. height: math.unit(5 + 7 / 12, "feet"),
  24693. weight: math.unit(185, "lb"),
  24694. name: "Back",
  24695. image: {
  24696. source: "./media/characters/aman-aquila/back.svg",
  24697. extra: 1026 / 970,
  24698. bottom: 12 / 1039
  24699. }
  24700. },
  24701. head: {
  24702. height: math.unit(1.211, "feet"),
  24703. name: "Head",
  24704. image: {
  24705. source: "./media/characters/aman-aquila/head.svg",
  24706. }
  24707. },
  24708. },
  24709. [
  24710. {
  24711. name: "Minimicro",
  24712. height: math.unit(0.057, "inches")
  24713. },
  24714. {
  24715. name: "Micro",
  24716. height: math.unit(7, "inches")
  24717. },
  24718. {
  24719. name: "Mini",
  24720. height: math.unit(3 + 7 / 12, "feet")
  24721. },
  24722. {
  24723. name: "Normal",
  24724. height: math.unit(5 + 7 / 12, "feet"),
  24725. default: true
  24726. },
  24727. {
  24728. name: "Macro",
  24729. height: math.unit(157 + 7 / 12, "feet")
  24730. },
  24731. {
  24732. name: "Megamacro",
  24733. height: math.unit(1557 + 7 / 12, "feet")
  24734. },
  24735. {
  24736. name: "Gigamacro",
  24737. height: math.unit(15557 + 7 / 12, "feet")
  24738. },
  24739. ]
  24740. ))
  24741. characterMakers.push(() => makeCharacter(
  24742. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24743. {
  24744. front: {
  24745. height: math.unit(3 + 2 / 12, "inches"),
  24746. weight: math.unit(0.3, "ounces"),
  24747. name: "Front",
  24748. image: {
  24749. source: "./media/characters/hiphae/front.svg",
  24750. extra: 1931 / 1683,
  24751. bottom: 24 / 1955
  24752. }
  24753. },
  24754. },
  24755. [
  24756. {
  24757. name: "Normal",
  24758. height: math.unit(3 + 1 / 2, "inches"),
  24759. default: true
  24760. },
  24761. ]
  24762. ))
  24763. characterMakers.push(() => makeCharacter(
  24764. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24765. {
  24766. front: {
  24767. height: math.unit(5 + 10 / 12, "feet"),
  24768. weight: math.unit(165, "lb"),
  24769. name: "Front",
  24770. image: {
  24771. source: "./media/characters/nicky/front.svg",
  24772. extra: 3144 / 2886,
  24773. bottom: 45.6 / 3192
  24774. }
  24775. },
  24776. back: {
  24777. height: math.unit(5 + 10 / 12, "feet"),
  24778. weight: math.unit(165, "lb"),
  24779. name: "Back",
  24780. image: {
  24781. source: "./media/characters/nicky/back.svg",
  24782. extra: 3055 / 2804,
  24783. bottom: 28.4 / 3087
  24784. }
  24785. },
  24786. frontclothed: {
  24787. height: math.unit(5 + 10 / 12, "feet"),
  24788. weight: math.unit(165, "lb"),
  24789. name: "Front-clothed",
  24790. image: {
  24791. source: "./media/characters/nicky/front-clothed.svg",
  24792. extra: 3184.9 / 2926.9,
  24793. bottom: 86.5 / 3239.9
  24794. }
  24795. },
  24796. foot: {
  24797. height: math.unit(1.16, "feet"),
  24798. name: "Foot",
  24799. image: {
  24800. source: "./media/characters/nicky/foot.svg"
  24801. }
  24802. },
  24803. feet: {
  24804. height: math.unit(1.34, "feet"),
  24805. name: "Feet",
  24806. image: {
  24807. source: "./media/characters/nicky/feet.svg"
  24808. }
  24809. },
  24810. maw: {
  24811. height: math.unit(0.9, "feet"),
  24812. name: "Maw",
  24813. image: {
  24814. source: "./media/characters/nicky/maw.svg"
  24815. }
  24816. },
  24817. },
  24818. [
  24819. {
  24820. name: "Normal",
  24821. height: math.unit(5 + 10 / 12, "feet"),
  24822. default: true
  24823. },
  24824. {
  24825. name: "Macro",
  24826. height: math.unit(60, "feet")
  24827. },
  24828. {
  24829. name: "Megamacro",
  24830. height: math.unit(1, "mile")
  24831. },
  24832. ]
  24833. ))
  24834. characterMakers.push(() => makeCharacter(
  24835. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24836. {
  24837. side: {
  24838. height: math.unit(10, "feet"),
  24839. weight: math.unit(600, "lb"),
  24840. name: "Side",
  24841. image: {
  24842. source: "./media/characters/blair/side.svg",
  24843. bottom: 16.6 / 475,
  24844. extra: 458 / 431
  24845. }
  24846. },
  24847. },
  24848. [
  24849. {
  24850. name: "Micro",
  24851. height: math.unit(8, "inches")
  24852. },
  24853. {
  24854. name: "Normal",
  24855. height: math.unit(10, "feet"),
  24856. default: true
  24857. },
  24858. {
  24859. name: "Macro",
  24860. height: math.unit(180, "feet")
  24861. },
  24862. ]
  24863. ))
  24864. characterMakers.push(() => makeCharacter(
  24865. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24866. {
  24867. front: {
  24868. height: math.unit(5 + 4 / 12, "feet"),
  24869. weight: math.unit(125, "lb"),
  24870. name: "Front",
  24871. image: {
  24872. source: "./media/characters/fisher/front.svg",
  24873. extra: 444 / 390,
  24874. bottom: 2 / 444.8
  24875. }
  24876. },
  24877. },
  24878. [
  24879. {
  24880. name: "Micro",
  24881. height: math.unit(4, "inches")
  24882. },
  24883. {
  24884. name: "Normal",
  24885. height: math.unit(5 + 4 / 12, "feet"),
  24886. default: true
  24887. },
  24888. {
  24889. name: "Macro",
  24890. height: math.unit(100, "feet")
  24891. },
  24892. ]
  24893. ))
  24894. characterMakers.push(() => makeCharacter(
  24895. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24896. {
  24897. front: {
  24898. height: math.unit(6.71, "feet"),
  24899. weight: math.unit(200, "lb"),
  24900. capacity: math.unit(1000000, "people"),
  24901. name: "Front",
  24902. image: {
  24903. source: "./media/characters/gliss/front.svg",
  24904. extra: 2347 / 2231,
  24905. bottom: 113 / 2462
  24906. }
  24907. },
  24908. hammerspaceSize: {
  24909. height: math.unit(6.71 * 717, "feet"),
  24910. weight: math.unit(200, "lb"),
  24911. capacity: math.unit(1000000, "people"),
  24912. name: "Hammerspace Size",
  24913. image: {
  24914. source: "./media/characters/gliss/front.svg",
  24915. extra: 2347 / 2231,
  24916. bottom: 113 / 2462
  24917. }
  24918. },
  24919. },
  24920. [
  24921. {
  24922. name: "Normal",
  24923. height: math.unit(6.71, "feet"),
  24924. default: true
  24925. },
  24926. ]
  24927. ))
  24928. characterMakers.push(() => makeCharacter(
  24929. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24930. {
  24931. side: {
  24932. height: math.unit(1.44, "m"),
  24933. weight: math.unit(80, "kg"),
  24934. name: "Side",
  24935. image: {
  24936. source: "./media/characters/dune-anderson/side.svg",
  24937. bottom: 49 / 1426
  24938. }
  24939. },
  24940. },
  24941. [
  24942. {
  24943. name: "Wolf-sized",
  24944. height: math.unit(1.44, "meters")
  24945. },
  24946. {
  24947. name: "Normal",
  24948. height: math.unit(5.05, "meters"),
  24949. default: true
  24950. },
  24951. {
  24952. name: "Big",
  24953. height: math.unit(14.4, "meters")
  24954. },
  24955. {
  24956. name: "Huge",
  24957. height: math.unit(144, "meters")
  24958. },
  24959. ]
  24960. ))
  24961. characterMakers.push(() => makeCharacter(
  24962. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24963. {
  24964. front: {
  24965. height: math.unit(7, "feet"),
  24966. weight: math.unit(425, "lb"),
  24967. name: "Front",
  24968. image: {
  24969. source: "./media/characters/hind/front.svg",
  24970. extra: 2091 / 1860,
  24971. bottom: 129 / 2220
  24972. }
  24973. },
  24974. back: {
  24975. height: math.unit(7, "feet"),
  24976. weight: math.unit(425, "lb"),
  24977. name: "Back",
  24978. image: {
  24979. source: "./media/characters/hind/back.svg",
  24980. extra: 2091 / 1860,
  24981. bottom: 24.6 / 2309
  24982. }
  24983. },
  24984. tail: {
  24985. height: math.unit(2.8, "feet"),
  24986. name: "Tail",
  24987. image: {
  24988. source: "./media/characters/hind/tail.svg"
  24989. }
  24990. },
  24991. head: {
  24992. height: math.unit(2.55, "feet"),
  24993. name: "Head",
  24994. image: {
  24995. source: "./media/characters/hind/head.svg"
  24996. }
  24997. },
  24998. },
  24999. [
  25000. {
  25001. name: "XS",
  25002. height: math.unit(0.7, "feet")
  25003. },
  25004. {
  25005. name: "Normal",
  25006. height: math.unit(7, "feet"),
  25007. default: true
  25008. },
  25009. {
  25010. name: "XL",
  25011. height: math.unit(70, "feet")
  25012. },
  25013. ]
  25014. ))
  25015. characterMakers.push(() => makeCharacter(
  25016. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25017. {
  25018. front: {
  25019. height: math.unit(2.1, "meters"),
  25020. weight: math.unit(150, "lb"),
  25021. name: "Front",
  25022. image: {
  25023. source: "./media/characters/tharquench-sizestealer/front.svg",
  25024. extra: 1605/1470,
  25025. bottom: 36/1641
  25026. }
  25027. },
  25028. frontAlt: {
  25029. height: math.unit(2.1, "meters"),
  25030. weight: math.unit(150, "lb"),
  25031. name: "Front (Alt)",
  25032. image: {
  25033. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25034. extra: 2318 / 2063,
  25035. bottom: 93.4 / 2410
  25036. }
  25037. },
  25038. },
  25039. [
  25040. {
  25041. name: "Nano",
  25042. height: math.unit(1, "mm")
  25043. },
  25044. {
  25045. name: "Micro",
  25046. height: math.unit(1, "cm")
  25047. },
  25048. {
  25049. name: "Normal",
  25050. height: math.unit(2.1, "meters"),
  25051. default: true
  25052. },
  25053. ]
  25054. ))
  25055. characterMakers.push(() => makeCharacter(
  25056. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25057. {
  25058. front: {
  25059. height: math.unit(7 + 5 / 12, "feet"),
  25060. weight: math.unit(357, "lb"),
  25061. name: "Front",
  25062. image: {
  25063. source: "./media/characters/solex-draconov/front.svg",
  25064. extra: 1993 / 1865,
  25065. bottom: 117 / 2111
  25066. }
  25067. },
  25068. },
  25069. [
  25070. {
  25071. name: "Natural Height",
  25072. height: math.unit(7 + 5 / 12, "feet"),
  25073. default: true
  25074. },
  25075. {
  25076. name: "Macro",
  25077. height: math.unit(350, "feet")
  25078. },
  25079. {
  25080. name: "Macro+",
  25081. height: math.unit(1000, "feet")
  25082. },
  25083. {
  25084. name: "Megamacro",
  25085. height: math.unit(20, "km")
  25086. },
  25087. {
  25088. name: "Megamacro+",
  25089. height: math.unit(1000, "km")
  25090. },
  25091. {
  25092. name: "Gigamacro",
  25093. height: math.unit(2.5, "Gm")
  25094. },
  25095. {
  25096. name: "Teramacro",
  25097. height: math.unit(15, "Tm")
  25098. },
  25099. {
  25100. name: "Galactic",
  25101. height: math.unit(30, "Zm")
  25102. },
  25103. {
  25104. name: "Universal",
  25105. height: math.unit(21000, "Ym")
  25106. },
  25107. {
  25108. name: "Omniversal",
  25109. height: math.unit(9.861e50, "Ym")
  25110. },
  25111. {
  25112. name: "Existential",
  25113. height: math.unit(1e300, "meters")
  25114. },
  25115. ]
  25116. ))
  25117. characterMakers.push(() => makeCharacter(
  25118. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25119. {
  25120. side: {
  25121. height: math.unit(25, "feet"),
  25122. weight: math.unit(90000, "lb"),
  25123. name: "Side",
  25124. image: {
  25125. source: "./media/characters/mandarax/side.svg",
  25126. extra: 614 / 332,
  25127. bottom: 55 / 630
  25128. }
  25129. },
  25130. head: {
  25131. height: math.unit(11.4, "feet"),
  25132. name: "Head",
  25133. image: {
  25134. source: "./media/characters/mandarax/head.svg"
  25135. }
  25136. },
  25137. belly: {
  25138. height: math.unit(33, "feet"),
  25139. name: "Belly",
  25140. capacity: math.unit(500, "people"),
  25141. image: {
  25142. source: "./media/characters/mandarax/belly.svg"
  25143. }
  25144. },
  25145. dick: {
  25146. height: math.unit(8.46, "feet"),
  25147. name: "Dick",
  25148. image: {
  25149. source: "./media/characters/mandarax/dick.svg"
  25150. }
  25151. },
  25152. top: {
  25153. height: math.unit(28, "meters"),
  25154. name: "Top",
  25155. image: {
  25156. source: "./media/characters/mandarax/top.svg"
  25157. }
  25158. },
  25159. },
  25160. [
  25161. {
  25162. name: "Normal",
  25163. height: math.unit(25, "feet"),
  25164. default: true
  25165. },
  25166. ]
  25167. ))
  25168. characterMakers.push(() => makeCharacter(
  25169. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25170. {
  25171. front: {
  25172. height: math.unit(5, "feet"),
  25173. weight: math.unit(90, "lb"),
  25174. name: "Front",
  25175. image: {
  25176. source: "./media/characters/pixil/front.svg",
  25177. extra: 2000 / 1618,
  25178. bottom: 12.3 / 2011
  25179. }
  25180. },
  25181. },
  25182. [
  25183. {
  25184. name: "Normal",
  25185. height: math.unit(5, "feet"),
  25186. default: true
  25187. },
  25188. {
  25189. name: "Megamacro",
  25190. height: math.unit(10, "miles"),
  25191. },
  25192. ]
  25193. ))
  25194. characterMakers.push(() => makeCharacter(
  25195. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25196. {
  25197. front: {
  25198. height: math.unit(7 + 2 / 12, "feet"),
  25199. weight: math.unit(200, "lb"),
  25200. name: "Front",
  25201. image: {
  25202. source: "./media/characters/angel/front.svg",
  25203. extra: 1830 / 1737,
  25204. bottom: 22.6 / 1854,
  25205. }
  25206. },
  25207. },
  25208. [
  25209. {
  25210. name: "Normal",
  25211. height: math.unit(7 + 2 / 12, "feet"),
  25212. default: true
  25213. },
  25214. {
  25215. name: "Macro",
  25216. height: math.unit(1000, "feet")
  25217. },
  25218. {
  25219. name: "Megamacro",
  25220. height: math.unit(2, "miles")
  25221. },
  25222. {
  25223. name: "Gigamacro",
  25224. height: math.unit(20, "earths")
  25225. },
  25226. ]
  25227. ))
  25228. characterMakers.push(() => makeCharacter(
  25229. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25230. {
  25231. front: {
  25232. height: math.unit(5, "feet"),
  25233. weight: math.unit(180, "lb"),
  25234. name: "Front",
  25235. image: {
  25236. source: "./media/characters/mekana/front.svg",
  25237. extra: 1671 / 1605,
  25238. bottom: 3.5 / 1691
  25239. }
  25240. },
  25241. side: {
  25242. height: math.unit(5, "feet"),
  25243. weight: math.unit(180, "lb"),
  25244. name: "Side",
  25245. image: {
  25246. source: "./media/characters/mekana/side.svg",
  25247. extra: 1671 / 1605,
  25248. bottom: 3.5 / 1691
  25249. }
  25250. },
  25251. back: {
  25252. height: math.unit(5, "feet"),
  25253. weight: math.unit(180, "lb"),
  25254. name: "Back",
  25255. image: {
  25256. source: "./media/characters/mekana/back.svg",
  25257. extra: 1671 / 1605,
  25258. bottom: 3.5 / 1691
  25259. }
  25260. },
  25261. },
  25262. [
  25263. {
  25264. name: "Normal",
  25265. height: math.unit(5, "feet"),
  25266. default: true
  25267. },
  25268. ]
  25269. ))
  25270. characterMakers.push(() => makeCharacter(
  25271. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25272. {
  25273. front: {
  25274. height: math.unit(4 + 6 / 12, "feet"),
  25275. weight: math.unit(80, "lb"),
  25276. name: "Front",
  25277. image: {
  25278. source: "./media/characters/pixie/front.svg",
  25279. extra: 1924 / 1825,
  25280. bottom: 22.4 / 1946
  25281. }
  25282. },
  25283. },
  25284. [
  25285. {
  25286. name: "Normal",
  25287. height: math.unit(4 + 6 / 12, "feet"),
  25288. default: true
  25289. },
  25290. {
  25291. name: "Macro",
  25292. height: math.unit(40, "feet")
  25293. },
  25294. ]
  25295. ))
  25296. characterMakers.push(() => makeCharacter(
  25297. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25298. {
  25299. front: {
  25300. height: math.unit(2.1, "meters"),
  25301. weight: math.unit(200, "lb"),
  25302. name: "Front",
  25303. image: {
  25304. source: "./media/characters/the-lascivious/front.svg",
  25305. extra: 1 / 0.893,
  25306. bottom: 3.5 / 573.7
  25307. }
  25308. },
  25309. },
  25310. [
  25311. {
  25312. name: "Human Scale",
  25313. height: math.unit(2.1, "meters")
  25314. },
  25315. {
  25316. name: "Wolxi Scale",
  25317. height: math.unit(46.2, "m"),
  25318. default: true
  25319. },
  25320. {
  25321. name: "Boinker of Buildings",
  25322. height: math.unit(10, "km")
  25323. },
  25324. {
  25325. name: "Shagger of Skyscrapers",
  25326. height: math.unit(40, "km")
  25327. },
  25328. {
  25329. name: "Banger of Boroughs",
  25330. height: math.unit(4000, "km")
  25331. },
  25332. {
  25333. name: "Screwer of States",
  25334. height: math.unit(100000, "km")
  25335. },
  25336. {
  25337. name: "Pounder of Planets",
  25338. height: math.unit(2000000, "km")
  25339. },
  25340. ]
  25341. ))
  25342. characterMakers.push(() => makeCharacter(
  25343. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25344. {
  25345. front: {
  25346. height: math.unit(6, "feet"),
  25347. weight: math.unit(150, "lb"),
  25348. name: "Front",
  25349. image: {
  25350. source: "./media/characters/aj/front.svg",
  25351. extra: 2039 / 1562,
  25352. bottom: 40 / 2079
  25353. }
  25354. },
  25355. },
  25356. [
  25357. {
  25358. name: "Normal",
  25359. height: math.unit(11 + 6 / 12, "feet"),
  25360. default: true
  25361. },
  25362. {
  25363. name: "Megamacro",
  25364. height: math.unit(60, "megameters")
  25365. },
  25366. ]
  25367. ))
  25368. characterMakers.push(() => makeCharacter(
  25369. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25370. {
  25371. side: {
  25372. height: math.unit(31 + 8 / 12, "feet"),
  25373. weight: math.unit(75000, "kg"),
  25374. name: "Side",
  25375. image: {
  25376. source: "./media/characters/koros/side.svg",
  25377. extra: 1442 / 1297,
  25378. bottom: 122.7 / 1562
  25379. }
  25380. },
  25381. dicksKingsCrown: {
  25382. height: math.unit(6, "feet"),
  25383. name: "Dicks (King's Crown)",
  25384. image: {
  25385. source: "./media/characters/koros/dicks-kings-crown.svg"
  25386. }
  25387. },
  25388. dicksTailSet: {
  25389. height: math.unit(3, "feet"),
  25390. name: "Dicks (Tail Set)",
  25391. image: {
  25392. source: "./media/characters/koros/dicks-tail-set.svg"
  25393. }
  25394. },
  25395. dickCumming: {
  25396. height: math.unit(7.98, "feet"),
  25397. name: "Dick (Cumming)",
  25398. image: {
  25399. source: "./media/characters/koros/dick-cumming.svg"
  25400. }
  25401. },
  25402. dicksBack: {
  25403. height: math.unit(5.9, "feet"),
  25404. name: "Dicks (Back)",
  25405. image: {
  25406. source: "./media/characters/koros/dicks-back.svg"
  25407. }
  25408. },
  25409. dicksFront: {
  25410. height: math.unit(3.72, "feet"),
  25411. name: "Dicks (Front)",
  25412. image: {
  25413. source: "./media/characters/koros/dicks-front.svg"
  25414. }
  25415. },
  25416. dicksPeeking: {
  25417. height: math.unit(3.0, "feet"),
  25418. name: "Dicks (Peeking)",
  25419. image: {
  25420. source: "./media/characters/koros/dicks-peeking.svg"
  25421. }
  25422. },
  25423. eye: {
  25424. height: math.unit(1.7, "feet"),
  25425. name: "Eye",
  25426. image: {
  25427. source: "./media/characters/koros/eye.svg"
  25428. }
  25429. },
  25430. headFront: {
  25431. height: math.unit(11.69, "feet"),
  25432. name: "Head (Front)",
  25433. image: {
  25434. source: "./media/characters/koros/head-front.svg"
  25435. }
  25436. },
  25437. headSide: {
  25438. height: math.unit(14, "feet"),
  25439. name: "Head (Side)",
  25440. image: {
  25441. source: "./media/characters/koros/head-side.svg"
  25442. }
  25443. },
  25444. leg: {
  25445. height: math.unit(17, "feet"),
  25446. name: "Leg",
  25447. image: {
  25448. source: "./media/characters/koros/leg.svg"
  25449. }
  25450. },
  25451. mawSide: {
  25452. height: math.unit(12.8, "feet"),
  25453. name: "Maw (Side)",
  25454. image: {
  25455. source: "./media/characters/koros/maw-side.svg"
  25456. }
  25457. },
  25458. mawSpitting: {
  25459. height: math.unit(17, "feet"),
  25460. name: "Maw (Spitting)",
  25461. image: {
  25462. source: "./media/characters/koros/maw-spitting.svg"
  25463. }
  25464. },
  25465. slit: {
  25466. height: math.unit(2.8, "feet"),
  25467. name: "Slit",
  25468. image: {
  25469. source: "./media/characters/koros/slit.svg"
  25470. }
  25471. },
  25472. stomach: {
  25473. height: math.unit(6.8, "feet"),
  25474. capacity: math.unit(20, "people"),
  25475. name: "Stomach",
  25476. image: {
  25477. source: "./media/characters/koros/stomach.svg"
  25478. }
  25479. },
  25480. wingspanBottom: {
  25481. height: math.unit(114, "feet"),
  25482. name: "Wingspan (Bottom)",
  25483. image: {
  25484. source: "./media/characters/koros/wingspan-bottom.svg"
  25485. }
  25486. },
  25487. wingspanTop: {
  25488. height: math.unit(104, "feet"),
  25489. name: "Wingspan (Top)",
  25490. image: {
  25491. source: "./media/characters/koros/wingspan-top.svg"
  25492. }
  25493. },
  25494. },
  25495. [
  25496. {
  25497. name: "Normal",
  25498. height: math.unit(31 + 8 / 12, "feet"),
  25499. default: true
  25500. },
  25501. ]
  25502. ))
  25503. characterMakers.push(() => makeCharacter(
  25504. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25505. {
  25506. front: {
  25507. height: math.unit(18 + 5 / 12, "feet"),
  25508. weight: math.unit(3750, "kg"),
  25509. name: "Front",
  25510. image: {
  25511. source: "./media/characters/vexx/front.svg",
  25512. extra: 426 / 396,
  25513. bottom: 31.5 / 458
  25514. }
  25515. },
  25516. maw: {
  25517. height: math.unit(6, "feet"),
  25518. name: "Maw",
  25519. image: {
  25520. source: "./media/characters/vexx/maw.svg"
  25521. }
  25522. },
  25523. },
  25524. [
  25525. {
  25526. name: "Normal",
  25527. height: math.unit(18 + 5 / 12, "feet"),
  25528. default: true
  25529. },
  25530. ]
  25531. ))
  25532. characterMakers.push(() => makeCharacter(
  25533. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25534. {
  25535. front: {
  25536. height: math.unit(17 + 6 / 12, "feet"),
  25537. weight: math.unit(150, "lb"),
  25538. name: "Front",
  25539. image: {
  25540. source: "./media/characters/baadra/front.svg",
  25541. extra: 3137 / 2890,
  25542. bottom: 168.4 / 3305
  25543. }
  25544. },
  25545. back: {
  25546. height: math.unit(17 + 6 / 12, "feet"),
  25547. weight: math.unit(150, "lb"),
  25548. name: "Back",
  25549. image: {
  25550. source: "./media/characters/baadra/back.svg",
  25551. extra: 3142 / 2890,
  25552. bottom: 220 / 3371
  25553. }
  25554. },
  25555. head: {
  25556. height: math.unit(5.45, "feet"),
  25557. name: "Head",
  25558. image: {
  25559. source: "./media/characters/baadra/head.svg"
  25560. }
  25561. },
  25562. headAngry: {
  25563. height: math.unit(4.95, "feet"),
  25564. name: "Head (Angry)",
  25565. image: {
  25566. source: "./media/characters/baadra/head-angry.svg"
  25567. }
  25568. },
  25569. headOpen: {
  25570. height: math.unit(6, "feet"),
  25571. name: "Head (Open)",
  25572. image: {
  25573. source: "./media/characters/baadra/head-open.svg"
  25574. }
  25575. },
  25576. },
  25577. [
  25578. {
  25579. name: "Normal",
  25580. height: math.unit(17 + 6 / 12, "feet"),
  25581. default: true
  25582. },
  25583. ]
  25584. ))
  25585. characterMakers.push(() => makeCharacter(
  25586. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25587. {
  25588. front: {
  25589. height: math.unit(7 + 3 / 12, "feet"),
  25590. weight: math.unit(180, "lb"),
  25591. name: "Front",
  25592. image: {
  25593. source: "./media/characters/juri/front.svg",
  25594. extra: 1401 / 1237,
  25595. bottom: 18.5 / 1418
  25596. }
  25597. },
  25598. side: {
  25599. height: math.unit(7 + 3 / 12, "feet"),
  25600. weight: math.unit(180, "lb"),
  25601. name: "Side",
  25602. image: {
  25603. source: "./media/characters/juri/side.svg",
  25604. extra: 1424 / 1242,
  25605. bottom: 18.5 / 1447
  25606. }
  25607. },
  25608. sitting: {
  25609. height: math.unit(6, "feet"),
  25610. weight: math.unit(180, "lb"),
  25611. name: "Sitting",
  25612. image: {
  25613. source: "./media/characters/juri/sitting.svg",
  25614. extra: 1270 / 1143,
  25615. bottom: 100 / 1343
  25616. }
  25617. },
  25618. back: {
  25619. height: math.unit(7 + 3 / 12, "feet"),
  25620. weight: math.unit(180, "lb"),
  25621. name: "Back",
  25622. image: {
  25623. source: "./media/characters/juri/back.svg",
  25624. extra: 1377 / 1240,
  25625. bottom: 23.7 / 1405
  25626. }
  25627. },
  25628. maw: {
  25629. height: math.unit(2.8, "feet"),
  25630. name: "Maw",
  25631. image: {
  25632. source: "./media/characters/juri/maw.svg"
  25633. }
  25634. },
  25635. stomach: {
  25636. height: math.unit(0.89, "feet"),
  25637. capacity: math.unit(4, "liters"),
  25638. name: "Stomach",
  25639. image: {
  25640. source: "./media/characters/juri/stomach.svg"
  25641. }
  25642. },
  25643. },
  25644. [
  25645. {
  25646. name: "Normal",
  25647. height: math.unit(7 + 3 / 12, "feet"),
  25648. default: true
  25649. },
  25650. ]
  25651. ))
  25652. characterMakers.push(() => makeCharacter(
  25653. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25654. {
  25655. fox: {
  25656. height: math.unit(5 + 6 / 12, "feet"),
  25657. weight: math.unit(140, "lb"),
  25658. name: "Fox",
  25659. image: {
  25660. source: "./media/characters/maxene-sita/fox.svg",
  25661. extra: 146 / 138,
  25662. bottom: 2.1 / 148.19
  25663. }
  25664. },
  25665. foxLaying: {
  25666. height: math.unit(1.70, "feet"),
  25667. weight: math.unit(140, "lb"),
  25668. name: "Fox (Laying)",
  25669. image: {
  25670. source: "./media/characters/maxene-sita/fox-laying.svg",
  25671. extra: 910 / 572,
  25672. bottom: 71 / 981
  25673. }
  25674. },
  25675. kitsune: {
  25676. height: math.unit(10, "feet"),
  25677. weight: math.unit(800, "lb"),
  25678. name: "Kitsune",
  25679. image: {
  25680. source: "./media/characters/maxene-sita/kitsune.svg",
  25681. extra: 185 / 176,
  25682. bottom: 4.7 / 189.9
  25683. }
  25684. },
  25685. hellhound: {
  25686. height: math.unit(10, "feet"),
  25687. weight: math.unit(700, "lb"),
  25688. name: "Hellhound",
  25689. image: {
  25690. source: "./media/characters/maxene-sita/hellhound.svg",
  25691. extra: 1600 / 1545,
  25692. bottom: 81 / 1681
  25693. }
  25694. },
  25695. },
  25696. [
  25697. {
  25698. name: "Normal",
  25699. height: math.unit(5 + 6 / 12, "feet"),
  25700. default: true
  25701. },
  25702. ]
  25703. ))
  25704. characterMakers.push(() => makeCharacter(
  25705. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25706. {
  25707. front: {
  25708. height: math.unit(3 + 4 / 12, "feet"),
  25709. weight: math.unit(70, "lb"),
  25710. name: "Front",
  25711. image: {
  25712. source: "./media/characters/maia/front.svg",
  25713. extra: 227 / 219.5,
  25714. bottom: 40 / 267
  25715. }
  25716. },
  25717. back: {
  25718. height: math.unit(3 + 4 / 12, "feet"),
  25719. weight: math.unit(70, "lb"),
  25720. name: "Back",
  25721. image: {
  25722. source: "./media/characters/maia/back.svg",
  25723. extra: 237 / 225
  25724. }
  25725. },
  25726. },
  25727. [
  25728. {
  25729. name: "Normal",
  25730. height: math.unit(3 + 4 / 12, "feet"),
  25731. default: true
  25732. },
  25733. ]
  25734. ))
  25735. characterMakers.push(() => makeCharacter(
  25736. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25737. {
  25738. front: {
  25739. height: math.unit(5 + 10 / 12, "feet"),
  25740. weight: math.unit(197, "lb"),
  25741. name: "Front",
  25742. image: {
  25743. source: "./media/characters/jabaro/front.svg",
  25744. extra: 225 / 216,
  25745. bottom: 5.06 / 230
  25746. }
  25747. },
  25748. back: {
  25749. height: math.unit(5 + 10 / 12, "feet"),
  25750. weight: math.unit(197, "lb"),
  25751. name: "Back",
  25752. image: {
  25753. source: "./media/characters/jabaro/back.svg",
  25754. extra: 225 / 219,
  25755. bottom: 1.9 / 227
  25756. }
  25757. },
  25758. },
  25759. [
  25760. {
  25761. name: "Normal",
  25762. height: math.unit(5 + 10 / 12, "feet"),
  25763. default: true
  25764. },
  25765. ]
  25766. ))
  25767. characterMakers.push(() => makeCharacter(
  25768. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25769. {
  25770. front: {
  25771. height: math.unit(5 + 8 / 12, "feet"),
  25772. weight: math.unit(139, "lb"),
  25773. name: "Front",
  25774. image: {
  25775. source: "./media/characters/risa/front.svg",
  25776. extra: 270 / 260,
  25777. bottom: 11.2 / 282
  25778. }
  25779. },
  25780. back: {
  25781. height: math.unit(5 + 8 / 12, "feet"),
  25782. weight: math.unit(139, "lb"),
  25783. name: "Back",
  25784. image: {
  25785. source: "./media/characters/risa/back.svg",
  25786. extra: 264 / 255,
  25787. bottom: 4 / 268
  25788. }
  25789. },
  25790. },
  25791. [
  25792. {
  25793. name: "Normal",
  25794. height: math.unit(5 + 8 / 12, "feet"),
  25795. default: true
  25796. },
  25797. ]
  25798. ))
  25799. characterMakers.push(() => makeCharacter(
  25800. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25801. {
  25802. front: {
  25803. height: math.unit(2 + 11 / 12, "feet"),
  25804. weight: math.unit(30, "lb"),
  25805. name: "Front",
  25806. image: {
  25807. source: "./media/characters/weatley/front.svg",
  25808. bottom: 10.7 / 414,
  25809. extra: 403.5 / 362
  25810. }
  25811. },
  25812. back: {
  25813. height: math.unit(2 + 11 / 12, "feet"),
  25814. weight: math.unit(30, "lb"),
  25815. name: "Back",
  25816. image: {
  25817. source: "./media/characters/weatley/back.svg",
  25818. bottom: 10.7 / 414,
  25819. extra: 403.5 / 362
  25820. }
  25821. },
  25822. },
  25823. [
  25824. {
  25825. name: "Normal",
  25826. height: math.unit(2 + 11 / 12, "feet"),
  25827. default: true
  25828. },
  25829. ]
  25830. ))
  25831. characterMakers.push(() => makeCharacter(
  25832. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25833. {
  25834. front: {
  25835. height: math.unit(5 + 2 / 12, "feet"),
  25836. weight: math.unit(50, "kg"),
  25837. name: "Front",
  25838. image: {
  25839. source: "./media/characters/mercury-crescent/front.svg",
  25840. extra: 1088 / 1033,
  25841. bottom: 18.9 / 1109
  25842. }
  25843. },
  25844. },
  25845. [
  25846. {
  25847. name: "Normal",
  25848. height: math.unit(5 + 2 / 12, "feet"),
  25849. default: true
  25850. },
  25851. ]
  25852. ))
  25853. characterMakers.push(() => makeCharacter(
  25854. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25855. {
  25856. front: {
  25857. height: math.unit(2, "feet"),
  25858. weight: math.unit(15, "kg"),
  25859. name: "Front",
  25860. image: {
  25861. source: "./media/characters/diamond-jones/front.svg",
  25862. extra: 727/723,
  25863. bottom: 46/773
  25864. }
  25865. },
  25866. },
  25867. [
  25868. {
  25869. name: "Normal",
  25870. height: math.unit(2, "feet"),
  25871. default: true
  25872. },
  25873. ]
  25874. ))
  25875. characterMakers.push(() => makeCharacter(
  25876. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25877. {
  25878. front: {
  25879. height: math.unit(3, "feet"),
  25880. weight: math.unit(30, "kg"),
  25881. name: "Front",
  25882. image: {
  25883. source: "./media/characters/sweet-bit/front.svg",
  25884. extra: 675 / 567,
  25885. bottom: 27.7 / 703
  25886. }
  25887. },
  25888. },
  25889. [
  25890. {
  25891. name: "Normal",
  25892. height: math.unit(3, "feet"),
  25893. default: true
  25894. },
  25895. ]
  25896. ))
  25897. characterMakers.push(() => makeCharacter(
  25898. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25899. {
  25900. side: {
  25901. height: math.unit(9.178, "feet"),
  25902. weight: math.unit(500, "lb"),
  25903. name: "Side",
  25904. image: {
  25905. source: "./media/characters/umbrazen/side.svg",
  25906. extra: 1730 / 1473,
  25907. bottom: 34.6 / 1765
  25908. }
  25909. },
  25910. },
  25911. [
  25912. {
  25913. name: "Normal",
  25914. height: math.unit(9.178, "feet"),
  25915. default: true
  25916. },
  25917. ]
  25918. ))
  25919. characterMakers.push(() => makeCharacter(
  25920. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25921. {
  25922. front: {
  25923. height: math.unit(10, "feet"),
  25924. weight: math.unit(750, "lb"),
  25925. name: "Front",
  25926. image: {
  25927. source: "./media/characters/arlist/front.svg",
  25928. extra: 961 / 778,
  25929. bottom: 6.2 / 986
  25930. }
  25931. },
  25932. },
  25933. [
  25934. {
  25935. name: "Normal",
  25936. height: math.unit(10, "feet"),
  25937. default: true
  25938. },
  25939. ]
  25940. ))
  25941. characterMakers.push(() => makeCharacter(
  25942. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25943. {
  25944. front: {
  25945. height: math.unit(5 + 1 / 12, "feet"),
  25946. weight: math.unit(110, "lb"),
  25947. name: "Front",
  25948. image: {
  25949. source: "./media/characters/aradel/front.svg",
  25950. extra: 324 / 303,
  25951. bottom: 3.6 / 329.4
  25952. }
  25953. },
  25954. },
  25955. [
  25956. {
  25957. name: "Normal",
  25958. height: math.unit(5 + 1 / 12, "feet"),
  25959. default: true
  25960. },
  25961. ]
  25962. ))
  25963. characterMakers.push(() => makeCharacter(
  25964. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25965. {
  25966. front: {
  25967. height: math.unit(3 + 8 / 12, "feet"),
  25968. weight: math.unit(50, "lb"),
  25969. name: "Front",
  25970. image: {
  25971. source: "./media/characters/serryn/front.svg",
  25972. extra: 1792 / 1656,
  25973. bottom: 43.5 / 1840
  25974. }
  25975. },
  25976. },
  25977. [
  25978. {
  25979. name: "Normal",
  25980. height: math.unit(3 + 8 / 12, "feet"),
  25981. default: true
  25982. },
  25983. ]
  25984. ))
  25985. characterMakers.push(() => makeCharacter(
  25986. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  25987. {
  25988. front: {
  25989. height: math.unit(7 + 10 / 12, "feet"),
  25990. weight: math.unit(255, "lb"),
  25991. name: "Front",
  25992. image: {
  25993. source: "./media/characters/xavier-thyme/front.svg",
  25994. extra: 3733 / 3642,
  25995. bottom: 131 / 3869
  25996. }
  25997. },
  25998. frontRaven: {
  25999. height: math.unit(7 + 10 / 12, "feet"),
  26000. weight: math.unit(255, "lb"),
  26001. name: "Front (Raven)",
  26002. image: {
  26003. source: "./media/characters/xavier-thyme/front-raven.svg",
  26004. extra: 4385 / 3642,
  26005. bottom: 131 / 4517
  26006. }
  26007. },
  26008. },
  26009. [
  26010. {
  26011. name: "Normal",
  26012. height: math.unit(7 + 10 / 12, "feet"),
  26013. default: true
  26014. },
  26015. ]
  26016. ))
  26017. characterMakers.push(() => makeCharacter(
  26018. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26019. {
  26020. front: {
  26021. height: math.unit(1.6, "m"),
  26022. weight: math.unit(50, "kg"),
  26023. name: "Front",
  26024. image: {
  26025. source: "./media/characters/kiki/front.svg",
  26026. extra: 4682 / 3610,
  26027. bottom: 115 / 4777
  26028. }
  26029. },
  26030. },
  26031. [
  26032. {
  26033. name: "Normal",
  26034. height: math.unit(1.6, "meters"),
  26035. default: true
  26036. },
  26037. ]
  26038. ))
  26039. characterMakers.push(() => makeCharacter(
  26040. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26041. {
  26042. front: {
  26043. height: math.unit(50, "m"),
  26044. weight: math.unit(500, "tonnes"),
  26045. name: "Front",
  26046. image: {
  26047. source: "./media/characters/ryoko/front.svg",
  26048. extra: 4632 / 3926,
  26049. bottom: 193 / 4823
  26050. }
  26051. },
  26052. },
  26053. [
  26054. {
  26055. name: "Normal",
  26056. height: math.unit(50, "meters"),
  26057. default: true
  26058. },
  26059. ]
  26060. ))
  26061. characterMakers.push(() => makeCharacter(
  26062. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26063. {
  26064. front: {
  26065. height: math.unit(30, "m"),
  26066. weight: math.unit(22, "tonnes"),
  26067. name: "Front",
  26068. image: {
  26069. source: "./media/characters/elio/front.svg",
  26070. extra: 4582 / 3720,
  26071. bottom: 236 / 4828
  26072. }
  26073. },
  26074. },
  26075. [
  26076. {
  26077. name: "Normal",
  26078. height: math.unit(30, "meters"),
  26079. default: true
  26080. },
  26081. ]
  26082. ))
  26083. characterMakers.push(() => makeCharacter(
  26084. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26085. {
  26086. front: {
  26087. height: math.unit(6 + 3 / 12, "feet"),
  26088. weight: math.unit(120, "lb"),
  26089. name: "Front",
  26090. image: {
  26091. source: "./media/characters/azura/front.svg",
  26092. extra: 1149 / 1135,
  26093. bottom: 45 / 1194
  26094. }
  26095. },
  26096. frontClothed: {
  26097. height: math.unit(6 + 3 / 12, "feet"),
  26098. weight: math.unit(120, "lb"),
  26099. name: "Front (Clothed)",
  26100. image: {
  26101. source: "./media/characters/azura/front-clothed.svg",
  26102. extra: 1149 / 1135,
  26103. bottom: 45 / 1194
  26104. }
  26105. },
  26106. },
  26107. [
  26108. {
  26109. name: "Normal",
  26110. height: math.unit(6 + 3 / 12, "feet"),
  26111. default: true
  26112. },
  26113. {
  26114. name: "Macro",
  26115. height: math.unit(20 + 6 / 12, "feet")
  26116. },
  26117. {
  26118. name: "Megamacro",
  26119. height: math.unit(12, "miles")
  26120. },
  26121. {
  26122. name: "Gigamacro",
  26123. height: math.unit(10000, "miles")
  26124. },
  26125. {
  26126. name: "Teramacro",
  26127. height: math.unit(900000, "miles")
  26128. },
  26129. ]
  26130. ))
  26131. characterMakers.push(() => makeCharacter(
  26132. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26133. {
  26134. front: {
  26135. height: math.unit(12, "feet"),
  26136. weight: math.unit(1, "ton"),
  26137. capacity: math.unit(660000, "gallons"),
  26138. name: "Front",
  26139. image: {
  26140. source: "./media/characters/zeus/front.svg",
  26141. extra: 5005 / 4717,
  26142. bottom: 363 / 5388
  26143. }
  26144. },
  26145. },
  26146. [
  26147. {
  26148. name: "Normal",
  26149. height: math.unit(12, "feet")
  26150. },
  26151. {
  26152. name: "Preferred Size",
  26153. height: math.unit(0.5, "miles"),
  26154. default: true
  26155. },
  26156. {
  26157. name: "Giga Horse",
  26158. height: math.unit(300, "miles")
  26159. },
  26160. {
  26161. name: "Riding Planets",
  26162. height: math.unit(30, "megameters")
  26163. },
  26164. {
  26165. name: "Cosmic Giant",
  26166. height: math.unit(3, "zettameters")
  26167. },
  26168. {
  26169. name: "Breeding God",
  26170. height: math.unit(9.92e22, "yottameters")
  26171. },
  26172. ]
  26173. ))
  26174. characterMakers.push(() => makeCharacter(
  26175. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26176. {
  26177. side: {
  26178. height: math.unit(9, "feet"),
  26179. weight: math.unit(1500, "kg"),
  26180. name: "Side",
  26181. image: {
  26182. source: "./media/characters/fang/side.svg",
  26183. extra: 924 / 866,
  26184. bottom: 47.5 / 972.3
  26185. }
  26186. },
  26187. },
  26188. [
  26189. {
  26190. name: "Normal",
  26191. height: math.unit(9, "feet"),
  26192. default: true
  26193. },
  26194. {
  26195. name: "Macro",
  26196. height: math.unit(75 + 6 / 12, "feet")
  26197. },
  26198. {
  26199. name: "Teramacro",
  26200. height: math.unit(50000, "miles")
  26201. },
  26202. ]
  26203. ))
  26204. characterMakers.push(() => makeCharacter(
  26205. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26206. {
  26207. front: {
  26208. height: math.unit(10, "feet"),
  26209. weight: math.unit(2, "tons"),
  26210. name: "Front",
  26211. image: {
  26212. source: "./media/characters/rekhit/front.svg",
  26213. extra: 2796 / 2590,
  26214. bottom: 225 / 3022
  26215. }
  26216. },
  26217. },
  26218. [
  26219. {
  26220. name: "Normal",
  26221. height: math.unit(10, "feet"),
  26222. default: true
  26223. },
  26224. {
  26225. name: "Macro",
  26226. height: math.unit(500, "feet")
  26227. },
  26228. ]
  26229. ))
  26230. characterMakers.push(() => makeCharacter(
  26231. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26232. {
  26233. front: {
  26234. height: math.unit(7 + 6.451 / 12, "feet"),
  26235. weight: math.unit(310, "lb"),
  26236. name: "Front",
  26237. image: {
  26238. source: "./media/characters/dahlia-verrick/front.svg",
  26239. extra: 1488 / 1365,
  26240. bottom: 6.2 / 1495
  26241. }
  26242. },
  26243. back: {
  26244. height: math.unit(7 + 6.451 / 12, "feet"),
  26245. weight: math.unit(310, "lb"),
  26246. name: "Back",
  26247. image: {
  26248. source: "./media/characters/dahlia-verrick/back.svg",
  26249. extra: 1472 / 1351,
  26250. bottom: 5.28 / 1477
  26251. }
  26252. },
  26253. frontBusiness: {
  26254. height: math.unit(7 + 6.451 / 12, "feet"),
  26255. weight: math.unit(200, "lb"),
  26256. name: "Front (Business)",
  26257. image: {
  26258. source: "./media/characters/dahlia-verrick/front-business.svg",
  26259. extra: 1478 / 1381,
  26260. bottom: 5.5 / 1484
  26261. }
  26262. },
  26263. frontCasual: {
  26264. height: math.unit(7 + 6.451 / 12, "feet"),
  26265. weight: math.unit(200, "lb"),
  26266. name: "Front (Casual)",
  26267. image: {
  26268. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26269. extra: 1478 / 1381,
  26270. bottom: 5.5 / 1484
  26271. }
  26272. },
  26273. },
  26274. [
  26275. {
  26276. name: "Travel-Sized",
  26277. height: math.unit(7.45, "inches")
  26278. },
  26279. {
  26280. name: "Normal",
  26281. height: math.unit(7 + 6.451 / 12, "feet"),
  26282. default: true
  26283. },
  26284. {
  26285. name: "Hitting the Town",
  26286. height: math.unit(37 + 8 / 12, "feet")
  26287. },
  26288. {
  26289. name: "Stomp in the Suburbs",
  26290. height: math.unit(964 + 9.728 / 12, "feet")
  26291. },
  26292. {
  26293. name: "Sit on the City",
  26294. height: math.unit(61747 + 10.592 / 12, "feet")
  26295. },
  26296. {
  26297. name: "Glomp the Globe",
  26298. height: math.unit(252919327 + 4.832 / 12, "feet")
  26299. },
  26300. ]
  26301. ))
  26302. characterMakers.push(() => makeCharacter(
  26303. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26304. {
  26305. front: {
  26306. height: math.unit(6 + 4 / 12, "feet"),
  26307. weight: math.unit(320, "lb"),
  26308. name: "Front",
  26309. image: {
  26310. source: "./media/characters/balina-mahigan/front.svg",
  26311. extra: 447 / 428,
  26312. bottom: 18 / 466
  26313. }
  26314. },
  26315. back: {
  26316. height: math.unit(6 + 4 / 12, "feet"),
  26317. weight: math.unit(320, "lb"),
  26318. name: "Back",
  26319. image: {
  26320. source: "./media/characters/balina-mahigan/back.svg",
  26321. extra: 445 / 428,
  26322. bottom: 4.07 / 448
  26323. }
  26324. },
  26325. arm: {
  26326. height: math.unit(1.88, "feet"),
  26327. name: "Arm",
  26328. image: {
  26329. source: "./media/characters/balina-mahigan/arm.svg"
  26330. }
  26331. },
  26332. backPort: {
  26333. height: math.unit(0.685, "feet"),
  26334. name: "Back Port",
  26335. image: {
  26336. source: "./media/characters/balina-mahigan/back-port.svg"
  26337. }
  26338. },
  26339. hoofpaw: {
  26340. height: math.unit(1.41, "feet"),
  26341. name: "Hoofpaw",
  26342. image: {
  26343. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26344. }
  26345. },
  26346. leftHandBack: {
  26347. height: math.unit(0.938, "feet"),
  26348. name: "Left Hand (Back)",
  26349. image: {
  26350. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26351. }
  26352. },
  26353. leftHandFront: {
  26354. height: math.unit(0.938, "feet"),
  26355. name: "Left Hand (Front)",
  26356. image: {
  26357. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26358. }
  26359. },
  26360. rightHandBack: {
  26361. height: math.unit(0.95, "feet"),
  26362. name: "Right Hand (Back)",
  26363. image: {
  26364. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26365. }
  26366. },
  26367. rightHandFront: {
  26368. height: math.unit(0.95, "feet"),
  26369. name: "Right Hand (Front)",
  26370. image: {
  26371. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26372. }
  26373. },
  26374. },
  26375. [
  26376. {
  26377. name: "Normal",
  26378. height: math.unit(6 + 4 / 12, "feet"),
  26379. default: true
  26380. },
  26381. ]
  26382. ))
  26383. characterMakers.push(() => makeCharacter(
  26384. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26385. {
  26386. front: {
  26387. height: math.unit(6, "feet"),
  26388. weight: math.unit(320, "lb"),
  26389. name: "Front",
  26390. image: {
  26391. source: "./media/characters/balina-mejeri/front.svg",
  26392. extra: 517 / 488,
  26393. bottom: 44.2 / 561
  26394. }
  26395. },
  26396. },
  26397. [
  26398. {
  26399. name: "Normal",
  26400. height: math.unit(6 + 4 / 12, "feet")
  26401. },
  26402. {
  26403. name: "Business",
  26404. height: math.unit(155, "feet"),
  26405. default: true
  26406. },
  26407. ]
  26408. ))
  26409. characterMakers.push(() => makeCharacter(
  26410. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26411. {
  26412. kneeling: {
  26413. height: math.unit(6 + 4 / 12, "feet"),
  26414. weight: math.unit(300 * 20, "lb"),
  26415. name: "Kneeling",
  26416. image: {
  26417. source: "./media/characters/balbarian/kneeling.svg",
  26418. extra: 922 / 862,
  26419. bottom: 42.4 / 965
  26420. }
  26421. },
  26422. },
  26423. [
  26424. {
  26425. name: "Normal",
  26426. height: math.unit(6 + 4 / 12, "feet")
  26427. },
  26428. {
  26429. name: "Treasured",
  26430. height: math.unit(18 + 9 / 12, "feet"),
  26431. default: true
  26432. },
  26433. {
  26434. name: "Macro",
  26435. height: math.unit(900, "feet")
  26436. },
  26437. ]
  26438. ))
  26439. characterMakers.push(() => makeCharacter(
  26440. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26441. {
  26442. front: {
  26443. height: math.unit(6 + 4 / 12, "feet"),
  26444. weight: math.unit(325, "lb"),
  26445. name: "Front",
  26446. image: {
  26447. source: "./media/characters/balina-amarini/front.svg",
  26448. extra: 415 / 403,
  26449. bottom: 19 / 433.4
  26450. }
  26451. },
  26452. back: {
  26453. height: math.unit(6 + 4 / 12, "feet"),
  26454. weight: math.unit(325, "lb"),
  26455. name: "Back",
  26456. image: {
  26457. source: "./media/characters/balina-amarini/back.svg",
  26458. extra: 415 / 403,
  26459. bottom: 13.5 / 432
  26460. }
  26461. },
  26462. overdrive: {
  26463. height: math.unit(6 + 4 / 12, "feet"),
  26464. weight: math.unit(400, "lb"),
  26465. name: "Overdrive",
  26466. image: {
  26467. source: "./media/characters/balina-amarini/overdrive.svg",
  26468. extra: 269 / 259,
  26469. bottom: 12 / 282
  26470. }
  26471. },
  26472. },
  26473. [
  26474. {
  26475. name: "Boom",
  26476. height: math.unit(9 + 10 / 12, "feet"),
  26477. default: true
  26478. },
  26479. {
  26480. name: "Macro",
  26481. height: math.unit(280, "feet")
  26482. },
  26483. ]
  26484. ))
  26485. characterMakers.push(() => makeCharacter(
  26486. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26487. {
  26488. goddess: {
  26489. height: math.unit(600, "feet"),
  26490. weight: math.unit(2000000, "tons"),
  26491. name: "Goddess",
  26492. image: {
  26493. source: "./media/characters/lady-kubwa/goddess.svg",
  26494. extra: 1240.5 / 1223,
  26495. bottom: 22 / 1263
  26496. }
  26497. },
  26498. goddesser: {
  26499. height: math.unit(900, "feet"),
  26500. weight: math.unit(20000000, "lb"),
  26501. name: "Goddess-er",
  26502. image: {
  26503. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26504. extra: 899 / 888,
  26505. bottom: 12.6 / 912
  26506. }
  26507. },
  26508. },
  26509. [
  26510. {
  26511. name: "Macro",
  26512. height: math.unit(600, "feet"),
  26513. default: true
  26514. },
  26515. {
  26516. name: "Megamacro",
  26517. height: math.unit(250, "miles")
  26518. },
  26519. ]
  26520. ))
  26521. characterMakers.push(() => makeCharacter(
  26522. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26523. {
  26524. front: {
  26525. height: math.unit(7 + 7 / 12, "feet"),
  26526. weight: math.unit(250, "lb"),
  26527. name: "Front",
  26528. image: {
  26529. source: "./media/characters/tala-grovehorn/front.svg",
  26530. extra: 2636 / 2525,
  26531. bottom: 147 / 2781
  26532. }
  26533. },
  26534. back: {
  26535. height: math.unit(7 + 7 / 12, "feet"),
  26536. weight: math.unit(250, "lb"),
  26537. name: "Back",
  26538. image: {
  26539. source: "./media/characters/tala-grovehorn/back.svg",
  26540. extra: 2635 / 2539,
  26541. bottom: 100 / 2732.8
  26542. }
  26543. },
  26544. mouth: {
  26545. height: math.unit(1.15, "feet"),
  26546. name: "Mouth",
  26547. image: {
  26548. source: "./media/characters/tala-grovehorn/mouth.svg"
  26549. }
  26550. },
  26551. dick: {
  26552. height: math.unit(2.36, "feet"),
  26553. name: "Dick",
  26554. image: {
  26555. source: "./media/characters/tala-grovehorn/dick.svg"
  26556. }
  26557. },
  26558. slit: {
  26559. height: math.unit(0.61, "feet"),
  26560. name: "Slit",
  26561. image: {
  26562. source: "./media/characters/tala-grovehorn/slit.svg"
  26563. }
  26564. },
  26565. },
  26566. [
  26567. ]
  26568. ))
  26569. characterMakers.push(() => makeCharacter(
  26570. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26571. {
  26572. front: {
  26573. height: math.unit(7 + 7 / 12, "feet"),
  26574. weight: math.unit(225, "lb"),
  26575. name: "Front",
  26576. image: {
  26577. source: "./media/characters/epona/front.svg",
  26578. extra: 2445 / 2290,
  26579. bottom: 251 / 2696
  26580. }
  26581. },
  26582. back: {
  26583. height: math.unit(7 + 7 / 12, "feet"),
  26584. weight: math.unit(225, "lb"),
  26585. name: "Back",
  26586. image: {
  26587. source: "./media/characters/epona/back.svg",
  26588. extra: 2546 / 2408,
  26589. bottom: 44 / 2589
  26590. }
  26591. },
  26592. genitals: {
  26593. height: math.unit(1.5, "feet"),
  26594. name: "Genitals",
  26595. image: {
  26596. source: "./media/characters/epona/genitals.svg"
  26597. }
  26598. },
  26599. },
  26600. [
  26601. {
  26602. name: "Normal",
  26603. height: math.unit(7 + 7 / 12, "feet"),
  26604. default: true
  26605. },
  26606. ]
  26607. ))
  26608. characterMakers.push(() => makeCharacter(
  26609. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26610. {
  26611. front: {
  26612. height: math.unit(7, "feet"),
  26613. weight: math.unit(518, "lb"),
  26614. name: "Front",
  26615. image: {
  26616. source: "./media/characters/avia-bloodbourn/front.svg",
  26617. extra: 1466 / 1350,
  26618. bottom: 65 / 1527
  26619. }
  26620. },
  26621. },
  26622. [
  26623. ]
  26624. ))
  26625. characterMakers.push(() => makeCharacter(
  26626. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26627. {
  26628. front: {
  26629. height: math.unit(9.35, "feet"),
  26630. weight: math.unit(600, "lb"),
  26631. name: "Front",
  26632. image: {
  26633. source: "./media/characters/amera/front.svg",
  26634. extra: 891 / 818,
  26635. bottom: 30 / 922.7
  26636. }
  26637. },
  26638. back: {
  26639. height: math.unit(9.35, "feet"),
  26640. weight: math.unit(600, "lb"),
  26641. name: "Back",
  26642. image: {
  26643. source: "./media/characters/amera/back.svg",
  26644. extra: 876 / 824,
  26645. bottom: 6.8 / 884
  26646. }
  26647. },
  26648. dick: {
  26649. height: math.unit(2.14, "feet"),
  26650. name: "Dick",
  26651. image: {
  26652. source: "./media/characters/amera/dick.svg"
  26653. }
  26654. },
  26655. },
  26656. [
  26657. {
  26658. name: "Normal",
  26659. height: math.unit(9.35, "feet"),
  26660. default: true
  26661. },
  26662. ]
  26663. ))
  26664. characterMakers.push(() => makeCharacter(
  26665. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26666. {
  26667. kneeling: {
  26668. height: math.unit(3 + 4 / 12, "feet"),
  26669. weight: math.unit(90, "lb"),
  26670. name: "Kneeling",
  26671. image: {
  26672. source: "./media/characters/rosewen/kneeling.svg",
  26673. extra: 1835 / 1571,
  26674. bottom: 27.7 / 1862
  26675. }
  26676. },
  26677. },
  26678. [
  26679. {
  26680. name: "Normal",
  26681. height: math.unit(3 + 4 / 12, "feet"),
  26682. default: true
  26683. },
  26684. ]
  26685. ))
  26686. characterMakers.push(() => makeCharacter(
  26687. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26688. {
  26689. front: {
  26690. height: math.unit(5 + 10 / 12, "feet"),
  26691. weight: math.unit(200, "lb"),
  26692. name: "Front",
  26693. image: {
  26694. source: "./media/characters/sabah/front.svg",
  26695. extra: 849 / 763,
  26696. bottom: 33.9 / 881
  26697. }
  26698. },
  26699. },
  26700. [
  26701. {
  26702. name: "Normal",
  26703. height: math.unit(5 + 10 / 12, "feet"),
  26704. default: true
  26705. },
  26706. ]
  26707. ))
  26708. characterMakers.push(() => makeCharacter(
  26709. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26710. {
  26711. front: {
  26712. height: math.unit(3 + 5 / 12, "feet"),
  26713. weight: math.unit(40, "kg"),
  26714. name: "Front",
  26715. image: {
  26716. source: "./media/characters/purple-flame/front.svg",
  26717. extra: 1577 / 1412,
  26718. bottom: 97 / 1694
  26719. }
  26720. },
  26721. frontDressed: {
  26722. height: math.unit(3 + 5 / 12, "feet"),
  26723. weight: math.unit(40, "kg"),
  26724. name: "Front (Dressed)",
  26725. image: {
  26726. source: "./media/characters/purple-flame/front-dressed.svg",
  26727. extra: 1577 / 1412,
  26728. bottom: 97 / 1694
  26729. }
  26730. },
  26731. headphones: {
  26732. height: math.unit(0.85, "feet"),
  26733. name: "Headphones",
  26734. image: {
  26735. source: "./media/characters/purple-flame/headphones.svg"
  26736. }
  26737. },
  26738. },
  26739. [
  26740. {
  26741. name: "Really Small",
  26742. height: math.unit(5, "cm")
  26743. },
  26744. {
  26745. name: "Micro",
  26746. height: math.unit(1 + 5 / 12, "feet")
  26747. },
  26748. {
  26749. name: "Normal",
  26750. height: math.unit(3 + 5 / 12, "feet"),
  26751. default: true
  26752. },
  26753. {
  26754. name: "Minimacro",
  26755. height: math.unit(125, "feet")
  26756. },
  26757. {
  26758. name: "Macro",
  26759. height: math.unit(0.5, "miles")
  26760. },
  26761. {
  26762. name: "Megamacro",
  26763. height: math.unit(50, "miles")
  26764. },
  26765. {
  26766. name: "Gigantic",
  26767. height: math.unit(750, "miles")
  26768. },
  26769. {
  26770. name: "Planetary",
  26771. height: math.unit(15000, "miles")
  26772. },
  26773. ]
  26774. ))
  26775. characterMakers.push(() => makeCharacter(
  26776. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26777. {
  26778. front: {
  26779. height: math.unit(14, "feet"),
  26780. weight: math.unit(959, "lb"),
  26781. name: "Front",
  26782. image: {
  26783. source: "./media/characters/arsenal/front.svg",
  26784. extra: 2357 / 2157,
  26785. bottom: 93 / 2458
  26786. }
  26787. },
  26788. },
  26789. [
  26790. {
  26791. name: "Normal",
  26792. height: math.unit(14, "feet"),
  26793. default: true
  26794. },
  26795. ]
  26796. ))
  26797. characterMakers.push(() => makeCharacter(
  26798. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26799. {
  26800. front: {
  26801. height: math.unit(6, "feet"),
  26802. weight: math.unit(150, "lb"),
  26803. name: "Front",
  26804. image: {
  26805. source: "./media/characters/adira/front.svg",
  26806. extra: 1078 / 1029,
  26807. bottom: 87 / 1166
  26808. }
  26809. },
  26810. },
  26811. [
  26812. {
  26813. name: "Micro",
  26814. height: math.unit(4, "inches"),
  26815. default: true
  26816. },
  26817. {
  26818. name: "Macro",
  26819. height: math.unit(50, "feet")
  26820. },
  26821. ]
  26822. ))
  26823. characterMakers.push(() => makeCharacter(
  26824. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26825. {
  26826. front: {
  26827. height: math.unit(16, "feet"),
  26828. weight: math.unit(1000, "lb"),
  26829. name: "Front",
  26830. image: {
  26831. source: "./media/characters/grim/front.svg",
  26832. extra: 622 / 614,
  26833. bottom: 18.1 / 642
  26834. }
  26835. },
  26836. back: {
  26837. height: math.unit(16, "feet"),
  26838. weight: math.unit(1000, "lb"),
  26839. name: "Back",
  26840. image: {
  26841. source: "./media/characters/grim/back.svg",
  26842. extra: 610.6 / 602,
  26843. bottom: 40.8 / 652
  26844. }
  26845. },
  26846. hunched: {
  26847. height: math.unit(9.75, "feet"),
  26848. weight: math.unit(1000, "lb"),
  26849. name: "Hunched",
  26850. image: {
  26851. source: "./media/characters/grim/hunched.svg",
  26852. extra: 304 / 297,
  26853. bottom: 35.4 / 394
  26854. }
  26855. },
  26856. },
  26857. [
  26858. {
  26859. name: "Normal",
  26860. height: math.unit(16, "feet"),
  26861. default: true
  26862. },
  26863. ]
  26864. ))
  26865. characterMakers.push(() => makeCharacter(
  26866. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26867. {
  26868. front: {
  26869. height: math.unit(2.3, "meters"),
  26870. weight: math.unit(300, "lb"),
  26871. name: "Front",
  26872. image: {
  26873. source: "./media/characters/sinja/front-sfw.svg",
  26874. extra: 1393 / 1294,
  26875. bottom: 70 / 1463
  26876. }
  26877. },
  26878. frontNsfw: {
  26879. height: math.unit(2.3, "meters"),
  26880. weight: math.unit(300, "lb"),
  26881. name: "Front (NSFW)",
  26882. image: {
  26883. source: "./media/characters/sinja/front-nsfw.svg",
  26884. extra: 1393 / 1294,
  26885. bottom: 70 / 1463
  26886. }
  26887. },
  26888. back: {
  26889. height: math.unit(2.3, "meters"),
  26890. weight: math.unit(300, "lb"),
  26891. name: "Back",
  26892. image: {
  26893. source: "./media/characters/sinja/back.svg",
  26894. extra: 1393 / 1294,
  26895. bottom: 70 / 1463
  26896. }
  26897. },
  26898. head: {
  26899. height: math.unit(1.771, "feet"),
  26900. name: "Head",
  26901. image: {
  26902. source: "./media/characters/sinja/head.svg"
  26903. }
  26904. },
  26905. slit: {
  26906. height: math.unit(0.8, "feet"),
  26907. name: "Slit",
  26908. image: {
  26909. source: "./media/characters/sinja/slit.svg"
  26910. }
  26911. },
  26912. },
  26913. [
  26914. {
  26915. name: "Normal",
  26916. height: math.unit(2.3, "meters")
  26917. },
  26918. {
  26919. name: "Macro",
  26920. height: math.unit(91, "meters"),
  26921. default: true
  26922. },
  26923. {
  26924. name: "Megamacro",
  26925. height: math.unit(91440, "meters")
  26926. },
  26927. {
  26928. name: "Gigamacro",
  26929. height: math.unit(60960000, "meters")
  26930. },
  26931. {
  26932. name: "Teramacro",
  26933. height: math.unit(9144000000, "meters")
  26934. },
  26935. ]
  26936. ))
  26937. characterMakers.push(() => makeCharacter(
  26938. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26939. {
  26940. front: {
  26941. height: math.unit(1.7, "meters"),
  26942. weight: math.unit(130, "lb"),
  26943. name: "Front",
  26944. image: {
  26945. source: "./media/characters/kyu/front.svg",
  26946. extra: 415 / 395,
  26947. bottom: 5 / 420
  26948. }
  26949. },
  26950. head: {
  26951. height: math.unit(1.75, "feet"),
  26952. name: "Head",
  26953. image: {
  26954. source: "./media/characters/kyu/head.svg"
  26955. }
  26956. },
  26957. foot: {
  26958. height: math.unit(0.81, "feet"),
  26959. name: "Foot",
  26960. image: {
  26961. source: "./media/characters/kyu/foot.svg"
  26962. }
  26963. },
  26964. },
  26965. [
  26966. {
  26967. name: "Normal",
  26968. height: math.unit(1.7, "meters")
  26969. },
  26970. {
  26971. name: "Macro",
  26972. height: math.unit(131, "feet"),
  26973. default: true
  26974. },
  26975. {
  26976. name: "Megamacro",
  26977. height: math.unit(91440, "meters")
  26978. },
  26979. {
  26980. name: "Gigamacro",
  26981. height: math.unit(60960000, "meters")
  26982. },
  26983. {
  26984. name: "Teramacro",
  26985. height: math.unit(9144000000, "meters")
  26986. },
  26987. ]
  26988. ))
  26989. characterMakers.push(() => makeCharacter(
  26990. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26991. {
  26992. front: {
  26993. height: math.unit(7 + 1 / 12, "feet"),
  26994. weight: math.unit(250, "lb"),
  26995. name: "Front",
  26996. image: {
  26997. source: "./media/characters/joey/front.svg",
  26998. extra: 1791 / 1537,
  26999. bottom: 28 / 1816
  27000. }
  27001. },
  27002. },
  27003. [
  27004. {
  27005. name: "Micro",
  27006. height: math.unit(3, "inches")
  27007. },
  27008. {
  27009. name: "Normal",
  27010. height: math.unit(7 + 1 / 12, "feet"),
  27011. default: true
  27012. },
  27013. ]
  27014. ))
  27015. characterMakers.push(() => makeCharacter(
  27016. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27017. {
  27018. front: {
  27019. height: math.unit(165, "cm"),
  27020. weight: math.unit(140, "lb"),
  27021. name: "Front",
  27022. image: {
  27023. source: "./media/characters/sam-evans/front.svg",
  27024. extra: 3417 / 3230,
  27025. bottom: 41.3 / 3417
  27026. }
  27027. },
  27028. frontSixTails: {
  27029. height: math.unit(165, "cm"),
  27030. weight: math.unit(140, "lb"),
  27031. name: "Front-six-tails",
  27032. image: {
  27033. source: "./media/characters/sam-evans/front-six-tails.svg",
  27034. extra: 3417 / 3230,
  27035. bottom: 41.3 / 3417
  27036. }
  27037. },
  27038. back: {
  27039. height: math.unit(165, "cm"),
  27040. weight: math.unit(140, "lb"),
  27041. name: "Back",
  27042. image: {
  27043. source: "./media/characters/sam-evans/back.svg",
  27044. extra: 3227 / 3032,
  27045. bottom: 6.8 / 3234
  27046. }
  27047. },
  27048. face: {
  27049. height: math.unit(0.68, "feet"),
  27050. name: "Face",
  27051. image: {
  27052. source: "./media/characters/sam-evans/face.svg"
  27053. }
  27054. },
  27055. },
  27056. [
  27057. {
  27058. name: "Normal",
  27059. height: math.unit(165, "cm"),
  27060. default: true
  27061. },
  27062. {
  27063. name: "Macro",
  27064. height: math.unit(100, "meters")
  27065. },
  27066. {
  27067. name: "Macro+",
  27068. height: math.unit(800, "meters")
  27069. },
  27070. {
  27071. name: "Macro++",
  27072. height: math.unit(3, "km")
  27073. },
  27074. {
  27075. name: "Macro+++",
  27076. height: math.unit(30, "km")
  27077. },
  27078. ]
  27079. ))
  27080. characterMakers.push(() => makeCharacter(
  27081. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27082. {
  27083. front: {
  27084. height: math.unit(10, "feet"),
  27085. weight: math.unit(750, "lb"),
  27086. name: "Front",
  27087. image: {
  27088. source: "./media/characters/juliet-a/front.svg",
  27089. extra: 1766 / 1720,
  27090. bottom: 43 / 1809
  27091. }
  27092. },
  27093. back: {
  27094. height: math.unit(10, "feet"),
  27095. weight: math.unit(750, "lb"),
  27096. name: "Back",
  27097. image: {
  27098. source: "./media/characters/juliet-a/back.svg",
  27099. extra: 1781 / 1734,
  27100. bottom: 35 / 1810,
  27101. }
  27102. },
  27103. },
  27104. [
  27105. {
  27106. name: "Normal",
  27107. height: math.unit(10, "feet"),
  27108. default: true
  27109. },
  27110. {
  27111. name: "Dragon Form",
  27112. height: math.unit(250, "feet")
  27113. },
  27114. {
  27115. name: "Macro",
  27116. height: math.unit(1000, "feet")
  27117. },
  27118. {
  27119. name: "Megamacro",
  27120. height: math.unit(10000, "feet")
  27121. }
  27122. ]
  27123. ))
  27124. characterMakers.push(() => makeCharacter(
  27125. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27126. {
  27127. regular: {
  27128. height: math.unit(7 + 3 / 12, "feet"),
  27129. weight: math.unit(260, "lb"),
  27130. name: "Regular",
  27131. image: {
  27132. source: "./media/characters/wild/regular.svg",
  27133. extra: 97.45 / 92,
  27134. bottom: 6.8 / 104.3
  27135. }
  27136. },
  27137. biggums: {
  27138. height: math.unit(8 + 6 / 12, "feet"),
  27139. weight: math.unit(425, "lb"),
  27140. name: "Biggums",
  27141. image: {
  27142. source: "./media/characters/wild/biggums.svg",
  27143. extra: 97.45 / 92,
  27144. bottom: 7.5 / 132.34
  27145. }
  27146. },
  27147. mawRegular: {
  27148. height: math.unit(1.24, "feet"),
  27149. name: "Maw (Regular)",
  27150. image: {
  27151. source: "./media/characters/wild/maw.svg"
  27152. }
  27153. },
  27154. mawBiggums: {
  27155. height: math.unit(1.47, "feet"),
  27156. name: "Maw (Biggums)",
  27157. image: {
  27158. source: "./media/characters/wild/maw.svg"
  27159. }
  27160. },
  27161. },
  27162. [
  27163. {
  27164. name: "Normal",
  27165. height: math.unit(7 + 3 / 12, "feet"),
  27166. default: true
  27167. },
  27168. ]
  27169. ))
  27170. characterMakers.push(() => makeCharacter(
  27171. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27172. {
  27173. front: {
  27174. height: math.unit(2.5, "meters"),
  27175. weight: math.unit(200, "kg"),
  27176. name: "Front",
  27177. image: {
  27178. source: "./media/characters/vidar/front.svg",
  27179. extra: 2994 / 2795,
  27180. bottom: 56 / 3061
  27181. }
  27182. },
  27183. back: {
  27184. height: math.unit(2.5, "meters"),
  27185. weight: math.unit(200, "kg"),
  27186. name: "Back",
  27187. image: {
  27188. source: "./media/characters/vidar/back.svg",
  27189. extra: 3131 / 2928,
  27190. bottom: 13.5 / 3141.5
  27191. }
  27192. },
  27193. feral: {
  27194. height: math.unit(2.5, "meters"),
  27195. weight: math.unit(2000, "kg"),
  27196. name: "Feral",
  27197. image: {
  27198. source: "./media/characters/vidar/feral.svg",
  27199. extra: 2790 / 1765,
  27200. bottom: 6 / 2796
  27201. }
  27202. },
  27203. },
  27204. [
  27205. {
  27206. name: "Normal",
  27207. height: math.unit(2.5, "meters"),
  27208. default: true
  27209. },
  27210. {
  27211. name: "Macro",
  27212. height: math.unit(100, "meters")
  27213. },
  27214. ]
  27215. ))
  27216. characterMakers.push(() => makeCharacter(
  27217. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27218. {
  27219. front: {
  27220. height: math.unit(5 + 9 / 12, "feet"),
  27221. weight: math.unit(120, "lb"),
  27222. name: "Front",
  27223. image: {
  27224. source: "./media/characters/ash/front.svg",
  27225. extra: 2189 / 1961,
  27226. bottom: 5.2 / 2194
  27227. }
  27228. },
  27229. },
  27230. [
  27231. {
  27232. name: "Normal",
  27233. height: math.unit(5 + 9 / 12, "feet"),
  27234. default: true
  27235. },
  27236. ]
  27237. ))
  27238. characterMakers.push(() => makeCharacter(
  27239. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27240. {
  27241. front: {
  27242. height: math.unit(9, "feet"),
  27243. weight: math.unit(10000, "lb"),
  27244. name: "Front",
  27245. image: {
  27246. source: "./media/characters/gygabite/front.svg",
  27247. bottom: 31.7 / 537.8,
  27248. extra: 505 / 370
  27249. }
  27250. },
  27251. },
  27252. [
  27253. {
  27254. name: "Normal",
  27255. height: math.unit(9, "feet"),
  27256. default: true
  27257. },
  27258. ]
  27259. ))
  27260. characterMakers.push(() => makeCharacter(
  27261. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27262. {
  27263. front: {
  27264. height: math.unit(12, "feet"),
  27265. weight: math.unit(35000, "lb"),
  27266. name: "Front",
  27267. image: {
  27268. source: "./media/characters/p0tat0/front.svg",
  27269. extra: 1065 / 921,
  27270. bottom: 55.7 / 1121.25
  27271. }
  27272. },
  27273. },
  27274. [
  27275. {
  27276. name: "Normal",
  27277. height: math.unit(12, "feet"),
  27278. default: true
  27279. },
  27280. ]
  27281. ))
  27282. characterMakers.push(() => makeCharacter(
  27283. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27284. {
  27285. side: {
  27286. height: math.unit(6.5, "feet"),
  27287. weight: math.unit(800, "lb"),
  27288. name: "Side",
  27289. image: {
  27290. source: "./media/characters/dusk/side.svg",
  27291. extra: 615 / 373,
  27292. bottom: 53 / 664
  27293. }
  27294. },
  27295. sitting: {
  27296. height: math.unit(7, "feet"),
  27297. weight: math.unit(800, "lb"),
  27298. name: "Sitting",
  27299. image: {
  27300. source: "./media/characters/dusk/sitting.svg",
  27301. extra: 753 / 425,
  27302. bottom: 33 / 774
  27303. }
  27304. },
  27305. head: {
  27306. height: math.unit(6.1, "feet"),
  27307. name: "Head",
  27308. image: {
  27309. source: "./media/characters/dusk/head.svg"
  27310. }
  27311. },
  27312. },
  27313. [
  27314. {
  27315. name: "Normal",
  27316. height: math.unit(7, "feet"),
  27317. default: true
  27318. },
  27319. ]
  27320. ))
  27321. characterMakers.push(() => makeCharacter(
  27322. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27323. {
  27324. front: {
  27325. height: math.unit(15, "feet"),
  27326. weight: math.unit(7000, "lb"),
  27327. name: "Front",
  27328. image: {
  27329. source: "./media/characters/jay-direwolf/front.svg",
  27330. extra: 1810 / 1732,
  27331. bottom: 66 / 1892
  27332. }
  27333. },
  27334. },
  27335. [
  27336. {
  27337. name: "Normal",
  27338. height: math.unit(15, "feet"),
  27339. default: true
  27340. },
  27341. ]
  27342. ))
  27343. characterMakers.push(() => makeCharacter(
  27344. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27345. {
  27346. front: {
  27347. height: math.unit(4 + 9 / 12, "feet"),
  27348. weight: math.unit(130, "lb"),
  27349. name: "Front",
  27350. image: {
  27351. source: "./media/characters/anchovie/front.svg",
  27352. extra: 382 / 350,
  27353. bottom: 25 / 409
  27354. }
  27355. },
  27356. back: {
  27357. height: math.unit(4 + 9 / 12, "feet"),
  27358. weight: math.unit(130, "lb"),
  27359. name: "Back",
  27360. image: {
  27361. source: "./media/characters/anchovie/back.svg",
  27362. extra: 385 / 352,
  27363. bottom: 16.6 / 402
  27364. }
  27365. },
  27366. frontDressed: {
  27367. height: math.unit(4 + 9 / 12, "feet"),
  27368. weight: math.unit(130, "lb"),
  27369. name: "Front (Dressed)",
  27370. image: {
  27371. source: "./media/characters/anchovie/front-dressed.svg",
  27372. extra: 382 / 350,
  27373. bottom: 25 / 409
  27374. }
  27375. },
  27376. backDressed: {
  27377. height: math.unit(4 + 9 / 12, "feet"),
  27378. weight: math.unit(130, "lb"),
  27379. name: "Back (Dressed)",
  27380. image: {
  27381. source: "./media/characters/anchovie/back-dressed.svg",
  27382. extra: 385 / 352,
  27383. bottom: 16.6 / 402
  27384. }
  27385. },
  27386. },
  27387. [
  27388. {
  27389. name: "Micro",
  27390. height: math.unit(6.4, "inches")
  27391. },
  27392. {
  27393. name: "Normal",
  27394. height: math.unit(4 + 9 / 12, "feet"),
  27395. default: true
  27396. },
  27397. ]
  27398. ))
  27399. characterMakers.push(() => makeCharacter(
  27400. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27401. {
  27402. front: {
  27403. height: math.unit(2, "meters"),
  27404. weight: math.unit(180, "lb"),
  27405. name: "Front",
  27406. image: {
  27407. source: "./media/characters/acidrenamon/front.svg",
  27408. extra: 987 / 890,
  27409. bottom: 22.8 / 1009
  27410. }
  27411. },
  27412. back: {
  27413. height: math.unit(2, "meters"),
  27414. weight: math.unit(180, "lb"),
  27415. name: "Back",
  27416. image: {
  27417. source: "./media/characters/acidrenamon/back.svg",
  27418. extra: 983 / 891,
  27419. bottom: 8.4 / 992
  27420. }
  27421. },
  27422. head: {
  27423. height: math.unit(1.92, "feet"),
  27424. name: "Head",
  27425. image: {
  27426. source: "./media/characters/acidrenamon/head.svg"
  27427. }
  27428. },
  27429. rump: {
  27430. height: math.unit(1.72, "feet"),
  27431. name: "Rump",
  27432. image: {
  27433. source: "./media/characters/acidrenamon/rump.svg"
  27434. }
  27435. },
  27436. tail: {
  27437. height: math.unit(4.2, "feet"),
  27438. name: "Tail",
  27439. image: {
  27440. source: "./media/characters/acidrenamon/tail.svg"
  27441. }
  27442. },
  27443. },
  27444. [
  27445. {
  27446. name: "Normal",
  27447. height: math.unit(2, "meters"),
  27448. default: true
  27449. },
  27450. {
  27451. name: "Minimacro",
  27452. height: math.unit(7, "meters")
  27453. },
  27454. {
  27455. name: "Macro",
  27456. height: math.unit(200, "meters")
  27457. },
  27458. {
  27459. name: "Gigamacro",
  27460. height: math.unit(0.2, "earths")
  27461. },
  27462. ]
  27463. ))
  27464. characterMakers.push(() => makeCharacter(
  27465. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27466. {
  27467. front: {
  27468. height: math.unit(6, "feet"),
  27469. weight: math.unit(150, "lb"),
  27470. name: "Front",
  27471. image: {
  27472. source: "./media/characters/kenzie-lee/front.svg",
  27473. extra: 1525 / 1465,
  27474. bottom: 45 / 1570
  27475. }
  27476. },
  27477. side: {
  27478. height: math.unit(6, "feet"),
  27479. weight: math.unit(150, "lb"),
  27480. name: "Side",
  27481. image: {
  27482. source: "./media/characters/kenzie-lee/side.svg",
  27483. extra: 5505 / 5383,
  27484. bottom: 60 / 5573
  27485. }
  27486. },
  27487. paw: {
  27488. height: math.unit(0.57, "feet"),
  27489. name: "Paw",
  27490. image: {
  27491. source: "./media/characters/kenzie-lee/paw.svg"
  27492. }
  27493. },
  27494. },
  27495. [
  27496. {
  27497. name: "Normal",
  27498. height: math.unit(152, "feet"),
  27499. default: true
  27500. },
  27501. {
  27502. name: "Megamacro",
  27503. height: math.unit(7, "miles")
  27504. },
  27505. {
  27506. name: "Gigamacro",
  27507. height: math.unit(8000, "miles")
  27508. },
  27509. ]
  27510. ))
  27511. characterMakers.push(() => makeCharacter(
  27512. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27513. {
  27514. side: {
  27515. height: math.unit(6, "feet"),
  27516. weight: math.unit(150, "lb"),
  27517. name: "Side",
  27518. image: {
  27519. source: "./media/characters/withers/side.svg",
  27520. extra: 1830 / 1728,
  27521. bottom: 96 / 1927
  27522. }
  27523. },
  27524. front: {
  27525. height: math.unit(6, "feet"),
  27526. weight: math.unit(150, "lb"),
  27527. name: "Front",
  27528. image: {
  27529. source: "./media/characters/withers/front.svg",
  27530. extra: 1514 / 1438,
  27531. bottom: 118 / 1632
  27532. }
  27533. },
  27534. },
  27535. [
  27536. {
  27537. name: "Macro",
  27538. height: math.unit(168, "feet"),
  27539. default: true
  27540. },
  27541. {
  27542. name: "Megamacro",
  27543. height: math.unit(15, "miles")
  27544. }
  27545. ]
  27546. ))
  27547. characterMakers.push(() => makeCharacter(
  27548. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27549. {
  27550. front: {
  27551. height: math.unit(6 + 7 / 12, "feet"),
  27552. weight: math.unit(250, "lb"),
  27553. name: "Front",
  27554. image: {
  27555. source: "./media/characters/nemoskii/front.svg",
  27556. extra: 2270 / 1734,
  27557. bottom: 86 / 2354
  27558. }
  27559. },
  27560. back: {
  27561. height: math.unit(6 + 7 / 12, "feet"),
  27562. weight: math.unit(250, "lb"),
  27563. name: "Back",
  27564. image: {
  27565. source: "./media/characters/nemoskii/back.svg",
  27566. extra: 1845 / 1788,
  27567. bottom: 10.5 / 1852
  27568. }
  27569. },
  27570. head: {
  27571. height: math.unit(1.31, "feet"),
  27572. name: "Head",
  27573. image: {
  27574. source: "./media/characters/nemoskii/head.svg"
  27575. }
  27576. },
  27577. },
  27578. [
  27579. {
  27580. name: "Micro",
  27581. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27582. },
  27583. {
  27584. name: "Normal",
  27585. height: math.unit(6 + 7 / 12, "feet"),
  27586. default: true
  27587. },
  27588. {
  27589. name: "Macro",
  27590. height: math.unit((6 + 7 / 12) * 150, "feet")
  27591. },
  27592. {
  27593. name: "Macro+",
  27594. height: math.unit((6 + 7 / 12) * 500, "feet")
  27595. },
  27596. {
  27597. name: "Megamacro",
  27598. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27599. },
  27600. ]
  27601. ))
  27602. characterMakers.push(() => makeCharacter(
  27603. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27604. {
  27605. front: {
  27606. height: math.unit(1, "mile"),
  27607. weight: math.unit(265261.9, "lb"),
  27608. name: "Front",
  27609. image: {
  27610. source: "./media/characters/shui/front.svg",
  27611. extra: 1633 / 1564,
  27612. bottom: 91.5 / 1726
  27613. }
  27614. },
  27615. },
  27616. [
  27617. {
  27618. name: "Macro",
  27619. height: math.unit(1, "mile"),
  27620. default: true
  27621. },
  27622. ]
  27623. ))
  27624. characterMakers.push(() => makeCharacter(
  27625. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27626. {
  27627. front: {
  27628. height: math.unit(12 + 6 / 12, "feet"),
  27629. weight: math.unit(1342, "lb"),
  27630. name: "Front",
  27631. image: {
  27632. source: "./media/characters/arokh-takakura/front.svg",
  27633. extra: 1089 / 1043,
  27634. bottom: 77.4 / 1176.7
  27635. }
  27636. },
  27637. back: {
  27638. height: math.unit(12 + 6 / 12, "feet"),
  27639. weight: math.unit(1342, "lb"),
  27640. name: "Back",
  27641. image: {
  27642. source: "./media/characters/arokh-takakura/back.svg",
  27643. extra: 1046 / 1019,
  27644. bottom: 102 / 1150
  27645. }
  27646. },
  27647. },
  27648. [
  27649. {
  27650. name: "Big",
  27651. height: math.unit(12 + 6 / 12, "feet"),
  27652. default: true
  27653. },
  27654. ]
  27655. ))
  27656. characterMakers.push(() => makeCharacter(
  27657. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27658. {
  27659. front: {
  27660. height: math.unit(5 + 6 / 12, "feet"),
  27661. weight: math.unit(150, "lb"),
  27662. name: "Front",
  27663. image: {
  27664. source: "./media/characters/theo/front.svg",
  27665. extra: 1184 / 1131,
  27666. bottom: 7.4 / 1191
  27667. }
  27668. },
  27669. },
  27670. [
  27671. {
  27672. name: "Micro",
  27673. height: math.unit(5, "inches")
  27674. },
  27675. {
  27676. name: "Normal",
  27677. height: math.unit(5 + 6 / 12, "feet"),
  27678. default: true
  27679. },
  27680. ]
  27681. ))
  27682. characterMakers.push(() => makeCharacter(
  27683. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27684. {
  27685. front: {
  27686. height: math.unit(5 + 9 / 12, "feet"),
  27687. weight: math.unit(130, "lb"),
  27688. name: "Front",
  27689. image: {
  27690. source: "./media/characters/cecelia-swift/front.svg",
  27691. extra: 502 / 484,
  27692. bottom: 23 / 523
  27693. }
  27694. },
  27695. back: {
  27696. height: math.unit(5 + 9 / 12, "feet"),
  27697. weight: math.unit(130, "lb"),
  27698. name: "Back",
  27699. image: {
  27700. source: "./media/characters/cecelia-swift/back.svg",
  27701. extra: 499 / 485,
  27702. bottom: 12 / 511
  27703. }
  27704. },
  27705. head: {
  27706. height: math.unit(0.90, "feet"),
  27707. name: "Head",
  27708. image: {
  27709. source: "./media/characters/cecelia-swift/head.svg"
  27710. }
  27711. },
  27712. rump: {
  27713. height: math.unit(1.75, "feet"),
  27714. name: "Rump",
  27715. image: {
  27716. source: "./media/characters/cecelia-swift/rump.svg"
  27717. }
  27718. },
  27719. },
  27720. [
  27721. {
  27722. name: "Normal",
  27723. height: math.unit(5 + 9 / 12, "feet"),
  27724. default: true
  27725. },
  27726. {
  27727. name: "Big",
  27728. height: math.unit(50, "feet")
  27729. },
  27730. {
  27731. name: "Macro",
  27732. height: math.unit(100, "feet")
  27733. },
  27734. {
  27735. name: "Macro+",
  27736. height: math.unit(500, "feet")
  27737. },
  27738. {
  27739. name: "Macro++",
  27740. height: math.unit(1000, "feet")
  27741. },
  27742. ]
  27743. ))
  27744. characterMakers.push(() => makeCharacter(
  27745. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27746. {
  27747. front: {
  27748. height: math.unit(6, "feet"),
  27749. weight: math.unit(150, "lb"),
  27750. name: "Front",
  27751. image: {
  27752. source: "./media/characters/kaunan/front.svg",
  27753. extra: 2890 / 2523,
  27754. bottom: 49 / 2939
  27755. }
  27756. },
  27757. },
  27758. [
  27759. {
  27760. name: "Macro",
  27761. height: math.unit(150, "feet"),
  27762. default: true
  27763. },
  27764. ]
  27765. ))
  27766. characterMakers.push(() => makeCharacter(
  27767. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27768. {
  27769. front: {
  27770. height: math.unit(175, "cm"),
  27771. weight: math.unit(60, "kg"),
  27772. name: "Front",
  27773. image: {
  27774. source: "./media/characters/fei/front.svg",
  27775. extra: 1873/1723,
  27776. bottom: 53/1926
  27777. }
  27778. },
  27779. },
  27780. [
  27781. {
  27782. name: "Mortal",
  27783. height: math.unit(175, "cm")
  27784. },
  27785. {
  27786. name: "Normal",
  27787. height: math.unit(3500, "m"),
  27788. default: true
  27789. },
  27790. {
  27791. name: "Stroll",
  27792. height: math.unit(17.5, "km")
  27793. },
  27794. {
  27795. name: "Showoff",
  27796. height: math.unit(175, "km")
  27797. },
  27798. ]
  27799. ))
  27800. characterMakers.push(() => makeCharacter(
  27801. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27802. {
  27803. front: {
  27804. height: math.unit(7, "feet"),
  27805. weight: math.unit(1000, "kg"),
  27806. name: "Front",
  27807. image: {
  27808. source: "./media/characters/edrax/front.svg",
  27809. extra: 2838 / 2550,
  27810. bottom: 130 / 2968
  27811. }
  27812. },
  27813. },
  27814. [
  27815. {
  27816. name: "Small",
  27817. height: math.unit(7, "feet")
  27818. },
  27819. {
  27820. name: "Normal",
  27821. height: math.unit(1500, "meters")
  27822. },
  27823. {
  27824. name: "Mega",
  27825. height: math.unit(12000000, "km"),
  27826. default: true
  27827. },
  27828. {
  27829. name: "Megamacro",
  27830. height: math.unit(10600000, "lightyears")
  27831. },
  27832. {
  27833. name: "Hypermacro",
  27834. height: math.unit(256, "yottameters")
  27835. },
  27836. ]
  27837. ))
  27838. characterMakers.push(() => makeCharacter(
  27839. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27840. {
  27841. front: {
  27842. height: math.unit(10, "feet"),
  27843. weight: math.unit(750, "lb"),
  27844. name: "Front",
  27845. image: {
  27846. source: "./media/characters/clove/front.svg",
  27847. extra: 2031 / 1860,
  27848. bottom: 47.8 / 2080
  27849. }
  27850. },
  27851. back: {
  27852. height: math.unit(10, "feet"),
  27853. weight: math.unit(750, "lb"),
  27854. name: "Back",
  27855. image: {
  27856. source: "./media/characters/clove/back.svg",
  27857. extra: 2025 / 1859,
  27858. bottom: 46 / 2071
  27859. }
  27860. },
  27861. },
  27862. [
  27863. {
  27864. name: "Normal",
  27865. height: math.unit(10, "feet"),
  27866. default: true
  27867. },
  27868. ]
  27869. ))
  27870. characterMakers.push(() => makeCharacter(
  27871. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27872. {
  27873. front: {
  27874. height: math.unit(4, "feet"),
  27875. weight: math.unit(50, "lb"),
  27876. name: "Front",
  27877. image: {
  27878. source: "./media/characters/alex-rabbit/front.svg",
  27879. extra: 507 / 458,
  27880. bottom: 18.5 / 527
  27881. }
  27882. },
  27883. back: {
  27884. height: math.unit(4, "feet"),
  27885. weight: math.unit(50, "lb"),
  27886. name: "Back",
  27887. image: {
  27888. source: "./media/characters/alex-rabbit/back.svg",
  27889. extra: 502 / 460,
  27890. bottom: 18.9 / 521
  27891. }
  27892. },
  27893. },
  27894. [
  27895. {
  27896. name: "Normal",
  27897. height: math.unit(4, "feet"),
  27898. default: true
  27899. },
  27900. ]
  27901. ))
  27902. characterMakers.push(() => makeCharacter(
  27903. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27904. {
  27905. front: {
  27906. height: math.unit(1 + 3 / 12, "feet"),
  27907. weight: math.unit(80, "lb"),
  27908. name: "Front",
  27909. image: {
  27910. source: "./media/characters/zander-rose/front.svg",
  27911. extra: 916 / 797,
  27912. bottom: 17 / 933
  27913. }
  27914. },
  27915. back: {
  27916. height: math.unit(1 + 3 / 12, "feet"),
  27917. weight: math.unit(80, "lb"),
  27918. name: "Back",
  27919. image: {
  27920. source: "./media/characters/zander-rose/back.svg",
  27921. extra: 903 / 779,
  27922. bottom: 31 / 934
  27923. }
  27924. },
  27925. },
  27926. [
  27927. {
  27928. name: "Normal",
  27929. height: math.unit(1 + 3 / 12, "feet"),
  27930. default: true
  27931. },
  27932. ]
  27933. ))
  27934. characterMakers.push(() => makeCharacter(
  27935. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27936. {
  27937. anthro: {
  27938. height: math.unit(6, "feet"),
  27939. weight: math.unit(150, "lb"),
  27940. name: "Anthro",
  27941. image: {
  27942. source: "./media/characters/razz/anthro.svg",
  27943. extra: 1437 / 1343,
  27944. bottom: 48 / 1485
  27945. }
  27946. },
  27947. feral: {
  27948. height: math.unit(6, "feet"),
  27949. weight: math.unit(150, "lb"),
  27950. name: "Feral",
  27951. image: {
  27952. source: "./media/characters/razz/feral.svg",
  27953. extra: 2569 / 1385,
  27954. bottom: 95 / 2664
  27955. }
  27956. },
  27957. },
  27958. [
  27959. {
  27960. name: "Normal",
  27961. height: math.unit(6, "feet"),
  27962. default: true
  27963. },
  27964. ]
  27965. ))
  27966. characterMakers.push(() => makeCharacter(
  27967. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27968. {
  27969. front: {
  27970. height: math.unit(9 + 4 / 12, "feet"),
  27971. weight: math.unit(500, "lb"),
  27972. name: "Front",
  27973. image: {
  27974. source: "./media/characters/morrigan/front.svg",
  27975. extra: 2707 / 2579,
  27976. bottom: 156 / 2863
  27977. }
  27978. },
  27979. },
  27980. [
  27981. {
  27982. name: "Normal",
  27983. height: math.unit(9 + 4 / 12, "feet"),
  27984. default: true
  27985. },
  27986. ]
  27987. ))
  27988. characterMakers.push(() => makeCharacter(
  27989. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27990. {
  27991. front: {
  27992. height: math.unit(5, "stories"),
  27993. weight: math.unit(4000, "lb"),
  27994. name: "Front",
  27995. image: {
  27996. source: "./media/characters/jenene/front.svg",
  27997. extra: 1780 / 1710,
  27998. bottom: 57 / 1837
  27999. }
  28000. },
  28001. },
  28002. [
  28003. {
  28004. name: "Normal",
  28005. height: math.unit(5, "stories"),
  28006. default: true
  28007. },
  28008. ]
  28009. ))
  28010. characterMakers.push(() => makeCharacter(
  28011. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28012. {
  28013. taurSfw: {
  28014. height: math.unit(10, "meters"),
  28015. weight: math.unit(17500, "kg"),
  28016. name: "Taur",
  28017. image: {
  28018. source: "./media/characters/faey/taur-sfw.svg",
  28019. extra: 1200 / 968,
  28020. bottom: 41 / 1241
  28021. }
  28022. },
  28023. chestmaw: {
  28024. height: math.unit(2.01, "meters"),
  28025. name: "Chestmaw",
  28026. image: {
  28027. source: "./media/characters/faey/chestmaw.svg"
  28028. }
  28029. },
  28030. foot: {
  28031. height: math.unit(2.43, "meters"),
  28032. name: "Foot",
  28033. image: {
  28034. source: "./media/characters/faey/foot.svg"
  28035. }
  28036. },
  28037. jaws: {
  28038. height: math.unit(1.66, "meters"),
  28039. name: "Jaws",
  28040. image: {
  28041. source: "./media/characters/faey/jaws.svg"
  28042. }
  28043. },
  28044. tongues: {
  28045. height: math.unit(2.01, "meters"),
  28046. name: "Tongues",
  28047. image: {
  28048. source: "./media/characters/faey/tongues.svg"
  28049. }
  28050. },
  28051. },
  28052. [
  28053. {
  28054. name: "Small",
  28055. height: math.unit(10, "meters"),
  28056. default: true
  28057. },
  28058. {
  28059. name: "Big",
  28060. height: math.unit(500000, "km")
  28061. },
  28062. ]
  28063. ))
  28064. characterMakers.push(() => makeCharacter(
  28065. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28066. {
  28067. front: {
  28068. height: math.unit(7, "feet"),
  28069. weight: math.unit(275, "lb"),
  28070. name: "Front",
  28071. image: {
  28072. source: "./media/characters/roku/front.svg",
  28073. extra: 903 / 878,
  28074. bottom: 37 / 940
  28075. }
  28076. },
  28077. },
  28078. [
  28079. {
  28080. name: "Normal",
  28081. height: math.unit(7, "feet"),
  28082. default: true
  28083. },
  28084. {
  28085. name: "Macro",
  28086. height: math.unit(500, "feet")
  28087. },
  28088. {
  28089. name: "Megamacro",
  28090. height: math.unit(200, "miles")
  28091. },
  28092. ]
  28093. ))
  28094. characterMakers.push(() => makeCharacter(
  28095. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28096. {
  28097. front: {
  28098. height: math.unit(6 + 2 / 12, "feet"),
  28099. weight: math.unit(150, "lb"),
  28100. name: "Front",
  28101. image: {
  28102. source: "./media/characters/lira/front.svg",
  28103. extra: 1727 / 1605,
  28104. bottom: 26 / 1753
  28105. }
  28106. },
  28107. back: {
  28108. height: math.unit(6 + 2 / 12, "feet"),
  28109. weight: math.unit(150, "lb"),
  28110. name: "Back",
  28111. image: {
  28112. source: "./media/characters/lira/back.svg",
  28113. extra: 1713/1621,
  28114. bottom: 20/1733
  28115. }
  28116. },
  28117. hand: {
  28118. height: math.unit(0.75, "feet"),
  28119. name: "Hand",
  28120. image: {
  28121. source: "./media/characters/lira/hand.svg"
  28122. }
  28123. },
  28124. maw: {
  28125. height: math.unit(0.65, "feet"),
  28126. name: "Maw",
  28127. image: {
  28128. source: "./media/characters/lira/maw.svg"
  28129. }
  28130. },
  28131. pawDigi: {
  28132. height: math.unit(1.6, "feet"),
  28133. name: "Paw Digi",
  28134. image: {
  28135. source: "./media/characters/lira/paw-digi.svg"
  28136. }
  28137. },
  28138. pawPlanti: {
  28139. height: math.unit(1.4, "feet"),
  28140. name: "Paw Planti",
  28141. image: {
  28142. source: "./media/characters/lira/paw-planti.svg"
  28143. }
  28144. },
  28145. },
  28146. [
  28147. {
  28148. name: "Normal",
  28149. height: math.unit(6 + 2 / 12, "feet"),
  28150. default: true
  28151. },
  28152. {
  28153. name: "Macro",
  28154. height: math.unit(100, "feet")
  28155. },
  28156. {
  28157. name: "Macro²",
  28158. height: math.unit(1600, "feet")
  28159. },
  28160. {
  28161. name: "Planetary",
  28162. height: math.unit(20, "earths")
  28163. },
  28164. ]
  28165. ))
  28166. characterMakers.push(() => makeCharacter(
  28167. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28168. {
  28169. front: {
  28170. height: math.unit(6, "feet"),
  28171. weight: math.unit(150, "lb"),
  28172. name: "Front",
  28173. image: {
  28174. source: "./media/characters/hadjet/front.svg",
  28175. extra: 1480 / 1346,
  28176. bottom: 26 / 1506
  28177. }
  28178. },
  28179. frontNsfw: {
  28180. height: math.unit(6, "feet"),
  28181. weight: math.unit(150, "lb"),
  28182. name: "Front (NSFW)",
  28183. image: {
  28184. source: "./media/characters/hadjet/front-nsfw.svg",
  28185. extra: 1440 / 1358,
  28186. bottom: 52 / 1492
  28187. }
  28188. },
  28189. },
  28190. [
  28191. {
  28192. name: "Macro",
  28193. height: math.unit(10, "stories"),
  28194. default: true
  28195. },
  28196. {
  28197. name: "Megamacro",
  28198. height: math.unit(1.5, "miles")
  28199. },
  28200. {
  28201. name: "Megamacro+",
  28202. height: math.unit(5, "miles")
  28203. },
  28204. ]
  28205. ))
  28206. characterMakers.push(() => makeCharacter(
  28207. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28208. {
  28209. side: {
  28210. height: math.unit(106, "feet"),
  28211. weight: math.unit(500, "tonnes"),
  28212. name: "Side",
  28213. image: {
  28214. source: "./media/characters/kodran/side.svg",
  28215. extra: 553 / 480,
  28216. bottom: 33 / 586
  28217. }
  28218. },
  28219. front: {
  28220. height: math.unit(132, "feet"),
  28221. weight: math.unit(500, "tonnes"),
  28222. name: "Front",
  28223. image: {
  28224. source: "./media/characters/kodran/front.svg",
  28225. extra: 667 / 643,
  28226. bottom: 42 / 709
  28227. }
  28228. },
  28229. flying: {
  28230. height: math.unit(350, "feet"),
  28231. weight: math.unit(500, "tonnes"),
  28232. name: "Flying",
  28233. image: {
  28234. source: "./media/characters/kodran/flying.svg"
  28235. }
  28236. },
  28237. foot: {
  28238. height: math.unit(33, "feet"),
  28239. name: "Foot",
  28240. image: {
  28241. source: "./media/characters/kodran/foot.svg"
  28242. }
  28243. },
  28244. footFront: {
  28245. height: math.unit(19, "feet"),
  28246. name: "Foot (Front)",
  28247. image: {
  28248. source: "./media/characters/kodran/foot-front.svg",
  28249. extra: 261 / 261,
  28250. bottom: 91 / 352
  28251. }
  28252. },
  28253. headFront: {
  28254. height: math.unit(53, "feet"),
  28255. name: "Head (Front)",
  28256. image: {
  28257. source: "./media/characters/kodran/head-front.svg"
  28258. }
  28259. },
  28260. headSide: {
  28261. height: math.unit(65, "feet"),
  28262. name: "Head (Side)",
  28263. image: {
  28264. source: "./media/characters/kodran/head-side.svg"
  28265. }
  28266. },
  28267. throat: {
  28268. height: math.unit(79, "feet"),
  28269. name: "Throat",
  28270. image: {
  28271. source: "./media/characters/kodran/throat.svg"
  28272. }
  28273. },
  28274. },
  28275. [
  28276. {
  28277. name: "Large",
  28278. height: math.unit(106, "feet"),
  28279. default: true
  28280. },
  28281. ]
  28282. ))
  28283. characterMakers.push(() => makeCharacter(
  28284. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28285. {
  28286. side: {
  28287. height: math.unit(11, "feet"),
  28288. weight: math.unit(150, "lb"),
  28289. name: "Side",
  28290. image: {
  28291. source: "./media/characters/pyxaron/side.svg",
  28292. extra: 305 / 195,
  28293. bottom: 17 / 322
  28294. }
  28295. },
  28296. },
  28297. [
  28298. {
  28299. name: "Normal",
  28300. height: math.unit(11, "feet"),
  28301. default: true
  28302. },
  28303. ]
  28304. ))
  28305. characterMakers.push(() => makeCharacter(
  28306. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28307. {
  28308. front: {
  28309. height: math.unit(6, "feet"),
  28310. weight: math.unit(150, "lb"),
  28311. name: "Front",
  28312. image: {
  28313. source: "./media/characters/meep/front.svg",
  28314. extra: 88 / 80,
  28315. bottom: 6 / 94
  28316. }
  28317. },
  28318. },
  28319. [
  28320. {
  28321. name: "Fun Sized",
  28322. height: math.unit(2, "inches"),
  28323. default: true
  28324. },
  28325. {
  28326. name: "Friend Sized",
  28327. height: math.unit(8, "inches")
  28328. },
  28329. ]
  28330. ))
  28331. characterMakers.push(() => makeCharacter(
  28332. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28333. {
  28334. front: {
  28335. height: math.unit(15, "feet"),
  28336. weight: math.unit(2500, "lb"),
  28337. name: "Front",
  28338. image: {
  28339. source: "./media/characters/holly-rabbit/front.svg",
  28340. extra: 1433 / 1233,
  28341. bottom: 125 / 1558
  28342. }
  28343. },
  28344. dick: {
  28345. height: math.unit(4.6, "feet"),
  28346. name: "Dick",
  28347. image: {
  28348. source: "./media/characters/holly-rabbit/dick.svg"
  28349. }
  28350. },
  28351. },
  28352. [
  28353. {
  28354. name: "Normal",
  28355. height: math.unit(15, "feet"),
  28356. default: true
  28357. },
  28358. {
  28359. name: "Macro",
  28360. height: math.unit(250, "feet")
  28361. },
  28362. {
  28363. name: "Macro+",
  28364. height: math.unit(2500, "feet")
  28365. },
  28366. ]
  28367. ))
  28368. characterMakers.push(() => makeCharacter(
  28369. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28370. {
  28371. front: {
  28372. height: math.unit(3.02, "meters"),
  28373. weight: math.unit(500, "kg"),
  28374. name: "Front",
  28375. image: {
  28376. source: "./media/characters/drena/front.svg",
  28377. extra: 282 / 243,
  28378. bottom: 8 / 290
  28379. }
  28380. },
  28381. side: {
  28382. height: math.unit(3.02, "meters"),
  28383. weight: math.unit(500, "kg"),
  28384. name: "Side",
  28385. image: {
  28386. source: "./media/characters/drena/side.svg",
  28387. extra: 280 / 245,
  28388. bottom: 10 / 290
  28389. }
  28390. },
  28391. back: {
  28392. height: math.unit(3.02, "meters"),
  28393. weight: math.unit(500, "kg"),
  28394. name: "Back",
  28395. image: {
  28396. source: "./media/characters/drena/back.svg",
  28397. extra: 278 / 243,
  28398. bottom: 2 / 280
  28399. }
  28400. },
  28401. foot: {
  28402. height: math.unit(0.75, "meters"),
  28403. name: "Foot",
  28404. image: {
  28405. source: "./media/characters/drena/foot.svg"
  28406. }
  28407. },
  28408. maw: {
  28409. height: math.unit(0.82, "meters"),
  28410. name: "Maw",
  28411. image: {
  28412. source: "./media/characters/drena/maw.svg"
  28413. }
  28414. },
  28415. rump: {
  28416. height: math.unit(0.93, "meters"),
  28417. name: "Rump",
  28418. image: {
  28419. source: "./media/characters/drena/rump.svg"
  28420. }
  28421. },
  28422. },
  28423. [
  28424. {
  28425. name: "Normal",
  28426. height: math.unit(3.02, "meters"),
  28427. default: true
  28428. },
  28429. ]
  28430. ))
  28431. characterMakers.push(() => makeCharacter(
  28432. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28433. {
  28434. front: {
  28435. height: math.unit(6 + 4 / 12, "feet"),
  28436. weight: math.unit(250, "lb"),
  28437. name: "Front",
  28438. image: {
  28439. source: "./media/characters/remmyzilla/front.svg",
  28440. extra: 4033 / 3588,
  28441. bottom: 123 / 4156
  28442. }
  28443. },
  28444. back: {
  28445. height: math.unit(6 + 4 / 12, "feet"),
  28446. weight: math.unit(250, "lb"),
  28447. name: "Back",
  28448. image: {
  28449. source: "./media/characters/remmyzilla/back.svg",
  28450. extra: 2687 / 2555,
  28451. bottom: 48 / 2735
  28452. }
  28453. },
  28454. paw: {
  28455. height: math.unit(1.73, "feet"),
  28456. name: "Paw",
  28457. image: {
  28458. source: "./media/characters/remmyzilla/paw.svg"
  28459. }
  28460. },
  28461. maw: {
  28462. height: math.unit(1.73, "feet"),
  28463. name: "Maw",
  28464. image: {
  28465. source: "./media/characters/remmyzilla/maw.svg"
  28466. }
  28467. },
  28468. },
  28469. [
  28470. {
  28471. name: "Normal",
  28472. height: math.unit(6 + 4 / 12, "feet")
  28473. },
  28474. {
  28475. name: "Minimacro",
  28476. height: math.unit(12 + 8 / 12, "feet")
  28477. },
  28478. {
  28479. name: "Normal",
  28480. height: math.unit(640, "feet"),
  28481. default: true
  28482. },
  28483. {
  28484. name: "Megamacro",
  28485. height: math.unit(6400, "feet")
  28486. },
  28487. {
  28488. name: "Gigamacro",
  28489. height: math.unit(64000, "miles")
  28490. },
  28491. ]
  28492. ))
  28493. characterMakers.push(() => makeCharacter(
  28494. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28495. {
  28496. front: {
  28497. height: math.unit(2.5, "meters"),
  28498. weight: math.unit(300, "lb"),
  28499. name: "Front",
  28500. image: {
  28501. source: "./media/characters/lawrence/front.svg",
  28502. extra: 357 / 335,
  28503. bottom: 30 / 387
  28504. }
  28505. },
  28506. back: {
  28507. height: math.unit(2.5, "meters"),
  28508. weight: math.unit(300, "lb"),
  28509. name: "Back",
  28510. image: {
  28511. source: "./media/characters/lawrence/back.svg",
  28512. extra: 357 / 338,
  28513. bottom: 16 / 373
  28514. }
  28515. },
  28516. head: {
  28517. height: math.unit(0.9, "meter"),
  28518. name: "Head",
  28519. image: {
  28520. source: "./media/characters/lawrence/head.svg"
  28521. }
  28522. },
  28523. maw: {
  28524. height: math.unit(0.7, "meter"),
  28525. name: "Maw",
  28526. image: {
  28527. source: "./media/characters/lawrence/maw.svg"
  28528. }
  28529. },
  28530. footBottom: {
  28531. height: math.unit(0.5, "meter"),
  28532. name: "Foot (Bottom)",
  28533. image: {
  28534. source: "./media/characters/lawrence/foot-bottom.svg"
  28535. }
  28536. },
  28537. footTop: {
  28538. height: math.unit(0.5, "meter"),
  28539. name: "Foot (Top)",
  28540. image: {
  28541. source: "./media/characters/lawrence/foot-top.svg"
  28542. }
  28543. },
  28544. },
  28545. [
  28546. {
  28547. name: "Normal",
  28548. height: math.unit(2.5, "meters"),
  28549. default: true
  28550. },
  28551. {
  28552. name: "Macro",
  28553. height: math.unit(95, "meters")
  28554. },
  28555. {
  28556. name: "Megamacro",
  28557. height: math.unit(150, "km")
  28558. },
  28559. ]
  28560. ))
  28561. characterMakers.push(() => makeCharacter(
  28562. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28563. {
  28564. front: {
  28565. height: math.unit(4.2, "meters"),
  28566. name: "Front",
  28567. image: {
  28568. source: "./media/characters/sydney/front.svg",
  28569. extra: 1323 / 1277,
  28570. bottom: 111 / 1434
  28571. }
  28572. },
  28573. },
  28574. [
  28575. {
  28576. name: "Normal",
  28577. height: math.unit(4.2, "meters"),
  28578. default: true
  28579. },
  28580. ]
  28581. ))
  28582. characterMakers.push(() => makeCharacter(
  28583. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28584. {
  28585. back: {
  28586. height: math.unit(201, "feet"),
  28587. name: "Back",
  28588. image: {
  28589. source: "./media/characters/jessica/back.svg",
  28590. extra: 273 / 259,
  28591. bottom: 7 / 280
  28592. }
  28593. },
  28594. },
  28595. [
  28596. {
  28597. name: "Normal",
  28598. height: math.unit(201, "feet"),
  28599. default: true
  28600. },
  28601. {
  28602. name: "Megamacro",
  28603. height: math.unit(8, "miles")
  28604. },
  28605. ]
  28606. ))
  28607. characterMakers.push(() => makeCharacter(
  28608. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28609. {
  28610. side: {
  28611. height: math.unit(320, "cm"),
  28612. name: "Side",
  28613. image: {
  28614. source: "./media/characters/victoria/side.svg",
  28615. extra: 778 / 346,
  28616. bottom: 56 / 834
  28617. }
  28618. },
  28619. maw: {
  28620. height: math.unit(5.9, "feet"),
  28621. name: "Maw",
  28622. image: {
  28623. source: "./media/characters/victoria/maw.svg"
  28624. }
  28625. },
  28626. },
  28627. [
  28628. {
  28629. name: "Normal",
  28630. height: math.unit(320, "cm"),
  28631. default: true
  28632. },
  28633. ]
  28634. ))
  28635. characterMakers.push(() => makeCharacter(
  28636. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28637. {
  28638. front: {
  28639. height: math.unit(5 + 6 / 12, "feet"),
  28640. name: "Front",
  28641. image: {
  28642. source: "./media/characters/cat/front.svg",
  28643. extra: 1449/1295,
  28644. bottom: 34/1483
  28645. }
  28646. },
  28647. back: {
  28648. height: math.unit(5 + 6 / 12, "feet"),
  28649. name: "Back",
  28650. image: {
  28651. source: "./media/characters/cat/back.svg",
  28652. extra: 1466/1301,
  28653. bottom: 19/1485
  28654. }
  28655. },
  28656. taur: {
  28657. height: math.unit(7, "feet"),
  28658. name: "Taur",
  28659. image: {
  28660. source: "./media/characters/cat/taur.svg",
  28661. extra: 1389/1233,
  28662. bottom: 83/1472
  28663. }
  28664. },
  28665. lucarioFront: {
  28666. height: math.unit(4, "feet"),
  28667. name: "Lucario (Front)",
  28668. image: {
  28669. source: "./media/characters/cat/lucario-front.svg",
  28670. extra: 1149/1019,
  28671. bottom: 84/1233
  28672. }
  28673. },
  28674. lucarioBack: {
  28675. height: math.unit(4, "feet"),
  28676. name: "Lucario (Back)",
  28677. image: {
  28678. source: "./media/characters/cat/lucario-back.svg",
  28679. extra: 1190/1059,
  28680. bottom: 33/1223
  28681. }
  28682. },
  28683. megaLucario: {
  28684. height: math.unit(4, "feet"),
  28685. name: "Mega Lucario",
  28686. image: {
  28687. source: "./media/characters/cat/mega-lucario.svg",
  28688. extra: 1515 / 1319,
  28689. bottom: 63 / 1578
  28690. }
  28691. },
  28692. nickit: {
  28693. height: math.unit(2, "feet"),
  28694. name: "Nickit",
  28695. image: {
  28696. source: "./media/characters/cat/nickit.svg",
  28697. extra: 1980 / 1585,
  28698. bottom: 102 / 2082
  28699. }
  28700. },
  28701. lopunnyFront: {
  28702. height: math.unit(5, "feet"),
  28703. name: "Lopunny (Front)",
  28704. image: {
  28705. source: "./media/characters/cat/lopunny-front.svg",
  28706. extra: 1782 / 1469,
  28707. bottom: 38 / 1820
  28708. }
  28709. },
  28710. lopunnyBack: {
  28711. height: math.unit(5, "feet"),
  28712. name: "Lopunny (Back)",
  28713. image: {
  28714. source: "./media/characters/cat/lopunny-back.svg",
  28715. extra: 1660 / 1490,
  28716. bottom: 25 / 1685
  28717. }
  28718. },
  28719. },
  28720. [
  28721. {
  28722. name: "Really small",
  28723. height: math.unit(1, "nm")
  28724. },
  28725. {
  28726. name: "Micro",
  28727. height: math.unit(5, "inches")
  28728. },
  28729. {
  28730. name: "Normal",
  28731. height: math.unit(5 + 6 / 12, "feet"),
  28732. default: true
  28733. },
  28734. {
  28735. name: "Macro",
  28736. height: math.unit(50, "feet")
  28737. },
  28738. {
  28739. name: "Macro+",
  28740. height: math.unit(150, "feet")
  28741. },
  28742. {
  28743. name: "Megamacro",
  28744. height: math.unit(100, "miles")
  28745. },
  28746. ]
  28747. ))
  28748. characterMakers.push(() => makeCharacter(
  28749. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28750. {
  28751. front: {
  28752. height: math.unit(63.4, "meters"),
  28753. weight: math.unit(3.28349e+6, "kilograms"),
  28754. name: "Front",
  28755. image: {
  28756. source: "./media/characters/kirina-violet/front.svg",
  28757. extra: 2812 / 2725,
  28758. bottom: 0 / 2812
  28759. }
  28760. },
  28761. back: {
  28762. height: math.unit(63.4, "meters"),
  28763. weight: math.unit(3.28349e+6, "kilograms"),
  28764. name: "Back",
  28765. image: {
  28766. source: "./media/characters/kirina-violet/back.svg",
  28767. extra: 2812 / 2725,
  28768. bottom: 0 / 2812
  28769. }
  28770. },
  28771. mouth: {
  28772. height: math.unit(4.35, "meters"),
  28773. name: "Mouth",
  28774. image: {
  28775. source: "./media/characters/kirina-violet/mouth.svg"
  28776. }
  28777. },
  28778. paw: {
  28779. height: math.unit(5.6, "meters"),
  28780. name: "Paw",
  28781. image: {
  28782. source: "./media/characters/kirina-violet/paw.svg"
  28783. }
  28784. },
  28785. tail: {
  28786. height: math.unit(18, "meters"),
  28787. name: "Tail",
  28788. image: {
  28789. source: "./media/characters/kirina-violet/tail.svg"
  28790. }
  28791. },
  28792. },
  28793. [
  28794. {
  28795. name: "Macro",
  28796. height: math.unit(63.4, "meters"),
  28797. default: true
  28798. },
  28799. ]
  28800. ))
  28801. characterMakers.push(() => makeCharacter(
  28802. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28803. {
  28804. front: {
  28805. height: math.unit(75, "feet"),
  28806. name: "Front",
  28807. image: {
  28808. source: "./media/characters/cat-gigachu/front.svg",
  28809. extra: 1239/1027,
  28810. bottom: 32/1271
  28811. }
  28812. },
  28813. back: {
  28814. height: math.unit(75, "feet"),
  28815. name: "Back",
  28816. image: {
  28817. source: "./media/characters/cat-gigachu/back.svg",
  28818. extra: 1229/1030,
  28819. bottom: 9/1238
  28820. }
  28821. },
  28822. },
  28823. [
  28824. {
  28825. name: "Dynamax",
  28826. height: math.unit(75, "feet"),
  28827. default: true
  28828. },
  28829. ]
  28830. ))
  28831. characterMakers.push(() => makeCharacter(
  28832. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28833. {
  28834. front: {
  28835. height: math.unit(6, "feet"),
  28836. weight: math.unit(150, "lb"),
  28837. name: "Front",
  28838. image: {
  28839. source: "./media/characters/sfaiyan/front.svg",
  28840. extra: 999 / 978,
  28841. bottom: 5 / 1004
  28842. }
  28843. },
  28844. },
  28845. [
  28846. {
  28847. name: "Normal",
  28848. height: math.unit(1.82, "meters")
  28849. },
  28850. {
  28851. name: "Giant",
  28852. height: math.unit(2.27, "km"),
  28853. default: true
  28854. },
  28855. ]
  28856. ))
  28857. characterMakers.push(() => makeCharacter(
  28858. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28859. {
  28860. front: {
  28861. height: math.unit(179, "cm"),
  28862. weight: math.unit(100, "kg"),
  28863. name: "Front",
  28864. image: {
  28865. source: "./media/characters/raunehkeli/front.svg",
  28866. extra: 1934 / 1926,
  28867. bottom: 0 / 1934
  28868. }
  28869. },
  28870. },
  28871. [
  28872. {
  28873. name: "Normal",
  28874. height: math.unit(179, "cm")
  28875. },
  28876. {
  28877. name: "Maximum",
  28878. height: math.unit(575, "meters"),
  28879. default: true
  28880. },
  28881. ]
  28882. ))
  28883. characterMakers.push(() => makeCharacter(
  28884. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28885. {
  28886. front: {
  28887. height: math.unit(6, "feet"),
  28888. weight: math.unit(150, "lb"),
  28889. name: "Front",
  28890. image: {
  28891. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28892. extra: 2625 / 2518,
  28893. bottom: 60 / 2685
  28894. }
  28895. },
  28896. },
  28897. [
  28898. {
  28899. name: "Normal",
  28900. height: math.unit(6 + 2 / 12, "feet")
  28901. },
  28902. {
  28903. name: "Macro",
  28904. height: math.unit(1180, "feet"),
  28905. default: true
  28906. },
  28907. ]
  28908. ))
  28909. characterMakers.push(() => makeCharacter(
  28910. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28911. {
  28912. front: {
  28913. height: math.unit(5 + 6 / 12, "feet"),
  28914. weight: math.unit(108, "lb"),
  28915. name: "Front",
  28916. image: {
  28917. source: "./media/characters/lilith-zott/front.svg",
  28918. extra: 2510 / 2238,
  28919. bottom: 100 / 2610
  28920. }
  28921. },
  28922. frontDressed: {
  28923. height: math.unit(5 + 6 / 12, "feet"),
  28924. weight: math.unit(108, "lb"),
  28925. name: "Front (Dressed)",
  28926. image: {
  28927. source: "./media/characters/lilith-zott/front-dressed.svg",
  28928. extra: 2510 / 2238,
  28929. bottom: 100 / 2610
  28930. }
  28931. },
  28932. },
  28933. [
  28934. {
  28935. name: "Normal",
  28936. height: math.unit(5 + 6 / 12, "feet")
  28937. },
  28938. {
  28939. name: "Macro",
  28940. height: math.unit(1030, "feet"),
  28941. default: true
  28942. },
  28943. ]
  28944. ))
  28945. characterMakers.push(() => makeCharacter(
  28946. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28947. {
  28948. front: {
  28949. height: math.unit(6, "feet"),
  28950. weight: math.unit(150, "lb"),
  28951. name: "Front",
  28952. image: {
  28953. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28954. extra: 2567 / 2435,
  28955. bottom: 39 / 2606
  28956. }
  28957. },
  28958. frontSuper: {
  28959. height: math.unit(6, "feet"),
  28960. name: "Front (Super)",
  28961. image: {
  28962. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28963. extra: 2567 / 2435,
  28964. bottom: 39 / 2606
  28965. }
  28966. },
  28967. },
  28968. [
  28969. {
  28970. name: "Normal",
  28971. height: math.unit(5 + 10 / 12, "feet")
  28972. },
  28973. {
  28974. name: "Macro",
  28975. height: math.unit(1100, "feet"),
  28976. default: true
  28977. },
  28978. ]
  28979. ))
  28980. characterMakers.push(() => makeCharacter(
  28981. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28982. {
  28983. front: {
  28984. height: math.unit(100, "miles"),
  28985. name: "Front",
  28986. image: {
  28987. source: "./media/characters/sona/front.svg",
  28988. extra: 2433 / 2201,
  28989. bottom: 53 / 2486
  28990. }
  28991. },
  28992. foot: {
  28993. height: math.unit(16.1, "miles"),
  28994. name: "Foot",
  28995. image: {
  28996. source: "./media/characters/sona/foot.svg"
  28997. }
  28998. },
  28999. },
  29000. [
  29001. {
  29002. name: "Macro",
  29003. height: math.unit(100, "miles"),
  29004. default: true
  29005. },
  29006. ]
  29007. ))
  29008. characterMakers.push(() => makeCharacter(
  29009. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29010. {
  29011. front: {
  29012. height: math.unit(6, "feet"),
  29013. weight: math.unit(150, "lb"),
  29014. name: "Front",
  29015. image: {
  29016. source: "./media/characters/bailey/front.svg",
  29017. extra: 1778 / 1724,
  29018. bottom: 30 / 1808
  29019. }
  29020. },
  29021. },
  29022. [
  29023. {
  29024. name: "Micro",
  29025. height: math.unit(4, "inches")
  29026. },
  29027. {
  29028. name: "Normal",
  29029. height: math.unit(5 + 5 / 12, "feet"),
  29030. default: true
  29031. },
  29032. {
  29033. name: "Macro",
  29034. height: math.unit(250, "feet")
  29035. },
  29036. {
  29037. name: "Megamacro",
  29038. height: math.unit(100, "miles")
  29039. },
  29040. ]
  29041. ))
  29042. characterMakers.push(() => makeCharacter(
  29043. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29044. {
  29045. front: {
  29046. height: math.unit(5 + 2 / 12, "feet"),
  29047. weight: math.unit(120, "lb"),
  29048. name: "Front",
  29049. image: {
  29050. source: "./media/characters/snaps/front.svg",
  29051. extra: 2370 / 2177,
  29052. bottom: 48 / 2418
  29053. }
  29054. },
  29055. back: {
  29056. height: math.unit(5 + 2 / 12, "feet"),
  29057. weight: math.unit(120, "lb"),
  29058. name: "Back",
  29059. image: {
  29060. source: "./media/characters/snaps/back.svg",
  29061. extra: 2408 / 2258,
  29062. bottom: 15 / 2423
  29063. }
  29064. },
  29065. },
  29066. [
  29067. {
  29068. name: "Micro",
  29069. height: math.unit(9, "inches")
  29070. },
  29071. {
  29072. name: "Normal",
  29073. height: math.unit(5 + 2 / 12, "feet"),
  29074. default: true
  29075. },
  29076. {
  29077. name: "Mini Macro",
  29078. height: math.unit(10, "feet")
  29079. },
  29080. ]
  29081. ))
  29082. characterMakers.push(() => makeCharacter(
  29083. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29084. {
  29085. front: {
  29086. height: math.unit(1.8, "meters"),
  29087. weight: math.unit(85, "kg"),
  29088. name: "Front",
  29089. image: {
  29090. source: "./media/characters/azteck/front.svg",
  29091. extra: 2815 / 2625,
  29092. bottom: 89 / 2904
  29093. }
  29094. },
  29095. back: {
  29096. height: math.unit(1.8, "meters"),
  29097. weight: math.unit(85, "kg"),
  29098. name: "Back",
  29099. image: {
  29100. source: "./media/characters/azteck/back.svg",
  29101. extra: 2856 / 2648,
  29102. bottom: 85 / 2941
  29103. }
  29104. },
  29105. frontDressed: {
  29106. height: math.unit(1.8, "meters"),
  29107. weight: math.unit(85, "kg"),
  29108. name: "Front (Dressed)",
  29109. image: {
  29110. source: "./media/characters/azteck/front-dressed.svg",
  29111. extra: 2147 / 2003,
  29112. bottom: 68 / 2215
  29113. }
  29114. },
  29115. head: {
  29116. height: math.unit(0.47, "meters"),
  29117. weight: math.unit(85, "kg"),
  29118. name: "Head",
  29119. image: {
  29120. source: "./media/characters/azteck/head.svg"
  29121. }
  29122. },
  29123. },
  29124. [
  29125. {
  29126. name: "Bite sized",
  29127. height: math.unit(16, "cm")
  29128. },
  29129. {
  29130. name: "Normal",
  29131. height: math.unit(1.8, "meters"),
  29132. default: true
  29133. },
  29134. ]
  29135. ))
  29136. characterMakers.push(() => makeCharacter(
  29137. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29138. {
  29139. front: {
  29140. height: math.unit(6, "feet"),
  29141. weight: math.unit(150, "lb"),
  29142. name: "Front",
  29143. image: {
  29144. source: "./media/characters/pidge/front.svg",
  29145. extra: 620 / 588,
  29146. bottom: 9 / 629
  29147. }
  29148. },
  29149. back: {
  29150. height: math.unit(6, "feet"),
  29151. weight: math.unit(150, "lb"),
  29152. name: "Back",
  29153. image: {
  29154. source: "./media/characters/pidge/back.svg",
  29155. extra: 620 / 588,
  29156. bottom: 9 / 629
  29157. }
  29158. },
  29159. },
  29160. [
  29161. {
  29162. name: "Macro",
  29163. height: math.unit(1, "mile"),
  29164. default: true
  29165. },
  29166. ]
  29167. ))
  29168. characterMakers.push(() => makeCharacter(
  29169. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29170. {
  29171. front: {
  29172. height: math.unit(6, "feet"),
  29173. weight: math.unit(150, "lb"),
  29174. name: "Front",
  29175. image: {
  29176. source: "./media/characters/en/front.svg",
  29177. extra: 1697 / 1563,
  29178. bottom: 103 / 1800
  29179. }
  29180. },
  29181. back: {
  29182. height: math.unit(6, "feet"),
  29183. weight: math.unit(150, "lb"),
  29184. name: "Back",
  29185. image: {
  29186. source: "./media/characters/en/back.svg",
  29187. extra: 1700 / 1570,
  29188. bottom: 51 / 1751
  29189. }
  29190. },
  29191. frontDressed: {
  29192. height: math.unit(6, "feet"),
  29193. weight: math.unit(150, "lb"),
  29194. name: "Front (Dressed)",
  29195. image: {
  29196. source: "./media/characters/en/front-dressed.svg",
  29197. extra: 1697 / 1563,
  29198. bottom: 103 / 1800
  29199. }
  29200. },
  29201. backDressed: {
  29202. height: math.unit(6, "feet"),
  29203. weight: math.unit(150, "lb"),
  29204. name: "Back (Dressed)",
  29205. image: {
  29206. source: "./media/characters/en/back-dressed.svg",
  29207. extra: 1700 / 1570,
  29208. bottom: 51 / 1751
  29209. }
  29210. },
  29211. },
  29212. [
  29213. {
  29214. name: "Macro",
  29215. height: math.unit(210, "feet"),
  29216. default: true
  29217. },
  29218. ]
  29219. ))
  29220. characterMakers.push(() => makeCharacter(
  29221. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29222. {
  29223. front: {
  29224. height: math.unit(6, "feet"),
  29225. weight: math.unit(150, "lb"),
  29226. name: "Front",
  29227. image: {
  29228. source: "./media/characters/haze-orris/front.svg",
  29229. extra: 3975 / 3525,
  29230. bottom: 137 / 4112
  29231. }
  29232. },
  29233. },
  29234. [
  29235. {
  29236. name: "Micro",
  29237. height: math.unit(150, "mm"),
  29238. default: true
  29239. },
  29240. ]
  29241. ))
  29242. characterMakers.push(() => makeCharacter(
  29243. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29244. {
  29245. front: {
  29246. height: math.unit(6, "feet"),
  29247. weight: math.unit(150, "lb"),
  29248. name: "Front",
  29249. image: {
  29250. source: "./media/characters/casselene-yaro/front.svg",
  29251. extra: 4721 / 4541,
  29252. bottom: 82 / 4803
  29253. }
  29254. },
  29255. back: {
  29256. height: math.unit(6, "feet"),
  29257. weight: math.unit(150, "lb"),
  29258. name: "Back",
  29259. image: {
  29260. source: "./media/characters/casselene-yaro/back.svg",
  29261. extra: 4569 / 4377,
  29262. bottom: 69 / 4638
  29263. }
  29264. },
  29265. frontDressed: {
  29266. height: math.unit(6, "feet"),
  29267. weight: math.unit(150, "lb"),
  29268. name: "Front-dressed",
  29269. image: {
  29270. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29271. extra: 4721 / 4541,
  29272. bottom: 82 / 4803
  29273. }
  29274. },
  29275. },
  29276. [
  29277. {
  29278. name: "Macro",
  29279. height: math.unit(190, "feet"),
  29280. default: true
  29281. },
  29282. ]
  29283. ))
  29284. characterMakers.push(() => makeCharacter(
  29285. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29286. {
  29287. front: {
  29288. height: math.unit(6, "feet"),
  29289. weight: math.unit(150, "lb"),
  29290. name: "Front",
  29291. image: {
  29292. source: "./media/characters/myra-rue-delore/front.svg",
  29293. extra: 1340 / 1308,
  29294. bottom: 67 / 1407
  29295. }
  29296. },
  29297. back: {
  29298. height: math.unit(6, "feet"),
  29299. weight: math.unit(150, "lb"),
  29300. name: "Back",
  29301. image: {
  29302. source: "./media/characters/myra-rue-delore/back.svg",
  29303. extra: 1341 / 1310,
  29304. bottom: 40 / 1381
  29305. }
  29306. },
  29307. frontDressed: {
  29308. height: math.unit(6, "feet"),
  29309. weight: math.unit(150, "lb"),
  29310. name: "Front (Dressed)",
  29311. image: {
  29312. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29313. extra: 1340 / 1308,
  29314. bottom: 67 / 1407
  29315. }
  29316. },
  29317. },
  29318. [
  29319. {
  29320. name: "Macro",
  29321. height: math.unit(150, "feet"),
  29322. default: true
  29323. },
  29324. ]
  29325. ))
  29326. characterMakers.push(() => makeCharacter(
  29327. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29328. {
  29329. front: {
  29330. height: math.unit(10, "feet"),
  29331. weight: math.unit(15015, "lb"),
  29332. name: "Front",
  29333. image: {
  29334. source: "./media/characters/fem!plat/front.svg",
  29335. extra: 2799 / 2604,
  29336. bottom: 149 / 2948
  29337. }
  29338. },
  29339. },
  29340. [
  29341. {
  29342. name: "Normal",
  29343. height: math.unit(10, "feet"),
  29344. default: true
  29345. },
  29346. {
  29347. name: "Macro",
  29348. height: math.unit(100, "feet")
  29349. },
  29350. {
  29351. name: "Megamacro",
  29352. height: math.unit(1000, "feet")
  29353. },
  29354. ]
  29355. ))
  29356. characterMakers.push(() => makeCharacter(
  29357. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29358. {
  29359. front: {
  29360. height: math.unit(15 + 5 / 12, "feet"),
  29361. weight: math.unit(4600, "lb"),
  29362. name: "Front",
  29363. image: {
  29364. source: "./media/characters/neapolitan-ananassa/front.svg",
  29365. extra: 2903 / 2736,
  29366. bottom: 0 / 2903
  29367. }
  29368. },
  29369. side: {
  29370. height: math.unit(15 + 5 / 12, "feet"),
  29371. weight: math.unit(4600, "lb"),
  29372. name: "Side",
  29373. image: {
  29374. source: "./media/characters/neapolitan-ananassa/side.svg",
  29375. extra: 2925 / 2719,
  29376. bottom: 0 / 2925
  29377. }
  29378. },
  29379. back: {
  29380. height: math.unit(15 + 5 / 12, "feet"),
  29381. weight: math.unit(4600, "lb"),
  29382. name: "Back",
  29383. image: {
  29384. source: "./media/characters/neapolitan-ananassa/back.svg",
  29385. extra: 2903 / 2736,
  29386. bottom: 0 / 2903
  29387. }
  29388. },
  29389. },
  29390. [
  29391. {
  29392. name: "Normal",
  29393. height: math.unit(15 + 5 / 12, "feet"),
  29394. default: true
  29395. },
  29396. {
  29397. name: "Post-Millenium",
  29398. height: math.unit(35 + 5 / 12, "feet")
  29399. },
  29400. {
  29401. name: "Post-Era",
  29402. height: math.unit(450 + 5 / 12, "feet")
  29403. },
  29404. ]
  29405. ))
  29406. characterMakers.push(() => makeCharacter(
  29407. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29408. {
  29409. front: {
  29410. height: math.unit(300, "meters"),
  29411. weight: math.unit(125000, "tonnes"),
  29412. name: "Front",
  29413. image: {
  29414. source: "./media/characters/pazuzu/front.svg",
  29415. extra: 877 / 794,
  29416. bottom: 47 / 924
  29417. }
  29418. },
  29419. },
  29420. [
  29421. {
  29422. name: "Macro",
  29423. height: math.unit(300, "meters"),
  29424. default: true
  29425. },
  29426. ]
  29427. ))
  29428. characterMakers.push(() => makeCharacter(
  29429. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29430. {
  29431. side: {
  29432. height: math.unit(10 + 7 / 12, "feet"),
  29433. weight: math.unit(2.5, "tons"),
  29434. name: "Side",
  29435. image: {
  29436. source: "./media/characters/aasha/side.svg",
  29437. extra: 1345 / 1245,
  29438. bottom: 111 / 1456
  29439. }
  29440. },
  29441. back: {
  29442. height: math.unit(10 + 7 / 12, "feet"),
  29443. weight: math.unit(2.5, "tons"),
  29444. name: "Back",
  29445. image: {
  29446. source: "./media/characters/aasha/back.svg",
  29447. extra: 1133 / 1057,
  29448. bottom: 257 / 1390
  29449. }
  29450. },
  29451. },
  29452. [
  29453. {
  29454. name: "Normal",
  29455. height: math.unit(10 + 7 / 12, "feet"),
  29456. default: true
  29457. },
  29458. ]
  29459. ))
  29460. characterMakers.push(() => makeCharacter(
  29461. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29462. {
  29463. front: {
  29464. height: math.unit(6 + 3 / 12, "feet"),
  29465. name: "Front",
  29466. image: {
  29467. source: "./media/characters/nevan/front.svg",
  29468. extra: 704 / 704,
  29469. bottom: 28 / 732
  29470. }
  29471. },
  29472. back: {
  29473. height: math.unit(6 + 3 / 12, "feet"),
  29474. name: "Back",
  29475. image: {
  29476. source: "./media/characters/nevan/back.svg",
  29477. extra: 714 / 714,
  29478. bottom: 21 / 735
  29479. }
  29480. },
  29481. frontFlaccid: {
  29482. height: math.unit(6 + 3 / 12, "feet"),
  29483. name: "Front (Flaccid)",
  29484. image: {
  29485. source: "./media/characters/nevan/front-flaccid.svg",
  29486. extra: 704 / 704,
  29487. bottom: 28 / 732
  29488. }
  29489. },
  29490. frontErect: {
  29491. height: math.unit(6 + 3 / 12, "feet"),
  29492. name: "Front (Erect)",
  29493. image: {
  29494. source: "./media/characters/nevan/front-erect.svg",
  29495. extra: 704 / 704,
  29496. bottom: 28 / 732
  29497. }
  29498. },
  29499. backFlaccid: {
  29500. height: math.unit(6 + 3 / 12, "feet"),
  29501. name: "Back (Flaccid)",
  29502. image: {
  29503. source: "./media/characters/nevan/back-flaccid.svg",
  29504. extra: 714 / 714,
  29505. bottom: 21 / 735
  29506. }
  29507. },
  29508. },
  29509. [
  29510. {
  29511. name: "Normal",
  29512. height: math.unit(6 + 3 / 12, "feet"),
  29513. default: true
  29514. },
  29515. ]
  29516. ))
  29517. characterMakers.push(() => makeCharacter(
  29518. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29519. {
  29520. front: {
  29521. height: math.unit(4, "feet"),
  29522. name: "Front",
  29523. image: {
  29524. source: "./media/characters/arhan/front.svg",
  29525. extra: 3368 / 3133,
  29526. bottom: 0 / 3368
  29527. }
  29528. },
  29529. side: {
  29530. height: math.unit(4, "feet"),
  29531. name: "Side",
  29532. image: {
  29533. source: "./media/characters/arhan/side.svg",
  29534. extra: 3347 / 3105,
  29535. bottom: 0 / 3347
  29536. }
  29537. },
  29538. tongue: {
  29539. height: math.unit(1.42, "feet"),
  29540. name: "Tongue",
  29541. image: {
  29542. source: "./media/characters/arhan/tongue.svg"
  29543. }
  29544. },
  29545. head: {
  29546. height: math.unit(0.85, "feet"),
  29547. name: "Head",
  29548. image: {
  29549. source: "./media/characters/arhan/head.svg"
  29550. }
  29551. },
  29552. },
  29553. [
  29554. {
  29555. name: "Normal",
  29556. height: math.unit(4, "feet"),
  29557. default: true
  29558. },
  29559. ]
  29560. ))
  29561. characterMakers.push(() => makeCharacter(
  29562. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29563. {
  29564. front: {
  29565. height: math.unit(5 + 7.5 / 12, "feet"),
  29566. weight: math.unit(120, "lb"),
  29567. name: "Front",
  29568. image: {
  29569. source: "./media/characters/digi-duncan/front.svg",
  29570. extra: 330 / 326,
  29571. bottom: 16 / 346
  29572. }
  29573. },
  29574. side: {
  29575. height: math.unit(5 + 7.5 / 12, "feet"),
  29576. weight: math.unit(120, "lb"),
  29577. name: "Side",
  29578. image: {
  29579. source: "./media/characters/digi-duncan/side.svg",
  29580. extra: 341 / 337,
  29581. bottom: 1 / 342
  29582. }
  29583. },
  29584. back: {
  29585. height: math.unit(5 + 7.5 / 12, "feet"),
  29586. weight: math.unit(120, "lb"),
  29587. name: "Back",
  29588. image: {
  29589. source: "./media/characters/digi-duncan/back.svg",
  29590. extra: 330 / 326,
  29591. bottom: 12 / 342
  29592. }
  29593. },
  29594. },
  29595. [
  29596. {
  29597. name: "Speck",
  29598. height: math.unit(0.25, "mm")
  29599. },
  29600. {
  29601. name: "Micro",
  29602. height: math.unit(5, "mm")
  29603. },
  29604. {
  29605. name: "Tiny",
  29606. height: math.unit(0.5, "inches"),
  29607. default: true
  29608. },
  29609. {
  29610. name: "Human",
  29611. height: math.unit(5 + 7.5 / 12, "feet")
  29612. },
  29613. {
  29614. name: "Minigiant",
  29615. height: math.unit(8 + 5.25, "feet")
  29616. },
  29617. {
  29618. name: "Giant",
  29619. height: math.unit(2000, "feet")
  29620. },
  29621. {
  29622. name: "Mega",
  29623. height: math.unit(371.1, "miles")
  29624. },
  29625. ]
  29626. ))
  29627. characterMakers.push(() => makeCharacter(
  29628. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29629. {
  29630. front: {
  29631. height: math.unit(2, "meters"),
  29632. weight: math.unit(350, "kg"),
  29633. name: "Front",
  29634. image: {
  29635. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29636. extra: 898 / 838,
  29637. bottom: 9 / 907
  29638. }
  29639. },
  29640. },
  29641. [
  29642. {
  29643. name: "Micro",
  29644. height: math.unit(8, "meters")
  29645. },
  29646. {
  29647. name: "Normal",
  29648. height: math.unit(50, "meters"),
  29649. default: true
  29650. },
  29651. {
  29652. name: "Macro",
  29653. height: math.unit(500, "meters")
  29654. },
  29655. ]
  29656. ))
  29657. characterMakers.push(() => makeCharacter(
  29658. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29659. {
  29660. front: {
  29661. height: math.unit(6 + 6 / 12, "feet"),
  29662. name: "Front",
  29663. image: {
  29664. source: "./media/characters/khardesh/front.svg",
  29665. extra: 888 / 797,
  29666. bottom: 25 / 913
  29667. }
  29668. },
  29669. },
  29670. [
  29671. {
  29672. name: "Normal",
  29673. height: math.unit(6 + 6 / 12, "feet"),
  29674. default: true
  29675. },
  29676. {
  29677. name: "Normal+",
  29678. height: math.unit(4, "meters")
  29679. },
  29680. {
  29681. name: "Macro",
  29682. height: math.unit(50, "meters")
  29683. },
  29684. {
  29685. name: "Macro+",
  29686. height: math.unit(100, "meters")
  29687. },
  29688. {
  29689. name: "Megamacro",
  29690. height: math.unit(20, "km")
  29691. },
  29692. ]
  29693. ))
  29694. characterMakers.push(() => makeCharacter(
  29695. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29696. {
  29697. front: {
  29698. height: math.unit(6, "feet"),
  29699. weight: math.unit(150, "lb"),
  29700. name: "Front",
  29701. image: {
  29702. source: "./media/characters/kosho/front.svg",
  29703. extra: 1847 / 1847,
  29704. bottom: 86 / 1933
  29705. }
  29706. },
  29707. },
  29708. [
  29709. {
  29710. name: "Second-stage micro",
  29711. height: math.unit(0.5, "inches")
  29712. },
  29713. {
  29714. name: "First-stage micro",
  29715. height: math.unit(6, "inches")
  29716. },
  29717. {
  29718. name: "Normal",
  29719. height: math.unit(6, "feet"),
  29720. default: true
  29721. },
  29722. {
  29723. name: "First-stage macro",
  29724. height: math.unit(72, "feet")
  29725. },
  29726. {
  29727. name: "Second-stage macro",
  29728. height: math.unit(864, "feet")
  29729. },
  29730. ]
  29731. ))
  29732. characterMakers.push(() => makeCharacter(
  29733. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29734. {
  29735. normal: {
  29736. height: math.unit(4 + 6 / 12, "feet"),
  29737. name: "Normal",
  29738. image: {
  29739. source: "./media/characters/hydra/normal.svg",
  29740. extra: 2833 / 2634,
  29741. bottom: 68 / 2901
  29742. }
  29743. },
  29744. smol: {
  29745. height: math.unit(0.705, "inches"),
  29746. name: "Smol",
  29747. image: {
  29748. source: "./media/characters/hydra/smol.svg",
  29749. extra: 2715 / 2540,
  29750. bottom: 0 / 2715
  29751. }
  29752. },
  29753. },
  29754. [
  29755. {
  29756. name: "Normal",
  29757. height: math.unit(4 + 6 / 12, "feet"),
  29758. default: true
  29759. }
  29760. ]
  29761. ))
  29762. characterMakers.push(() => makeCharacter(
  29763. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29764. {
  29765. front: {
  29766. height: math.unit(0.6, "cm"),
  29767. name: "Front",
  29768. image: {
  29769. source: "./media/characters/daz/front.svg",
  29770. extra: 1682 / 1164,
  29771. bottom: 42 / 1724
  29772. }
  29773. },
  29774. },
  29775. [
  29776. {
  29777. name: "Normal",
  29778. height: math.unit(0.6, "cm"),
  29779. default: true
  29780. },
  29781. ]
  29782. ))
  29783. characterMakers.push(() => makeCharacter(
  29784. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29785. {
  29786. front: {
  29787. height: math.unit(6, "feet"),
  29788. weight: math.unit(235, "lb"),
  29789. name: "Front",
  29790. image: {
  29791. source: "./media/characters/theo-pangolin/front.svg",
  29792. extra: 1996 / 1969,
  29793. bottom: 115 / 2111
  29794. }
  29795. },
  29796. back: {
  29797. height: math.unit(6, "feet"),
  29798. weight: math.unit(235, "lb"),
  29799. name: "Back",
  29800. image: {
  29801. source: "./media/characters/theo-pangolin/back.svg",
  29802. extra: 1979 / 1979,
  29803. bottom: 40 / 2019
  29804. }
  29805. },
  29806. feral: {
  29807. height: math.unit(2, "feet"),
  29808. weight: math.unit(30, "lb"),
  29809. name: "Feral",
  29810. image: {
  29811. source: "./media/characters/theo-pangolin/feral.svg",
  29812. extra: 803 / 791,
  29813. bottom: 181 / 984
  29814. }
  29815. },
  29816. footFive: {
  29817. height: math.unit(1.43, "feet"),
  29818. name: "Foot (Five Toes)",
  29819. image: {
  29820. source: "./media/characters/theo-pangolin/foot-five.svg"
  29821. }
  29822. },
  29823. footFour: {
  29824. height: math.unit(1.43, "feet"),
  29825. name: "Foot (Four Toes)",
  29826. image: {
  29827. source: "./media/characters/theo-pangolin/foot-four.svg"
  29828. }
  29829. },
  29830. handFour: {
  29831. height: math.unit(0.81, "feet"),
  29832. name: "Hand (Four Fingers)",
  29833. image: {
  29834. source: "./media/characters/theo-pangolin/hand-four.svg"
  29835. }
  29836. },
  29837. handThree: {
  29838. height: math.unit(0.81, "feet"),
  29839. name: "Hand (Three Fingers)",
  29840. image: {
  29841. source: "./media/characters/theo-pangolin/hand-three.svg"
  29842. }
  29843. },
  29844. headFront: {
  29845. height: math.unit(1.37, "feet"),
  29846. name: "Head (Front)",
  29847. image: {
  29848. source: "./media/characters/theo-pangolin/head-front.svg"
  29849. }
  29850. },
  29851. headSide: {
  29852. height: math.unit(1.43, "feet"),
  29853. name: "Head (Side)",
  29854. image: {
  29855. source: "./media/characters/theo-pangolin/head-side.svg"
  29856. }
  29857. },
  29858. tongue: {
  29859. height: math.unit(2.29, "feet"),
  29860. name: "Tongue",
  29861. image: {
  29862. source: "./media/characters/theo-pangolin/tongue.svg"
  29863. }
  29864. },
  29865. },
  29866. [
  29867. {
  29868. name: "Normal",
  29869. height: math.unit(6, "feet")
  29870. },
  29871. {
  29872. name: "Macro",
  29873. height: math.unit(400, "feet"),
  29874. default: true
  29875. },
  29876. ]
  29877. ))
  29878. characterMakers.push(() => makeCharacter(
  29879. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29880. {
  29881. front: {
  29882. height: math.unit(6, "inches"),
  29883. weight: math.unit(0.036, "kg"),
  29884. name: "Front",
  29885. image: {
  29886. source: "./media/characters/renée/front.svg",
  29887. extra: 900 / 886,
  29888. bottom: 8 / 908
  29889. }
  29890. },
  29891. },
  29892. [
  29893. {
  29894. name: "Nano",
  29895. height: math.unit(1, "nm")
  29896. },
  29897. {
  29898. name: "Micro",
  29899. height: math.unit(1, "mm")
  29900. },
  29901. {
  29902. name: "Normal",
  29903. height: math.unit(6, "inches")
  29904. },
  29905. {
  29906. name: "Macro",
  29907. height: math.unit(2000, "feet"),
  29908. default: true
  29909. },
  29910. {
  29911. name: "Megamacro",
  29912. height: math.unit(2, "km")
  29913. },
  29914. {
  29915. name: "Gigamacro",
  29916. height: math.unit(2000, "km")
  29917. },
  29918. {
  29919. name: "Teramacro",
  29920. height: math.unit(250000, "km")
  29921. },
  29922. ]
  29923. ))
  29924. characterMakers.push(() => makeCharacter(
  29925. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29926. {
  29927. front: {
  29928. height: math.unit(4, "meters"),
  29929. weight: math.unit(150, "kg"),
  29930. name: "Front",
  29931. image: {
  29932. source: "./media/characters/caledvwlch/front.svg",
  29933. extra: 1760 / 1551,
  29934. bottom: 28 / 1788
  29935. }
  29936. },
  29937. side: {
  29938. height: math.unit(4, "meters"),
  29939. weight: math.unit(150, "kg"),
  29940. name: "Side",
  29941. image: {
  29942. source: "./media/characters/caledvwlch/side.svg",
  29943. extra: 1605 / 1536,
  29944. bottom: 31 / 1636
  29945. }
  29946. },
  29947. back: {
  29948. height: math.unit(4, "meters"),
  29949. weight: math.unit(150, "kg"),
  29950. name: "Back",
  29951. image: {
  29952. source: "./media/characters/caledvwlch/back.svg",
  29953. extra: 1635 / 1565,
  29954. bottom: 27 / 1662
  29955. }
  29956. },
  29957. },
  29958. [
  29959. {
  29960. name: "\"Incognito\"",
  29961. height: math.unit(4, "meters")
  29962. },
  29963. {
  29964. name: "Small rampage",
  29965. height: math.unit(600, "meters")
  29966. },
  29967. {
  29968. name: "Mega",
  29969. height: math.unit(30, "km")
  29970. },
  29971. {
  29972. name: "Home-size",
  29973. height: math.unit(50, "km"),
  29974. default: true
  29975. },
  29976. {
  29977. name: "Giga",
  29978. height: math.unit(300, "km")
  29979. },
  29980. {
  29981. name: "Lounging",
  29982. height: math.unit(11000, "km")
  29983. },
  29984. {
  29985. name: "Planet snacking",
  29986. height: math.unit(2000000, "km")
  29987. },
  29988. ]
  29989. ))
  29990. characterMakers.push(() => makeCharacter(
  29991. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29992. {
  29993. front: {
  29994. height: math.unit(6, "feet"),
  29995. weight: math.unit(215, "lb"),
  29996. name: "Front",
  29997. image: {
  29998. source: "./media/characters/sapphire-svell/front.svg",
  29999. extra: 495 / 455,
  30000. bottom: 20 / 515
  30001. }
  30002. },
  30003. back: {
  30004. height: math.unit(6, "feet"),
  30005. weight: math.unit(216, "lb"),
  30006. name: "Back",
  30007. image: {
  30008. source: "./media/characters/sapphire-svell/back.svg",
  30009. extra: 497 / 477,
  30010. bottom: 7 / 504
  30011. }
  30012. },
  30013. maw: {
  30014. height: math.unit(1.57, "feet"),
  30015. name: "Maw",
  30016. image: {
  30017. source: "./media/characters/sapphire-svell/maw.svg"
  30018. }
  30019. },
  30020. foot: {
  30021. height: math.unit(1.07, "feet"),
  30022. name: "Foot",
  30023. image: {
  30024. source: "./media/characters/sapphire-svell/foot.svg"
  30025. }
  30026. },
  30027. toering: {
  30028. height: math.unit(1.7, "inch"),
  30029. name: "Toering",
  30030. image: {
  30031. source: "./media/characters/sapphire-svell/toering.svg"
  30032. }
  30033. },
  30034. },
  30035. [
  30036. {
  30037. name: "Normal",
  30038. height: math.unit(300, "feet"),
  30039. default: true
  30040. },
  30041. {
  30042. name: "Augmented",
  30043. height: math.unit(1250, "feet")
  30044. },
  30045. {
  30046. name: "Unleashed",
  30047. height: math.unit(3000, "feet")
  30048. },
  30049. ]
  30050. ))
  30051. characterMakers.push(() => makeCharacter(
  30052. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30053. {
  30054. side: {
  30055. height: math.unit(2 + 3 / 12, "feet"),
  30056. weight: math.unit(110, "lb"),
  30057. name: "Side",
  30058. image: {
  30059. source: "./media/characters/glitch-flux/side.svg",
  30060. extra: 997 / 805,
  30061. bottom: 20 / 1017
  30062. }
  30063. },
  30064. },
  30065. [
  30066. {
  30067. name: "Normal",
  30068. height: math.unit(2 + 3 / 12, "feet"),
  30069. default: true
  30070. },
  30071. ]
  30072. ))
  30073. characterMakers.push(() => makeCharacter(
  30074. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30075. {
  30076. front: {
  30077. height: math.unit(4, "meters"),
  30078. name: "Front",
  30079. image: {
  30080. source: "./media/characters/mid/front.svg",
  30081. extra: 507 / 476,
  30082. bottom: 17 / 524
  30083. }
  30084. },
  30085. back: {
  30086. height: math.unit(4, "meters"),
  30087. name: "Back",
  30088. image: {
  30089. source: "./media/characters/mid/back.svg",
  30090. extra: 519 / 487,
  30091. bottom: 7 / 526
  30092. }
  30093. },
  30094. stuck: {
  30095. height: math.unit(2.2, "meters"),
  30096. name: "Stuck",
  30097. image: {
  30098. source: "./media/characters/mid/stuck.svg",
  30099. extra: 1951 / 1869,
  30100. bottom: 88 / 2039
  30101. }
  30102. }
  30103. },
  30104. [
  30105. {
  30106. name: "Normal",
  30107. height: math.unit(4, "meters"),
  30108. default: true
  30109. },
  30110. {
  30111. name: "Big",
  30112. height: math.unit(10, "meters")
  30113. },
  30114. {
  30115. name: "Macro",
  30116. height: math.unit(800, "meters")
  30117. },
  30118. {
  30119. name: "Megamacro",
  30120. height: math.unit(100, "km")
  30121. },
  30122. {
  30123. name: "Overgrown",
  30124. height: math.unit(1, "parsec")
  30125. },
  30126. ]
  30127. ))
  30128. characterMakers.push(() => makeCharacter(
  30129. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30130. {
  30131. front: {
  30132. height: math.unit(2.5, "meters"),
  30133. weight: math.unit(225, "kg"),
  30134. name: "Front",
  30135. image: {
  30136. source: "./media/characters/iris/front.svg",
  30137. extra: 3348 / 3251,
  30138. bottom: 205 / 3553
  30139. }
  30140. },
  30141. maw: {
  30142. height: math.unit(0.56, "meter"),
  30143. name: "Maw",
  30144. image: {
  30145. source: "./media/characters/iris/maw.svg"
  30146. }
  30147. },
  30148. },
  30149. [
  30150. {
  30151. name: "Mewter cat",
  30152. height: math.unit(1.2, "meters")
  30153. },
  30154. {
  30155. name: "Minimacro",
  30156. height: math.unit(2.5, "meters"),
  30157. default: true
  30158. },
  30159. {
  30160. name: "Macro",
  30161. height: math.unit(180, "meters")
  30162. },
  30163. {
  30164. name: "Megamacro",
  30165. height: math.unit(2746, "meters")
  30166. },
  30167. ]
  30168. ))
  30169. characterMakers.push(() => makeCharacter(
  30170. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30171. {
  30172. front: {
  30173. height: math.unit(6, "feet"),
  30174. weight: math.unit(135, "lb"),
  30175. name: "Front",
  30176. image: {
  30177. source: "./media/characters/axel/front.svg",
  30178. extra: 908 / 908,
  30179. bottom: 58 / 966
  30180. }
  30181. },
  30182. side: {
  30183. height: math.unit(6, "feet"),
  30184. weight: math.unit(135, "lb"),
  30185. name: "Side",
  30186. image: {
  30187. source: "./media/characters/axel/side.svg",
  30188. extra: 958 / 958,
  30189. bottom: 11 / 969
  30190. }
  30191. },
  30192. back: {
  30193. height: math.unit(6, "feet"),
  30194. weight: math.unit(135, "lb"),
  30195. name: "Back",
  30196. image: {
  30197. source: "./media/characters/axel/back.svg",
  30198. extra: 887 / 887,
  30199. bottom: 34 / 921
  30200. }
  30201. },
  30202. head: {
  30203. height: math.unit(1.07, "feet"),
  30204. name: "Head",
  30205. image: {
  30206. source: "./media/characters/axel/head.svg"
  30207. }
  30208. },
  30209. beak: {
  30210. height: math.unit(1.4, "feet"),
  30211. name: "Beak",
  30212. image: {
  30213. source: "./media/characters/axel/beak.svg"
  30214. }
  30215. },
  30216. beakSide: {
  30217. height: math.unit(1.4, "feet"),
  30218. name: "Beak Side",
  30219. image: {
  30220. source: "./media/characters/axel/beak-side.svg"
  30221. }
  30222. },
  30223. sheath: {
  30224. height: math.unit(0.5, "feet"),
  30225. name: "Sheath",
  30226. image: {
  30227. source: "./media/characters/axel/sheath.svg"
  30228. }
  30229. },
  30230. dick: {
  30231. height: math.unit(0.98, "feet"),
  30232. name: "Dick",
  30233. image: {
  30234. source: "./media/characters/axel/dick.svg"
  30235. }
  30236. },
  30237. },
  30238. [
  30239. {
  30240. name: "Macro",
  30241. height: math.unit(68, "meters"),
  30242. default: true
  30243. },
  30244. ]
  30245. ))
  30246. characterMakers.push(() => makeCharacter(
  30247. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30248. {
  30249. front: {
  30250. height: math.unit(3.5, "meters"),
  30251. weight: math.unit(1200, "kg"),
  30252. name: "Front",
  30253. image: {
  30254. source: "./media/characters/joanna/front.svg",
  30255. extra: 1596 / 1488,
  30256. bottom: 29 / 1625
  30257. }
  30258. },
  30259. back: {
  30260. height: math.unit(3.5, "meters"),
  30261. weight: math.unit(1200, "kg"),
  30262. name: "Back",
  30263. image: {
  30264. source: "./media/characters/joanna/back.svg",
  30265. extra: 1594 / 1495,
  30266. bottom: 26 / 1620
  30267. }
  30268. },
  30269. frontShorts: {
  30270. height: math.unit(3.5, "meters"),
  30271. weight: math.unit(1200, "kg"),
  30272. name: "Front (Shorts)",
  30273. image: {
  30274. source: "./media/characters/joanna/front-shorts.svg",
  30275. extra: 1596 / 1488,
  30276. bottom: 29 / 1625
  30277. }
  30278. },
  30279. frontBiker: {
  30280. height: math.unit(3.5, "meters"),
  30281. weight: math.unit(1200, "kg"),
  30282. name: "Front (Biker)",
  30283. image: {
  30284. source: "./media/characters/joanna/front-biker.svg",
  30285. extra: 1596 / 1488,
  30286. bottom: 29 / 1625
  30287. }
  30288. },
  30289. backBiker: {
  30290. height: math.unit(3.5, "meters"),
  30291. weight: math.unit(1200, "kg"),
  30292. name: "Back (Biker)",
  30293. image: {
  30294. source: "./media/characters/joanna/back-biker.svg",
  30295. extra: 1594 / 1495,
  30296. bottom: 88 / 1682
  30297. }
  30298. },
  30299. bikeLeft: {
  30300. height: math.unit(2.4, "meters"),
  30301. weight: math.unit(1600, "kg"),
  30302. name: "Bike (Left)",
  30303. image: {
  30304. source: "./media/characters/joanna/bike-left.svg",
  30305. extra: 720 / 720,
  30306. bottom: 8 / 728
  30307. }
  30308. },
  30309. bikeRight: {
  30310. height: math.unit(2.4, "meters"),
  30311. weight: math.unit(1600, "kg"),
  30312. name: "Bike (Right)",
  30313. image: {
  30314. source: "./media/characters/joanna/bike-right.svg",
  30315. extra: 720 / 720,
  30316. bottom: 8 / 728
  30317. }
  30318. },
  30319. },
  30320. [
  30321. {
  30322. name: "Incognito",
  30323. height: math.unit(3.5, "meters")
  30324. },
  30325. {
  30326. name: "Casual Big",
  30327. height: math.unit(200, "meters")
  30328. },
  30329. {
  30330. name: "Macro",
  30331. height: math.unit(600, "meters")
  30332. },
  30333. {
  30334. name: "Original",
  30335. height: math.unit(20, "km"),
  30336. default: true
  30337. },
  30338. {
  30339. name: "Giga",
  30340. height: math.unit(400, "km")
  30341. },
  30342. {
  30343. name: "Lounging",
  30344. height: math.unit(1500, "km")
  30345. },
  30346. {
  30347. name: "Planetary",
  30348. height: math.unit(200000, "km")
  30349. },
  30350. ]
  30351. ))
  30352. characterMakers.push(() => makeCharacter(
  30353. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30354. {
  30355. front: {
  30356. height: math.unit(6, "feet"),
  30357. weight: math.unit(150, "lb"),
  30358. name: "Front",
  30359. image: {
  30360. source: "./media/characters/hugo-sigil/front.svg",
  30361. extra: 522 / 500,
  30362. bottom: 2 / 524
  30363. }
  30364. },
  30365. back: {
  30366. height: math.unit(6, "feet"),
  30367. weight: math.unit(150, "lb"),
  30368. name: "Back",
  30369. image: {
  30370. source: "./media/characters/hugo-sigil/back.svg",
  30371. extra: 519 / 495,
  30372. bottom: 5 / 524
  30373. }
  30374. },
  30375. maw: {
  30376. height: math.unit(1.4, "feet"),
  30377. weight: math.unit(150, "lb"),
  30378. name: "Maw",
  30379. image: {
  30380. source: "./media/characters/hugo-sigil/maw.svg"
  30381. }
  30382. },
  30383. feet: {
  30384. height: math.unit(1.56, "feet"),
  30385. weight: math.unit(150, "lb"),
  30386. name: "Feet",
  30387. image: {
  30388. source: "./media/characters/hugo-sigil/feet.svg",
  30389. extra: 177 / 177,
  30390. bottom: 12 / 189
  30391. }
  30392. },
  30393. },
  30394. [
  30395. {
  30396. name: "Normal",
  30397. height: math.unit(6, "feet")
  30398. },
  30399. {
  30400. name: "Macro",
  30401. height: math.unit(200, "feet"),
  30402. default: true
  30403. },
  30404. ]
  30405. ))
  30406. characterMakers.push(() => makeCharacter(
  30407. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30408. {
  30409. front: {
  30410. height: math.unit(6, "feet"),
  30411. weight: math.unit(150, "lb"),
  30412. name: "Front",
  30413. image: {
  30414. source: "./media/characters/peri/front.svg",
  30415. extra: 2354 / 2233,
  30416. bottom: 49 / 2403
  30417. }
  30418. },
  30419. },
  30420. [
  30421. {
  30422. name: "Really Small",
  30423. height: math.unit(1, "nm")
  30424. },
  30425. {
  30426. name: "Micro",
  30427. height: math.unit(4, "inches")
  30428. },
  30429. {
  30430. name: "Normal",
  30431. height: math.unit(7, "inches"),
  30432. default: true
  30433. },
  30434. {
  30435. name: "Macro",
  30436. height: math.unit(400, "feet")
  30437. },
  30438. {
  30439. name: "Megamacro",
  30440. height: math.unit(100, "miles")
  30441. },
  30442. ]
  30443. ))
  30444. characterMakers.push(() => makeCharacter(
  30445. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30446. {
  30447. frontSlim: {
  30448. height: math.unit(7, "feet"),
  30449. name: "Front (Slim)",
  30450. image: {
  30451. source: "./media/characters/issilora/front-slim.svg",
  30452. extra: 529 / 449,
  30453. bottom: 53 / 582
  30454. }
  30455. },
  30456. sideSlim: {
  30457. height: math.unit(7, "feet"),
  30458. name: "Side (Slim)",
  30459. image: {
  30460. source: "./media/characters/issilora/side-slim.svg",
  30461. extra: 570 / 480,
  30462. bottom: 30 / 600
  30463. }
  30464. },
  30465. backSlim: {
  30466. height: math.unit(7, "feet"),
  30467. name: "Back (Slim)",
  30468. image: {
  30469. source: "./media/characters/issilora/back-slim.svg",
  30470. extra: 537 / 455,
  30471. bottom: 46 / 583
  30472. }
  30473. },
  30474. frontBuff: {
  30475. height: math.unit(7, "feet"),
  30476. name: "Front (Buff)",
  30477. image: {
  30478. source: "./media/characters/issilora/front-buff.svg",
  30479. extra: 2310 / 2035,
  30480. bottom: 335 / 2645
  30481. }
  30482. },
  30483. head: {
  30484. height: math.unit(1.94, "feet"),
  30485. name: "Head",
  30486. image: {
  30487. source: "./media/characters/issilora/head.svg"
  30488. }
  30489. },
  30490. },
  30491. [
  30492. {
  30493. name: "Minimum",
  30494. height: math.unit(7, "feet")
  30495. },
  30496. {
  30497. name: "Comfortable",
  30498. height: math.unit(17, "feet")
  30499. },
  30500. {
  30501. name: "Fun Size",
  30502. height: math.unit(47, "feet")
  30503. },
  30504. {
  30505. name: "Natural Macro",
  30506. height: math.unit(137, "feet"),
  30507. default: true
  30508. },
  30509. {
  30510. name: "Maximum Kaiju",
  30511. height: math.unit(397, "feet")
  30512. },
  30513. ]
  30514. ))
  30515. characterMakers.push(() => makeCharacter(
  30516. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30517. {
  30518. front: {
  30519. height: math.unit(50 + 9/12, "feet"),
  30520. weight: math.unit(32.8, "tons"),
  30521. name: "Front",
  30522. image: {
  30523. source: "./media/characters/irb'iiritaahn/front.svg",
  30524. extra: 1878/1826,
  30525. bottom: 326/2204
  30526. }
  30527. },
  30528. back: {
  30529. height: math.unit(50 + 9/12, "feet"),
  30530. weight: math.unit(32.8, "tons"),
  30531. name: "Back",
  30532. image: {
  30533. source: "./media/characters/irb'iiritaahn/back.svg",
  30534. extra: 2052/2018,
  30535. bottom: 152/2204
  30536. }
  30537. },
  30538. head: {
  30539. height: math.unit(12.86, "feet"),
  30540. name: "Head",
  30541. image: {
  30542. source: "./media/characters/irb'iiritaahn/head.svg"
  30543. }
  30544. },
  30545. maw: {
  30546. height: math.unit(9.66, "feet"),
  30547. name: "Maw",
  30548. image: {
  30549. source: "./media/characters/irb'iiritaahn/maw.svg"
  30550. }
  30551. },
  30552. frontDick: {
  30553. height: math.unit(8.78461, "feet"),
  30554. name: "Front Dick",
  30555. image: {
  30556. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30557. }
  30558. },
  30559. rearDick: {
  30560. height: math.unit(8.78461, "feet"),
  30561. name: "Rear Dick",
  30562. image: {
  30563. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30564. }
  30565. },
  30566. rearDickUnfolded: {
  30567. height: math.unit(8.78, "feet"),
  30568. name: "Rear Dick (Unfolded)",
  30569. image: {
  30570. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30571. }
  30572. },
  30573. wings: {
  30574. height: math.unit(43, "feet"),
  30575. name: "Wings",
  30576. image: {
  30577. source: "./media/characters/irb'iiritaahn/wings.svg"
  30578. }
  30579. },
  30580. },
  30581. [
  30582. {
  30583. name: "Macro",
  30584. height: math.unit(50 + 9/12, "feet"),
  30585. default: true
  30586. },
  30587. ]
  30588. ))
  30589. characterMakers.push(() => makeCharacter(
  30590. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30591. {
  30592. front: {
  30593. height: math.unit(205, "cm"),
  30594. weight: math.unit(102, "kg"),
  30595. name: "Front",
  30596. image: {
  30597. source: "./media/characters/irbisgreif/front.svg",
  30598. extra: 785/706,
  30599. bottom: 13/798
  30600. }
  30601. },
  30602. back: {
  30603. height: math.unit(205, "cm"),
  30604. weight: math.unit(102, "kg"),
  30605. name: "Back",
  30606. image: {
  30607. source: "./media/characters/irbisgreif/back.svg",
  30608. extra: 713/701,
  30609. bottom: 26/739
  30610. }
  30611. },
  30612. frontDressed: {
  30613. height: math.unit(216, "cm"),
  30614. weight: math.unit(102, "kg"),
  30615. name: "Front-dressed",
  30616. image: {
  30617. source: "./media/characters/irbisgreif/front-dressed.svg",
  30618. extra: 902/776,
  30619. bottom: 14/916
  30620. }
  30621. },
  30622. sideDressed: {
  30623. height: math.unit(195, "cm"),
  30624. weight: math.unit(102, "kg"),
  30625. name: "Side-dressed",
  30626. image: {
  30627. source: "./media/characters/irbisgreif/side-dressed.svg",
  30628. extra: 788/688,
  30629. bottom: 21/809
  30630. }
  30631. },
  30632. backDressed: {
  30633. height: math.unit(216, "cm"),
  30634. weight: math.unit(102, "kg"),
  30635. name: "Back-dressed",
  30636. image: {
  30637. source: "./media/characters/irbisgreif/back-dressed.svg",
  30638. extra: 901/783,
  30639. bottom: 10/911
  30640. }
  30641. },
  30642. dick: {
  30643. height: math.unit(0.49, "feet"),
  30644. name: "Dick",
  30645. image: {
  30646. source: "./media/characters/irbisgreif/dick.svg"
  30647. }
  30648. },
  30649. wingTop: {
  30650. height: math.unit(1.93 , "feet"),
  30651. name: "Wing-top",
  30652. image: {
  30653. source: "./media/characters/irbisgreif/wing-top.svg"
  30654. }
  30655. },
  30656. wingBottom: {
  30657. height: math.unit(1.93 , "feet"),
  30658. name: "Wing-bottom",
  30659. image: {
  30660. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30661. }
  30662. },
  30663. },
  30664. [
  30665. {
  30666. name: "Normal",
  30667. height: math.unit(216, "cm"),
  30668. default: true
  30669. },
  30670. ]
  30671. ))
  30672. characterMakers.push(() => makeCharacter(
  30673. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30674. {
  30675. front: {
  30676. height: math.unit(6, "feet"),
  30677. weight: math.unit(150, "lb"),
  30678. name: "Front",
  30679. image: {
  30680. source: "./media/characters/pride/front.svg",
  30681. extra: 1299/1230,
  30682. bottom: 18/1317
  30683. }
  30684. },
  30685. },
  30686. [
  30687. {
  30688. name: "Normal",
  30689. height: math.unit(7, "feet")
  30690. },
  30691. {
  30692. name: "Mini-macro",
  30693. height: math.unit(11, "feet")
  30694. },
  30695. {
  30696. name: "Macro",
  30697. height: math.unit(15, "meters"),
  30698. default: true
  30699. },
  30700. {
  30701. name: "Macro+",
  30702. height: math.unit(40, "meters")
  30703. },
  30704. ]
  30705. ))
  30706. characterMakers.push(() => makeCharacter(
  30707. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30708. {
  30709. front: {
  30710. height: math.unit(4 + 2 / 12, "feet"),
  30711. weight: math.unit(95, "lb"),
  30712. name: "Front",
  30713. image: {
  30714. source: "./media/characters/vaelophis-nyx/front.svg",
  30715. extra: 2532/2330,
  30716. bottom: 0/2532
  30717. }
  30718. },
  30719. back: {
  30720. height: math.unit(4 + 2 / 12, "feet"),
  30721. weight: math.unit(95, "lb"),
  30722. name: "Back",
  30723. image: {
  30724. source: "./media/characters/vaelophis-nyx/back.svg",
  30725. extra: 2484/2361,
  30726. bottom: 0/2484
  30727. }
  30728. },
  30729. feralSide: {
  30730. height: math.unit(2 + 1/12, "feet"),
  30731. weight: math.unit(20, "lb"),
  30732. name: "Feral (Side)",
  30733. image: {
  30734. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30735. extra: 1721/1581,
  30736. bottom: 70/1791
  30737. }
  30738. },
  30739. feralLazing: {
  30740. height: math.unit(1.08, "feet"),
  30741. weight: math.unit(20, "lb"),
  30742. name: "Feral (Lazing)",
  30743. image: {
  30744. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30745. extra: 822/822,
  30746. bottom: 248/1070
  30747. }
  30748. },
  30749. ear: {
  30750. height: math.unit(0.416, "feet"),
  30751. name: "Ear",
  30752. image: {
  30753. source: "./media/characters/vaelophis-nyx/ear.svg"
  30754. }
  30755. },
  30756. eye: {
  30757. height: math.unit(0.0748, "feet"),
  30758. name: "Eye",
  30759. image: {
  30760. source: "./media/characters/vaelophis-nyx/eye.svg"
  30761. }
  30762. },
  30763. mouth: {
  30764. height: math.unit(0.378, "feet"),
  30765. name: "Mouth",
  30766. image: {
  30767. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30768. }
  30769. },
  30770. spade: {
  30771. height: math.unit(0.55, "feet"),
  30772. name: "Spade",
  30773. image: {
  30774. source: "./media/characters/vaelophis-nyx/spade.svg"
  30775. }
  30776. },
  30777. },
  30778. [
  30779. {
  30780. name: "Normal",
  30781. height: math.unit(4 + 2/12, "feet"),
  30782. default: true
  30783. },
  30784. ]
  30785. ))
  30786. characterMakers.push(() => makeCharacter(
  30787. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30788. {
  30789. front: {
  30790. height: math.unit(7, "feet"),
  30791. weight: math.unit(231, "lb"),
  30792. name: "Front",
  30793. image: {
  30794. source: "./media/characters/flux/front.svg",
  30795. extra: 919/871,
  30796. bottom: 0/919
  30797. }
  30798. },
  30799. back: {
  30800. height: math.unit(7, "feet"),
  30801. weight: math.unit(231, "lb"),
  30802. name: "Back",
  30803. image: {
  30804. source: "./media/characters/flux/back.svg",
  30805. extra: 1040/992,
  30806. bottom: 0/1040
  30807. }
  30808. },
  30809. frontDressed: {
  30810. height: math.unit(7, "feet"),
  30811. weight: math.unit(231, "lb"),
  30812. name: "Front (Dressed)",
  30813. image: {
  30814. source: "./media/characters/flux/front-dressed.svg",
  30815. extra: 919/871,
  30816. bottom: 0/919
  30817. }
  30818. },
  30819. feralSide: {
  30820. height: math.unit(5, "feet"),
  30821. weight: math.unit(150, "lb"),
  30822. name: "Feral (Side)",
  30823. image: {
  30824. source: "./media/characters/flux/feral-side.svg",
  30825. extra: 598/528,
  30826. bottom: 28/626
  30827. }
  30828. },
  30829. head: {
  30830. height: math.unit(1.585, "feet"),
  30831. name: "Head",
  30832. image: {
  30833. source: "./media/characters/flux/head.svg"
  30834. }
  30835. },
  30836. headSide: {
  30837. height: math.unit(1.74, "feet"),
  30838. name: "Head (Side)",
  30839. image: {
  30840. source: "./media/characters/flux/head-side.svg"
  30841. }
  30842. },
  30843. headSideFire: {
  30844. height: math.unit(1.76, "feet"),
  30845. name: "Head (Side, Fire)",
  30846. image: {
  30847. source: "./media/characters/flux/head-side-fire.svg"
  30848. }
  30849. },
  30850. },
  30851. [
  30852. {
  30853. name: "Normal",
  30854. height: math.unit(7, "feet"),
  30855. default: true
  30856. },
  30857. ]
  30858. ))
  30859. characterMakers.push(() => makeCharacter(
  30860. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30861. {
  30862. front: {
  30863. height: math.unit(9, "feet"),
  30864. weight: math.unit(1012, "lb"),
  30865. name: "Front",
  30866. image: {
  30867. source: "./media/characters/ulfra-lupae/front.svg",
  30868. extra: 1083/1011,
  30869. bottom: 67/1150
  30870. }
  30871. },
  30872. },
  30873. [
  30874. {
  30875. name: "Micro",
  30876. height: math.unit(6, "inches")
  30877. },
  30878. {
  30879. name: "Socializing",
  30880. height: math.unit(6 + 5/12, "feet")
  30881. },
  30882. {
  30883. name: "Normal",
  30884. height: math.unit(9, "feet"),
  30885. default: true
  30886. },
  30887. {
  30888. name: "Macro",
  30889. height: math.unit(150, "feet")
  30890. },
  30891. ]
  30892. ))
  30893. characterMakers.push(() => makeCharacter(
  30894. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30895. {
  30896. front: {
  30897. height: math.unit(5 + 2/12, "feet"),
  30898. weight: math.unit(120, "lb"),
  30899. name: "Front",
  30900. image: {
  30901. source: "./media/characters/timber/front.svg",
  30902. extra: 2814/2705,
  30903. bottom: 181/2995
  30904. }
  30905. },
  30906. },
  30907. [
  30908. {
  30909. name: "Normal",
  30910. height: math.unit(5 + 2/12, "feet"),
  30911. default: true
  30912. },
  30913. ]
  30914. ))
  30915. characterMakers.push(() => makeCharacter(
  30916. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30917. {
  30918. front: {
  30919. height: math.unit(5 + 7/12, "feet"),
  30920. weight: math.unit(220, "lb"),
  30921. name: "Front",
  30922. image: {
  30923. source: "./media/characters/nicki/front.svg",
  30924. extra: 453/419,
  30925. bottom: 7/460
  30926. }
  30927. },
  30928. frontAlt: {
  30929. height: math.unit(5 + 7/12, "feet"),
  30930. weight: math.unit(220, "lb"),
  30931. name: "Front-alt",
  30932. image: {
  30933. source: "./media/characters/nicki/front-alt.svg",
  30934. extra: 435/411,
  30935. bottom: 12/447
  30936. }
  30937. },
  30938. back: {
  30939. height: math.unit(5 + 7/12, "feet"),
  30940. weight: math.unit(220, "lb"),
  30941. name: "Back",
  30942. image: {
  30943. source: "./media/characters/nicki/back.svg",
  30944. extra: 440/413,
  30945. bottom: 19/459
  30946. }
  30947. },
  30948. taur: {
  30949. height: math.unit(7 + 6/12, "feet"),
  30950. weight: math.unit(700, "lb"),
  30951. name: "Taur",
  30952. image: {
  30953. source: "./media/characters/nicki/taur.svg",
  30954. extra: 975/773,
  30955. bottom: 0/975
  30956. }
  30957. },
  30958. frontNsfw: {
  30959. height: math.unit(5 + 7/12, "feet"),
  30960. weight: math.unit(220, "lb"),
  30961. name: "Front (NSFW)",
  30962. image: {
  30963. source: "./media/characters/nicki/front-nsfw.svg",
  30964. extra: 453/419,
  30965. bottom: 7/460
  30966. }
  30967. },
  30968. frontNsfwAlt: {
  30969. height: math.unit(5 + 7/12, "feet"),
  30970. weight: math.unit(220, "lb"),
  30971. name: "Front (Alt, NSFW)",
  30972. image: {
  30973. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30974. extra: 435/411,
  30975. bottom: 12/447
  30976. }
  30977. },
  30978. backNsfw: {
  30979. height: math.unit(5 + 7/12, "feet"),
  30980. weight: math.unit(220, "lb"),
  30981. name: "Back (NSFW)",
  30982. image: {
  30983. source: "./media/characters/nicki/back-nsfw.svg",
  30984. extra: 440/413,
  30985. bottom: 19/459
  30986. }
  30987. },
  30988. head: {
  30989. height: math.unit(2.1, "feet"),
  30990. name: "Head",
  30991. image: {
  30992. source: "./media/characters/nicki/head.svg"
  30993. }
  30994. },
  30995. paw: {
  30996. height: math.unit(1.88, "feet"),
  30997. name: "Paw",
  30998. image: {
  30999. source: "./media/characters/nicki/paw.svg"
  31000. }
  31001. },
  31002. },
  31003. [
  31004. {
  31005. name: "Normal",
  31006. height: math.unit(5 + 7/12, "feet"),
  31007. default: true
  31008. },
  31009. ]
  31010. ))
  31011. characterMakers.push(() => makeCharacter(
  31012. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31013. {
  31014. front: {
  31015. height: math.unit(7 + 10/12, "feet"),
  31016. weight: math.unit(3.5, "tons"),
  31017. name: "Front",
  31018. image: {
  31019. source: "./media/characters/lee/front.svg",
  31020. extra: 1773/1615,
  31021. bottom: 86/1859
  31022. }
  31023. },
  31024. hand: {
  31025. height: math.unit(1.78, "feet"),
  31026. name: "Hand",
  31027. image: {
  31028. source: "./media/characters/lee/hand.svg"
  31029. }
  31030. },
  31031. maw: {
  31032. height: math.unit(1.18, "feet"),
  31033. name: "Maw",
  31034. image: {
  31035. source: "./media/characters/lee/maw.svg"
  31036. }
  31037. },
  31038. },
  31039. [
  31040. {
  31041. name: "Normal",
  31042. height: math.unit(7 + 10/12, "feet"),
  31043. default: true
  31044. },
  31045. ]
  31046. ))
  31047. characterMakers.push(() => makeCharacter(
  31048. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31049. {
  31050. front: {
  31051. height: math.unit(9, "feet"),
  31052. name: "Front",
  31053. image: {
  31054. source: "./media/characters/guti/front.svg",
  31055. extra: 4551/4355,
  31056. bottom: 123/4674
  31057. }
  31058. },
  31059. tongue: {
  31060. height: math.unit(1, "feet"),
  31061. name: "Tongue",
  31062. image: {
  31063. source: "./media/characters/guti/tongue.svg"
  31064. }
  31065. },
  31066. paw: {
  31067. height: math.unit(1.18, "feet"),
  31068. name: "Paw",
  31069. image: {
  31070. source: "./media/characters/guti/paw.svg"
  31071. }
  31072. },
  31073. },
  31074. [
  31075. {
  31076. name: "Normal",
  31077. height: math.unit(9, "feet"),
  31078. default: true
  31079. },
  31080. ]
  31081. ))
  31082. characterMakers.push(() => makeCharacter(
  31083. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31084. {
  31085. side: {
  31086. height: math.unit(5, "meters"),
  31087. name: "Side",
  31088. image: {
  31089. source: "./media/characters/vesper/side.svg",
  31090. extra: 1605/1518,
  31091. bottom: 0/1605
  31092. }
  31093. },
  31094. },
  31095. [
  31096. {
  31097. name: "Small",
  31098. height: math.unit(5, "meters")
  31099. },
  31100. {
  31101. name: "Sage",
  31102. height: math.unit(100, "meters"),
  31103. default: true
  31104. },
  31105. {
  31106. name: "Fun Size",
  31107. height: math.unit(600, "meters")
  31108. },
  31109. {
  31110. name: "Goddess",
  31111. height: math.unit(20000, "km")
  31112. },
  31113. {
  31114. name: "Maximum",
  31115. height: math.unit(5, "galaxies")
  31116. },
  31117. ]
  31118. ))
  31119. characterMakers.push(() => makeCharacter(
  31120. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31121. {
  31122. front: {
  31123. height: math.unit(6 + 3/12, "feet"),
  31124. weight: math.unit(190, "lb"),
  31125. name: "Front",
  31126. image: {
  31127. source: "./media/characters/gawain/front.svg",
  31128. extra: 2222/2139,
  31129. bottom: 90/2312
  31130. }
  31131. },
  31132. back: {
  31133. height: math.unit(6 + 3/12, "feet"),
  31134. weight: math.unit(190, "lb"),
  31135. name: "Back",
  31136. image: {
  31137. source: "./media/characters/gawain/back.svg",
  31138. extra: 2199/2111,
  31139. bottom: 73/2272
  31140. }
  31141. },
  31142. },
  31143. [
  31144. {
  31145. name: "Normal",
  31146. height: math.unit(6 + 3/12, "feet"),
  31147. default: true
  31148. },
  31149. ]
  31150. ))
  31151. characterMakers.push(() => makeCharacter(
  31152. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31153. {
  31154. side: {
  31155. height: math.unit(3.5, "meters"),
  31156. weight: math.unit(16000, "lb"),
  31157. name: "Side",
  31158. image: {
  31159. source: "./media/characters/dascalti/side.svg",
  31160. extra: 392/273,
  31161. bottom: 47/439
  31162. }
  31163. },
  31164. breath: {
  31165. height: math.unit(7.4, "feet"),
  31166. name: "Breath",
  31167. image: {
  31168. source: "./media/characters/dascalti/breath.svg"
  31169. }
  31170. },
  31171. fed: {
  31172. height: math.unit(3.6, "meters"),
  31173. weight: math.unit(16000, "lb"),
  31174. name: "Fed",
  31175. image: {
  31176. source: "./media/characters/dascalti/fed.svg",
  31177. extra: 1419/820,
  31178. bottom: 95/1514
  31179. }
  31180. },
  31181. },
  31182. [
  31183. {
  31184. name: "Normal",
  31185. height: math.unit(3.5, "meters"),
  31186. default: true
  31187. },
  31188. ]
  31189. ))
  31190. characterMakers.push(() => makeCharacter(
  31191. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31192. {
  31193. front: {
  31194. height: math.unit(3 + 5/12, "feet"),
  31195. name: "Front",
  31196. image: {
  31197. source: "./media/characters/mauve/front.svg",
  31198. extra: 1126/1033,
  31199. bottom: 65/1191
  31200. }
  31201. },
  31202. side: {
  31203. height: math.unit(3 + 5/12, "feet"),
  31204. name: "Side",
  31205. image: {
  31206. source: "./media/characters/mauve/side.svg",
  31207. extra: 1089/1001,
  31208. bottom: 29/1118
  31209. }
  31210. },
  31211. back: {
  31212. height: math.unit(3 + 5/12, "feet"),
  31213. name: "Back",
  31214. image: {
  31215. source: "./media/characters/mauve/back.svg",
  31216. extra: 1173/1053,
  31217. bottom: 109/1282
  31218. }
  31219. },
  31220. },
  31221. [
  31222. {
  31223. name: "Normal",
  31224. height: math.unit(3 + 5/12, "feet"),
  31225. default: true
  31226. },
  31227. ]
  31228. ))
  31229. characterMakers.push(() => makeCharacter(
  31230. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31231. {
  31232. front: {
  31233. height: math.unit(6 + 3/12, "feet"),
  31234. weight: math.unit(430, "lb"),
  31235. name: "Front",
  31236. image: {
  31237. source: "./media/characters/carlos/front.svg",
  31238. extra: 1964/1913,
  31239. bottom: 70/2034
  31240. }
  31241. },
  31242. },
  31243. [
  31244. {
  31245. name: "Normal",
  31246. height: math.unit(6 + 3/12, "feet"),
  31247. default: true
  31248. },
  31249. ]
  31250. ))
  31251. characterMakers.push(() => makeCharacter(
  31252. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31253. {
  31254. back: {
  31255. height: math.unit(5 + 10/12, "feet"),
  31256. weight: math.unit(200, "lb"),
  31257. name: "Back",
  31258. image: {
  31259. source: "./media/characters/jax/back.svg",
  31260. extra: 764/739,
  31261. bottom: 25/789
  31262. }
  31263. },
  31264. },
  31265. [
  31266. {
  31267. name: "Normal",
  31268. height: math.unit(5 + 10/12, "feet"),
  31269. default: true
  31270. },
  31271. ]
  31272. ))
  31273. characterMakers.push(() => makeCharacter(
  31274. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31275. {
  31276. front: {
  31277. height: math.unit(8, "feet"),
  31278. weight: math.unit(250, "lb"),
  31279. name: "Front",
  31280. image: {
  31281. source: "./media/characters/eikthynir/front.svg",
  31282. extra: 1332/1166,
  31283. bottom: 82/1414
  31284. }
  31285. },
  31286. back: {
  31287. height: math.unit(8, "feet"),
  31288. weight: math.unit(250, "lb"),
  31289. name: "Back",
  31290. image: {
  31291. source: "./media/characters/eikthynir/back.svg",
  31292. extra: 1342/1190,
  31293. bottom: 19/1361
  31294. }
  31295. },
  31296. dick: {
  31297. height: math.unit(2.35, "feet"),
  31298. name: "Dick",
  31299. image: {
  31300. source: "./media/characters/eikthynir/dick.svg"
  31301. }
  31302. },
  31303. },
  31304. [
  31305. {
  31306. name: "Normal",
  31307. height: math.unit(8, "feet"),
  31308. default: true
  31309. },
  31310. ]
  31311. ))
  31312. characterMakers.push(() => makeCharacter(
  31313. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31314. {
  31315. front: {
  31316. height: math.unit(99, "meters"),
  31317. weight: math.unit(13000, "tons"),
  31318. name: "Front",
  31319. image: {
  31320. source: "./media/characters/zlmos/front.svg",
  31321. extra: 2202/1992,
  31322. bottom: 315/2517
  31323. }
  31324. },
  31325. },
  31326. [
  31327. {
  31328. name: "Macro",
  31329. height: math.unit(99, "meters"),
  31330. default: true
  31331. },
  31332. ]
  31333. ))
  31334. characterMakers.push(() => makeCharacter(
  31335. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31336. {
  31337. front: {
  31338. height: math.unit(6 + 5/12, "feet"),
  31339. name: "Front",
  31340. image: {
  31341. source: "./media/characters/purri/front.svg",
  31342. extra: 1698/1610,
  31343. bottom: 32/1730
  31344. }
  31345. },
  31346. frontAlt: {
  31347. height: math.unit(6 + 5/12, "feet"),
  31348. name: "Front (Alt)",
  31349. image: {
  31350. source: "./media/characters/purri/front-alt.svg",
  31351. extra: 450/420,
  31352. bottom: 26/476
  31353. }
  31354. },
  31355. boots: {
  31356. height: math.unit(5.5, "feet"),
  31357. name: "Boots",
  31358. image: {
  31359. source: "./media/characters/purri/boots.svg",
  31360. extra: 905/853,
  31361. bottom: 18/923
  31362. }
  31363. },
  31364. lying: {
  31365. height: math.unit(2, "feet"),
  31366. name: "Lying",
  31367. image: {
  31368. source: "./media/characters/purri/lying.svg",
  31369. extra: 940/843,
  31370. bottom: 146/1086
  31371. }
  31372. },
  31373. devious: {
  31374. height: math.unit(1.77, "feet"),
  31375. name: "Devious",
  31376. image: {
  31377. source: "./media/characters/purri/devious.svg",
  31378. extra: 1440/1155,
  31379. bottom: 147/1587
  31380. }
  31381. },
  31382. bean: {
  31383. height: math.unit(1.94, "feet"),
  31384. name: "Bean",
  31385. image: {
  31386. source: "./media/characters/purri/bean.svg"
  31387. }
  31388. },
  31389. },
  31390. [
  31391. {
  31392. name: "Micro",
  31393. height: math.unit(1, "mm")
  31394. },
  31395. {
  31396. name: "Normal",
  31397. height: math.unit(6 + 5/12, "feet"),
  31398. default: true
  31399. },
  31400. {
  31401. name: "Macro :3c",
  31402. height: math.unit(2, "miles")
  31403. },
  31404. ]
  31405. ))
  31406. characterMakers.push(() => makeCharacter(
  31407. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31408. {
  31409. front: {
  31410. height: math.unit(6 + 2/12, "feet"),
  31411. weight: math.unit(250, "lb"),
  31412. name: "Front",
  31413. image: {
  31414. source: "./media/characters/moonlight/front.svg",
  31415. extra: 1044/908,
  31416. bottom: 56/1100
  31417. }
  31418. },
  31419. feral: {
  31420. height: math.unit(3 + 1/12, "feet"),
  31421. weight: math.unit(50, "kg"),
  31422. name: "Feral",
  31423. image: {
  31424. source: "./media/characters/moonlight/feral.svg",
  31425. extra: 3705/2791,
  31426. bottom: 145/3850
  31427. }
  31428. },
  31429. paw: {
  31430. height: math.unit(1, "feet"),
  31431. name: "Paw",
  31432. image: {
  31433. source: "./media/characters/moonlight/paw.svg"
  31434. }
  31435. },
  31436. paws: {
  31437. height: math.unit(0.98, "feet"),
  31438. name: "Paws",
  31439. image: {
  31440. source: "./media/characters/moonlight/paws.svg",
  31441. extra: 939/939,
  31442. bottom: 50/989
  31443. }
  31444. },
  31445. mouth: {
  31446. height: math.unit(0.48, "feet"),
  31447. name: "Mouth",
  31448. image: {
  31449. source: "./media/characters/moonlight/mouth.svg"
  31450. }
  31451. },
  31452. dick: {
  31453. height: math.unit(1.46, "feet"),
  31454. name: "Dick",
  31455. image: {
  31456. source: "./media/characters/moonlight/dick.svg"
  31457. }
  31458. },
  31459. },
  31460. [
  31461. {
  31462. name: "Normal",
  31463. height: math.unit(6 + 2/12, "feet"),
  31464. default: true
  31465. },
  31466. {
  31467. name: "Macro",
  31468. height: math.unit(300, "feet")
  31469. },
  31470. {
  31471. name: "Macro+",
  31472. height: math.unit(1, "mile")
  31473. },
  31474. {
  31475. name: "Mt. Moon",
  31476. height: math.unit(5, "miles")
  31477. },
  31478. {
  31479. name: "Megamacro",
  31480. height: math.unit(15, "miles")
  31481. },
  31482. ]
  31483. ))
  31484. characterMakers.push(() => makeCharacter(
  31485. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31486. {
  31487. back: {
  31488. height: math.unit(6, "feet"),
  31489. weight: math.unit(150, "lb"),
  31490. name: "Back",
  31491. image: {
  31492. source: "./media/characters/sylen/back.svg",
  31493. extra: 1335/1273,
  31494. bottom: 107/1442
  31495. }
  31496. },
  31497. },
  31498. [
  31499. {
  31500. name: "Normal",
  31501. height: math.unit(5 + 5/12, "feet")
  31502. },
  31503. {
  31504. name: "Megamacro",
  31505. height: math.unit(3, "miles"),
  31506. default: true
  31507. },
  31508. ]
  31509. ))
  31510. characterMakers.push(() => makeCharacter(
  31511. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31512. {
  31513. front: {
  31514. height: math.unit(6, "feet"),
  31515. weight: math.unit(190, "lb"),
  31516. name: "Front",
  31517. image: {
  31518. source: "./media/characters/huttser/front.svg",
  31519. extra: 1152/1058,
  31520. bottom: 23/1175
  31521. }
  31522. },
  31523. side: {
  31524. height: math.unit(6, "feet"),
  31525. weight: math.unit(190, "lb"),
  31526. name: "Side",
  31527. image: {
  31528. source: "./media/characters/huttser/side.svg",
  31529. extra: 1174/1065,
  31530. bottom: 18/1192
  31531. }
  31532. },
  31533. back: {
  31534. height: math.unit(6, "feet"),
  31535. weight: math.unit(190, "lb"),
  31536. name: "Back",
  31537. image: {
  31538. source: "./media/characters/huttser/back.svg",
  31539. extra: 1158/1056,
  31540. bottom: 12/1170
  31541. }
  31542. },
  31543. },
  31544. [
  31545. ]
  31546. ))
  31547. characterMakers.push(() => makeCharacter(
  31548. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31549. {
  31550. side: {
  31551. height: math.unit(12 + 9/12, "feet"),
  31552. weight: math.unit(15000, "lb"),
  31553. name: "Side",
  31554. image: {
  31555. source: "./media/characters/faan/side.svg",
  31556. extra: 2747/2697,
  31557. bottom: 0/2747
  31558. }
  31559. },
  31560. front: {
  31561. height: math.unit(12 + 9/12, "feet"),
  31562. weight: math.unit(15000, "lb"),
  31563. name: "Front",
  31564. image: {
  31565. source: "./media/characters/faan/front.svg",
  31566. extra: 607/571,
  31567. bottom: 24/631
  31568. }
  31569. },
  31570. head: {
  31571. height: math.unit(2.85, "feet"),
  31572. name: "Head",
  31573. image: {
  31574. source: "./media/characters/faan/head.svg"
  31575. }
  31576. },
  31577. headAlt: {
  31578. height: math.unit(3.13, "feet"),
  31579. name: "Head-alt",
  31580. image: {
  31581. source: "./media/characters/faan/head-alt.svg"
  31582. }
  31583. },
  31584. },
  31585. [
  31586. {
  31587. name: "Normal",
  31588. height: math.unit(12 + 9/12, "feet"),
  31589. default: true
  31590. },
  31591. ]
  31592. ))
  31593. characterMakers.push(() => makeCharacter(
  31594. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31595. {
  31596. front: {
  31597. height: math.unit(6, "feet"),
  31598. weight: math.unit(300, "lb"),
  31599. name: "Front",
  31600. image: {
  31601. source: "./media/characters/tanio/front.svg",
  31602. extra: 711/673,
  31603. bottom: 25/736
  31604. }
  31605. },
  31606. },
  31607. [
  31608. {
  31609. name: "Normal",
  31610. height: math.unit(6, "feet"),
  31611. default: true
  31612. },
  31613. ]
  31614. ))
  31615. characterMakers.push(() => makeCharacter(
  31616. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31617. {
  31618. front: {
  31619. height: math.unit(3, "inches"),
  31620. name: "Front",
  31621. image: {
  31622. source: "./media/characters/noboru/front.svg",
  31623. extra: 1039/932,
  31624. bottom: 18/1057
  31625. }
  31626. },
  31627. },
  31628. [
  31629. {
  31630. name: "Micro",
  31631. height: math.unit(3, "inches"),
  31632. default: true
  31633. },
  31634. ]
  31635. ))
  31636. characterMakers.push(() => makeCharacter(
  31637. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31638. {
  31639. front: {
  31640. height: math.unit(1.85, "meters"),
  31641. weight: math.unit(80, "kg"),
  31642. name: "Front",
  31643. image: {
  31644. source: "./media/characters/daniel-barrett/front.svg",
  31645. extra: 355/337,
  31646. bottom: 9/364
  31647. }
  31648. },
  31649. },
  31650. [
  31651. {
  31652. name: "Pico",
  31653. height: math.unit(0.0433, "mm")
  31654. },
  31655. {
  31656. name: "Nano",
  31657. height: math.unit(1.5, "mm")
  31658. },
  31659. {
  31660. name: "Micro",
  31661. height: math.unit(5.3, "cm"),
  31662. default: true
  31663. },
  31664. {
  31665. name: "Normal",
  31666. height: math.unit(1.85, "meters")
  31667. },
  31668. {
  31669. name: "Macro",
  31670. height: math.unit(64.7, "meters")
  31671. },
  31672. {
  31673. name: "Megamacro",
  31674. height: math.unit(2.26, "km")
  31675. },
  31676. {
  31677. name: "Gigamacro",
  31678. height: math.unit(79, "km")
  31679. },
  31680. {
  31681. name: "Teramacro",
  31682. height: math.unit(2765, "km")
  31683. },
  31684. {
  31685. name: "Petamacro",
  31686. height: math.unit(96678, "km")
  31687. },
  31688. ]
  31689. ))
  31690. characterMakers.push(() => makeCharacter(
  31691. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31692. {
  31693. front: {
  31694. height: math.unit(30, "meters"),
  31695. weight: math.unit(400, "tons"),
  31696. name: "Front",
  31697. image: {
  31698. source: "./media/characters/zeel/front.svg",
  31699. extra: 2599/2599,
  31700. bottom: 226/2825
  31701. }
  31702. },
  31703. },
  31704. [
  31705. {
  31706. name: "Macro",
  31707. height: math.unit(30, "meters"),
  31708. default: true
  31709. },
  31710. ]
  31711. ))
  31712. characterMakers.push(() => makeCharacter(
  31713. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31714. {
  31715. front: {
  31716. height: math.unit(6 + 7/12, "feet"),
  31717. weight: math.unit(210, "lb"),
  31718. name: "Front",
  31719. image: {
  31720. source: "./media/characters/tarn/front.svg",
  31721. extra: 3517/3220,
  31722. bottom: 91/3608
  31723. }
  31724. },
  31725. back: {
  31726. height: math.unit(6 + 7/12, "feet"),
  31727. weight: math.unit(210, "lb"),
  31728. name: "Back",
  31729. image: {
  31730. source: "./media/characters/tarn/back.svg",
  31731. extra: 3566/3241,
  31732. bottom: 34/3600
  31733. }
  31734. },
  31735. dick: {
  31736. height: math.unit(1.65, "feet"),
  31737. name: "Dick",
  31738. image: {
  31739. source: "./media/characters/tarn/dick.svg"
  31740. }
  31741. },
  31742. paw: {
  31743. height: math.unit(1.80, "feet"),
  31744. name: "Paw",
  31745. image: {
  31746. source: "./media/characters/tarn/paw.svg"
  31747. }
  31748. },
  31749. tongue: {
  31750. height: math.unit(0.97, "feet"),
  31751. name: "Tongue",
  31752. image: {
  31753. source: "./media/characters/tarn/tongue.svg"
  31754. }
  31755. },
  31756. },
  31757. [
  31758. {
  31759. name: "Micro",
  31760. height: math.unit(4, "inches")
  31761. },
  31762. {
  31763. name: "Normal",
  31764. height: math.unit(6 + 7/12, "feet"),
  31765. default: true
  31766. },
  31767. {
  31768. name: "Macro",
  31769. height: math.unit(300, "feet")
  31770. },
  31771. ]
  31772. ))
  31773. characterMakers.push(() => makeCharacter(
  31774. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31775. {
  31776. front: {
  31777. height: math.unit(5 + 7/12, "feet"),
  31778. weight: math.unit(80, "kg"),
  31779. name: "Front",
  31780. image: {
  31781. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31782. extra: 3023/2865,
  31783. bottom: 33/3056
  31784. }
  31785. },
  31786. back: {
  31787. height: math.unit(5 + 7/12, "feet"),
  31788. weight: math.unit(80, "kg"),
  31789. name: "Back",
  31790. image: {
  31791. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31792. extra: 3020/2886,
  31793. bottom: 30/3050
  31794. }
  31795. },
  31796. dick: {
  31797. height: math.unit(0.98, "feet"),
  31798. name: "Dick",
  31799. image: {
  31800. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31801. }
  31802. },
  31803. anatomy: {
  31804. height: math.unit(2.86, "feet"),
  31805. name: "Anatomy",
  31806. image: {
  31807. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31808. }
  31809. },
  31810. },
  31811. [
  31812. {
  31813. name: "Really Small",
  31814. height: math.unit(2, "inches")
  31815. },
  31816. {
  31817. name: "Micro",
  31818. height: math.unit(5.583, "inches")
  31819. },
  31820. {
  31821. name: "Normal",
  31822. height: math.unit(5 + 7/12, "feet"),
  31823. default: true
  31824. },
  31825. {
  31826. name: "Macro",
  31827. height: math.unit(67, "feet")
  31828. },
  31829. {
  31830. name: "Megamacro",
  31831. height: math.unit(134, "feet")
  31832. },
  31833. ]
  31834. ))
  31835. characterMakers.push(() => makeCharacter(
  31836. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31837. {
  31838. front: {
  31839. height: math.unit(9, "feet"),
  31840. weight: math.unit(120, "lb"),
  31841. name: "Front",
  31842. image: {
  31843. source: "./media/characters/sally/front.svg",
  31844. extra: 1506/1349,
  31845. bottom: 66/1572
  31846. }
  31847. },
  31848. },
  31849. [
  31850. {
  31851. name: "Normal",
  31852. height: math.unit(9, "feet"),
  31853. default: true
  31854. },
  31855. ]
  31856. ))
  31857. characterMakers.push(() => makeCharacter(
  31858. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31859. {
  31860. front: {
  31861. height: math.unit(8, "feet"),
  31862. weight: math.unit(900, "lb"),
  31863. name: "Front",
  31864. image: {
  31865. source: "./media/characters/owen/front.svg",
  31866. extra: 1761/1657,
  31867. bottom: 74/1835
  31868. }
  31869. },
  31870. side: {
  31871. height: math.unit(8, "feet"),
  31872. weight: math.unit(900, "lb"),
  31873. name: "Side",
  31874. image: {
  31875. source: "./media/characters/owen/side.svg",
  31876. extra: 1797/1734,
  31877. bottom: 30/1827
  31878. }
  31879. },
  31880. back: {
  31881. height: math.unit(8, "feet"),
  31882. weight: math.unit(900, "lb"),
  31883. name: "Back",
  31884. image: {
  31885. source: "./media/characters/owen/back.svg",
  31886. extra: 1796/1706,
  31887. bottom: 59/1855
  31888. }
  31889. },
  31890. maw: {
  31891. height: math.unit(1.76, "feet"),
  31892. name: "Maw",
  31893. image: {
  31894. source: "./media/characters/owen/maw.svg"
  31895. }
  31896. },
  31897. },
  31898. [
  31899. {
  31900. name: "Normal",
  31901. height: math.unit(8, "feet"),
  31902. default: true
  31903. },
  31904. ]
  31905. ))
  31906. characterMakers.push(() => makeCharacter(
  31907. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31908. {
  31909. front: {
  31910. height: math.unit(4, "feet"),
  31911. weight: math.unit(400, "lb"),
  31912. name: "Front",
  31913. image: {
  31914. source: "./media/characters/ryth/front.svg",
  31915. extra: 1920/1748,
  31916. bottom: 42/1962
  31917. }
  31918. },
  31919. back: {
  31920. height: math.unit(4, "feet"),
  31921. weight: math.unit(400, "lb"),
  31922. name: "Back",
  31923. image: {
  31924. source: "./media/characters/ryth/back.svg",
  31925. extra: 1897/1690,
  31926. bottom: 89/1986
  31927. }
  31928. },
  31929. mouth: {
  31930. height: math.unit(1.39, "feet"),
  31931. name: "Mouth",
  31932. image: {
  31933. source: "./media/characters/ryth/mouth.svg"
  31934. }
  31935. },
  31936. tailmaw: {
  31937. height: math.unit(1.23, "feet"),
  31938. name: "Tailmaw",
  31939. image: {
  31940. source: "./media/characters/ryth/tailmaw.svg"
  31941. }
  31942. },
  31943. goia: {
  31944. height: math.unit(12, "feet"),
  31945. weight: math.unit(10800, "lb"),
  31946. name: "Goia",
  31947. image: {
  31948. source: "./media/characters/ryth/goia.svg",
  31949. extra: 3450/3198,
  31950. bottom: 61/3511
  31951. }
  31952. },
  31953. },
  31954. [
  31955. {
  31956. name: "Normal",
  31957. height: math.unit(4, "feet"),
  31958. default: true
  31959. },
  31960. ]
  31961. ))
  31962. characterMakers.push(() => makeCharacter(
  31963. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31964. {
  31965. front: {
  31966. height: math.unit(7, "feet"),
  31967. weight: math.unit(180, "lb"),
  31968. name: "Front",
  31969. image: {
  31970. source: "./media/characters/necrolance/front.svg",
  31971. extra: 1062/947,
  31972. bottom: 41/1103
  31973. }
  31974. },
  31975. back: {
  31976. height: math.unit(7, "feet"),
  31977. weight: math.unit(180, "lb"),
  31978. name: "Back",
  31979. image: {
  31980. source: "./media/characters/necrolance/back.svg",
  31981. extra: 1045/984,
  31982. bottom: 14/1059
  31983. }
  31984. },
  31985. wing: {
  31986. height: math.unit(2.67, "feet"),
  31987. name: "Wing",
  31988. image: {
  31989. source: "./media/characters/necrolance/wing.svg"
  31990. }
  31991. },
  31992. },
  31993. [
  31994. {
  31995. name: "Normal",
  31996. height: math.unit(7, "feet"),
  31997. default: true
  31998. },
  31999. ]
  32000. ))
  32001. characterMakers.push(() => makeCharacter(
  32002. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32003. {
  32004. front: {
  32005. height: math.unit(76, "meters"),
  32006. weight: math.unit(30000, "tons"),
  32007. name: "Front",
  32008. image: {
  32009. source: "./media/characters/tyler/front.svg",
  32010. extra: 1640/1640,
  32011. bottom: 114/1754
  32012. }
  32013. },
  32014. },
  32015. [
  32016. {
  32017. name: "Macro",
  32018. height: math.unit(76, "meters"),
  32019. default: true
  32020. },
  32021. ]
  32022. ))
  32023. characterMakers.push(() => makeCharacter(
  32024. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32025. {
  32026. front: {
  32027. height: math.unit(4 + 11/12, "feet"),
  32028. weight: math.unit(132, "lb"),
  32029. name: "Front",
  32030. image: {
  32031. source: "./media/characters/icey/front.svg",
  32032. extra: 2750/2550,
  32033. bottom: 33/2783
  32034. }
  32035. },
  32036. back: {
  32037. height: math.unit(4 + 11/12, "feet"),
  32038. weight: math.unit(132, "lb"),
  32039. name: "Back",
  32040. image: {
  32041. source: "./media/characters/icey/back.svg",
  32042. extra: 2624/2481,
  32043. bottom: 35/2659
  32044. }
  32045. },
  32046. },
  32047. [
  32048. {
  32049. name: "Normal",
  32050. height: math.unit(4 + 11/12, "feet"),
  32051. default: true
  32052. },
  32053. ]
  32054. ))
  32055. characterMakers.push(() => makeCharacter(
  32056. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32057. {
  32058. front: {
  32059. height: math.unit(100, "feet"),
  32060. weight: math.unit(0, "lb"),
  32061. name: "Front",
  32062. image: {
  32063. source: "./media/characters/smile/front.svg",
  32064. extra: 2983/2912,
  32065. bottom: 162/3145
  32066. }
  32067. },
  32068. back: {
  32069. height: math.unit(100, "feet"),
  32070. weight: math.unit(0, "lb"),
  32071. name: "Back",
  32072. image: {
  32073. source: "./media/characters/smile/back.svg",
  32074. extra: 3143/3031,
  32075. bottom: 91/3234
  32076. }
  32077. },
  32078. head: {
  32079. height: math.unit(26.3, "feet"),
  32080. weight: math.unit(0, "lb"),
  32081. name: "Head",
  32082. image: {
  32083. source: "./media/characters/smile/head.svg"
  32084. }
  32085. },
  32086. collar: {
  32087. height: math.unit(5.3, "feet"),
  32088. weight: math.unit(0, "lb"),
  32089. name: "Collar",
  32090. image: {
  32091. source: "./media/characters/smile/collar.svg"
  32092. }
  32093. },
  32094. },
  32095. [
  32096. {
  32097. name: "Macro",
  32098. height: math.unit(100, "feet"),
  32099. default: true
  32100. },
  32101. ]
  32102. ))
  32103. characterMakers.push(() => makeCharacter(
  32104. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32105. {
  32106. dragon: {
  32107. height: math.unit(26, "feet"),
  32108. weight: math.unit(36, "tons"),
  32109. name: "Dragon",
  32110. image: {
  32111. source: "./media/characters/arimphae/dragon.svg",
  32112. extra: 1574/983,
  32113. bottom: 357/1931
  32114. }
  32115. },
  32116. drake: {
  32117. height: math.unit(9, "feet"),
  32118. weight: math.unit(1.5, "tons"),
  32119. name: "Drake",
  32120. image: {
  32121. source: "./media/characters/arimphae/drake.svg",
  32122. extra: 1120/925,
  32123. bottom: 435/1555
  32124. }
  32125. },
  32126. },
  32127. [
  32128. {
  32129. name: "Small",
  32130. height: math.unit(26*5/9, "feet")
  32131. },
  32132. {
  32133. name: "Normal",
  32134. height: math.unit(26, "feet"),
  32135. default: true
  32136. },
  32137. ]
  32138. ))
  32139. characterMakers.push(() => makeCharacter(
  32140. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32141. {
  32142. front: {
  32143. height: math.unit(8 + 9/12, "feet"),
  32144. name: "Front",
  32145. image: {
  32146. source: "./media/characters/xander/front.svg",
  32147. extra: 848/673,
  32148. bottom: 62/910
  32149. }
  32150. },
  32151. },
  32152. [
  32153. {
  32154. name: "Normal",
  32155. height: math.unit(8 + 9/12, "feet"),
  32156. default: true
  32157. },
  32158. {
  32159. name: "Gaze Grabber",
  32160. height: math.unit(13 + 8/12, "feet")
  32161. },
  32162. {
  32163. name: "Jaw Dropper",
  32164. height: math.unit(27, "feet")
  32165. },
  32166. {
  32167. name: "Show Stopper",
  32168. height: math.unit(136, "feet")
  32169. },
  32170. {
  32171. name: "Superstar",
  32172. height: math.unit(1.9e6, "miles")
  32173. },
  32174. ]
  32175. ))
  32176. characterMakers.push(() => makeCharacter(
  32177. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32178. {
  32179. side: {
  32180. height: math.unit(2100, "feet"),
  32181. name: "Side",
  32182. image: {
  32183. source: "./media/characters/osiris/side.svg",
  32184. extra: 1105/939,
  32185. bottom: 167/1272
  32186. }
  32187. },
  32188. },
  32189. [
  32190. {
  32191. name: "Macro",
  32192. height: math.unit(2100, "feet"),
  32193. default: true
  32194. },
  32195. ]
  32196. ))
  32197. characterMakers.push(() => makeCharacter(
  32198. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32199. {
  32200. front: {
  32201. height: math.unit(6 + 8/12, "feet"),
  32202. weight: math.unit(225, "lb"),
  32203. name: "Front",
  32204. image: {
  32205. source: "./media/characters/rhys-londe/front.svg",
  32206. extra: 2258/2141,
  32207. bottom: 188/2446
  32208. }
  32209. },
  32210. back: {
  32211. height: math.unit(6 + 8/12, "feet"),
  32212. weight: math.unit(225, "lb"),
  32213. name: "Back",
  32214. image: {
  32215. source: "./media/characters/rhys-londe/back.svg",
  32216. extra: 2237/2137,
  32217. bottom: 63/2300
  32218. }
  32219. },
  32220. frontNsfw: {
  32221. height: math.unit(6 + 8/12, "feet"),
  32222. weight: math.unit(225, "lb"),
  32223. name: "Front (NSFW)",
  32224. image: {
  32225. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32226. extra: 2258/2141,
  32227. bottom: 188/2446
  32228. }
  32229. },
  32230. backNsfw: {
  32231. height: math.unit(6 + 8/12, "feet"),
  32232. weight: math.unit(225, "lb"),
  32233. name: "Back (NSFW)",
  32234. image: {
  32235. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32236. extra: 2237/2137,
  32237. bottom: 63/2300
  32238. }
  32239. },
  32240. dick: {
  32241. height: math.unit(30, "inches"),
  32242. name: "Dick",
  32243. image: {
  32244. source: "./media/characters/rhys-londe/dick.svg"
  32245. }
  32246. },
  32247. maw: {
  32248. height: math.unit(1.6, "feet"),
  32249. name: "Maw",
  32250. image: {
  32251. source: "./media/characters/rhys-londe/maw.svg"
  32252. }
  32253. },
  32254. },
  32255. [
  32256. {
  32257. name: "Normal",
  32258. height: math.unit(6 + 8/12, "feet"),
  32259. default: true
  32260. },
  32261. ]
  32262. ))
  32263. characterMakers.push(() => makeCharacter(
  32264. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32265. {
  32266. front: {
  32267. height: math.unit(3 + 10/12, "feet"),
  32268. weight: math.unit(90, "lb"),
  32269. name: "Front",
  32270. image: {
  32271. source: "./media/characters/taivas-ensim/front.svg",
  32272. extra: 1327/1216,
  32273. bottom: 96/1423
  32274. }
  32275. },
  32276. back: {
  32277. height: math.unit(3 + 10/12, "feet"),
  32278. weight: math.unit(90, "lb"),
  32279. name: "Back",
  32280. image: {
  32281. source: "./media/characters/taivas-ensim/back.svg",
  32282. extra: 1355/1247,
  32283. bottom: 11/1366
  32284. }
  32285. },
  32286. frontNsfw: {
  32287. height: math.unit(3 + 10/12, "feet"),
  32288. weight: math.unit(90, "lb"),
  32289. name: "Front (NSFW)",
  32290. image: {
  32291. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32292. extra: 1327/1216,
  32293. bottom: 96/1423
  32294. }
  32295. },
  32296. backNsfw: {
  32297. height: math.unit(3 + 10/12, "feet"),
  32298. weight: math.unit(90, "lb"),
  32299. name: "Back (NSFW)",
  32300. image: {
  32301. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32302. extra: 1355/1247,
  32303. bottom: 11/1366
  32304. }
  32305. },
  32306. },
  32307. [
  32308. {
  32309. name: "Normal",
  32310. height: math.unit(3 + 10/12, "feet"),
  32311. default: true
  32312. },
  32313. ]
  32314. ))
  32315. characterMakers.push(() => makeCharacter(
  32316. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32317. {
  32318. front: {
  32319. height: math.unit(9 + 6/12, "feet"),
  32320. weight: math.unit(940, "lb"),
  32321. name: "Front",
  32322. image: {
  32323. source: "./media/characters/byliss/front.svg",
  32324. extra: 1327/1290,
  32325. bottom: 82/1409
  32326. }
  32327. },
  32328. back: {
  32329. height: math.unit(9 + 6/12, "feet"),
  32330. weight: math.unit(940, "lb"),
  32331. name: "Back",
  32332. image: {
  32333. source: "./media/characters/byliss/back.svg",
  32334. extra: 1376/1349,
  32335. bottom: 9/1385
  32336. }
  32337. },
  32338. frontNsfw: {
  32339. height: math.unit(9 + 6/12, "feet"),
  32340. weight: math.unit(940, "lb"),
  32341. name: "Front (NSFW)",
  32342. image: {
  32343. source: "./media/characters/byliss/front-nsfw.svg",
  32344. extra: 1327/1290,
  32345. bottom: 82/1409
  32346. }
  32347. },
  32348. backNsfw: {
  32349. height: math.unit(9 + 6/12, "feet"),
  32350. weight: math.unit(940, "lb"),
  32351. name: "Back (NSFW)",
  32352. image: {
  32353. source: "./media/characters/byliss/back-nsfw.svg",
  32354. extra: 1376/1349,
  32355. bottom: 9/1385
  32356. }
  32357. },
  32358. },
  32359. [
  32360. {
  32361. name: "Normal",
  32362. height: math.unit(9 + 6/12, "feet"),
  32363. default: true
  32364. },
  32365. ]
  32366. ))
  32367. characterMakers.push(() => makeCharacter(
  32368. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32369. {
  32370. front: {
  32371. height: math.unit(5 + 2/12, "feet"),
  32372. weight: math.unit(200, "lb"),
  32373. name: "Front",
  32374. image: {
  32375. source: "./media/characters/noraly/front.svg",
  32376. extra: 4985/4773,
  32377. bottom: 150/5135
  32378. }
  32379. },
  32380. full: {
  32381. height: math.unit(5 + 2/12, "feet"),
  32382. weight: math.unit(164, "lb"),
  32383. name: "Full",
  32384. image: {
  32385. source: "./media/characters/noraly/full.svg",
  32386. extra: 1114/1059,
  32387. bottom: 35/1149
  32388. }
  32389. },
  32390. fuller: {
  32391. height: math.unit(5 + 2/12, "feet"),
  32392. weight: math.unit(230, "lb"),
  32393. name: "Fuller",
  32394. image: {
  32395. source: "./media/characters/noraly/fuller.svg",
  32396. extra: 1114/1059,
  32397. bottom: 35/1149
  32398. }
  32399. },
  32400. fullest: {
  32401. height: math.unit(5 + 2/12, "feet"),
  32402. weight: math.unit(300, "lb"),
  32403. name: "Fullest",
  32404. image: {
  32405. source: "./media/characters/noraly/fullest.svg",
  32406. extra: 1114/1059,
  32407. bottom: 35/1149
  32408. }
  32409. },
  32410. },
  32411. [
  32412. {
  32413. name: "Normal",
  32414. height: math.unit(5 + 2/12, "feet"),
  32415. default: true
  32416. },
  32417. ]
  32418. ))
  32419. characterMakers.push(() => makeCharacter(
  32420. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32421. {
  32422. front: {
  32423. height: math.unit(5 + 2/12, "feet"),
  32424. weight: math.unit(210, "lb"),
  32425. name: "Front",
  32426. image: {
  32427. source: "./media/characters/pera/front.svg",
  32428. extra: 1560/1531,
  32429. bottom: 165/1725
  32430. }
  32431. },
  32432. back: {
  32433. height: math.unit(5 + 2/12, "feet"),
  32434. weight: math.unit(210, "lb"),
  32435. name: "Back",
  32436. image: {
  32437. source: "./media/characters/pera/back.svg",
  32438. extra: 1523/1493,
  32439. bottom: 152/1675
  32440. }
  32441. },
  32442. dick: {
  32443. height: math.unit(2.4, "feet"),
  32444. name: "Dick",
  32445. image: {
  32446. source: "./media/characters/pera/dick.svg"
  32447. }
  32448. },
  32449. },
  32450. [
  32451. {
  32452. name: "Normal",
  32453. height: math.unit(5 + 2/12, "feet"),
  32454. default: true
  32455. },
  32456. ]
  32457. ))
  32458. characterMakers.push(() => makeCharacter(
  32459. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32460. {
  32461. front: {
  32462. height: math.unit(12, "feet"),
  32463. weight: math.unit(3200, "lb"),
  32464. name: "Front",
  32465. image: {
  32466. source: "./media/characters/julian/front.svg",
  32467. extra: 2962/2701,
  32468. bottom: 184/3146
  32469. }
  32470. },
  32471. maw: {
  32472. height: math.unit(5.35, "feet"),
  32473. name: "Maw",
  32474. image: {
  32475. source: "./media/characters/julian/maw.svg"
  32476. }
  32477. },
  32478. paw: {
  32479. height: math.unit(3.07, "feet"),
  32480. name: "Paw",
  32481. image: {
  32482. source: "./media/characters/julian/paw.svg"
  32483. }
  32484. },
  32485. },
  32486. [
  32487. {
  32488. name: "Default",
  32489. height: math.unit(12, "feet"),
  32490. default: true
  32491. },
  32492. {
  32493. name: "Big",
  32494. height: math.unit(50, "feet")
  32495. },
  32496. {
  32497. name: "Really Big",
  32498. height: math.unit(1, "mile")
  32499. },
  32500. {
  32501. name: "Extremely Big",
  32502. height: math.unit(100, "miles")
  32503. },
  32504. {
  32505. name: "Planet Hugger",
  32506. height: math.unit(200, "megameters")
  32507. },
  32508. {
  32509. name: "Unreasonably Big",
  32510. height: math.unit(1e300, "meters")
  32511. },
  32512. ]
  32513. ))
  32514. characterMakers.push(() => makeCharacter(
  32515. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32516. {
  32517. solgooleo: {
  32518. height: math.unit(4, "meters"),
  32519. weight: math.unit(6000*1.5, "kg"),
  32520. volume: math.unit(6000, "liters"),
  32521. name: "Solgooleo",
  32522. image: {
  32523. source: "./media/characters/pi/solgooleo.svg",
  32524. extra: 388/331,
  32525. bottom: 29/417
  32526. }
  32527. },
  32528. },
  32529. [
  32530. {
  32531. name: "Normal",
  32532. height: math.unit(4, "meters"),
  32533. default: true
  32534. },
  32535. ]
  32536. ))
  32537. characterMakers.push(() => makeCharacter(
  32538. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32539. {
  32540. front: {
  32541. height: math.unit(8 + 2/12, "feet"),
  32542. weight: math.unit(4, "tons"),
  32543. name: "Front",
  32544. image: {
  32545. source: "./media/characters/shaun/front.svg",
  32546. extra: 1550/1505,
  32547. bottom: 353/1903
  32548. }
  32549. },
  32550. },
  32551. [
  32552. {
  32553. name: "Lorg",
  32554. height: math.unit(8 + 2/12, "feet"),
  32555. default: true
  32556. },
  32557. ]
  32558. ))
  32559. characterMakers.push(() => makeCharacter(
  32560. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32561. {
  32562. front: {
  32563. height: math.unit(7, "feet"),
  32564. name: "Front",
  32565. image: {
  32566. source: "./media/characters/sini/front.svg",
  32567. extra: 726/678,
  32568. bottom: 35/761
  32569. }
  32570. },
  32571. back: {
  32572. height: math.unit(7, "feet"),
  32573. name: "Back",
  32574. image: {
  32575. source: "./media/characters/sini/back.svg",
  32576. extra: 743/701,
  32577. bottom: 12/755
  32578. }
  32579. },
  32580. mawAnthro: {
  32581. height: math.unit(2.14, "feet"),
  32582. name: "Maw (Anthro)",
  32583. image: {
  32584. source: "./media/characters/sini/maw-anthro.svg"
  32585. }
  32586. },
  32587. dick: {
  32588. height: math.unit(1.45, "feet"),
  32589. name: "Dick (Anthro)",
  32590. image: {
  32591. source: "./media/characters/sini/dick-anthro.svg"
  32592. }
  32593. },
  32594. feral: {
  32595. height: math.unit(16, "feet"),
  32596. name: "Feral",
  32597. image: {
  32598. source: "./media/characters/sini/feral.svg",
  32599. extra: 814/605,
  32600. bottom: 11/825
  32601. }
  32602. },
  32603. mawFeral: {
  32604. height: math.unit(5.66, "feet"),
  32605. name: "Maw-feral",
  32606. image: {
  32607. source: "./media/characters/sini/maw-feral.svg"
  32608. }
  32609. },
  32610. footFeral: {
  32611. height: math.unit(5.17, "feet"),
  32612. name: "Foot-feral",
  32613. image: {
  32614. source: "./media/characters/sini/foot-feral.svg"
  32615. }
  32616. },
  32617. },
  32618. [
  32619. {
  32620. name: "Normal",
  32621. height: math.unit(7, "feet"),
  32622. default: true
  32623. },
  32624. ]
  32625. ))
  32626. characterMakers.push(() => makeCharacter(
  32627. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32628. {
  32629. side: {
  32630. height: math.unit(13, "meters"),
  32631. weight: math.unit(9072, "kg"),
  32632. name: "Side",
  32633. image: {
  32634. source: "./media/characters/raylldo/side.svg",
  32635. extra: 403/344,
  32636. bottom: 42/445
  32637. }
  32638. },
  32639. leaping: {
  32640. height: math.unit(12.3, "meters"),
  32641. weight: math.unit(9072, "kg"),
  32642. name: "Leaping",
  32643. image: {
  32644. source: "./media/characters/raylldo/leaping.svg",
  32645. extra: 470/249,
  32646. bottom: 13/483
  32647. }
  32648. },
  32649. flying: {
  32650. height: math.unit(18, "meters"),
  32651. weight: math.unit(9072, "kg"),
  32652. name: "Flying",
  32653. image: {
  32654. source: "./media/characters/raylldo/flying.svg"
  32655. }
  32656. },
  32657. head: {
  32658. height: math.unit(5.85, "meters"),
  32659. name: "Head",
  32660. image: {
  32661. source: "./media/characters/raylldo/head.svg"
  32662. }
  32663. },
  32664. maw: {
  32665. height: math.unit(5.32, "meters"),
  32666. name: "Maw",
  32667. image: {
  32668. source: "./media/characters/raylldo/maw.svg"
  32669. }
  32670. },
  32671. eye: {
  32672. height: math.unit(0.54, "meters"),
  32673. name: "Eye",
  32674. image: {
  32675. source: "./media/characters/raylldo/eye.svg"
  32676. }
  32677. },
  32678. },
  32679. [
  32680. {
  32681. name: "Normal",
  32682. height: math.unit(13, "meters"),
  32683. default: true
  32684. },
  32685. ]
  32686. ))
  32687. characterMakers.push(() => makeCharacter(
  32688. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32689. {
  32690. anthroFront: {
  32691. height: math.unit(9, "feet"),
  32692. weight: math.unit(600, "lb"),
  32693. name: "Anthro (Front)",
  32694. image: {
  32695. source: "./media/characters/glint/anthro-front.svg",
  32696. extra: 1097/1018,
  32697. bottom: 28/1125
  32698. }
  32699. },
  32700. anthroBack: {
  32701. height: math.unit(9, "feet"),
  32702. weight: math.unit(600, "lb"),
  32703. name: "Anthro (Back)",
  32704. image: {
  32705. source: "./media/characters/glint/anthro-back.svg",
  32706. extra: 1154/997,
  32707. bottom: 36/1190
  32708. }
  32709. },
  32710. feral: {
  32711. height: math.unit(11, "feet"),
  32712. weight: math.unit(50000, "lb"),
  32713. name: "Feral",
  32714. image: {
  32715. source: "./media/characters/glint/feral.svg",
  32716. extra: 3035/1585,
  32717. bottom: 1169/4204
  32718. }
  32719. },
  32720. dickAnthro: {
  32721. height: math.unit(0.7, "meters"),
  32722. name: "Dick (Anthro)",
  32723. image: {
  32724. source: "./media/characters/glint/dick-anthro.svg"
  32725. }
  32726. },
  32727. dickFeral: {
  32728. height: math.unit(2.65, "meters"),
  32729. name: "Dick (Feral)",
  32730. image: {
  32731. source: "./media/characters/glint/dick-feral.svg"
  32732. }
  32733. },
  32734. slitHidden: {
  32735. height: math.unit(5.85, "meters"),
  32736. name: "Slit (Hidden)",
  32737. image: {
  32738. source: "./media/characters/glint/slit-hidden.svg"
  32739. }
  32740. },
  32741. slitErect: {
  32742. height: math.unit(5.85, "meters"),
  32743. name: "Slit (Erect)",
  32744. image: {
  32745. source: "./media/characters/glint/slit-erect.svg"
  32746. }
  32747. },
  32748. mawAnthro: {
  32749. height: math.unit(0.63, "meters"),
  32750. name: "Maw (Anthro)",
  32751. image: {
  32752. source: "./media/characters/glint/maw.svg"
  32753. }
  32754. },
  32755. mawFeral: {
  32756. height: math.unit(2.89, "meters"),
  32757. name: "Maw (Feral)",
  32758. image: {
  32759. source: "./media/characters/glint/maw.svg"
  32760. }
  32761. },
  32762. },
  32763. [
  32764. {
  32765. name: "Normal",
  32766. height: math.unit(9, "feet"),
  32767. default: true
  32768. },
  32769. ]
  32770. ))
  32771. characterMakers.push(() => makeCharacter(
  32772. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32773. {
  32774. side: {
  32775. height: math.unit(15, "feet"),
  32776. weight: math.unit(5000, "kg"),
  32777. name: "Side",
  32778. image: {
  32779. source: "./media/characters/kairne/side.svg",
  32780. extra: 979/811,
  32781. bottom: 13/992
  32782. }
  32783. },
  32784. front: {
  32785. height: math.unit(15, "feet"),
  32786. weight: math.unit(5000, "kg"),
  32787. name: "Front",
  32788. image: {
  32789. source: "./media/characters/kairne/front.svg",
  32790. extra: 908/814,
  32791. bottom: 26/934
  32792. }
  32793. },
  32794. sideNsfw: {
  32795. height: math.unit(15, "feet"),
  32796. weight: math.unit(5000, "kg"),
  32797. name: "Side (NSFW)",
  32798. image: {
  32799. source: "./media/characters/kairne/side-nsfw.svg",
  32800. extra: 979/811,
  32801. bottom: 13/992
  32802. }
  32803. },
  32804. frontNsfw: {
  32805. height: math.unit(15, "feet"),
  32806. weight: math.unit(5000, "kg"),
  32807. name: "Front (NSFW)",
  32808. image: {
  32809. source: "./media/characters/kairne/front-nsfw.svg",
  32810. extra: 908/814,
  32811. bottom: 26/934
  32812. }
  32813. },
  32814. dickCaged: {
  32815. height: math.unit(0.65, "meters"),
  32816. name: "Dick-caged",
  32817. image: {
  32818. source: "./media/characters/kairne/dick-caged.svg"
  32819. }
  32820. },
  32821. dick: {
  32822. height: math.unit(0.79, "meters"),
  32823. name: "Dick",
  32824. image: {
  32825. source: "./media/characters/kairne/dick.svg"
  32826. }
  32827. },
  32828. genitals: {
  32829. height: math.unit(1.29, "meters"),
  32830. name: "Genitals",
  32831. image: {
  32832. source: "./media/characters/kairne/genitals.svg"
  32833. }
  32834. },
  32835. maw: {
  32836. height: math.unit(1.73, "meters"),
  32837. name: "Maw",
  32838. image: {
  32839. source: "./media/characters/kairne/maw.svg"
  32840. }
  32841. },
  32842. },
  32843. [
  32844. {
  32845. name: "Normal",
  32846. height: math.unit(15, "feet"),
  32847. default: true
  32848. },
  32849. ]
  32850. ))
  32851. characterMakers.push(() => makeCharacter(
  32852. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32853. {
  32854. front: {
  32855. height: math.unit(5 + 8/12, "feet"),
  32856. weight: math.unit(139, "lb"),
  32857. name: "Front",
  32858. image: {
  32859. source: "./media/characters/biscuit-jackal/front.svg",
  32860. extra: 2106/1961,
  32861. bottom: 58/2164
  32862. }
  32863. },
  32864. back: {
  32865. height: math.unit(5 + 8/12, "feet"),
  32866. weight: math.unit(139, "lb"),
  32867. name: "Back",
  32868. image: {
  32869. source: "./media/characters/biscuit-jackal/back.svg",
  32870. extra: 2132/1976,
  32871. bottom: 57/2189
  32872. }
  32873. },
  32874. werejackal: {
  32875. height: math.unit(6 + 3/12, "feet"),
  32876. weight: math.unit(188, "lb"),
  32877. name: "Werejackal",
  32878. image: {
  32879. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32880. extra: 2373/2178,
  32881. bottom: 53/2426
  32882. }
  32883. },
  32884. },
  32885. [
  32886. {
  32887. name: "Normal",
  32888. height: math.unit(5 + 8/12, "feet"),
  32889. default: true
  32890. },
  32891. ]
  32892. ))
  32893. characterMakers.push(() => makeCharacter(
  32894. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32895. {
  32896. front: {
  32897. height: math.unit(140, "cm"),
  32898. weight: math.unit(45, "kg"),
  32899. name: "Front",
  32900. image: {
  32901. source: "./media/characters/tayra-white/front.svg",
  32902. extra: 2229/2192,
  32903. bottom: 75/2304
  32904. }
  32905. },
  32906. },
  32907. [
  32908. {
  32909. name: "Normal",
  32910. height: math.unit(140, "cm"),
  32911. default: true
  32912. },
  32913. ]
  32914. ))
  32915. characterMakers.push(() => makeCharacter(
  32916. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32917. {
  32918. front: {
  32919. height: math.unit(4 + 5/12, "feet"),
  32920. name: "Front",
  32921. image: {
  32922. source: "./media/characters/scoop/front.svg",
  32923. extra: 1257/1136,
  32924. bottom: 69/1326
  32925. }
  32926. },
  32927. back: {
  32928. height: math.unit(4 + 5/12, "feet"),
  32929. name: "Back",
  32930. image: {
  32931. source: "./media/characters/scoop/back.svg",
  32932. extra: 1321/1152,
  32933. bottom: 32/1353
  32934. }
  32935. },
  32936. maw: {
  32937. height: math.unit(0.68, "feet"),
  32938. name: "Maw",
  32939. image: {
  32940. source: "./media/characters/scoop/maw.svg"
  32941. }
  32942. },
  32943. },
  32944. [
  32945. {
  32946. name: "Really Small",
  32947. height: math.unit(1, "mm")
  32948. },
  32949. {
  32950. name: "Micro",
  32951. height: math.unit(1, "inch")
  32952. },
  32953. {
  32954. name: "Normal",
  32955. height: math.unit(4 + 5/12, "feet"),
  32956. default: true
  32957. },
  32958. {
  32959. name: "Macro",
  32960. height: math.unit(200, "feet")
  32961. },
  32962. {
  32963. name: "Megamacro",
  32964. height: math.unit(3240, "feet")
  32965. },
  32966. {
  32967. name: "Teramacro",
  32968. height: math.unit(2500, "miles")
  32969. },
  32970. ]
  32971. ))
  32972. characterMakers.push(() => makeCharacter(
  32973. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32974. {
  32975. front: {
  32976. height: math.unit(15 + 7/12, "feet"),
  32977. name: "Front",
  32978. image: {
  32979. source: "./media/characters/saphinara/front.svg",
  32980. extra: 604/546,
  32981. bottom: 19/623
  32982. }
  32983. },
  32984. side: {
  32985. height: math.unit(15 + 7/12, "feet"),
  32986. name: "Side",
  32987. image: {
  32988. source: "./media/characters/saphinara/side.svg",
  32989. extra: 605/547,
  32990. bottom: 6/611
  32991. }
  32992. },
  32993. back: {
  32994. height: math.unit(15 + 7/12, "feet"),
  32995. name: "Back",
  32996. image: {
  32997. source: "./media/characters/saphinara/back.svg",
  32998. extra: 591/531,
  32999. bottom: 13/604
  33000. }
  33001. },
  33002. frontTail: {
  33003. height: math.unit(15 + 7/12, "feet"),
  33004. name: "Front (Full Tail)",
  33005. image: {
  33006. source: "./media/characters/saphinara/front-tail.svg",
  33007. extra: 748/547,
  33008. bottom: 66/814
  33009. }
  33010. },
  33011. },
  33012. [
  33013. {
  33014. name: "Normal",
  33015. height: math.unit(15 + 7/12, "feet"),
  33016. default: true
  33017. },
  33018. {
  33019. name: "Angry",
  33020. height: math.unit(30 + 6/12, "feet")
  33021. },
  33022. {
  33023. name: "Enraged",
  33024. height: math.unit(102 + 1/12, "feet")
  33025. },
  33026. ]
  33027. ))
  33028. characterMakers.push(() => makeCharacter(
  33029. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  33030. {
  33031. front: {
  33032. height: math.unit(6 + 8/12, "feet"),
  33033. weight: math.unit(300, "lb"),
  33034. name: "Front",
  33035. image: {
  33036. source: "./media/characters/jrain/front.svg",
  33037. extra: 3039/2865,
  33038. bottom: 399/3438
  33039. }
  33040. },
  33041. back: {
  33042. height: math.unit(6 + 8/12, "feet"),
  33043. weight: math.unit(300, "lb"),
  33044. name: "Back",
  33045. image: {
  33046. source: "./media/characters/jrain/back.svg",
  33047. extra: 3089/2938,
  33048. bottom: 172/3261
  33049. }
  33050. },
  33051. head: {
  33052. height: math.unit(2.14, "feet"),
  33053. name: "Head",
  33054. image: {
  33055. source: "./media/characters/jrain/head.svg"
  33056. }
  33057. },
  33058. maw: {
  33059. height: math.unit(1.77, "feet"),
  33060. name: "Maw",
  33061. image: {
  33062. source: "./media/characters/jrain/maw.svg"
  33063. }
  33064. },
  33065. leftHand: {
  33066. height: math.unit(1.1, "feet"),
  33067. name: "Left Hand",
  33068. image: {
  33069. source: "./media/characters/jrain/left-hand.svg"
  33070. }
  33071. },
  33072. rightHand: {
  33073. height: math.unit(1.1, "feet"),
  33074. name: "Right Hand",
  33075. image: {
  33076. source: "./media/characters/jrain/right-hand.svg"
  33077. }
  33078. },
  33079. eye: {
  33080. height: math.unit(0.35, "feet"),
  33081. name: "Eye",
  33082. image: {
  33083. source: "./media/characters/jrain/eye.svg"
  33084. }
  33085. },
  33086. },
  33087. [
  33088. {
  33089. name: "Normal",
  33090. height: math.unit(6 + 8/12, "feet"),
  33091. default: true
  33092. },
  33093. {
  33094. name: "Casually Large",
  33095. height: math.unit(25, "feet")
  33096. },
  33097. {
  33098. name: "Giant",
  33099. height: math.unit(100, "feet")
  33100. },
  33101. {
  33102. name: "Kaiju",
  33103. height: math.unit(300, "feet")
  33104. },
  33105. ]
  33106. ))
  33107. characterMakers.push(() => makeCharacter(
  33108. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33109. {
  33110. dragon: {
  33111. height: math.unit(5, "meters"),
  33112. name: "Dragon",
  33113. image: {
  33114. source: "./media/characters/sabrina/dragon.svg",
  33115. extra: 3670 / 2365,
  33116. bottom: 333 / 4003
  33117. }
  33118. },
  33119. gryphon: {
  33120. height: math.unit(3, "meters"),
  33121. name: "Gryphon",
  33122. image: {
  33123. source: "./media/characters/sabrina/gryphon.svg",
  33124. extra: 1576 / 945,
  33125. bottom: 71 / 1647
  33126. }
  33127. },
  33128. snake: {
  33129. height: math.unit(12, "meters"),
  33130. name: "Snake",
  33131. image: {
  33132. source: "./media/characters/sabrina/snake.svg",
  33133. extra: 1758 / 1320,
  33134. bottom: 186 / 1944
  33135. }
  33136. },
  33137. collar: {
  33138. height: math.unit(1.86, "meters"),
  33139. name: "Collar",
  33140. image: {
  33141. source: "./media/characters/sabrina/collar.svg"
  33142. }
  33143. },
  33144. eye: {
  33145. height: math.unit(0.53, "meters"),
  33146. name: "Eye",
  33147. image: {
  33148. source: "./media/characters/sabrina/eye.svg"
  33149. }
  33150. },
  33151. foot: {
  33152. height: math.unit(1.86, "meters"),
  33153. name: "Foot",
  33154. image: {
  33155. source: "./media/characters/sabrina/foot.svg"
  33156. }
  33157. },
  33158. hand: {
  33159. height: math.unit(1.32, "meters"),
  33160. name: "Hand",
  33161. image: {
  33162. source: "./media/characters/sabrina/hand.svg"
  33163. }
  33164. },
  33165. head: {
  33166. height: math.unit(2.44, "meters"),
  33167. name: "Head",
  33168. image: {
  33169. source: "./media/characters/sabrina/head.svg"
  33170. }
  33171. },
  33172. headAngry: {
  33173. height: math.unit(2.44, "meters"),
  33174. name: "Head (Angry))",
  33175. image: {
  33176. source: "./media/characters/sabrina/head-angry.svg"
  33177. }
  33178. },
  33179. maw: {
  33180. height: math.unit(1.65, "meters"),
  33181. name: "Maw",
  33182. image: {
  33183. source: "./media/characters/sabrina/maw.svg"
  33184. }
  33185. },
  33186. spikes: {
  33187. height: math.unit(1.69, "meters"),
  33188. name: "Spikes",
  33189. image: {
  33190. source: "./media/characters/sabrina/spikes.svg"
  33191. }
  33192. },
  33193. stomach: {
  33194. height: math.unit(1.15, "meters"),
  33195. name: "Stomach",
  33196. image: {
  33197. source: "./media/characters/sabrina/stomach.svg"
  33198. }
  33199. },
  33200. tongue: {
  33201. height: math.unit(1.27, "meters"),
  33202. name: "Tongue",
  33203. image: {
  33204. source: "./media/characters/sabrina/tongue.svg"
  33205. }
  33206. },
  33207. wingDorsal: {
  33208. height: math.unit(4.85, "meters"),
  33209. name: "Wing (Dorsal)",
  33210. image: {
  33211. source: "./media/characters/sabrina/wing-dorsal.svg"
  33212. }
  33213. },
  33214. wingVentral: {
  33215. height: math.unit(4.85, "meters"),
  33216. name: "Wing (Ventral)",
  33217. image: {
  33218. source: "./media/characters/sabrina/wing-ventral.svg"
  33219. }
  33220. },
  33221. },
  33222. [
  33223. {
  33224. name: "Normal",
  33225. height: math.unit(5, "meters"),
  33226. default: true
  33227. },
  33228. ]
  33229. ))
  33230. characterMakers.push(() => makeCharacter(
  33231. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33232. {
  33233. frontMaid: {
  33234. height: math.unit(5 + 5/12, "feet"),
  33235. weight: math.unit(130, "lb"),
  33236. name: "Front (Maid)",
  33237. image: {
  33238. source: "./media/characters/midnight-tales/front-maid.svg",
  33239. extra: 489/454,
  33240. bottom: 61/550
  33241. }
  33242. },
  33243. frontFormal: {
  33244. height: math.unit(5 + 5/12, "feet"),
  33245. weight: math.unit(130, "lb"),
  33246. name: "Front (Formal)",
  33247. image: {
  33248. source: "./media/characters/midnight-tales/front-formal.svg",
  33249. extra: 489/454,
  33250. bottom: 61/550
  33251. }
  33252. },
  33253. back: {
  33254. height: math.unit(5 + 5/12, "feet"),
  33255. weight: math.unit(130, "lb"),
  33256. name: "Back",
  33257. image: {
  33258. source: "./media/characters/midnight-tales/back.svg",
  33259. extra: 498/456,
  33260. bottom: 33/531
  33261. }
  33262. },
  33263. frontBeast: {
  33264. height: math.unit(40, "feet"),
  33265. weight: math.unit(64000, "lb"),
  33266. name: "Front (Beast)",
  33267. image: {
  33268. source: "./media/characters/midnight-tales/front-beast.svg",
  33269. extra: 927/860,
  33270. bottom: 53/980
  33271. }
  33272. },
  33273. backBeast: {
  33274. height: math.unit(40, "feet"),
  33275. weight: math.unit(64000, "lb"),
  33276. name: "Back (Beast)",
  33277. image: {
  33278. source: "./media/characters/midnight-tales/back-beast.svg",
  33279. extra: 929/855,
  33280. bottom: 16/945
  33281. }
  33282. },
  33283. footBeast: {
  33284. height: math.unit(6.7, "feet"),
  33285. name: "Foot (Beast)",
  33286. image: {
  33287. source: "./media/characters/midnight-tales/foot-beast.svg"
  33288. }
  33289. },
  33290. headBeast: {
  33291. height: math.unit(8, "feet"),
  33292. name: "Head (Beast)",
  33293. image: {
  33294. source: "./media/characters/midnight-tales/head-beast.svg"
  33295. }
  33296. },
  33297. },
  33298. [
  33299. {
  33300. name: "Normal",
  33301. height: math.unit(5 + 5 / 12, "feet"),
  33302. default: true
  33303. },
  33304. {
  33305. name: "Macro",
  33306. height: math.unit(25, "feet")
  33307. },
  33308. ]
  33309. ))
  33310. characterMakers.push(() => makeCharacter(
  33311. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33312. {
  33313. front: {
  33314. height: math.unit(5 + 10/12, "feet"),
  33315. name: "Front",
  33316. image: {
  33317. source: "./media/characters/argon/front.svg",
  33318. extra: 2009/1935,
  33319. bottom: 118/2127
  33320. }
  33321. },
  33322. back: {
  33323. height: math.unit(5 + 10/12, "feet"),
  33324. name: "Back",
  33325. image: {
  33326. source: "./media/characters/argon/back.svg",
  33327. extra: 2047/1992,
  33328. bottom: 20/2067
  33329. }
  33330. },
  33331. frontDressed: {
  33332. height: math.unit(5 + 10/12, "feet"),
  33333. name: "Front (Dressed)",
  33334. image: {
  33335. source: "./media/characters/argon/front-dressed.svg",
  33336. extra: 2009/1935,
  33337. bottom: 118/2127
  33338. }
  33339. },
  33340. },
  33341. [
  33342. {
  33343. name: "Normal",
  33344. height: math.unit(5 + 10/12, "feet"),
  33345. default: true
  33346. },
  33347. ]
  33348. ))
  33349. characterMakers.push(() => makeCharacter(
  33350. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33351. {
  33352. front: {
  33353. height: math.unit(8 + 6/12, "feet"),
  33354. weight: math.unit(1150, "lb"),
  33355. name: "Front",
  33356. image: {
  33357. source: "./media/characters/kichi/front.svg",
  33358. extra: 1267/1164,
  33359. bottom: 61/1328
  33360. }
  33361. },
  33362. back: {
  33363. height: math.unit(8 + 6/12, "feet"),
  33364. weight: math.unit(1150, "lb"),
  33365. name: "Back",
  33366. image: {
  33367. source: "./media/characters/kichi/back.svg",
  33368. extra: 1273/1166,
  33369. bottom: 33/1306
  33370. }
  33371. },
  33372. },
  33373. [
  33374. {
  33375. name: "Normal",
  33376. height: math.unit(8 + 6/12, "feet"),
  33377. default: true
  33378. },
  33379. ]
  33380. ))
  33381. characterMakers.push(() => makeCharacter(
  33382. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33383. {
  33384. front: {
  33385. height: math.unit(6, "feet"),
  33386. weight: math.unit(210, "lb"),
  33387. name: "Front",
  33388. image: {
  33389. source: "./media/characters/manetel-greyscale/front.svg",
  33390. extra: 350/312,
  33391. bottom: 8/358
  33392. }
  33393. },
  33394. },
  33395. [
  33396. {
  33397. name: "Micro",
  33398. height: math.unit(2, "inches")
  33399. },
  33400. {
  33401. name: "Normal",
  33402. height: math.unit(6, "feet"),
  33403. default: true
  33404. },
  33405. {
  33406. name: "Minimacro",
  33407. height: math.unit(17, "feet")
  33408. },
  33409. {
  33410. name: "Macro",
  33411. height: math.unit(117, "feet")
  33412. },
  33413. ]
  33414. ))
  33415. characterMakers.push(() => makeCharacter(
  33416. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33417. {
  33418. side: {
  33419. height: math.unit(5 + 1/12, "feet"),
  33420. weight: math.unit(418, "lb"),
  33421. name: "Side",
  33422. image: {
  33423. source: "./media/characters/softpurr/side.svg",
  33424. extra: 1993/1945,
  33425. bottom: 134/2127
  33426. }
  33427. },
  33428. front: {
  33429. height: math.unit(5 + 1/12, "feet"),
  33430. weight: math.unit(418, "lb"),
  33431. name: "Front",
  33432. image: {
  33433. source: "./media/characters/softpurr/front.svg",
  33434. extra: 1950/1856,
  33435. bottom: 174/2124
  33436. }
  33437. },
  33438. paw: {
  33439. height: math.unit(1, "feet"),
  33440. name: "Paw",
  33441. image: {
  33442. source: "./media/characters/softpurr/paw.svg"
  33443. }
  33444. },
  33445. },
  33446. [
  33447. {
  33448. name: "Normal",
  33449. height: math.unit(5 + 1/12, "feet"),
  33450. default: true
  33451. },
  33452. ]
  33453. ))
  33454. characterMakers.push(() => makeCharacter(
  33455. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33456. {
  33457. front: {
  33458. height: math.unit(260, "meters"),
  33459. name: "Front",
  33460. image: {
  33461. source: "./media/characters/anahita/front.svg",
  33462. extra: 665/635,
  33463. bottom: 89/754
  33464. }
  33465. },
  33466. },
  33467. [
  33468. {
  33469. name: "Macro",
  33470. height: math.unit(260, "meters"),
  33471. default: true
  33472. },
  33473. ]
  33474. ))
  33475. characterMakers.push(() => makeCharacter(
  33476. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33477. {
  33478. front: {
  33479. height: math.unit(4 + 10/12, "feet"),
  33480. weight: math.unit(160, "lb"),
  33481. name: "Front",
  33482. image: {
  33483. source: "./media/characters/chip-mouse/front.svg",
  33484. extra: 3528/3408,
  33485. bottom: 0/3528
  33486. }
  33487. },
  33488. frontNsfw: {
  33489. height: math.unit(4 + 10/12, "feet"),
  33490. weight: math.unit(160, "lb"),
  33491. name: "Front (NSFW)",
  33492. image: {
  33493. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33494. extra: 3528/3408,
  33495. bottom: 0/3528
  33496. }
  33497. },
  33498. },
  33499. [
  33500. {
  33501. name: "Normal",
  33502. height: math.unit(4 + 10/12, "feet"),
  33503. default: true
  33504. },
  33505. ]
  33506. ))
  33507. characterMakers.push(() => makeCharacter(
  33508. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33509. {
  33510. side: {
  33511. height: math.unit(10, "feet"),
  33512. weight: math.unit(14000, "lb"),
  33513. name: "Side",
  33514. image: {
  33515. source: "./media/characters/kremm/side.svg",
  33516. extra: 1390/1053,
  33517. bottom: 90/1480
  33518. }
  33519. },
  33520. gut: {
  33521. height: math.unit(5.8, "feet"),
  33522. name: "Gut",
  33523. image: {
  33524. source: "./media/characters/kremm/gut.svg"
  33525. }
  33526. },
  33527. ass: {
  33528. height: math.unit(6.1, "feet"),
  33529. name: "Ass",
  33530. image: {
  33531. source: "./media/characters/kremm/ass.svg"
  33532. }
  33533. },
  33534. jaws: {
  33535. height: math.unit(2.2, "feet"),
  33536. name: "Jaws",
  33537. image: {
  33538. source: "./media/characters/kremm/jaws.svg"
  33539. }
  33540. },
  33541. dick: {
  33542. height: math.unit(4.26, "feet"),
  33543. name: "Dick",
  33544. image: {
  33545. source: "./media/characters/kremm/dick.svg"
  33546. }
  33547. },
  33548. },
  33549. [
  33550. {
  33551. name: "Normal",
  33552. height: math.unit(10, "feet"),
  33553. default: true
  33554. },
  33555. ]
  33556. ))
  33557. characterMakers.push(() => makeCharacter(
  33558. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33559. {
  33560. front: {
  33561. height: math.unit(30, "stories"),
  33562. name: "Front",
  33563. image: {
  33564. source: "./media/characters/kai/front.svg",
  33565. extra: 1892/1718,
  33566. bottom: 162/2054
  33567. }
  33568. },
  33569. },
  33570. [
  33571. {
  33572. name: "Macro",
  33573. height: math.unit(30, "stories"),
  33574. default: true
  33575. },
  33576. ]
  33577. ))
  33578. characterMakers.push(() => makeCharacter(
  33579. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33580. {
  33581. front: {
  33582. height: math.unit(6 + 4/12, "feet"),
  33583. weight: math.unit(145, "lb"),
  33584. name: "Front",
  33585. image: {
  33586. source: "./media/characters/sykes/front.svg",
  33587. extra: 1321 / 1187,
  33588. bottom: 66 / 1387
  33589. }
  33590. },
  33591. back: {
  33592. height: math.unit(6 + 4/12, "feet"),
  33593. weight: math.unit(145, "lb"),
  33594. name: "Back",
  33595. image: {
  33596. source: "./media/characters/sykes/back.svg",
  33597. extra: 1326/1181,
  33598. bottom: 31/1357
  33599. }
  33600. },
  33601. handBack: {
  33602. height: math.unit(0.9, "feet"),
  33603. name: "Hand (Back)",
  33604. image: {
  33605. source: "./media/characters/sykes/hand-back.svg"
  33606. }
  33607. },
  33608. handFront: {
  33609. height: math.unit(0.839, "feet"),
  33610. name: "Hand (Front)",
  33611. image: {
  33612. source: "./media/characters/sykes/hand-front.svg"
  33613. }
  33614. },
  33615. leftFoot: {
  33616. height: math.unit(1.2, "feet"),
  33617. name: "Foot (Left)",
  33618. image: {
  33619. source: "./media/characters/sykes/foot-left.svg"
  33620. }
  33621. },
  33622. rightFoot: {
  33623. height: math.unit(1.2, "feet"),
  33624. name: "Foot (Right)",
  33625. image: {
  33626. source: "./media/characters/sykes/foot-right.svg"
  33627. }
  33628. },
  33629. maw: {
  33630. height: math.unit(1.93, "feet"),
  33631. name: "Maw",
  33632. image: {
  33633. source: "./media/characters/sykes/maw.svg"
  33634. }
  33635. },
  33636. teeth: {
  33637. height: math.unit(0.51, "feet"),
  33638. name: "Teeth",
  33639. image: {
  33640. source: "./media/characters/sykes/teeth.svg"
  33641. }
  33642. },
  33643. tongue: {
  33644. height: math.unit(2.13, "feet"),
  33645. name: "Tongue",
  33646. image: {
  33647. source: "./media/characters/sykes/tongue.svg"
  33648. }
  33649. },
  33650. uvula: {
  33651. height: math.unit(0.16, "feet"),
  33652. name: "Uvula",
  33653. image: {
  33654. source: "./media/characters/sykes/uvula.svg"
  33655. }
  33656. },
  33657. collar: {
  33658. height: math.unit(0.287, "feet"),
  33659. name: "Collar",
  33660. image: {
  33661. source: "./media/characters/sykes/collar.svg"
  33662. }
  33663. },
  33664. },
  33665. [
  33666. {
  33667. name: "Shrunken",
  33668. height: math.unit(5, "inches")
  33669. },
  33670. {
  33671. name: "Normal",
  33672. height: math.unit(6 + 4 / 12, "feet"),
  33673. default: true
  33674. },
  33675. {
  33676. name: "Big",
  33677. height: math.unit(15, "feet")
  33678. },
  33679. ]
  33680. ))
  33681. characterMakers.push(() => makeCharacter(
  33682. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33683. {
  33684. front: {
  33685. height: math.unit(5 + 8/12, "feet"),
  33686. weight: math.unit(190, "lb"),
  33687. name: "Front",
  33688. image: {
  33689. source: "./media/characters/oven-otter/front.svg",
  33690. extra: 1809/1740,
  33691. bottom: 181/1990
  33692. }
  33693. },
  33694. back: {
  33695. height: math.unit(5 + 8/12, "feet"),
  33696. weight: math.unit(190, "lb"),
  33697. name: "Back",
  33698. image: {
  33699. source: "./media/characters/oven-otter/back.svg",
  33700. extra: 1709/1635,
  33701. bottom: 118/1827
  33702. }
  33703. },
  33704. hand: {
  33705. height: math.unit(1.07, "feet"),
  33706. name: "Hand",
  33707. image: {
  33708. source: "./media/characters/oven-otter/hand.svg"
  33709. }
  33710. },
  33711. beans: {
  33712. height: math.unit(1.74, "feet"),
  33713. name: "Beans",
  33714. image: {
  33715. source: "./media/characters/oven-otter/beans.svg"
  33716. }
  33717. },
  33718. },
  33719. [
  33720. {
  33721. name: "Micro",
  33722. height: math.unit(0.5, "inches")
  33723. },
  33724. {
  33725. name: "Normal",
  33726. height: math.unit(5 + 8/12, "feet"),
  33727. default: true
  33728. },
  33729. {
  33730. name: "Macro",
  33731. height: math.unit(250, "feet")
  33732. },
  33733. {
  33734. name: "Really High",
  33735. height: math.unit(420, "feet")
  33736. },
  33737. ]
  33738. ))
  33739. characterMakers.push(() => makeCharacter(
  33740. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33741. {
  33742. front: {
  33743. height: math.unit(5, "meters"),
  33744. weight: math.unit(292000000000000, "kg"),
  33745. name: "Front",
  33746. image: {
  33747. source: "./media/characters/devourer/front.svg",
  33748. extra: 1800/1733,
  33749. bottom: 211/2011
  33750. }
  33751. },
  33752. maw: {
  33753. height: math.unit(1.1, "meter"),
  33754. name: "Maw",
  33755. image: {
  33756. source: "./media/characters/devourer/maw.svg"
  33757. }
  33758. },
  33759. },
  33760. [
  33761. {
  33762. name: "Small",
  33763. height: math.unit(3, "meters")
  33764. },
  33765. {
  33766. name: "Large",
  33767. height: math.unit(5, "meters"),
  33768. default: true
  33769. },
  33770. ]
  33771. ))
  33772. characterMakers.push(() => makeCharacter(
  33773. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33774. {
  33775. front: {
  33776. height: math.unit(6, "feet"),
  33777. weight: math.unit(400, "lb"),
  33778. name: "Front",
  33779. image: {
  33780. source: "./media/characters/ellarby/front.svg",
  33781. extra: 1909/1763,
  33782. bottom: 80/1989
  33783. }
  33784. },
  33785. back: {
  33786. height: math.unit(6, "feet"),
  33787. weight: math.unit(400, "lb"),
  33788. name: "Back",
  33789. image: {
  33790. source: "./media/characters/ellarby/back.svg",
  33791. extra: 1914/1784,
  33792. bottom: 172/2086
  33793. }
  33794. },
  33795. },
  33796. [
  33797. {
  33798. name: "Mischief",
  33799. height: math.unit(18, "inches")
  33800. },
  33801. {
  33802. name: "Trouble",
  33803. height: math.unit(12, "feet")
  33804. },
  33805. {
  33806. name: "Havoc",
  33807. height: math.unit(200, "feet"),
  33808. default: true
  33809. },
  33810. {
  33811. name: "Pandemonium",
  33812. height: math.unit(1, "mile")
  33813. },
  33814. {
  33815. name: "Catastrophe",
  33816. height: math.unit(100, "miles")
  33817. },
  33818. ]
  33819. ))
  33820. characterMakers.push(() => makeCharacter(
  33821. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33822. {
  33823. front: {
  33824. height: math.unit(4.7, "meters"),
  33825. weight: math.unit(6500, "kg"),
  33826. name: "Front",
  33827. image: {
  33828. source: "./media/characters/vex/front.svg",
  33829. extra: 1288/1140,
  33830. bottom: 100/1388
  33831. }
  33832. },
  33833. },
  33834. [
  33835. {
  33836. name: "Normal",
  33837. height: math.unit(4.7, "meters"),
  33838. default: true
  33839. },
  33840. ]
  33841. ))
  33842. characterMakers.push(() => makeCharacter(
  33843. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33844. {
  33845. normal: {
  33846. height: math.unit(6, "feet"),
  33847. weight: math.unit(350, "lb"),
  33848. name: "Normal",
  33849. image: {
  33850. source: "./media/characters/teshy/normal.svg",
  33851. extra: 1795/1735,
  33852. bottom: 16/1811
  33853. }
  33854. },
  33855. monsterFront: {
  33856. height: math.unit(12, "feet"),
  33857. weight: math.unit(4700, "lb"),
  33858. name: "Monster (Front)",
  33859. image: {
  33860. source: "./media/characters/teshy/monster-front.svg",
  33861. extra: 2042/2034,
  33862. bottom: 128/2170
  33863. }
  33864. },
  33865. monsterSide: {
  33866. height: math.unit(12, "feet"),
  33867. weight: math.unit(4700, "lb"),
  33868. name: "Monster (Side)",
  33869. image: {
  33870. source: "./media/characters/teshy/monster-side.svg",
  33871. extra: 2067/2056,
  33872. bottom: 70/2137
  33873. }
  33874. },
  33875. monsterBack: {
  33876. height: math.unit(12, "feet"),
  33877. weight: math.unit(4700, "lb"),
  33878. name: "Monster (Back)",
  33879. image: {
  33880. source: "./media/characters/teshy/monster-back.svg",
  33881. extra: 1921/1914,
  33882. bottom: 171/2092
  33883. }
  33884. },
  33885. },
  33886. [
  33887. {
  33888. name: "Normal",
  33889. height: math.unit(6, "feet"),
  33890. default: true
  33891. },
  33892. ]
  33893. ))
  33894. characterMakers.push(() => makeCharacter(
  33895. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33896. {
  33897. front: {
  33898. height: math.unit(6, "feet"),
  33899. name: "Front",
  33900. image: {
  33901. source: "./media/characters/ramey/front.svg",
  33902. extra: 790/787,
  33903. bottom: 27/817
  33904. }
  33905. },
  33906. },
  33907. [
  33908. {
  33909. name: "Normal",
  33910. height: math.unit(6, "feet"),
  33911. default: true
  33912. },
  33913. ]
  33914. ))
  33915. characterMakers.push(() => makeCharacter(
  33916. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33917. {
  33918. front: {
  33919. height: math.unit(5 + 5/12, "feet"),
  33920. weight: math.unit(120, "lb"),
  33921. name: "Front",
  33922. image: {
  33923. source: "./media/characters/phirae/front.svg",
  33924. extra: 2491/2436,
  33925. bottom: 38/2529
  33926. }
  33927. },
  33928. },
  33929. [
  33930. {
  33931. name: "Normal",
  33932. height: math.unit(5 + 5/12, "feet"),
  33933. default: true
  33934. },
  33935. ]
  33936. ))
  33937. characterMakers.push(() => makeCharacter(
  33938. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  33939. {
  33940. front: {
  33941. height: math.unit(5 + 3/12, "feet"),
  33942. name: "Front",
  33943. image: {
  33944. source: "./media/characters/stagglas/front.svg",
  33945. extra: 962/882,
  33946. bottom: 53/1015
  33947. }
  33948. },
  33949. feral: {
  33950. height: math.unit(335, "cm"),
  33951. name: "Feral",
  33952. image: {
  33953. source: "./media/characters/stagglas/feral.svg",
  33954. extra: 1732/1090,
  33955. bottom: 48/1780
  33956. }
  33957. },
  33958. },
  33959. [
  33960. {
  33961. name: "Normal",
  33962. height: math.unit(5 + 3/12, "feet"),
  33963. default: true
  33964. },
  33965. ]
  33966. ))
  33967. characterMakers.push(() => makeCharacter(
  33968. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33969. {
  33970. front: {
  33971. height: math.unit(5 + 4/12, "feet"),
  33972. weight: math.unit(145, "lb"),
  33973. name: "Front",
  33974. image: {
  33975. source: "./media/characters/starra/front.svg",
  33976. extra: 1790/1691,
  33977. bottom: 91/1881
  33978. }
  33979. },
  33980. },
  33981. [
  33982. {
  33983. name: "Normal",
  33984. height: math.unit(5 + 4/12, "feet"),
  33985. default: true
  33986. },
  33987. ]
  33988. ))
  33989. characterMakers.push(() => makeCharacter(
  33990. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33991. {
  33992. front: {
  33993. height: math.unit(2.2, "meters"),
  33994. name: "Front",
  33995. image: {
  33996. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33997. extra: 1194/1005,
  33998. bottom: 25/1219
  33999. }
  34000. },
  34001. },
  34002. [
  34003. {
  34004. name: "Normal",
  34005. height: math.unit(2.2, "meters"),
  34006. default: true
  34007. },
  34008. ]
  34009. ))
  34010. characterMakers.push(() => makeCharacter(
  34011. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  34012. {
  34013. side: {
  34014. height: math.unit(8 + 2/12, "feet"),
  34015. weight: math.unit(1240, "lb"),
  34016. name: "Side",
  34017. image: {
  34018. source: "./media/characters/mika-valentine/side.svg",
  34019. extra: 2670/2501,
  34020. bottom: 250/2920
  34021. }
  34022. },
  34023. },
  34024. [
  34025. {
  34026. name: "Normal",
  34027. height: math.unit(8 + 2/12, "feet"),
  34028. default: true
  34029. },
  34030. ]
  34031. ))
  34032. characterMakers.push(() => makeCharacter(
  34033. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34034. {
  34035. front: {
  34036. height: math.unit(7 + 2/12, "feet"),
  34037. name: "Front",
  34038. image: {
  34039. source: "./media/characters/xoltol/front.svg",
  34040. extra: 2212/2124,
  34041. bottom: 84/2296
  34042. }
  34043. },
  34044. side: {
  34045. height: math.unit(7 + 2/12, "feet"),
  34046. name: "Side",
  34047. image: {
  34048. source: "./media/characters/xoltol/side.svg",
  34049. extra: 2273/2197,
  34050. bottom: 26/2299
  34051. }
  34052. },
  34053. hand: {
  34054. height: math.unit(2.5, "feet"),
  34055. name: "Hand",
  34056. image: {
  34057. source: "./media/characters/xoltol/hand.svg"
  34058. }
  34059. },
  34060. },
  34061. [
  34062. {
  34063. name: "Small-ish",
  34064. height: math.unit(5 + 11/12, "feet")
  34065. },
  34066. {
  34067. name: "Normal",
  34068. height: math.unit(7 + 2/12, "feet")
  34069. },
  34070. {
  34071. name: "\"Macro\"",
  34072. height: math.unit(14 + 9/12, "feet"),
  34073. default: true
  34074. },
  34075. {
  34076. name: "Alternate Height",
  34077. height: math.unit(20, "feet")
  34078. },
  34079. {
  34080. name: "Actually Macro",
  34081. height: math.unit(100, "feet")
  34082. },
  34083. ]
  34084. ))
  34085. characterMakers.push(() => makeCharacter(
  34086. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34087. {
  34088. front: {
  34089. height: math.unit(5 + 2/12, "feet"),
  34090. name: "Front",
  34091. image: {
  34092. source: "./media/characters/kotetsu-redwood/front.svg",
  34093. extra: 1053/942,
  34094. bottom: 60/1113
  34095. }
  34096. },
  34097. },
  34098. [
  34099. {
  34100. name: "Normal",
  34101. height: math.unit(5 + 2/12, "feet"),
  34102. default: true
  34103. },
  34104. ]
  34105. ))
  34106. characterMakers.push(() => makeCharacter(
  34107. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34108. {
  34109. front: {
  34110. height: math.unit(2.4, "meters"),
  34111. weight: math.unit(125, "kg"),
  34112. name: "Front",
  34113. image: {
  34114. source: "./media/characters/lilith/front.svg",
  34115. extra: 1590/1513,
  34116. bottom: 203/1793
  34117. }
  34118. },
  34119. },
  34120. [
  34121. {
  34122. name: "Humanoid",
  34123. height: math.unit(2.4, "meters")
  34124. },
  34125. {
  34126. name: "Normal",
  34127. height: math.unit(6, "meters"),
  34128. default: true
  34129. },
  34130. {
  34131. name: "Largest",
  34132. height: math.unit(55, "meters")
  34133. },
  34134. ]
  34135. ))
  34136. characterMakers.push(() => makeCharacter(
  34137. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34138. {
  34139. front: {
  34140. height: math.unit(8 + 4/12, "feet"),
  34141. weight: math.unit(535, "lb"),
  34142. name: "Front",
  34143. image: {
  34144. source: "./media/characters/beh'kah-bolger/front.svg",
  34145. extra: 1660/1603,
  34146. bottom: 37/1697
  34147. }
  34148. },
  34149. },
  34150. [
  34151. {
  34152. name: "Normal",
  34153. height: math.unit(8 + 4/12, "feet"),
  34154. default: true
  34155. },
  34156. {
  34157. name: "Kaiju",
  34158. height: math.unit(250, "feet")
  34159. },
  34160. {
  34161. name: "Still Growing",
  34162. height: math.unit(10, "miles")
  34163. },
  34164. {
  34165. name: "Continental",
  34166. height: math.unit(5000, "miles")
  34167. },
  34168. {
  34169. name: "Final Form",
  34170. height: math.unit(2500000, "miles")
  34171. },
  34172. ]
  34173. ))
  34174. characterMakers.push(() => makeCharacter(
  34175. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34176. {
  34177. front: {
  34178. height: math.unit(7 + 2/12, "feet"),
  34179. weight: math.unit(230, "kg"),
  34180. name: "Front",
  34181. image: {
  34182. source: "./media/characters/tatyana-milewska/front.svg",
  34183. extra: 1199/1150,
  34184. bottom: 86/1285
  34185. }
  34186. },
  34187. },
  34188. [
  34189. {
  34190. name: "Normal",
  34191. height: math.unit(7 + 2/12, "feet"),
  34192. default: true
  34193. },
  34194. {
  34195. name: "Big",
  34196. height: math.unit(12, "feet")
  34197. },
  34198. {
  34199. name: "Minimacro",
  34200. height: math.unit(20, "feet")
  34201. },
  34202. {
  34203. name: "Macro",
  34204. height: math.unit(120, "feet")
  34205. },
  34206. ]
  34207. ))
  34208. characterMakers.push(() => makeCharacter(
  34209. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34210. {
  34211. front: {
  34212. height: math.unit(7 + 8/12, "feet"),
  34213. weight: math.unit(152, "kg"),
  34214. name: "Front",
  34215. image: {
  34216. source: "./media/characters/helen-arri/front.svg",
  34217. extra: 440/423,
  34218. bottom: 14/454
  34219. }
  34220. },
  34221. back: {
  34222. height: math.unit(7 + 8/12, "feet"),
  34223. weight: math.unit(152, "kg"),
  34224. name: "Back",
  34225. image: {
  34226. source: "./media/characters/helen-arri/back.svg",
  34227. extra: 443/426,
  34228. bottom: 8/451
  34229. }
  34230. },
  34231. },
  34232. [
  34233. {
  34234. name: "Normal",
  34235. height: math.unit(7 + 8/12, "feet"),
  34236. default: true
  34237. },
  34238. {
  34239. name: "Big",
  34240. height: math.unit(14, "feet")
  34241. },
  34242. {
  34243. name: "Minimacro",
  34244. height: math.unit(24, "feet")
  34245. },
  34246. {
  34247. name: "Macro",
  34248. height: math.unit(140, "feet")
  34249. },
  34250. ]
  34251. ))
  34252. characterMakers.push(() => makeCharacter(
  34253. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34254. {
  34255. front: {
  34256. height: math.unit(6, "meters"),
  34257. name: "Front",
  34258. image: {
  34259. source: "./media/characters/ehanu-rehu/front.svg",
  34260. extra: 1800/1800,
  34261. bottom: 59/1859
  34262. }
  34263. },
  34264. },
  34265. [
  34266. {
  34267. name: "Normal",
  34268. height: math.unit(6, "meters"),
  34269. default: true
  34270. },
  34271. ]
  34272. ))
  34273. characterMakers.push(() => makeCharacter(
  34274. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34275. {
  34276. front: {
  34277. height: math.unit(7 + 3/12, "feet"),
  34278. name: "Front",
  34279. image: {
  34280. source: "./media/characters/renholder/front.svg",
  34281. extra: 3096/2960,
  34282. bottom: 250/3346
  34283. }
  34284. },
  34285. },
  34286. [
  34287. {
  34288. name: "Normal Bat",
  34289. height: math.unit(7 + 3/12, "feet"),
  34290. default: true
  34291. },
  34292. {
  34293. name: "Slightly Tall Bat",
  34294. height: math.unit(100, "feet")
  34295. },
  34296. {
  34297. name: "Big Bat",
  34298. height: math.unit(1000, "feet")
  34299. },
  34300. {
  34301. name: "City-Sized Bat",
  34302. height: math.unit(200000, "feet")
  34303. },
  34304. {
  34305. name: "Bigger Bat",
  34306. height: math.unit(10000, "miles")
  34307. },
  34308. {
  34309. name: "Solar Sized Bat",
  34310. height: math.unit(100, "AU")
  34311. },
  34312. {
  34313. name: "Galactic Bat",
  34314. height: math.unit(200000, "lightyears")
  34315. },
  34316. {
  34317. name: "Universally Known Bat",
  34318. height: math.unit(1, "universe")
  34319. },
  34320. ]
  34321. ))
  34322. characterMakers.push(() => makeCharacter(
  34323. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34324. {
  34325. front: {
  34326. height: math.unit(6 + 11/12, "feet"),
  34327. weight: math.unit(250, "lb"),
  34328. name: "Front",
  34329. image: {
  34330. source: "./media/characters/cookiecat/front.svg",
  34331. extra: 893/827,
  34332. bottom: 14/907
  34333. }
  34334. },
  34335. },
  34336. [
  34337. {
  34338. name: "Micro",
  34339. height: math.unit(3, "inches")
  34340. },
  34341. {
  34342. name: "Normal",
  34343. height: math.unit(6 + 11/12, "feet"),
  34344. default: true
  34345. },
  34346. {
  34347. name: "Macro",
  34348. height: math.unit(100, "feet")
  34349. },
  34350. {
  34351. name: "Macro+",
  34352. height: math.unit(404, "feet")
  34353. },
  34354. {
  34355. name: "Megamacro",
  34356. height: math.unit(165, "miles")
  34357. },
  34358. {
  34359. name: "Planetary",
  34360. height: math.unit(4600, "miles")
  34361. },
  34362. ]
  34363. ))
  34364. characterMakers.push(() => makeCharacter(
  34365. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34366. {
  34367. front: {
  34368. height: math.unit(10 + 3/12, "feet"),
  34369. weight: math.unit(1500, "lb"),
  34370. name: "Front",
  34371. image: {
  34372. source: "./media/characters/tux-kusanagi/front.svg",
  34373. extra: 944/840,
  34374. bottom: 39/983
  34375. }
  34376. },
  34377. back: {
  34378. height: math.unit(10 + 3/12, "feet"),
  34379. weight: math.unit(1500, "lb"),
  34380. name: "Back",
  34381. image: {
  34382. source: "./media/characters/tux-kusanagi/back.svg",
  34383. extra: 941/842,
  34384. bottom: 28/969
  34385. }
  34386. },
  34387. rump: {
  34388. height: math.unit(5.25, "feet"),
  34389. name: "Rump",
  34390. image: {
  34391. source: "./media/characters/tux-kusanagi/rump.svg"
  34392. }
  34393. },
  34394. beak: {
  34395. height: math.unit(1.54, "feet"),
  34396. name: "Beak",
  34397. image: {
  34398. source: "./media/characters/tux-kusanagi/beak.svg"
  34399. }
  34400. },
  34401. },
  34402. [
  34403. {
  34404. name: "Normal",
  34405. height: math.unit(10 + 3/12, "feet"),
  34406. default: true
  34407. },
  34408. ]
  34409. ))
  34410. characterMakers.push(() => makeCharacter(
  34411. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34412. {
  34413. front: {
  34414. height: math.unit(58, "feet"),
  34415. weight: math.unit(200, "tons"),
  34416. name: "Front",
  34417. image: {
  34418. source: "./media/characters/uzarmazari/front.svg",
  34419. extra: 1575/1455,
  34420. bottom: 152/1727
  34421. }
  34422. },
  34423. back: {
  34424. height: math.unit(58, "feet"),
  34425. weight: math.unit(200, "tons"),
  34426. name: "Back",
  34427. image: {
  34428. source: "./media/characters/uzarmazari/back.svg",
  34429. extra: 1585/1510,
  34430. bottom: 157/1742
  34431. }
  34432. },
  34433. head: {
  34434. height: math.unit(26, "feet"),
  34435. name: "Head",
  34436. image: {
  34437. source: "./media/characters/uzarmazari/head.svg"
  34438. }
  34439. },
  34440. },
  34441. [
  34442. {
  34443. name: "Normal",
  34444. height: math.unit(58, "feet"),
  34445. default: true
  34446. },
  34447. ]
  34448. ))
  34449. characterMakers.push(() => makeCharacter(
  34450. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34451. {
  34452. side: {
  34453. height: math.unit(15, "feet"),
  34454. name: "Side",
  34455. image: {
  34456. source: "./media/characters/akitu/side.svg",
  34457. extra: 1421/1321,
  34458. bottom: 157/1578
  34459. }
  34460. },
  34461. front: {
  34462. height: math.unit(15, "feet"),
  34463. name: "Front",
  34464. image: {
  34465. source: "./media/characters/akitu/front.svg",
  34466. extra: 1435/1326,
  34467. bottom: 232/1667
  34468. }
  34469. },
  34470. },
  34471. [
  34472. {
  34473. name: "Normal",
  34474. height: math.unit(15, "feet"),
  34475. default: true
  34476. },
  34477. ]
  34478. ))
  34479. characterMakers.push(() => makeCharacter(
  34480. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34481. {
  34482. front: {
  34483. height: math.unit(10 + 8/12, "feet"),
  34484. name: "Front",
  34485. image: {
  34486. source: "./media/characters/azalie-croixland/front.svg",
  34487. extra: 1972/1856,
  34488. bottom: 31/2003
  34489. }
  34490. },
  34491. },
  34492. [
  34493. {
  34494. name: "Original Height",
  34495. height: math.unit(5 + 4/12, "feet")
  34496. },
  34497. {
  34498. name: "Normal Height",
  34499. height: math.unit(10 + 8/12, "feet"),
  34500. default: true
  34501. },
  34502. ]
  34503. ))
  34504. characterMakers.push(() => makeCharacter(
  34505. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34506. {
  34507. side: {
  34508. height: math.unit(7 + 1/12, "feet"),
  34509. weight: math.unit(245, "lb"),
  34510. name: "Side",
  34511. image: {
  34512. source: "./media/characters/kavus-kazian/side.svg",
  34513. extra: 349/342,
  34514. bottom: 15/364
  34515. }
  34516. },
  34517. },
  34518. [
  34519. {
  34520. name: "Normal",
  34521. height: math.unit(7 + 1/12, "feet"),
  34522. default: true
  34523. },
  34524. ]
  34525. ))
  34526. characterMakers.push(() => makeCharacter(
  34527. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34528. {
  34529. normal: {
  34530. height: math.unit(5 + 11/12, "feet"),
  34531. name: "Normal",
  34532. image: {
  34533. source: "./media/characters/moonlight-rose/normal.svg",
  34534. extra: 1979/1835,
  34535. bottom: 14/1993
  34536. }
  34537. },
  34538. demon: {
  34539. height: math.unit(5, "km"),
  34540. name: "Demon",
  34541. image: {
  34542. source: "./media/characters/moonlight-rose/demon.svg",
  34543. extra: 986/916,
  34544. bottom: 28/1014
  34545. }
  34546. },
  34547. },
  34548. [
  34549. {
  34550. name: "\"Natural\" height",
  34551. height: math.unit(5 + 11/12, "feet")
  34552. },
  34553. {
  34554. name: "Comfortable Size",
  34555. height: math.unit(40, "meters")
  34556. },
  34557. {
  34558. name: "Common Size",
  34559. height: math.unit(50, "km"),
  34560. default: true
  34561. },
  34562. {
  34563. name: "Demonic",
  34564. height: math.unit(1.24415e+21, "meters")
  34565. },
  34566. ]
  34567. ))
  34568. characterMakers.push(() => makeCharacter(
  34569. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34570. {
  34571. front: {
  34572. height: math.unit(16, "feet"),
  34573. weight: math.unit(610, "kg"),
  34574. name: "Front",
  34575. image: {
  34576. source: "./media/characters/huckle/front.svg",
  34577. extra: 1731/1625,
  34578. bottom: 33/1764
  34579. }
  34580. },
  34581. back: {
  34582. height: math.unit(16, "feet"),
  34583. weight: math.unit(610, "kg"),
  34584. name: "Back",
  34585. image: {
  34586. source: "./media/characters/huckle/back.svg",
  34587. extra: 1738/1651,
  34588. bottom: 37/1775
  34589. }
  34590. },
  34591. laughing: {
  34592. height: math.unit(3.75, "feet"),
  34593. name: "Laughing",
  34594. image: {
  34595. source: "./media/characters/huckle/laughing.svg"
  34596. }
  34597. },
  34598. angry: {
  34599. height: math.unit(4.15, "feet"),
  34600. name: "Angry",
  34601. image: {
  34602. source: "./media/characters/huckle/angry.svg"
  34603. }
  34604. },
  34605. },
  34606. [
  34607. {
  34608. name: "Normal",
  34609. height: math.unit(16, "feet"),
  34610. default: true
  34611. },
  34612. {
  34613. name: "Mini Macro",
  34614. height: math.unit(463, "feet")
  34615. },
  34616. {
  34617. name: "Macro",
  34618. height: math.unit(1680, "meters")
  34619. },
  34620. {
  34621. name: "Mega Macro",
  34622. height: math.unit(175, "km")
  34623. },
  34624. {
  34625. name: "Terra Macro",
  34626. height: math.unit(32, "gigameters")
  34627. },
  34628. {
  34629. name: "Multiverse+",
  34630. height: math.unit(2.56e23, "yottameters")
  34631. },
  34632. ]
  34633. ))
  34634. characterMakers.push(() => makeCharacter(
  34635. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34636. {
  34637. front: {
  34638. height: math.unit(6 + 9/12, "feet"),
  34639. weight: math.unit(280, "lb"),
  34640. name: "Front",
  34641. image: {
  34642. source: "./media/characters/candy/front.svg",
  34643. extra: 234/217,
  34644. bottom: 11/245
  34645. }
  34646. },
  34647. },
  34648. [
  34649. {
  34650. name: "Really Small",
  34651. height: math.unit(0.1, "nm")
  34652. },
  34653. {
  34654. name: "Micro",
  34655. height: math.unit(2, "inches")
  34656. },
  34657. {
  34658. name: "Normal",
  34659. height: math.unit(6 + 9/12, "feet"),
  34660. default: true
  34661. },
  34662. {
  34663. name: "Small Macro",
  34664. height: math.unit(69, "feet")
  34665. },
  34666. {
  34667. name: "Macro",
  34668. height: math.unit(160, "feet")
  34669. },
  34670. {
  34671. name: "Megamacro",
  34672. height: math.unit(22000, "miles")
  34673. },
  34674. {
  34675. name: "Gigamacro",
  34676. height: math.unit(50000, "miles")
  34677. },
  34678. ]
  34679. ))
  34680. characterMakers.push(() => makeCharacter(
  34681. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  34682. {
  34683. front: {
  34684. height: math.unit(4, "feet"),
  34685. weight: math.unit(90, "lb"),
  34686. name: "Front",
  34687. image: {
  34688. source: "./media/characters/joey-mcdonald/front.svg",
  34689. extra: 1059/852,
  34690. bottom: 33/1092
  34691. }
  34692. },
  34693. back: {
  34694. height: math.unit(4, "feet"),
  34695. weight: math.unit(90, "lb"),
  34696. name: "Back",
  34697. image: {
  34698. source: "./media/characters/joey-mcdonald/back.svg",
  34699. extra: 1077/879,
  34700. bottom: 5/1082
  34701. }
  34702. },
  34703. frontKobold: {
  34704. height: math.unit(4, "feet"),
  34705. weight: math.unit(100, "lb"),
  34706. name: "Front-kobold",
  34707. image: {
  34708. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  34709. extra: 1480/1367,
  34710. bottom: 0/1480
  34711. }
  34712. },
  34713. backKobold: {
  34714. height: math.unit(4, "feet"),
  34715. weight: math.unit(100, "lb"),
  34716. name: "Back-kobold",
  34717. image: {
  34718. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  34719. extra: 1449/1361,
  34720. bottom: 0/1449
  34721. }
  34722. },
  34723. },
  34724. [
  34725. {
  34726. name: "Normal",
  34727. height: math.unit(4, "feet"),
  34728. default: true
  34729. },
  34730. ]
  34731. ))
  34732. characterMakers.push(() => makeCharacter(
  34733. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34734. {
  34735. front: {
  34736. height: math.unit(12 + 6/12, "feet"),
  34737. name: "Front",
  34738. image: {
  34739. source: "./media/characters/kass-lockheed/front.svg",
  34740. extra: 354/343,
  34741. bottom: 9/363
  34742. }
  34743. },
  34744. back: {
  34745. height: math.unit(12 + 6/12, "feet"),
  34746. name: "Back",
  34747. image: {
  34748. source: "./media/characters/kass-lockheed/back.svg",
  34749. extra: 364/352,
  34750. bottom: 3/367
  34751. }
  34752. },
  34753. dick: {
  34754. height: math.unit(3.12, "feet"),
  34755. name: "Dick",
  34756. image: {
  34757. source: "./media/characters/kass-lockheed/dick.svg"
  34758. }
  34759. },
  34760. head: {
  34761. height: math.unit(2.6, "feet"),
  34762. name: "Head",
  34763. image: {
  34764. source: "./media/characters/kass-lockheed/head.svg"
  34765. }
  34766. },
  34767. bleh: {
  34768. height: math.unit(2.85, "feet"),
  34769. name: "Bleh",
  34770. image: {
  34771. source: "./media/characters/kass-lockheed/bleh.svg"
  34772. }
  34773. },
  34774. smug: {
  34775. height: math.unit(2.85, "feet"),
  34776. name: "Smug",
  34777. image: {
  34778. source: "./media/characters/kass-lockheed/smug.svg"
  34779. }
  34780. },
  34781. },
  34782. [
  34783. {
  34784. name: "Normal",
  34785. height: math.unit(12 + 6/12, "feet"),
  34786. default: true
  34787. },
  34788. ]
  34789. ))
  34790. characterMakers.push(() => makeCharacter(
  34791. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34792. {
  34793. front: {
  34794. height: math.unit(6 + 2/12, "feet"),
  34795. name: "Front",
  34796. image: {
  34797. source: "./media/characters/taylor/front.svg",
  34798. extra: 639/495,
  34799. bottom: 12/651
  34800. }
  34801. },
  34802. },
  34803. [
  34804. {
  34805. name: "Normal",
  34806. height: math.unit(6 + 2/12, "feet"),
  34807. default: true
  34808. },
  34809. {
  34810. name: "Big",
  34811. height: math.unit(15, "feet")
  34812. },
  34813. {
  34814. name: "Lorg",
  34815. height: math.unit(80, "feet")
  34816. },
  34817. {
  34818. name: "Too Lorg",
  34819. height: math.unit(120, "feet")
  34820. },
  34821. ]
  34822. ))
  34823. characterMakers.push(() => makeCharacter(
  34824. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34825. {
  34826. front: {
  34827. height: math.unit(15, "feet"),
  34828. name: "Front",
  34829. image: {
  34830. source: "./media/characters/kaizer/front.svg",
  34831. extra: 1612/1436,
  34832. bottom: 43/1655
  34833. }
  34834. },
  34835. },
  34836. [
  34837. {
  34838. name: "Normal",
  34839. height: math.unit(15, "feet"),
  34840. default: true
  34841. },
  34842. ]
  34843. ))
  34844. characterMakers.push(() => makeCharacter(
  34845. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34846. {
  34847. front: {
  34848. height: math.unit(2, "feet"),
  34849. weight: math.unit(30, "lb"),
  34850. name: "Front",
  34851. image: {
  34852. source: "./media/characters/sandy/front.svg",
  34853. extra: 1439/1307,
  34854. bottom: 194/1633
  34855. }
  34856. },
  34857. },
  34858. [
  34859. {
  34860. name: "Normal",
  34861. height: math.unit(2, "feet"),
  34862. default: true
  34863. },
  34864. ]
  34865. ))
  34866. characterMakers.push(() => makeCharacter(
  34867. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34868. {
  34869. front: {
  34870. height: math.unit(3, "feet"),
  34871. name: "Front",
  34872. image: {
  34873. source: "./media/characters/mellvi/front.svg",
  34874. extra: 1831/1630,
  34875. bottom: 58/1889
  34876. }
  34877. },
  34878. },
  34879. [
  34880. {
  34881. name: "Normal",
  34882. height: math.unit(3, "feet"),
  34883. default: true
  34884. },
  34885. ]
  34886. ))
  34887. characterMakers.push(() => makeCharacter(
  34888. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34889. {
  34890. front: {
  34891. height: math.unit(5 + 11/12, "feet"),
  34892. weight: math.unit(200, "lb"),
  34893. name: "Front",
  34894. image: {
  34895. source: "./media/characters/shirou/front.svg",
  34896. extra: 2491/2383,
  34897. bottom: 189/2680
  34898. }
  34899. },
  34900. back: {
  34901. height: math.unit(5 + 11/12, "feet"),
  34902. weight: math.unit(200, "lb"),
  34903. name: "Back",
  34904. image: {
  34905. source: "./media/characters/shirou/back.svg",
  34906. extra: 2554/2450,
  34907. bottom: 76/2630
  34908. }
  34909. },
  34910. },
  34911. [
  34912. {
  34913. name: "Normal",
  34914. height: math.unit(5 + 11/12, "feet"),
  34915. default: true
  34916. },
  34917. ]
  34918. ))
  34919. characterMakers.push(() => makeCharacter(
  34920. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34921. {
  34922. front: {
  34923. height: math.unit(6 + 3/12, "feet"),
  34924. weight: math.unit(177, "lb"),
  34925. name: "Front",
  34926. image: {
  34927. source: "./media/characters/noryu/front.svg",
  34928. extra: 973/885,
  34929. bottom: 10/983
  34930. }
  34931. },
  34932. },
  34933. [
  34934. {
  34935. name: "Normal",
  34936. height: math.unit(6 + 3/12, "feet"),
  34937. default: true
  34938. },
  34939. ]
  34940. ))
  34941. characterMakers.push(() => makeCharacter(
  34942. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34943. {
  34944. front: {
  34945. height: math.unit(5 + 6/12, "feet"),
  34946. weight: math.unit(170, "lb"),
  34947. name: "Front",
  34948. image: {
  34949. source: "./media/characters/mevolas-rubenido/front.svg",
  34950. extra: 2109/1901,
  34951. bottom: 96/2205
  34952. }
  34953. },
  34954. },
  34955. [
  34956. {
  34957. name: "Normal",
  34958. height: math.unit(5 + 6/12, "feet"),
  34959. default: true
  34960. },
  34961. ]
  34962. ))
  34963. characterMakers.push(() => makeCharacter(
  34964. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34965. {
  34966. front: {
  34967. height: math.unit(100, "feet"),
  34968. name: "Front",
  34969. image: {
  34970. source: "./media/characters/dee/front.svg",
  34971. extra: 2153/2036,
  34972. bottom: 59/2212
  34973. }
  34974. },
  34975. back: {
  34976. height: math.unit(100, "feet"),
  34977. name: "Back",
  34978. image: {
  34979. source: "./media/characters/dee/back.svg",
  34980. extra: 2183/2058,
  34981. bottom: 75/2258
  34982. }
  34983. },
  34984. foot: {
  34985. height: math.unit(19.43, "feet"),
  34986. name: "Foot",
  34987. image: {
  34988. source: "./media/characters/dee/foot.svg"
  34989. }
  34990. },
  34991. hoof: {
  34992. height: math.unit(20.6, "feet"),
  34993. name: "Hoof",
  34994. image: {
  34995. source: "./media/characters/dee/hoof.svg"
  34996. }
  34997. },
  34998. },
  34999. [
  35000. {
  35001. name: "Macro",
  35002. height: math.unit(100, "feet"),
  35003. default: true
  35004. },
  35005. ]
  35006. ))
  35007. characterMakers.push(() => makeCharacter(
  35008. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  35009. {
  35010. front: {
  35011. height: math.unit(5 + 6/12, "feet"),
  35012. name: "Front",
  35013. image: {
  35014. source: "./media/characters/teh/front.svg",
  35015. extra: 1002/847,
  35016. bottom: 62/1064
  35017. }
  35018. },
  35019. },
  35020. [
  35021. {
  35022. name: "Normal",
  35023. height: math.unit(5 + 6/12, "feet"),
  35024. default: true
  35025. },
  35026. ]
  35027. ))
  35028. characterMakers.push(() => makeCharacter(
  35029. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  35030. {
  35031. side: {
  35032. height: math.unit(6 + 1/12, "feet"),
  35033. weight: math.unit(204, "lb"),
  35034. name: "Side",
  35035. image: {
  35036. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35037. extra: 974/775,
  35038. bottom: 169/1143
  35039. }
  35040. },
  35041. sitting: {
  35042. height: math.unit(6 + 2/12, "feet"),
  35043. weight: math.unit(204, "lb"),
  35044. name: "Sitting",
  35045. image: {
  35046. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35047. extra: 1175/964,
  35048. bottom: 378/1553
  35049. }
  35050. },
  35051. },
  35052. [
  35053. {
  35054. name: "Normal",
  35055. height: math.unit(6 + 1/12, "feet"),
  35056. default: true
  35057. },
  35058. ]
  35059. ))
  35060. characterMakers.push(() => makeCharacter(
  35061. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35062. {
  35063. front: {
  35064. height: math.unit(6, "inches"),
  35065. name: "Front",
  35066. image: {
  35067. source: "./media/characters/tululi/front.svg",
  35068. extra: 1997/1876,
  35069. bottom: 20/2017
  35070. }
  35071. },
  35072. },
  35073. [
  35074. {
  35075. name: "Normal",
  35076. height: math.unit(6, "inches"),
  35077. default: true
  35078. },
  35079. ]
  35080. ))
  35081. characterMakers.push(() => makeCharacter(
  35082. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35083. {
  35084. front: {
  35085. height: math.unit(4 + 1/12, "feet"),
  35086. name: "Front",
  35087. image: {
  35088. source: "./media/characters/star/front.svg",
  35089. extra: 1493/1189,
  35090. bottom: 48/1541
  35091. }
  35092. },
  35093. },
  35094. [
  35095. {
  35096. name: "Normal",
  35097. height: math.unit(4 + 1/12, "feet"),
  35098. default: true
  35099. },
  35100. ]
  35101. ))
  35102. characterMakers.push(() => makeCharacter(
  35103. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35104. {
  35105. front: {
  35106. height: math.unit(6 + 3/12, "feet"),
  35107. name: "Front",
  35108. image: {
  35109. source: "./media/characters/comet/front.svg",
  35110. extra: 1681/1462,
  35111. bottom: 26/1707
  35112. }
  35113. },
  35114. },
  35115. [
  35116. {
  35117. name: "Normal",
  35118. height: math.unit(6 + 3/12, "feet"),
  35119. default: true
  35120. },
  35121. ]
  35122. ))
  35123. characterMakers.push(() => makeCharacter(
  35124. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35125. {
  35126. front: {
  35127. height: math.unit(950, "feet"),
  35128. name: "Front",
  35129. image: {
  35130. source: "./media/characters/vortex/front.svg",
  35131. extra: 1497/1434,
  35132. bottom: 56/1553
  35133. }
  35134. },
  35135. maw: {
  35136. height: math.unit(285, "feet"),
  35137. name: "Maw",
  35138. image: {
  35139. source: "./media/characters/vortex/maw.svg"
  35140. }
  35141. },
  35142. },
  35143. [
  35144. {
  35145. name: "Macro",
  35146. height: math.unit(950, "feet"),
  35147. default: true
  35148. },
  35149. ]
  35150. ))
  35151. characterMakers.push(() => makeCharacter(
  35152. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35153. {
  35154. front: {
  35155. height: math.unit(600, "feet"),
  35156. weight: math.unit(0.02, "grams"),
  35157. name: "Front",
  35158. image: {
  35159. source: "./media/characters/doodle/front.svg",
  35160. extra: 1578/1413,
  35161. bottom: 37/1615
  35162. }
  35163. },
  35164. },
  35165. [
  35166. {
  35167. name: "Macro",
  35168. height: math.unit(600, "feet"),
  35169. default: true
  35170. },
  35171. ]
  35172. ))
  35173. characterMakers.push(() => makeCharacter(
  35174. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35175. {
  35176. front: {
  35177. height: math.unit(6 + 6/12, "feet"),
  35178. name: "Front",
  35179. image: {
  35180. source: "./media/characters/jai/front.svg",
  35181. extra: 1645/1534,
  35182. bottom: 115/1760
  35183. }
  35184. },
  35185. },
  35186. [
  35187. {
  35188. name: "Normal",
  35189. height: math.unit(6 + 6/12, "feet"),
  35190. default: true
  35191. },
  35192. ]
  35193. ))
  35194. characterMakers.push(() => makeCharacter(
  35195. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35196. {
  35197. front: {
  35198. height: math.unit(6 + 8/12, "feet"),
  35199. name: "Front",
  35200. image: {
  35201. source: "./media/characters/pixel/front.svg",
  35202. extra: 1900/1735,
  35203. bottom: 63/1963
  35204. }
  35205. },
  35206. },
  35207. [
  35208. {
  35209. name: "Normal",
  35210. height: math.unit(6 + 8/12, "feet"),
  35211. default: true
  35212. },
  35213. ]
  35214. ))
  35215. characterMakers.push(() => makeCharacter(
  35216. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35217. {
  35218. front: {
  35219. height: math.unit(4 + 11/12, "feet"),
  35220. weight: math.unit(111, "lb"),
  35221. name: "Front",
  35222. image: {
  35223. source: "./media/characters/rhett/front.svg",
  35224. extra: 1682/1586,
  35225. bottom: 92/1774
  35226. }
  35227. },
  35228. },
  35229. [
  35230. {
  35231. name: "Mini",
  35232. height: math.unit(1 + 1/12, "feet")
  35233. },
  35234. {
  35235. name: "Normal",
  35236. height: math.unit(4 + 11/12, "feet"),
  35237. default: true
  35238. },
  35239. ]
  35240. ))
  35241. characterMakers.push(() => makeCharacter(
  35242. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35243. {
  35244. front: {
  35245. height: math.unit(3 + 3/12, "feet"),
  35246. name: "Front",
  35247. image: {
  35248. source: "./media/characters/penny/front.svg",
  35249. extra: 1406/1311,
  35250. bottom: 26/1432
  35251. }
  35252. },
  35253. },
  35254. [
  35255. {
  35256. name: "Normal",
  35257. height: math.unit(3 + 3/12, "feet"),
  35258. default: true
  35259. },
  35260. ]
  35261. ))
  35262. characterMakers.push(() => makeCharacter(
  35263. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35264. {
  35265. front: {
  35266. height: math.unit(4 + 11/12, "feet"),
  35267. name: "Front",
  35268. image: {
  35269. source: "./media/characters/monty/front.svg",
  35270. extra: 1479/1209,
  35271. bottom: 0/1479
  35272. }
  35273. },
  35274. },
  35275. [
  35276. {
  35277. name: "Normal",
  35278. height: math.unit(4 + 11/12, "feet"),
  35279. default: true
  35280. },
  35281. ]
  35282. ))
  35283. characterMakers.push(() => makeCharacter(
  35284. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35285. {
  35286. front: {
  35287. height: math.unit(8 + 4/12, "feet"),
  35288. name: "Front",
  35289. image: {
  35290. source: "./media/characters/sterling/front.svg",
  35291. extra: 1420/1236,
  35292. bottom: 27/1447
  35293. }
  35294. },
  35295. },
  35296. [
  35297. {
  35298. name: "Normal",
  35299. height: math.unit(8 + 4/12, "feet"),
  35300. default: true
  35301. },
  35302. ]
  35303. ))
  35304. characterMakers.push(() => makeCharacter(
  35305. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35306. {
  35307. front: {
  35308. height: math.unit(15, "feet"),
  35309. name: "Front",
  35310. image: {
  35311. source: "./media/characters/marble/front.svg",
  35312. extra: 973/937,
  35313. bottom: 32/1005
  35314. }
  35315. },
  35316. },
  35317. [
  35318. {
  35319. name: "Normal",
  35320. height: math.unit(15, "feet"),
  35321. default: true
  35322. },
  35323. ]
  35324. ))
  35325. characterMakers.push(() => makeCharacter(
  35326. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35327. {
  35328. front: {
  35329. height: math.unit(3, "inches"),
  35330. name: "Front",
  35331. image: {
  35332. source: "./media/characters/powder/front.svg",
  35333. extra: 1504/1334,
  35334. bottom: 518/2022
  35335. }
  35336. },
  35337. },
  35338. [
  35339. {
  35340. name: "Normal",
  35341. height: math.unit(3, "inches"),
  35342. default: true
  35343. },
  35344. ]
  35345. ))
  35346. characterMakers.push(() => makeCharacter(
  35347. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35348. {
  35349. front: {
  35350. height: math.unit(4 + 5/12, "feet"),
  35351. name: "Front",
  35352. image: {
  35353. source: "./media/characters/joey-raccoon/front.svg",
  35354. extra: 1273/1197,
  35355. bottom: 0/1273
  35356. }
  35357. },
  35358. },
  35359. [
  35360. {
  35361. name: "Normal",
  35362. height: math.unit(4 + 5/12, "feet"),
  35363. default: true
  35364. },
  35365. ]
  35366. ))
  35367. characterMakers.push(() => makeCharacter(
  35368. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35369. {
  35370. front: {
  35371. height: math.unit(8 + 4/12, "feet"),
  35372. name: "Front",
  35373. image: {
  35374. source: "./media/characters/vick/front.svg",
  35375. extra: 2187/2118,
  35376. bottom: 47/2234
  35377. }
  35378. },
  35379. },
  35380. [
  35381. {
  35382. name: "Normal",
  35383. height: math.unit(8 + 4/12, "feet"),
  35384. default: true
  35385. },
  35386. ]
  35387. ))
  35388. characterMakers.push(() => makeCharacter(
  35389. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35390. {
  35391. front: {
  35392. height: math.unit(5 + 5/12, "feet"),
  35393. name: "Front",
  35394. image: {
  35395. source: "./media/characters/mitsy/front.svg",
  35396. extra: 1842/1695,
  35397. bottom: 0/1842
  35398. }
  35399. },
  35400. },
  35401. [
  35402. {
  35403. name: "Normal",
  35404. height: math.unit(5 + 5/12, "feet"),
  35405. default: true
  35406. },
  35407. ]
  35408. ))
  35409. characterMakers.push(() => makeCharacter(
  35410. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35411. {
  35412. front: {
  35413. height: math.unit(6 + 3/12, "feet"),
  35414. name: "Front",
  35415. image: {
  35416. source: "./media/characters/silvy/front.svg",
  35417. extra: 1995/1836,
  35418. bottom: 225/2220
  35419. }
  35420. },
  35421. },
  35422. [
  35423. {
  35424. name: "Normal",
  35425. height: math.unit(6 + 3/12, "feet"),
  35426. default: true
  35427. },
  35428. ]
  35429. ))
  35430. characterMakers.push(() => makeCharacter(
  35431. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35432. {
  35433. front: {
  35434. height: math.unit(3 + 8/12, "feet"),
  35435. name: "Front",
  35436. image: {
  35437. source: "./media/characters/rodney/front.svg",
  35438. extra: 1956/1747,
  35439. bottom: 31/1987
  35440. }
  35441. },
  35442. frontDressed: {
  35443. height: math.unit(2.9, "feet"),
  35444. name: "Front (Dressed)",
  35445. image: {
  35446. source: "./media/characters/rodney/front-dressed.svg",
  35447. extra: 1382/1241,
  35448. bottom: 385/1767
  35449. }
  35450. },
  35451. },
  35452. [
  35453. {
  35454. name: "Normal",
  35455. height: math.unit(3 + 8/12, "feet"),
  35456. default: true
  35457. },
  35458. ]
  35459. ))
  35460. characterMakers.push(() => makeCharacter(
  35461. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35462. {
  35463. front: {
  35464. height: math.unit(5 + 9/12, "feet"),
  35465. weight: math.unit(194, "lbs"),
  35466. name: "Front",
  35467. image: {
  35468. source: "./media/characters/zakail-sudekai/front.svg",
  35469. extra: 2696/2533,
  35470. bottom: 248/2944
  35471. }
  35472. },
  35473. maw: {
  35474. height: math.unit(1.35, "feet"),
  35475. name: "Maw",
  35476. image: {
  35477. source: "./media/characters/zakail-sudekai/maw.svg"
  35478. }
  35479. },
  35480. },
  35481. [
  35482. {
  35483. name: "Normal",
  35484. height: math.unit(5 + 9/12, "feet"),
  35485. default: true
  35486. },
  35487. ]
  35488. ))
  35489. characterMakers.push(() => makeCharacter(
  35490. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35491. {
  35492. front: {
  35493. height: math.unit(8 + 4/12, "feet"),
  35494. weight: math.unit(1200, "lb"),
  35495. name: "Front",
  35496. image: {
  35497. source: "./media/characters/eleanor/front.svg",
  35498. extra: 1226/1192,
  35499. bottom: 52/1278
  35500. }
  35501. },
  35502. back: {
  35503. height: math.unit(8 + 4/12, "feet"),
  35504. weight: math.unit(1200, "lb"),
  35505. name: "Back",
  35506. image: {
  35507. source: "./media/characters/eleanor/back.svg",
  35508. extra: 1242/1184,
  35509. bottom: 60/1302
  35510. }
  35511. },
  35512. head: {
  35513. height: math.unit(2.62, "feet"),
  35514. name: "Head",
  35515. image: {
  35516. source: "./media/characters/eleanor/head.svg"
  35517. }
  35518. },
  35519. },
  35520. [
  35521. {
  35522. name: "Normal",
  35523. height: math.unit(8 + 4/12, "feet"),
  35524. default: true
  35525. },
  35526. ]
  35527. ))
  35528. characterMakers.push(() => makeCharacter(
  35529. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35530. {
  35531. front: {
  35532. height: math.unit(8 + 4/12, "feet"),
  35533. weight: math.unit(750, "lb"),
  35534. name: "Front",
  35535. image: {
  35536. source: "./media/characters/tanya/front.svg",
  35537. extra: 1749/1615,
  35538. bottom: 33/1782
  35539. }
  35540. },
  35541. },
  35542. [
  35543. {
  35544. name: "Normal",
  35545. height: math.unit(8 + 4/12, "feet"),
  35546. default: true
  35547. },
  35548. ]
  35549. ))
  35550. characterMakers.push(() => makeCharacter(
  35551. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35552. {
  35553. front: {
  35554. height: math.unit(5, "feet"),
  35555. weight: math.unit(225, "lb"),
  35556. name: "Front",
  35557. image: {
  35558. source: "./media/characters/cindy/front.svg",
  35559. extra: 1320/1250,
  35560. bottom: 42/1362
  35561. }
  35562. },
  35563. frontDressed: {
  35564. height: math.unit(5, "feet"),
  35565. weight: math.unit(225, "lb"),
  35566. name: "Front (Dressed)",
  35567. image: {
  35568. source: "./media/characters/cindy/front-dressed.svg",
  35569. extra: 1320/1250,
  35570. bottom: 42/1362
  35571. }
  35572. },
  35573. back: {
  35574. height: math.unit(5, "feet"),
  35575. weight: math.unit(225, "lb"),
  35576. name: "Back",
  35577. image: {
  35578. source: "./media/characters/cindy/back.svg",
  35579. extra: 1384/1346,
  35580. bottom: 14/1398
  35581. }
  35582. },
  35583. },
  35584. [
  35585. {
  35586. name: "Normal",
  35587. height: math.unit(5, "feet"),
  35588. default: true
  35589. },
  35590. ]
  35591. ))
  35592. characterMakers.push(() => makeCharacter(
  35593. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35594. {
  35595. front: {
  35596. height: math.unit(6 + 9/12, "feet"),
  35597. weight: math.unit(440, "lb"),
  35598. name: "Front",
  35599. image: {
  35600. source: "./media/characters/wilbur-owen/front.svg",
  35601. extra: 1575/1448,
  35602. bottom: 72/1647
  35603. }
  35604. },
  35605. back: {
  35606. height: math.unit(6 + 9/12, "feet"),
  35607. weight: math.unit(440, "lb"),
  35608. name: "Back",
  35609. image: {
  35610. source: "./media/characters/wilbur-owen/back.svg",
  35611. extra: 1578/1445,
  35612. bottom: 36/1614
  35613. }
  35614. },
  35615. },
  35616. [
  35617. {
  35618. name: "Normal",
  35619. height: math.unit(6 + 9/12, "feet"),
  35620. default: true
  35621. },
  35622. ]
  35623. ))
  35624. characterMakers.push(() => makeCharacter(
  35625. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35626. {
  35627. front: {
  35628. height: math.unit(6 + 5/12, "feet"),
  35629. weight: math.unit(650, "lb"),
  35630. name: "Front",
  35631. image: {
  35632. source: "./media/characters/keegan/front.svg",
  35633. extra: 2387/2198,
  35634. bottom: 33/2420
  35635. }
  35636. },
  35637. side: {
  35638. height: math.unit(6 + 5/12, "feet"),
  35639. weight: math.unit(650, "lb"),
  35640. name: "Side",
  35641. image: {
  35642. source: "./media/characters/keegan/side.svg",
  35643. extra: 2390/2202,
  35644. bottom: 47/2437
  35645. }
  35646. },
  35647. back: {
  35648. height: math.unit(6 + 5/12, "feet"),
  35649. weight: math.unit(650, "lb"),
  35650. name: "Back",
  35651. image: {
  35652. source: "./media/characters/keegan/back.svg",
  35653. extra: 2418/2268,
  35654. bottom: 15/2433
  35655. }
  35656. },
  35657. frontSfw: {
  35658. height: math.unit(6 + 5/12, "feet"),
  35659. weight: math.unit(650, "lb"),
  35660. name: "Front (SFW)",
  35661. image: {
  35662. source: "./media/characters/keegan/front-sfw.svg",
  35663. extra: 2387/2198,
  35664. bottom: 33/2420
  35665. }
  35666. },
  35667. beans: {
  35668. height: math.unit(1.85, "feet"),
  35669. name: "Beans",
  35670. image: {
  35671. source: "./media/characters/keegan/beans.svg"
  35672. }
  35673. },
  35674. },
  35675. [
  35676. {
  35677. name: "Normal",
  35678. height: math.unit(6 + 5/12, "feet"),
  35679. default: true
  35680. },
  35681. ]
  35682. ))
  35683. characterMakers.push(() => makeCharacter(
  35684. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35685. {
  35686. front: {
  35687. height: math.unit(9, "feet"),
  35688. name: "Front",
  35689. image: {
  35690. source: "./media/characters/colton/front.svg",
  35691. extra: 1589/1326,
  35692. bottom: 139/1728
  35693. }
  35694. },
  35695. },
  35696. [
  35697. {
  35698. name: "Normal",
  35699. height: math.unit(9, "feet"),
  35700. default: true
  35701. },
  35702. ]
  35703. ))
  35704. characterMakers.push(() => makeCharacter(
  35705. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35706. {
  35707. front: {
  35708. height: math.unit(2 + 9/12, "feet"),
  35709. name: "Front",
  35710. image: {
  35711. source: "./media/characters/bora/front.svg",
  35712. extra: 1265/1250,
  35713. bottom: 24/1289
  35714. }
  35715. },
  35716. },
  35717. [
  35718. {
  35719. name: "Normal",
  35720. height: math.unit(2 + 9/12, "feet"),
  35721. default: true
  35722. },
  35723. ]
  35724. ))
  35725. characterMakers.push(() => makeCharacter(
  35726. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35727. {
  35728. front: {
  35729. height: math.unit(8, "feet"),
  35730. name: "Front",
  35731. image: {
  35732. source: "./media/characters/myu-myu/front.svg",
  35733. extra: 1949/1857,
  35734. bottom: 90/2039
  35735. }
  35736. },
  35737. },
  35738. [
  35739. {
  35740. name: "Normal",
  35741. height: math.unit(8, "feet"),
  35742. default: true
  35743. },
  35744. {
  35745. name: "Big",
  35746. height: math.unit(15, "feet")
  35747. },
  35748. {
  35749. name: "BIG",
  35750. height: math.unit(25, "feet")
  35751. },
  35752. ]
  35753. ))
  35754. characterMakers.push(() => makeCharacter(
  35755. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35756. {
  35757. side: {
  35758. height: math.unit(7 + 5/12, "feet"),
  35759. weight: math.unit(2800, "lb"),
  35760. name: "Side",
  35761. image: {
  35762. source: "./media/characters/haloren/side.svg",
  35763. extra: 1793/409,
  35764. bottom: 59/1852
  35765. }
  35766. },
  35767. frontPaw: {
  35768. height: math.unit(2.36, "feet"),
  35769. name: "Front paw",
  35770. image: {
  35771. source: "./media/characters/haloren/front-paw.svg"
  35772. }
  35773. },
  35774. hindPaw: {
  35775. height: math.unit(3.18, "feet"),
  35776. name: "Hind paw",
  35777. image: {
  35778. source: "./media/characters/haloren/hind-paw.svg"
  35779. }
  35780. },
  35781. maw: {
  35782. height: math.unit(5.05, "feet"),
  35783. name: "Maw",
  35784. image: {
  35785. source: "./media/characters/haloren/maw.svg"
  35786. }
  35787. },
  35788. dick: {
  35789. height: math.unit(2.90, "feet"),
  35790. name: "Dick",
  35791. image: {
  35792. source: "./media/characters/haloren/dick.svg"
  35793. }
  35794. },
  35795. },
  35796. [
  35797. {
  35798. name: "Normal",
  35799. height: math.unit(7 + 5/12, "feet"),
  35800. default: true
  35801. },
  35802. {
  35803. name: "Enhanced",
  35804. height: math.unit(14 + 3/12, "feet")
  35805. },
  35806. ]
  35807. ))
  35808. characterMakers.push(() => makeCharacter(
  35809. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35810. {
  35811. front: {
  35812. height: math.unit(171, "cm"),
  35813. name: "Front",
  35814. image: {
  35815. source: "./media/characters/kimmy/front.svg",
  35816. extra: 1491/1435,
  35817. bottom: 53/1544
  35818. }
  35819. },
  35820. },
  35821. [
  35822. {
  35823. name: "Small",
  35824. height: math.unit(9, "cm")
  35825. },
  35826. {
  35827. name: "Normal",
  35828. height: math.unit(171, "cm"),
  35829. default: true
  35830. },
  35831. ]
  35832. ))
  35833. characterMakers.push(() => makeCharacter(
  35834. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35835. {
  35836. front: {
  35837. height: math.unit(8, "feet"),
  35838. weight: math.unit(300, "lb"),
  35839. name: "Front",
  35840. image: {
  35841. source: "./media/characters/galeboomer/front.svg",
  35842. extra: 4651/4415,
  35843. bottom: 162/4813
  35844. }
  35845. },
  35846. back: {
  35847. height: math.unit(8, "feet"),
  35848. weight: math.unit(300, "lb"),
  35849. name: "Back",
  35850. image: {
  35851. source: "./media/characters/galeboomer/back.svg",
  35852. extra: 4544/4314,
  35853. bottom: 16/4560
  35854. }
  35855. },
  35856. frontAlt: {
  35857. height: math.unit(8, "feet"),
  35858. weight: math.unit(300, "lb"),
  35859. name: "Front (Alt)",
  35860. image: {
  35861. source: "./media/characters/galeboomer/front-alt.svg",
  35862. extra: 4458/4228,
  35863. bottom: 68/4526
  35864. }
  35865. },
  35866. maw: {
  35867. height: math.unit(1.2, "feet"),
  35868. name: "Maw",
  35869. image: {
  35870. source: "./media/characters/galeboomer/maw.svg"
  35871. }
  35872. },
  35873. },
  35874. [
  35875. {
  35876. name: "Normal",
  35877. height: math.unit(8, "feet"),
  35878. default: true
  35879. },
  35880. ]
  35881. ))
  35882. characterMakers.push(() => makeCharacter(
  35883. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35884. {
  35885. front: {
  35886. height: math.unit(5 + 9/12, "feet"),
  35887. weight: math.unit(120, "lb"),
  35888. name: "Front",
  35889. image: {
  35890. source: "./media/characters/chyr/front.svg",
  35891. extra: 1323/1254,
  35892. bottom: 63/1386
  35893. }
  35894. },
  35895. back: {
  35896. height: math.unit(5 + 9/12, "feet"),
  35897. weight: math.unit(120, "lb"),
  35898. name: "Back",
  35899. image: {
  35900. source: "./media/characters/chyr/back.svg",
  35901. extra: 1323/1252,
  35902. bottom: 48/1371
  35903. }
  35904. },
  35905. },
  35906. [
  35907. {
  35908. name: "Normal",
  35909. height: math.unit(5 + 9/12, "feet"),
  35910. default: true
  35911. },
  35912. ]
  35913. ))
  35914. characterMakers.push(() => makeCharacter(
  35915. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35916. {
  35917. front: {
  35918. height: math.unit(7, "feet"),
  35919. weight: math.unit(310, "lb"),
  35920. name: "Front",
  35921. image: {
  35922. source: "./media/characters/solarus/front.svg",
  35923. extra: 2415/2021,
  35924. bottom: 103/2518
  35925. }
  35926. },
  35927. back: {
  35928. height: math.unit(7, "feet"),
  35929. weight: math.unit(310, "lb"),
  35930. name: "Back",
  35931. image: {
  35932. source: "./media/characters/solarus/back.svg",
  35933. extra: 2463/2089,
  35934. bottom: 79/2542
  35935. }
  35936. },
  35937. },
  35938. [
  35939. {
  35940. name: "Normal",
  35941. height: math.unit(7, "feet"),
  35942. default: true
  35943. },
  35944. ]
  35945. ))
  35946. characterMakers.push(() => makeCharacter(
  35947. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35948. {
  35949. front: {
  35950. height: math.unit(16, "feet"),
  35951. name: "Front",
  35952. image: {
  35953. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35954. extra: 1844/1780,
  35955. bottom: 58/1902
  35956. }
  35957. },
  35958. winterCoat: {
  35959. height: math.unit(16, "feet"),
  35960. name: "Winter Coat",
  35961. image: {
  35962. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  35963. extra: 1807/1775,
  35964. bottom: 69/1876
  35965. }
  35966. },
  35967. },
  35968. [
  35969. {
  35970. name: "Normal",
  35971. height: math.unit(16, "feet"),
  35972. default: true
  35973. },
  35974. {
  35975. name: "Chicago Size",
  35976. height: math.unit(560, "feet")
  35977. },
  35978. ]
  35979. ))
  35980. characterMakers.push(() => makeCharacter(
  35981. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  35982. {
  35983. front: {
  35984. height: math.unit(11 + 6/12, "feet"),
  35985. weight: math.unit(1366, "lb"),
  35986. name: "Front",
  35987. image: {
  35988. source: "./media/characters/lexor/front.svg",
  35989. extra: 1560/1481,
  35990. bottom: 211/1771
  35991. }
  35992. },
  35993. back: {
  35994. height: math.unit(11 + 6/12, "feet"),
  35995. weight: math.unit(1366, "lb"),
  35996. name: "Back",
  35997. image: {
  35998. source: "./media/characters/lexor/back.svg",
  35999. extra: 1614/1533,
  36000. bottom: 76/1690
  36001. }
  36002. },
  36003. maw: {
  36004. height: math.unit(3, "feet"),
  36005. name: "Maw",
  36006. image: {
  36007. source: "./media/characters/lexor/maw.svg"
  36008. }
  36009. },
  36010. dick: {
  36011. height: math.unit(2.59, "feet"),
  36012. name: "Dick",
  36013. image: {
  36014. source: "./media/characters/lexor/dick.svg"
  36015. }
  36016. },
  36017. },
  36018. [
  36019. {
  36020. name: "Normal",
  36021. height: math.unit(11 + 6/12, "feet"),
  36022. default: true
  36023. },
  36024. ]
  36025. ))
  36026. characterMakers.push(() => makeCharacter(
  36027. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  36028. {
  36029. front: {
  36030. height: math.unit(5 + 8/12, "feet"),
  36031. name: "Front",
  36032. image: {
  36033. source: "./media/characters/magnum/front.svg",
  36034. extra: 942/855,
  36035. bottom: 26/968
  36036. }
  36037. },
  36038. },
  36039. [
  36040. {
  36041. name: "Normal",
  36042. height: math.unit(5 + 8/12, "feet"),
  36043. default: true
  36044. },
  36045. ]
  36046. ))
  36047. characterMakers.push(() => makeCharacter(
  36048. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36049. {
  36050. front: {
  36051. height: math.unit(18 + 4/12, "feet"),
  36052. weight: math.unit(1500, "kg"),
  36053. name: "Front",
  36054. image: {
  36055. source: "./media/characters/solas-sharpsman/front.svg",
  36056. extra: 1698/1589,
  36057. bottom: 0/1698
  36058. }
  36059. },
  36060. },
  36061. [
  36062. {
  36063. name: "Normal",
  36064. height: math.unit(18 + 4/12, "feet"),
  36065. default: true
  36066. },
  36067. ]
  36068. ))
  36069. characterMakers.push(() => makeCharacter(
  36070. { name: "October", species: ["tiger"], tags: ["anthro"] },
  36071. {
  36072. front: {
  36073. height: math.unit(5 + 5/12, "feet"),
  36074. weight: math.unit(180, "lb"),
  36075. name: "Front",
  36076. image: {
  36077. source: "./media/characters/october/front.svg",
  36078. extra: 1800/1650,
  36079. bottom: 0/1800
  36080. }
  36081. },
  36082. frontNsfw: {
  36083. height: math.unit(5 + 5/12, "feet"),
  36084. weight: math.unit(180, "lb"),
  36085. name: "Front (NSFW)",
  36086. image: {
  36087. source: "./media/characters/october/front-nsfw.svg",
  36088. extra: 1392/1307,
  36089. bottom: 42/1434
  36090. }
  36091. },
  36092. },
  36093. [
  36094. {
  36095. name: "Normal",
  36096. height: math.unit(5 + 5/12, "feet"),
  36097. default: true
  36098. },
  36099. ]
  36100. ))
  36101. characterMakers.push(() => makeCharacter(
  36102. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36103. {
  36104. front: {
  36105. height: math.unit(8 + 6/12, "feet"),
  36106. name: "Front",
  36107. image: {
  36108. source: "./media/characters/essynkardi/front.svg",
  36109. extra: 1914/1846,
  36110. bottom: 22/1936
  36111. }
  36112. },
  36113. },
  36114. [
  36115. {
  36116. name: "Normal",
  36117. height: math.unit(8 + 6/12, "feet"),
  36118. default: true
  36119. },
  36120. ]
  36121. ))
  36122. characterMakers.push(() => makeCharacter(
  36123. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36124. {
  36125. front: {
  36126. height: math.unit(6 + 6/12, "feet"),
  36127. weight: math.unit(7, "lb"),
  36128. name: "Front",
  36129. image: {
  36130. source: "./media/characters/icky/front.svg",
  36131. extra: 813/782,
  36132. bottom: 66/879
  36133. }
  36134. },
  36135. back: {
  36136. height: math.unit(6 + 6/12, "feet"),
  36137. weight: math.unit(7, "lb"),
  36138. name: "Back",
  36139. image: {
  36140. source: "./media/characters/icky/back.svg",
  36141. extra: 754/735,
  36142. bottom: 56/810
  36143. }
  36144. },
  36145. },
  36146. [
  36147. {
  36148. name: "Normal",
  36149. height: math.unit(6 + 6/12, "feet"),
  36150. default: true
  36151. },
  36152. ]
  36153. ))
  36154. characterMakers.push(() => makeCharacter(
  36155. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36156. {
  36157. front: {
  36158. height: math.unit(15, "feet"),
  36159. name: "Front",
  36160. image: {
  36161. source: "./media/characters/rojas/front.svg",
  36162. extra: 1462/1408,
  36163. bottom: 95/1557
  36164. }
  36165. },
  36166. back: {
  36167. height: math.unit(15, "feet"),
  36168. name: "Back",
  36169. image: {
  36170. source: "./media/characters/rojas/back.svg",
  36171. extra: 1023/954,
  36172. bottom: 28/1051
  36173. }
  36174. },
  36175. },
  36176. [
  36177. {
  36178. name: "Normal",
  36179. height: math.unit(15, "feet"),
  36180. default: true
  36181. },
  36182. ]
  36183. ))
  36184. characterMakers.push(() => makeCharacter(
  36185. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36186. {
  36187. frontHuman: {
  36188. height: math.unit(5 + 7/12, "feet"),
  36189. name: "Front (Human)",
  36190. image: {
  36191. source: "./media/characters/alek-dryagan/front-human.svg",
  36192. extra: 1687/1667,
  36193. bottom: 69/1756
  36194. }
  36195. },
  36196. backHuman: {
  36197. height: math.unit(5 + 7/12, "feet"),
  36198. name: "Back (Human)",
  36199. image: {
  36200. source: "./media/characters/alek-dryagan/back-human.svg",
  36201. extra: 1670/1649,
  36202. bottom: 65/1735
  36203. }
  36204. },
  36205. frontDemi: {
  36206. height: math.unit(65, "feet"),
  36207. name: "Front (Demi)",
  36208. image: {
  36209. source: "./media/characters/alek-dryagan/front-demi.svg",
  36210. extra: 1669/1642,
  36211. bottom: 49/1718
  36212. }
  36213. },
  36214. backDemi: {
  36215. height: math.unit(65, "feet"),
  36216. name: "Back (Demi)",
  36217. image: {
  36218. source: "./media/characters/alek-dryagan/back-demi.svg",
  36219. extra: 1658/1637,
  36220. bottom: 40/1698
  36221. }
  36222. },
  36223. mawHuman: {
  36224. height: math.unit(0.3, "feet"),
  36225. name: "Maw (Human)",
  36226. image: {
  36227. source: "./media/characters/alek-dryagan/maw-human.svg"
  36228. }
  36229. },
  36230. mawDemi: {
  36231. height: math.unit(3.8, "feet"),
  36232. name: "Maw (Demi)",
  36233. image: {
  36234. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36235. }
  36236. },
  36237. },
  36238. [
  36239. {
  36240. name: "Normal",
  36241. height: math.unit(5 + 7/12, "feet"),
  36242. default: true
  36243. },
  36244. ]
  36245. ))
  36246. characterMakers.push(() => makeCharacter(
  36247. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36248. {
  36249. frontHuman: {
  36250. height: math.unit(5 + 2/12, "feet"),
  36251. name: "Front (Human)",
  36252. image: {
  36253. source: "./media/characters/gen/front-human.svg",
  36254. extra: 1627/1538,
  36255. bottom: 71/1698
  36256. }
  36257. },
  36258. backHuman: {
  36259. height: math.unit(5 + 2/12, "feet"),
  36260. name: "Back (Human)",
  36261. image: {
  36262. source: "./media/characters/gen/back-human.svg",
  36263. extra: 1638/1548,
  36264. bottom: 69/1707
  36265. }
  36266. },
  36267. frontDemi: {
  36268. height: math.unit(5 + 2/12, "feet"),
  36269. name: "Front (Demi)",
  36270. image: {
  36271. source: "./media/characters/gen/front-demi.svg",
  36272. extra: 1627/1538,
  36273. bottom: 71/1698
  36274. }
  36275. },
  36276. backDemi: {
  36277. height: math.unit(5 + 2/12, "feet"),
  36278. name: "Back (Demi)",
  36279. image: {
  36280. source: "./media/characters/gen/back-demi.svg",
  36281. extra: 1638/1548,
  36282. bottom: 69/1707
  36283. }
  36284. },
  36285. },
  36286. [
  36287. {
  36288. name: "Normal",
  36289. height: math.unit(5 + 2/12, "feet"),
  36290. default: true
  36291. },
  36292. ]
  36293. ))
  36294. characterMakers.push(() => makeCharacter(
  36295. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36296. {
  36297. frontImp: {
  36298. height: math.unit(1 + 11/12, "feet"),
  36299. name: "Front (Imp)",
  36300. image: {
  36301. source: "./media/characters/max-kobold/front-imp.svg",
  36302. extra: 1238/1134,
  36303. bottom: 81/1319
  36304. }
  36305. },
  36306. backImp: {
  36307. height: math.unit(1 + 11/12, "feet"),
  36308. name: "Back (Imp)",
  36309. image: {
  36310. source: "./media/characters/max-kobold/back-imp.svg",
  36311. extra: 1334/1175,
  36312. bottom: 34/1368
  36313. }
  36314. },
  36315. frontDemi: {
  36316. height: math.unit(5 + 9/12, "feet"),
  36317. name: "Front (Demi)",
  36318. image: {
  36319. source: "./media/characters/max-kobold/front-demi.svg",
  36320. extra: 1715/1685,
  36321. bottom: 54/1769
  36322. }
  36323. },
  36324. backDemi: {
  36325. height: math.unit(5 + 9/12, "feet"),
  36326. name: "Back (Demi)",
  36327. image: {
  36328. source: "./media/characters/max-kobold/back-demi.svg",
  36329. extra: 1752/1729,
  36330. bottom: 41/1793
  36331. }
  36332. },
  36333. handImp: {
  36334. height: math.unit(0.45, "feet"),
  36335. name: "Hand (Imp)",
  36336. image: {
  36337. source: "./media/characters/max-kobold/hand.svg"
  36338. }
  36339. },
  36340. pawImp: {
  36341. height: math.unit(0.46, "feet"),
  36342. name: "Paw (Imp)",
  36343. image: {
  36344. source: "./media/characters/max-kobold/paw.svg"
  36345. }
  36346. },
  36347. handDemi: {
  36348. height: math.unit(0.80, "feet"),
  36349. name: "Hand (Demi)",
  36350. image: {
  36351. source: "./media/characters/max-kobold/hand.svg"
  36352. }
  36353. },
  36354. pawDemi: {
  36355. height: math.unit(1.1, "feet"),
  36356. name: "Paw (Demi)",
  36357. image: {
  36358. source: "./media/characters/max-kobold/paw.svg"
  36359. }
  36360. },
  36361. headImp: {
  36362. height: math.unit(1.33, "feet"),
  36363. name: "Head (Imp)",
  36364. image: {
  36365. source: "./media/characters/max-kobold/head-imp.svg"
  36366. }
  36367. },
  36368. mawImp: {
  36369. height: math.unit(0.75, "feet"),
  36370. name: "Maw (Imp)",
  36371. image: {
  36372. source: "./media/characters/max-kobold/maw-imp.svg"
  36373. }
  36374. },
  36375. mawDemi: {
  36376. height: math.unit(0.42, "feet"),
  36377. name: "Maw (Demi)",
  36378. image: {
  36379. source: "./media/characters/max-kobold/maw-demi.svg"
  36380. }
  36381. },
  36382. },
  36383. [
  36384. {
  36385. name: "Normal",
  36386. height: math.unit(1 + 11/12, "feet"),
  36387. default: true
  36388. },
  36389. ]
  36390. ))
  36391. characterMakers.push(() => makeCharacter(
  36392. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36393. {
  36394. front: {
  36395. height: math.unit(7 + 5/12, "feet"),
  36396. name: "Front",
  36397. image: {
  36398. source: "./media/characters/carbon/front.svg",
  36399. extra: 1754/1689,
  36400. bottom: 65/1819
  36401. }
  36402. },
  36403. back: {
  36404. height: math.unit(7 + 5/12, "feet"),
  36405. name: "Back",
  36406. image: {
  36407. source: "./media/characters/carbon/back.svg",
  36408. extra: 1762/1695,
  36409. bottom: 24/1786
  36410. }
  36411. },
  36412. frontGigantamax: {
  36413. height: math.unit(150, "feet"),
  36414. name: "Front (Gigantamax)",
  36415. image: {
  36416. source: "./media/characters/carbon/front-gigantamax.svg",
  36417. extra: 1826/1669,
  36418. bottom: 59/1885
  36419. }
  36420. },
  36421. backGigantamax: {
  36422. height: math.unit(150, "feet"),
  36423. name: "Back (Gigantamax)",
  36424. image: {
  36425. source: "./media/characters/carbon/back-gigantamax.svg",
  36426. extra: 1796/1653,
  36427. bottom: 53/1849
  36428. }
  36429. },
  36430. maw: {
  36431. height: math.unit(0.48, "feet"),
  36432. name: "Maw",
  36433. image: {
  36434. source: "./media/characters/carbon/maw.svg"
  36435. }
  36436. },
  36437. mawGigantamax: {
  36438. height: math.unit(7.5, "feet"),
  36439. name: "Maw (Gigantamax)",
  36440. image: {
  36441. source: "./media/characters/carbon/maw-gigantamax.svg"
  36442. }
  36443. },
  36444. },
  36445. [
  36446. {
  36447. name: "Normal",
  36448. height: math.unit(7 + 5/12, "feet"),
  36449. default: true
  36450. },
  36451. ]
  36452. ))
  36453. characterMakers.push(() => makeCharacter(
  36454. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36455. {
  36456. front: {
  36457. height: math.unit(6, "feet"),
  36458. name: "Front",
  36459. image: {
  36460. source: "./media/characters/maverick/front.svg",
  36461. extra: 1672/1661,
  36462. bottom: 85/1757
  36463. }
  36464. },
  36465. back: {
  36466. height: math.unit(6, "feet"),
  36467. name: "Back",
  36468. image: {
  36469. source: "./media/characters/maverick/back.svg",
  36470. extra: 1642/1631,
  36471. bottom: 38/1680
  36472. }
  36473. },
  36474. },
  36475. [
  36476. {
  36477. name: "Normal",
  36478. height: math.unit(6, "feet"),
  36479. default: true
  36480. },
  36481. ]
  36482. ))
  36483. characterMakers.push(() => makeCharacter(
  36484. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36485. {
  36486. front: {
  36487. height: math.unit(15, "feet"),
  36488. weight: math.unit(615, "lb"),
  36489. name: "Front",
  36490. image: {
  36491. source: "./media/characters/grockle/front.svg",
  36492. extra: 1535/1427,
  36493. bottom: 56/1591
  36494. }
  36495. },
  36496. },
  36497. [
  36498. {
  36499. name: "Normal",
  36500. height: math.unit(15, "feet"),
  36501. default: true
  36502. },
  36503. {
  36504. name: "Large",
  36505. height: math.unit(150, "feet")
  36506. },
  36507. {
  36508. name: "Macro",
  36509. height: math.unit(1876, "feet")
  36510. },
  36511. {
  36512. name: "Mega Macro",
  36513. height: math.unit(121940, "feet")
  36514. },
  36515. {
  36516. name: "Giga Macro",
  36517. height: math.unit(750, "km")
  36518. },
  36519. {
  36520. name: "Tera Macro",
  36521. height: math.unit(750000, "km")
  36522. },
  36523. {
  36524. name: "Galactic",
  36525. height: math.unit(1.4e5, "km")
  36526. },
  36527. {
  36528. name: "Godlike",
  36529. height: math.unit(9.8e280, "galaxies")
  36530. },
  36531. ]
  36532. ))
  36533. characterMakers.push(() => makeCharacter(
  36534. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36535. {
  36536. front: {
  36537. height: math.unit(11, "meters"),
  36538. weight: math.unit(20, "tonnes"),
  36539. name: "Front",
  36540. image: {
  36541. source: "./media/characters/alistair/front.svg",
  36542. extra: 1265/1009,
  36543. bottom: 93/1358
  36544. }
  36545. },
  36546. },
  36547. [
  36548. {
  36549. name: "Normal",
  36550. height: math.unit(11, "meters"),
  36551. default: true
  36552. },
  36553. ]
  36554. ))
  36555. characterMakers.push(() => makeCharacter(
  36556. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36557. {
  36558. front: {
  36559. height: math.unit(5 + 8/12, "feet"),
  36560. name: "Front",
  36561. image: {
  36562. source: "./media/characters/haruka/front.svg",
  36563. extra: 2012/1952,
  36564. bottom: 0/2012
  36565. }
  36566. },
  36567. },
  36568. [
  36569. {
  36570. name: "Normal",
  36571. height: math.unit(5 + 8/12, "feet"),
  36572. default: true
  36573. },
  36574. ]
  36575. ))
  36576. characterMakers.push(() => makeCharacter(
  36577. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36578. {
  36579. back: {
  36580. height: math.unit(9, "feet"),
  36581. name: "Back",
  36582. image: {
  36583. source: "./media/characters/vivian-sylveon/back.svg",
  36584. extra: 1853/1714,
  36585. bottom: 0/1853
  36586. }
  36587. },
  36588. },
  36589. [
  36590. {
  36591. name: "Normal",
  36592. height: math.unit(9, "feet"),
  36593. default: true
  36594. },
  36595. {
  36596. name: "Macro",
  36597. height: math.unit(500, "feet")
  36598. },
  36599. {
  36600. name: "Megamacro",
  36601. height: math.unit(600, "miles")
  36602. },
  36603. {
  36604. name: "Gigamacro",
  36605. height: math.unit(30000, "miles")
  36606. },
  36607. ]
  36608. ))
  36609. characterMakers.push(() => makeCharacter(
  36610. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36611. {
  36612. anthro: {
  36613. height: math.unit(5 + 10/12, "feet"),
  36614. weight: math.unit(100, "lb"),
  36615. name: "Anthro",
  36616. image: {
  36617. source: "./media/characters/daiki/anthro.svg",
  36618. extra: 1115/1027,
  36619. bottom: 69/1184
  36620. }
  36621. },
  36622. feral: {
  36623. height: math.unit(200, "feet"),
  36624. name: "Feral",
  36625. image: {
  36626. source: "./media/characters/daiki/feral.svg",
  36627. extra: 1256/313,
  36628. bottom: 39/1295
  36629. }
  36630. },
  36631. feralHead: {
  36632. height: math.unit(171, "feet"),
  36633. name: "Feral Head",
  36634. image: {
  36635. source: "./media/characters/daiki/feral-head.svg"
  36636. }
  36637. },
  36638. manaDragon: {
  36639. height: math.unit(170, "meters"),
  36640. name: "Mana-dragon",
  36641. image: {
  36642. source: "./media/characters/daiki/mana-dragon.svg",
  36643. extra: 763/420,
  36644. bottom: 97/860
  36645. }
  36646. },
  36647. },
  36648. [
  36649. {
  36650. name: "Normal",
  36651. height: math.unit(5 + 10/12, "feet"),
  36652. default: true
  36653. },
  36654. ]
  36655. ))
  36656. characterMakers.push(() => makeCharacter(
  36657. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36658. {
  36659. fullyEquippedFront: {
  36660. height: math.unit(3 + 1/12, "feet"),
  36661. weight: math.unit(24, "lb"),
  36662. name: "Fully Equipped (Front)",
  36663. image: {
  36664. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36665. extra: 687/605,
  36666. bottom: 18/705
  36667. }
  36668. },
  36669. fullyEquippedBack: {
  36670. height: math.unit(3 + 1/12, "feet"),
  36671. weight: math.unit(24, "lb"),
  36672. name: "Fully Equipped (Back)",
  36673. image: {
  36674. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36675. extra: 689/590,
  36676. bottom: 18/707
  36677. }
  36678. },
  36679. dailyWear: {
  36680. height: math.unit(3 + 1/12, "feet"),
  36681. weight: math.unit(24, "lb"),
  36682. name: "Daily Wear",
  36683. image: {
  36684. source: "./media/characters/tea-spot/daily-wear.svg",
  36685. extra: 701/620,
  36686. bottom: 21/722
  36687. }
  36688. },
  36689. maidWork: {
  36690. height: math.unit(3 + 1/12, "feet"),
  36691. weight: math.unit(24, "lb"),
  36692. name: "Maid Work",
  36693. image: {
  36694. source: "./media/characters/tea-spot/maid-work.svg",
  36695. extra: 693/609,
  36696. bottom: 15/708
  36697. }
  36698. },
  36699. },
  36700. [
  36701. {
  36702. name: "Normal",
  36703. height: math.unit(3 + 1/12, "feet"),
  36704. default: true
  36705. },
  36706. ]
  36707. ))
  36708. characterMakers.push(() => makeCharacter(
  36709. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36710. {
  36711. front: {
  36712. height: math.unit(175, "cm"),
  36713. weight: math.unit(75, "kg"),
  36714. name: "Front",
  36715. image: {
  36716. source: "./media/characters/chee/front.svg",
  36717. extra: 1796/1740,
  36718. bottom: 40/1836
  36719. }
  36720. },
  36721. },
  36722. [
  36723. {
  36724. name: "Micro-Micro",
  36725. height: math.unit(1, "nm")
  36726. },
  36727. {
  36728. name: "Micro-erst",
  36729. height: math.unit(1, "micrometer")
  36730. },
  36731. {
  36732. name: "Micro-er",
  36733. height: math.unit(1, "cm")
  36734. },
  36735. {
  36736. name: "Normal",
  36737. height: math.unit(175, "cm"),
  36738. default: true
  36739. },
  36740. {
  36741. name: "Macro",
  36742. height: math.unit(100, "m")
  36743. },
  36744. {
  36745. name: "Macro-er",
  36746. height: math.unit(1, "km")
  36747. },
  36748. {
  36749. name: "Macro-erst",
  36750. height: math.unit(10, "km")
  36751. },
  36752. {
  36753. name: "Macro-Macro",
  36754. height: math.unit(100, "km")
  36755. },
  36756. ]
  36757. ))
  36758. characterMakers.push(() => makeCharacter(
  36759. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36760. {
  36761. front: {
  36762. height: math.unit(11 + 9/12, "feet"),
  36763. weight: math.unit(935, "lb"),
  36764. name: "Front",
  36765. image: {
  36766. source: "./media/characters/kingsley/front.svg",
  36767. extra: 1803/1674,
  36768. bottom: 127/1930
  36769. }
  36770. },
  36771. frontNude: {
  36772. height: math.unit(11 + 9/12, "feet"),
  36773. weight: math.unit(935, "lb"),
  36774. name: "Front (Nude)",
  36775. image: {
  36776. source: "./media/characters/kingsley/front-nude.svg",
  36777. extra: 1803/1674,
  36778. bottom: 127/1930
  36779. }
  36780. },
  36781. },
  36782. [
  36783. {
  36784. name: "Normal",
  36785. height: math.unit(11 + 9/12, "feet"),
  36786. default: true
  36787. },
  36788. ]
  36789. ))
  36790. characterMakers.push(() => makeCharacter(
  36791. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36792. {
  36793. side: {
  36794. height: math.unit(9, "feet"),
  36795. name: "Side",
  36796. image: {
  36797. source: "./media/characters/rymel/side.svg",
  36798. extra: 792/469,
  36799. bottom: 121/913
  36800. }
  36801. },
  36802. maw: {
  36803. height: math.unit(2.4, "meters"),
  36804. name: "Maw",
  36805. image: {
  36806. source: "./media/characters/rymel/maw.svg"
  36807. }
  36808. },
  36809. },
  36810. [
  36811. {
  36812. name: "House Drake",
  36813. height: math.unit(2, "feet")
  36814. },
  36815. {
  36816. name: "Reduced",
  36817. height: math.unit(4.5, "feet")
  36818. },
  36819. {
  36820. name: "Normal",
  36821. height: math.unit(9, "feet"),
  36822. default: true
  36823. },
  36824. ]
  36825. ))
  36826. characterMakers.push(() => makeCharacter(
  36827. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36828. {
  36829. front: {
  36830. height: math.unit(1.74, "meters"),
  36831. weight: math.unit(55, "kg"),
  36832. name: "Front",
  36833. image: {
  36834. source: "./media/characters/rubus/front.svg",
  36835. extra: 1894/1742,
  36836. bottom: 44/1938
  36837. }
  36838. },
  36839. },
  36840. [
  36841. {
  36842. name: "Normal",
  36843. height: math.unit(1.74, "meters"),
  36844. default: true
  36845. },
  36846. ]
  36847. ))
  36848. characterMakers.push(() => makeCharacter(
  36849. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36850. {
  36851. front: {
  36852. height: math.unit(5 + 2/12, "feet"),
  36853. weight: math.unit(112, "lb"),
  36854. name: "Front",
  36855. image: {
  36856. source: "./media/characters/cassie-kingston/front.svg",
  36857. extra: 1438/1390,
  36858. bottom: 47/1485
  36859. }
  36860. },
  36861. },
  36862. [
  36863. {
  36864. name: "Normal",
  36865. height: math.unit(5 + 2/12, "feet"),
  36866. default: true
  36867. },
  36868. {
  36869. name: "Macro",
  36870. height: math.unit(128, "feet")
  36871. },
  36872. {
  36873. name: "Megamacro",
  36874. height: math.unit(2.56, "miles")
  36875. },
  36876. ]
  36877. ))
  36878. characterMakers.push(() => makeCharacter(
  36879. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36880. {
  36881. front: {
  36882. height: math.unit(7, "feet"),
  36883. name: "Front",
  36884. image: {
  36885. source: "./media/characters/fox/front.svg",
  36886. extra: 1798/1703,
  36887. bottom: 55/1853
  36888. }
  36889. },
  36890. back: {
  36891. height: math.unit(7, "feet"),
  36892. name: "Back",
  36893. image: {
  36894. source: "./media/characters/fox/back.svg",
  36895. extra: 1748/1649,
  36896. bottom: 32/1780
  36897. }
  36898. },
  36899. head: {
  36900. height: math.unit(1.95, "feet"),
  36901. name: "Head",
  36902. image: {
  36903. source: "./media/characters/fox/head.svg"
  36904. }
  36905. },
  36906. dick: {
  36907. height: math.unit(1.33, "feet"),
  36908. name: "Dick",
  36909. image: {
  36910. source: "./media/characters/fox/dick.svg"
  36911. }
  36912. },
  36913. foot: {
  36914. height: math.unit(1, "feet"),
  36915. name: "Foot",
  36916. image: {
  36917. source: "./media/characters/fox/foot.svg"
  36918. }
  36919. },
  36920. paw: {
  36921. height: math.unit(0.92, "feet"),
  36922. name: "Paw",
  36923. image: {
  36924. source: "./media/characters/fox/paw.svg"
  36925. }
  36926. },
  36927. },
  36928. [
  36929. {
  36930. name: "Small",
  36931. height: math.unit(3, "inches")
  36932. },
  36933. {
  36934. name: "\"Realistic\"",
  36935. height: math.unit(7, "feet")
  36936. },
  36937. {
  36938. name: "Normal",
  36939. height: math.unit(150, "feet"),
  36940. default: true
  36941. },
  36942. {
  36943. name: "BIG",
  36944. height: math.unit(1200, "feet")
  36945. },
  36946. {
  36947. name: "👀",
  36948. height: math.unit(5, "miles")
  36949. },
  36950. {
  36951. name: "👀👀👀",
  36952. height: math.unit(64, "miles")
  36953. },
  36954. ]
  36955. ))
  36956. characterMakers.push(() => makeCharacter(
  36957. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36958. {
  36959. front: {
  36960. height: math.unit(625, "feet"),
  36961. name: "Front",
  36962. image: {
  36963. source: "./media/characters/asonja-rossa/front.svg",
  36964. extra: 1833/1686,
  36965. bottom: 24/1857
  36966. }
  36967. },
  36968. back: {
  36969. height: math.unit(625, "feet"),
  36970. name: "Back",
  36971. image: {
  36972. source: "./media/characters/asonja-rossa/back.svg",
  36973. extra: 1852/1753,
  36974. bottom: 26/1878
  36975. }
  36976. },
  36977. },
  36978. [
  36979. {
  36980. name: "Macro",
  36981. height: math.unit(625, "feet"),
  36982. default: true
  36983. },
  36984. ]
  36985. ))
  36986. characterMakers.push(() => makeCharacter(
  36987. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  36988. {
  36989. side: {
  36990. height: math.unit(8, "feet"),
  36991. name: "Side",
  36992. image: {
  36993. source: "./media/characters/rezukii/side.svg",
  36994. extra: 979/542,
  36995. bottom: 87/1066
  36996. }
  36997. },
  36998. sitting: {
  36999. height: math.unit(14.6, "feet"),
  37000. name: "Sitting",
  37001. image: {
  37002. source: "./media/characters/rezukii/sitting.svg",
  37003. extra: 1023/813,
  37004. bottom: 45/1068
  37005. }
  37006. },
  37007. },
  37008. [
  37009. {
  37010. name: "Tiny",
  37011. height: math.unit(2, "feet")
  37012. },
  37013. {
  37014. name: "Smol",
  37015. height: math.unit(4, "feet")
  37016. },
  37017. {
  37018. name: "Normal",
  37019. height: math.unit(8, "feet"),
  37020. default: true
  37021. },
  37022. {
  37023. name: "Big",
  37024. height: math.unit(12, "feet")
  37025. },
  37026. {
  37027. name: "Macro",
  37028. height: math.unit(30, "feet")
  37029. },
  37030. ]
  37031. ))
  37032. characterMakers.push(() => makeCharacter(
  37033. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37034. {
  37035. front: {
  37036. height: math.unit(14, "feet"),
  37037. weight: math.unit(9.5, "tonnes"),
  37038. name: "Front",
  37039. image: {
  37040. source: "./media/characters/dawnheart/front.svg",
  37041. extra: 2792/2675,
  37042. bottom: 64/2856
  37043. }
  37044. },
  37045. },
  37046. [
  37047. {
  37048. name: "Normal",
  37049. height: math.unit(14, "feet"),
  37050. default: true
  37051. },
  37052. ]
  37053. ))
  37054. characterMakers.push(() => makeCharacter(
  37055. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  37056. {
  37057. front: {
  37058. height: math.unit(1.7, "m"),
  37059. name: "Front",
  37060. image: {
  37061. source: "./media/characters/gladi/front.svg",
  37062. extra: 1460/1362,
  37063. bottom: 19/1479
  37064. }
  37065. },
  37066. back: {
  37067. height: math.unit(1.7, "m"),
  37068. name: "Back",
  37069. image: {
  37070. source: "./media/characters/gladi/back.svg",
  37071. extra: 1459/1357,
  37072. bottom: 12/1471
  37073. }
  37074. },
  37075. feral: {
  37076. height: math.unit(2.05, "m"),
  37077. name: "Feral",
  37078. image: {
  37079. source: "./media/characters/gladi/feral.svg",
  37080. extra: 821/557,
  37081. bottom: 91/912
  37082. }
  37083. },
  37084. },
  37085. [
  37086. {
  37087. name: "Shortest",
  37088. height: math.unit(70, "cm")
  37089. },
  37090. {
  37091. name: "Normal",
  37092. height: math.unit(1.7, "m")
  37093. },
  37094. {
  37095. name: "Macro",
  37096. height: math.unit(10, "m"),
  37097. default: true
  37098. },
  37099. {
  37100. name: "Tallest",
  37101. height: math.unit(200, "m")
  37102. },
  37103. ]
  37104. ))
  37105. characterMakers.push(() => makeCharacter(
  37106. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37107. {
  37108. front: {
  37109. height: math.unit(5 + 7/12, "feet"),
  37110. weight: math.unit(2, "tons"),
  37111. name: "Front",
  37112. image: {
  37113. source: "./media/characters/erdno/front.svg",
  37114. extra: 1234/1129,
  37115. bottom: 35/1269
  37116. }
  37117. },
  37118. angled: {
  37119. height: math.unit(5 + 7/12, "feet"),
  37120. weight: math.unit(2, "tons"),
  37121. name: "Angled",
  37122. image: {
  37123. source: "./media/characters/erdno/angled.svg",
  37124. extra: 1185/1139,
  37125. bottom: 36/1221
  37126. }
  37127. },
  37128. side: {
  37129. height: math.unit(5 + 7/12, "feet"),
  37130. weight: math.unit(2, "tons"),
  37131. name: "Side",
  37132. image: {
  37133. source: "./media/characters/erdno/side.svg",
  37134. extra: 1191/1144,
  37135. bottom: 40/1231
  37136. }
  37137. },
  37138. back: {
  37139. height: math.unit(5 + 7/12, "feet"),
  37140. weight: math.unit(2, "tons"),
  37141. name: "Back",
  37142. image: {
  37143. source: "./media/characters/erdno/back.svg",
  37144. extra: 1202/1146,
  37145. bottom: 17/1219
  37146. }
  37147. },
  37148. frontNsfw: {
  37149. height: math.unit(5 + 7/12, "feet"),
  37150. weight: math.unit(2, "tons"),
  37151. name: "Front (NSFW)",
  37152. image: {
  37153. source: "./media/characters/erdno/front-nsfw.svg",
  37154. extra: 1234/1129,
  37155. bottom: 35/1269
  37156. }
  37157. },
  37158. angledNsfw: {
  37159. height: math.unit(5 + 7/12, "feet"),
  37160. weight: math.unit(2, "tons"),
  37161. name: "Angled (NSFW)",
  37162. image: {
  37163. source: "./media/characters/erdno/angled-nsfw.svg",
  37164. extra: 1185/1139,
  37165. bottom: 36/1221
  37166. }
  37167. },
  37168. sideNsfw: {
  37169. height: math.unit(5 + 7/12, "feet"),
  37170. weight: math.unit(2, "tons"),
  37171. name: "Side (NSFW)",
  37172. image: {
  37173. source: "./media/characters/erdno/side-nsfw.svg",
  37174. extra: 1191/1144,
  37175. bottom: 40/1231
  37176. }
  37177. },
  37178. backNsfw: {
  37179. height: math.unit(5 + 7/12, "feet"),
  37180. weight: math.unit(2, "tons"),
  37181. name: "Back (NSFW)",
  37182. image: {
  37183. source: "./media/characters/erdno/back-nsfw.svg",
  37184. extra: 1202/1146,
  37185. bottom: 17/1219
  37186. }
  37187. },
  37188. frontHyper: {
  37189. height: math.unit(5 + 7/12, "feet"),
  37190. weight: math.unit(2, "tons"),
  37191. name: "Front (Hyper)",
  37192. image: {
  37193. source: "./media/characters/erdno/front-hyper.svg",
  37194. extra: 1298/1136,
  37195. bottom: 35/1333
  37196. }
  37197. },
  37198. },
  37199. [
  37200. {
  37201. name: "Normal",
  37202. height: math.unit(5 + 7/12, "feet"),
  37203. default: true
  37204. },
  37205. {
  37206. name: "Big",
  37207. height: math.unit(5.7, "meters")
  37208. },
  37209. {
  37210. name: "Macro",
  37211. height: math.unit(5.7, "kilometers")
  37212. },
  37213. {
  37214. name: "Megamacro",
  37215. height: math.unit(5.7, "earths")
  37216. },
  37217. ]
  37218. ))
  37219. characterMakers.push(() => makeCharacter(
  37220. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37221. {
  37222. front: {
  37223. height: math.unit(5 + 10/12, "feet"),
  37224. weight: math.unit(150, "lb"),
  37225. name: "Front",
  37226. image: {
  37227. source: "./media/characters/jamie/front.svg",
  37228. extra: 1908/1768,
  37229. bottom: 19/1927
  37230. }
  37231. },
  37232. },
  37233. [
  37234. {
  37235. name: "Minimum",
  37236. height: math.unit(2, "cm")
  37237. },
  37238. {
  37239. name: "Micro",
  37240. height: math.unit(3, "inches")
  37241. },
  37242. {
  37243. name: "Normal",
  37244. height: math.unit(5 + 10/12, "feet"),
  37245. default: true
  37246. },
  37247. {
  37248. name: "Macro",
  37249. height: math.unit(150, "feet")
  37250. },
  37251. {
  37252. name: "Megamacro",
  37253. height: math.unit(10000, "m")
  37254. },
  37255. ]
  37256. ))
  37257. characterMakers.push(() => makeCharacter(
  37258. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37259. {
  37260. front: {
  37261. height: math.unit(2, "meters"),
  37262. weight: math.unit(100, "kg"),
  37263. name: "Front",
  37264. image: {
  37265. source: "./media/characters/shiron/front.svg",
  37266. extra: 2103/1985,
  37267. bottom: 98/2201
  37268. }
  37269. },
  37270. back: {
  37271. height: math.unit(2, "meters"),
  37272. weight: math.unit(100, "kg"),
  37273. name: "Back",
  37274. image: {
  37275. source: "./media/characters/shiron/back.svg",
  37276. extra: 2110/2015,
  37277. bottom: 89/2199
  37278. }
  37279. },
  37280. hand: {
  37281. height: math.unit(0.96, "feet"),
  37282. name: "Hand",
  37283. image: {
  37284. source: "./media/characters/shiron/hand.svg"
  37285. }
  37286. },
  37287. foot: {
  37288. height: math.unit(1.464, "feet"),
  37289. name: "Foot",
  37290. image: {
  37291. source: "./media/characters/shiron/foot.svg"
  37292. }
  37293. },
  37294. },
  37295. [
  37296. {
  37297. name: "Normal",
  37298. height: math.unit(2, "meters")
  37299. },
  37300. {
  37301. name: "Macro",
  37302. height: math.unit(500, "meters"),
  37303. default: true
  37304. },
  37305. {
  37306. name: "Megamacro",
  37307. height: math.unit(20, "km")
  37308. },
  37309. ]
  37310. ))
  37311. characterMakers.push(() => makeCharacter(
  37312. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37313. {
  37314. front: {
  37315. height: math.unit(6, "feet"),
  37316. name: "Front",
  37317. image: {
  37318. source: "./media/characters/sam/front.svg",
  37319. extra: 849/826,
  37320. bottom: 19/868
  37321. }
  37322. },
  37323. },
  37324. [
  37325. {
  37326. name: "Normal",
  37327. height: math.unit(6, "feet"),
  37328. default: true
  37329. },
  37330. ]
  37331. ))
  37332. characterMakers.push(() => makeCharacter(
  37333. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37334. {
  37335. front: {
  37336. height: math.unit(8 + 4/12, "feet"),
  37337. weight: math.unit(122, "kg"),
  37338. name: "Front",
  37339. image: {
  37340. source: "./media/characters/namori-kurogawa/front.svg",
  37341. extra: 1894/1576,
  37342. bottom: 34/1928
  37343. }
  37344. },
  37345. },
  37346. [
  37347. {
  37348. name: "Normal",
  37349. height: math.unit(8 + 4/12, "feet"),
  37350. default: true
  37351. },
  37352. ]
  37353. ))
  37354. characterMakers.push(() => makeCharacter(
  37355. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37356. {
  37357. front: {
  37358. height: math.unit(9, "feet"),
  37359. weight: math.unit(621, "lb"),
  37360. name: "Front",
  37361. image: {
  37362. source: "./media/characters/unmru/front.svg",
  37363. extra: 1853/1747,
  37364. bottom: 73/1926
  37365. }
  37366. },
  37367. side: {
  37368. height: math.unit(9, "feet"),
  37369. weight: math.unit(621, "lb"),
  37370. name: "Side",
  37371. image: {
  37372. source: "./media/characters/unmru/side.svg",
  37373. extra: 1781/1671,
  37374. bottom: 127/1908
  37375. }
  37376. },
  37377. back: {
  37378. height: math.unit(9, "feet"),
  37379. weight: math.unit(621, "lb"),
  37380. name: "Back",
  37381. image: {
  37382. source: "./media/characters/unmru/back.svg",
  37383. extra: 1894/1765,
  37384. bottom: 75/1969
  37385. }
  37386. },
  37387. dick: {
  37388. height: math.unit(3, "feet"),
  37389. weight: math.unit(35, "lb"),
  37390. name: "Dick",
  37391. image: {
  37392. source: "./media/characters/unmru/dick.svg"
  37393. }
  37394. },
  37395. },
  37396. [
  37397. {
  37398. name: "Normal",
  37399. height: math.unit(9, "feet")
  37400. },
  37401. {
  37402. name: "Natural",
  37403. height: math.unit(27, "feet"),
  37404. default: true
  37405. },
  37406. {
  37407. name: "Giant",
  37408. height: math.unit(90, "feet")
  37409. },
  37410. {
  37411. name: "Kaiju",
  37412. height: math.unit(270, "feet")
  37413. },
  37414. {
  37415. name: "Macro",
  37416. height: math.unit(900, "feet")
  37417. },
  37418. {
  37419. name: "Macro+",
  37420. height: math.unit(2700, "feet")
  37421. },
  37422. {
  37423. name: "Megamacro",
  37424. height: math.unit(9000, "feet")
  37425. },
  37426. {
  37427. name: "City-Crushing",
  37428. height: math.unit(27000, "feet")
  37429. },
  37430. {
  37431. name: "Mountain-Mashing",
  37432. height: math.unit(90000, "feet")
  37433. },
  37434. {
  37435. name: "Earth-Eclipsing",
  37436. height: math.unit(2.7e8, "feet")
  37437. },
  37438. {
  37439. name: "Sol-Swallowing",
  37440. height: math.unit(9e10, "feet")
  37441. },
  37442. {
  37443. name: "Majoris-Munching",
  37444. height: math.unit(2.7e13, "feet")
  37445. },
  37446. ]
  37447. ))
  37448. characterMakers.push(() => makeCharacter(
  37449. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37450. {
  37451. front: {
  37452. height: math.unit(1, "inch"),
  37453. name: "Front",
  37454. image: {
  37455. source: "./media/characters/squeaks-mouse/front.svg",
  37456. extra: 352/308,
  37457. bottom: 25/377
  37458. }
  37459. },
  37460. },
  37461. [
  37462. {
  37463. name: "Micro",
  37464. height: math.unit(1, "inch"),
  37465. default: true
  37466. },
  37467. ]
  37468. ))
  37469. characterMakers.push(() => makeCharacter(
  37470. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37471. {
  37472. side: {
  37473. height: math.unit(35, "feet"),
  37474. name: "Side",
  37475. image: {
  37476. source: "./media/characters/sayko/side.svg",
  37477. extra: 1697/1021,
  37478. bottom: 82/1779
  37479. }
  37480. },
  37481. head: {
  37482. height: math.unit(16, "feet"),
  37483. name: "Head",
  37484. image: {
  37485. source: "./media/characters/sayko/head.svg"
  37486. }
  37487. },
  37488. forepaw: {
  37489. height: math.unit(7.85, "feet"),
  37490. name: "Forepaw",
  37491. image: {
  37492. source: "./media/characters/sayko/forepaw.svg"
  37493. }
  37494. },
  37495. hindpaw: {
  37496. height: math.unit(8.8, "feet"),
  37497. name: "Hindpaw",
  37498. image: {
  37499. source: "./media/characters/sayko/hindpaw.svg"
  37500. }
  37501. },
  37502. },
  37503. [
  37504. {
  37505. name: "Normal",
  37506. height: math.unit(35, "feet"),
  37507. default: true
  37508. },
  37509. {
  37510. name: "Colossus",
  37511. height: math.unit(100, "meters")
  37512. },
  37513. {
  37514. name: "\"Small\" Deity",
  37515. height: math.unit(1, "km")
  37516. },
  37517. {
  37518. name: "\"Large\" Deity",
  37519. height: math.unit(15, "km")
  37520. },
  37521. ]
  37522. ))
  37523. characterMakers.push(() => makeCharacter(
  37524. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37525. {
  37526. front: {
  37527. height: math.unit(6, "feet"),
  37528. weight: math.unit(250, "lb"),
  37529. name: "Front",
  37530. image: {
  37531. source: "./media/characters/mukiro/front.svg",
  37532. extra: 1368/1310,
  37533. bottom: 34/1402
  37534. }
  37535. },
  37536. },
  37537. [
  37538. {
  37539. name: "Normal",
  37540. height: math.unit(6, "feet"),
  37541. default: true
  37542. },
  37543. ]
  37544. ))
  37545. characterMakers.push(() => makeCharacter(
  37546. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37547. {
  37548. front: {
  37549. height: math.unit(12 + 4/12, "feet"),
  37550. name: "Front",
  37551. image: {
  37552. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37553. extra: 1346/1311,
  37554. bottom: 65/1411
  37555. }
  37556. },
  37557. },
  37558. [
  37559. {
  37560. name: "Base",
  37561. height: math.unit(12 + 4/12, "feet"),
  37562. default: true
  37563. },
  37564. {
  37565. name: "Macro",
  37566. height: math.unit(150, "feet")
  37567. },
  37568. {
  37569. name: "Mega",
  37570. height: math.unit(2, "miles")
  37571. },
  37572. {
  37573. name: "Demi God",
  37574. height: math.unit(4, "AU")
  37575. },
  37576. {
  37577. name: "God Size",
  37578. height: math.unit(1, "universe")
  37579. },
  37580. ]
  37581. ))
  37582. characterMakers.push(() => makeCharacter(
  37583. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37584. {
  37585. front: {
  37586. height: math.unit(3 + 3/12, "feet"),
  37587. weight: math.unit(88, "lb"),
  37588. name: "Front",
  37589. image: {
  37590. source: "./media/characters/trey/front.svg",
  37591. extra: 1815/1509,
  37592. bottom: 60/1875
  37593. }
  37594. },
  37595. },
  37596. [
  37597. {
  37598. name: "Normal",
  37599. height: math.unit(3 + 3/12, "feet"),
  37600. default: true
  37601. },
  37602. ]
  37603. ))
  37604. characterMakers.push(() => makeCharacter(
  37605. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37606. {
  37607. front: {
  37608. height: math.unit(4, "meters"),
  37609. name: "Front",
  37610. image: {
  37611. source: "./media/characters/adelonda/front.svg",
  37612. extra: 1077/982,
  37613. bottom: 39/1116
  37614. }
  37615. },
  37616. back: {
  37617. height: math.unit(4, "meters"),
  37618. name: "Back",
  37619. image: {
  37620. source: "./media/characters/adelonda/back.svg",
  37621. extra: 1105/1003,
  37622. bottom: 25/1130
  37623. }
  37624. },
  37625. },
  37626. [
  37627. {
  37628. name: "Normal",
  37629. height: math.unit(4, "meters"),
  37630. default: true
  37631. },
  37632. ]
  37633. ))
  37634. characterMakers.push(() => makeCharacter(
  37635. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37636. {
  37637. front: {
  37638. height: math.unit(8 + 4/12, "feet"),
  37639. weight: math.unit(670, "lb"),
  37640. name: "Front",
  37641. image: {
  37642. source: "./media/characters/acadiel/front.svg",
  37643. extra: 1901/1595,
  37644. bottom: 142/2043
  37645. }
  37646. },
  37647. },
  37648. [
  37649. {
  37650. name: "Normal",
  37651. height: math.unit(8 + 4/12, "feet"),
  37652. default: true
  37653. },
  37654. {
  37655. name: "Macro",
  37656. height: math.unit(200, "feet")
  37657. },
  37658. ]
  37659. ))
  37660. characterMakers.push(() => makeCharacter(
  37661. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37662. {
  37663. front: {
  37664. height: math.unit(6 + 2/12, "feet"),
  37665. weight: math.unit(185, "lb"),
  37666. name: "Front",
  37667. image: {
  37668. source: "./media/characters/kayne-ein/front.svg",
  37669. extra: 1780/1560,
  37670. bottom: 81/1861
  37671. }
  37672. },
  37673. },
  37674. [
  37675. {
  37676. name: "Normal",
  37677. height: math.unit(6 + 2/12, "feet"),
  37678. default: true
  37679. },
  37680. {
  37681. name: "Transformation Stage",
  37682. height: math.unit(15, "feet")
  37683. },
  37684. {
  37685. name: "Macro",
  37686. height: math.unit(150, "feet")
  37687. },
  37688. {
  37689. name: "Earth's Shadow",
  37690. height: math.unit(6200, "miles")
  37691. },
  37692. {
  37693. name: "Universal Demon",
  37694. height: math.unit(28e9, "parsecs")
  37695. },
  37696. {
  37697. name: "Multiverse God",
  37698. height: math.unit(3, "multiverses")
  37699. },
  37700. ]
  37701. ))
  37702. characterMakers.push(() => makeCharacter(
  37703. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37704. {
  37705. front: {
  37706. height: math.unit(5 + 5/12, "feet"),
  37707. name: "Front",
  37708. image: {
  37709. source: "./media/characters/fawn/front.svg",
  37710. extra: 1873/1731,
  37711. bottom: 95/1968
  37712. }
  37713. },
  37714. back: {
  37715. height: math.unit(5 + 5/12, "feet"),
  37716. name: "Back",
  37717. image: {
  37718. source: "./media/characters/fawn/back.svg",
  37719. extra: 1813/1700,
  37720. bottom: 14/1827
  37721. }
  37722. },
  37723. hoof: {
  37724. height: math.unit(1.45, "feet"),
  37725. name: "Hoof",
  37726. image: {
  37727. source: "./media/characters/fawn/hoof.svg"
  37728. }
  37729. },
  37730. },
  37731. [
  37732. {
  37733. name: "Normal",
  37734. height: math.unit(5 + 5/12, "feet"),
  37735. default: true
  37736. },
  37737. ]
  37738. ))
  37739. characterMakers.push(() => makeCharacter(
  37740. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37741. {
  37742. front: {
  37743. height: math.unit(2 + 5/12, "feet"),
  37744. name: "Front",
  37745. image: {
  37746. source: "./media/characters/orion/front.svg",
  37747. extra: 1366/1304,
  37748. bottom: 43/1409
  37749. }
  37750. },
  37751. paw: {
  37752. height: math.unit(0.52, "feet"),
  37753. name: "Paw",
  37754. image: {
  37755. source: "./media/characters/orion/paw.svg"
  37756. }
  37757. },
  37758. },
  37759. [
  37760. {
  37761. name: "Normal",
  37762. height: math.unit(2 + 5/12, "feet"),
  37763. default: true
  37764. },
  37765. ]
  37766. ))
  37767. characterMakers.push(() => makeCharacter(
  37768. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37769. {
  37770. front: {
  37771. height: math.unit(5 + 10/12, "feet"),
  37772. name: "Front",
  37773. image: {
  37774. source: "./media/characters/vera/front.svg",
  37775. extra: 1680/1575,
  37776. bottom: 49/1729
  37777. }
  37778. },
  37779. back: {
  37780. height: math.unit(5 + 10/12, "feet"),
  37781. name: "Back",
  37782. image: {
  37783. source: "./media/characters/vera/back.svg",
  37784. extra: 1700/1588,
  37785. bottom: 18/1718
  37786. }
  37787. },
  37788. arcanine: {
  37789. height: math.unit(6 + 8/12, "feet"),
  37790. name: "Arcanine",
  37791. image: {
  37792. source: "./media/characters/vera/arcanine.svg",
  37793. extra: 1590/1511,
  37794. bottom: 71/1661
  37795. }
  37796. },
  37797. maw: {
  37798. height: math.unit(0.82, "feet"),
  37799. name: "Maw",
  37800. image: {
  37801. source: "./media/characters/vera/maw.svg"
  37802. }
  37803. },
  37804. mawArcanine: {
  37805. height: math.unit(0.97, "feet"),
  37806. name: "Maw (Arcanine)",
  37807. image: {
  37808. source: "./media/characters/vera/maw-arcanine.svg"
  37809. }
  37810. },
  37811. paw: {
  37812. height: math.unit(0.75, "feet"),
  37813. name: "Paw",
  37814. image: {
  37815. source: "./media/characters/vera/paw.svg"
  37816. }
  37817. },
  37818. pawprint: {
  37819. height: math.unit(0.52, "feet"),
  37820. name: "Pawprint",
  37821. image: {
  37822. source: "./media/characters/vera/pawprint.svg"
  37823. }
  37824. },
  37825. },
  37826. [
  37827. {
  37828. name: "Normal",
  37829. height: math.unit(5 + 10/12, "feet"),
  37830. default: true
  37831. },
  37832. {
  37833. name: "Macro",
  37834. height: math.unit(75, "feet")
  37835. },
  37836. ]
  37837. ))
  37838. characterMakers.push(() => makeCharacter(
  37839. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37840. {
  37841. front: {
  37842. height: math.unit(4, "feet"),
  37843. weight: math.unit(40, "lb"),
  37844. name: "Front",
  37845. image: {
  37846. source: "./media/characters/orvan-rabbit/front.svg",
  37847. extra: 1896/1642,
  37848. bottom: 29/1925
  37849. }
  37850. },
  37851. },
  37852. [
  37853. {
  37854. name: "Normal",
  37855. height: math.unit(4, "feet"),
  37856. default: true
  37857. },
  37858. ]
  37859. ))
  37860. characterMakers.push(() => makeCharacter(
  37861. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37862. {
  37863. front: {
  37864. height: math.unit(6, "feet"),
  37865. weight: math.unit(168, "lb"),
  37866. name: "Front",
  37867. image: {
  37868. source: "./media/characters/lisa/front.svg",
  37869. extra: 2065/1867,
  37870. bottom: 46/2111
  37871. }
  37872. },
  37873. back: {
  37874. height: math.unit(6, "feet"),
  37875. weight: math.unit(168, "lb"),
  37876. name: "Back",
  37877. image: {
  37878. source: "./media/characters/lisa/back.svg",
  37879. extra: 1982/1838,
  37880. bottom: 29/2011
  37881. }
  37882. },
  37883. maw: {
  37884. height: math.unit(0.81, "feet"),
  37885. name: "Maw",
  37886. image: {
  37887. source: "./media/characters/lisa/maw.svg"
  37888. }
  37889. },
  37890. paw: {
  37891. height: math.unit(0.9, "feet"),
  37892. name: "Paw",
  37893. image: {
  37894. source: "./media/characters/lisa/paw.svg"
  37895. }
  37896. },
  37897. caribousune: {
  37898. height: math.unit(7 + 2/12, "feet"),
  37899. weight: math.unit(268, "lb"),
  37900. name: "Caribousune",
  37901. image: {
  37902. source: "./media/characters/lisa/caribousune.svg",
  37903. extra: 1843/1633,
  37904. bottom: 29/1872
  37905. }
  37906. },
  37907. frontCaribousune: {
  37908. height: math.unit(7 + 2/12, "feet"),
  37909. weight: math.unit(268, "lb"),
  37910. name: "Front (Caribousune)",
  37911. image: {
  37912. source: "./media/characters/lisa/front-caribousune.svg",
  37913. extra: 1818/1638,
  37914. bottom: 52/1870
  37915. }
  37916. },
  37917. sideCaribousune: {
  37918. height: math.unit(7 + 2/12, "feet"),
  37919. weight: math.unit(268, "lb"),
  37920. name: "Side (Caribousune)",
  37921. image: {
  37922. source: "./media/characters/lisa/side-caribousune.svg",
  37923. extra: 1851/1635,
  37924. bottom: 16/1867
  37925. }
  37926. },
  37927. backCaribousune: {
  37928. height: math.unit(7 + 2/12, "feet"),
  37929. weight: math.unit(268, "lb"),
  37930. name: "Back (Caribousune)",
  37931. image: {
  37932. source: "./media/characters/lisa/back-caribousune.svg",
  37933. extra: 1801/1604,
  37934. bottom: 44/1845
  37935. }
  37936. },
  37937. caribou: {
  37938. height: math.unit(7 + 2/12, "feet"),
  37939. weight: math.unit(268, "lb"),
  37940. name: "Caribou",
  37941. image: {
  37942. source: "./media/characters/lisa/caribou.svg",
  37943. extra: 1843/1633,
  37944. bottom: 29/1872
  37945. }
  37946. },
  37947. frontCaribou: {
  37948. height: math.unit(7 + 2/12, "feet"),
  37949. weight: math.unit(268, "lb"),
  37950. name: "Front (Caribou)",
  37951. image: {
  37952. source: "./media/characters/lisa/front-caribou.svg",
  37953. extra: 1818/1638,
  37954. bottom: 52/1870
  37955. }
  37956. },
  37957. sideCaribou: {
  37958. height: math.unit(7 + 2/12, "feet"),
  37959. weight: math.unit(268, "lb"),
  37960. name: "Side (Caribou)",
  37961. image: {
  37962. source: "./media/characters/lisa/side-caribou.svg",
  37963. extra: 1851/1635,
  37964. bottom: 16/1867
  37965. }
  37966. },
  37967. backCaribou: {
  37968. height: math.unit(7 + 2/12, "feet"),
  37969. weight: math.unit(268, "lb"),
  37970. name: "Back (Caribou)",
  37971. image: {
  37972. source: "./media/characters/lisa/back-caribou.svg",
  37973. extra: 1801/1604,
  37974. bottom: 44/1845
  37975. }
  37976. },
  37977. mawCaribou: {
  37978. height: math.unit(1.45, "feet"),
  37979. name: "Maw (Caribou)",
  37980. image: {
  37981. source: "./media/characters/lisa/maw-caribou.svg"
  37982. }
  37983. },
  37984. mawCaribousune: {
  37985. height: math.unit(1.45, "feet"),
  37986. name: "Maw (Caribousune)",
  37987. image: {
  37988. source: "./media/characters/lisa/maw-caribousune.svg"
  37989. }
  37990. },
  37991. pawCaribousune: {
  37992. height: math.unit(1.61, "feet"),
  37993. name: "Paw (Caribou)",
  37994. image: {
  37995. source: "./media/characters/lisa/paw-caribousune.svg"
  37996. }
  37997. },
  37998. },
  37999. [
  38000. {
  38001. name: "Normal",
  38002. height: math.unit(6, "feet")
  38003. },
  38004. {
  38005. name: "God Size",
  38006. height: math.unit(72, "feet"),
  38007. default: true
  38008. },
  38009. {
  38010. name: "Towering",
  38011. height: math.unit(288, "feet")
  38012. },
  38013. {
  38014. name: "City Size",
  38015. height: math.unit(48384, "feet")
  38016. },
  38017. {
  38018. name: "Continental",
  38019. height: math.unit(4200, "miles")
  38020. },
  38021. {
  38022. name: "Planet Eater",
  38023. height: math.unit(42, "earths")
  38024. },
  38025. {
  38026. name: "Star Swallower",
  38027. height: math.unit(42, "solarradii")
  38028. },
  38029. {
  38030. name: "System Swallower",
  38031. height: math.unit(84000, "AU")
  38032. },
  38033. {
  38034. name: "Galaxy Gobbler",
  38035. height: math.unit(42, "galaxies")
  38036. },
  38037. {
  38038. name: "Universe Devourer",
  38039. height: math.unit(42, "universes")
  38040. },
  38041. {
  38042. name: "Multiverse Muncher",
  38043. height: math.unit(42, "multiverses")
  38044. },
  38045. ]
  38046. ))
  38047. characterMakers.push(() => makeCharacter(
  38048. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  38049. {
  38050. front: {
  38051. height: math.unit(36, "feet"),
  38052. name: "Front",
  38053. image: {
  38054. source: "./media/characters/shadow-rat/front.svg",
  38055. extra: 1845/1758,
  38056. bottom: 83/1928
  38057. }
  38058. },
  38059. },
  38060. [
  38061. {
  38062. name: "Macro",
  38063. height: math.unit(36, "feet"),
  38064. default: true
  38065. },
  38066. ]
  38067. ))
  38068. characterMakers.push(() => makeCharacter(
  38069. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  38070. {
  38071. side: {
  38072. height: math.unit(8, "feet"),
  38073. weight: math.unit(2630, "lb"),
  38074. name: "Side",
  38075. image: {
  38076. source: "./media/characters/torallia/side.svg",
  38077. extra: 2164/2021,
  38078. bottom: 371/2535
  38079. }
  38080. },
  38081. },
  38082. [
  38083. {
  38084. name: "Mortal Interaction",
  38085. height: math.unit(8, "feet")
  38086. },
  38087. {
  38088. name: "Natural",
  38089. height: math.unit(24, "feet"),
  38090. default: true
  38091. },
  38092. {
  38093. name: "Giant",
  38094. height: math.unit(80, "feet")
  38095. },
  38096. {
  38097. name: "Kaiju",
  38098. height: math.unit(240, "feet")
  38099. },
  38100. {
  38101. name: "Macro",
  38102. height: math.unit(800, "feet")
  38103. },
  38104. {
  38105. name: "Macro+",
  38106. height: math.unit(2400, "feet")
  38107. },
  38108. {
  38109. name: "Macro++",
  38110. height: math.unit(8000, "feet")
  38111. },
  38112. {
  38113. name: "City-Crushing",
  38114. height: math.unit(24000, "feet")
  38115. },
  38116. {
  38117. name: "Mountain-Mashing",
  38118. height: math.unit(80000, "feet")
  38119. },
  38120. {
  38121. name: "District Demolisher",
  38122. height: math.unit(240000, "feet")
  38123. },
  38124. {
  38125. name: "Tri-County Terror",
  38126. height: math.unit(800000, "feet")
  38127. },
  38128. {
  38129. name: "State Smasher",
  38130. height: math.unit(2.4e6, "feet")
  38131. },
  38132. {
  38133. name: "Nation Nemesis",
  38134. height: math.unit(8e6, "feet")
  38135. },
  38136. {
  38137. name: "Continent Cracker",
  38138. height: math.unit(2.4e7, "feet")
  38139. },
  38140. {
  38141. name: "Planet-Pillaging",
  38142. height: math.unit(8e7, "feet")
  38143. },
  38144. {
  38145. name: "Earth-Eclipsing",
  38146. height: math.unit(2.4e8, "feet")
  38147. },
  38148. {
  38149. name: "Jovian-Jostling",
  38150. height: math.unit(8e8, "feet")
  38151. },
  38152. {
  38153. name: "Gas Giant Gulper",
  38154. height: math.unit(2.4e9, "feet")
  38155. },
  38156. {
  38157. name: "Astral Annihilator",
  38158. height: math.unit(8e9, "feet")
  38159. },
  38160. {
  38161. name: "Celestial Conqueror",
  38162. height: math.unit(2.4e10, "feet")
  38163. },
  38164. {
  38165. name: "Sol-Swallowing",
  38166. height: math.unit(8e10, "feet")
  38167. },
  38168. {
  38169. name: "Hunter of the Heavens",
  38170. height: math.unit(2.4e13, "feet")
  38171. },
  38172. ]
  38173. ))
  38174. characterMakers.push(() => makeCharacter(
  38175. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38176. {
  38177. front: {
  38178. height: math.unit(6 + 8/12, "feet"),
  38179. name: "Front",
  38180. image: {
  38181. source: "./media/characters/rebecca-pawlson/front.svg",
  38182. extra: 1737/1596,
  38183. bottom: 107/1844
  38184. }
  38185. },
  38186. back: {
  38187. height: math.unit(6 + 8/12, "feet"),
  38188. name: "Back",
  38189. image: {
  38190. source: "./media/characters/rebecca-pawlson/back.svg",
  38191. extra: 1702/1523,
  38192. bottom: 86/1788
  38193. }
  38194. },
  38195. },
  38196. [
  38197. {
  38198. name: "Normal",
  38199. height: math.unit(6 + 8/12, "feet")
  38200. },
  38201. {
  38202. name: "Mini Macro",
  38203. height: math.unit(10, "feet"),
  38204. default: true
  38205. },
  38206. {
  38207. name: "Macro",
  38208. height: math.unit(100, "feet")
  38209. },
  38210. {
  38211. name: "Mega Macro",
  38212. height: math.unit(2500, "feet")
  38213. },
  38214. {
  38215. name: "Giga Macro",
  38216. height: math.unit(50, "miles")
  38217. },
  38218. ]
  38219. ))
  38220. characterMakers.push(() => makeCharacter(
  38221. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38222. {
  38223. front: {
  38224. height: math.unit(7 + 6/12, "feet"),
  38225. weight: math.unit(600, "lb"),
  38226. name: "Front",
  38227. image: {
  38228. source: "./media/characters/moxie-nova/front.svg",
  38229. extra: 1734/1652,
  38230. bottom: 41/1775
  38231. }
  38232. },
  38233. },
  38234. [
  38235. {
  38236. name: "Normal",
  38237. height: math.unit(7 + 6/12, "feet"),
  38238. default: true
  38239. },
  38240. ]
  38241. ))
  38242. characterMakers.push(() => makeCharacter(
  38243. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38244. {
  38245. goat: {
  38246. height: math.unit(4, "feet"),
  38247. weight: math.unit(180, "lb"),
  38248. name: "Goat",
  38249. image: {
  38250. source: "./media/characters/tiffany/goat.svg",
  38251. extra: 1845/1595,
  38252. bottom: 106/1951
  38253. }
  38254. },
  38255. front: {
  38256. height: math.unit(5, "feet"),
  38257. weight: math.unit(150, "lb"),
  38258. name: "Foxcoon",
  38259. image: {
  38260. source: "./media/characters/tiffany/foxcoon.svg",
  38261. extra: 1941/1845,
  38262. bottom: 58/1999
  38263. }
  38264. },
  38265. },
  38266. [
  38267. {
  38268. name: "Normal",
  38269. height: math.unit(5, "feet"),
  38270. default: true
  38271. },
  38272. ]
  38273. ))
  38274. characterMakers.push(() => makeCharacter(
  38275. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38276. {
  38277. front: {
  38278. height: math.unit(8, "feet"),
  38279. weight: math.unit(300, "lb"),
  38280. name: "Front",
  38281. image: {
  38282. source: "./media/characters/raxinath/front.svg",
  38283. extra: 1407/1309,
  38284. bottom: 39/1446
  38285. }
  38286. },
  38287. back: {
  38288. height: math.unit(8, "feet"),
  38289. weight: math.unit(300, "lb"),
  38290. name: "Back",
  38291. image: {
  38292. source: "./media/characters/raxinath/back.svg",
  38293. extra: 1405/1315,
  38294. bottom: 9/1414
  38295. }
  38296. },
  38297. },
  38298. [
  38299. {
  38300. name: "Speck",
  38301. height: math.unit(0.5, "nm")
  38302. },
  38303. {
  38304. name: "Micro",
  38305. height: math.unit(3, "inches")
  38306. },
  38307. {
  38308. name: "Kobold",
  38309. height: math.unit(3, "feet")
  38310. },
  38311. {
  38312. name: "Normal",
  38313. height: math.unit(8, "feet"),
  38314. default: true
  38315. },
  38316. {
  38317. name: "Giant",
  38318. height: math.unit(50, "feet")
  38319. },
  38320. {
  38321. name: "Macro",
  38322. height: math.unit(1000, "feet")
  38323. },
  38324. {
  38325. name: "Megamacro",
  38326. height: math.unit(1, "mile")
  38327. },
  38328. ]
  38329. ))
  38330. characterMakers.push(() => makeCharacter(
  38331. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38332. {
  38333. front: {
  38334. height: math.unit(10, "feet"),
  38335. weight: math.unit(1442, "lb"),
  38336. name: "Front",
  38337. image: {
  38338. source: "./media/characters/mal-dragon/front.svg",
  38339. extra: 1515/1444,
  38340. bottom: 113/1628
  38341. }
  38342. },
  38343. back: {
  38344. height: math.unit(10, "feet"),
  38345. weight: math.unit(1442, "lb"),
  38346. name: "Back",
  38347. image: {
  38348. source: "./media/characters/mal-dragon/back.svg",
  38349. extra: 1527/1434,
  38350. bottom: 25/1552
  38351. }
  38352. },
  38353. },
  38354. [
  38355. {
  38356. name: "Mortal Interaction",
  38357. height: math.unit(10, "feet"),
  38358. default: true
  38359. },
  38360. {
  38361. name: "Large",
  38362. height: math.unit(30, "feet")
  38363. },
  38364. {
  38365. name: "Kaiju",
  38366. height: math.unit(300, "feet")
  38367. },
  38368. {
  38369. name: "Megamacro",
  38370. height: math.unit(10000, "feet")
  38371. },
  38372. {
  38373. name: "Continent Cracker",
  38374. height: math.unit(30000000, "feet")
  38375. },
  38376. {
  38377. name: "Sol-Swallowing",
  38378. height: math.unit(1e11, "feet")
  38379. },
  38380. {
  38381. name: "Light Universal",
  38382. height: math.unit(5, "universes")
  38383. },
  38384. {
  38385. name: "Universe Atoms",
  38386. height: math.unit(1.829e9, "universes")
  38387. },
  38388. {
  38389. name: "Light Multiversal",
  38390. height: math.unit(5, "multiverses")
  38391. },
  38392. {
  38393. name: "Multiverse Atoms",
  38394. height: math.unit(1.829e9, "multiverses")
  38395. },
  38396. {
  38397. name: "Fabric of Time",
  38398. height: math.unit(1e262, "multiverses")
  38399. },
  38400. ]
  38401. ))
  38402. characterMakers.push(() => makeCharacter(
  38403. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38404. {
  38405. front: {
  38406. height: math.unit(9, "feet"),
  38407. weight: math.unit(1050, "lb"),
  38408. name: "Front",
  38409. image: {
  38410. source: "./media/characters/tabitha/front.svg",
  38411. extra: 2083/1994,
  38412. bottom: 68/2151
  38413. }
  38414. },
  38415. },
  38416. [
  38417. {
  38418. name: "Baseline",
  38419. height: math.unit(9, "feet"),
  38420. default: true
  38421. },
  38422. {
  38423. name: "Giant",
  38424. height: math.unit(90, "feet")
  38425. },
  38426. {
  38427. name: "Macro",
  38428. height: math.unit(900, "feet")
  38429. },
  38430. {
  38431. name: "Megamacro",
  38432. height: math.unit(9000, "feet")
  38433. },
  38434. {
  38435. name: "City-Crushing",
  38436. height: math.unit(27000, "feet")
  38437. },
  38438. {
  38439. name: "Mountain-Mashing",
  38440. height: math.unit(90000, "feet")
  38441. },
  38442. {
  38443. name: "Nation Nemesis",
  38444. height: math.unit(9e6, "feet")
  38445. },
  38446. {
  38447. name: "Continent Cracker",
  38448. height: math.unit(27e6, "feet")
  38449. },
  38450. {
  38451. name: "Earth-Eclipsing",
  38452. height: math.unit(2.7e8, "feet")
  38453. },
  38454. {
  38455. name: "Gas Giant Gulper",
  38456. height: math.unit(2.7e9, "feet")
  38457. },
  38458. {
  38459. name: "Sol-Swallowing",
  38460. height: math.unit(9e10, "feet")
  38461. },
  38462. {
  38463. name: "Galaxy Gulper",
  38464. height: math.unit(9, "galaxies")
  38465. },
  38466. {
  38467. name: "Cosmos Churner",
  38468. height: math.unit(9, "universes")
  38469. },
  38470. ]
  38471. ))
  38472. characterMakers.push(() => makeCharacter(
  38473. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38474. {
  38475. front: {
  38476. height: math.unit(160, "cm"),
  38477. weight: math.unit(55, "kg"),
  38478. name: "Front",
  38479. image: {
  38480. source: "./media/characters/tow/front.svg",
  38481. extra: 1751/1722,
  38482. bottom: 74/1825
  38483. }
  38484. },
  38485. },
  38486. [
  38487. {
  38488. name: "Norm",
  38489. height: math.unit(160, "cm")
  38490. },
  38491. {
  38492. name: "Casual",
  38493. height: math.unit(3200, "m"),
  38494. default: true
  38495. },
  38496. {
  38497. name: "Show-Off",
  38498. height: math.unit(160, "km")
  38499. },
  38500. ]
  38501. ))
  38502. characterMakers.push(() => makeCharacter(
  38503. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38504. {
  38505. front: {
  38506. height: math.unit(7 + 11/12, "feet"),
  38507. weight: math.unit(342.8, "lb"),
  38508. name: "Front",
  38509. image: {
  38510. source: "./media/characters/vivian-orca-dragon/front.svg",
  38511. extra: 1890/1865,
  38512. bottom: 28/1918
  38513. }
  38514. },
  38515. },
  38516. [
  38517. {
  38518. name: "Micro",
  38519. height: math.unit(5, "inches")
  38520. },
  38521. {
  38522. name: "Normal",
  38523. height: math.unit(7 + 11/12, "feet"),
  38524. default: true
  38525. },
  38526. {
  38527. name: "Macro",
  38528. height: math.unit(395 + 7/12, "feet")
  38529. },
  38530. ]
  38531. ))
  38532. characterMakers.push(() => makeCharacter(
  38533. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38534. {
  38535. side: {
  38536. height: math.unit(10, "feet"),
  38537. weight: math.unit(1442, "lb"),
  38538. name: "Side",
  38539. image: {
  38540. source: "./media/characters/lotherakon/side.svg",
  38541. extra: 1604/1497,
  38542. bottom: 89/1693
  38543. }
  38544. },
  38545. },
  38546. [
  38547. {
  38548. name: "Mortal Interaction",
  38549. height: math.unit(10, "feet")
  38550. },
  38551. {
  38552. name: "Large",
  38553. height: math.unit(30, "feet"),
  38554. default: true
  38555. },
  38556. {
  38557. name: "Giant",
  38558. height: math.unit(100, "feet")
  38559. },
  38560. {
  38561. name: "Kaiju",
  38562. height: math.unit(300, "feet")
  38563. },
  38564. {
  38565. name: "Macro",
  38566. height: math.unit(1000, "feet")
  38567. },
  38568. {
  38569. name: "Macro+",
  38570. height: math.unit(3000, "feet")
  38571. },
  38572. {
  38573. name: "Megamacro",
  38574. height: math.unit(10000, "feet")
  38575. },
  38576. {
  38577. name: "City-Crushing",
  38578. height: math.unit(30000, "feet")
  38579. },
  38580. {
  38581. name: "Continent Cracker",
  38582. height: math.unit(30e6, "feet")
  38583. },
  38584. {
  38585. name: "Earth Eclipsing",
  38586. height: math.unit(3e8, "feet")
  38587. },
  38588. {
  38589. name: "Gas Giant Gulper",
  38590. height: math.unit(3e9, "feet")
  38591. },
  38592. {
  38593. name: "Sol-Swallowing",
  38594. height: math.unit(1e11, "feet")
  38595. },
  38596. {
  38597. name: "System Swallower",
  38598. height: math.unit(3e14, "feet")
  38599. },
  38600. {
  38601. name: "Galaxy Gulper",
  38602. height: math.unit(10, "galaxies")
  38603. },
  38604. {
  38605. name: "Light Universal",
  38606. height: math.unit(5, "universes")
  38607. },
  38608. {
  38609. name: "Universe Palm",
  38610. height: math.unit(20, "universes")
  38611. },
  38612. {
  38613. name: "Light Multiversal",
  38614. height: math.unit(5, "multiverses")
  38615. },
  38616. {
  38617. name: "Multiverse Palm",
  38618. height: math.unit(20, "multiverses")
  38619. },
  38620. {
  38621. name: "Inferno Incarnate",
  38622. height: math.unit(1e7, "multiverses")
  38623. },
  38624. ]
  38625. ))
  38626. characterMakers.push(() => makeCharacter(
  38627. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38628. {
  38629. front: {
  38630. height: math.unit(8, "feet"),
  38631. weight: math.unit(1200, "lb"),
  38632. name: "Front",
  38633. image: {
  38634. source: "./media/characters/malithee/front.svg",
  38635. extra: 1675/1640,
  38636. bottom: 162/1837
  38637. }
  38638. },
  38639. },
  38640. [
  38641. {
  38642. name: "Mortal Interaction",
  38643. height: math.unit(8, "feet"),
  38644. default: true
  38645. },
  38646. {
  38647. name: "Large",
  38648. height: math.unit(24, "feet")
  38649. },
  38650. {
  38651. name: "Kaiju",
  38652. height: math.unit(240, "feet")
  38653. },
  38654. {
  38655. name: "Megamacro",
  38656. height: math.unit(8000, "feet")
  38657. },
  38658. {
  38659. name: "Continent Cracker",
  38660. height: math.unit(24e6, "feet")
  38661. },
  38662. {
  38663. name: "Earth-Eclipsing",
  38664. height: math.unit(2.4e8, "feet")
  38665. },
  38666. {
  38667. name: "Sol-Swallowing",
  38668. height: math.unit(8e10, "feet")
  38669. },
  38670. {
  38671. name: "Galaxy Gulper",
  38672. height: math.unit(8, "galaxies")
  38673. },
  38674. {
  38675. name: "Light Universal",
  38676. height: math.unit(4, "universes")
  38677. },
  38678. {
  38679. name: "Universe Atoms",
  38680. height: math.unit(1.829e9, "universes")
  38681. },
  38682. {
  38683. name: "Light Multiversal",
  38684. height: math.unit(4, "multiverses")
  38685. },
  38686. {
  38687. name: "Multiverse Atoms",
  38688. height: math.unit(1.829e9, "multiverses")
  38689. },
  38690. {
  38691. name: "Nigh-Omnipresence",
  38692. height: math.unit(8e261, "multiverses")
  38693. },
  38694. ]
  38695. ))
  38696. characterMakers.push(() => makeCharacter(
  38697. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38698. {
  38699. front: {
  38700. height: math.unit(10, "feet"),
  38701. weight: math.unit(1500, "lb"),
  38702. name: "Front",
  38703. image: {
  38704. source: "./media/characters/miles-thestia/front.svg",
  38705. extra: 1812/1727,
  38706. bottom: 86/1898
  38707. }
  38708. },
  38709. back: {
  38710. height: math.unit(10, "feet"),
  38711. weight: math.unit(1500, "lb"),
  38712. name: "Back",
  38713. image: {
  38714. source: "./media/characters/miles-thestia/back.svg",
  38715. extra: 1799/1690,
  38716. bottom: 47/1846
  38717. }
  38718. },
  38719. frontNsfw: {
  38720. height: math.unit(10, "feet"),
  38721. weight: math.unit(1500, "lb"),
  38722. name: "Front (NSFW)",
  38723. image: {
  38724. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38725. extra: 1812/1727,
  38726. bottom: 86/1898
  38727. }
  38728. },
  38729. },
  38730. [
  38731. {
  38732. name: "Mini-Macro",
  38733. height: math.unit(10, "feet"),
  38734. default: true
  38735. },
  38736. ]
  38737. ))
  38738. characterMakers.push(() => makeCharacter(
  38739. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38740. {
  38741. front: {
  38742. height: math.unit(25, "feet"),
  38743. name: "Front",
  38744. image: {
  38745. source: "./media/characters/titan-s-wulf/front.svg",
  38746. extra: 1560/1484,
  38747. bottom: 76/1636
  38748. }
  38749. },
  38750. },
  38751. [
  38752. {
  38753. name: "Smallest",
  38754. height: math.unit(25, "feet"),
  38755. default: true
  38756. },
  38757. {
  38758. name: "Normal",
  38759. height: math.unit(200, "feet")
  38760. },
  38761. {
  38762. name: "Macro",
  38763. height: math.unit(200000, "feet")
  38764. },
  38765. {
  38766. name: "Multiversal Original",
  38767. height: math.unit(10000, "multiverses")
  38768. },
  38769. ]
  38770. ))
  38771. characterMakers.push(() => makeCharacter(
  38772. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38773. {
  38774. front: {
  38775. height: math.unit(8, "feet"),
  38776. weight: math.unit(553, "lb"),
  38777. name: "Front",
  38778. image: {
  38779. source: "./media/characters/tawendeh/front.svg",
  38780. extra: 2365/2268,
  38781. bottom: 83/2448
  38782. }
  38783. },
  38784. frontClothed: {
  38785. height: math.unit(8, "feet"),
  38786. weight: math.unit(553, "lb"),
  38787. name: "Front (Clothed)",
  38788. image: {
  38789. source: "./media/characters/tawendeh/front-clothed.svg",
  38790. extra: 2365/2268,
  38791. bottom: 83/2448
  38792. }
  38793. },
  38794. back: {
  38795. height: math.unit(8, "feet"),
  38796. weight: math.unit(553, "lb"),
  38797. name: "Back",
  38798. image: {
  38799. source: "./media/characters/tawendeh/back.svg",
  38800. extra: 2397/2294,
  38801. bottom: 42/2439
  38802. }
  38803. },
  38804. },
  38805. [
  38806. {
  38807. name: "Mortal Interaction",
  38808. height: math.unit(8, "feet"),
  38809. default: true
  38810. },
  38811. {
  38812. name: "Giant",
  38813. height: math.unit(80, "feet")
  38814. },
  38815. {
  38816. name: "Macro",
  38817. height: math.unit(800, "feet")
  38818. },
  38819. {
  38820. name: "Megamacro",
  38821. height: math.unit(8000, "feet")
  38822. },
  38823. {
  38824. name: "City-Crushing",
  38825. height: math.unit(24000, "feet")
  38826. },
  38827. {
  38828. name: "Mountain-Mashing",
  38829. height: math.unit(80000, "feet")
  38830. },
  38831. {
  38832. name: "Nation Nemesis",
  38833. height: math.unit(8e6, "feet")
  38834. },
  38835. {
  38836. name: "Continent Cracker",
  38837. height: math.unit(24e6, "feet")
  38838. },
  38839. {
  38840. name: "Earth-Eclipsing",
  38841. height: math.unit(2.4e8, "feet")
  38842. },
  38843. {
  38844. name: "Gas Giant Gulper",
  38845. height: math.unit(2.4e9, "feet")
  38846. },
  38847. {
  38848. name: "Sol-Swallowing",
  38849. height: math.unit(8e10, "feet")
  38850. },
  38851. {
  38852. name: "Galaxy Gulper",
  38853. height: math.unit(8, "galaxies")
  38854. },
  38855. {
  38856. name: "Cosmos Churner",
  38857. height: math.unit(8, "universes")
  38858. },
  38859. {
  38860. name: "Omnipotent Otter",
  38861. height: math.unit(80, "universes")
  38862. },
  38863. ]
  38864. ))
  38865. characterMakers.push(() => makeCharacter(
  38866. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38867. {
  38868. front: {
  38869. height: math.unit(2.6, "meters"),
  38870. weight: math.unit(900, "kg"),
  38871. name: "Front",
  38872. image: {
  38873. source: "./media/characters/neesha/front.svg",
  38874. extra: 1803/1653,
  38875. bottom: 128/1931
  38876. }
  38877. },
  38878. },
  38879. [
  38880. {
  38881. name: "Normal",
  38882. height: math.unit(2.6, "meters"),
  38883. default: true
  38884. },
  38885. {
  38886. name: "Macro",
  38887. height: math.unit(50, "meters")
  38888. },
  38889. ]
  38890. ))
  38891. characterMakers.push(() => makeCharacter(
  38892. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38893. {
  38894. front: {
  38895. height: math.unit(5, "feet"),
  38896. weight: math.unit(185, "lb"),
  38897. name: "Front",
  38898. image: {
  38899. source: "./media/characters/kyera/front.svg",
  38900. extra: 1875/1790,
  38901. bottom: 96/1971
  38902. }
  38903. },
  38904. },
  38905. [
  38906. {
  38907. name: "Normal",
  38908. height: math.unit(5, "feet"),
  38909. default: true
  38910. },
  38911. ]
  38912. ))
  38913. characterMakers.push(() => makeCharacter(
  38914. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  38915. {
  38916. front: {
  38917. height: math.unit(7 + 6/12, "feet"),
  38918. weight: math.unit(540, "lb"),
  38919. name: "Front",
  38920. image: {
  38921. source: "./media/characters/yuko/front.svg",
  38922. extra: 1282/1222,
  38923. bottom: 101/1383
  38924. }
  38925. },
  38926. frontClothed: {
  38927. height: math.unit(7 + 6/12, "feet"),
  38928. weight: math.unit(540, "lb"),
  38929. name: "Front (Clothed)",
  38930. image: {
  38931. source: "./media/characters/yuko/front-clothed.svg",
  38932. extra: 1282/1222,
  38933. bottom: 101/1383
  38934. }
  38935. },
  38936. },
  38937. [
  38938. {
  38939. name: "Normal",
  38940. height: math.unit(7 + 6/12, "feet"),
  38941. default: true
  38942. },
  38943. {
  38944. name: "Macro",
  38945. height: math.unit(26 + 9/12, "feet")
  38946. },
  38947. {
  38948. name: "Megamacro",
  38949. height: math.unit(300, "feet")
  38950. },
  38951. {
  38952. name: "Gigamacro",
  38953. height: math.unit(5000, "feet")
  38954. },
  38955. {
  38956. name: "Planetary",
  38957. height: math.unit(10000, "miles")
  38958. },
  38959. ]
  38960. ))
  38961. characterMakers.push(() => makeCharacter(
  38962. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  38963. {
  38964. front: {
  38965. height: math.unit(8 + 2/12, "feet"),
  38966. weight: math.unit(600, "lb"),
  38967. name: "Front",
  38968. image: {
  38969. source: "./media/characters/deam-nitrel/front.svg",
  38970. extra: 1308/1234,
  38971. bottom: 125/1433
  38972. }
  38973. },
  38974. },
  38975. [
  38976. {
  38977. name: "Normal",
  38978. height: math.unit(8 + 2/12, "feet"),
  38979. default: true
  38980. },
  38981. ]
  38982. ))
  38983. characterMakers.push(() => makeCharacter(
  38984. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  38985. {
  38986. front: {
  38987. height: math.unit(6.1, "feet"),
  38988. weight: math.unit(180, "lb"),
  38989. name: "Front",
  38990. image: {
  38991. source: "./media/characters/skyress/front.svg",
  38992. extra: 1045/915,
  38993. bottom: 28/1073
  38994. }
  38995. },
  38996. maw: {
  38997. height: math.unit(1, "feet"),
  38998. name: "Maw",
  38999. image: {
  39000. source: "./media/characters/skyress/maw.svg"
  39001. }
  39002. },
  39003. },
  39004. [
  39005. {
  39006. name: "Normal",
  39007. height: math.unit(6.1, "feet"),
  39008. default: true
  39009. },
  39010. {
  39011. name: "Macro",
  39012. height: math.unit(200, "feet")
  39013. },
  39014. ]
  39015. ))
  39016. characterMakers.push(() => makeCharacter(
  39017. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  39018. {
  39019. front: {
  39020. height: math.unit(4 + 2/12, "feet"),
  39021. weight: math.unit(40, "kg"),
  39022. name: "Front",
  39023. image: {
  39024. source: "./media/characters/amethyst-jones/front.svg",
  39025. extra: 1220/1150,
  39026. bottom: 101/1321
  39027. }
  39028. },
  39029. },
  39030. [
  39031. {
  39032. name: "Normal",
  39033. height: math.unit(4 + 2/12, "feet"),
  39034. default: true
  39035. },
  39036. ]
  39037. ))
  39038. characterMakers.push(() => makeCharacter(
  39039. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39040. {
  39041. front: {
  39042. height: math.unit(1.7, "m"),
  39043. weight: math.unit(135, "lb"),
  39044. name: "Front",
  39045. image: {
  39046. source: "./media/characters/jade/front.svg",
  39047. extra: 1818/1767,
  39048. bottom: 32/1850
  39049. }
  39050. },
  39051. back: {
  39052. height: math.unit(1.7, "m"),
  39053. weight: math.unit(135, "lb"),
  39054. name: "Back",
  39055. image: {
  39056. source: "./media/characters/jade/back.svg",
  39057. extra: 1869/1809,
  39058. bottom: 35/1904
  39059. }
  39060. },
  39061. hand: {
  39062. height: math.unit(0.24, "m"),
  39063. name: "Hand",
  39064. image: {
  39065. source: "./media/characters/jade/hand.svg"
  39066. }
  39067. },
  39068. foot: {
  39069. height: math.unit(0.263, "m"),
  39070. name: "Foot",
  39071. image: {
  39072. source: "./media/characters/jade/foot.svg"
  39073. }
  39074. },
  39075. dick: {
  39076. height: math.unit(0.47, "m"),
  39077. name: "Dick",
  39078. image: {
  39079. source: "./media/characters/jade/dick.svg"
  39080. }
  39081. },
  39082. },
  39083. [
  39084. {
  39085. name: "Micro",
  39086. height: math.unit(22, "cm")
  39087. },
  39088. {
  39089. name: "Normal",
  39090. height: math.unit(1.7, "m"),
  39091. default: true
  39092. },
  39093. {
  39094. name: "Macro",
  39095. height: math.unit(152, "m")
  39096. },
  39097. ]
  39098. ))
  39099. characterMakers.push(() => makeCharacter(
  39100. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39101. {
  39102. front: {
  39103. height: math.unit(100, "miles"),
  39104. weight: math.unit(20000, "tons"),
  39105. name: "Front",
  39106. image: {
  39107. source: "./media/characters/cookie/front.svg",
  39108. extra: 1125/1070,
  39109. bottom: 30/1155
  39110. }
  39111. },
  39112. },
  39113. [
  39114. {
  39115. name: "Big",
  39116. height: math.unit(50, "feet")
  39117. },
  39118. {
  39119. name: "Macro",
  39120. height: math.unit(100, "miles"),
  39121. default: true
  39122. },
  39123. {
  39124. name: "Megamacro",
  39125. height: math.unit(90000, "miles")
  39126. },
  39127. ]
  39128. ))
  39129. characterMakers.push(() => makeCharacter(
  39130. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39131. {
  39132. front: {
  39133. height: math.unit(6, "feet"),
  39134. weight: math.unit(145, "lb"),
  39135. name: "Front",
  39136. image: {
  39137. source: "./media/characters/farzian/front.svg",
  39138. extra: 1902/1693,
  39139. bottom: 108/2010
  39140. }
  39141. },
  39142. },
  39143. [
  39144. {
  39145. name: "Macro",
  39146. height: math.unit(500, "feet"),
  39147. default: true
  39148. },
  39149. ]
  39150. ))
  39151. characterMakers.push(() => makeCharacter(
  39152. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39153. {
  39154. front: {
  39155. height: math.unit(3 + 6/12, "feet"),
  39156. weight: math.unit(50, "lb"),
  39157. name: "Front",
  39158. image: {
  39159. source: "./media/characters/kimberly-tilson/front.svg",
  39160. extra: 1400/1322,
  39161. bottom: 36/1436
  39162. }
  39163. },
  39164. back: {
  39165. height: math.unit(3 + 6/12, "feet"),
  39166. weight: math.unit(50, "lb"),
  39167. name: "Back",
  39168. image: {
  39169. source: "./media/characters/kimberly-tilson/back.svg",
  39170. extra: 1370/1307,
  39171. bottom: 20/1390
  39172. }
  39173. },
  39174. },
  39175. [
  39176. {
  39177. name: "Normal",
  39178. height: math.unit(3 + 6/12, "feet"),
  39179. default: true
  39180. },
  39181. ]
  39182. ))
  39183. characterMakers.push(() => makeCharacter(
  39184. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39185. {
  39186. front: {
  39187. height: math.unit(1148, "feet"),
  39188. weight: math.unit(34057, "lb"),
  39189. name: "Front",
  39190. image: {
  39191. source: "./media/characters/harthos/front.svg",
  39192. extra: 1391/1339,
  39193. bottom: 13/1404
  39194. }
  39195. },
  39196. },
  39197. [
  39198. {
  39199. name: "Macro",
  39200. height: math.unit(1148, "feet"),
  39201. default: true
  39202. },
  39203. ]
  39204. ))
  39205. characterMakers.push(() => makeCharacter(
  39206. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39207. {
  39208. front: {
  39209. height: math.unit(15, "feet"),
  39210. name: "Front",
  39211. image: {
  39212. source: "./media/characters/hypatia/front.svg",
  39213. extra: 1653/1591,
  39214. bottom: 79/1732
  39215. }
  39216. },
  39217. },
  39218. [
  39219. {
  39220. name: "Normal",
  39221. height: math.unit(15, "feet")
  39222. },
  39223. {
  39224. name: "Small",
  39225. height: math.unit(300, "feet")
  39226. },
  39227. {
  39228. name: "Macro",
  39229. height: math.unit(2500, "feet"),
  39230. default: true
  39231. },
  39232. {
  39233. name: "Mega Macro",
  39234. height: math.unit(1500, "miles")
  39235. },
  39236. {
  39237. name: "Giga Macro",
  39238. height: math.unit(1.5e6, "miles")
  39239. },
  39240. ]
  39241. ))
  39242. characterMakers.push(() => makeCharacter(
  39243. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39244. {
  39245. front: {
  39246. height: math.unit(6, "feet"),
  39247. weight: math.unit(200, "lb"),
  39248. name: "Front",
  39249. image: {
  39250. source: "./media/characters/wulver/front.svg",
  39251. extra: 1724/1632,
  39252. bottom: 130/1854
  39253. }
  39254. },
  39255. frontNsfw: {
  39256. height: math.unit(6, "feet"),
  39257. weight: math.unit(200, "lb"),
  39258. name: "Front (NSFW)",
  39259. image: {
  39260. source: "./media/characters/wulver/front-nsfw.svg",
  39261. extra: 1724/1632,
  39262. bottom: 130/1854
  39263. }
  39264. },
  39265. },
  39266. [
  39267. {
  39268. name: "Human-Sized",
  39269. height: math.unit(6, "feet")
  39270. },
  39271. {
  39272. name: "Normal",
  39273. height: math.unit(4, "meters"),
  39274. default: true
  39275. },
  39276. {
  39277. name: "Large",
  39278. height: math.unit(6, "m")
  39279. },
  39280. ]
  39281. ))
  39282. characterMakers.push(() => makeCharacter(
  39283. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39284. {
  39285. front: {
  39286. height: math.unit(7, "feet"),
  39287. name: "Front",
  39288. image: {
  39289. source: "./media/characters/maru/front.svg",
  39290. extra: 1595/1570,
  39291. bottom: 0/1595
  39292. }
  39293. },
  39294. },
  39295. [
  39296. {
  39297. name: "Normal",
  39298. height: math.unit(7, "feet"),
  39299. default: true
  39300. },
  39301. {
  39302. name: "Macro",
  39303. height: math.unit(700, "feet")
  39304. },
  39305. {
  39306. name: "Mega Macro",
  39307. height: math.unit(25, "miles")
  39308. },
  39309. ]
  39310. ))
  39311. characterMakers.push(() => makeCharacter(
  39312. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39313. {
  39314. front: {
  39315. height: math.unit(6, "feet"),
  39316. weight: math.unit(170, "lb"),
  39317. name: "Front",
  39318. image: {
  39319. source: "./media/characters/xenon/front.svg",
  39320. extra: 1376/1305,
  39321. bottom: 56/1432
  39322. }
  39323. },
  39324. back: {
  39325. height: math.unit(6, "feet"),
  39326. weight: math.unit(170, "lb"),
  39327. name: "Back",
  39328. image: {
  39329. source: "./media/characters/xenon/back.svg",
  39330. extra: 1328/1259,
  39331. bottom: 95/1423
  39332. }
  39333. },
  39334. maw: {
  39335. height: math.unit(0.52, "feet"),
  39336. name: "Maw",
  39337. image: {
  39338. source: "./media/characters/xenon/maw.svg"
  39339. }
  39340. },
  39341. hand: {
  39342. height: math.unit(0.82, "feet"),
  39343. name: "Hand",
  39344. image: {
  39345. source: "./media/characters/xenon/hand.svg"
  39346. }
  39347. },
  39348. foot: {
  39349. height: math.unit(1.13, "feet"),
  39350. name: "Foot",
  39351. image: {
  39352. source: "./media/characters/xenon/foot.svg"
  39353. }
  39354. },
  39355. },
  39356. [
  39357. {
  39358. name: "Micro",
  39359. height: math.unit(0.8, "inches")
  39360. },
  39361. {
  39362. name: "Normal",
  39363. height: math.unit(6, "feet")
  39364. },
  39365. {
  39366. name: "Macro",
  39367. height: math.unit(50, "feet"),
  39368. default: true
  39369. },
  39370. {
  39371. name: "Macro+",
  39372. height: math.unit(250, "feet")
  39373. },
  39374. {
  39375. name: "Megamacro",
  39376. height: math.unit(1500, "feet")
  39377. },
  39378. ]
  39379. ))
  39380. characterMakers.push(() => makeCharacter(
  39381. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39382. {
  39383. front: {
  39384. height: math.unit(7 + 5/12, "feet"),
  39385. name: "Front",
  39386. image: {
  39387. source: "./media/characters/zane/front.svg",
  39388. extra: 1260/1203,
  39389. bottom: 94/1354
  39390. }
  39391. },
  39392. back: {
  39393. height: math.unit(5.05, "feet"),
  39394. name: "Back",
  39395. image: {
  39396. source: "./media/characters/zane/back.svg",
  39397. extra: 893/829,
  39398. bottom: 30/923
  39399. }
  39400. },
  39401. werewolf: {
  39402. height: math.unit(11, "feet"),
  39403. name: "Werewolf",
  39404. image: {
  39405. source: "./media/characters/zane/werewolf.svg",
  39406. extra: 1383/1323,
  39407. bottom: 89/1472
  39408. }
  39409. },
  39410. foot: {
  39411. height: math.unit(1.46, "feet"),
  39412. name: "Foot",
  39413. image: {
  39414. source: "./media/characters/zane/foot.svg"
  39415. }
  39416. },
  39417. footFront: {
  39418. height: math.unit(0.784, "feet"),
  39419. name: "Foot (Front)",
  39420. image: {
  39421. source: "./media/characters/zane/foot-front.svg"
  39422. }
  39423. },
  39424. dick: {
  39425. height: math.unit(1.95, "feet"),
  39426. name: "Dick",
  39427. image: {
  39428. source: "./media/characters/zane/dick.svg"
  39429. }
  39430. },
  39431. dickWerewolf: {
  39432. height: math.unit(3.77, "feet"),
  39433. name: "Dick (Werewolf)",
  39434. image: {
  39435. source: "./media/characters/zane/dick.svg"
  39436. }
  39437. },
  39438. },
  39439. [
  39440. {
  39441. name: "Normal",
  39442. height: math.unit(7 + 5/12, "feet"),
  39443. default: true
  39444. },
  39445. ]
  39446. ))
  39447. characterMakers.push(() => makeCharacter(
  39448. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39449. {
  39450. front: {
  39451. height: math.unit(6 + 2/12, "feet"),
  39452. weight: math.unit(284, "lb"),
  39453. name: "Front",
  39454. image: {
  39455. source: "./media/characters/benni-desparque/front.svg",
  39456. extra: 1353/1126,
  39457. bottom: 69/1422
  39458. }
  39459. },
  39460. },
  39461. [
  39462. {
  39463. name: "Civilian",
  39464. height: math.unit(6 + 2/12, "feet")
  39465. },
  39466. {
  39467. name: "Normal",
  39468. height: math.unit(98, "feet"),
  39469. default: true
  39470. },
  39471. {
  39472. name: "Kaiju Fighter",
  39473. height: math.unit(268, "feet")
  39474. },
  39475. ]
  39476. ))
  39477. characterMakers.push(() => makeCharacter(
  39478. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39479. {
  39480. front: {
  39481. height: math.unit(5, "feet"),
  39482. weight: math.unit(105, "lb"),
  39483. name: "Front",
  39484. image: {
  39485. source: "./media/characters/maxine/front.svg",
  39486. extra: 1386/1250,
  39487. bottom: 71/1457
  39488. }
  39489. },
  39490. },
  39491. [
  39492. {
  39493. name: "Normal",
  39494. height: math.unit(5, "feet"),
  39495. default: true
  39496. },
  39497. ]
  39498. ))
  39499. characterMakers.push(() => makeCharacter(
  39500. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39501. {
  39502. front: {
  39503. height: math.unit(11 + 7/12, "feet"),
  39504. weight: math.unit(9576, "lb"),
  39505. name: "Front",
  39506. image: {
  39507. source: "./media/characters/scaly/front.svg",
  39508. extra: 888/867,
  39509. bottom: 36/924
  39510. }
  39511. },
  39512. },
  39513. [
  39514. {
  39515. name: "Normal",
  39516. height: math.unit(11 + 7/12, "feet"),
  39517. default: true
  39518. },
  39519. ]
  39520. ))
  39521. characterMakers.push(() => makeCharacter(
  39522. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39523. {
  39524. front: {
  39525. height: math.unit(9, "inches"),
  39526. name: "Front",
  39527. image: {
  39528. source: "./media/characters/saelria/front.svg",
  39529. extra: 662/621,
  39530. bottom: 12/674
  39531. }
  39532. },
  39533. },
  39534. [
  39535. {
  39536. name: "Tiny",
  39537. height: math.unit(9, "inches"),
  39538. default: true
  39539. },
  39540. ]
  39541. ))
  39542. characterMakers.push(() => makeCharacter(
  39543. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39544. {
  39545. front: {
  39546. height: math.unit(80, "meters"),
  39547. weight: math.unit(7000, "tonnes"),
  39548. name: "Front",
  39549. image: {
  39550. source: "./media/characters/tef/front.svg",
  39551. extra: 2036/1991,
  39552. bottom: 54/2090
  39553. }
  39554. },
  39555. back: {
  39556. height: math.unit(80, "meters"),
  39557. weight: math.unit(7000, "tonnes"),
  39558. name: "Back",
  39559. image: {
  39560. source: "./media/characters/tef/back.svg",
  39561. extra: 2036/1991,
  39562. bottom: 54/2090
  39563. }
  39564. },
  39565. },
  39566. [
  39567. {
  39568. name: "Macro",
  39569. height: math.unit(80, "meters"),
  39570. default: true
  39571. },
  39572. ]
  39573. ))
  39574. characterMakers.push(() => makeCharacter(
  39575. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39576. {
  39577. front: {
  39578. height: math.unit(13, "feet"),
  39579. weight: math.unit(6, "tons"),
  39580. name: "Front",
  39581. image: {
  39582. source: "./media/characters/rover/front.svg",
  39583. extra: 1233/1156,
  39584. bottom: 50/1283
  39585. }
  39586. },
  39587. back: {
  39588. height: math.unit(13, "feet"),
  39589. weight: math.unit(6, "tons"),
  39590. name: "Back",
  39591. image: {
  39592. source: "./media/characters/rover/back.svg",
  39593. extra: 1327/1258,
  39594. bottom: 39/1366
  39595. }
  39596. },
  39597. },
  39598. [
  39599. {
  39600. name: "Normal",
  39601. height: math.unit(13, "feet"),
  39602. default: true
  39603. },
  39604. {
  39605. name: "Macro",
  39606. height: math.unit(1300, "feet")
  39607. },
  39608. {
  39609. name: "Megamacro",
  39610. height: math.unit(1300, "miles")
  39611. },
  39612. {
  39613. name: "Gigamacro",
  39614. height: math.unit(1300000, "miles")
  39615. },
  39616. ]
  39617. ))
  39618. characterMakers.push(() => makeCharacter(
  39619. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39620. {
  39621. front: {
  39622. height: math.unit(6, "feet"),
  39623. weight: math.unit(150, "lb"),
  39624. name: "Front",
  39625. image: {
  39626. source: "./media/characters/ariz/front.svg",
  39627. extra: 1401/1346,
  39628. bottom: 5/1406
  39629. }
  39630. },
  39631. },
  39632. [
  39633. {
  39634. name: "Normal",
  39635. height: math.unit(10, "feet"),
  39636. default: true
  39637. },
  39638. ]
  39639. ))
  39640. characterMakers.push(() => makeCharacter(
  39641. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39642. {
  39643. front: {
  39644. height: math.unit(6, "feet"),
  39645. weight: math.unit(140, "lb"),
  39646. name: "Front",
  39647. image: {
  39648. source: "./media/characters/sigrun/front.svg",
  39649. extra: 1418/1359,
  39650. bottom: 27/1445
  39651. }
  39652. },
  39653. },
  39654. [
  39655. {
  39656. name: "Macro",
  39657. height: math.unit(35, "feet"),
  39658. default: true
  39659. },
  39660. ]
  39661. ))
  39662. characterMakers.push(() => makeCharacter(
  39663. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39664. {
  39665. front: {
  39666. height: math.unit(6, "feet"),
  39667. weight: math.unit(150, "lb"),
  39668. name: "Front",
  39669. image: {
  39670. source: "./media/characters/numin/front.svg",
  39671. extra: 1433/1388,
  39672. bottom: 12/1445
  39673. }
  39674. },
  39675. },
  39676. [
  39677. {
  39678. name: "Macro",
  39679. height: math.unit(21.5, "km"),
  39680. default: true
  39681. },
  39682. ]
  39683. ))
  39684. characterMakers.push(() => makeCharacter(
  39685. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39686. {
  39687. front: {
  39688. height: math.unit(6, "feet"),
  39689. weight: math.unit(463, "lb"),
  39690. name: "Front",
  39691. image: {
  39692. source: "./media/characters/melwa/front.svg",
  39693. extra: 1307/1248,
  39694. bottom: 93/1400
  39695. }
  39696. },
  39697. },
  39698. [
  39699. {
  39700. name: "Macro",
  39701. height: math.unit(50, "meters"),
  39702. default: true
  39703. },
  39704. ]
  39705. ))
  39706. characterMakers.push(() => makeCharacter(
  39707. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39708. {
  39709. front: {
  39710. height: math.unit(325, "feet"),
  39711. name: "Front",
  39712. image: {
  39713. source: "./media/characters/zorkaiju/front.svg",
  39714. extra: 1955/1814,
  39715. bottom: 40/1995
  39716. }
  39717. },
  39718. frontExtended: {
  39719. height: math.unit(325, "feet"),
  39720. name: "Front (Extended)",
  39721. image: {
  39722. source: "./media/characters/zorkaiju/front-extended.svg",
  39723. extra: 1955/1814,
  39724. bottom: 40/1995
  39725. }
  39726. },
  39727. side: {
  39728. height: math.unit(325, "feet"),
  39729. name: "Side",
  39730. image: {
  39731. source: "./media/characters/zorkaiju/side.svg",
  39732. extra: 1495/1396,
  39733. bottom: 17/1512
  39734. }
  39735. },
  39736. sideExtended: {
  39737. height: math.unit(325, "feet"),
  39738. name: "Side (Extended)",
  39739. image: {
  39740. source: "./media/characters/zorkaiju/side-extended.svg",
  39741. extra: 1495/1396,
  39742. bottom: 17/1512
  39743. }
  39744. },
  39745. back: {
  39746. height: math.unit(325, "feet"),
  39747. name: "Back",
  39748. image: {
  39749. source: "./media/characters/zorkaiju/back.svg",
  39750. extra: 1959/1821,
  39751. bottom: 31/1990
  39752. }
  39753. },
  39754. backExtended: {
  39755. height: math.unit(325, "feet"),
  39756. name: "Back (Extended)",
  39757. image: {
  39758. source: "./media/characters/zorkaiju/back-extended.svg",
  39759. extra: 1959/1821,
  39760. bottom: 31/1990
  39761. }
  39762. },
  39763. hand: {
  39764. height: math.unit(58.4, "feet"),
  39765. name: "Hand",
  39766. image: {
  39767. source: "./media/characters/zorkaiju/hand.svg"
  39768. }
  39769. },
  39770. handExtended: {
  39771. height: math.unit(61.4, "feet"),
  39772. name: "Hand (Extended)",
  39773. image: {
  39774. source: "./media/characters/zorkaiju/hand-extended.svg"
  39775. }
  39776. },
  39777. foot: {
  39778. height: math.unit(95, "feet"),
  39779. name: "Foot",
  39780. image: {
  39781. source: "./media/characters/zorkaiju/foot.svg"
  39782. }
  39783. },
  39784. leftArm: {
  39785. height: math.unit(59, "feet"),
  39786. name: "Left Arm",
  39787. image: {
  39788. source: "./media/characters/zorkaiju/left-arm.svg"
  39789. }
  39790. },
  39791. rightArm: {
  39792. height: math.unit(59, "feet"),
  39793. name: "Right Arm",
  39794. image: {
  39795. source: "./media/characters/zorkaiju/right-arm.svg"
  39796. }
  39797. },
  39798. tail: {
  39799. height: math.unit(104, "feet"),
  39800. name: "Tail",
  39801. image: {
  39802. source: "./media/characters/zorkaiju/tail.svg"
  39803. }
  39804. },
  39805. tailExtended: {
  39806. height: math.unit(104, "feet"),
  39807. name: "Tail (Extended)",
  39808. image: {
  39809. source: "./media/characters/zorkaiju/tail-extended.svg"
  39810. }
  39811. },
  39812. tailBottom: {
  39813. height: math.unit(104, "feet"),
  39814. name: "Tail Bottom",
  39815. image: {
  39816. source: "./media/characters/zorkaiju/tail-bottom.svg"
  39817. }
  39818. },
  39819. crystal: {
  39820. height: math.unit(27.54, "feet"),
  39821. name: "Crystal",
  39822. image: {
  39823. source: "./media/characters/zorkaiju/crystal.svg"
  39824. }
  39825. },
  39826. },
  39827. [
  39828. {
  39829. name: "Kaiju",
  39830. height: math.unit(325, "feet"),
  39831. default: true
  39832. },
  39833. ]
  39834. ))
  39835. characterMakers.push(() => makeCharacter(
  39836. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  39837. {
  39838. front: {
  39839. height: math.unit(6 + 1/12, "feet"),
  39840. weight: math.unit(115, "lb"),
  39841. name: "Front",
  39842. image: {
  39843. source: "./media/characters/bailey-belfry/front.svg",
  39844. extra: 1240/1121,
  39845. bottom: 101/1341
  39846. }
  39847. },
  39848. },
  39849. [
  39850. {
  39851. name: "Normal",
  39852. height: math.unit(6 + 1/12, "feet"),
  39853. default: true
  39854. },
  39855. ]
  39856. ))
  39857. characterMakers.push(() => makeCharacter(
  39858. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  39859. {
  39860. side: {
  39861. height: math.unit(4, "meters"),
  39862. weight: math.unit(250, "kg"),
  39863. name: "Side",
  39864. image: {
  39865. source: "./media/characters/blacky/side.svg",
  39866. extra: 1027/919,
  39867. bottom: 43/1070
  39868. }
  39869. },
  39870. maw: {
  39871. height: math.unit(1, "meters"),
  39872. name: "Maw",
  39873. image: {
  39874. source: "./media/characters/blacky/maw.svg"
  39875. }
  39876. },
  39877. paw: {
  39878. height: math.unit(1, "meters"),
  39879. name: "Paw",
  39880. image: {
  39881. source: "./media/characters/blacky/paw.svg"
  39882. }
  39883. },
  39884. },
  39885. [
  39886. {
  39887. name: "Normal",
  39888. height: math.unit(4, "meters"),
  39889. default: true
  39890. },
  39891. ]
  39892. ))
  39893. characterMakers.push(() => makeCharacter(
  39894. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  39895. {
  39896. front: {
  39897. height: math.unit(170, "cm"),
  39898. weight: math.unit(66, "kg"),
  39899. name: "Front",
  39900. image: {
  39901. source: "./media/characters/thux-ei/front.svg",
  39902. extra: 1109/1011,
  39903. bottom: 8/1117
  39904. }
  39905. },
  39906. },
  39907. [
  39908. {
  39909. name: "Normal",
  39910. height: math.unit(170, "cm"),
  39911. default: true
  39912. },
  39913. ]
  39914. ))
  39915. characterMakers.push(() => makeCharacter(
  39916. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  39917. {
  39918. front: {
  39919. height: math.unit(5, "feet"),
  39920. weight: math.unit(120, "lb"),
  39921. name: "Front",
  39922. image: {
  39923. source: "./media/characters/roxanne-voltaire/front.svg",
  39924. extra: 1901/1779,
  39925. bottom: 53/1954
  39926. }
  39927. },
  39928. },
  39929. [
  39930. {
  39931. name: "Normal",
  39932. height: math.unit(5, "feet"),
  39933. default: true
  39934. },
  39935. {
  39936. name: "Giant",
  39937. height: math.unit(50, "feet")
  39938. },
  39939. {
  39940. name: "Titan",
  39941. height: math.unit(500, "feet")
  39942. },
  39943. {
  39944. name: "Macro",
  39945. height: math.unit(5000, "feet")
  39946. },
  39947. {
  39948. name: "Megamacro",
  39949. height: math.unit(50000, "feet")
  39950. },
  39951. {
  39952. name: "Gigamacro",
  39953. height: math.unit(500000, "feet")
  39954. },
  39955. {
  39956. name: "Teramacro",
  39957. height: math.unit(5e6, "feet")
  39958. },
  39959. ]
  39960. ))
  39961. characterMakers.push(() => makeCharacter(
  39962. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  39963. {
  39964. front: {
  39965. height: math.unit(6 + 2/12, "feet"),
  39966. name: "Front",
  39967. image: {
  39968. source: "./media/characters/squeaks/front.svg",
  39969. extra: 1823/1768,
  39970. bottom: 138/1961
  39971. }
  39972. },
  39973. },
  39974. [
  39975. {
  39976. name: "Micro",
  39977. height: math.unit(0.5, "inches")
  39978. },
  39979. {
  39980. name: "Normal",
  39981. height: math.unit(6 + 2/12, "feet"),
  39982. default: true
  39983. },
  39984. {
  39985. name: "Macro",
  39986. height: math.unit(600, "feet")
  39987. },
  39988. ]
  39989. ))
  39990. characterMakers.push(() => makeCharacter(
  39991. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  39992. {
  39993. front: {
  39994. height: math.unit(1.72, "meters"),
  39995. name: "Front",
  39996. image: {
  39997. source: "./media/characters/archinger/front.svg",
  39998. extra: 1861/1675,
  39999. bottom: 125/1986
  40000. }
  40001. },
  40002. back: {
  40003. height: math.unit(1.72, "meters"),
  40004. name: "Back",
  40005. image: {
  40006. source: "./media/characters/archinger/back.svg",
  40007. extra: 1844/1701,
  40008. bottom: 104/1948
  40009. }
  40010. },
  40011. cock: {
  40012. height: math.unit(0.59, "feet"),
  40013. name: "Cock",
  40014. image: {
  40015. source: "./media/characters/archinger/cock.svg"
  40016. }
  40017. },
  40018. },
  40019. [
  40020. {
  40021. name: "Normal",
  40022. height: math.unit(1.72, "meters"),
  40023. default: true
  40024. },
  40025. {
  40026. name: "Macro",
  40027. height: math.unit(84, "meters")
  40028. },
  40029. {
  40030. name: "Macro+",
  40031. height: math.unit(112, "meters")
  40032. },
  40033. {
  40034. name: "Macro++",
  40035. height: math.unit(960, "meters")
  40036. },
  40037. {
  40038. name: "Macro+++",
  40039. height: math.unit(4, "km")
  40040. },
  40041. {
  40042. name: "Macro++++",
  40043. height: math.unit(48, "km")
  40044. },
  40045. {
  40046. name: "Macro+++++",
  40047. height: math.unit(4500, "km")
  40048. },
  40049. ]
  40050. ))
  40051. characterMakers.push(() => makeCharacter(
  40052. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  40053. {
  40054. front: {
  40055. height: math.unit(5 + 5/12, "feet"),
  40056. name: "Front",
  40057. image: {
  40058. source: "./media/characters/alsnapz/front.svg",
  40059. extra: 1157/1065,
  40060. bottom: 42/1199
  40061. }
  40062. },
  40063. },
  40064. [
  40065. {
  40066. name: "Normal",
  40067. height: math.unit(5 + 5/12, "feet"),
  40068. default: true
  40069. },
  40070. ]
  40071. ))
  40072. characterMakers.push(() => makeCharacter(
  40073. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  40074. {
  40075. side: {
  40076. height: math.unit(3.2, "earths"),
  40077. name: "Side",
  40078. image: {
  40079. source: "./media/characters/mag/side.svg",
  40080. extra: 1331/1008,
  40081. bottom: 52/1383
  40082. }
  40083. },
  40084. wing: {
  40085. height: math.unit(1.94, "earths"),
  40086. name: "Wing",
  40087. image: {
  40088. source: "./media/characters/mag/wing.svg"
  40089. }
  40090. },
  40091. dick: {
  40092. height: math.unit(1.8, "earths"),
  40093. name: "Dick",
  40094. image: {
  40095. source: "./media/characters/mag/dick.svg"
  40096. }
  40097. },
  40098. ass: {
  40099. height: math.unit(1.33, "earths"),
  40100. name: "Ass",
  40101. image: {
  40102. source: "./media/characters/mag/ass.svg"
  40103. }
  40104. },
  40105. head: {
  40106. height: math.unit(1.1, "earths"),
  40107. name: "Head",
  40108. image: {
  40109. source: "./media/characters/mag/head.svg"
  40110. }
  40111. },
  40112. maw: {
  40113. height: math.unit(1.62, "earths"),
  40114. name: "Maw",
  40115. image: {
  40116. source: "./media/characters/mag/maw.svg"
  40117. }
  40118. },
  40119. },
  40120. [
  40121. {
  40122. name: "Small",
  40123. height: math.unit(162, "feet")
  40124. },
  40125. {
  40126. name: "Normal",
  40127. height: math.unit(3.2, "earths"),
  40128. default: true
  40129. },
  40130. ]
  40131. ))
  40132. characterMakers.push(() => makeCharacter(
  40133. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40134. {
  40135. front: {
  40136. height: math.unit(512, "feet"),
  40137. weight: math.unit(63509, "tonnes"),
  40138. name: "Front",
  40139. image: {
  40140. source: "./media/characters/vorrel-harroc/front.svg",
  40141. extra: 1075/1063,
  40142. bottom: 62/1137
  40143. }
  40144. },
  40145. },
  40146. [
  40147. {
  40148. name: "Normal",
  40149. height: math.unit(10, "feet")
  40150. },
  40151. {
  40152. name: "Macro",
  40153. height: math.unit(512, "feet"),
  40154. default: true
  40155. },
  40156. {
  40157. name: "Megamacro",
  40158. height: math.unit(256, "miles")
  40159. },
  40160. {
  40161. name: "Gigamacro",
  40162. height: math.unit(4096, "miles")
  40163. },
  40164. ]
  40165. ))
  40166. characterMakers.push(() => makeCharacter(
  40167. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40168. {
  40169. side: {
  40170. height: math.unit(50, "feet"),
  40171. name: "Side",
  40172. image: {
  40173. source: "./media/characters/froimar/side.svg",
  40174. extra: 855/638,
  40175. bottom: 99/954
  40176. }
  40177. },
  40178. },
  40179. [
  40180. {
  40181. name: "Macro",
  40182. height: math.unit(50, "feet"),
  40183. default: true
  40184. },
  40185. ]
  40186. ))
  40187. characterMakers.push(() => makeCharacter(
  40188. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40189. {
  40190. front: {
  40191. height: math.unit(210, "miles"),
  40192. name: "Front",
  40193. image: {
  40194. source: "./media/characters/timothy/front.svg",
  40195. extra: 1007/943,
  40196. bottom: 62/1069
  40197. }
  40198. },
  40199. frontSkirt: {
  40200. height: math.unit(210, "miles"),
  40201. name: "Front (Skirt)",
  40202. image: {
  40203. source: "./media/characters/timothy/front-skirt.svg",
  40204. extra: 1007/943,
  40205. bottom: 62/1069
  40206. }
  40207. },
  40208. frontCoat: {
  40209. height: math.unit(210, "miles"),
  40210. name: "Front (Coat)",
  40211. image: {
  40212. source: "./media/characters/timothy/front-coat.svg",
  40213. extra: 1007/943,
  40214. bottom: 62/1069
  40215. }
  40216. },
  40217. },
  40218. [
  40219. {
  40220. name: "Macro",
  40221. height: math.unit(210, "miles"),
  40222. default: true
  40223. },
  40224. {
  40225. name: "Megamacro",
  40226. height: math.unit(210000, "miles")
  40227. },
  40228. ]
  40229. ))
  40230. characterMakers.push(() => makeCharacter(
  40231. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40232. {
  40233. front: {
  40234. height: math.unit(188, "feet"),
  40235. name: "Front",
  40236. image: {
  40237. source: "./media/characters/pyotr/front.svg",
  40238. extra: 1912/1826,
  40239. bottom: 18/1930
  40240. }
  40241. },
  40242. },
  40243. [
  40244. {
  40245. name: "Macro",
  40246. height: math.unit(188, "feet"),
  40247. default: true
  40248. },
  40249. {
  40250. name: "Megamacro",
  40251. height: math.unit(8, "miles")
  40252. },
  40253. ]
  40254. ))
  40255. characterMakers.push(() => makeCharacter(
  40256. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40257. {
  40258. side: {
  40259. height: math.unit(10, "feet"),
  40260. weight: math.unit(4500, "lb"),
  40261. name: "Side",
  40262. image: {
  40263. source: "./media/characters/ackart/side.svg",
  40264. extra: 1776/1668,
  40265. bottom: 116/1892
  40266. }
  40267. },
  40268. },
  40269. [
  40270. {
  40271. name: "Normal",
  40272. height: math.unit(10, "feet"),
  40273. default: true
  40274. },
  40275. ]
  40276. ))
  40277. characterMakers.push(() => makeCharacter(
  40278. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40279. {
  40280. side: {
  40281. height: math.unit(21, "feet"),
  40282. name: "Side",
  40283. image: {
  40284. source: "./media/characters/nolow/side.svg",
  40285. extra: 1484/1434,
  40286. bottom: 85/1569
  40287. }
  40288. },
  40289. sideErect: {
  40290. height: math.unit(21, "feet"),
  40291. name: "Side-erect",
  40292. image: {
  40293. source: "./media/characters/nolow/side-erect.svg",
  40294. extra: 1484/1434,
  40295. bottom: 85/1569
  40296. }
  40297. },
  40298. },
  40299. [
  40300. {
  40301. name: "Regular",
  40302. height: math.unit(12, "feet")
  40303. },
  40304. {
  40305. name: "Big Chee",
  40306. height: math.unit(21, "feet"),
  40307. default: true
  40308. },
  40309. ]
  40310. ))
  40311. characterMakers.push(() => makeCharacter(
  40312. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40313. {
  40314. front: {
  40315. height: math.unit(7, "feet"),
  40316. weight: math.unit(250, "lb"),
  40317. name: "Front",
  40318. image: {
  40319. source: "./media/characters/nines/front.svg",
  40320. extra: 1741/1607,
  40321. bottom: 41/1782
  40322. }
  40323. },
  40324. side: {
  40325. height: math.unit(7, "feet"),
  40326. weight: math.unit(250, "lb"),
  40327. name: "Side",
  40328. image: {
  40329. source: "./media/characters/nines/side.svg",
  40330. extra: 1854/1735,
  40331. bottom: 93/1947
  40332. }
  40333. },
  40334. back: {
  40335. height: math.unit(7, "feet"),
  40336. weight: math.unit(250, "lb"),
  40337. name: "Back",
  40338. image: {
  40339. source: "./media/characters/nines/back.svg",
  40340. extra: 1748/1615,
  40341. bottom: 20/1768
  40342. }
  40343. },
  40344. },
  40345. [
  40346. {
  40347. name: "Megamacro",
  40348. height: math.unit(99, "km"),
  40349. default: true
  40350. },
  40351. ]
  40352. ))
  40353. characterMakers.push(() => makeCharacter(
  40354. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40355. {
  40356. front: {
  40357. height: math.unit(5 + 10/12, "feet"),
  40358. weight: math.unit(210, "lb"),
  40359. name: "Front",
  40360. image: {
  40361. source: "./media/characters/zenith/front.svg",
  40362. extra: 1531/1452,
  40363. bottom: 198/1729
  40364. }
  40365. },
  40366. back: {
  40367. height: math.unit(5 + 10/12, "feet"),
  40368. weight: math.unit(210, "lb"),
  40369. name: "Back",
  40370. image: {
  40371. source: "./media/characters/zenith/back.svg",
  40372. extra: 1571/1487,
  40373. bottom: 75/1646
  40374. }
  40375. },
  40376. },
  40377. [
  40378. {
  40379. name: "Normal",
  40380. height: math.unit(5 + 10/12, "feet"),
  40381. default: true
  40382. }
  40383. ]
  40384. ))
  40385. characterMakers.push(() => makeCharacter(
  40386. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40387. {
  40388. front: {
  40389. height: math.unit(4, "feet"),
  40390. weight: math.unit(60, "lb"),
  40391. name: "Front",
  40392. image: {
  40393. source: "./media/characters/jasper/front.svg",
  40394. extra: 1450/1379,
  40395. bottom: 19/1469
  40396. }
  40397. },
  40398. },
  40399. [
  40400. {
  40401. name: "Normal",
  40402. height: math.unit(4, "feet"),
  40403. default: true
  40404. },
  40405. ]
  40406. ))
  40407. characterMakers.push(() => makeCharacter(
  40408. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40409. {
  40410. front: {
  40411. height: math.unit(6 + 5/12, "feet"),
  40412. weight: math.unit(290, "lb"),
  40413. name: "Front",
  40414. image: {
  40415. source: "./media/characters/tiberius-thyben/front.svg",
  40416. extra: 757/739,
  40417. bottom: 39/796
  40418. }
  40419. },
  40420. },
  40421. [
  40422. {
  40423. name: "Micro",
  40424. height: math.unit(1.5, "inches")
  40425. },
  40426. {
  40427. name: "Normal",
  40428. height: math.unit(6 + 5/12, "feet"),
  40429. default: true
  40430. },
  40431. {
  40432. name: "Macro",
  40433. height: math.unit(300, "feet")
  40434. },
  40435. ]
  40436. ))
  40437. characterMakers.push(() => makeCharacter(
  40438. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40439. {
  40440. front: {
  40441. height: math.unit(5 + 6/12, "feet"),
  40442. weight: math.unit(60, "kg"),
  40443. name: "Front",
  40444. image: {
  40445. source: "./media/characters/sabre/front.svg",
  40446. extra: 738/671,
  40447. bottom: 27/765
  40448. }
  40449. },
  40450. },
  40451. [
  40452. {
  40453. name: "Teeny",
  40454. height: math.unit(2, "inches")
  40455. },
  40456. {
  40457. name: "Smol",
  40458. height: math.unit(8, "inches")
  40459. },
  40460. {
  40461. name: "Normal",
  40462. height: math.unit(5 + 6/12, "feet"),
  40463. default: true
  40464. },
  40465. {
  40466. name: "Mini-Macro",
  40467. height: math.unit(15, "feet")
  40468. },
  40469. {
  40470. name: "Macro",
  40471. height: math.unit(50, "feet")
  40472. },
  40473. ]
  40474. ))
  40475. characterMakers.push(() => makeCharacter(
  40476. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40477. {
  40478. front: {
  40479. height: math.unit(6 + 4/12, "feet"),
  40480. weight: math.unit(170, "lb"),
  40481. name: "Front",
  40482. image: {
  40483. source: "./media/characters/charlie/front.svg",
  40484. extra: 1348/1228,
  40485. bottom: 15/1363
  40486. }
  40487. },
  40488. },
  40489. [
  40490. {
  40491. name: "Macro",
  40492. height: math.unit(1700, "meters"),
  40493. default: true
  40494. },
  40495. {
  40496. name: "MegaMacro",
  40497. height: math.unit(20400, "meters")
  40498. },
  40499. ]
  40500. ))
  40501. characterMakers.push(() => makeCharacter(
  40502. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40503. {
  40504. front: {
  40505. height: math.unit(6 + 3/12, "feet"),
  40506. weight: math.unit(185, "lb"),
  40507. name: "Front",
  40508. image: {
  40509. source: "./media/characters/susan-grant/front.svg",
  40510. extra: 1351/1327,
  40511. bottom: 26/1377
  40512. }
  40513. },
  40514. },
  40515. [
  40516. {
  40517. name: "Normal",
  40518. height: math.unit(6 + 3/12, "feet"),
  40519. default: true
  40520. },
  40521. {
  40522. name: "Macro",
  40523. height: math.unit(225, "feet")
  40524. },
  40525. {
  40526. name: "Macro+",
  40527. height: math.unit(900, "feet")
  40528. },
  40529. {
  40530. name: "MegaMacro",
  40531. height: math.unit(14400, "feet")
  40532. },
  40533. ]
  40534. ))
  40535. characterMakers.push(() => makeCharacter(
  40536. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40537. {
  40538. front: {
  40539. height: math.unit(5 + 4/12, "feet"),
  40540. weight: math.unit(110, "lb"),
  40541. name: "Front",
  40542. image: {
  40543. source: "./media/characters/axel-isanov/front.svg",
  40544. extra: 1096/1065,
  40545. bottom: 13/1109
  40546. }
  40547. },
  40548. },
  40549. [
  40550. {
  40551. name: "Normal",
  40552. height: math.unit(5 + 4/12, "feet"),
  40553. default: true
  40554. },
  40555. ]
  40556. ))
  40557. characterMakers.push(() => makeCharacter(
  40558. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40559. {
  40560. front: {
  40561. height: math.unit(9, "feet"),
  40562. weight: math.unit(467, "lb"),
  40563. name: "Front",
  40564. image: {
  40565. source: "./media/characters/necahual/front.svg",
  40566. extra: 920/873,
  40567. bottom: 26/946
  40568. }
  40569. },
  40570. back: {
  40571. height: math.unit(9, "feet"),
  40572. weight: math.unit(467, "lb"),
  40573. name: "Back",
  40574. image: {
  40575. source: "./media/characters/necahual/back.svg",
  40576. extra: 930/884,
  40577. bottom: 16/946
  40578. }
  40579. },
  40580. frontUnderwear: {
  40581. height: math.unit(9, "feet"),
  40582. weight: math.unit(467, "lb"),
  40583. name: "Front (Underwear)",
  40584. image: {
  40585. source: "./media/characters/necahual/front-underwear.svg",
  40586. extra: 920/873,
  40587. bottom: 26/946
  40588. }
  40589. },
  40590. frontDressed: {
  40591. height: math.unit(9, "feet"),
  40592. weight: math.unit(467, "lb"),
  40593. name: "Front (Dressed)",
  40594. image: {
  40595. source: "./media/characters/necahual/front-dressed.svg",
  40596. extra: 920/873,
  40597. bottom: 26/946
  40598. }
  40599. },
  40600. },
  40601. [
  40602. {
  40603. name: "Comprsesed",
  40604. height: math.unit(9, "feet")
  40605. },
  40606. {
  40607. name: "Natural",
  40608. height: math.unit(15, "feet"),
  40609. default: true
  40610. },
  40611. {
  40612. name: "Boosted",
  40613. height: math.unit(50, "feet")
  40614. },
  40615. {
  40616. name: "Boosted+",
  40617. height: math.unit(150, "feet")
  40618. },
  40619. {
  40620. name: "Max",
  40621. height: math.unit(500, "feet")
  40622. },
  40623. ]
  40624. ))
  40625. characterMakers.push(() => makeCharacter(
  40626. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40627. {
  40628. front: {
  40629. height: math.unit(22 + 1/12, "feet"),
  40630. weight: math.unit(3200, "lb"),
  40631. name: "Front",
  40632. image: {
  40633. source: "./media/characters/theo-acacia/front.svg",
  40634. extra: 1796/1741,
  40635. bottom: 83/1879
  40636. }
  40637. },
  40638. frontUnderwear: {
  40639. height: math.unit(22 + 1/12, "feet"),
  40640. weight: math.unit(3200, "lb"),
  40641. name: "Front (Underwear)",
  40642. image: {
  40643. source: "./media/characters/theo-acacia/front-underwear.svg",
  40644. extra: 1796/1741,
  40645. bottom: 83/1879
  40646. }
  40647. },
  40648. frontNude: {
  40649. height: math.unit(22 + 1/12, "feet"),
  40650. weight: math.unit(3200, "lb"),
  40651. name: "Front (Nude)",
  40652. image: {
  40653. source: "./media/characters/theo-acacia/front-nude.svg",
  40654. extra: 1796/1741,
  40655. bottom: 83/1879
  40656. }
  40657. },
  40658. },
  40659. [
  40660. {
  40661. name: "Normal",
  40662. height: math.unit(22 + 1/12, "feet"),
  40663. default: true
  40664. },
  40665. ]
  40666. ))
  40667. characterMakers.push(() => makeCharacter(
  40668. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40669. {
  40670. front: {
  40671. height: math.unit(20, "feet"),
  40672. name: "Front",
  40673. image: {
  40674. source: "./media/characters/astra/front.svg",
  40675. extra: 1850/1714,
  40676. bottom: 106/1956
  40677. }
  40678. },
  40679. frontUndressed: {
  40680. height: math.unit(20, "feet"),
  40681. name: "Front (Undressed)",
  40682. image: {
  40683. source: "./media/characters/astra/front-undressed.svg",
  40684. extra: 1926/1749,
  40685. bottom: 0/1926
  40686. }
  40687. },
  40688. hand: {
  40689. height: math.unit(1.53, "feet"),
  40690. name: "Hand",
  40691. image: {
  40692. source: "./media/characters/astra/hand.svg"
  40693. }
  40694. },
  40695. paw: {
  40696. height: math.unit(1.53, "feet"),
  40697. name: "Paw",
  40698. image: {
  40699. source: "./media/characters/astra/paw.svg"
  40700. }
  40701. },
  40702. },
  40703. [
  40704. {
  40705. name: "Smallest",
  40706. height: math.unit(20, "feet")
  40707. },
  40708. {
  40709. name: "Normal",
  40710. height: math.unit(1e9, "miles"),
  40711. default: true
  40712. },
  40713. {
  40714. name: "Larger",
  40715. height: math.unit(5, "multiverses")
  40716. },
  40717. {
  40718. name: "Largest",
  40719. height: math.unit(1e9, "multiverses")
  40720. },
  40721. ]
  40722. ))
  40723. characterMakers.push(() => makeCharacter(
  40724. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40725. {
  40726. front: {
  40727. height: math.unit(8, "feet"),
  40728. name: "Front",
  40729. image: {
  40730. source: "./media/characters/breanna/front.svg",
  40731. extra: 1912/1632,
  40732. bottom: 33/1945
  40733. }
  40734. },
  40735. },
  40736. [
  40737. {
  40738. name: "Smallest",
  40739. height: math.unit(8, "feet")
  40740. },
  40741. {
  40742. name: "Normal",
  40743. height: math.unit(1, "mile"),
  40744. default: true
  40745. },
  40746. {
  40747. name: "Maximum",
  40748. height: math.unit(1500000000000, "lightyears")
  40749. },
  40750. ]
  40751. ))
  40752. characterMakers.push(() => makeCharacter(
  40753. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  40754. {
  40755. front: {
  40756. height: math.unit(5 + 11/12, "feet"),
  40757. weight: math.unit(155, "lb"),
  40758. name: "Front",
  40759. image: {
  40760. source: "./media/characters/cai/front.svg",
  40761. extra: 1823/1702,
  40762. bottom: 32/1855
  40763. }
  40764. },
  40765. back: {
  40766. height: math.unit(5 + 11/12, "feet"),
  40767. weight: math.unit(155, "lb"),
  40768. name: "Back",
  40769. image: {
  40770. source: "./media/characters/cai/back.svg",
  40771. extra: 1809/1708,
  40772. bottom: 31/1840
  40773. }
  40774. },
  40775. },
  40776. [
  40777. {
  40778. name: "Normal",
  40779. height: math.unit(5 + 11/12, "feet"),
  40780. default: true
  40781. },
  40782. {
  40783. name: "Big",
  40784. height: math.unit(15, "feet")
  40785. },
  40786. {
  40787. name: "Macro",
  40788. height: math.unit(200, "feet")
  40789. },
  40790. ]
  40791. ))
  40792. characterMakers.push(() => makeCharacter(
  40793. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  40794. {
  40795. front: {
  40796. height: math.unit(5 + 6/12, "feet"),
  40797. weight: math.unit(160, "lb"),
  40798. name: "Front",
  40799. image: {
  40800. source: "./media/characters/zanna-virtuedòttir/front.svg",
  40801. extra: 1227/1174,
  40802. bottom: 37/1264
  40803. }
  40804. },
  40805. },
  40806. [
  40807. {
  40808. name: "Macro",
  40809. height: math.unit(444, "meters"),
  40810. default: true
  40811. },
  40812. ]
  40813. ))
  40814. characterMakers.push(() => makeCharacter(
  40815. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  40816. {
  40817. front: {
  40818. height: math.unit(18 + 7/12, "feet"),
  40819. name: "Front",
  40820. image: {
  40821. source: "./media/characters/rex/front.svg",
  40822. extra: 1941/1807,
  40823. bottom: 66/2007
  40824. }
  40825. },
  40826. back: {
  40827. height: math.unit(18 + 7/12, "feet"),
  40828. name: "Back",
  40829. image: {
  40830. source: "./media/characters/rex/back.svg",
  40831. extra: 1937/1822,
  40832. bottom: 42/1979
  40833. }
  40834. },
  40835. boot: {
  40836. height: math.unit(3.45, "feet"),
  40837. name: "Boot",
  40838. image: {
  40839. source: "./media/characters/rex/boot.svg"
  40840. }
  40841. },
  40842. paw: {
  40843. height: math.unit(4.17, "feet"),
  40844. name: "Paw",
  40845. image: {
  40846. source: "./media/characters/rex/paw.svg"
  40847. }
  40848. },
  40849. head: {
  40850. height: math.unit(6.728, "feet"),
  40851. name: "Head",
  40852. image: {
  40853. source: "./media/characters/rex/head.svg"
  40854. }
  40855. },
  40856. },
  40857. [
  40858. {
  40859. name: "Nano",
  40860. height: math.unit(18 + 7/12, "feet")
  40861. },
  40862. {
  40863. name: "Micro",
  40864. height: math.unit(1.5, "megameters")
  40865. },
  40866. {
  40867. name: "Normal",
  40868. height: math.unit(440, "megameters"),
  40869. default: true
  40870. },
  40871. {
  40872. name: "Macro",
  40873. height: math.unit(2.5, "gigameters")
  40874. },
  40875. {
  40876. name: "Gigamacro",
  40877. height: math.unit(2, "galaxies")
  40878. },
  40879. ]
  40880. ))
  40881. characterMakers.push(() => makeCharacter(
  40882. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  40883. {
  40884. side: {
  40885. height: math.unit(32, "feet"),
  40886. weight: math.unit(250000, "lb"),
  40887. name: "Side",
  40888. image: {
  40889. source: "./media/characters/silverwing/side.svg",
  40890. extra: 1100/1019,
  40891. bottom: 204/1304
  40892. }
  40893. },
  40894. },
  40895. [
  40896. {
  40897. name: "Normal",
  40898. height: math.unit(32, "feet"),
  40899. default: true
  40900. },
  40901. ]
  40902. ))
  40903. characterMakers.push(() => makeCharacter(
  40904. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  40905. {
  40906. front: {
  40907. height: math.unit(6 + 6/12, "feet"),
  40908. weight: math.unit(350, "lb"),
  40909. name: "Front",
  40910. image: {
  40911. source: "./media/characters/tristan-hawthorne/front.svg",
  40912. extra: 1159/1124,
  40913. bottom: 37/1196
  40914. }
  40915. },
  40916. },
  40917. [
  40918. {
  40919. name: "Normal",
  40920. height: math.unit(6 + 6/12, "feet"),
  40921. default: true
  40922. },
  40923. ]
  40924. ))
  40925. characterMakers.push(() => makeCharacter(
  40926. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  40927. {
  40928. front: {
  40929. height: math.unit(5 + 11/12, "feet"),
  40930. weight: math.unit(190, "lb"),
  40931. name: "Front",
  40932. image: {
  40933. source: "./media/characters/mizu/front.svg",
  40934. extra: 1988/1788,
  40935. bottom: 14/2002
  40936. }
  40937. },
  40938. },
  40939. [
  40940. {
  40941. name: "Normal",
  40942. height: math.unit(5 + 11/12, "feet"),
  40943. default: true
  40944. },
  40945. ]
  40946. ))
  40947. characterMakers.push(() => makeCharacter(
  40948. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  40949. {
  40950. front: {
  40951. height: math.unit(6, "feet"),
  40952. name: "Front",
  40953. image: {
  40954. source: "./media/characters/moonlight-rose-terra/front.svg",
  40955. extra: 1434/1252,
  40956. bottom: 48/1482
  40957. }
  40958. },
  40959. },
  40960. [
  40961. {
  40962. name: "TRAPPIST-1D",
  40963. height: math.unit(4992*2, "km")
  40964. },
  40965. {
  40966. name: "Earth",
  40967. height: math.unit(6367*2, "km"),
  40968. default: true
  40969. },
  40970. {
  40971. name: "Kepler-22b",
  40972. height: math.unit(15282*2, "km")
  40973. },
  40974. ]
  40975. ))
  40976. characterMakers.push(() => makeCharacter(
  40977. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  40978. {
  40979. front: {
  40980. height: math.unit(6, "feet"),
  40981. name: "Front",
  40982. image: {
  40983. source: "./media/characters/moonlight-rose-neptune/front.svg",
  40984. extra: 1851/1712,
  40985. bottom: 0/1851
  40986. }
  40987. },
  40988. },
  40989. [
  40990. {
  40991. name: "Enceladus",
  40992. height: math.unit(513*2, "km")
  40993. },
  40994. {
  40995. name: "Europe",
  40996. height: math.unit(1560*2, "km")
  40997. },
  40998. {
  40999. name: "Neptune",
  41000. height: math.unit(24622*2, "km"),
  41001. default: true
  41002. },
  41003. {
  41004. name: "CoRoT-9b",
  41005. height: math.unit(75067*2, "km")
  41006. },
  41007. ]
  41008. ))
  41009. characterMakers.push(() => makeCharacter(
  41010. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  41011. {
  41012. front: {
  41013. height: math.unit(6, "feet"),
  41014. name: "Front",
  41015. image: {
  41016. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  41017. extra: 1367/1286,
  41018. bottom: 55/1422
  41019. }
  41020. },
  41021. },
  41022. [
  41023. {
  41024. name: "Saturn",
  41025. height: math.unit(58232*2, "km")
  41026. },
  41027. {
  41028. name: "Jupiter",
  41029. height: math.unit(69911*2, "km"),
  41030. default: true
  41031. },
  41032. {
  41033. name: "HD 100546 b",
  41034. height: math.unit(482938, "km")
  41035. },
  41036. ]
  41037. ))
  41038. characterMakers.push(() => makeCharacter(
  41039. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41040. {
  41041. front: {
  41042. height: math.unit(1.7, "feet"),
  41043. weight: math.unit(50, "lb"),
  41044. name: "Front",
  41045. image: {
  41046. source: "./media/characters/dechroma/front.svg",
  41047. extra: 1095/859,
  41048. bottom: 64/1159
  41049. }
  41050. },
  41051. },
  41052. [
  41053. {
  41054. name: "Normal",
  41055. height: math.unit(1.7, "feet"),
  41056. default: true
  41057. },
  41058. ]
  41059. ))
  41060. characterMakers.push(() => makeCharacter(
  41061. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41062. {
  41063. side: {
  41064. height: math.unit(30, "feet"),
  41065. name: "Side",
  41066. image: {
  41067. source: "./media/characters/veluren-thanazel/side.svg",
  41068. extra: 1611/633,
  41069. bottom: 118/1729
  41070. }
  41071. },
  41072. front: {
  41073. height: math.unit(30, "feet"),
  41074. name: "Front",
  41075. image: {
  41076. source: "./media/characters/veluren-thanazel/front.svg",
  41077. extra: 1486/636,
  41078. bottom: 238/1724
  41079. }
  41080. },
  41081. head: {
  41082. height: math.unit(21.4, "feet"),
  41083. name: "Head",
  41084. image: {
  41085. source: "./media/characters/veluren-thanazel/head.svg"
  41086. }
  41087. },
  41088. genitals: {
  41089. height: math.unit(19.4, "feet"),
  41090. name: "Genitals",
  41091. image: {
  41092. source: "./media/characters/veluren-thanazel/genitals.svg"
  41093. }
  41094. },
  41095. },
  41096. [
  41097. {
  41098. name: "Social",
  41099. height: math.unit(6, "feet")
  41100. },
  41101. {
  41102. name: "Play",
  41103. height: math.unit(12, "feet")
  41104. },
  41105. {
  41106. name: "True",
  41107. height: math.unit(30, "feet"),
  41108. default: true
  41109. },
  41110. ]
  41111. ))
  41112. characterMakers.push(() => makeCharacter(
  41113. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41114. {
  41115. front: {
  41116. height: math.unit(7 + 6/12, "feet"),
  41117. weight: math.unit(500, "kg"),
  41118. name: "Front",
  41119. image: {
  41120. source: "./media/characters/arcturas/front.svg",
  41121. extra: 1700/1500,
  41122. bottom: 145/1845
  41123. }
  41124. },
  41125. },
  41126. [
  41127. {
  41128. name: "Normal",
  41129. height: math.unit(7 + 6/12, "feet"),
  41130. default: true
  41131. },
  41132. ]
  41133. ))
  41134. characterMakers.push(() => makeCharacter(
  41135. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41136. {
  41137. side: {
  41138. height: math.unit(6, "feet"),
  41139. weight: math.unit(2, "tons"),
  41140. name: "Side",
  41141. image: {
  41142. source: "./media/characters/vitaen/side.svg",
  41143. extra: 1157/617,
  41144. bottom: 122/1279
  41145. }
  41146. },
  41147. },
  41148. [
  41149. {
  41150. name: "Normal",
  41151. height: math.unit(6, "feet"),
  41152. default: true
  41153. },
  41154. ]
  41155. ))
  41156. characterMakers.push(() => makeCharacter(
  41157. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41158. {
  41159. front: {
  41160. height: math.unit(19, "feet"),
  41161. name: "Front",
  41162. image: {
  41163. source: "./media/characters/fia-dreamweaver/front.svg",
  41164. extra: 1630/1504,
  41165. bottom: 25/1655
  41166. }
  41167. },
  41168. },
  41169. [
  41170. {
  41171. name: "Normal",
  41172. height: math.unit(19, "feet"),
  41173. default: true
  41174. },
  41175. ]
  41176. ))
  41177. characterMakers.push(() => makeCharacter(
  41178. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41179. {
  41180. front: {
  41181. height: math.unit(5 + 4/12, "feet"),
  41182. name: "Front",
  41183. image: {
  41184. source: "./media/characters/artan/front.svg",
  41185. extra: 1618/1535,
  41186. bottom: 46/1664
  41187. }
  41188. },
  41189. back: {
  41190. height: math.unit(5 + 4/12, "feet"),
  41191. name: "Back",
  41192. image: {
  41193. source: "./media/characters/artan/back.svg",
  41194. extra: 1618/1543,
  41195. bottom: 31/1649
  41196. }
  41197. },
  41198. },
  41199. [
  41200. {
  41201. name: "Normal",
  41202. height: math.unit(5 + 4/12, "feet"),
  41203. default: true
  41204. },
  41205. ]
  41206. ))
  41207. characterMakers.push(() => makeCharacter(
  41208. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41209. {
  41210. side: {
  41211. height: math.unit(182, "cm"),
  41212. weight: math.unit(1000, "lb"),
  41213. name: "Side",
  41214. image: {
  41215. source: "./media/characters/silver-dragon/side.svg",
  41216. extra: 710/287,
  41217. bottom: 88/798
  41218. }
  41219. },
  41220. },
  41221. [
  41222. {
  41223. name: "Normal",
  41224. height: math.unit(182, "cm"),
  41225. default: true
  41226. },
  41227. ]
  41228. ))
  41229. characterMakers.push(() => makeCharacter(
  41230. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41231. {
  41232. side: {
  41233. height: math.unit(6 + 6/12, "feet"),
  41234. weight: math.unit(1.5, "tons"),
  41235. name: "Side",
  41236. image: {
  41237. source: "./media/characters/zephyr/side.svg",
  41238. extra: 1433/586,
  41239. bottom: 109/1542
  41240. }
  41241. },
  41242. },
  41243. [
  41244. {
  41245. name: "Normal",
  41246. height: math.unit(6 + 6/12, "feet"),
  41247. default: true
  41248. },
  41249. ]
  41250. ))
  41251. characterMakers.push(() => makeCharacter(
  41252. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41253. {
  41254. side: {
  41255. height: math.unit(1, "feet"),
  41256. name: "Side",
  41257. image: {
  41258. source: "./media/characters/vixye/side.svg",
  41259. extra: 632/541,
  41260. bottom: 0/632
  41261. }
  41262. },
  41263. },
  41264. [
  41265. {
  41266. name: "Normal",
  41267. height: math.unit(1, "feet"),
  41268. default: true
  41269. },
  41270. {
  41271. name: "True",
  41272. height: math.unit(1e15, "multiverses")
  41273. },
  41274. ]
  41275. ))
  41276. characterMakers.push(() => makeCharacter(
  41277. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41278. {
  41279. front: {
  41280. height: math.unit(8 + 2/12, "feet"),
  41281. weight: math.unit(650, "lb"),
  41282. name: "Front",
  41283. image: {
  41284. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41285. extra: 1174/1137,
  41286. bottom: 82/1256
  41287. }
  41288. },
  41289. back: {
  41290. height: math.unit(8 + 2/12, "feet"),
  41291. weight: math.unit(650, "lb"),
  41292. name: "Back",
  41293. image: {
  41294. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41295. extra: 1204/1157,
  41296. bottom: 46/1250
  41297. }
  41298. },
  41299. },
  41300. [
  41301. {
  41302. name: "Wildform",
  41303. height: math.unit(8 + 2/12, "feet"),
  41304. default: true
  41305. },
  41306. ]
  41307. ))
  41308. characterMakers.push(() => makeCharacter(
  41309. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41310. {
  41311. front: {
  41312. height: math.unit(18, "feet"),
  41313. name: "Front",
  41314. image: {
  41315. source: "./media/characters/cyphin/front.svg",
  41316. extra: 970/886,
  41317. bottom: 42/1012
  41318. }
  41319. },
  41320. back: {
  41321. height: math.unit(18, "feet"),
  41322. name: "Back",
  41323. image: {
  41324. source: "./media/characters/cyphin/back.svg",
  41325. extra: 1009/894,
  41326. bottom: 24/1033
  41327. }
  41328. },
  41329. head: {
  41330. height: math.unit(5.05, "feet"),
  41331. name: "Head",
  41332. image: {
  41333. source: "./media/characters/cyphin/head.svg"
  41334. }
  41335. },
  41336. tailbud: {
  41337. height: math.unit(5, "feet"),
  41338. name: "Tailbud",
  41339. image: {
  41340. source: "./media/characters/cyphin/tailbud.svg"
  41341. }
  41342. },
  41343. },
  41344. [
  41345. ]
  41346. ))
  41347. characterMakers.push(() => makeCharacter(
  41348. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41349. {
  41350. side: {
  41351. height: math.unit(10, "feet"),
  41352. weight: math.unit(6, "tons"),
  41353. name: "Side",
  41354. image: {
  41355. source: "./media/characters/raijin/side.svg",
  41356. extra: 1529/613,
  41357. bottom: 337/1866
  41358. }
  41359. },
  41360. },
  41361. [
  41362. {
  41363. name: "Normal",
  41364. height: math.unit(10, "feet"),
  41365. default: true
  41366. },
  41367. ]
  41368. ))
  41369. characterMakers.push(() => makeCharacter(
  41370. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41371. {
  41372. side: {
  41373. height: math.unit(9, "feet"),
  41374. name: "Side",
  41375. image: {
  41376. source: "./media/characters/nilghais/side.svg",
  41377. extra: 1047/744,
  41378. bottom: 91/1138
  41379. }
  41380. },
  41381. head: {
  41382. height: math.unit(3.14, "feet"),
  41383. name: "Head",
  41384. image: {
  41385. source: "./media/characters/nilghais/head.svg"
  41386. }
  41387. },
  41388. mouth: {
  41389. height: math.unit(4.6, "feet"),
  41390. name: "Mouth",
  41391. image: {
  41392. source: "./media/characters/nilghais/mouth.svg"
  41393. }
  41394. },
  41395. wings: {
  41396. height: math.unit(24, "feet"),
  41397. name: "Wings",
  41398. image: {
  41399. source: "./media/characters/nilghais/wings.svg"
  41400. }
  41401. },
  41402. ass: {
  41403. height: math.unit(6.12, "feet"),
  41404. name: "Ass",
  41405. image: {
  41406. source: "./media/characters/nilghais/ass.svg"
  41407. }
  41408. },
  41409. },
  41410. [
  41411. {
  41412. name: "Normal",
  41413. height: math.unit(9, "feet"),
  41414. default: true
  41415. },
  41416. ]
  41417. ))
  41418. characterMakers.push(() => makeCharacter(
  41419. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41420. {
  41421. regular: {
  41422. height: math.unit(16 + 2/12, "feet"),
  41423. weight: math.unit(2300, "lb"),
  41424. name: "Regular",
  41425. image: {
  41426. source: "./media/characters/zolgar/regular.svg",
  41427. extra: 1246/1004,
  41428. bottom: 124/1370
  41429. }
  41430. },
  41431. boxers: {
  41432. height: math.unit(16 + 2/12, "feet"),
  41433. weight: math.unit(2300, "lb"),
  41434. name: "Boxers",
  41435. image: {
  41436. source: "./media/characters/zolgar/boxers.svg",
  41437. extra: 1246/1004,
  41438. bottom: 124/1370
  41439. }
  41440. },
  41441. armored: {
  41442. height: math.unit(16 + 2/12, "feet"),
  41443. weight: math.unit(2300, "lb"),
  41444. name: "Armored",
  41445. image: {
  41446. source: "./media/characters/zolgar/armored.svg",
  41447. extra: 1246/1004,
  41448. bottom: 124/1370
  41449. }
  41450. },
  41451. goth: {
  41452. height: math.unit(16 + 2/12, "feet"),
  41453. weight: math.unit(2300, "lb"),
  41454. name: "Goth",
  41455. image: {
  41456. source: "./media/characters/zolgar/goth.svg",
  41457. extra: 1246/1004,
  41458. bottom: 124/1370
  41459. }
  41460. },
  41461. },
  41462. [
  41463. {
  41464. name: "Shrunken Down",
  41465. height: math.unit(9 + 2/12, "feet")
  41466. },
  41467. {
  41468. name: "Normal",
  41469. height: math.unit(16 + 2/12, "feet"),
  41470. default: true
  41471. },
  41472. ]
  41473. ))
  41474. characterMakers.push(() => makeCharacter(
  41475. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41476. {
  41477. front: {
  41478. height: math.unit(6, "feet"),
  41479. weight: math.unit(168, "lb"),
  41480. name: "Front",
  41481. image: {
  41482. source: "./media/characters/luca/front.svg",
  41483. extra: 841/667,
  41484. bottom: 102/943
  41485. }
  41486. },
  41487. },
  41488. [
  41489. {
  41490. name: "Normal",
  41491. height: math.unit(6, "feet"),
  41492. default: true
  41493. },
  41494. ]
  41495. ))
  41496. characterMakers.push(() => makeCharacter(
  41497. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41498. {
  41499. side: {
  41500. height: math.unit(7 + 3/12, "feet"),
  41501. weight: math.unit(312, "lb"),
  41502. name: "Side",
  41503. image: {
  41504. source: "./media/characters/zezo/side.svg",
  41505. extra: 1192/1067,
  41506. bottom: 63/1255
  41507. }
  41508. },
  41509. },
  41510. [
  41511. {
  41512. name: "Normal",
  41513. height: math.unit(7 + 3/12, "feet"),
  41514. default: true
  41515. },
  41516. ]
  41517. ))
  41518. characterMakers.push(() => makeCharacter(
  41519. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41520. {
  41521. front: {
  41522. height: math.unit(5 + 5/12, "feet"),
  41523. weight: math.unit(170, "lb"),
  41524. name: "Front",
  41525. image: {
  41526. source: "./media/characters/mayso/front.svg",
  41527. extra: 1215/1108,
  41528. bottom: 16/1231
  41529. }
  41530. },
  41531. },
  41532. [
  41533. {
  41534. name: "Normal",
  41535. height: math.unit(5 + 5/12, "feet"),
  41536. default: true
  41537. },
  41538. ]
  41539. ))
  41540. characterMakers.push(() => makeCharacter(
  41541. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41542. {
  41543. front: {
  41544. height: math.unit(4 + 3/12, "feet"),
  41545. weight: math.unit(80, "lb"),
  41546. name: "Front",
  41547. image: {
  41548. source: "./media/characters/hess/front.svg",
  41549. extra: 1200/1123,
  41550. bottom: 16/1216
  41551. }
  41552. },
  41553. },
  41554. [
  41555. {
  41556. name: "Normal",
  41557. height: math.unit(4 + 3/12, "feet"),
  41558. default: true
  41559. },
  41560. ]
  41561. ))
  41562. characterMakers.push(() => makeCharacter(
  41563. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  41564. {
  41565. front: {
  41566. height: math.unit(1.9, "meters"),
  41567. name: "Front",
  41568. image: {
  41569. source: "./media/characters/ashgar/front.svg",
  41570. extra: 1177/1146,
  41571. bottom: 99/1276
  41572. }
  41573. },
  41574. back: {
  41575. height: math.unit(1.9, "meters"),
  41576. name: "Back",
  41577. image: {
  41578. source: "./media/characters/ashgar/back.svg",
  41579. extra: 1201/1183,
  41580. bottom: 53/1254
  41581. }
  41582. },
  41583. feral: {
  41584. height: math.unit(1.4, "meters"),
  41585. name: "Feral",
  41586. image: {
  41587. source: "./media/characters/ashgar/feral.svg",
  41588. extra: 370/345,
  41589. bottom: 45/415
  41590. }
  41591. },
  41592. },
  41593. [
  41594. {
  41595. name: "Normal",
  41596. height: math.unit(1.9, "meters"),
  41597. default: true
  41598. },
  41599. ]
  41600. ))
  41601. characterMakers.push(() => makeCharacter(
  41602. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  41603. {
  41604. regular: {
  41605. height: math.unit(6, "feet"),
  41606. weight: math.unit(220, "lb"),
  41607. name: "Regular",
  41608. image: {
  41609. source: "./media/characters/phillip/regular.svg",
  41610. extra: 1373/1277,
  41611. bottom: 75/1448
  41612. }
  41613. },
  41614. dressed: {
  41615. height: math.unit(6, "feet"),
  41616. weight: math.unit(220, "lb"),
  41617. name: "Dressed",
  41618. image: {
  41619. source: "./media/characters/phillip/dressed.svg",
  41620. extra: 1373/1277,
  41621. bottom: 75/1448
  41622. }
  41623. },
  41624. paw: {
  41625. height: math.unit(1.44, "feet"),
  41626. name: "Paw",
  41627. image: {
  41628. source: "./media/characters/phillip/paw.svg"
  41629. }
  41630. },
  41631. },
  41632. [
  41633. {
  41634. name: "Normal",
  41635. height: math.unit(6, "feet"),
  41636. default: true
  41637. },
  41638. ]
  41639. ))
  41640. characterMakers.push(() => makeCharacter(
  41641. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  41642. {
  41643. side: {
  41644. height: math.unit(42, "feet"),
  41645. name: "Side",
  41646. image: {
  41647. source: "./media/characters/uvula/side.svg",
  41648. extra: 683/586,
  41649. bottom: 60/743
  41650. }
  41651. },
  41652. front: {
  41653. height: math.unit(42, "feet"),
  41654. name: "Front",
  41655. image: {
  41656. source: "./media/characters/uvula/front.svg",
  41657. extra: 705/613,
  41658. bottom: 54/759
  41659. }
  41660. },
  41661. maw: {
  41662. height: math.unit(23.5, "feet"),
  41663. name: "Maw",
  41664. image: {
  41665. source: "./media/characters/uvula/maw.svg"
  41666. }
  41667. },
  41668. },
  41669. [
  41670. {
  41671. name: "Original Size",
  41672. height: math.unit(14, "inches")
  41673. },
  41674. {
  41675. name: "Human Size",
  41676. height: math.unit(6, "feet")
  41677. },
  41678. {
  41679. name: "Big",
  41680. height: math.unit(42, "feet"),
  41681. default: true
  41682. },
  41683. {
  41684. name: "Bigger",
  41685. height: math.unit(100, "feet")
  41686. },
  41687. ]
  41688. ))
  41689. characterMakers.push(() => makeCharacter(
  41690. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  41691. {
  41692. front: {
  41693. height: math.unit(5 + 11/12, "feet"),
  41694. name: "Front",
  41695. image: {
  41696. source: "./media/characters/lannah/front.svg",
  41697. extra: 1208/1113,
  41698. bottom: 97/1305
  41699. }
  41700. },
  41701. },
  41702. [
  41703. {
  41704. name: "Normal",
  41705. height: math.unit(5 + 11/12, "feet"),
  41706. default: true
  41707. },
  41708. ]
  41709. ))
  41710. characterMakers.push(() => makeCharacter(
  41711. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  41712. {
  41713. front: {
  41714. height: math.unit(6 + 3/12, "feet"),
  41715. weight: math.unit(3.5, "tons"),
  41716. name: "Front",
  41717. image: {
  41718. source: "./media/characters/emberflame/front.svg",
  41719. extra: 1198/672,
  41720. bottom: 82/1280
  41721. }
  41722. },
  41723. side: {
  41724. height: math.unit(6 + 3/12, "feet"),
  41725. weight: math.unit(3.5, "tons"),
  41726. name: "Side",
  41727. image: {
  41728. source: "./media/characters/emberflame/side.svg",
  41729. extra: 938/527,
  41730. bottom: 56/994
  41731. }
  41732. },
  41733. },
  41734. [
  41735. {
  41736. name: "Normal",
  41737. height: math.unit(6 + 3/12, "feet"),
  41738. default: true
  41739. },
  41740. ]
  41741. ))
  41742. characterMakers.push(() => makeCharacter(
  41743. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  41744. {
  41745. side: {
  41746. height: math.unit(17.5, "feet"),
  41747. weight: math.unit(35, "tons"),
  41748. name: "Side",
  41749. image: {
  41750. source: "./media/characters/sophie-ambrose/side.svg",
  41751. extra: 1573/1242,
  41752. bottom: 71/1644
  41753. }
  41754. },
  41755. maw: {
  41756. height: math.unit(7.4, "feet"),
  41757. name: "Maw",
  41758. image: {
  41759. source: "./media/characters/sophie-ambrose/maw.svg"
  41760. }
  41761. },
  41762. },
  41763. [
  41764. {
  41765. name: "Normal",
  41766. height: math.unit(17.5, "feet"),
  41767. default: true
  41768. },
  41769. ]
  41770. ))
  41771. characterMakers.push(() => makeCharacter(
  41772. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  41773. {
  41774. front: {
  41775. height: math.unit(280, "feet"),
  41776. weight: math.unit(550, "tons"),
  41777. name: "Front",
  41778. image: {
  41779. source: "./media/characters/king-mugi/front.svg",
  41780. extra: 1102/947,
  41781. bottom: 104/1206
  41782. }
  41783. },
  41784. },
  41785. [
  41786. {
  41787. name: "King Mugi",
  41788. height: math.unit(280, "feet"),
  41789. default: true
  41790. },
  41791. ]
  41792. ))
  41793. characterMakers.push(() => makeCharacter(
  41794. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  41795. {
  41796. front: {
  41797. height: math.unit(64, "meters"),
  41798. name: "Front",
  41799. image: {
  41800. source: "./media/characters/nova-fox/front.svg",
  41801. extra: 1310/1246,
  41802. bottom: 65/1375
  41803. }
  41804. },
  41805. },
  41806. [
  41807. {
  41808. name: "Macro",
  41809. height: math.unit(64, "meters"),
  41810. default: true
  41811. },
  41812. ]
  41813. ))
  41814. characterMakers.push(() => makeCharacter(
  41815. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  41816. {
  41817. front: {
  41818. height: math.unit(6 + 3/12, "feet"),
  41819. weight: math.unit(170, "lb"),
  41820. name: "Front",
  41821. image: {
  41822. source: "./media/characters/sam-bat/front.svg",
  41823. extra: 1601/1411,
  41824. bottom: 125/1726
  41825. }
  41826. },
  41827. back: {
  41828. height: math.unit(6 + 3/12, "feet"),
  41829. weight: math.unit(170, "lb"),
  41830. name: "Back",
  41831. image: {
  41832. source: "./media/characters/sam-bat/back.svg",
  41833. extra: 1577/1405,
  41834. bottom: 58/1635
  41835. }
  41836. },
  41837. },
  41838. [
  41839. {
  41840. name: "Normal",
  41841. height: math.unit(6 + 3/12, "feet"),
  41842. default: true
  41843. },
  41844. ]
  41845. ))
  41846. characterMakers.push(() => makeCharacter(
  41847. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  41848. {
  41849. front: {
  41850. height: math.unit(59, "feet"),
  41851. weight: math.unit(40000, "lb"),
  41852. name: "Front",
  41853. image: {
  41854. source: "./media/characters/inari/front.svg",
  41855. extra: 1884/1350,
  41856. bottom: 95/1979
  41857. }
  41858. },
  41859. },
  41860. [
  41861. {
  41862. name: "Gigantamax",
  41863. height: math.unit(59, "feet"),
  41864. default: true
  41865. },
  41866. ]
  41867. ))
  41868. characterMakers.push(() => makeCharacter(
  41869. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  41870. {
  41871. front: {
  41872. height: math.unit(5 + 8/12, "feet"),
  41873. name: "Front",
  41874. image: {
  41875. source: "./media/characters/elizabeth/front.svg",
  41876. extra: 1395/1298,
  41877. bottom: 54/1449
  41878. }
  41879. },
  41880. mouth: {
  41881. height: math.unit(1.97, "feet"),
  41882. name: "Mouth",
  41883. image: {
  41884. source: "./media/characters/elizabeth/mouth.svg"
  41885. }
  41886. },
  41887. foot: {
  41888. height: math.unit(1.17, "feet"),
  41889. name: "Foot",
  41890. image: {
  41891. source: "./media/characters/elizabeth/foot.svg"
  41892. }
  41893. },
  41894. },
  41895. [
  41896. {
  41897. name: "Normal",
  41898. height: math.unit(5 + 8/12, "feet"),
  41899. default: true
  41900. },
  41901. {
  41902. name: "Minimacro",
  41903. height: math.unit(18, "feet")
  41904. },
  41905. {
  41906. name: "Macro",
  41907. height: math.unit(180, "feet")
  41908. },
  41909. ]
  41910. ))
  41911. characterMakers.push(() => makeCharacter(
  41912. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  41913. {
  41914. front: {
  41915. height: math.unit(5 + 2/12, "feet"),
  41916. name: "Front",
  41917. image: {
  41918. source: "./media/characters/october-gossamer/front.svg",
  41919. extra: 505/454,
  41920. bottom: 7/512
  41921. }
  41922. },
  41923. back: {
  41924. height: math.unit(5 + 2/12, "feet"),
  41925. name: "Back",
  41926. image: {
  41927. source: "./media/characters/october-gossamer/back.svg",
  41928. extra: 501/454,
  41929. bottom: 11/512
  41930. }
  41931. },
  41932. },
  41933. [
  41934. {
  41935. name: "Normal",
  41936. height: math.unit(5 + 2/12, "feet"),
  41937. default: true
  41938. },
  41939. ]
  41940. ))
  41941. characterMakers.push(() => makeCharacter(
  41942. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  41943. {
  41944. front: {
  41945. height: math.unit(5, "feet"),
  41946. name: "Front",
  41947. image: {
  41948. source: "./media/characters/epiglottis/front.svg",
  41949. extra: 923/849,
  41950. bottom: 17/940
  41951. }
  41952. },
  41953. },
  41954. [
  41955. {
  41956. name: "Original Size",
  41957. height: math.unit(10, "inches")
  41958. },
  41959. {
  41960. name: "Human Size",
  41961. height: math.unit(5, "feet"),
  41962. default: true
  41963. },
  41964. {
  41965. name: "Big",
  41966. height: math.unit(25, "feet")
  41967. },
  41968. {
  41969. name: "Bigger",
  41970. height: math.unit(50, "feet")
  41971. },
  41972. {
  41973. name: "oh lawd",
  41974. height: math.unit(75, "feet")
  41975. },
  41976. ]
  41977. ))
  41978. characterMakers.push(() => makeCharacter(
  41979. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  41980. {
  41981. front: {
  41982. height: math.unit(2 + 4/12, "feet"),
  41983. weight: math.unit(60, "lb"),
  41984. name: "Front",
  41985. image: {
  41986. source: "./media/characters/lerm/front.svg",
  41987. extra: 796/790,
  41988. bottom: 79/875
  41989. }
  41990. },
  41991. },
  41992. [
  41993. {
  41994. name: "Normal",
  41995. height: math.unit(2 + 4/12, "feet"),
  41996. default: true
  41997. },
  41998. ]
  41999. ))
  42000. characterMakers.push(() => makeCharacter(
  42001. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  42002. {
  42003. front: {
  42004. height: math.unit(5.5, "feet"),
  42005. weight: math.unit(130, "lb"),
  42006. name: "Front",
  42007. image: {
  42008. source: "./media/characters/xena-nebadon/front.svg",
  42009. extra: 1828/1730,
  42010. bottom: 79/1907
  42011. }
  42012. },
  42013. },
  42014. [
  42015. {
  42016. name: "Tiny Puppy",
  42017. height: math.unit(3, "inches")
  42018. },
  42019. {
  42020. name: "Normal",
  42021. height: math.unit(5.5, "feet"),
  42022. default: true
  42023. },
  42024. {
  42025. name: "Lotta Lady",
  42026. height: math.unit(12, "feet")
  42027. },
  42028. {
  42029. name: "Pretty Big",
  42030. height: math.unit(100, "feet")
  42031. },
  42032. {
  42033. name: "Big",
  42034. height: math.unit(500, "feet")
  42035. },
  42036. {
  42037. name: "Skyscraper Toys",
  42038. height: math.unit(2500, "feet")
  42039. },
  42040. {
  42041. name: "Plane Catcher",
  42042. height: math.unit(8, "miles")
  42043. },
  42044. {
  42045. name: "Planet Toys",
  42046. height: math.unit(15, "earths")
  42047. },
  42048. {
  42049. name: "Stardust",
  42050. height: math.unit(0.25, "galaxies")
  42051. },
  42052. {
  42053. name: "Snacks",
  42054. height: math.unit(70, "universes")
  42055. },
  42056. ]
  42057. ))
  42058. characterMakers.push(() => makeCharacter(
  42059. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42060. {
  42061. front: {
  42062. height: math.unit(1.6, "meters"),
  42063. weight: math.unit(60, "kg"),
  42064. name: "Front",
  42065. image: {
  42066. source: "./media/characters/bounty/front.svg",
  42067. extra: 1426/1308,
  42068. bottom: 15/1441
  42069. }
  42070. },
  42071. },
  42072. [
  42073. {
  42074. name: "Normal",
  42075. height: math.unit(1.6, "meters"),
  42076. default: true
  42077. },
  42078. {
  42079. name: "Macro",
  42080. height: math.unit(300, "meters")
  42081. },
  42082. ]
  42083. ))
  42084. characterMakers.push(() => makeCharacter(
  42085. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42086. {
  42087. front: {
  42088. height: math.unit(2 + 8/12, "feet"),
  42089. weight: math.unit(15, "lb"),
  42090. name: "Front",
  42091. image: {
  42092. source: "./media/characters/mochi/front.svg",
  42093. extra: 1022/852,
  42094. bottom: 435/1457
  42095. }
  42096. },
  42097. back: {
  42098. height: math.unit(2 + 8/12, "feet"),
  42099. weight: math.unit(15, "lb"),
  42100. name: "Back",
  42101. image: {
  42102. source: "./media/characters/mochi/back.svg",
  42103. extra: 1335/1119,
  42104. bottom: 39/1374
  42105. }
  42106. },
  42107. bird: {
  42108. height: math.unit(2 + 8/12, "feet"),
  42109. weight: math.unit(15, "lb"),
  42110. name: "Bird",
  42111. image: {
  42112. source: "./media/characters/mochi/bird.svg",
  42113. extra: 1251/1113,
  42114. bottom: 178/1429
  42115. }
  42116. },
  42117. kaiju: {
  42118. height: math.unit(154, "feet"),
  42119. weight: math.unit(1e7, "lb"),
  42120. name: "Kaiju",
  42121. image: {
  42122. source: "./media/characters/mochi/kaiju.svg",
  42123. extra: 460/324,
  42124. bottom: 40/500
  42125. }
  42126. },
  42127. head: {
  42128. height: math.unit(1.21, "feet"),
  42129. name: "Head",
  42130. image: {
  42131. source: "./media/characters/mochi/head.svg"
  42132. }
  42133. },
  42134. alternateTail: {
  42135. height: math.unit(2 + 8/12, "feet"),
  42136. weight: math.unit(45, "lb"),
  42137. name: "Alternate Tail",
  42138. image: {
  42139. source: "./media/characters/mochi/alternate-tail.svg",
  42140. extra: 139/76,
  42141. bottom: 45/184
  42142. }
  42143. },
  42144. },
  42145. [
  42146. {
  42147. name: "Micro",
  42148. height: math.unit(2, "inches")
  42149. },
  42150. {
  42151. name: "Normal",
  42152. height: math.unit(2 + 8/12, "feet"),
  42153. default: true
  42154. },
  42155. {
  42156. name: "Macro",
  42157. height: math.unit(106, "feet")
  42158. },
  42159. ]
  42160. ))
  42161. characterMakers.push(() => makeCharacter(
  42162. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42163. {
  42164. front: {
  42165. height: math.unit(5.67, "feet"),
  42166. weight: math.unit(135, "lb"),
  42167. name: "Front",
  42168. image: {
  42169. source: "./media/characters/sarel/front.svg",
  42170. extra: 865/788,
  42171. bottom: 97/962
  42172. }
  42173. },
  42174. back: {
  42175. height: math.unit(5.67, "feet"),
  42176. weight: math.unit(135, "lb"),
  42177. name: "Back",
  42178. image: {
  42179. source: "./media/characters/sarel/back.svg",
  42180. extra: 857/777,
  42181. bottom: 32/889
  42182. }
  42183. },
  42184. chozoan: {
  42185. height: math.unit(5.67, "feet"),
  42186. weight: math.unit(135, "lb"),
  42187. name: "Chozoan",
  42188. image: {
  42189. source: "./media/characters/sarel/chozoan.svg",
  42190. extra: 865/788,
  42191. bottom: 97/962
  42192. }
  42193. },
  42194. current: {
  42195. height: math.unit(5.67, "feet"),
  42196. weight: math.unit(135, "lb"),
  42197. name: "Current",
  42198. image: {
  42199. source: "./media/characters/sarel/current.svg",
  42200. extra: 865/788,
  42201. bottom: 97/962
  42202. }
  42203. },
  42204. head: {
  42205. height: math.unit(1.77, "feet"),
  42206. name: "Head",
  42207. image: {
  42208. source: "./media/characters/sarel/head.svg"
  42209. }
  42210. },
  42211. claws: {
  42212. height: math.unit(1.8, "feet"),
  42213. name: "Claws",
  42214. image: {
  42215. source: "./media/characters/sarel/claws.svg"
  42216. }
  42217. },
  42218. clawsAlt: {
  42219. height: math.unit(1.8, "feet"),
  42220. name: "Claws-alt",
  42221. image: {
  42222. source: "./media/characters/sarel/claws-alt.svg"
  42223. }
  42224. },
  42225. },
  42226. [
  42227. {
  42228. name: "Normal",
  42229. height: math.unit(5.67, "feet"),
  42230. default: true
  42231. },
  42232. ]
  42233. ))
  42234. characterMakers.push(() => makeCharacter(
  42235. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42236. {
  42237. front: {
  42238. height: math.unit(5500, "feet"),
  42239. name: "Front",
  42240. image: {
  42241. source: "./media/characters/alyonia/front.svg",
  42242. extra: 1200/1135,
  42243. bottom: 29/1229
  42244. }
  42245. },
  42246. back: {
  42247. height: math.unit(5500, "feet"),
  42248. name: "Back",
  42249. image: {
  42250. source: "./media/characters/alyonia/back.svg",
  42251. extra: 1205/1138,
  42252. bottom: 10/1215
  42253. }
  42254. },
  42255. },
  42256. [
  42257. {
  42258. name: "Small",
  42259. height: math.unit(10, "feet")
  42260. },
  42261. {
  42262. name: "Macro",
  42263. height: math.unit(500, "feet")
  42264. },
  42265. {
  42266. name: "Mega Macro",
  42267. height: math.unit(5500, "feet"),
  42268. default: true
  42269. },
  42270. {
  42271. name: "Mega Macro+",
  42272. height: math.unit(500000, "feet")
  42273. },
  42274. {
  42275. name: "Giga Macro",
  42276. height: math.unit(3000, "miles")
  42277. },
  42278. {
  42279. name: "Tera Macro",
  42280. height: math.unit(2.8e6, "miles")
  42281. },
  42282. {
  42283. name: "Galactic",
  42284. height: math.unit(120000, "lightyears")
  42285. },
  42286. ]
  42287. ))
  42288. characterMakers.push(() => makeCharacter(
  42289. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42290. {
  42291. werewolf: {
  42292. height: math.unit(8, "feet"),
  42293. weight: math.unit(425, "lb"),
  42294. name: "Werewolf",
  42295. image: {
  42296. source: "./media/characters/autumn/werewolf.svg",
  42297. extra: 2154/2031,
  42298. bottom: 160/2314
  42299. }
  42300. },
  42301. human: {
  42302. height: math.unit(5 + 8/12, "feet"),
  42303. weight: math.unit(150, "lb"),
  42304. name: "Human",
  42305. image: {
  42306. source: "./media/characters/autumn/human.svg",
  42307. extra: 1200/1149,
  42308. bottom: 30/1230
  42309. }
  42310. },
  42311. },
  42312. [
  42313. {
  42314. name: "Normal",
  42315. height: math.unit(8, "feet"),
  42316. default: true
  42317. },
  42318. ]
  42319. ))
  42320. characterMakers.push(() => makeCharacter(
  42321. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42322. {
  42323. front: {
  42324. height: math.unit(8 + 5/12, "feet"),
  42325. weight: math.unit(825, "lb"),
  42326. name: "Front",
  42327. image: {
  42328. source: "./media/characters/cobalt-charizard/front.svg",
  42329. extra: 1268/1155,
  42330. bottom: 122/1390
  42331. }
  42332. },
  42333. side: {
  42334. height: math.unit(8 + 5/12, "feet"),
  42335. weight: math.unit(825, "lb"),
  42336. name: "Side",
  42337. image: {
  42338. source: "./media/characters/cobalt-charizard/side.svg",
  42339. extra: 1348/1257,
  42340. bottom: 58/1406
  42341. }
  42342. },
  42343. gMax: {
  42344. height: math.unit(134 + 11/12, "feet"),
  42345. name: "G-Max",
  42346. image: {
  42347. source: "./media/characters/cobalt-charizard/g-max.svg",
  42348. extra: 1835/1541,
  42349. bottom: 151/1986
  42350. }
  42351. },
  42352. },
  42353. [
  42354. {
  42355. name: "Normal",
  42356. height: math.unit(8 + 5/12, "feet"),
  42357. default: true
  42358. },
  42359. ]
  42360. ))
  42361. characterMakers.push(() => makeCharacter(
  42362. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42363. {
  42364. front: {
  42365. height: math.unit(6 + 3/12, "feet"),
  42366. weight: math.unit(210, "lb"),
  42367. name: "Front",
  42368. image: {
  42369. source: "./media/characters/stella/front.svg",
  42370. extra: 3549/3335,
  42371. bottom: 51/3600
  42372. }
  42373. },
  42374. },
  42375. [
  42376. {
  42377. name: "Normal",
  42378. height: math.unit(6 + 3/12, "feet"),
  42379. default: true
  42380. },
  42381. ]
  42382. ))
  42383. characterMakers.push(() => makeCharacter(
  42384. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  42385. {
  42386. front: {
  42387. height: math.unit(5, "feet"),
  42388. weight: math.unit(90, "lb"),
  42389. name: "Front",
  42390. image: {
  42391. source: "./media/characters/riley-bishop/front.svg",
  42392. extra: 1450/1428,
  42393. bottom: 152/1602
  42394. }
  42395. },
  42396. },
  42397. [
  42398. {
  42399. name: "Normal",
  42400. height: math.unit(5, "feet"),
  42401. default: true
  42402. },
  42403. ]
  42404. ))
  42405. characterMakers.push(() => makeCharacter(
  42406. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  42407. {
  42408. side: {
  42409. height: math.unit(8 + 2/12, "feet"),
  42410. weight: math.unit(500, "kg"),
  42411. name: "Side",
  42412. image: {
  42413. source: "./media/characters/theo-arcanine/side.svg",
  42414. extra: 1342/1074,
  42415. bottom: 111/1453
  42416. }
  42417. },
  42418. },
  42419. [
  42420. {
  42421. name: "Normal",
  42422. height: math.unit(8 + 2/12, "feet"),
  42423. default: true
  42424. },
  42425. ]
  42426. ))
  42427. characterMakers.push(() => makeCharacter(
  42428. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  42429. {
  42430. front: {
  42431. height: math.unit(4, "feet"),
  42432. name: "Front",
  42433. image: {
  42434. source: "./media/characters/kali/front.svg",
  42435. extra: 1921/1357,
  42436. bottom: 70/1991
  42437. }
  42438. },
  42439. },
  42440. [
  42441. {
  42442. name: "Normal",
  42443. height: math.unit(4, "feet"),
  42444. default: true
  42445. },
  42446. {
  42447. name: "Macro",
  42448. height: math.unit(32, "meters")
  42449. },
  42450. {
  42451. name: "Macro+",
  42452. height: math.unit(150, "meters")
  42453. },
  42454. {
  42455. name: "Megamacro",
  42456. height: math.unit(7500, "meters")
  42457. },
  42458. {
  42459. name: "Megamacro+",
  42460. height: math.unit(80, "kilometers")
  42461. },
  42462. ]
  42463. ))
  42464. characterMakers.push(() => makeCharacter(
  42465. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  42466. {
  42467. side: {
  42468. height: math.unit(5 + 11/12, "feet"),
  42469. weight: math.unit(236, "lb"),
  42470. name: "Side",
  42471. image: {
  42472. source: "./media/characters/gapp/side.svg",
  42473. extra: 775/340,
  42474. bottom: 58/833
  42475. }
  42476. },
  42477. mouth: {
  42478. height: math.unit(2.98, "feet"),
  42479. name: "Mouth",
  42480. image: {
  42481. source: "./media/characters/gapp/mouth.svg"
  42482. }
  42483. },
  42484. },
  42485. [
  42486. {
  42487. name: "Normal",
  42488. height: math.unit(5 + 1/12, "feet"),
  42489. default: true
  42490. },
  42491. ]
  42492. ))
  42493. characterMakers.push(() => makeCharacter(
  42494. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  42495. {
  42496. front: {
  42497. height: math.unit(6, "feet"),
  42498. name: "Front",
  42499. image: {
  42500. source: "./media/characters/persephone/front.svg",
  42501. extra: 1895/1717,
  42502. bottom: 96/1991
  42503. }
  42504. },
  42505. back: {
  42506. height: math.unit(6, "feet"),
  42507. name: "Back",
  42508. image: {
  42509. source: "./media/characters/persephone/back.svg",
  42510. extra: 1868/1679,
  42511. bottom: 26/1894
  42512. }
  42513. },
  42514. casual: {
  42515. height: math.unit(6, "feet"),
  42516. name: "Casual",
  42517. image: {
  42518. source: "./media/characters/persephone/casual.svg",
  42519. extra: 1713/1541,
  42520. bottom: 76/1789
  42521. }
  42522. },
  42523. },
  42524. [
  42525. {
  42526. name: "Human Size",
  42527. height: math.unit(6, "feet")
  42528. },
  42529. {
  42530. name: "Big Steppy",
  42531. height: math.unit(600, "meters"),
  42532. default: true
  42533. },
  42534. {
  42535. name: "Galaxy Brain",
  42536. height: math.unit(1, "zettameter")
  42537. },
  42538. ]
  42539. ))
  42540. characterMakers.push(() => makeCharacter(
  42541. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  42542. {
  42543. front: {
  42544. height: math.unit(1.85, "meters"),
  42545. name: "Front",
  42546. image: {
  42547. source: "./media/characters/riley-foxthing/front.svg",
  42548. extra: 1495/1354,
  42549. bottom: 122/1617
  42550. }
  42551. },
  42552. frontAlt: {
  42553. height: math.unit(1.85, "meters"),
  42554. name: "Front (Alt)",
  42555. image: {
  42556. source: "./media/characters/riley-foxthing/front-alt.svg",
  42557. extra: 1572/1389,
  42558. bottom: 116/1688
  42559. }
  42560. },
  42561. },
  42562. [
  42563. {
  42564. name: "Normal Sized",
  42565. height: math.unit(1.85, "meters"),
  42566. default: true
  42567. },
  42568. {
  42569. name: "Quite Sizable",
  42570. height: math.unit(5, "meters")
  42571. },
  42572. {
  42573. name: "Rather Large",
  42574. height: math.unit(20, "meters")
  42575. },
  42576. {
  42577. name: "Macro",
  42578. height: math.unit(450, "meters")
  42579. },
  42580. {
  42581. name: "Giga",
  42582. height: math.unit(5, "km")
  42583. },
  42584. ]
  42585. ))
  42586. characterMakers.push(() => makeCharacter(
  42587. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  42588. {
  42589. front: {
  42590. height: math.unit(6, "feet"),
  42591. weight: math.unit(200, "lb"),
  42592. name: "Front",
  42593. image: {
  42594. source: "./media/characters/blizzard/front.svg",
  42595. extra: 1136/990,
  42596. bottom: 136/1272
  42597. }
  42598. },
  42599. back: {
  42600. height: math.unit(6, "feet"),
  42601. weight: math.unit(200, "lb"),
  42602. name: "Back",
  42603. image: {
  42604. source: "./media/characters/blizzard/back.svg",
  42605. extra: 1175/1034,
  42606. bottom: 97/1272
  42607. }
  42608. },
  42609. sitting: {
  42610. height: math.unit(3.725, "feet"),
  42611. weight: math.unit(200, "lb"),
  42612. name: "Sitting",
  42613. image: {
  42614. source: "./media/characters/blizzard/sitting.svg",
  42615. extra: 581/485,
  42616. bottom: 90/671
  42617. }
  42618. },
  42619. frontWizard: {
  42620. height: math.unit(7.9, "feet"),
  42621. weight: math.unit(200, "lb"),
  42622. name: "Front (Wizard)",
  42623. image: {
  42624. source: "./media/characters/blizzard/front-wizard.svg"
  42625. }
  42626. },
  42627. backWizard: {
  42628. height: math.unit(7.9, "feet"),
  42629. weight: math.unit(200, "lb"),
  42630. name: "Back (Wizard)",
  42631. image: {
  42632. source: "./media/characters/blizzard/back-wizard.svg"
  42633. }
  42634. },
  42635. frontNsfw: {
  42636. height: math.unit(6, "feet"),
  42637. weight: math.unit(200, "lb"),
  42638. name: "Front (NSFW)",
  42639. image: {
  42640. source: "./media/characters/blizzard/front-nsfw.svg",
  42641. extra: 1136/990,
  42642. bottom: 136/1272
  42643. }
  42644. },
  42645. backNsfw: {
  42646. height: math.unit(6, "feet"),
  42647. weight: math.unit(200, "lb"),
  42648. name: "Back (NSFW)",
  42649. image: {
  42650. source: "./media/characters/blizzard/back-nsfw.svg",
  42651. extra: 1175/1034,
  42652. bottom: 97/1272
  42653. }
  42654. },
  42655. sittingNsfw: {
  42656. height: math.unit(3.725, "feet"),
  42657. weight: math.unit(200, "lb"),
  42658. name: "Sitting (NSFW)",
  42659. image: {
  42660. source: "./media/characters/blizzard/sitting-nsfw.svg",
  42661. extra: 581/485,
  42662. bottom: 90/671
  42663. }
  42664. },
  42665. wizardFrontNsfw: {
  42666. height: math.unit(7.9, "feet"),
  42667. weight: math.unit(200, "lb"),
  42668. name: "Wizard (Front, NSFW)",
  42669. image: {
  42670. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  42671. }
  42672. },
  42673. },
  42674. [
  42675. {
  42676. name: "Normal",
  42677. height: math.unit(6, "feet"),
  42678. default: true
  42679. },
  42680. ]
  42681. ))
  42682. characterMakers.push(() => makeCharacter(
  42683. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  42684. {
  42685. front: {
  42686. height: math.unit(5 + 2/12, "feet"),
  42687. name: "Front",
  42688. image: {
  42689. source: "./media/characters/lumi/front.svg",
  42690. extra: 1328/1268,
  42691. bottom: 103/1431
  42692. }
  42693. },
  42694. back: {
  42695. height: math.unit(5 + 2/12, "feet"),
  42696. name: "Back",
  42697. image: {
  42698. source: "./media/characters/lumi/back.svg",
  42699. extra: 1381/1327,
  42700. bottom: 43/1424
  42701. }
  42702. },
  42703. },
  42704. [
  42705. {
  42706. name: "Normal",
  42707. height: math.unit(5 + 2/12, "feet"),
  42708. default: true
  42709. },
  42710. ]
  42711. ))
  42712. characterMakers.push(() => makeCharacter(
  42713. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  42714. {
  42715. front: {
  42716. height: math.unit(5 + 9/12, "feet"),
  42717. name: "Front",
  42718. image: {
  42719. source: "./media/characters/aliya-cotton/front.svg",
  42720. extra: 577/564,
  42721. bottom: 29/606
  42722. }
  42723. },
  42724. },
  42725. [
  42726. {
  42727. name: "Normal",
  42728. height: math.unit(5 + 9/12, "feet"),
  42729. default: true
  42730. },
  42731. ]
  42732. ))
  42733. characterMakers.push(() => makeCharacter(
  42734. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  42735. {
  42736. front: {
  42737. height: math.unit(2.7, "meters"),
  42738. weight: math.unit(25000, "lb"),
  42739. name: "Front",
  42740. image: {
  42741. source: "./media/characters/noah-luxray/front.svg",
  42742. extra: 1644/825,
  42743. bottom: 339/1983
  42744. }
  42745. },
  42746. side: {
  42747. height: math.unit(2.97, "meters"),
  42748. weight: math.unit(25000, "lb"),
  42749. name: "Side",
  42750. image: {
  42751. source: "./media/characters/noah-luxray/side.svg",
  42752. extra: 1319/650,
  42753. bottom: 163/1482
  42754. }
  42755. },
  42756. dick: {
  42757. height: math.unit(7.4, "feet"),
  42758. weight: math.unit(2500, "lb"),
  42759. name: "Dick",
  42760. image: {
  42761. source: "./media/characters/noah-luxray/dick.svg"
  42762. }
  42763. },
  42764. dickAlt: {
  42765. height: math.unit(10.83, "feet"),
  42766. weight: math.unit(2500, "lb"),
  42767. name: "Dick-alt",
  42768. image: {
  42769. source: "./media/characters/noah-luxray/dick-alt.svg"
  42770. }
  42771. },
  42772. },
  42773. [
  42774. {
  42775. name: "BIG",
  42776. height: math.unit(2.7, "meters"),
  42777. default: true
  42778. },
  42779. ]
  42780. ))
  42781. characterMakers.push(() => makeCharacter(
  42782. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  42783. {
  42784. standing: {
  42785. height: math.unit(183, "cm"),
  42786. weight: math.unit(68, "kg"),
  42787. name: "Standing",
  42788. image: {
  42789. source: "./media/characters/arion/standing.svg",
  42790. extra: 1869/1807,
  42791. bottom: 93/1962
  42792. }
  42793. },
  42794. reclining: {
  42795. height: math.unit(70.5, "cm"),
  42796. weight: math.unit(68, "lb"),
  42797. name: "Reclining",
  42798. image: {
  42799. source: "./media/characters/arion/reclining.svg",
  42800. extra: 937/870,
  42801. bottom: 63/1000
  42802. }
  42803. },
  42804. },
  42805. [
  42806. {
  42807. name: "Colossus Size, Low",
  42808. height: math.unit(33, "meters"),
  42809. default: true
  42810. },
  42811. {
  42812. name: "Colossus Size, Mid",
  42813. height: math.unit(52, "meters")
  42814. },
  42815. {
  42816. name: "Colossus Size, High",
  42817. height: math.unit(60, "meters")
  42818. },
  42819. {
  42820. name: "Titan Size, Low",
  42821. height: math.unit(91, "meters"),
  42822. },
  42823. {
  42824. name: "Titan Size, Mid",
  42825. height: math.unit(122, "meters")
  42826. },
  42827. {
  42828. name: "Titan Size, High",
  42829. height: math.unit(162, "meters")
  42830. },
  42831. ]
  42832. ))
  42833. characterMakers.push(() => makeCharacter(
  42834. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  42835. {
  42836. front: {
  42837. height: math.unit(53, "meters"),
  42838. name: "Front",
  42839. image: {
  42840. source: "./media/characters/stellar-marbey/front.svg",
  42841. extra: 1913/1805,
  42842. bottom: 92/2005
  42843. }
  42844. },
  42845. back: {
  42846. height: math.unit(53, "meters"),
  42847. name: "Back",
  42848. image: {
  42849. source: "./media/characters/stellar-marbey/back.svg",
  42850. extra: 1960/1851,
  42851. bottom: 28/1988
  42852. }
  42853. },
  42854. mouth: {
  42855. height: math.unit(3.5, "meters"),
  42856. name: "Mouth",
  42857. image: {
  42858. source: "./media/characters/stellar-marbey/mouth.svg"
  42859. }
  42860. },
  42861. },
  42862. [
  42863. {
  42864. name: "Macro",
  42865. height: math.unit(53, "meters"),
  42866. default: true
  42867. },
  42868. ]
  42869. ))
  42870. characterMakers.push(() => makeCharacter(
  42871. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  42872. {
  42873. front: {
  42874. height: math.unit(8 + 1/12, "feet"),
  42875. weight: math.unit(233, "lb"),
  42876. name: "Front",
  42877. image: {
  42878. source: "./media/characters/matsu/front.svg",
  42879. extra: 832/772,
  42880. bottom: 40/872
  42881. }
  42882. },
  42883. back: {
  42884. height: math.unit(8 + 1/12, "feet"),
  42885. weight: math.unit(233, "lb"),
  42886. name: "Back",
  42887. image: {
  42888. source: "./media/characters/matsu/back.svg",
  42889. extra: 839/780,
  42890. bottom: 47/886
  42891. }
  42892. },
  42893. },
  42894. [
  42895. {
  42896. name: "Normal",
  42897. height: math.unit(8 + 1/12, "feet"),
  42898. default: true
  42899. },
  42900. ]
  42901. ))
  42902. characterMakers.push(() => makeCharacter(
  42903. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  42904. {
  42905. front: {
  42906. height: math.unit(4, "feet"),
  42907. weight: math.unit(148, "lb"),
  42908. name: "Front",
  42909. image: {
  42910. source: "./media/characters/thiz/front.svg",
  42911. extra: 1913/1748,
  42912. bottom: 62/1975
  42913. }
  42914. },
  42915. },
  42916. [
  42917. {
  42918. name: "Normal",
  42919. height: math.unit(4, "feet"),
  42920. default: true
  42921. },
  42922. ]
  42923. ))
  42924. characterMakers.push(() => makeCharacter(
  42925. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  42926. {
  42927. front: {
  42928. height: math.unit(7 + 6/12, "feet"),
  42929. weight: math.unit(267, "lb"),
  42930. name: "Front",
  42931. image: {
  42932. source: "./media/characters/marcel/front.svg",
  42933. extra: 1221/1096,
  42934. bottom: 76/1297
  42935. }
  42936. },
  42937. },
  42938. [
  42939. {
  42940. name: "Normal",
  42941. height: math.unit(7 + 6/12, "feet"),
  42942. default: true
  42943. },
  42944. ]
  42945. ))
  42946. characterMakers.push(() => makeCharacter(
  42947. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  42948. {
  42949. side: {
  42950. height: math.unit(42, "meters"),
  42951. name: "Side",
  42952. image: {
  42953. source: "./media/characters/flake/side.svg",
  42954. extra: 1525/1306,
  42955. bottom: 209/1734
  42956. }
  42957. },
  42958. },
  42959. [
  42960. {
  42961. name: "Normal",
  42962. height: math.unit(42, "meters"),
  42963. default: true
  42964. },
  42965. ]
  42966. ))
  42967. characterMakers.push(() => makeCharacter(
  42968. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  42969. {
  42970. dressed: {
  42971. height: math.unit(6 + 4/12, "feet"),
  42972. weight: math.unit(520, "lb"),
  42973. name: "Dressed",
  42974. image: {
  42975. source: "./media/characters/someonne/dressed.svg",
  42976. extra: 1020/1010,
  42977. bottom: 178/1198
  42978. }
  42979. },
  42980. undressed: {
  42981. height: math.unit(6 + 4/12, "feet"),
  42982. weight: math.unit(520, "lb"),
  42983. name: "Undressed",
  42984. image: {
  42985. source: "./media/characters/someonne/undressed.svg",
  42986. extra: 1019/1014,
  42987. bottom: 169/1188
  42988. }
  42989. },
  42990. },
  42991. [
  42992. {
  42993. name: "Normal",
  42994. height: math.unit(6 + 4/12, "feet"),
  42995. default: true
  42996. },
  42997. ]
  42998. ))
  42999. characterMakers.push(() => makeCharacter(
  43000. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  43001. {
  43002. front: {
  43003. height: math.unit(3, "feet"),
  43004. weight: math.unit(30, "lb"),
  43005. name: "Front",
  43006. image: {
  43007. source: "./media/characters/till/front.svg",
  43008. extra: 892/823,
  43009. bottom: 55/947
  43010. }
  43011. },
  43012. },
  43013. [
  43014. {
  43015. name: "Normal",
  43016. height: math.unit(3, "feet"),
  43017. default: true
  43018. },
  43019. ]
  43020. ))
  43021. characterMakers.push(() => makeCharacter(
  43022. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  43023. {
  43024. front: {
  43025. height: math.unit(9 + 8/12, "feet"),
  43026. weight: math.unit(800, "lb"),
  43027. name: "Front",
  43028. image: {
  43029. source: "./media/characters/sydney-heki/front.svg",
  43030. extra: 1360/1300,
  43031. bottom: 22/1382
  43032. }
  43033. },
  43034. back: {
  43035. height: math.unit(9 + 8/12, "feet"),
  43036. weight: math.unit(800, "lb"),
  43037. name: "Back",
  43038. image: {
  43039. source: "./media/characters/sydney-heki/back.svg",
  43040. extra: 1356/1293,
  43041. bottom: 12/1368
  43042. }
  43043. },
  43044. frontDressed: {
  43045. height: math.unit(9 + 8/12, "feet"),
  43046. weight: math.unit(800, "lb"),
  43047. name: "Front-dressed",
  43048. image: {
  43049. source: "./media/characters/sydney-heki/front-dressed.svg",
  43050. extra: 1360/1300,
  43051. bottom: 22/1382
  43052. }
  43053. },
  43054. },
  43055. [
  43056. {
  43057. name: "Normal",
  43058. height: math.unit(9 + 8/12, "feet"),
  43059. default: true
  43060. },
  43061. {
  43062. name: "Macro",
  43063. height: math.unit(500, "feet")
  43064. },
  43065. {
  43066. name: "Megamacro",
  43067. height: math.unit(3.6, "miles")
  43068. },
  43069. ]
  43070. ))
  43071. characterMakers.push(() => makeCharacter(
  43072. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43073. {
  43074. front: {
  43075. height: math.unit(200, "cm"),
  43076. weight: math.unit(250, "lb"),
  43077. name: "Front",
  43078. image: {
  43079. source: "./media/characters/fowler-karlsson/front.svg",
  43080. extra: 897/845,
  43081. bottom: 123/1020
  43082. }
  43083. },
  43084. back: {
  43085. height: math.unit(200, "cm"),
  43086. weight: math.unit(250, "lb"),
  43087. name: "Back",
  43088. image: {
  43089. source: "./media/characters/fowler-karlsson/back.svg",
  43090. extra: 999/944,
  43091. bottom: 26/1025
  43092. }
  43093. },
  43094. dick: {
  43095. height: math.unit(1.92, "feet"),
  43096. weight: math.unit(150, "lb"),
  43097. name: "Dick",
  43098. image: {
  43099. source: "./media/characters/fowler-karlsson/dick.svg"
  43100. }
  43101. },
  43102. },
  43103. [
  43104. {
  43105. name: "Normal",
  43106. height: math.unit(200, "cm"),
  43107. default: true
  43108. },
  43109. {
  43110. name: "Smaller Macro",
  43111. height: math.unit(90, "m")
  43112. },
  43113. {
  43114. name: "Macro",
  43115. height: math.unit(150, "m")
  43116. },
  43117. {
  43118. name: "Bigger Macro",
  43119. height: math.unit(300, "m")
  43120. },
  43121. ]
  43122. ))
  43123. characterMakers.push(() => makeCharacter(
  43124. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43125. {
  43126. side: {
  43127. height: math.unit(8 + 2/12, "feet"),
  43128. weight: math.unit(1, "tonne"),
  43129. name: "Side",
  43130. image: {
  43131. source: "./media/characters/rylide/side.svg",
  43132. extra: 1318/1034,
  43133. bottom: 106/1424
  43134. }
  43135. },
  43136. sitting: {
  43137. height: math.unit(303, "cm"),
  43138. weight: math.unit(1, "tonne"),
  43139. name: "Sitting",
  43140. image: {
  43141. source: "./media/characters/rylide/sitting.svg",
  43142. extra: 1303/1103,
  43143. bottom: 36/1339
  43144. }
  43145. },
  43146. },
  43147. [
  43148. {
  43149. name: "Normal",
  43150. height: math.unit(8 + 2/12, "feet"),
  43151. default: true
  43152. },
  43153. ]
  43154. ))
  43155. characterMakers.push(() => makeCharacter(
  43156. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43157. {
  43158. front: {
  43159. height: math.unit(5 + 10/12, "feet"),
  43160. weight: math.unit(160, "lb"),
  43161. name: "Front",
  43162. image: {
  43163. source: "./media/characters/pudask/front.svg",
  43164. extra: 1616/1590,
  43165. bottom: 161/1777
  43166. }
  43167. },
  43168. },
  43169. [
  43170. {
  43171. name: "Ferret Height",
  43172. height: math.unit(2 + 5/12, "feet")
  43173. },
  43174. {
  43175. name: "Canon Height",
  43176. height: math.unit(5 + 10/12, "feet"),
  43177. default: true
  43178. },
  43179. ]
  43180. ))
  43181. characterMakers.push(() => makeCharacter(
  43182. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43183. {
  43184. front: {
  43185. height: math.unit(3 + 6/12, "feet"),
  43186. weight: math.unit(60, "lb"),
  43187. name: "Front",
  43188. image: {
  43189. source: "./media/characters/ramita/front.svg",
  43190. extra: 1402/1232,
  43191. bottom: 62/1464
  43192. }
  43193. },
  43194. dressed: {
  43195. height: math.unit(3 + 6/12, "feet"),
  43196. weight: math.unit(60, "lb"),
  43197. name: "Dressed",
  43198. image: {
  43199. source: "./media/characters/ramita/dressed.svg",
  43200. extra: 1534/1249,
  43201. bottom: 50/1584
  43202. }
  43203. },
  43204. },
  43205. [
  43206. {
  43207. name: "Normal",
  43208. height: math.unit(3 + 6/12, "feet"),
  43209. default: true
  43210. },
  43211. ]
  43212. ))
  43213. characterMakers.push(() => makeCharacter(
  43214. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43215. {
  43216. front: {
  43217. height: math.unit(8, "feet"),
  43218. name: "Front",
  43219. image: {
  43220. source: "./media/characters/ark/front.svg",
  43221. extra: 772/693,
  43222. bottom: 45/817
  43223. }
  43224. },
  43225. },
  43226. [
  43227. {
  43228. name: "Normal",
  43229. height: math.unit(8, "feet"),
  43230. default: true
  43231. },
  43232. ]
  43233. ))
  43234. characterMakers.push(() => makeCharacter(
  43235. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43236. {
  43237. front: {
  43238. height: math.unit(6, "feet"),
  43239. weight: math.unit(250, "lb"),
  43240. volume: math.unit(5/8, "gallons"),
  43241. name: "Front",
  43242. image: {
  43243. source: "./media/characters/ludwig-horn/front.svg",
  43244. extra: 1782/1635,
  43245. bottom: 96/1878
  43246. }
  43247. },
  43248. back: {
  43249. height: math.unit(6, "feet"),
  43250. weight: math.unit(250, "lb"),
  43251. volume: math.unit(5/8, "gallons"),
  43252. name: "Back",
  43253. image: {
  43254. source: "./media/characters/ludwig-horn/back.svg",
  43255. extra: 1874/1729,
  43256. bottom: 27/1901
  43257. }
  43258. },
  43259. dick: {
  43260. height: math.unit(1.05, "feet"),
  43261. weight: math.unit(15, "lb"),
  43262. volume: math.unit(5/8, "gallons"),
  43263. name: "Dick",
  43264. image: {
  43265. source: "./media/characters/ludwig-horn/dick.svg"
  43266. }
  43267. },
  43268. },
  43269. [
  43270. {
  43271. name: "Small",
  43272. height: math.unit(6, "feet")
  43273. },
  43274. {
  43275. name: "Typical",
  43276. height: math.unit(12, "feet"),
  43277. default: true
  43278. },
  43279. {
  43280. name: "Building",
  43281. height: math.unit(80, "feet")
  43282. },
  43283. {
  43284. name: "Town",
  43285. height: math.unit(800, "feet")
  43286. },
  43287. {
  43288. name: "Kingdom",
  43289. height: math.unit(80000, "feet")
  43290. },
  43291. {
  43292. name: "Planet",
  43293. height: math.unit(8000000, "feet")
  43294. },
  43295. {
  43296. name: "Universe",
  43297. height: math.unit(8000000000, "feet")
  43298. },
  43299. {
  43300. name: "Transcended",
  43301. height: math.unit(8e27, "feet")
  43302. },
  43303. ]
  43304. ))
  43305. characterMakers.push(() => makeCharacter(
  43306. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  43307. {
  43308. front: {
  43309. height: math.unit(5, "feet"),
  43310. weight: math.unit(50, "kg"),
  43311. name: "Front",
  43312. image: {
  43313. source: "./media/characters/biot-avery/front.svg",
  43314. extra: 1295/1232,
  43315. bottom: 86/1381
  43316. }
  43317. },
  43318. },
  43319. [
  43320. {
  43321. name: "Normal",
  43322. height: math.unit(5, "feet"),
  43323. default: true
  43324. },
  43325. ]
  43326. ))
  43327. characterMakers.push(() => makeCharacter(
  43328. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  43329. {
  43330. front: {
  43331. height: math.unit(6, "feet"),
  43332. name: "Front",
  43333. image: {
  43334. source: "./media/characters/kitsune-kiro/front.svg",
  43335. extra: 1270/1158,
  43336. bottom: 42/1312
  43337. }
  43338. },
  43339. frontAlt: {
  43340. height: math.unit(6, "feet"),
  43341. name: "Front-alt",
  43342. image: {
  43343. source: "./media/characters/kitsune-kiro/front-alt.svg",
  43344. extra: 1130/1081,
  43345. bottom: 36/1166
  43346. }
  43347. },
  43348. },
  43349. [
  43350. {
  43351. name: "Smol",
  43352. height: math.unit(3, "feet")
  43353. },
  43354. {
  43355. name: "Normal",
  43356. height: math.unit(6, "feet"),
  43357. default: true
  43358. },
  43359. ]
  43360. ))
  43361. characterMakers.push(() => makeCharacter(
  43362. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  43363. {
  43364. front: {
  43365. height: math.unit(6, "feet"),
  43366. weight: math.unit(125, "lb"),
  43367. name: "Front",
  43368. image: {
  43369. source: "./media/characters/jack-thatcher/front.svg",
  43370. extra: 1474/1370,
  43371. bottom: 26/1500
  43372. }
  43373. },
  43374. back: {
  43375. height: math.unit(6, "feet"),
  43376. weight: math.unit(125, "lb"),
  43377. name: "Back",
  43378. image: {
  43379. source: "./media/characters/jack-thatcher/back.svg",
  43380. extra: 1489/1384,
  43381. bottom: 18/1507
  43382. }
  43383. },
  43384. },
  43385. [
  43386. {
  43387. name: "Normal",
  43388. height: math.unit(6, "feet"),
  43389. default: true
  43390. },
  43391. {
  43392. name: "Macro",
  43393. height: math.unit(75, "feet")
  43394. },
  43395. {
  43396. name: "Macro-er",
  43397. height: math.unit(250, "feet")
  43398. },
  43399. ]
  43400. ))
  43401. characterMakers.push(() => makeCharacter(
  43402. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  43403. {
  43404. front: {
  43405. height: math.unit(7, "feet"),
  43406. weight: math.unit(110, "kg"),
  43407. name: "Front",
  43408. image: {
  43409. source: "./media/characters/max-hyper/front.svg",
  43410. extra: 1969/1881,
  43411. bottom: 49/2018
  43412. }
  43413. },
  43414. },
  43415. [
  43416. {
  43417. name: "Normal",
  43418. height: math.unit(7, "feet"),
  43419. default: true
  43420. },
  43421. ]
  43422. ))
  43423. characterMakers.push(() => makeCharacter(
  43424. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  43425. {
  43426. front: {
  43427. height: math.unit(5 + 5/12, "feet"),
  43428. weight: math.unit(160, "lb"),
  43429. name: "Front",
  43430. image: {
  43431. source: "./media/characters/spook/front.svg",
  43432. extra: 794/791,
  43433. bottom: 54/848
  43434. }
  43435. },
  43436. back: {
  43437. height: math.unit(5 + 5/12, "feet"),
  43438. weight: math.unit(160, "lb"),
  43439. name: "Back",
  43440. image: {
  43441. source: "./media/characters/spook/back.svg",
  43442. extra: 812/798,
  43443. bottom: 32/844
  43444. }
  43445. },
  43446. },
  43447. [
  43448. {
  43449. name: "Normal",
  43450. height: math.unit(5 + 5/12, "feet"),
  43451. default: true
  43452. },
  43453. ]
  43454. ))
  43455. characterMakers.push(() => makeCharacter(
  43456. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  43457. {
  43458. front: {
  43459. height: math.unit(18, "feet"),
  43460. name: "Front",
  43461. image: {
  43462. source: "./media/characters/xeaduulix/front.svg",
  43463. extra: 1380/1166,
  43464. bottom: 110/1490
  43465. }
  43466. },
  43467. back: {
  43468. height: math.unit(18, "feet"),
  43469. name: "Back",
  43470. image: {
  43471. source: "./media/characters/xeaduulix/back.svg",
  43472. extra: 1592/1170,
  43473. bottom: 128/1720
  43474. }
  43475. },
  43476. frontNsfw: {
  43477. height: math.unit(18, "feet"),
  43478. name: "Front (NSFW)",
  43479. image: {
  43480. source: "./media/characters/xeaduulix/front-nsfw.svg",
  43481. extra: 1380/1166,
  43482. bottom: 110/1490
  43483. }
  43484. },
  43485. backNsfw: {
  43486. height: math.unit(18, "feet"),
  43487. name: "Back (NSFW)",
  43488. image: {
  43489. source: "./media/characters/xeaduulix/back-nsfw.svg",
  43490. extra: 1592/1170,
  43491. bottom: 128/1720
  43492. }
  43493. },
  43494. },
  43495. [
  43496. {
  43497. name: "Normal",
  43498. height: math.unit(18, "feet"),
  43499. default: true
  43500. },
  43501. ]
  43502. ))
  43503. characterMakers.push(() => makeCharacter(
  43504. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  43505. {
  43506. spreadWings: {
  43507. height: math.unit(20, "feet"),
  43508. name: "Spread Wings",
  43509. image: {
  43510. source: "./media/characters/fledge/spread-wings.svg",
  43511. extra: 693/635,
  43512. bottom: 26/719
  43513. }
  43514. },
  43515. front: {
  43516. height: math.unit(20, "feet"),
  43517. name: "Front",
  43518. image: {
  43519. source: "./media/characters/fledge/front.svg",
  43520. extra: 684/637,
  43521. bottom: 18/702
  43522. }
  43523. },
  43524. frontAlt: {
  43525. height: math.unit(20, "feet"),
  43526. name: "Front (Alt)",
  43527. image: {
  43528. source: "./media/characters/fledge/front-alt.svg",
  43529. extra: 708/664,
  43530. bottom: 13/721
  43531. }
  43532. },
  43533. back: {
  43534. height: math.unit(20, "feet"),
  43535. name: "Back",
  43536. image: {
  43537. source: "./media/characters/fledge/back.svg",
  43538. extra: 718/634,
  43539. bottom: 22/740
  43540. }
  43541. },
  43542. head: {
  43543. height: math.unit(5.55, "feet"),
  43544. name: "Head",
  43545. image: {
  43546. source: "./media/characters/fledge/head.svg"
  43547. }
  43548. },
  43549. headAlt: {
  43550. height: math.unit(5.1, "feet"),
  43551. name: "Head (Alt)",
  43552. image: {
  43553. source: "./media/characters/fledge/head-alt.svg"
  43554. }
  43555. },
  43556. },
  43557. [
  43558. {
  43559. name: "Small",
  43560. height: math.unit(6 + 2/12, "feet")
  43561. },
  43562. {
  43563. name: "Big",
  43564. height: math.unit(20, "feet"),
  43565. default: true
  43566. },
  43567. {
  43568. name: "Giant",
  43569. height: math.unit(100, "feet")
  43570. },
  43571. {
  43572. name: "Macro",
  43573. height: math.unit(200, "feet")
  43574. },
  43575. ]
  43576. ))
  43577. characterMakers.push(() => makeCharacter(
  43578. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  43579. {
  43580. front: {
  43581. height: math.unit(1, "meter"),
  43582. name: "Front",
  43583. image: {
  43584. source: "./media/characters/atlas-morenai/front.svg",
  43585. extra: 1275/1043,
  43586. bottom: 19/1294
  43587. }
  43588. },
  43589. back: {
  43590. height: math.unit(1, "meter"),
  43591. name: "Back",
  43592. image: {
  43593. source: "./media/characters/atlas-morenai/back.svg",
  43594. extra: 1141/1001,
  43595. bottom: 25/1166
  43596. }
  43597. },
  43598. },
  43599. [
  43600. {
  43601. name: "Normal",
  43602. height: math.unit(1, "meter"),
  43603. default: true
  43604. },
  43605. {
  43606. name: "Magic-Infused",
  43607. height: math.unit(5, "meters")
  43608. },
  43609. ]
  43610. ))
  43611. characterMakers.push(() => makeCharacter(
  43612. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  43613. {
  43614. front: {
  43615. height: math.unit(5, "meters"),
  43616. name: "Front",
  43617. image: {
  43618. source: "./media/characters/cintia/front.svg",
  43619. extra: 1312/1228,
  43620. bottom: 38/1350
  43621. }
  43622. },
  43623. back: {
  43624. height: math.unit(5, "meters"),
  43625. name: "Back",
  43626. image: {
  43627. source: "./media/characters/cintia/back.svg",
  43628. extra: 1260/1166,
  43629. bottom: 98/1358
  43630. }
  43631. },
  43632. frontDick: {
  43633. height: math.unit(5, "meters"),
  43634. name: "Front (Dick)",
  43635. image: {
  43636. source: "./media/characters/cintia/front-dick.svg",
  43637. extra: 1312/1228,
  43638. bottom: 38/1350
  43639. }
  43640. },
  43641. backDick: {
  43642. height: math.unit(5, "meters"),
  43643. name: "Back (Dick)",
  43644. image: {
  43645. source: "./media/characters/cintia/back-dick.svg",
  43646. extra: 1260/1166,
  43647. bottom: 98/1358
  43648. }
  43649. },
  43650. bust: {
  43651. height: math.unit(1.97, "meters"),
  43652. name: "Bust",
  43653. image: {
  43654. source: "./media/characters/cintia/bust.svg",
  43655. extra: 617/565,
  43656. bottom: 0/617
  43657. }
  43658. },
  43659. },
  43660. [
  43661. {
  43662. name: "Normal",
  43663. height: math.unit(5, "meters"),
  43664. default: true
  43665. },
  43666. ]
  43667. ))
  43668. characterMakers.push(() => makeCharacter(
  43669. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  43670. {
  43671. side: {
  43672. height: math.unit(100, "feet"),
  43673. name: "Side",
  43674. image: {
  43675. source: "./media/characters/denora/side.svg",
  43676. extra: 875/803,
  43677. bottom: 9/884
  43678. }
  43679. },
  43680. },
  43681. [
  43682. {
  43683. name: "Standard",
  43684. height: math.unit(100, "feet"),
  43685. default: true
  43686. },
  43687. {
  43688. name: "Grand",
  43689. height: math.unit(1000, "feet")
  43690. },
  43691. {
  43692. name: "Conquering",
  43693. height: math.unit(10000, "feet")
  43694. },
  43695. ]
  43696. ))
  43697. characterMakers.push(() => makeCharacter(
  43698. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  43699. {
  43700. dressed: {
  43701. height: math.unit(8 + 5/12, "feet"),
  43702. weight: math.unit(700, "lb"),
  43703. name: "Dressed",
  43704. image: {
  43705. source: "./media/characters/kiva/dressed.svg",
  43706. extra: 1102/1055,
  43707. bottom: 60/1162
  43708. }
  43709. },
  43710. nude: {
  43711. height: math.unit(8 + 5/12, "feet"),
  43712. weight: math.unit(700, "lb"),
  43713. name: "Nude",
  43714. image: {
  43715. source: "./media/characters/kiva/nude.svg",
  43716. extra: 1102/1055,
  43717. bottom: 60/1162
  43718. }
  43719. },
  43720. },
  43721. [
  43722. {
  43723. name: "Base Height",
  43724. height: math.unit(8 + 5/12, "feet"),
  43725. default: true
  43726. },
  43727. {
  43728. name: "Macro",
  43729. height: math.unit(100, "feet")
  43730. },
  43731. {
  43732. name: "Max",
  43733. height: math.unit(3280, "feet")
  43734. },
  43735. ]
  43736. ))
  43737. characterMakers.push(() => makeCharacter(
  43738. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  43739. {
  43740. front: {
  43741. height: math.unit(6 + 8/12, "feet"),
  43742. weight: math.unit(250, "lb"),
  43743. name: "Front",
  43744. image: {
  43745. source: "./media/characters/ztragon/front.svg",
  43746. extra: 1825/1684,
  43747. bottom: 98/1923
  43748. }
  43749. },
  43750. },
  43751. [
  43752. {
  43753. name: "Normal",
  43754. height: math.unit(6 + 8/12, "feet"),
  43755. default: true
  43756. },
  43757. {
  43758. name: "Macro",
  43759. height: math.unit(80, "feet")
  43760. },
  43761. ]
  43762. ))
  43763. characterMakers.push(() => makeCharacter(
  43764. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  43765. {
  43766. front: {
  43767. height: math.unit(10.4, "feet"),
  43768. weight: math.unit(2, "tons"),
  43769. name: "Front",
  43770. image: {
  43771. source: "./media/characters/yesenia/front.svg",
  43772. extra: 1479/1474,
  43773. bottom: 233/1712
  43774. }
  43775. },
  43776. },
  43777. [
  43778. {
  43779. name: "Normal",
  43780. height: math.unit(10.4, "feet"),
  43781. default: true
  43782. },
  43783. ]
  43784. ))
  43785. //characters
  43786. function makeCharacters() {
  43787. const results = [];
  43788. characterMakers.forEach(character => {
  43789. results.push(character());
  43790. });
  43791. return results;
  43792. }